diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index fc01664..0000000 --- a/.dockerignore +++ /dev/null @@ -1,42 +0,0 @@ -# Git -.git -.gitignore - -# IDE -.vs -.vscode -.idea -*.user -*.suo - -# Build outputs -**/bin/ -**/obj/ -**/out/ - -# NuGet -**/packages/ - -# Test results -**/TestResults/ - -# Documentation -*.md -!Docker/README.md - -# Local settings -**/local.settings.json -**/.env -**/appsettings.Development.json - -# Docker -Docker/.env - -# Claude -.claude/ - -# Other projects not needed for Docker build -accbot-dca/ -assignment/ -telegram-accbot-converter/ -AccBotWizard/ diff --git a/CryptoBotCore.sln b/CryptoBotCore.sln deleted file mode 100644 index 31fd27f..0000000 --- a/CryptoBotCore.sln +++ /dev/null @@ -1,44 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.1.31911.260 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CryptoBotCore", "CryptoBotCore\CryptoBotCore.csproj", "{6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CryptoBotFunction", "CryptoBotFunction\CryptoBotFunction.csproj", "{E6C11A63-713F-4653-9514-8A65ACDAF036}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AccBotWizard", "AccBotWizard\AccBotWizard.csproj", "{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - Test|Any CPU = Test|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}.Release|Any CPU.Build.0 = Release|Any CPU - {6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}.Test|Any CPU.ActiveCfg = Test|Any CPU - {6F35ECF7-EF01-4473-A344-2FBD0C3D36D5}.Test|Any CPU.Build.0 = Test|Any CPU - {E6C11A63-713F-4653-9514-8A65ACDAF036}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E6C11A63-713F-4653-9514-8A65ACDAF036}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E6C11A63-713F-4653-9514-8A65ACDAF036}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E6C11A63-713F-4653-9514-8A65ACDAF036}.Release|Any CPU.Build.0 = Release|Any CPU - {E6C11A63-713F-4653-9514-8A65ACDAF036}.Test|Any CPU.ActiveCfg = Test|Any CPU - {E6C11A63-713F-4653-9514-8A65ACDAF036}.Test|Any CPU.Build.0 = Test|Any CPU - {A1B2C3D4-E5F6-7890-ABCD-EF1234567890}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A1B2C3D4-E5F6-7890-ABCD-EF1234567890}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A1B2C3D4-E5F6-7890-ABCD-EF1234567890}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A1B2C3D4-E5F6-7890-ABCD-EF1234567890}.Release|Any CPU.Build.0 = Release|Any CPU - {A1B2C3D4-E5F6-7890-ABCD-EF1234567890}.Test|Any CPU.ActiveCfg = Test|Any CPU - {A1B2C3D4-E5F6-7890-ABCD-EF1234567890}.Test|Any CPU.Build.0 = Test|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {EA0E7683-FE10-4E30-8F3A-BF10CA9339A2} - EndGlobalSection -EndGlobal diff --git a/accbot-android/app/src/main/java/com/accbot/dca/data/local/DcaDatabase.kt b/accbot-android/app/src/main/java/com/accbot/dca/data/local/DcaDatabase.kt index a4f88e9..ecb4b71 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/data/local/DcaDatabase.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/data/local/DcaDatabase.kt @@ -19,7 +19,7 @@ import androidx.sqlite.db.SupportSQLiteDatabase NotificationEntity::class, WithdrawalThresholdEntity::class ], - version = 14, + version = 15, exportSchema = true ) @TypeConverters(Converters::class) @@ -186,6 +186,13 @@ abstract class DcaDatabase : RoomDatabase() { } } + // Migration from version 14 to 15: Add [fiat, status] index on transactions + private val MIGRATION_14_15 = object : Migration(14, 15) { + override fun migrate(database: SupportSQLiteDatabase) { + database.execSQL("CREATE INDEX IF NOT EXISTS index_transactions_fiat_status ON transactions (fiat, status)") + } + } + // Migration from version 9 to 10: Add notifications and withdrawal_thresholds tables private val MIGRATION_9_10 = object : Migration(9, 10) { override fun migrate(database: SupportSQLiteDatabase) { @@ -288,7 +295,7 @@ abstract class DcaDatabase : RoomDatabase() { DcaDatabase::class.java, databaseName ) - .addMigrations(MIGRATION_1_2, MIGRATION_2_3, MIGRATION_3_4, MIGRATION_4_5, MIGRATION_5_6, MIGRATION_6_7, MIGRATION_7_8, MIGRATION_8_9, MIGRATION_9_10, MIGRATION_10_11, MIGRATION_11_12, MIGRATION_12_13, MIGRATION_13_14) + .addMigrations(MIGRATION_1_2, MIGRATION_2_3, MIGRATION_3_4, MIGRATION_4_5, MIGRATION_5_6, MIGRATION_6_7, MIGRATION_7_8, MIGRATION_8_9, MIGRATION_9_10, MIGRATION_10_11, MIGRATION_11_12, MIGRATION_12_13, MIGRATION_13_14, MIGRATION_14_15) // Only allow destructive migration on app downgrade, never on failed upgrade // This protects user's transaction history from accidental deletion .fallbackToDestructiveMigrationOnDowngrade() diff --git a/accbot-android/app/src/main/java/com/accbot/dca/data/local/Entities.kt b/accbot-android/app/src/main/java/com/accbot/dca/data/local/Entities.kt index d54e488..a944396 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/data/local/Entities.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/data/local/Entities.kt @@ -145,7 +145,8 @@ data class DcaPlanEntity( Index(value = ["status"]), Index(value = ["executedAt"]), Index(value = ["planId", "status"]), - Index(value = ["crypto", "fiat", "status"]) + Index(value = ["crypto", "fiat", "status"]), + Index(value = ["fiat", "status"]) ] ) @TypeConverters(Converters::class) diff --git a/accbot-android/app/src/main/java/com/accbot/dca/data/remote/MarketDataService.kt b/accbot-android/app/src/main/java/com/accbot/dca/data/remote/MarketDataService.kt index cad8ab0..687413b 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/data/remote/MarketDataService.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/data/remote/MarketDataService.kt @@ -34,11 +34,13 @@ class MarketDataService @Inject constructor( private val cryptoDataCache = ConcurrentHashMap() private val fetchMutexes = ConcurrentHashMap() + private var fearGreedCache: Pair? = null companion object { private const val TAG = "MarketDataService" private const val PRICE_CACHE_TTL_MS = 60 * 60 * 1000L // 1 hour private const val ATH_CACHE_TTL_MS = 24 * 60 * 60 * 1000L // 24 hours private const val ATH_NEAR_THRESHOLD = 0.10f // refresh ATH when price is within 10% + private const val FEAR_GREED_CACHE_TTL_MS = 60 * 60 * 1000L // 1 hour // CoinGecko API (free, no auth required) private const val COINGECKO_BASE_URL = "https://api.coingecko.com/api/v3" @@ -161,8 +163,25 @@ class MarketDataService @Inject constructor( return getCachedCryptoData(crypto, fiat)?.currentPrice } + /** + * Get cached Fear & Greed index (1h TTL). + * Falls back to [getFearGreedIndex] on cache miss. + */ + suspend fun getCachedFearGreedIndex(): FearGreedData? { + val cached = fearGreedCache + if (cached != null && System.currentTimeMillis() - cached.second < FEAR_GREED_CACHE_TTL_MS) { + return cached.first + } + val data = getFearGreedIndex() + if (data != null) { + fearGreedCache = data to System.currentTimeMillis() + } + return data ?: cached?.first + } + fun invalidateCache() { cryptoDataCache.clear() + fearGreedCache = null } /** diff --git a/accbot-android/app/src/main/java/com/accbot/dca/domain/usecase/SyncDailyPricesUseCase.kt b/accbot-android/app/src/main/java/com/accbot/dca/domain/usecase/SyncDailyPricesUseCase.kt index 202040e..903874f 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/domain/usecase/SyncDailyPricesUseCase.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/domain/usecase/SyncDailyPricesUseCase.kt @@ -84,6 +84,19 @@ class SyncDailyPricesUseCase @Inject constructor( delay(RATE_LIMIT_DELAY_MS) } + // ── Phase 1b: Upsert today's real-time price (same source as Dashboard) ── + val realtimePrice = marketDataService.getCachedPrice(crypto, fiat) + if (realtimePrice != null) { + dailyPriceDao.insertPrices(listOf( + DailyPriceEntity( + crypto = crypto, + fiat = fiat, + dateEpochDay = today.toEpochDay(), + price = realtimePrice + ) + )) + } + // ── Phase 2: Historical backfill (CryptoCompare, one-time, backwards in chunks) ── val earliestCachedDay = dailyPriceDao.getEarliestDay(crypto, fiat) if (earliestCachedDay != null && earliestCachedDay > desiredStartDate.toEpochDay() + 1) { diff --git a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardScreen.kt b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardScreen.kt index edcdba1..9baaf92 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardScreen.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardScreen.kt @@ -106,7 +106,7 @@ fun DashboardScreen( DisposableEffect(lifecycleOwner) { val observer = LifecycleEventObserver { _, event -> if (event == Lifecycle.Event.ON_RESUME) { - viewModel.refreshPreferences() + viewModel.refreshIfStale() } } lifecycleOwner.lifecycle.addObserver(observer) diff --git a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardViewModel.kt b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardViewModel.kt index d6bf64f..7072a4b 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardViewModel.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/DashboardViewModel.kt @@ -98,6 +98,7 @@ class DashboardViewModel @Inject constructor( companion object { private const val TAG = "DashboardViewModel" + private const val STALENESS_THRESHOLD_MS = 5 * 60 * 1000L // 5 minutes } private val _uiState = MutableStateFlow(DashboardUiState()) @@ -106,6 +107,8 @@ class DashboardViewModel @Inject constructor( private var lastServiceRunning: Boolean? = null private var loadDataJob: Job? = null private var refreshPricesJob: Job? = null + private var lastLoadedAt: Long = 0 + private var lastMarketDataFetchedAt: Long = 0 init { loadData() @@ -177,11 +180,14 @@ class DashboardViewModel @Inject constructor( // collectLatest cancels previous block on new emission, // so these child coroutines are automatically cancelled - launch { fetchPricesForHoldings(mergedHoldings) } - launch { fetchBalancesForPlans(plans, isSandbox) } + // Fetch market indicators first (sequentially) to warm CryptoDataCache, + // so fetchPricesForHoldings gets cache hits via getCachedPrice if (showMarketPulse) { launch { fetchMarketIndicators(plans) } } + launch { fetchPricesForHoldings(mergedHoldings) } + launch { fetchBalancesForPlans(plans, isSandbox) } + lastLoadedAt = System.currentTimeMillis() } } } @@ -351,12 +357,14 @@ class DashboardViewModel @Inject constructor( } } - private suspend fun fetchMarketIndicators(plans: List) { + private suspend fun fetchMarketIndicators(plans: List, force: Boolean = false) { + val now = System.currentTimeMillis() + if (!force && now - lastMarketDataFetchedAt < STALENESS_THRESHOLD_MS) return _uiState.update { it.copy(isMarketDataLoading = true) } try { // Fetch Fear & Greed index val fearGreed = try { - marketDataService.getFearGreedIndex() + marketDataService.getCachedFearGreedIndex() } catch (e: Exception) { Log.e(TAG, "Error fetching Fear & Greed index", e) null @@ -377,6 +385,7 @@ class DashboardViewModel @Inject constructor( } coroutineContext.ensureActive() + lastMarketDataFetchedAt = System.currentTimeMillis() val currentCryptos = plans.map { it.crypto }.toSet() _uiState.update { it.copy( fearGreedData = fearGreed ?: it.fearGreedData, @@ -414,6 +423,14 @@ class DashboardViewModel @Inject constructor( } } + fun refreshIfStale() { + refreshPreferences() + if (System.currentTimeMillis() - lastLoadedAt > STALENESS_THRESHOLD_MS) { + marketDataService.invalidateCache() + loadData() + } + } + fun refreshPreferences() { val wasEnabled = _uiState.value.showMarketPulse val nowEnabled = userPreferences.isMarketPulseEnabled() @@ -425,7 +442,7 @@ class DashboardViewModel @Inject constructor( } if (!wasEnabled && nowEnabled) { viewModelScope.launch { - fetchMarketIndicators(_uiState.value.activePlans.map { it.plan }) + fetchMarketIndicators(_uiState.value.activePlans.map { it.plan }, force = true) } } } @@ -440,6 +457,7 @@ class DashboardViewModel @Inject constructor( viewModelScope.launch { _uiState.update { it.copy(isRefreshing = true, isPriceLoading = true) } marketDataService.invalidateCache() + lastMarketDataFetchedAt = 0 refreshPricesJob?.cancel() try { val state = _uiState.value @@ -448,7 +466,7 @@ class DashboardViewModel @Inject constructor( launch { loadData() } launch { fetchPricesForHoldings(state.holdings, manageLoadingState = false) } if (state.showMarketPulse) { - launch { fetchMarketIndicators(plans) } + launch { fetchMarketIndicators(plans, force = true) } } } } finally { diff --git a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/HistoryViewModel.kt b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/HistoryViewModel.kt index 86dd8d2..27c935e 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/HistoryViewModel.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/HistoryViewModel.kt @@ -11,6 +11,8 @@ import com.accbot.dca.domain.usecase.ExportTransactionsToCsvUseCase import com.accbot.dca.presentation.utils.NumberFormatters import androidx.compose.runtime.Immutable import dagger.hilt.android.lifecycle.HiltViewModel +import kotlinx.coroutines.ExperimentalCoroutinesApi +import kotlinx.coroutines.FlowPreview import kotlinx.coroutines.async import kotlinx.coroutines.flow.* import kotlinx.coroutines.launch @@ -69,44 +71,55 @@ class HistoryViewModel @Inject constructor( private val initialFiat: String? = savedStateHandle["fiat"] private val _filterState = MutableStateFlow(HistoryFilter(crypto = initialCrypto)) + private val _searchQuery = MutableStateFlow("") private val _sortOption = MutableStateFlow(SortOption.DATE_NEWEST) private val _uiExtras = MutableStateFlow( HistoryUiState() ) - // Stage 1: expensive filter + sort only re-runs when data/filter/sort change - private val _computedTransactions: Flow = combine( - transactionDao.getAllTransactions(), - _filterState, - _sortOption - ) { transactions, filter, sortOption -> - val filtered = transactions.filter { tx -> - val epochMillis = tx.executedAt.toEpochMilli() - val matchesChips = (filter.crypto == null || tx.crypto == filter.crypto) && - (filter.exchange == null || tx.exchange.name == filter.exchange) && - (filter.status == null || tx.status == filter.status) && - (filter.dateFrom == null || epochMillis >= filter.dateFrom) && - (filter.dateTo == null || epochMillis <= filter.dateTo + 86_400_000) - val matchesSearch = filter.searchQuery.isBlank() || listOf( - tx.crypto, tx.fiat, tx.exchange.name, tx.exchange.displayName, - NumberFormatters.fiat(tx.fiatAmount), NumberFormatters.crypto(tx.cryptoAmount), - tx.exchangeOrderId ?: "", tx.errorMessage ?: "" - ).any { it.contains(filter.searchQuery, ignoreCase = true) } - matchesChips && matchesSearch - } + // Extract SQL-pushable chip filters and switch DAO query only when they change + private data class ChipFilter(val crypto: String?, val exchange: String?, val status: String?) + + @OptIn(FlowPreview::class) + private val _debouncedSearch = _searchQuery.debounce(300) - val sorted = when (sortOption) { - SortOption.DATE_NEWEST -> filtered.sortedByDescending { it.executedAt } - SortOption.DATE_OLDEST -> filtered.sortedBy { it.executedAt } - SortOption.AMOUNT_HIGHEST -> filtered.sortedByDescending { it.fiatAmount } - SortOption.AMOUNT_LOWEST -> filtered.sortedBy { it.fiatAmount } - SortOption.PRICE_HIGHEST -> filtered.sortedByDescending { it.price } - SortOption.PRICE_LOWEST -> filtered.sortedBy { it.price } + // Stage 1: SQL-filtered data + in-memory date/search/sort + @OptIn(FlowPreview::class, ExperimentalCoroutinesApi::class) + private val _computedTransactions: Flow = _filterState + .map { ChipFilter(it.crypto, it.exchange, it.status?.name) } + .distinctUntilChanged() + .flatMapLatest { chip -> + transactionDao.getFilteredTransactions(chip.crypto, chip.exchange, chip.status) } + .combine(_filterState) { transactions, filter -> transactions to filter } + .combine(_debouncedSearch) { (transactions, filter), searchQuery -> + Triple(transactions, filter.copy(searchQuery = searchQuery), searchQuery) + } + .combine(_sortOption) { (transactions, filter, _), sortOption -> + val filtered = transactions.filter { tx -> + val epochMillis = tx.executedAt.toEpochMilli() + val matchesDates = (filter.dateFrom == null || epochMillis >= filter.dateFrom) && + (filter.dateTo == null || epochMillis <= filter.dateTo + 86_400_000) + val matchesSearch = filter.searchQuery.isBlank() || listOf( + tx.crypto, tx.fiat, tx.exchange.name, tx.exchange.displayName, + NumberFormatters.fiat(tx.fiatAmount), NumberFormatters.crypto(tx.cryptoAmount), + tx.exchangeOrderId ?: "", tx.errorMessage ?: "" + ).any { it.contains(filter.searchQuery, ignoreCase = true) } + matchesDates && matchesSearch + } - HistoryUiState(transactions = sorted, filter = filter, sortOption = sortOption, isLoading = false) - } + val sorted = when (sortOption) { + SortOption.DATE_NEWEST -> filtered.sortedByDescending { it.executedAt } + SortOption.DATE_OLDEST -> filtered.sortedBy { it.executedAt } + SortOption.AMOUNT_HIGHEST -> filtered.sortedByDescending { it.fiatAmount } + SortOption.AMOUNT_LOWEST -> filtered.sortedBy { it.fiatAmount } + SortOption.PRICE_HIGHEST -> filtered.sortedByDescending { it.price } + SortOption.PRICE_LOWEST -> filtered.sortedBy { it.price } + } + + HistoryUiState(transactions = sorted, filter = filter, sortOption = sortOption, isLoading = false) + } // Stage 2: merge transient UI state without re-filtering/re-sorting val uiState: StateFlow = combine( @@ -144,6 +157,7 @@ class HistoryViewModel @Inject constructor( } fun setSearchQuery(query: String) { + _searchQuery.value = query _filterState.update { it.copy(searchQuery = query) } } diff --git a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioScreen.kt b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioScreen.kt index a22bd39..3b17ecd 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioScreen.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioScreen.kt @@ -74,7 +74,7 @@ fun PortfolioScreen( DisposableEffect(lifecycleOwner) { val observer = LifecycleEventObserver { _, event -> if (event == Lifecycle.Event.ON_RESUME) { - viewModel.refresh() + viewModel.refreshIfStale() } } lifecycleOwner.lifecycle.addObserver(observer) @@ -286,7 +286,7 @@ fun PortfolioScreen( ) { ErrorState( message = uiState.error!!, - onRetry = { viewModel.refresh() } + onRetry = { viewModel.forceRefresh() } ) } } diff --git a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioViewModel.kt b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioViewModel.kt index 452adb6..bda616e 100644 --- a/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioViewModel.kt +++ b/accbot-android/app/src/main/java/com/accbot/dca/presentation/screens/portfolio/PortfolioViewModel.kt @@ -71,6 +71,13 @@ class PortfolioViewModel @Inject constructor( private var portfolioJob: Job? = null private var syncJob: Job? = null private var chartJob: Job? = null + private var lastLoadedAt: Long = 0 + private var lastTransactionsFetchedAt: Long = 0 + + companion object { + private const val STALENESS_THRESHOLD_MS = 5 * 60 * 1000L // 5 minutes + private const val TRANSACTION_REFRESH_THRESHOLD_MS = 30 * 1000L // 30 seconds + } init { loadPortfolio() @@ -114,6 +121,7 @@ class PortfolioViewModel @Inject constructor( updateNavigationState() syncPricesAndLoadChart() + lastLoadedAt = System.currentTimeMillis() } catch (e: CancellationException) { throw e } catch (e: Exception) { @@ -127,7 +135,8 @@ class PortfolioViewModel @Inject constructor( } } - private fun refreshTransactionsAndPairs() { + private fun refreshTransactionsAndPairs(force: Boolean = false) { + if (!force && System.currentTimeMillis() - lastTransactionsFetchedAt < TRANSACTION_REFRESH_THRESHOLD_MS) return viewModelScope.launch { try { val completed = transactionDao.getCompletedTransactionsOrdered() @@ -156,6 +165,7 @@ class PortfolioViewModel @Inject constructor( ) } updateNavigationState() + lastTransactionsFetchedAt = System.currentTimeMillis() } catch (e: CancellationException) { throw e } catch (_: Exception) { } @@ -319,7 +329,7 @@ class PortfolioViewModel @Inject constructor( } fun syncPricesAndLoadChart() { - refreshTransactionsAndPairs() + refreshTransactionsAndPairs(force = true) loadChartData() syncJob?.cancel() syncJob = viewModelScope.launch { @@ -441,7 +451,13 @@ class PortfolioViewModel @Inject constructor( } } - fun refresh() { + fun refreshIfStale() { + if (System.currentTimeMillis() - lastLoadedAt > STALENESS_THRESHOLD_MS) { + loadPortfolio() + } + } + + fun forceRefresh() { loadPortfolio() } } diff --git a/accbot-android/gradle.properties b/accbot-android/gradle.properties index 39e8e82..2c6dc99 100644 --- a/accbot-android/gradle.properties +++ b/accbot-android/gradle.properties @@ -8,8 +8,8 @@ android.nonTransitiveRClass=true # App versioning (semver) VERSION_MAJOR=2 -VERSION_MINOR=5 -VERSION_PATCH=2 +VERSION_MINOR=6 +VERSION_PATCH=0 # Screenshot testing android.experimental.enableScreenshotTest=true diff --git a/AccBotWizard/AccBotWizard.csproj b/archive/AccBotWizard/AccBotWizard.csproj similarity index 100% rename from AccBotWizard/AccBotWizard.csproj rename to archive/AccBotWizard/AccBotWizard.csproj diff --git a/AccBotWizard/App.axaml b/archive/AccBotWizard/App.axaml similarity index 100% rename from AccBotWizard/App.axaml rename to archive/AccBotWizard/App.axaml diff --git a/AccBotWizard/App.axaml.cs b/archive/AccBotWizard/App.axaml.cs similarity index 100% rename from AccBotWizard/App.axaml.cs rename to archive/AccBotWizard/App.axaml.cs diff --git a/AccBotWizard/Program.cs b/archive/AccBotWizard/Program.cs similarity index 100% rename from AccBotWizard/Program.cs rename to archive/AccBotWizard/Program.cs diff --git a/AccBotWizard/Resources/Localization/cs.json b/archive/AccBotWizard/Resources/Localization/cs.json similarity index 100% rename from AccBotWizard/Resources/Localization/cs.json rename to archive/AccBotWizard/Resources/Localization/cs.json diff --git a/AccBotWizard/Resources/Localization/en.json b/archive/AccBotWizard/Resources/Localization/en.json similarity index 100% rename from AccBotWizard/Resources/Localization/en.json rename to archive/AccBotWizard/Resources/Localization/en.json diff --git a/AccBotWizard/Services/AzureDeploymentService.cs b/archive/AccBotWizard/Services/AzureDeploymentService.cs similarity index 100% rename from AccBotWizard/Services/AzureDeploymentService.cs rename to archive/AccBotWizard/Services/AzureDeploymentService.cs diff --git a/AccBotWizard/Services/DockerDeploymentService.cs b/archive/AccBotWizard/Services/DockerDeploymentService.cs similarity index 100% rename from AccBotWizard/Services/DockerDeploymentService.cs rename to archive/AccBotWizard/Services/DockerDeploymentService.cs diff --git a/AccBotWizard/Services/ExchangeValidationService.cs b/archive/AccBotWizard/Services/ExchangeValidationService.cs similarity index 100% rename from AccBotWizard/Services/ExchangeValidationService.cs rename to archive/AccBotWizard/Services/ExchangeValidationService.cs diff --git a/AccBotWizard/Services/IDeploymentService.cs b/archive/AccBotWizard/Services/IDeploymentService.cs similarity index 100% rename from AccBotWizard/Services/IDeploymentService.cs rename to archive/AccBotWizard/Services/IDeploymentService.cs diff --git a/AccBotWizard/ViewModels/AccumulationConfigViewModel.cs b/archive/AccBotWizard/ViewModels/AccumulationConfigViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/AccumulationConfigViewModel.cs rename to archive/AccBotWizard/ViewModels/AccumulationConfigViewModel.cs diff --git a/AccBotWizard/ViewModels/CredentialsInputViewModel.cs b/archive/AccBotWizard/ViewModels/CredentialsInputViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/CredentialsInputViewModel.cs rename to archive/AccBotWizard/ViewModels/CredentialsInputViewModel.cs diff --git a/AccBotWizard/ViewModels/DeploymentSelectionViewModel.cs b/archive/AccBotWizard/ViewModels/DeploymentSelectionViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/DeploymentSelectionViewModel.cs rename to archive/AccBotWizard/ViewModels/DeploymentSelectionViewModel.cs diff --git a/AccBotWizard/ViewModels/ExchangeSelectionViewModel.cs b/archive/AccBotWizard/ViewModels/ExchangeSelectionViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/ExchangeSelectionViewModel.cs rename to archive/AccBotWizard/ViewModels/ExchangeSelectionViewModel.cs diff --git a/AccBotWizard/ViewModels/MainWindowViewModel.cs b/archive/AccBotWizard/ViewModels/MainWindowViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/MainWindowViewModel.cs rename to archive/AccBotWizard/ViewModels/MainWindowViewModel.cs diff --git a/AccBotWizard/ViewModels/ReviewDeployViewModel.cs b/archive/AccBotWizard/ViewModels/ReviewDeployViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/ReviewDeployViewModel.cs rename to archive/AccBotWizard/ViewModels/ReviewDeployViewModel.cs diff --git a/AccBotWizard/ViewModels/TelegramSetupViewModel.cs b/archive/AccBotWizard/ViewModels/TelegramSetupViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/TelegramSetupViewModel.cs rename to archive/AccBotWizard/ViewModels/TelegramSetupViewModel.cs diff --git a/AccBotWizard/ViewModels/ViewModelBase.cs b/archive/AccBotWizard/ViewModels/ViewModelBase.cs similarity index 100% rename from AccBotWizard/ViewModels/ViewModelBase.cs rename to archive/AccBotWizard/ViewModels/ViewModelBase.cs diff --git a/AccBotWizard/ViewModels/WelcomeViewModel.cs b/archive/AccBotWizard/ViewModels/WelcomeViewModel.cs similarity index 100% rename from AccBotWizard/ViewModels/WelcomeViewModel.cs rename to archive/AccBotWizard/ViewModels/WelcomeViewModel.cs diff --git a/AccBotWizard/Views/AccumulationConfigView.axaml b/archive/AccBotWizard/Views/AccumulationConfigView.axaml similarity index 100% rename from AccBotWizard/Views/AccumulationConfigView.axaml rename to archive/AccBotWizard/Views/AccumulationConfigView.axaml diff --git a/AccBotWizard/Views/AccumulationConfigView.axaml.cs b/archive/AccBotWizard/Views/AccumulationConfigView.axaml.cs similarity index 100% rename from AccBotWizard/Views/AccumulationConfigView.axaml.cs rename to archive/AccBotWizard/Views/AccumulationConfigView.axaml.cs diff --git a/AccBotWizard/Views/CredentialsInputView.axaml b/archive/AccBotWizard/Views/CredentialsInputView.axaml similarity index 100% rename from AccBotWizard/Views/CredentialsInputView.axaml rename to archive/AccBotWizard/Views/CredentialsInputView.axaml diff --git a/AccBotWizard/Views/CredentialsInputView.axaml.cs b/archive/AccBotWizard/Views/CredentialsInputView.axaml.cs similarity index 100% rename from AccBotWizard/Views/CredentialsInputView.axaml.cs rename to archive/AccBotWizard/Views/CredentialsInputView.axaml.cs diff --git a/AccBotWizard/Views/DeploymentSelectionView.axaml b/archive/AccBotWizard/Views/DeploymentSelectionView.axaml similarity index 100% rename from AccBotWizard/Views/DeploymentSelectionView.axaml rename to archive/AccBotWizard/Views/DeploymentSelectionView.axaml diff --git a/AccBotWizard/Views/DeploymentSelectionView.axaml.cs b/archive/AccBotWizard/Views/DeploymentSelectionView.axaml.cs similarity index 100% rename from AccBotWizard/Views/DeploymentSelectionView.axaml.cs rename to archive/AccBotWizard/Views/DeploymentSelectionView.axaml.cs diff --git a/AccBotWizard/Views/ExchangeSelectionView.axaml b/archive/AccBotWizard/Views/ExchangeSelectionView.axaml similarity index 100% rename from AccBotWizard/Views/ExchangeSelectionView.axaml rename to archive/AccBotWizard/Views/ExchangeSelectionView.axaml diff --git a/AccBotWizard/Views/ExchangeSelectionView.axaml.cs b/archive/AccBotWizard/Views/ExchangeSelectionView.axaml.cs similarity index 100% rename from AccBotWizard/Views/ExchangeSelectionView.axaml.cs rename to archive/AccBotWizard/Views/ExchangeSelectionView.axaml.cs diff --git a/AccBotWizard/Views/MainWindow.axaml b/archive/AccBotWizard/Views/MainWindow.axaml similarity index 100% rename from AccBotWizard/Views/MainWindow.axaml rename to archive/AccBotWizard/Views/MainWindow.axaml diff --git a/AccBotWizard/Views/MainWindow.axaml.cs b/archive/AccBotWizard/Views/MainWindow.axaml.cs similarity index 100% rename from AccBotWizard/Views/MainWindow.axaml.cs rename to archive/AccBotWizard/Views/MainWindow.axaml.cs diff --git a/AccBotWizard/Views/ReviewDeployView.axaml b/archive/AccBotWizard/Views/ReviewDeployView.axaml similarity index 100% rename from AccBotWizard/Views/ReviewDeployView.axaml rename to archive/AccBotWizard/Views/ReviewDeployView.axaml diff --git a/AccBotWizard/Views/ReviewDeployView.axaml.cs b/archive/AccBotWizard/Views/ReviewDeployView.axaml.cs similarity index 100% rename from AccBotWizard/Views/ReviewDeployView.axaml.cs rename to archive/AccBotWizard/Views/ReviewDeployView.axaml.cs diff --git a/AccBotWizard/Views/TelegramSetupView.axaml b/archive/AccBotWizard/Views/TelegramSetupView.axaml similarity index 100% rename from AccBotWizard/Views/TelegramSetupView.axaml rename to archive/AccBotWizard/Views/TelegramSetupView.axaml diff --git a/AccBotWizard/Views/TelegramSetupView.axaml.cs b/archive/AccBotWizard/Views/TelegramSetupView.axaml.cs similarity index 100% rename from AccBotWizard/Views/TelegramSetupView.axaml.cs rename to archive/AccBotWizard/Views/TelegramSetupView.axaml.cs diff --git a/AccBotWizard/Views/WelcomeView.axaml b/archive/AccBotWizard/Views/WelcomeView.axaml similarity index 100% rename from AccBotWizard/Views/WelcomeView.axaml rename to archive/AccBotWizard/Views/WelcomeView.axaml diff --git a/AccBotWizard/Views/WelcomeView.axaml.cs b/archive/AccBotWizard/Views/WelcomeView.axaml.cs similarity index 100% rename from AccBotWizard/Views/WelcomeView.axaml.cs rename to archive/AccBotWizard/Views/WelcomeView.axaml.cs diff --git a/AccBotWizard/app.manifest b/archive/AccBotWizard/app.manifest similarity index 100% rename from AccBotWizard/app.manifest rename to archive/AccBotWizard/app.manifest diff --git a/Assignments/PrePR_Review_Android_UX_Implementation_2026-02-05.md b/archive/Assignments/PrePR_Review_Android_UX_Implementation_2026-02-05.md similarity index 100% rename from Assignments/PrePR_Review_Android_UX_Implementation_2026-02-05.md rename to archive/Assignments/PrePR_Review_Android_UX_Implementation_2026-02-05.md diff --git a/CryptoBotCore/API/BinanceAPI.cs b/archive/CryptoBotCore/API/BinanceAPI.cs similarity index 100% rename from CryptoBotCore/API/BinanceAPI.cs rename to archive/CryptoBotCore/API/BinanceAPI.cs diff --git a/CryptoBotCore/API/BitfinexAPI.cs b/archive/CryptoBotCore/API/BitfinexAPI.cs similarity index 100% rename from CryptoBotCore/API/BitfinexAPI.cs rename to archive/CryptoBotCore/API/BitfinexAPI.cs diff --git a/CryptoBotCore/API/CoinbaseAPI.cs b/archive/CryptoBotCore/API/CoinbaseAPI.cs similarity index 100% rename from CryptoBotCore/API/CoinbaseAPI.cs rename to archive/CryptoBotCore/API/CoinbaseAPI.cs diff --git a/CryptoBotCore/API/CoinmateAPI.cs b/archive/CryptoBotCore/API/CoinmateAPI.cs similarity index 100% rename from CryptoBotCore/API/CoinmateAPI.cs rename to archive/CryptoBotCore/API/CoinmateAPI.cs diff --git a/CryptoBotCore/API/HuobiAPI.cs b/archive/CryptoBotCore/API/HuobiAPI.cs similarity index 100% rename from CryptoBotCore/API/HuobiAPI.cs rename to archive/CryptoBotCore/API/HuobiAPI.cs diff --git a/CryptoBotCore/API/ICryptoExchangeAPI.cs b/archive/CryptoBotCore/API/ICryptoExchangeAPI.cs similarity index 100% rename from CryptoBotCore/API/ICryptoExchangeAPI.cs rename to archive/CryptoBotCore/API/ICryptoExchangeAPI.cs diff --git a/CryptoBotCore/API/KrakenAPI.cs b/archive/CryptoBotCore/API/KrakenAPI.cs similarity index 100% rename from CryptoBotCore/API/KrakenAPI.cs rename to archive/CryptoBotCore/API/KrakenAPI.cs diff --git a/CryptoBotCore/API/KuCoinAPI.cs b/archive/CryptoBotCore/API/KuCoinAPI.cs similarity index 100% rename from CryptoBotCore/API/KuCoinAPI.cs rename to archive/CryptoBotCore/API/KuCoinAPI.cs diff --git a/CryptoBotCore/BotStrategies/AccumulationBot.cs b/archive/CryptoBotCore/BotStrategies/AccumulationBot.cs similarity index 100% rename from CryptoBotCore/BotStrategies/AccumulationBot.cs rename to archive/CryptoBotCore/BotStrategies/AccumulationBot.cs diff --git a/CryptoBotCore/CosmosDB/CosmosDbContext.cs b/archive/CryptoBotCore/CosmosDB/CosmosDbContext.cs similarity index 100% rename from CryptoBotCore/CosmosDB/CosmosDbContext.cs rename to archive/CryptoBotCore/CosmosDB/CosmosDbContext.cs diff --git a/CryptoBotCore/CosmosDB/Model/AccumulationSummary.cs b/archive/CryptoBotCore/CosmosDB/Model/AccumulationSummary.cs similarity index 100% rename from CryptoBotCore/CosmosDB/Model/AccumulationSummary.cs rename to archive/CryptoBotCore/CosmosDB/Model/AccumulationSummary.cs diff --git a/CryptoBotCore/CryptoBotCore.csproj b/archive/CryptoBotCore/CryptoBotCore.csproj similarity index 100% rename from CryptoBotCore/CryptoBotCore.csproj rename to archive/CryptoBotCore/CryptoBotCore.csproj diff --git a/CryptoBotCore/Models/APIEnums.cs b/archive/CryptoBotCore/Models/APIEnums.cs similarity index 100% rename from CryptoBotCore/Models/APIEnums.cs rename to archive/CryptoBotCore/Models/APIEnums.cs diff --git a/CryptoBotCore/Models/BotConfiguration.cs b/archive/CryptoBotCore/Models/BotConfiguration.cs similarity index 100% rename from CryptoBotCore/Models/BotConfiguration.cs rename to archive/CryptoBotCore/Models/BotConfiguration.cs diff --git a/CryptoBotCore/Models/WalletBalances.cs b/archive/CryptoBotCore/Models/WalletBalances.cs similarity index 100% rename from CryptoBotCore/Models/WalletBalances.cs rename to archive/CryptoBotCore/Models/WalletBalances.cs diff --git a/CryptoBotCore/Telegram/TelegramCommandHandler.cs b/archive/CryptoBotCore/Telegram/TelegramCommandHandler.cs similarity index 100% rename from CryptoBotCore/Telegram/TelegramCommandHandler.cs rename to archive/CryptoBotCore/Telegram/TelegramCommandHandler.cs diff --git a/CryptoBotCore/Telegram/TelegramMessageBuilder.cs b/archive/CryptoBotCore/Telegram/TelegramMessageBuilder.cs similarity index 100% rename from CryptoBotCore/Telegram/TelegramMessageBuilder.cs rename to archive/CryptoBotCore/Telegram/TelegramMessageBuilder.cs diff --git a/CryptoBotCore/Utility.cs b/archive/CryptoBotCore/Utility.cs similarity index 100% rename from CryptoBotCore/Utility.cs rename to archive/CryptoBotCore/Utility.cs diff --git a/CryptoBotFunction/.gitignore b/archive/CryptoBotFunction/.gitignore similarity index 100% rename from CryptoBotFunction/.gitignore rename to archive/CryptoBotFunction/.gitignore diff --git a/CryptoBotFunction/AccumulationBotFunction.cs b/archive/CryptoBotFunction/AccumulationBotFunction.cs similarity index 100% rename from CryptoBotFunction/AccumulationBotFunction.cs rename to archive/CryptoBotFunction/AccumulationBotFunction.cs diff --git a/CryptoBotFunction/CryptoBotFunction.csproj b/archive/CryptoBotFunction/CryptoBotFunction.csproj similarity index 100% rename from CryptoBotFunction/CryptoBotFunction.csproj rename to archive/CryptoBotFunction/CryptoBotFunction.csproj diff --git a/CryptoBotFunction/Program.cs b/archive/CryptoBotFunction/Program.cs similarity index 100% rename from CryptoBotFunction/Program.cs rename to archive/CryptoBotFunction/Program.cs diff --git a/CryptoBotFunction/Properties/serviceDependencies.json b/archive/CryptoBotFunction/Properties/serviceDependencies.json similarity index 100% rename from CryptoBotFunction/Properties/serviceDependencies.json rename to archive/CryptoBotFunction/Properties/serviceDependencies.json diff --git a/CryptoBotFunction/Properties/serviceDependencies.local.json b/archive/CryptoBotFunction/Properties/serviceDependencies.local.json similarity index 100% rename from CryptoBotFunction/Properties/serviceDependencies.local.json rename to archive/CryptoBotFunction/Properties/serviceDependencies.local.json diff --git a/CryptoBotFunction/UpdateProductionFromDev.ps1 b/archive/CryptoBotFunction/UpdateProductionFromDev.ps1 similarity index 100% rename from CryptoBotFunction/UpdateProductionFromDev.ps1 rename to archive/CryptoBotFunction/UpdateProductionFromDev.ps1 diff --git a/CryptoBotFunction/binance_variables.ps1 b/archive/CryptoBotFunction/binance_variables.ps1 similarity index 100% rename from CryptoBotFunction/binance_variables.ps1 rename to archive/CryptoBotFunction/binance_variables.ps1 diff --git a/CryptoBotFunction/bitfinex_variables.ps1 b/archive/CryptoBotFunction/bitfinex_variables.ps1 similarity index 100% rename from CryptoBotFunction/bitfinex_variables.ps1 rename to archive/CryptoBotFunction/bitfinex_variables.ps1 diff --git a/CryptoBotFunction/coinbase_variables.ps1 b/archive/CryptoBotFunction/coinbase_variables.ps1 similarity index 100% rename from CryptoBotFunction/coinbase_variables.ps1 rename to archive/CryptoBotFunction/coinbase_variables.ps1 diff --git a/CryptoBotFunction/coinmate_variables.ps1 b/archive/CryptoBotFunction/coinmate_variables.ps1 similarity index 100% rename from CryptoBotFunction/coinmate_variables.ps1 rename to archive/CryptoBotFunction/coinmate_variables.ps1 diff --git a/CryptoBotFunction/host.json b/archive/CryptoBotFunction/host.json similarity index 100% rename from CryptoBotFunction/host.json rename to archive/CryptoBotFunction/host.json diff --git a/CryptoBotFunction/huobi_variables.ps1 b/archive/CryptoBotFunction/huobi_variables.ps1 similarity index 100% rename from CryptoBotFunction/huobi_variables.ps1 rename to archive/CryptoBotFunction/huobi_variables.ps1 diff --git a/CryptoBotFunction/init_variables.ps1 b/archive/CryptoBotFunction/init_variables.ps1 similarity index 100% rename from CryptoBotFunction/init_variables.ps1 rename to archive/CryptoBotFunction/init_variables.ps1 diff --git a/CryptoBotFunction/install_script.ps1 b/archive/CryptoBotFunction/install_script.ps1 similarity index 100% rename from CryptoBotFunction/install_script.ps1 rename to archive/CryptoBotFunction/install_script.ps1 diff --git a/CryptoBotFunction/kraken_variables.ps1 b/archive/CryptoBotFunction/kraken_variables.ps1 similarity index 100% rename from CryptoBotFunction/kraken_variables.ps1 rename to archive/CryptoBotFunction/kraken_variables.ps1 diff --git a/CryptoBotFunction/kucoin_variables.ps1 b/archive/CryptoBotFunction/kucoin_variables.ps1 similarity index 100% rename from CryptoBotFunction/kucoin_variables.ps1 rename to archive/CryptoBotFunction/kucoin_variables.ps1 diff --git a/CryptoBotFunction/run.bat b/archive/CryptoBotFunction/run.bat similarity index 100% rename from CryptoBotFunction/run.bat rename to archive/CryptoBotFunction/run.bat diff --git a/Docker/.env.template b/archive/Docker/.env.template similarity index 100% rename from Docker/.env.template rename to archive/Docker/.env.template diff --git a/Docker/Dockerfile b/archive/Docker/Dockerfile similarity index 100% rename from Docker/Dockerfile rename to archive/Docker/Dockerfile diff --git a/Docker/README.md b/archive/Docker/README.md similarity index 100% rename from Docker/README.md rename to archive/Docker/README.md diff --git a/Docker/docker-compose.yml b/archive/Docker/docker-compose.yml similarity index 100% rename from Docker/docker-compose.yml rename to archive/Docker/docker-compose.yml diff --git a/accbot-dca/app.json b/archive/accbot-dca/app.json similarity index 100% rename from accbot-dca/app.json rename to archive/accbot-dca/app.json diff --git a/accbot-dca/app/_layout.tsx b/archive/accbot-dca/app/_layout.tsx similarity index 100% rename from accbot-dca/app/_layout.tsx rename to archive/accbot-dca/app/_layout.tsx diff --git a/accbot-dca/app/index.tsx b/archive/accbot-dca/app/index.tsx similarity index 100% rename from accbot-dca/app/index.tsx rename to archive/accbot-dca/app/index.tsx diff --git a/accbot-dca/app/settings.tsx b/archive/accbot-dca/app/settings.tsx similarity index 100% rename from accbot-dca/app/settings.tsx rename to archive/accbot-dca/app/settings.tsx diff --git a/accbot-dca/app/stats.tsx b/archive/accbot-dca/app/stats.tsx similarity index 100% rename from accbot-dca/app/stats.tsx rename to archive/accbot-dca/app/stats.tsx diff --git a/accbot-dca/app/wizard/config.tsx b/archive/accbot-dca/app/wizard/config.tsx similarity index 100% rename from accbot-dca/app/wizard/config.tsx rename to archive/accbot-dca/app/wizard/config.tsx diff --git a/accbot-dca/app/wizard/credentials.tsx b/archive/accbot-dca/app/wizard/credentials.tsx similarity index 100% rename from accbot-dca/app/wizard/credentials.tsx rename to archive/accbot-dca/app/wizard/credentials.tsx diff --git a/accbot-dca/app/wizard/exchange.tsx b/archive/accbot-dca/app/wizard/exchange.tsx similarity index 100% rename from accbot-dca/app/wizard/exchange.tsx rename to archive/accbot-dca/app/wizard/exchange.tsx diff --git a/accbot-dca/app/wizard/index.tsx b/archive/accbot-dca/app/wizard/index.tsx similarity index 100% rename from accbot-dca/app/wizard/index.tsx rename to archive/accbot-dca/app/wizard/index.tsx diff --git a/accbot-dca/app/wizard/review.tsx b/archive/accbot-dca/app/wizard/review.tsx similarity index 100% rename from accbot-dca/app/wizard/review.tsx rename to archive/accbot-dca/app/wizard/review.tsx diff --git a/accbot-dca/package.json b/archive/accbot-dca/package.json similarity index 100% rename from accbot-dca/package.json rename to archive/accbot-dca/package.json diff --git a/accbot-dca/src/locales/cs/charts.json b/archive/accbot-dca/src/locales/cs/charts.json similarity index 100% rename from accbot-dca/src/locales/cs/charts.json rename to archive/accbot-dca/src/locales/cs/charts.json diff --git a/accbot-dca/src/locales/en/charts.json b/archive/accbot-dca/src/locales/en/charts.json similarity index 100% rename from accbot-dca/src/locales/en/charts.json rename to archive/accbot-dca/src/locales/en/charts.json diff --git a/accbot-dca/src/store/accbotStore.ts b/archive/accbot-dca/src/store/accbotStore.ts similarity index 100% rename from accbot-dca/src/store/accbotStore.ts rename to archive/accbot-dca/src/store/accbotStore.ts diff --git a/accbot-dca/tsconfig.json b/archive/accbot-dca/tsconfig.json similarity index 100% rename from accbot-dca/tsconfig.json rename to archive/accbot-dca/tsconfig.json diff --git a/assignment/20260205_TODO.md b/archive/assignment/20260205_TODO.md similarity index 100% rename from assignment/20260205_TODO.md rename to archive/assignment/20260205_TODO.md diff --git a/assignment/BIP39_list.txt b/archive/assignment/BIP39_list.txt similarity index 100% rename from assignment/BIP39_list.txt rename to archive/assignment/BIP39_list.txt diff --git a/archive/telegram-accbot-converter/output/result.json b/archive/telegram-accbot-converter/output/result.json new file mode 100644 index 0000000..2385707 --- /dev/null +++ b/archive/telegram-accbot-converter/output/result.json @@ -0,0 +1,13363 @@ +{ + "name": "hnizdja2_autoinvestchannel", + "type": "public_channel", + "id": 1448997223, + "messages": [ + { + "id": 7336, + "type": "message", + "date": "2025-06-01T02:00:05", + "date_unixtime": "1748736005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,402 CZK\nFees are 0.29044472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.359423435038974962040441394 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62432048 BTC (511,519.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.38 % (927,790.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,184.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03784256 BTC (87,242.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,402 CZK\nFees are 0.29044472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.359423435038974962040441394 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62432048 BTC (511,519.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.38 % (927,790.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,184.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03784256 BTC (87,242.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5628 transactions" + } + ] + }, + { + "id": 7337, + "type": "message", + "date": "2025-06-01T06:00:04", + "date_unixtime": "1748750404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.70 CZK @ 2,302,998 CZK\nFees are 0.29046541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.332979720518702502810755506 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62435639 BTC (511,602.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.06 % (926,289.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,101.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03787847 BTC (87,234.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.70 CZK @ 2,302,998 CZK\nFees are 0.29046541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.332979720518702502810755506 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62435639 BTC (511,602.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.06 % (926,289.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,101.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03787847 BTC (87,234.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5629 transactions" + } + ] + }, + { + "id": 7338, + "type": "message", + "date": "2025-06-01T10:00:05", + "date_unixtime": "1748764805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,299,996 CZK\nFees are 0.29049063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.299952644886390403332496439 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62439235 BTC (511,685.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.66 % (924,414.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,018.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03791443 BTC (87,203.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,299,996 CZK\nFees are 0.29049063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.299952644886390403332496439 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62439235 BTC (511,685.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.66 % (924,414.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,018.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03791443 BTC (87,203.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5630 transactions" + } + ] + }, + { + "id": 7339, + "type": "message", + "date": "2025-06-01T14:00:03", + "date_unixtime": "1748779203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,768 CZK\nFees are 0.29045140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.275449752484808311227458549 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62442834 BTC (511,768.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.36 % (923,023.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,935.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03795042 BTC (87,201.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,768 CZK\nFees are 0.29045140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.275449752484808311227458549 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62442834 BTC (511,768.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.36 % (923,023.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,935.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03795042 BTC (87,201.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5631 transactions" + } + ] + }, + { + "id": 7340, + "type": "message", + "date": "2025-06-01T18:00:05", + "date_unixtime": "1748793605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003589 BTC for 82.70 CZK @ 2,304,143 CZK\nFees are 0.29044795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.345573014371682949187456608 CZK)\nThe limits being 0.03 % (21.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62446423 BTC (511,851.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.11 % (927,003.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,852.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03798631 BTC (87,525.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003589 BTC for 82.70 CZK @ 2,304,143 CZK\nFees are 0.29044795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.345573014371682949187456608 CZK)\nThe limits being 0.03 % (21.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62446423 BTC (511,851.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.11 % (927,003.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,852.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03798631 BTC (87,525.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5632 transactions" + } + ] + }, + { + "id": 7341, + "type": "message", + "date": "2025-06-01T22:00:05", + "date_unixtime": "1748808005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003572 BTC for 82.69 CZK @ 2,314,899 CZK\nFees are 0.29042157 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.463886034656976059714850209 CZK)\nThe limits being 0.03 % (22.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62449995 BTC (511,934.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.39 % (933,719.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,769.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03802203 BTC (88,017.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003572 BTC for 82.69 CZK @ 2,314,899 CZK\nFees are 0.29042157 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.463886034656976059714850209 CZK)\nThe limits being 0.03 % (22.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62449995 BTC (511,934.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.39 % (933,719.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,769.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03802203 BTC (88,017.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5633 transactions" + } + ] + }, + { + "id": 7342, + "type": "message", + "date": "2025-06-02T02:00:05", + "date_unixtime": "1748822405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,747 CZK\nFees are 0.29042726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.550219581464872944693572496 CZK)\nThe limits being 0.03 % (22.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62453555 BTC (512,017.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.32 % (938,621.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,686.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03805763 BTC (88,398.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,747 CZK\nFees are 0.29042726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.550219581464872944693572496 CZK)\nThe limits being 0.03 % (22.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62453555 BTC (512,017.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.32 % (938,621.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,686.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03805763 BTC (88,398.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5634 transactions" + } + ] + }, + { + "id": 7343, + "type": "message", + "date": "2025-06-02T06:00:04", + "date_unixtime": "1748836804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003585 BTC for 82.71 CZK @ 2,307,024 CZK\nFees are 0.29048702 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.377265774531121548777326776 CZK)\nThe limits being 0.03 % (21.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62457140 BTC (512,100.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,307,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.37 % (928,801.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,603.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03809348 BTC (87,882.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003585 BTC for 82.71 CZK @ 2,307,024 CZK\nFees are 0.29048702 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.377265774531121548777326776 CZK)\nThe limits being 0.03 % (21.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62457140 BTC (512,100.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,307,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.37 % (928,801.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,603.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03809348 BTC (87,882.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5635 transactions" + } + ] + }, + { + "id": 7344, + "type": "message", + "date": "2025-06-02T10:00:04", + "date_unixtime": "1748851204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.71 CZK @ 2,306,442 CZK\nFees are 0.29049468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.370858852910518706001387782 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62460726 BTC (512,183.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.27 % (928,437.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,520.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03812934 BTC (87,943.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.71 CZK @ 2,306,442 CZK\nFees are 0.29049468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.370858852910518706001387782 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62460726 BTC (512,183.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.27 % (928,437.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,520.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03812934 BTC (87,943.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5636 transactions" + } + ] + }, + { + "id": 7345, + "type": "message", + "date": "2025-06-02T14:00:05", + "date_unixtime": "1748865605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003630 BTC for 82.70 CZK @ 2,278,154 CZK\nFees are 0.29045256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.059698591294106989174253748 CZK)\nThe limits being 0.03 % (21.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62464356 BTC (512,266.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,278,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.79 % (910,768.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,437.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03816564 BTC (86,947.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003630 BTC for 82.70 CZK @ 2,278,154 CZK\nFees are 0.29045256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.059698591294106989174253748 CZK)\nThe limits being 0.03 % (21.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62464356 BTC (512,266.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,278,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.79 % (910,768.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,437.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03816564 BTC (86,947.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5637 transactions" + } + ] + }, + { + "id": 7346, + "type": "message", + "date": "2025-06-02T18:00:05", + "date_unixtime": "1748880005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003628 BTC for 82.69 CZK @ 2,279,262 CZK\nFees are 0.29043368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.071883873641812641422056980 CZK)\nThe limits being 0.03 % (21.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62467984 BTC (512,349.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,279,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.90 % (911,460.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,354.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03820192 BTC (87,072.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003628 BTC for 82.69 CZK @ 2,279,262 CZK\nFees are 0.29043368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.071883873641812641422056980 CZK)\nThe limits being 0.03 % (21.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62467984 BTC (512,349.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,279,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.90 % (911,460.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,354.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03820192 BTC (87,072.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5638 transactions" + } + ] + }, + { + "id": 7347, + "type": "message", + "date": "2025-06-02T22:00:05", + "date_unixtime": "1748894405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003640 BTC for 82.70 CZK @ 2,272,001 CZK\nFees are 0.29046603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.992012386044448824717883013 CZK)\nThe limits being 0.03 % (21.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62471624 BTC (512,432.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,272,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.98 % (906,923.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,271.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03823832 BTC (86,877.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003640 BTC for 82.70 CZK @ 2,272,001 CZK\nFees are 0.29046603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.992012386044448824717883013 CZK)\nThe limits being 0.03 % (21.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62471624 BTC (512,432.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,272,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.98 % (906,923.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,271.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03823832 BTC (86,877.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5639 transactions" + } + ] + }, + { + "id": 7348, + "type": "message", + "date": "2025-06-03T02:00:05", + "date_unixtime": "1748908805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,764 CZK\nFees are 0.29046138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.297405314713297673936550215 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62475220 BTC (512,515.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.34 % (924,267.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,188.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03827428 BTC (88,021.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,764 CZK\nFees are 0.29046138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.297405314713297673936550215 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62475220 BTC (512,515.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.34 % (924,267.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,188.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03827428 BTC (88,021.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5640 transactions" + } + ] + }, + { + "id": 7349, + "type": "message", + "date": "2025-06-03T06:00:06", + "date_unixtime": "1748923206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,800 CZK\nFees are 0.29047600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.319801971141638831304461661 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62478813 BTC (512,598.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.56 % (925,539.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,105.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03831021 BTC (88,182.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,800 CZK\nFees are 0.29047600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.319801971141638831304461661 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62478813 BTC (512,598.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.56 % (925,539.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,105.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03831021 BTC (88,182.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5641 transactions" + } + ] + }, + { + "id": 7350, + "type": "message", + "date": "2025-06-03T10:00:04", + "date_unixtime": "1748937604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,232 CZK\nFees are 0.29046429 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.269550090239716547638819686 CZK)\nThe limits being 0.03 % (22.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62482413 BTC (512,681.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.97 % (922,684.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,022.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03834621 BTC (88,090.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,232 CZK\nFees are 0.29046429 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.269550090239716547638819686 CZK)\nThe limits being 0.03 % (22.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62482413 BTC (512,681.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.97 % (922,684.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,022.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03834621 BTC (88,090.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5642 transactions" + } + ] + }, + { + "id": 7351, + "type": "message", + "date": "2025-06-03T14:00:04", + "date_unixtime": "1748952004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,720 CZK\nFees are 0.29046588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.318919780767314399601395116 CZK)\nThe limits being 0.03 % (22.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62486006 BTC (512,764.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.49 % (925,488.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,939.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03838214 BTC (88,344.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,720 CZK\nFees are 0.29046588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.318919780767314399601395116 CZK)\nThe limits being 0.03 % (22.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62486006 BTC (512,764.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.49 % (925,488.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,939.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03838214 BTC (88,344.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5643 transactions" + } + ] + }, + { + "id": 7352, + "type": "message", + "date": "2025-06-03T18:00:04", + "date_unixtime": "1748966404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003539 BTC for 82.70 CZK @ 2,336,842 CZK\nFees are 0.29046605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.705264882321313098419448291 CZK)\nThe limits being 0.03 % (22.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62489545 BTC (512,847.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.74 % (947,435.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,856.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03841753 BTC (89,775.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003539 BTC for 82.70 CZK @ 2,336,842 CZK\nFees are 0.29046605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.705264882321313098419448291 CZK)\nThe limits being 0.03 % (22.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62489545 BTC (512,847.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.74 % (947,435.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,856.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03841753 BTC (89,775.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5644 transactions" + } + ] + }, + { + "id": 7353, + "type": "message", + "date": "2025-06-03T22:00:05", + "date_unixtime": "1748980805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003550 BTC for 82.69 CZK @ 2,329,366 CZK\nFees are 0.29043667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.623022502929886243219155492 CZK)\nThe limits being 0.03 % (22.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62493095 BTC (512,930.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.80 % (942,762.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,773.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03845303 BTC (89,571.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003550 BTC for 82.69 CZK @ 2,329,366 CZK\nFees are 0.29043667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.623022502929886243219155492 CZK)\nThe limits being 0.03 % (22.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62493095 BTC (512,930.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.80 % (942,762.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,773.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03845303 BTC (89,571.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5645 transactions" + } + ] + }, + { + "id": 7354, + "type": "message", + "date": "2025-06-04T02:00:04", + "date_unixtime": "1748995204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003581 BTC for 82.71 CZK @ 2,309,613 CZK\nFees are 0.29048846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.405738532283057887174281247 CZK)\nThe limits being 0.03 % (22.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62496676 BTC (513,013.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.36 % (930,418.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,690.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03848884 BTC (88,894.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003581 BTC for 82.71 CZK @ 2,309,613 CZK\nFees are 0.29048846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.405738532283057887174281247 CZK)\nThe limits being 0.03 % (22.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62496676 BTC (513,013.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.36 % (930,418.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,690.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03848884 BTC (88,894.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5646 transactions" + } + ] + }, + { + "id": 7355, + "type": "message", + "date": "2025-06-04T06:00:04", + "date_unixtime": "1749009604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003571 BTC for 82.69 CZK @ 2,315,613 CZK\nFees are 0.29042979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.471737545027575705696542079 CZK)\nThe limits being 0.03 % (22.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62500247 BTC (513,096.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.06 % (934,167.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,607.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03852455 BTC (89,207.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003571 BTC for 82.69 CZK @ 2,315,613 CZK\nFees are 0.29042979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.471737545027575705696542079 CZK)\nThe limits being 0.03 % (22.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62500247 BTC (513,096.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.06 % (934,167.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,607.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03852455 BTC (89,207.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5647 transactions" + } + ] + }, + { + "id": 7356, + "type": "message", + "date": "2025-06-04T10:00:04", + "date_unixtime": "1749024004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,840 CZK\nFees are 0.29049991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.364242410276049438895841137 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62503834 BTC (513,179.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.85 % (928,059.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,524.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03856042 BTC (88,914.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,840 CZK\nFees are 0.29049991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.364242410276049438895841137 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62503834 BTC (513,179.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.85 % (928,059.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,524.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03856042 BTC (88,914.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5648 transactions" + } + ] + }, + { + "id": 7357, + "type": "message", + "date": "2025-06-04T14:00:06", + "date_unixtime": "1749038406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,365 CZK\nFees are 0.29045643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.304010729345759937575925151 CZK)\nThe limits being 0.03 % (22.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62507429 BTC (513,262.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.15 % (924,636.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,441.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03859637 BTC (88,785.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,365 CZK\nFees are 0.29045643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.304010729345759937575925151 CZK)\nThe limits being 0.03 % (22.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62507429 BTC (513,262.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.15 % (924,636.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,441.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03859637 BTC (88,785.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5649 transactions" + } + ] + }, + { + "id": 7358, + "type": "message", + "date": "2025-06-04T18:00:04", + "date_unixtime": "1749052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003607 BTC for 82.71 CZK @ 2,292,903 CZK\nFees are 0.29048068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.221933759979799009538144080 CZK)\nThe limits being 0.03 % (22.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62511036 BTC (513,344.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,292,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.21 % (919,972.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,358.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03863244 BTC (88,580.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003607 BTC for 82.71 CZK @ 2,292,903 CZK\nFees are 0.29048068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.221933759979799009538144080 CZK)\nThe limits being 0.03 % (22.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62511036 BTC (513,344.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,292,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.21 % (919,972.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,358.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03863244 BTC (88,580.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5650 transactions" + } + ] + }, + { + "id": 7359, + "type": "message", + "date": "2025-06-04T22:00:04", + "date_unixtime": "1749067204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,838 CZK\nFees are 0.29048190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166223314664235342277133766 CZK)\nThe limits being 0.03 % (22.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62514651 BTC (513,427.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.57 % (916,806.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,275.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03866859 BTC (88,467.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,838 CZK\nFees are 0.29048190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166223314664235342277133766 CZK)\nThe limits being 0.03 % (22.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62514651 BTC (513,427.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.57 % (916,806.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,275.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03866859 BTC (88,467.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5651 transactions" + } + ] + }, + { + "id": 7360, + "type": "message", + "date": "2025-06-05T02:00:05", + "date_unixtime": "1749081605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003624 BTC for 82.70 CZK @ 2,281,893 CZK\nFees are 0.29044829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.100819782252183582626370616 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62518275 BTC (513,510.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,281,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.81 % (913,088.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,192.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03870483 BTC (88,320.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003624 BTC for 82.70 CZK @ 2,281,893 CZK\nFees are 0.29044829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.100819782252183582626370616 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62518275 BTC (513,510.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,281,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.81 % (913,088.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,192.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03870483 BTC (88,320.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5652 transactions" + } + ] + }, + { + "id": 7361, + "type": "message", + "date": "2025-06-05T06:00:05", + "date_unixtime": "1749096005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,573 CZK\nFees are 0.29046086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.185300724319808687313119475 CZK)\nThe limits being 0.03 % (22.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62521887 BTC (513,593.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.72 % (917,890.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,109.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03874095 BTC (88,700.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,573 CZK\nFees are 0.29046086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.185300724319808687313119475 CZK)\nThe limits being 0.03 % (22.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62521887 BTC (513,593.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.72 % (917,890.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,109.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03874095 BTC (88,700.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5653 transactions" + } + ] + }, + { + "id": 7362, + "type": "message", + "date": "2025-06-05T10:00:04", + "date_unixtime": "1749110404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003632 BTC for 82.71 CZK @ 2,277,207 CZK\nFees are 0.29049174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.049277696015487643468125878 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62525519 BTC (513,676.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,277,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.19 % (910,158.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,026.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03877727 BTC (88,303.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003632 BTC for 82.71 CZK @ 2,277,207 CZK\nFees are 0.29049174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.049277696015487643468125878 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62525519 BTC (513,676.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,277,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.19 % (910,158.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,026.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03877727 BTC (88,303.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5654 transactions" + } + ] + }, + { + "id": 7363, + "type": "message", + "date": "2025-06-05T14:00:04", + "date_unixtime": "1749124804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003622 BTC for 82.71 CZK @ 2,283,468 CZK\nFees are 0.29048835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.118143833138405420894346320 CZK)\nThe limits being 0.03 % (22.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62529141 BTC (513,759.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.92 % (914,072.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,943.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03881349 BTC (88,629.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003622 BTC for 82.71 CZK @ 2,283,468 CZK\nFees are 0.29048835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.118143833138405420894346320 CZK)\nThe limits being 0.03 % (22.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62529141 BTC (513,759.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.92 % (914,072.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,943.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03881349 BTC (88,629.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5655 transactions" + } + ] + }, + { + "id": 7364, + "type": "message", + "date": "2025-06-05T18:00:05", + "date_unixtime": "1749139205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003639 BTC for 82.69 CZK @ 2,272,455 CZK\nFees are 0.29044427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.997007798070862999014304564 CZK)\nThe limits being 0.03 % (22.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62532780 BTC (513,842.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,272,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.55 % (907,186.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,860.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03884988 BTC (88,284.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003639 BTC for 82.69 CZK @ 2,272,455 CZK\nFees are 0.29044427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.997007798070862999014304564 CZK)\nThe limits being 0.03 % (22.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62532780 BTC (513,842.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,272,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.55 % (907,186.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,860.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03884988 BTC (88,284.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5656 transactions" + } + ] + }, + { + "id": 7365, + "type": "message", + "date": "2025-06-05T22:00:04", + "date_unixtime": "1749153604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003731 BTC for 82.70 CZK @ 2,216,600 CZK\nFees are 0.29046786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.382604953154444568641221818 CZK)\nThe limits being 0.03 % (21.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62536511 BTC (513,925.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,216,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.72 % (872,258.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,777.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03888719 BTC (86,197.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003731 BTC for 82.70 CZK @ 2,216,600 CZK\nFees are 0.29046786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.382604953154444568641221818 CZK)\nThe limits being 0.03 % (21.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62536511 BTC (513,925.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,216,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.72 % (872,258.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,777.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03888719 BTC (86,197.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5657 transactions" + } + ] + }, + { + "id": 7366, + "type": "message", + "date": "2025-06-06T02:00:05", + "date_unixtime": "1749168005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003748 BTC for 82.70 CZK @ 2,206,489 CZK\nFees are 0.29046033 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.271382557260899551675858081 CZK)\nThe limits being 0.03 % (21.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62540259 BTC (514,008.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,206,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.47 % (865,935.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,694.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03892467 BTC (85,886.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003748 BTC for 82.70 CZK @ 2,206,489 CZK\nFees are 0.29046033 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.271382557260899551675858081 CZK)\nThe limits being 0.03 % (21.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62540259 BTC (514,008.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,206,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.47 % (865,935.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,694.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03892467 BTC (85,886.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5658 transactions" + } + ] + }, + { + "id": 7367, + "type": "message", + "date": "2025-06-06T06:00:04", + "date_unixtime": "1749182404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003722 BTC for 82.71 CZK @ 2,222,199 CZK\nFees are 0.29049911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.444193004227278678306743163 CZK)\nThe limits being 0.03 % (21.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62543981 BTC (514,091.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,222,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.35 % (875,760.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,611.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03896189 BTC (86,581.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003722 BTC for 82.71 CZK @ 2,222,199 CZK\nFees are 0.29049911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.444193004227278678306743163 CZK)\nThe limits being 0.03 % (21.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62543981 BTC (514,091.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,222,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.35 % (875,760.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,611.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03896189 BTC (86,581.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5659 transactions" + } + ] + }, + { + "id": 7368, + "type": "message", + "date": "2025-06-06T10:00:05", + "date_unixtime": "1749196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003686 BTC for 82.70 CZK @ 2,243,613 CZK\nFees are 0.29046153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.679738356879516375269302963 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62547667 BTC (514,174.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,243,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.93 % (889,152.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,528.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03899875 BTC (87,498.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003686 BTC for 82.70 CZK @ 2,243,613 CZK\nFees are 0.29046153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.679738356879516375269302963 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62547667 BTC (514,174.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,243,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.93 % (889,152.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,528.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03899875 BTC (87,498.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5660 transactions" + } + ] + }, + { + "id": 7369, + "type": "message", + "date": "2025-06-06T14:00:06", + "date_unixtime": "1749211206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003660 BTC for 82.71 CZK @ 2,259,775 CZK\nFees are 0.29049031 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.857522164500750106866404743 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62551327 BTC (514,257.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,259,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.87 % (899,261.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,445.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03903535 BTC (88,211.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003660 BTC for 82.71 CZK @ 2,259,775 CZK\nFees are 0.29049031 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.857522164500750106866404743 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62551327 BTC (514,257.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,259,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.87 % (899,261.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,445.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03903535 BTC (88,211.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5661 transactions" + } + ] + }, + { + "id": 7370, + "type": "message", + "date": "2025-06-06T18:00:05", + "date_unixtime": "1749225605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003611 BTC for 82.71 CZK @ 2,290,484 CZK\nFees are 0.29049602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.195324634341974233908818444 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62554938 BTC (514,340.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,290,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.57 % (918,469.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,362.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03907146 BTC (89,492.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003611 BTC for 82.71 CZK @ 2,290,484 CZK\nFees are 0.29049602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.195324634341974233908818444 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62554938 BTC (514,340.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,290,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.57 % (918,469.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,362.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03907146 BTC (89,492.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5662 transactions" + } + ] + }, + { + "id": 7371, + "type": "message", + "date": "2025-06-06T22:00:04", + "date_unixtime": "1749240004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003637 BTC for 82.69 CZK @ 2,273,696 CZK\nFees are 0.29044318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.010659724508350550362704960 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62558575 BTC (514,423.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,273,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.50 % (907,968.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,279.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03910783 BTC (88,919.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003637 BTC for 82.69 CZK @ 2,273,696 CZK\nFees are 0.29044318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.010659724508350550362704960 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62558575 BTC (514,423.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,273,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.50 % (907,968.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,279.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03910783 BTC (88,919.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5663 transactions" + } + ] + }, + { + "id": 7372, + "type": "message", + "date": "2025-06-07T02:00:05", + "date_unixtime": "1749254405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,180 CZK\nFees are 0.29047289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.026980284821556464341791352 CZK)\nThe limits being 0.03 % (22.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62562210 BTC (514,506.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,275,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.65 % (908,896.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,196.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03914418 BTC (89,060.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,180 CZK\nFees are 0.29047289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.026980284821556464341791352 CZK)\nThe limits being 0.03 % (22.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62562210 BTC (514,506.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,275,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.65 % (908,896.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,196.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03914418 BTC (89,060.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5664 transactions" + } + ] + }, + { + "id": 7373, + "type": "message", + "date": "2025-06-07T06:00:05", + "date_unixtime": "1749268805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003621 BTC for 82.70 CZK @ 2,283,854 CZK\nFees are 0.29045724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.122389384461757502428327697 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62565831 BTC (514,589.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.68 % (914,322.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,113.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03918039 BTC (89,482.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003621 BTC for 82.70 CZK @ 2,283,854 CZK\nFees are 0.29045724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.122389384461757502428327697 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62565831 BTC (514,589.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.68 % (914,322.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,113.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03918039 BTC (89,482.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5665 transactions" + } + ] + }, + { + "id": 7374, + "type": "message", + "date": "2025-06-07T10:00:05", + "date_unixtime": "1749283205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,850 CZK\nFees are 0.29048330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166344617352406273754170224 CZK)\nThe limits being 0.03 % (22.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62569446 BTC (514,672.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.14 % (916,821.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,030.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03921654 BTC (89,721.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,850 CZK\nFees are 0.29048330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166344617352406273754170224 CZK)\nThe limits being 0.03 % (22.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62569446 BTC (514,672.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.14 % (916,821.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,030.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03921654 BTC (89,721.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5666 transactions" + } + ] + }, + { + "id": 7375, + "type": "message", + "date": "2025-06-07T14:00:05", + "date_unixtime": "1749297605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,293,933 CZK\nFees are 0.29044998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.233258905343088372388733744 CZK)\nThe limits being 0.03 % (22.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62573051 BTC (514,755.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.85 % (920,627.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,947.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03925259 BTC (90,042.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,293,933 CZK\nFees are 0.29044998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.233258905343088372388733744 CZK)\nThe limits being 0.03 % (22.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62573051 BTC (514,755.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.85 % (920,627.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,947.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03925259 BTC (90,042.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5667 transactions" + } + ] + }, + { + "id": 7376, + "type": "message", + "date": "2025-06-07T18:00:05", + "date_unixtime": "1749312005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,996 CZK\nFees are 0.29045536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310957992601853446160475066 CZK)\nThe limits being 0.03 % (22.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62576645 BTC (514,838.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.68 % (925,047.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,864.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03928853 BTC (90,402.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,996 CZK\nFees are 0.29045536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310957992601853446160475066 CZK)\nThe limits being 0.03 % (22.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62576645 BTC (514,838.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.68 % (925,047.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,864.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03928853 BTC (90,402.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5668 transactions" + } + ] + }, + { + "id": 7377, + "type": "message", + "date": "2025-06-07T22:00:05", + "date_unixtime": "1749326405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62580236 BTC (514,921.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.87 % (926,164.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,781.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03932444 BTC (90,555.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62580236 BTC (514,921.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.87 % (926,164.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,781.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03932444 BTC (90,555.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5669 transactions" + } + ] + }, + { + "id": 7378, + "type": "message", + "date": "2025-06-08T02:00:04", + "date_unixtime": "1749340804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62583827 BTC (515,004.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.84 % (926,164.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,698.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03936035 BTC (90,638.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62583827 BTC (515,004.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.84 % (926,164.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,698.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03936035 BTC (90,638.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5670 transactions" + } + ] + }, + { + "id": 7379, + "type": "message", + "date": "2025-06-08T06:00:04", + "date_unixtime": "1749355204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,962 CZK\nFees are 0.29045106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310583061399736426125699727 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62587421 BTC (515,087.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.59 % (925,025.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,615.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03939629 BTC (90,649.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,962 CZK\nFees are 0.29045106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310583061399736426125699727 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62587421 BTC (515,087.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.59 % (925,025.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,615.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03939629 BTC (90,649.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5671 transactions" + } + ] + }, + { + "id": 7380, + "type": "message", + "date": "2025-06-08T10:00:06", + "date_unixtime": "1749369606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,300,046 CZK\nFees are 0.29049696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.300504015700332484801526138 CZK)\nThe limits being 0.03 % (22.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62591017 BTC (515,170.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.45 % (924,451.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,532.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03943225 BTC (90,695.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,300,046 CZK\nFees are 0.29049696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.300504015700332484801526138 CZK)\nThe limits being 0.03 % (22.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62591017 BTC (515,170.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.45 % (924,451.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,532.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03943225 BTC (90,695.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5672 transactions" + } + ] + }, + { + "id": 7381, + "type": "message", + "date": "2025-06-08T14:00:04", + "date_unixtime": "1749384004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,704 CZK\nFees are 0.29043776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.351748360115293240658808997 CZK)\nThe limits being 0.03 % (22.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62594605 BTC (515,253.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.98 % (927,366.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,449.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03946813 BTC (90,962.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,704 CZK\nFees are 0.29043776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.351748360115293240658808997 CZK)\nThe limits being 0.03 % (22.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62594605 BTC (515,253.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.98 % (927,366.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,449.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03946813 BTC (90,962.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5673 transactions" + } + ] + }, + { + "id": 7382, + "type": "message", + "date": "2025-06-08T18:00:04", + "date_unixtime": "1749398404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003579 BTC for 82.70 CZK @ 2,310,814 CZK\nFees are 0.29047719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.418949361225651543988329198 CZK)\nThe limits being 0.03 % (22.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62598184 BTC (515,336.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.70 % (931,190.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,366.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03950392 BTC (91,286.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003579 BTC for 82.70 CZK @ 2,310,814 CZK\nFees are 0.29047719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.418949361225651543988329198 CZK)\nThe limits being 0.03 % (22.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62598184 BTC (515,336.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.70 % (931,190.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,366.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03950392 BTC (91,286.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5674 transactions" + } + ] + }, + { + "id": 7383, + "type": "message", + "date": "2025-06-08T22:00:06", + "date_unixtime": "1749412806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003568 BTC for 82.71 CZK @ 2,318,058 CZK\nFees are 0.29049221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.498633384611259694209280969 CZK)\nThe limits being 0.03 % (22.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62601752 BTC (515,419.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,318,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.55 % (935,724.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,283.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03953960 BTC (91,655.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003568 BTC for 82.71 CZK @ 2,318,058 CZK\nFees are 0.29049221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.498633384611259694209280969 CZK)\nThe limits being 0.03 % (22.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62601752 BTC (515,419.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,318,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.55 % (935,724.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,283.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03953960 BTC (91,655.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5675 transactions" + } + ] + }, + { + "id": 7384, + "type": "message", + "date": "2025-06-09T02:00:05", + "date_unixtime": "1749427205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,623 CZK\nFees are 0.29042753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.350855142730654526326197216 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62605340 BTC (515,502.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.89 % (927,314.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,200.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03957548 BTC (91,206.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,623 CZK\nFees are 0.29042753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.350855142730654526326197216 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62605340 BTC (515,502.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.89 % (927,314.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,200.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03957548 BTC (91,206.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5676 transactions" + } + ] + }, + { + "id": 7385, + "type": "message", + "date": "2025-06-09T06:00:05", + "date_unixtime": "1749441605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003592 BTC for 82.71 CZK @ 2,302,622 CZK\nFees are 0.29049887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.328844442003100506800807419 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62608932 BTC (515,585.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.61 % (926,061.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,117.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03961140 BTC (91,210.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003592 BTC for 82.71 CZK @ 2,302,622 CZK\nFees are 0.29049887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.328844442003100506800807419 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62608932 BTC (515,585.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.61 % (926,061.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,117.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03961140 BTC (91,210.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5677 transactions" + } + ] + }, + { + "id": 7386, + "type": "message", + "date": "2025-06-09T10:00:04", + "date_unixtime": "1749456004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003601 BTC for 82.70 CZK @ 2,296,575 CZK\nFees are 0.29046193 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.262327142975149321169298180 CZK)\nThe limits being 0.03 % (22.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62612533 BTC (515,668.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,296,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.85 % (922,275.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,034.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03964741 BTC (91,053.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003601 BTC for 82.70 CZK @ 2,296,575 CZK\nFees are 0.29046193 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.262327142975149321169298180 CZK)\nThe limits being 0.03 % (22.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62612533 BTC (515,668.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,296,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.85 % (922,275.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,034.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03964741 BTC (91,053.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5678 transactions" + } + ] + }, + { + "id": 7387, + "type": "message", + "date": "2025-06-09T14:00:04", + "date_unixtime": "1749470404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,269 CZK\nFees are 0.29044070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.753961897514982950387121859 CZK)\nThe limits being 0.03 % (23.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62616065 BTC (515,751.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.25 % (950,258.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,851.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03968273 BTC (92,907.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,269 CZK\nFees are 0.29044070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.753961897514982950387121859 CZK)\nThe limits being 0.03 % (23.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62616065 BTC (515,751.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.25 % (950,258.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,851.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03968273 BTC (92,907.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5679 transactions" + } + ] + }, + { + "id": 7388, + "type": "message", + "date": "2025-06-09T18:00:04", + "date_unixtime": "1749484804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003533 BTC for 82.71 CZK @ 2,340,998 CZK\nFees are 0.29048922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.750973470859351454737177309 CZK)\nThe limits being 0.03 % (23.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62619598 BTC (515,834.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,340,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.18 % (950,088.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,668.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03971806 BTC (92,979.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003533 BTC for 82.71 CZK @ 2,340,998 CZK\nFees are 0.29048922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.750973470859351454737177309 CZK)\nThe limits being 0.03 % (23.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62619598 BTC (515,834.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,340,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.18 % (950,088.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,668.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03971806 BTC (92,979.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5680 transactions" + } + ] + }, + { + "id": 7389, + "type": "message", + "date": "2025-06-09T22:00:04", + "date_unixtime": "1749499204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003506 BTC for 82.69 CZK @ 2,358,610 CZK\nFees are 0.29043806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.944713935339261813544209642 CZK)\nThe limits being 0.03 % (23.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62623104 BTC (515,917.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,358,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.29 % (961,117.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,585.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03975312 BTC (93,762.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003506 BTC for 82.69 CZK @ 2,358,610 CZK\nFees are 0.29043806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.944713935339261813544209642 CZK)\nThe limits being 0.03 % (23.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62623104 BTC (515,917.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,358,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.29 % (961,117.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,585.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03975312 BTC (93,762.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5681 transactions" + } + ] + }, + { + "id": 7390, + "type": "message", + "date": "2025-06-10T02:00:05", + "date_unixtime": "1749513605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.69 CZK @ 2,387,791 CZK\nFees are 0.29042514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.265699610991906611583684654 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62626567 BTC (516,000.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.80 % (979,390.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,502.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03978775 BTC (95,004.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.69 CZK @ 2,387,791 CZK\nFees are 0.29042514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.265699610991906611583684654 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62626567 BTC (516,000.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.80 % (979,390.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,502.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03978775 BTC (95,004.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5682 transactions" + } + ] + }, + { + "id": 7391, + "type": "message", + "date": "2025-06-10T06:00:05", + "date_unixtime": "1749528005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003464 BTC for 82.69 CZK @ 2,387,195 CZK\nFees are 0.29043655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.259149334718784485248512422 CZK)\nThe limits being 0.03 % (23.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62630031 BTC (516,083.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.70 % (979,017.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,419.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03982239 BTC (95,063.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003464 BTC for 82.69 CZK @ 2,387,195 CZK\nFees are 0.29043655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.259149334718784485248512422 CZK)\nThe limits being 0.03 % (23.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62630031 BTC (516,083.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.70 % (979,017.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,419.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03982239 BTC (95,063.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5683 transactions" + } + ] + }, + { + "id": 7392, + "type": "message", + "date": "2025-06-10T10:00:06", + "date_unixtime": "1749542406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,738 CZK\nFees are 0.29044178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199116146195688362620230116 CZK)\nThe limits being 0.03 % (23.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62633503 BTC (516,166.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.01 % (975,599.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,336.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03985711 BTC (94,929.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,738 CZK\nFees are 0.29044178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199116146195688362620230116 CZK)\nThe limits being 0.03 % (23.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62633503 BTC (516,166.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.01 % (975,599.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,336.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03985711 BTC (94,929.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5684 transactions" + } + ] + }, + { + "id": 7393, + "type": "message", + "date": "2025-06-10T14:00:05", + "date_unixtime": "1749556805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,760 CZK\nFees are 0.29044447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199358748125799333668565551 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62636975 BTC (516,249.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.98 % (975,612.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,253.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03989183 BTC (95,012.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,760 CZK\nFees are 0.29044447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199358748125799333668565551 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62636975 BTC (516,249.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.98 % (975,612.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,253.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03989183 BTC (95,012.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5685 transactions" + } + ] + }, + { + "id": 7394, + "type": "message", + "date": "2025-06-10T18:00:06", + "date_unixtime": "1749571206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003490 BTC for 82.70 CZK @ 2,369,537 CZK\nFees are 0.29045192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.064901611979847039659187115 CZK)\nThe limits being 0.03 % (23.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62640465 BTC (516,332.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.47 % (967,956.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,071.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03992673 BTC (94,607.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003490 BTC for 82.70 CZK @ 2,369,537 CZK\nFees are 0.29045192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.064901611979847039659187115 CZK)\nThe limits being 0.03 % (23.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62640465 BTC (516,332.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.47 % (967,956.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,071.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03992673 BTC (94,607.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5686 transactions" + } + ] + }, + { + "id": 7395, + "type": "message", + "date": "2025-06-10T22:00:05", + "date_unixtime": "1749585605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003480 BTC for 82.69 CZK @ 2,376,208 CZK\nFees are 0.29043512 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.138288984531152460640631354 CZK)\nThe limits being 0.03 % (23.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62643945 BTC (516,415.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,376,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.25 % (972,134.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,988.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03996153 BTC (94,956.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003480 BTC for 82.69 CZK @ 2,376,208 CZK\nFees are 0.29043512 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.138288984531152460640631354 CZK)\nThe limits being 0.03 % (23.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62643945 BTC (516,415.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,376,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.25 % (972,134.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,988.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03996153 BTC (94,956.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5687 transactions" + } + ] + }, + { + "id": 7396, + "type": "message", + "date": "2025-06-11T02:00:05", + "date_unixtime": "1749600005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003465 BTC for 82.70 CZK @ 2,386,596 CZK\nFees are 0.29044744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.252554946575873332226097546 CZK)\nThe limits being 0.03 % (23.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62647410 BTC (516,498.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,386,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.48 % (978,641.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,905.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03999618 BTC (95,454.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.80 CZK over 5688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003465 BTC for 82.70 CZK @ 2,386,596 CZK\nFees are 0.29044744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.252554946575873332226097546 CZK)\nThe limits being 0.03 % (23.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62647410 BTC (516,498.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,386,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.48 % (978,641.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,905.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03999618 BTC (95,454.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.80 CZK over 5688 transactions" + } + ] + }, + { + "id": 7397, + "type": "message", + "date": "2025-06-11T06:00:07", + "date_unixtime": "1749614407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003468 BTC for 82.70 CZK @ 2,384,759 CZK\nFees are 0.29047521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.232352743195815798109155440 CZK)\nThe limits being 0.03 % (23.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62650878 BTC (516,581.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.22 % (977,491.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,822.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04003086 BTC (95,463.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.80 CZK over 5689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003468 BTC for 82.70 CZK @ 2,384,759 CZK\nFees are 0.29047521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.232352743195815798109155440 CZK)\nThe limits being 0.03 % (23.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62650878 BTC (516,581.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.22 % (977,491.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,822.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04003086 BTC (95,463.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.80 CZK over 5689 transactions" + } + ] + }, + { + "id": 7398, + "type": "message", + "date": "2025-06-11T10:00:06", + "date_unixtime": "1749628806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003476 BTC for 82.71 CZK @ 2,379,317 CZK\nFees are 0.29048082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.172484964018340870245280757 CZK)\nThe limits being 0.03 % (23.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62654354 BTC (516,664.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.53 % (974,081.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,739.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04006562 BTC (95,328.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.80 CZK over 5690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003476 BTC for 82.71 CZK @ 2,379,317 CZK\nFees are 0.29048082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.172484964018340870245280757 CZK)\nThe limits being 0.03 % (23.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62654354 BTC (516,664.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.53 % (974,081.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,739.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04006562 BTC (95,328.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.80 CZK over 5690 transactions" + } + ] + } + ] +} \ No newline at end of file diff --git a/archive/telegram-accbot-converter/output/result_accbot_import_2025-06-11T11-45-02.json b/archive/telegram-accbot-converter/output/result_accbot_import_2025-06-11T11-45-02.json new file mode 100644 index 0000000..89d75af --- /dev/null +++ b/archive/telegram-accbot-converter/output/result_accbot_import_2025-06-11T11-45-02.json @@ -0,0 +1,1140 @@ +{ + "exportDate": "2025-06-11T11:45:02.585Z", + "version": "1.0.0", + "transactions": [ + { + "id": "22ok12whugxmr6xv3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T02:00:05", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305402, + "totalCost": 82.69, + "fee": 0.29044472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T02:00:05" + }, + { + "id": "81it59qryemasgna1z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T06:00:04", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302998, + "totalCost": 82.7, + "fee": 0.29046541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T06:00:04" + }, + { + "id": "xtk69tocsfqecj5sie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T10:00:05", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299996, + "totalCost": 82.71, + "fee": 0.29049063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T10:00:05" + }, + { + "id": "846a0tcy2jwty120pu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T14:00:03", + "amountCrypto": 0.00003599, + "pricePerUnit": 2297768, + "totalCost": 82.7, + "fee": 0.2904514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T14:00:03" + }, + { + "id": "d3ex81tsyuz1hhgvt8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T18:00:05", + "amountCrypto": 0.00003589, + "pricePerUnit": 2304143, + "totalCost": 82.7, + "fee": 0.29044795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T18:00:05" + }, + { + "id": "ykc4axxsi99gffpils", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T22:00:05", + "amountCrypto": 0.00003572, + "pricePerUnit": 2314899, + "totalCost": 82.69, + "fee": 0.29042157, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T22:00:05" + }, + { + "id": "4d9qp8vu74gzbq30mn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T02:00:05", + "amountCrypto": 0.0000356, + "pricePerUnit": 2322747, + "totalCost": 82.69, + "fee": 0.29042726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T02:00:05" + }, + { + "id": "symijb5t293him03xe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T06:00:04", + "amountCrypto": 0.00003585, + "pricePerUnit": 2307024, + "totalCost": 82.71, + "fee": 0.29048702, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T06:00:04" + }, + { + "id": "xv26wosz8wp3757j56", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T10:00:04", + "amountCrypto": 0.00003586, + "pricePerUnit": 2306442, + "totalCost": 82.71, + "fee": 0.29049468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T10:00:04" + }, + { + "id": "impou1eym9ermhab1l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T14:00:05", + "amountCrypto": 0.0000363, + "pricePerUnit": 2278154, + "totalCost": 82.7, + "fee": 0.29045256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T14:00:05" + }, + { + "id": "9dvr0o3n4vhgtgk8ma", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T18:00:05", + "amountCrypto": 0.00003628, + "pricePerUnit": 2279262, + "totalCost": 82.69, + "fee": 0.29043368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T18:00:05" + }, + { + "id": "wqh2h1nyklbys22q7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T22:00:05", + "amountCrypto": 0.0000364, + "pricePerUnit": 2272001, + "totalCost": 82.7, + "fee": 0.29046603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T22:00:05" + }, + { + "id": "ydmx8hyqme1depopkc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T02:00:05", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299764, + "totalCost": 82.7, + "fee": 0.29046138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T02:00:05" + }, + { + "id": "27kuegj23pfxha8j7y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T06:00:06", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301800, + "totalCost": 82.7, + "fee": 0.290476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T06:00:06" + }, + { + "id": "txeuxa2wsutrwurewl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T10:00:04", + "amountCrypto": 0.000036, + "pricePerUnit": 2297232, + "totalCost": 82.7, + "fee": 0.29046429, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T10:00:04" + }, + { + "id": "9fbcm9io7a5w79vifi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T14:00:04", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301720, + "totalCost": 82.7, + "fee": 0.29046588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T14:00:04" + }, + { + "id": "953f3c5ou0ubld2rc7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T18:00:04", + "amountCrypto": 0.00003539, + "pricePerUnit": 2336842, + "totalCost": 82.7, + "fee": 0.29046605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T18:00:04" + }, + { + "id": "kuollo0s0qx19djldf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T22:00:05", + "amountCrypto": 0.0000355, + "pricePerUnit": 2329366, + "totalCost": 82.69, + "fee": 0.29043667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T22:00:05" + }, + { + "id": "suds7jxhqco8qjcesm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T02:00:04", + "amountCrypto": 0.00003581, + "pricePerUnit": 2309613, + "totalCost": 82.71, + "fee": 0.29048846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T02:00:04" + }, + { + "id": "4gozpo7h2wgw9mw0vf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T06:00:04", + "amountCrypto": 0.00003571, + "pricePerUnit": 2315613, + "totalCost": 82.69, + "fee": 0.29042979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T06:00:04" + }, + { + "id": "xagomq1nsxhq2nqyor", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T10:00:04", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305840, + "totalCost": 82.71, + "fee": 0.29049991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T10:00:04" + }, + { + "id": "rgnrjhmca9a5f3ntmb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T14:00:06", + "amountCrypto": 0.00003595, + "pricePerUnit": 2300365, + "totalCost": 82.7, + "fee": 0.29045643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T14:00:06" + }, + { + "id": "z1i5fyuc9t1vadp9b3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T18:00:04", + "amountCrypto": 0.00003607, + "pricePerUnit": 2292903, + "totalCost": 82.71, + "fee": 0.29048068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T18:00:04" + }, + { + "id": "tntxh36i9zoi3lenxl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T22:00:04", + "amountCrypto": 0.00003615, + "pricePerUnit": 2287838, + "totalCost": 82.71, + "fee": 0.2904819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T22:00:04" + }, + { + "id": "fung2lhv9bn1vqz5ov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T02:00:05", + "amountCrypto": 0.00003624, + "pricePerUnit": 2281893, + "totalCost": 82.7, + "fee": 0.29044829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T02:00:05" + }, + { + "id": "fuwzse0q42a6ezrjbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T06:00:05", + "amountCrypto": 0.00003612, + "pricePerUnit": 2289573, + "totalCost": 82.7, + "fee": 0.29046086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T06:00:05" + }, + { + "id": "dui3qk9rpmxxameewi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T10:00:04", + "amountCrypto": 0.00003632, + "pricePerUnit": 2277207, + "totalCost": 82.71, + "fee": 0.29049174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T10:00:04" + }, + { + "id": "b4mrmyblpl03t9ifqr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T14:00:04", + "amountCrypto": 0.00003622, + "pricePerUnit": 2283468, + "totalCost": 82.71, + "fee": 0.29048835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T14:00:04" + }, + { + "id": "jgg7qk4jin9nlk15c4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T18:00:05", + "amountCrypto": 0.00003639, + "pricePerUnit": 2272455, + "totalCost": 82.69, + "fee": 0.29044427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T18:00:05" + }, + { + "id": "8s8ztkbb8arvq8qw4k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T22:00:04", + "amountCrypto": 0.00003731, + "pricePerUnit": 2216600, + "totalCost": 82.7, + "fee": 0.29046786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T22:00:04" + }, + { + "id": "t9rgwzwjiq55st84t0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T02:00:05", + "amountCrypto": 0.00003748, + "pricePerUnit": 2206489, + "totalCost": 82.7, + "fee": 0.29046033, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T02:00:05" + }, + { + "id": "mswkdnt40q72xulxfo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T06:00:04", + "amountCrypto": 0.00003722, + "pricePerUnit": 2222199, + "totalCost": 82.71, + "fee": 0.29049911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T06:00:04" + }, + { + "id": "f6hsc2euz59y4rp65m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T10:00:05", + "amountCrypto": 0.00003686, + "pricePerUnit": 2243613, + "totalCost": 82.7, + "fee": 0.29046153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T10:00:05" + }, + { + "id": "casyguzjibn4z6vmci", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T14:00:06", + "amountCrypto": 0.0000366, + "pricePerUnit": 2259775, + "totalCost": 82.71, + "fee": 0.29049031, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T14:00:06" + }, + { + "id": "hrbmwlbl3dwt0i07aa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T18:00:05", + "amountCrypto": 0.00003611, + "pricePerUnit": 2290484, + "totalCost": 82.71, + "fee": 0.29049602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T18:00:05" + }, + { + "id": "6a619qmkt77dnxs6c5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T22:00:04", + "amountCrypto": 0.00003637, + "pricePerUnit": 2273696, + "totalCost": 82.69, + "fee": 0.29044318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T22:00:04" + }, + { + "id": "ge5mytep359498scx1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T02:00:05", + "amountCrypto": 0.00003635, + "pricePerUnit": 2275180, + "totalCost": 82.7, + "fee": 0.29047289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T02:00:05" + }, + { + "id": "ph368p6pjgp495ilhe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T06:00:05", + "amountCrypto": 0.00003621, + "pricePerUnit": 2283854, + "totalCost": 82.7, + "fee": 0.29045724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T06:00:05" + }, + { + "id": "ihtbei1wov5bap4ccc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T10:00:05", + "amountCrypto": 0.00003615, + "pricePerUnit": 2287850, + "totalCost": 82.71, + "fee": 0.2904833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T10:00:05" + }, + { + "id": "2b0x79cocgujklw6xy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T14:00:05", + "amountCrypto": 0.00003605, + "pricePerUnit": 2293933, + "totalCost": 82.7, + "fee": 0.29044998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T14:00:05" + }, + { + "id": "hazwq3f6tkfg3fz1d3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T18:00:05", + "amountCrypto": 0.00003594, + "pricePerUnit": 2300996, + "totalCost": 82.7, + "fee": 0.29045536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T18:00:05" + }, + { + "id": "vuf72eui555f01tc9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T22:00:05", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302782, + "totalCost": 82.69, + "fee": 0.2904381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T22:00:05" + }, + { + "id": "gefy1lbs4gce06finy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T02:00:04", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302782, + "totalCost": 82.69, + "fee": 0.2904381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T02:00:04" + }, + { + "id": "s9gf940tnng5buzhwe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T06:00:04", + "amountCrypto": 0.00003594, + "pricePerUnit": 2300962, + "totalCost": 82.7, + "fee": 0.29045106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T06:00:04" + }, + { + "id": "o7lqe7fu08dutlpj14", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T10:00:06", + "amountCrypto": 0.00003596, + "pricePerUnit": 2300046, + "totalCost": 82.71, + "fee": 0.29049696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T10:00:06" + }, + { + "id": "eui6cdqk8rnx4wik3t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T14:00:04", + "amountCrypto": 0.00003588, + "pricePerUnit": 2304704, + "totalCost": 82.69, + "fee": 0.29043776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T14:00:04" + }, + { + "id": "8d0kxtam623u9tdvnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T18:00:04", + "amountCrypto": 0.00003579, + "pricePerUnit": 2310814, + "totalCost": 82.7, + "fee": 0.29047719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T18:00:04" + }, + { + "id": "22zgtirt6mw25wccng", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T22:00:06", + "amountCrypto": 0.00003568, + "pricePerUnit": 2318058, + "totalCost": 82.71, + "fee": 0.29049221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T22:00:06" + }, + { + "id": "dab69tk6h29315lt9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T02:00:05", + "amountCrypto": 0.00003588, + "pricePerUnit": 2304623, + "totalCost": 82.69, + "fee": 0.29042753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T02:00:05" + }, + { + "id": "5ms4klt40q09zzwyny", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T06:00:05", + "amountCrypto": 0.00003592, + "pricePerUnit": 2302622, + "totalCost": 82.71, + "fee": 0.29049887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T06:00:05" + }, + { + "id": "0gnjfgun28n758gtx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T10:00:04", + "amountCrypto": 0.00003601, + "pricePerUnit": 2296575, + "totalCost": 82.7, + "fee": 0.29046193, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T10:00:04" + }, + { + "id": "l5uwamcyuppwy8f9h5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T14:00:04", + "amountCrypto": 0.00003532, + "pricePerUnit": 2341269, + "totalCost": 82.69, + "fee": 0.2904407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T14:00:04" + }, + { + "id": "l6tog3r8uc9ojlskuw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T18:00:04", + "amountCrypto": 0.00003533, + "pricePerUnit": 2340998, + "totalCost": 82.71, + "fee": 0.29048922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T18:00:04" + }, + { + "id": "llgeslurlzs94y7e8h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T22:00:04", + "amountCrypto": 0.00003506, + "pricePerUnit": 2358610, + "totalCost": 82.69, + "fee": 0.29043806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T22:00:04" + }, + { + "id": "4e8gijg4fm0n25imal", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T02:00:05", + "amountCrypto": 0.00003463, + "pricePerUnit": 2387791, + "totalCost": 82.69, + "fee": 0.29042514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T02:00:05" + }, + { + "id": "5w0y6dcgdl052i2bjt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T06:00:05", + "amountCrypto": 0.00003464, + "pricePerUnit": 2387195, + "totalCost": 82.69, + "fee": 0.29043655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T06:00:05" + }, + { + "id": "qoetvc8qxc6c8a47d1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T10:00:06", + "amountCrypto": 0.00003472, + "pricePerUnit": 2381738, + "totalCost": 82.69, + "fee": 0.29044178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T10:00:06" + }, + { + "id": "wvm2fidek2ofoddxjg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T14:00:05", + "amountCrypto": 0.00003472, + "pricePerUnit": 2381760, + "totalCost": 82.69, + "fee": 0.29044447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T14:00:05" + }, + { + "id": "fkt9dq7fy72odca828", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T18:00:06", + "amountCrypto": 0.0000349, + "pricePerUnit": 2369537, + "totalCost": 82.7, + "fee": 0.29045192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T18:00:06" + }, + { + "id": "46cemfd206cpfsavmh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T22:00:05", + "amountCrypto": 0.0000348, + "pricePerUnit": 2376208, + "totalCost": 82.69, + "fee": 0.29043512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T22:00:05" + }, + { + "id": "u4v4zzc53hjhsw1j05", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-11T02:00:05", + "amountCrypto": 0.00003465, + "pricePerUnit": 2386596, + "totalCost": 82.7, + "fee": 0.29044744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-11T02:00:05" + }, + { + "id": "8sxlp1nfdca7f6p6y5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-11T06:00:07", + "amountCrypto": 0.00003468, + "pricePerUnit": 2384759, + "totalCost": 82.7, + "fee": 0.29047521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-11T06:00:07" + }, + { + "id": "xda1gyntf5bp5bmlle", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-11T10:00:06", + "amountCrypto": 0.00003476, + "pricePerUnit": 2379317, + "totalCost": 82.71, + "fee": 0.29048082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-11T10:00:06" + } + ] +} \ No newline at end of file diff --git a/archive/telegram-accbot-converter/output/result_vitek.json b/archive/telegram-accbot-converter/output/result_vitek.json new file mode 100644 index 0000000..8463024 --- /dev/null +++ b/archive/telegram-accbot-converter/output/result_vitek.json @@ -0,0 +1,327128 @@ +{ + "name": "DCAinvest", + "type": "private_channel", + "id": 1892925603, + "messages": [ + { + "id": 1, + "type": "service", + "date": "2023-04-28T21:07:05", + "date_unixtime": "1682708825", + "actor": "DCAinvest", + "actor_id": "channel1892925603", + "action": "create_channel", + "title": "DCAinvest", + "text": "", + "text_entities": [] + }, + { + "id": 2, + "type": "message", + "date": "2023-04-29T19:53:27", + "date_unixtime": "1682790807", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009575 BTC for 59.79 CZK @ 624,445 CZK\nFees are 0.20999957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (143.62234999850393075931368149 CZK)\nThe limits being 0.10 % (24.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00019149 BTC (120.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.35 % (-0.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,880.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03946477 BTC (24,643.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 60.00 CZK over 2 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009575 BTC for 59.79 CZK @ 624,445 CZK\nFees are 0.20999957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (143.62234999850393075931368149 CZK)\nThe limits being 0.10 % (24.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00019149 BTC (120.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.35 % (-0.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,880.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03946477 BTC (24,643.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 60.00 CZK over 2 transactions" + } + ] + }, + { + "id": 3, + "type": "message", + "date": "2023-04-30T02:29:04", + "date_unixtime": "1682814544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010511 BTC for 65.77 CZK @ 625,696 CZK\nFees are 0.23098982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (162.68095999270368381011811149 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00029660 BTC (185.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 625,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.22 % (-0.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,814.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03956988 BTC (24,758.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 62.00 CZK over 3 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010511 BTC for 65.77 CZK @ 625,696 CZK\nFees are 0.23098982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (162.68095999270368381011811149 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00029660 BTC (185.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 625,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.22 % (-0.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,814.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03956988 BTC (24,758.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 62.00 CZK over 3 transactions" + } + ] + }, + { + "id": 4, + "type": "message", + "date": "2023-04-30T14:29:05", + "date_unixtime": "1682857745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010502 BTC for 65.77 CZK @ 626,215 CZK\nFees are 0.23098347 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (93.93224998925395091660240387 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00040162 BTC (251.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 626,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.19 % (-0.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,748.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03967490 BTC (24,845.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 63.00 CZK over 4 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010502 BTC for 65.77 CZK @ 626,215 CZK\nFees are 0.23098347 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (93.93224998925395091660240387 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00040162 BTC (251.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 626,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.19 % (-0.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,748.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03967490 BTC (24,845.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 63.00 CZK over 4 transactions" + } + ] + }, + { + "id": 5, + "type": "message", + "date": "2023-05-01T02:29:04", + "date_unixtime": "1682900944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010457 BTC for 65.77 CZK @ 628,948 CZK\nFees are 0.23099749 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (176.10543999130136422683179399 CZK)\nThe limits being 0.10 % (25.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00050619 BTC (317.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.12 % (0.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,682.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03977947 BTC (25,019.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 63.60 CZK over 5 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010457 BTC for 65.77 CZK @ 628,948 CZK\nFees are 0.23099749 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (176.10543999130136422683179399 CZK)\nThe limits being 0.10 % (25.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00050619 BTC (317.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.12 % (0.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,682.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03977947 BTC (25,019.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 63.60 CZK over 5 transactions" + } + ] + }, + { + "id": 6, + "type": "message", + "date": "2023-05-01T14:29:03", + "date_unixtime": "1682944143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010713 BTC for 65.77 CZK @ 613,919 CZK\nFees are 0.23099767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (184.17569997587553057438143200 CZK)\nThe limits being 0.10 % (24.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00061332 BTC (383.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.94 % (-7.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,616.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03988660 BTC (24,487.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.00 CZK over 6 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010713 BTC for 65.77 CZK @ 613,919 CZK\nFees are 0.23099767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (184.17569997587553057438143200 CZK)\nThe limits being 0.10 % (24.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00061332 BTC (383.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.94 % (-7.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,616.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03988660 BTC (24,487.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.00 CZK over 6 transactions" + } + ] + }, + { + "id": 7, + "type": "message", + "date": "2023-05-02T02:29:03", + "date_unixtime": "1682987343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010834 BTC for 65.77 CZK @ 607,065 CZK\nFees are 0.23099865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (230.68469997430996312610496822 CZK)\nThe limits being 0.10 % (24.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00072166 BTC (449.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.64 % (-11.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,550.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03999494 BTC (24,279.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.28 CZK over 7 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010834 BTC for 65.77 CZK @ 607,065 CZK\nFees are 0.23099865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (230.68469997430996312610496822 CZK)\nThe limits being 0.10 % (24.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00072166 BTC (449.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.64 % (-11.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,550.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03999494 BTC (24,279.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.28 CZK over 7 transactions" + } + ] + }, + { + "id": 8, + "type": "message", + "date": "2023-05-02T14:29:04", + "date_unixtime": "1683030544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010860 BTC for 65.77 CZK @ 605,571 CZK\nFees are 0.23098316 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (290.67407996872823570541777811 CZK)\nThe limits being 0.10 % (24.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00083026 BTC (515.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.56 % (-13.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,484.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04010354 BTC (24,285.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.50 CZK over 8 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010860 BTC for 65.77 CZK @ 605,571 CZK\nFees are 0.23098316 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (290.67407996872823570541777811 CZK)\nThe limits being 0.10 % (24.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00083026 BTC (515.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.56 % (-13.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,484.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04010354 BTC (24,285.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.50 CZK over 8 transactions" + } + ] + }, + { + "id": 9, + "type": "message", + "date": "2023-05-03T02:29:04", + "date_unixtime": "1683073744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010692 BTC for 65.76 CZK @ 615,084 CZK\nFees are 0.23098235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.49 % (615.08399995824565386653633345 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00093718 BTC (581.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.95 % (-5.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,418.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04021046 BTC (24,732.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.66 CZK over 9 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010692 BTC for 65.76 CZK @ 615,084 CZK\nFees are 0.23098235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.49 % (615.08399995824565386653633345 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00093718 BTC (581.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.95 % (-5.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,418.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04021046 BTC (24,732.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.66 CZK over 9 transactions" + } + ] + }, + { + "id": 10, + "type": "message", + "date": "2023-05-03T14:29:03", + "date_unixtime": "1683116943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010737 BTC for 65.77 CZK @ 612,541 CZK\nFees are 0.23099551 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.13 % (526.78525995933298371412081558 CZK)\nThe limits being 0.10 % (24.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00104455 BTC (647.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.26 % (-8.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,352.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04031783 BTC (24,696.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.80 CZK over 10 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010737 BTC for 65.77 CZK @ 612,541 CZK\nFees are 0.23099551 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.13 % (526.78525995933298371412081558 CZK)\nThe limits being 0.10 % (24.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00104455 BTC (647.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.26 % (-8.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,352.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04031783 BTC (24,696.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.80 CZK over 10 transactions" + } + ] + }, + { + "id": 11, + "type": "message", + "date": "2023-05-04T02:29:04", + "date_unixtime": "1683160144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010631 BTC for 65.76 CZK @ 618,604 CZK\nFees are 0.23097888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.39 % (346.41823995097208683163625833 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00115086 BTC (713.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 618,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.29 % (-2.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,286.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04042414 BTC (25,006.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.91 CZK over 11 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010631 BTC for 65.76 CZK @ 618,604 CZK\nFees are 0.23097888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.39 % (346.41823995097208683163625833 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00115086 BTC (713.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 618,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.29 % (-2.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,286.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04042414 BTC (25,006.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.91 CZK over 11 transactions" + } + ] + }, + { + "id": 12, + "type": "message", + "date": "2023-05-04T14:29:03", + "date_unixtime": "1683203343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010583 BTC for 65.77 CZK @ 621,444 CZK\nFees are 0.23099162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (192.64763998593037380601326332 CZK)\nThe limits being 0.10 % (25.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00125669 BTC (779.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.13 % (0.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,220.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04052997 BTC (25,187.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.00 CZK over 12 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010583 BTC for 65.77 CZK @ 621,444 CZK\nFees are 0.23099162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (192.64763998593037380601326332 CZK)\nThe limits being 0.10 % (25.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00125669 BTC (779.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.13 % (0.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,220.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04052997 BTC (25,187.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.00 CZK over 12 transactions" + } + ] + }, + { + "id": 13, + "type": "message", + "date": "2023-05-05T02:29:04", + "date_unixtime": "1683246544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010678 BTC for 65.77 CZK @ 615,919 CZK\nFees are 0.23099306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (129.34298998457636519046047207 CZK)\nThe limits being 0.10 % (25.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00136347 BTC (845.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.73 % (-6.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,154.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04063675 BTC (25,028.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.07 CZK over 13 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010678 BTC for 65.77 CZK @ 615,919 CZK\nFees are 0.23099306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (129.34298998457636519046047207 CZK)\nThe limits being 0.10 % (25.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00136347 BTC (845.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.73 % (-6.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,154.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04063675 BTC (25,028.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.07 CZK over 13 transactions" + } + ] + }, + { + "id": 14, + "type": "message", + "date": "2023-05-05T14:29:03", + "date_unixtime": "1683289743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010582 BTC for 65.77 CZK @ 621,488 CZK\nFees are 0.23098614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (105.65295999910349686134439498 CZK)\nThe limits being 0.10 % (25.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00146929 BTC (911.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.13 % (1.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,088.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04074257 BTC (25,321.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.14 CZK over 14 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010582 BTC for 65.77 CZK @ 621,488 CZK\nFees are 0.23098614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (105.65295999910349686134439498 CZK)\nThe limits being 0.10 % (25.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00146929 BTC (911.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.13 % (1.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,088.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04074257 BTC (25,321.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.14 CZK over 14 transactions" + } + ] + }, + { + "id": 15, + "type": "message", + "date": "2023-05-06T02:29:03", + "date_unixtime": "1683332943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010462 BTC for 65.77 CZK @ 628,644 CZK\nFees are 0.23099624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (157.16099999171319422358202037 CZK)\nThe limits being 0.10 % (25.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00157391 BTC (977.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.17 % (11.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,022.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04084719 BTC (25,678.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.20 CZK over 15 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010462 BTC for 65.77 CZK @ 628,644 CZK\nFees are 0.23099624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (157.16099999171319422358202037 CZK)\nThe limits being 0.10 % (25.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00157391 BTC (977.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.17 % (11.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,022.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04084719 BTC (25,678.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.20 CZK over 15 transactions" + } + ] + }, + { + "id": 16, + "type": "message", + "date": "2023-05-06T14:29:03", + "date_unixtime": "1683376143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010540 BTC for 65.77 CZK @ 623,977 CZK\nFees are 0.23099076 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (106.07608999148142790555635919 CZK)\nThe limits being 0.10 % (25.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00167931 BTC (1,043.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.37 % (3.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,956.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04095259 BTC (25,553.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.25 CZK over 16 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010540 BTC for 65.77 CZK @ 623,977 CZK\nFees are 0.23099076 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (106.07608999148142790555635919 CZK)\nThe limits being 0.10 % (25.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00167931 BTC (1,043.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.37 % (3.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,956.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04095259 BTC (25,553.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.25 CZK over 16 transactions" + } + ] + }, + { + "id": 17, + "type": "message", + "date": "2023-05-07T02:29:04", + "date_unixtime": "1683419344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010681 BTC for 65.77 CZK @ 615,762 CZK\nFees are 0.23099906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (147.78287998372142590344896691 CZK)\nThe limits being 0.10 % (25.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00178612 BTC (1,109.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.91 % (-10.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,890.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04105940 BTC (25,282.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.29 CZK over 17 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010681 BTC for 65.77 CZK @ 615,762 CZK\nFees are 0.23099906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (147.78287998372142590344896691 CZK)\nThe limits being 0.10 % (25.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00178612 BTC (1,109.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.91 % (-10.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,890.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04105940 BTC (25,282.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.29 CZK over 17 transactions" + } + ] + }, + { + "id": 18, + "type": "message", + "date": "2023-05-07T14:29:03", + "date_unixtime": "1683462543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010664 BTC for 65.77 CZK @ 616,708 CZK\nFees are 0.23098572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (197.34655998827808596394240563 CZK)\nThe limits being 0.10 % (25.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00189276 BTC (1,175.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.74 % (-8.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,824.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04116604 BTC (25,387.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.33 CZK over 18 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010664 BTC for 65.77 CZK @ 616,708 CZK\nFees are 0.23098572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (197.34655998827808596394240563 CZK)\nThe limits being 0.10 % (25.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00189276 BTC (1,175.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.74 % (-8.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,824.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04116604 BTC (25,387.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.33 CZK over 18 transactions" + } + ] + }, + { + "id": 19, + "type": "message", + "date": "2023-05-08T02:29:03", + "date_unixtime": "1683505743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010748 BTC for 65.76 CZK @ 611,870 CZK\nFees are 0.23097886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.04 % (513.97079994859821662513914363 CZK)\nThe limits being 0.10 % (25.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00200024 BTC (1,241.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.45 % (-18.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,758.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04127352 BTC (25,254.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.37 CZK over 19 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010748 BTC for 65.76 CZK @ 611,870 CZK\nFees are 0.23097886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.04 % (513.97079994859821662513914363 CZK)\nThe limits being 0.10 % (25.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00200024 BTC (1,241.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.45 % (-18.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,758.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04127352 BTC (25,254.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.37 CZK over 19 transactions" + } + ] + }, + { + "id": 20, + "type": "message", + "date": "2023-05-08T14:29:03", + "date_unixtime": "1683548943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011061 BTC for 65.76 CZK @ 594,564 CZK\nFees are 0.23098215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.13 % (523.21631996717753120384593711 CZK)\nThe limits being 0.10 % (24.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00211085 BTC (1,307.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.05 % (-52.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,692.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04138413 BTC (24,605.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.40 CZK over 20 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011061 BTC for 65.76 CZK @ 594,564 CZK\nFees are 0.23098215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.13 % (523.21631996717753120384593711 CZK)\nThe limits being 0.10 % (24.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00211085 BTC (1,307.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.05 % (-52.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,692.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04138413 BTC (24,605.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.40 CZK over 20 transactions" + } + ] + }, + { + "id": 21, + "type": "message", + "date": "2023-05-09T02:29:03", + "date_unixtime": "1683592143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011123 BTC for 65.77 CZK @ 591,287 CZK\nFees are 0.23099665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.83 % (449.37811996231297086108894873 CZK)\nThe limits being 0.10 % (24.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00222208 BTC (1,373.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.37 % (-60.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,626.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04149536 BTC (24,535.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.43 CZK over 21 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011123 BTC for 65.77 CZK @ 591,287 CZK\nFees are 0.23099665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.83 % (449.37811996231297086108894873 CZK)\nThe limits being 0.10 % (24.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00222208 BTC (1,373.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.37 % (-60.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,626.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04149536 BTC (24,535.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.43 CZK over 21 transactions" + } + ] + }, + { + "id": 22, + "type": "message", + "date": "2023-05-09T14:29:03", + "date_unixtime": "1683635343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011070 BTC for 65.77 CZK @ 594,084 CZK\nFees are 0.23098347 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (237.63359997911555265693829501 CZK)\nThe limits being 0.10 % (24.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00233278 BTC (1,439.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.76 % (-54.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,560.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04160606 BTC (24,717.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.45 CZK over 22 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011070 BTC for 65.77 CZK @ 594,084 CZK\nFees are 0.23098347 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (237.63359997911555265693829501 CZK)\nThe limits being 0.10 % (24.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00233278 BTC (1,439.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.76 % (-54.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,560.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04160606 BTC (24,717.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.45 CZK over 22 transactions" + } + ] + }, + { + "id": 23, + "type": "message", + "date": "2023-05-10T02:29:03", + "date_unixtime": "1683678543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011091 BTC for 65.76 CZK @ 592,955 CZK\nFees are 0.23098185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.84 % (207.53424997900909165769414838 CZK)\nThe limits being 0.10 % (24.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00244369 BTC (1,505.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.78 % (-56.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,494.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04171697 BTC (24,736.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.48 CZK over 23 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011091 BTC for 65.76 CZK @ 592,955 CZK\nFees are 0.23098185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.84 % (207.53424997900909165769414838 CZK)\nThe limits being 0.10 % (24.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00244369 BTC (1,505.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.78 % (-56.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,494.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04171697 BTC (24,736.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.48 CZK over 23 transactions" + } + ] + }, + { + "id": 24, + "type": "message", + "date": "2023-05-10T14:29:04", + "date_unixtime": "1683721744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011069 BTC for 65.77 CZK @ 594,152 CZK\nFees are 0.23098904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.36 % (338.66663996366858195250582668 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00255438 BTC (1,571.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.45 % (-54.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,428.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04182766 BTC (24,851.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.50 CZK over 24 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011069 BTC for 65.77 CZK @ 594,152 CZK\nFees are 0.23098904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.36 % (338.66663996366858195250582668 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00255438 BTC (1,571.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.45 % (-54.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,428.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04182766 BTC (24,851.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.50 CZK over 24 transactions" + } + ] + }, + { + "id": 25, + "type": "message", + "date": "2023-05-11T02:29:04", + "date_unixtime": "1683764944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011159 BTC for 65.77 CZK @ 589,383 CZK\nFees are 0.23099804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (123.77042999738392104022693581 CZK)\nThe limits being 0.10 % (24.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00266597 BTC (1,637.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.07 % (-66.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,362.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04193925 BTC (24,718.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.52 CZK over 25 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011159 BTC for 65.77 CZK @ 589,383 CZK\nFees are 0.23099804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (123.77042999738392104022693581 CZK)\nThe limits being 0.10 % (24.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00266597 BTC (1,637.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.07 % (-66.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,362.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04193925 BTC (24,718.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.52 CZK over 25 transactions" + } + ] + }, + { + "id": 26, + "type": "message", + "date": "2023-05-11T14:29:04", + "date_unixtime": "1683808144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011103 BTC for 65.76 CZK @ 592,316 CZK\nFees are 0.23098258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (71.077919990112961834336374971 CZK)\nThe limits being 0.10 % (24.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00277700 BTC (1,703.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.47 % (-59.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,296.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04205028 BTC (24,907.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.54 CZK over 26 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011103 BTC for 65.76 CZK @ 592,316 CZK\nFees are 0.23098258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (71.077919990112961834336374971 CZK)\nThe limits being 0.10 % (24.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00277700 BTC (1,703.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.47 % (-59.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,296.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04205028 BTC (24,907.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.54 CZK over 26 transactions" + } + ] + }, + { + "id": 27, + "type": "message", + "date": "2023-05-12T02:29:03", + "date_unixtime": "1683851343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011291 BTC for 65.77 CZK @ 582,477 CZK\nFees are 0.23099182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (122.32016999398571212782539475 CZK)\nThe limits being 0.10 % (24.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00288991 BTC (1,769.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.89 % (-86.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,230.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04216319 BTC (24,559.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.55 CZK over 27 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011291 BTC for 65.77 CZK @ 582,477 CZK\nFees are 0.23099182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (122.32016999398571212782539475 CZK)\nThe limits being 0.10 % (24.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00288991 BTC (1,769.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.89 % (-86.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,230.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04216319 BTC (24,559.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.55 CZK over 27 transactions" + } + ] + }, + { + "id": 28, + "type": "message", + "date": "2023-05-12T14:29:03", + "date_unixtime": "1683894543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011472 BTC for 65.77 CZK @ 573,300 CZK\nFees are 0.23099709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (45.863999995830492856591886556 CZK)\nThe limits being 0.10 % (24.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00300463 BTC (1,835.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.17 % (-113.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,164.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04227791 BTC (24,237.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.57 CZK over 28 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011472 BTC for 65.77 CZK @ 573,300 CZK\nFees are 0.23099709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (45.863999995830492856591886556 CZK)\nThe limits being 0.10 % (24.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00300463 BTC (1,835.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.17 % (-113.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,164.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04227791 BTC (24,237.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.57 CZK over 28 transactions" + } + ] + }, + { + "id": 29, + "type": "message", + "date": "2023-05-13T02:29:04", + "date_unixtime": "1683937744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011260 BTC for 65.77 CZK @ 584,059 CZK\nFees are 0.23098327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (186.89887999461918808150160052 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00311723 BTC (1,901.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.27 % (-81.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,098.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04239051 BTC (24,758.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.58 CZK over 29 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011260 BTC for 65.77 CZK @ 584,059 CZK\nFees are 0.23098327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (186.89887999461918808150160052 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00311723 BTC (1,901.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.27 % (-81.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,098.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04239051 BTC (24,758.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.58 CZK over 29 transactions" + } + ] + }, + { + "id": 30, + "type": "message", + "date": "2023-05-13T14:29:05", + "date_unixtime": "1683980945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011214 BTC for 65.77 CZK @ 586,476 CZK\nFees are 0.23099162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (58.647599995343567000072601255 CZK)\nThe limits being 0.10 % (24.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00322937 BTC (1,967.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.76 % (-73.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,032.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04250265 BTC (24,926.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.60 CZK over 30 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011214 BTC for 65.77 CZK @ 586,476 CZK\nFees are 0.23099162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (58.647599995343567000072601255 CZK)\nThe limits being 0.10 % (24.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00322937 BTC (1,967.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.76 % (-73.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,032.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04250265 BTC (24,926.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.60 CZK over 30 transactions" + } + ] + }, + { + "id": 31, + "type": "message", + "date": "2023-05-14T02:29:04", + "date_unixtime": "1684024144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011216 BTC for 65.77 CZK @ 586,356 CZK\nFees are 0.23098554 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (117.27119999758335128050397077 CZK)\nThe limits being 0.10 % (24.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00334153 BTC (2,033.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.67 % (-74.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,966.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04261481 BTC (24,987.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.61 CZK over 31 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011216 BTC for 65.77 CZK @ 586,356 CZK\nFees are 0.23098554 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (117.27119999758335128050397077 CZK)\nThe limits being 0.10 % (24.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00334153 BTC (2,033.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.67 % (-74.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,966.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04261481 BTC (24,987.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.61 CZK over 31 transactions" + } + ] + }, + { + "id": 32, + "type": "message", + "date": "2023-05-14T14:29:03", + "date_unixtime": "1684067343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011248 BTC for 65.77 CZK @ 584,705 CZK\nFees are 0.23099232 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (87.70574999415275554052990919 CZK)\nThe limits being 0.10 % (24.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00345401 BTC (2,099.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.83 % (-80.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,900.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04272729 BTC (24,982.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.62 CZK over 32 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011248 BTC for 65.77 CZK @ 584,705 CZK\nFees are 0.23099232 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (87.70574999415275554052990919 CZK)\nThe limits being 0.10 % (24.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00345401 BTC (2,099.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.83 % (-80.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,900.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04272729 BTC (24,982.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.62 CZK over 32 transactions" + } + ] + }, + { + "id": 33, + "type": "message", + "date": "2023-05-15T02:29:03", + "date_unixtime": "1684110543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011245 BTC for 65.77 CZK @ 584,843 CZK\nFees are 0.23098521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.242149998349485116897439664 CZK)\nThe limits being 0.10 % (25.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00356646 BTC (2,165.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.70 % (-80.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,834.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04283974 BTC (25,054.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.63 CZK over 33 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011245 BTC for 65.77 CZK @ 584,843 CZK\nFees are 0.23098521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.242149998349485116897439664 CZK)\nThe limits being 0.10 % (25.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00356646 BTC (2,165.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.70 % (-80.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,834.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04283974 BTC (25,054.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.63 CZK over 33 transactions" + } + ] + }, + { + "id": 34, + "type": "message", + "date": "2023-05-15T14:29:04", + "date_unixtime": "1684153744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011079 BTC for 65.76 CZK @ 593,597 CZK\nFees are 0.23098176 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (35.61581999961952823930216622 CZK)\nThe limits being 0.10 % (25.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00367725 BTC (2,231.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.20 % (-49.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,768.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04295053 BTC (25,495.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.64 CZK over 34 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011079 BTC for 65.76 CZK @ 593,597 CZK\nFees are 0.23098176 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (35.61581999961952823930216622 CZK)\nThe limits being 0.10 % (25.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00367725 BTC (2,231.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.20 % (-49.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,768.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04295053 BTC (25,495.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.64 CZK over 34 transactions" + } + ] + }, + { + "id": 35, + "type": "message", + "date": "2023-05-16T02:29:03", + "date_unixtime": "1684196943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011058 BTC for 65.77 CZK @ 594,750 CZK\nFees are 0.23099174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (101.10749999617003356762815045 CZK)\nThe limits being 0.10 % (25.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00378783 BTC (2,297.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.96 % (-45.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,702.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04306111 BTC (25,610.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.65 CZK over 35 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011058 BTC for 65.77 CZK @ 594,750 CZK\nFees are 0.23099174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (101.10749999617003356762815045 CZK)\nThe limits being 0.10 % (25.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00378783 BTC (2,297.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.96 % (-45.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,702.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04306111 BTC (25,610.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.65 CZK over 35 transactions" + } + ] + }, + { + "id": 36, + "type": "message", + "date": "2023-05-16T14:29:04", + "date_unixtime": "1684240144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011145 BTC for 65.77 CZK @ 590,094 CZK\nFees are 0.23098655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (147.52349998424089039639860756 CZK)\nThe limits being 0.10 % (25.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00389928 BTC (2,363.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.66 % (-62.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,636.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04317256 BTC (25,475.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.66 CZK over 36 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011145 BTC for 65.77 CZK @ 590,094 CZK\nFees are 0.23098655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (147.52349998424089039639860756 CZK)\nThe limits being 0.10 % (25.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00389928 BTC (2,363.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.66 % (-62.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,636.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04317256 BTC (25,475.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.66 CZK over 36 transactions" + } + ] + }, + { + "id": 37, + "type": "message", + "date": "2023-05-17T02:29:03", + "date_unixtime": "1684283343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011156 BTC for 65.76 CZK @ 589,495 CZK\nFees are 0.23097983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (123.79394998555611115845348023 CZK)\nThe limits being 0.10 % (25.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00401084 BTC (2,429.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.70 % (-65.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,570.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04328412 BTC (25,515.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.67 CZK over 37 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011156 BTC for 65.76 CZK @ 589,495 CZK\nFees are 0.23097983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (123.79394998555611115845348023 CZK)\nThe limits being 0.10 % (25.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00401084 BTC (2,429.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.70 % (-65.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,570.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04328412 BTC (25,515.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.67 CZK over 37 transactions" + } + ] + }, + { + "id": 38, + "type": "message", + "date": "2023-05-17T14:29:03", + "date_unixtime": "1684326543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011273 BTC for 65.77 CZK @ 583,390 CZK\nFees are 0.23098507 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (70.006799998461872402503594379 CZK)\nThe limits being 0.10 % (25.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00412357 BTC (2,495.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.62 % (-90.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,504.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04339685 BTC (25,317.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.68 CZK over 38 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011273 BTC for 65.77 CZK @ 583,390 CZK\nFees are 0.23098507 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (70.006799998461872402503594379 CZK)\nThe limits being 0.10 % (25.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00412357 BTC (2,495.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.62 % (-90.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,504.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04339685 BTC (25,317.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.68 CZK over 38 transactions" + } + ] + }, + { + "id": 39, + "type": "message", + "date": "2023-05-18T02:29:03", + "date_unixtime": "1684369743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010976 BTC for 65.77 CZK @ 599,184 CZK\nFees are 0.23098816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (167.77151998617085100108802863 CZK)\nThe limits being 0.10 % (26.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00423333 BTC (2,561.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.99 % (-25.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,438.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04350661 BTC (26,068.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.69 CZK over 39 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010976 BTC for 65.77 CZK @ 599,184 CZK\nFees are 0.23098816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (167.77151998617085100108802863 CZK)\nThe limits being 0.10 % (26.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00423333 BTC (2,561.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.99 % (-25.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,438.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04350661 BTC (26,068.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.69 CZK over 39 transactions" + } + ] + }, + { + "id": 40, + "type": "message", + "date": "2023-05-18T14:29:04", + "date_unixtime": "1684412944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010970 BTC for 65.77 CZK @ 599,529 CZK\nFees are 0.23099482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (95.92463998611968411380587270 CZK)\nThe limits being 0.10 % (26.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00434303 BTC (2,627.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.92 % (-24.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,372.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04361631 BTC (26,149.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.70 CZK over 40 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010970 BTC for 65.77 CZK @ 599,529 CZK\nFees are 0.23099482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (95.92463998611968411380587270 CZK)\nThe limits being 0.10 % (26.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00434303 BTC (2,627.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.92 % (-24.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,372.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04361631 BTC (26,149.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.70 CZK over 40 transactions" + } + ] + }, + { + "id": 41, + "type": "message", + "date": "2023-05-19T02:29:03", + "date_unixtime": "1684456143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011125 BTC for 65.76 CZK @ 591,143 CZK\nFees are 0.23098192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (224.63433998085352950068020356 CZK)\nThe limits being 0.10 % (25.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00445428 BTC (2,693.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.26 % (-60.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,306.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04372756 BTC (25,849.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.70 CZK over 41 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011125 BTC for 65.76 CZK @ 591,143 CZK\nFees are 0.23098192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (224.63433998085352950068020356 CZK)\nThe limits being 0.10 % (25.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00445428 BTC (2,693.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.26 % (-60.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,306.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04372756 BTC (25,849.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.70 CZK over 41 transactions" + } + ] + }, + { + "id": 42, + "type": "message", + "date": "2023-05-19T14:29:05", + "date_unixtime": "1684499345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011101 BTC for 65.77 CZK @ 592,444 CZK\nFees are 0.23099088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (189.58207997259568988048182142 CZK)\nThe limits being 0.10 % (25.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00456529 BTC (2,759.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.00 % (-55.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,240.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04383857 BTC (25,971.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.71 CZK over 42 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011101 BTC for 65.77 CZK @ 592,444 CZK\nFees are 0.23099088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (189.58207997259568988048182142 CZK)\nThe limits being 0.10 % (25.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00456529 BTC (2,759.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.00 % (-55.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,240.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04383857 BTC (25,971.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.71 CZK over 42 transactions" + } + ] + }, + { + "id": 43, + "type": "message", + "date": "2023-05-20T02:29:03", + "date_unixtime": "1684542543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011106 BTC for 65.77 CZK @ 592,161 CZK\nFees are 0.23098453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (106.58897999626913582041461045 CZK)\nThe limits being 0.10 % (26.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00467635 BTC (2,825.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.01 % (-56.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,174.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04394963 BTC (26,025.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.72 CZK over 43 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011106 BTC for 65.77 CZK @ 592,161 CZK\nFees are 0.23098453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (106.58897999626913582041461045 CZK)\nThe limits being 0.10 % (26.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00467635 BTC (2,825.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.01 % (-56.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,174.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04394963 BTC (26,025.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.72 CZK over 43 transactions" + } + ] + }, + { + "id": 44, + "type": "message", + "date": "2023-05-20T14:29:03", + "date_unixtime": "1684585743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011079 BTC for 65.77 CZK @ 593,601 CZK\nFees are 0.23098331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (89.04014999761867851903660772 CZK)\nThe limits being 0.10 % (26.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00478714 BTC (2,891.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.74 % (-50.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,108.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04406042 BTC (26,154.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.72 CZK over 44 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011079 BTC for 65.77 CZK @ 593,601 CZK\nFees are 0.23098331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (89.04014999761867851903660772 CZK)\nThe limits being 0.10 % (26.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00478714 BTC (2,891.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.74 % (-50.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,108.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04406042 BTC (26,154.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.72 CZK over 44 transactions" + } + ] + }, + { + "id": 45, + "type": "message", + "date": "2023-05-21T02:29:03", + "date_unixtime": "1684628943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011021 BTC for 65.77 CZK @ 596,725 CZK\nFees are 0.23098334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (83.54149999003126115125506422 CZK)\nThe limits being 0.10 % (26.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00489735 BTC (2,957.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.20 % (-35.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,042.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04417063 BTC (26,357.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.73 CZK over 45 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011021 BTC for 65.77 CZK @ 596,725 CZK\nFees are 0.23098334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (83.54149999003126115125506422 CZK)\nThe limits being 0.10 % (26.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00489735 BTC (2,957.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.20 % (-35.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,042.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04417063 BTC (26,357.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.73 CZK over 45 transactions" + } + ] + }, + { + "id": 46, + "type": "message", + "date": "2023-05-21T14:29:04", + "date_unixtime": "1684672144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011103 BTC for 65.77 CZK @ 592,338 CZK\nFees are 0.23099116 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (77.003939990094113994695948671 CZK)\nThe limits being 0.10 % (26.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00500838 BTC (3,023.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.89 % (-57.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,976.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04428166 BTC (26,229.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.74 CZK over 46 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011103 BTC for 65.77 CZK @ 592,338 CZK\nFees are 0.23099116 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (77.003939990094113994695948671 CZK)\nThe limits being 0.10 % (26.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00500838 BTC (3,023.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.89 % (-57.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,976.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04428166 BTC (26,229.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.74 CZK over 46 transactions" + } + ] + }, + { + "id": 47, + "type": "message", + "date": "2023-05-22T02:29:03", + "date_unixtime": "1684715343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011176 BTC for 65.77 CZK @ 588,452 CZK\nFees are 0.23098451 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (70.614239995377667070050813562 CZK)\nThe limits being 0.10 % (26.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00512014 BTC (3,089.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.49 % (-76.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,910.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04439342 BTC (26,123.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.74 CZK over 47 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011176 BTC for 65.77 CZK @ 588,452 CZK\nFees are 0.23098451 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (70.614239995377667070050813562 CZK)\nThe limits being 0.10 % (26.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00512014 BTC (3,089.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.49 % (-76.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,910.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04439342 BTC (26,123.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.74 CZK over 47 transactions" + } + ] + }, + { + "id": 48, + "type": "message", + "date": "2023-05-22T14:29:04", + "date_unixtime": "1684758544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011173 BTC for 65.77 CZK @ 588,626 CZK\nFees are 0.23099079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (88.29389999942472892357282938 CZK)\nThe limits being 0.10 % (26.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00523187 BTC (3,155.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.42 % (-76.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,844.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04450515 BTC (26,196.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.75 CZK over 48 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011173 BTC for 65.77 CZK @ 588,626 CZK\nFees are 0.23099079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (88.29389999942472892357282938 CZK)\nThe limits being 0.10 % (26.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00523187 BTC (3,155.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.42 % (-76.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,844.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04450515 BTC (26,196.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.75 CZK over 48 transactions" + } + ] + }, + { + "id": 49, + "type": "message", + "date": "2023-05-23T02:29:03", + "date_unixtime": "1684801743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011137 BTC for 65.76 CZK @ 590,501 CZK\nFees are 0.23097995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (82.67013999086165109733782171 CZK)\nThe limits being 0.10 % (26.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00534324 BTC (3,221.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.07 % (-66.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,778.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04461652 BTC (26,346.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.75 CZK over 49 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011137 BTC for 65.76 CZK @ 590,501 CZK\nFees are 0.23097995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (82.67013999086165109733782171 CZK)\nThe limits being 0.10 % (26.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00534324 BTC (3,221.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.07 % (-66.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,778.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04461652 BTC (26,346.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.75 CZK over 49 transactions" + } + ] + }, + { + "id": 50, + "type": "message", + "date": "2023-05-23T14:29:05", + "date_unixtime": "1684844945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010921 BTC for 65.77 CZK @ 602,196 CZK\nFees are 0.23098602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (48.175679994116371474676102736 CZK)\nThe limits being 0.10 % (26.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00545245 BTC (3,287.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.13 % (-4.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,712.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04472573 BTC (26,933.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.76 CZK over 50 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010921 BTC for 65.77 CZK @ 602,196 CZK\nFees are 0.23098602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (48.175679994116371474676102736 CZK)\nThe limits being 0.10 % (26.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00545245 BTC (3,287.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.13 % (-4.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,712.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04472573 BTC (26,933.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.76 CZK over 50 transactions" + } + ] + }, + { + "id": 51, + "type": "message", + "date": "2023-05-24T02:29:03", + "date_unixtime": "1684888143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010966 BTC for 65.76 CZK @ 599,715 CZK\nFees are 0.23098239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (107.94877351847414225298088098 CZK)\nThe limits being 0.10 % (26.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00556211 BTC (3,353.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.54 % (-18.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,646.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04483539 BTC (26,888.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.76 CZK over 51 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010966 BTC for 65.76 CZK @ 599,715 CZK\nFees are 0.23098239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (107.94877351847414225298088098 CZK)\nThe limits being 0.10 % (26.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00556211 BTC (3,353.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.54 % (-18.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,646.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04483539 BTC (26,888.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.76 CZK over 51 transactions" + } + ] + }, + { + "id": 52, + "type": "message", + "date": "2023-05-24T14:29:03", + "date_unixtime": "1684931343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011166 BTC for 65.76 CZK @ 588,971 CZK\nFees are 0.23098137 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (76.566229992447176419340475986 CZK)\nThe limits being 0.10 % (26.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00567377 BTC (3,419.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.28 % (-78.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,580.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04494705 BTC (26,472.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.77 CZK over 52 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011166 BTC for 65.76 CZK @ 588,971 CZK\nFees are 0.23098137 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (76.566229992447176419340475986 CZK)\nThe limits being 0.10 % (26.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00567377 BTC (3,419.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.28 % (-78.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,580.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04494705 BTC (26,472.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.77 CZK over 52 transactions" + } + ] + }, + { + "id": 53, + "type": "message", + "date": "2023-05-25T02:29:04", + "date_unixtime": "1684974544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011318 BTC for 65.76 CZK @ 581,065 CZK\nFees are 0.23098290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (81.34909998958407897856706334 CZK)\nThe limits being 0.10 % (26.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00578695 BTC (3,485.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.54 % (-123.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,514.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04506023 BTC (26,182.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.77 CZK over 53 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011318 BTC for 65.76 CZK @ 581,065 CZK\nFees are 0.23098290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (81.34909998958407897856706334 CZK)\nThe limits being 0.10 % (26.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00578695 BTC (3,485.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.54 % (-123.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,514.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04506023 BTC (26,182.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.77 CZK over 53 transactions" + } + ] + }, + { + "id": 54, + "type": "message", + "date": "2023-05-25T14:29:03", + "date_unixtime": "1685017743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011285 BTC for 65.77 CZK @ 582,779 CZK\nFees are 0.23098878 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (110.72800999073027302094419642 CZK)\nThe limits being 0.10 % (26.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00589980 BTC (3,551.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.20 % (-113.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,448.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04517308 BTC (26,325.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.77 CZK over 54 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011285 BTC for 65.77 CZK @ 582,779 CZK\nFees are 0.23098878 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (110.72800999073027302094419642 CZK)\nThe limits being 0.10 % (26.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00589980 BTC (3,551.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.20 % (-113.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,448.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04517308 BTC (26,325.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.77 CZK over 54 transactions" + } + ] + }, + { + "id": 55, + "type": "message", + "date": "2023-05-26T02:29:05", + "date_unixtime": "1685060945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011240 BTC for 65.76 CZK @ 585,096 CZK\nFees are 0.23098239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (128.72111998751700010816235702 CZK)\nThe limits being 0.10 % (26.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00601220 BTC (3,617.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.77 % (-100.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,382.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04528548 BTC (26,496.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.78 CZK over 55 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011240 BTC for 65.76 CZK @ 585,096 CZK\nFees are 0.23098239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (128.72111998751700010816235702 CZK)\nThe limits being 0.10 % (26.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00601220 BTC (3,617.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.77 % (-100.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,382.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04528548 BTC (26,496.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.78 CZK over 55 transactions" + } + ] + }, + { + "id": 56, + "type": "message", + "date": "2023-05-26T14:29:04", + "date_unixtime": "1685104144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011281 BTC for 65.76 CZK @ 582,967 CZK\nFees are 0.23098139 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (174.89009998557040430296108819 CZK)\nThe limits being 0.10 % (26.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00612501 BTC (3,683.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.07 % (-113.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,316.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04539829 BTC (26,465.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.78 CZK over 56 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011281 BTC for 65.76 CZK @ 582,967 CZK\nFees are 0.23098139 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (174.89009998557040430296108819 CZK)\nThe limits being 0.10 % (26.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00612501 BTC (3,683.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.07 % (-113.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,316.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04539829 BTC (26,465.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.78 CZK over 56 transactions" + } + ] + }, + { + "id": 57, + "type": "message", + "date": "2023-05-27T02:29:05", + "date_unixtime": "1685147345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011169 BTC for 65.77 CZK @ 588,858 CZK\nFees are 0.23099910 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (111.88301999140531641805386760 CZK)\nThe limits being 0.10 % (26.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00623670 BTC (3,749.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.06 % (-77.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,250.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04550998 BTC (26,798.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.79 CZK over 57 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011169 BTC for 65.77 CZK @ 588,858 CZK\nFees are 0.23099910 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (111.88301999140531641805386760 CZK)\nThe limits being 0.10 % (26.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00623670 BTC (3,749.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.06 % (-77.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,250.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04550998 BTC (26,798.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.79 CZK over 57 transactions" + } + ] + }, + { + "id": 58, + "type": "message", + "date": "2023-05-27T14:29:04", + "date_unixtime": "1685190544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011143 BTC for 65.77 CZK @ 590,199 CZK\nFees are 0.23098619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (47.215919999288141688063777138 CZK)\nThe limits being 0.10 % (26.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00634813 BTC (3,815.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.81 % (-69.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,184.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04562141 BTC (26,925.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.79 CZK over 58 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011143 BTC for 65.77 CZK @ 590,199 CZK\nFees are 0.23098619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (47.215919999288141688063777138 CZK)\nThe limits being 0.10 % (26.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00634813 BTC (3,815.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.81 % (-69.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,184.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04562141 BTC (26,925.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.79 CZK over 58 transactions" + } + ] + }, + { + "id": 59, + "type": "message", + "date": "2023-05-28T02:29:04", + "date_unixtime": "1685233744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011098 BTC for 65.77 CZK @ 592,594 CZK\nFees are 0.23098692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (53.333459994003686682123470718 CZK)\nThe limits being 0.10 % (27.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00645911 BTC (3,881.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.40 % (-54.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,118.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04573239 BTC (27,100.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.79 CZK over 59 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011098 BTC for 65.77 CZK @ 592,594 CZK\nFees are 0.23098692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (53.333459994003686682123470718 CZK)\nThe limits being 0.10 % (27.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00645911 BTC (3,881.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.40 % (-54.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,118.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04573239 BTC (27,100.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.79 CZK over 59 transactions" + } + ] + }, + { + "id": 60, + "type": "message", + "date": "2023-05-28T14:29:03", + "date_unixtime": "1685276943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010965 BTC for 65.77 CZK @ 599,781 CZK\nFees are 0.23098659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (41.984669997916548805128243578 CZK)\nThe limits being 0.10 % (27.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00656876 BTC (3,947.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.20 % (-7.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,052.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04584204 BTC (27,495.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.80 CZK over 60 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010965 BTC for 65.77 CZK @ 599,781 CZK\nFees are 0.23098659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (41.984669997916548805128243578 CZK)\nThe limits being 0.10 % (27.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00656876 BTC (3,947.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.20 % (-7.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,052.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04584204 BTC (27,495.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.80 CZK over 60 transactions" + } + ] + }, + { + "id": 61, + "type": "message", + "date": "2023-05-29T02:29:03", + "date_unixtime": "1685320143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010546 BTC for 65.77 CZK @ 623,617 CZK\nFees are 0.23098891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (87.30637999884908793053253495 CZK)\nThe limits being 0.10 % (28.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00667422 BTC (4,013.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.70 % (148.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,986.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04594750 BTC (28,653.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.80 CZK over 61 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010546 BTC for 65.77 CZK @ 623,617 CZK\nFees are 0.23098891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (87.30637999884908793053253495 CZK)\nThe limits being 0.10 % (28.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00667422 BTC (4,013.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.70 % (148.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,986.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04594750 BTC (28,653.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.80 CZK over 61 transactions" + } + ] + }, + { + "id": 62, + "type": "message", + "date": "2023-05-29T14:29:04", + "date_unixtime": "1685363344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010702 BTC for 65.76 CZK @ 614,500 CZK\nFees are 0.23097887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (67.594999994878698243309694336 CZK)\nThe limits being 0.10 % (28.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00678124 BTC (4,079.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.14 % (87.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,920.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04605452 BTC (28,300.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.80 CZK over 62 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010702 BTC for 65.76 CZK @ 614,500 CZK\nFees are 0.23097887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (67.594999994878698243309694336 CZK)\nThe limits being 0.10 % (28.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00678124 BTC (4,079.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.14 % (87.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,920.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04605452 BTC (28,300.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.80 CZK over 62 transactions" + } + ] + }, + { + "id": 63, + "type": "message", + "date": "2023-05-30T02:29:03", + "date_unixtime": "1685406543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010781 BTC for 65.76 CZK @ 610,000 CZK\nFees are 0.23097996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (79.30000 CZK)\nThe limits being 0.10 % (28.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00688905 BTC (4,145.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.36 % (56.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,854.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04616233 BTC (28,159.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.81 CZK over 63 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010781 BTC for 65.76 CZK @ 610,000 CZK\nFees are 0.23097996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (79.30000 CZK)\nThe limits being 0.10 % (28.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00688905 BTC (4,145.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.36 % (56.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,854.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04616233 BTC (28,159.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.81 CZK over 63 transactions" + } + ] + }, + { + "id": 64, + "type": "message", + "date": "2023-05-30T14:29:03", + "date_unixtime": "1685449743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010716 BTC for 65.77 CZK @ 613,741 CZK\nFees are 0.23099536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (85.92373998768401672905562149 CZK)\nThe limits being 0.10 % (28.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00699621 BTC (4,211.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.95 % (82.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,788.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04626949 BTC (28,397.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.81 CZK over 64 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010716 BTC for 65.77 CZK @ 613,741 CZK\nFees are 0.23099536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (85.92373998768401672905562149 CZK)\nThe limits being 0.10 % (28.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00699621 BTC (4,211.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.95 % (82.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,788.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04626949 BTC (28,397.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.81 CZK over 64 transactions" + } + ] + }, + { + "id": 65, + "type": "message", + "date": "2023-05-31T02:29:03", + "date_unixtime": "1685492943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010783 BTC for 65.77 CZK @ 609,906 CZK\nFees are 0.23098721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (109.78307999346255461906696681 CZK)\nThe limits being 0.10 % (28.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00710404 BTC (4,277.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.29 % (55.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,722.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04637732 BTC (28,285.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.81 CZK over 65 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010783 BTC for 65.77 CZK @ 609,906 CZK\nFees are 0.23098721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (109.78307999346255461906696681 CZK)\nThe limits being 0.10 % (28.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00710404 BTC (4,277.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.29 % (55.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,722.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04637732 BTC (28,285.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.81 CZK over 65 transactions" + } + ] + }, + { + "id": 66, + "type": "message", + "date": "2023-05-31T14:29:05", + "date_unixtime": "1685536145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010928 BTC for 65.77 CZK @ 601,811 CZK\nFees are 0.23098630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (42.126769999182947531370802484 CZK)\nThe limits being 0.10 % (27.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00721332 BTC (4,343.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.06 % (-2.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,656.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04648660 BTC (27,976.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.81 CZK over 66 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010928 BTC for 65.77 CZK @ 601,811 CZK\nFees are 0.23098630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (42.126769999182947531370802484 CZK)\nThe limits being 0.10 % (27.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00721332 BTC (4,343.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.06 % (-2.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,656.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04648660 BTC (27,976.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.81 CZK over 66 transactions" + } + ] + }, + { + "id": 67, + "type": "message", + "date": "2023-06-01T02:29:04", + "date_unixtime": "1685579344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010865 BTC for 65.76 CZK @ 605,285 CZK\nFees are 0.23098037 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (133.16269999318996489736451642 CZK)\nThe limits being 0.10 % (28.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00732197 BTC (4,409.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.50 % (22.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,590.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04659525 BTC (28,203.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.82 CZK over 67 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010865 BTC for 65.76 CZK @ 605,285 CZK\nFees are 0.23098037 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (133.16269999318996489736451642 CZK)\nThe limits being 0.10 % (28.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00732197 BTC (4,409.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.50 % (22.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,590.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04659525 BTC (28,203.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.82 CZK over 67 transactions" + } + ] + }, + { + "id": 68, + "type": "message", + "date": "2023-06-01T14:29:03", + "date_unixtime": "1685622543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011035 BTC for 65.76 CZK @ 595,958 CZK\nFees are 0.23097949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (107.27243998610210886275019760 CZK)\nThe limits being 0.10 % (27.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00743232 BTC (4,475.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.04 % (-46.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,524.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04670560 BTC (27,834.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.82 CZK over 68 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011035 BTC for 65.76 CZK @ 595,958 CZK\nFees are 0.23097949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (107.27243998610210886275019760 CZK)\nThe limits being 0.10 % (27.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00743232 BTC (4,475.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.04 % (-46.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,524.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04670560 BTC (27,834.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.82 CZK over 68 transactions" + } + ] + }, + { + "id": 69, + "type": "message", + "date": "2023-06-02T02:29:04", + "date_unixtime": "1685665744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011175 BTC for 65.77 CZK @ 588,528 CZK\nFees are 0.23099367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (111.82031999322282525701432013 CZK)\nThe limits being 0.10 % (27.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00754407 BTC (4,541.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.24 % (-101.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,458.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04681735 BTC (27,553.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.82 CZK over 69 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011175 BTC for 65.77 CZK @ 588,528 CZK\nFees are 0.23099367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (111.82031999322282525701432013 CZK)\nThe limits being 0.10 % (27.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00754407 BTC (4,541.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.24 % (-101.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,458.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04681735 BTC (27,553.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.82 CZK over 69 transactions" + } + ] + }, + { + "id": 70, + "type": "message", + "date": "2023-06-02T14:29:04", + "date_unixtime": "1685708944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010991 BTC for 65.77 CZK @ 598,365 CZK\nFees are 0.23098768 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (83.77109999996826682990209365 CZK)\nThe limits being 0.10 % (28.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00765398 BTC (4,607.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.61 % (-27.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,392.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04692726 BTC (28,079.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.83 CZK over 70 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010991 BTC for 65.77 CZK @ 598,365 CZK\nFees are 0.23098768 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (83.77109999996826682990209365 CZK)\nThe limits being 0.10 % (28.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00765398 BTC (4,607.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.61 % (-27.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,392.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04692726 BTC (28,079.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.83 CZK over 70 transactions" + } + ] + }, + { + "id": 71, + "type": "message", + "date": "2023-06-03T02:29:05", + "date_unixtime": "1685752145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010926 BTC for 65.77 CZK @ 601,927 CZK\nFees are 0.23098854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (78.250509995174312567554835762 CZK)\nThe limits being 0.10 % (28.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00776324 BTC (4,673.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.02 % (-0.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,326.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04703652 BTC (28,312.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.83 CZK over 71 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010926 BTC for 65.77 CZK @ 601,927 CZK\nFees are 0.23098854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (78.250509995174312567554835762 CZK)\nThe limits being 0.10 % (28.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00776324 BTC (4,673.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.02 % (-0.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,326.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04703652 BTC (28,312.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.83 CZK over 71 transactions" + } + ] + }, + { + "id": 72, + "type": "message", + "date": "2023-06-03T14:29:05", + "date_unixtime": "1685795345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010961 BTC for 65.77 CZK @ 600,005 CZK\nFees are 0.23098856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (54.000449993310976585145131352 CZK)\nThe limits being 0.10 % (28.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00787285 BTC (4,739.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.34 % (-16.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,260.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04714613 BTC (28,287.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.83 CZK over 72 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010961 BTC for 65.77 CZK @ 600,005 CZK\nFees are 0.23098856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (54.000449993310976585145131352 CZK)\nThe limits being 0.10 % (28.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00787285 BTC (4,739.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.34 % (-16.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,260.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04714613 BTC (28,287.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.83 CZK over 72 transactions" + } + ] + }, + { + "id": 73, + "type": "message", + "date": "2023-06-04T02:29:04", + "date_unixtime": "1685838544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011017 BTC for 65.77 CZK @ 596,973 CZK\nFees are 0.23099547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (59.697299996440704787487236625 CZK)\nThe limits being 0.10 % (28.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00798302 BTC (4,805.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.83 % (-40.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,194.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04725630 BTC (28,210.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.83 CZK over 73 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011017 BTC for 65.77 CZK @ 596,973 CZK\nFees are 0.23099547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (59.697299996440704787487236625 CZK)\nThe limits being 0.10 % (28.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00798302 BTC (4,805.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.83 % (-40.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,194.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04725630 BTC (28,210.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.83 CZK over 73 transactions" + } + ] + }, + { + "id": 74, + "type": "message", + "date": "2023-06-04T14:29:03", + "date_unixtime": "1685881743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010944 BTC for 65.77 CZK @ 600,947 CZK\nFees are 0.23099239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (48.075759993531411987867026810 CZK)\nThe limits being 0.10 % (28.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00809246 BTC (4,871.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.18 % (-8.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,128.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04736574 BTC (28,464.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.83 CZK over 74 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010944 BTC for 65.77 CZK @ 600,947 CZK\nFees are 0.23099239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (48.075759993531411987867026810 CZK)\nThe limits being 0.10 % (28.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00809246 BTC (4,871.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.18 % (-8.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,128.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04736574 BTC (28,464.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.83 CZK over 74 transactions" + } + ] + }, + { + "id": 75, + "type": "message", + "date": "2023-06-05T02:29:05", + "date_unixtime": "1685924945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010950 BTC for 65.77 CZK @ 600,628 CZK\nFees are 0.23099635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (36.037679999453965913822170349 CZK)\nThe limits being 0.10 % (28.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00820196 BTC (4,937.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.23 % (-11.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,062.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04747524 BTC (28,514.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.84 CZK over 75 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010950 BTC for 65.77 CZK @ 600,628 CZK\nFees are 0.23099635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (36.037679999453965913822170349 CZK)\nThe limits being 0.10 % (28.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00820196 BTC (4,937.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.23 % (-11.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,062.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04747524 BTC (28,514.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.84 CZK over 75 transactions" + } + ] + }, + { + "id": 76, + "type": "message", + "date": "2023-06-05T14:29:04", + "date_unixtime": "1685968144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011120 BTC for 65.77 CZK @ 591,421 CZK\nFees are 0.23098669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (59.14209999713233897187182989 CZK)\nThe limits being 0.10 % (28.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00831316 BTC (5,003.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.74 % (-87.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,996.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04758644 BTC (28,143.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.84 CZK over 76 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011120 BTC for 65.77 CZK @ 591,421 CZK\nFees are 0.23098669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (59.14209999713233897187182989 CZK)\nThe limits being 0.10 % (28.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00831316 BTC (5,003.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.74 % (-87.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,996.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04758644 BTC (28,143.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.84 CZK over 76 transactions" + } + ] + }, + { + "id": 77, + "type": "message", + "date": "2023-06-06T02:29:05", + "date_unixtime": "1686011345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011604 BTC for 65.77 CZK @ 566,773 CZK\nFees are 0.23099485 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (130.35778998771449186722720049 CZK)\nThe limits being 0.10 % (27.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00842920 BTC (5,069.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.77 % (-292.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,930.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04770248 BTC (27,036.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.84 CZK over 77 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011604 BTC for 65.77 CZK @ 566,773 CZK\nFees are 0.23099485 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (130.35778998771449186722720049 CZK)\nThe limits being 0.10 % (27.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00842920 BTC (5,069.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.77 % (-292.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,930.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04770248 BTC (27,036.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.84 CZK over 77 transactions" + } + ] + }, + { + "id": 78, + "type": "message", + "date": "2023-06-06T14:29:07", + "date_unixtime": "1686054547", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011678 BTC for 65.77 CZK @ 563,162 CZK\nFees are 0.23098684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (129.52725999163912775571507601 CZK)\nThe limits being 0.10 % (26.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00854598 BTC (5,135.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 563,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.29 % (-322.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,864.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04781926 BTC (26,929.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.84 CZK over 78 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011678 BTC for 65.77 CZK @ 563,162 CZK\nFees are 0.23098684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (129.52725999163912775571507601 CZK)\nThe limits being 0.10 % (26.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00854598 BTC (5,135.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 563,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.29 % (-322.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,864.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04781926 BTC (26,929.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.84 CZK over 78 transactions" + } + ] + }, + { + "id": 79, + "type": "message", + "date": "2023-06-07T02:29:03", + "date_unixtime": "1686097743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011026 BTC for 65.77 CZK @ 596,495 CZK\nFees are 0.23099906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (202.80829998325288300308615113 CZK)\nThe limits being 0.10 % (28.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00865624 BTC (5,201.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.74 % (-38.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,798.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04792952 BTC (28,589.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.84 CZK over 79 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011026 BTC for 65.77 CZK @ 596,495 CZK\nFees are 0.23099906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (202.80829998325288300308615113 CZK)\nThe limits being 0.10 % (28.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00865624 BTC (5,201.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.74 % (-38.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,798.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04792952 BTC (28,589.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.84 CZK over 79 transactions" + } + ] + }, + { + "id": 80, + "type": "message", + "date": "2023-06-07T14:29:05", + "date_unixtime": "1686140945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011115 BTC for 65.77 CZK @ 591,679 CZK\nFees are 0.23098355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (183.42048999173159349384666040 CZK)\nThe limits being 0.10 % (28.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00876739 BTC (5,267.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.52 % (-80.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,732.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04804067 BTC (28,424.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.85 CZK over 80 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011115 BTC for 65.77 CZK @ 591,679 CZK\nFees are 0.23098355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (183.42048999173159349384666040 CZK)\nThe limits being 0.10 % (28.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00876739 BTC (5,267.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.52 % (-80.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,732.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04804067 BTC (28,424.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.85 CZK over 80 transactions" + } + ] + }, + { + "id": 81, + "type": "message", + "date": "2023-06-08T02:29:03", + "date_unixtime": "1686184143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011298 BTC for 65.76 CZK @ 582,089 CZK\nFees are 0.23098115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (168.80586859251603279475985229 CZK)\nThe limits being 0.10 % (28.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00888037 BTC (5,333.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.09 % (-164.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,666.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04815365 BTC (28,029.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.85 CZK over 81 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011298 BTC for 65.76 CZK @ 582,089 CZK\nFees are 0.23098115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (168.80586859251603279475985229 CZK)\nThe limits being 0.10 % (28.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00888037 BTC (5,333.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.09 % (-164.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,666.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04815365 BTC (28,029.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.85 CZK over 81 transactions" + } + ] + }, + { + "id": 82, + "type": "message", + "date": "2023-06-08T14:29:03", + "date_unixtime": "1686227343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011318 BTC for 65.77 CZK @ 581,088 CZK\nFees are 0.23099204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (81.35231998836375213700273112 CZK)\nThe limits being 0.10 % (28.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00899355 BTC (5,399.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.22 % (-173.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,600.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04826683 BTC (28,047.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.85 CZK over 82 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011318 BTC for 65.77 CZK @ 581,088 CZK\nFees are 0.23099204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (81.35231998836375213700273112 CZK)\nThe limits being 0.10 % (28.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00899355 BTC (5,399.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.22 % (-173.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,600.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04826683 BTC (28,047.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.85 CZK over 82 transactions" + } + ] + }, + { + "id": 83, + "type": "message", + "date": "2023-06-09T02:29:04", + "date_unixtime": "1686270544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011346 BTC for 65.77 CZK @ 579,666 CZK\nFees are 0.23099683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (75.356579993994226623177068168 CZK)\nThe limits being 0.10 % (28.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00910701 BTC (5,465.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.42 % (-186.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,534.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04838029 BTC (28,044.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.85 CZK over 83 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011346 BTC for 65.77 CZK @ 579,666 CZK\nFees are 0.23099683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (75.356579993994226623177068168 CZK)\nThe limits being 0.10 % (28.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00910701 BTC (5,465.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.42 % (-186.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,534.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04838029 BTC (28,044.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.85 CZK over 83 transactions" + } + ] + }, + { + "id": 84, + "type": "message", + "date": "2023-06-09T14:29:04", + "date_unixtime": "1686313744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011263 BTC for 65.77 CZK @ 583,930 CZK\nFees are 0.23099378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (64.232299994501177867165710212 CZK)\nThe limits being 0.10 % (28.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00921964 BTC (5,531.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.68 % (-148.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,468.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04849292 BTC (28,316.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.85 CZK over 84 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011263 BTC for 65.77 CZK @ 583,930 CZK\nFees are 0.23099378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (64.232299994501177867165710212 CZK)\nThe limits being 0.10 % (28.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00921964 BTC (5,531.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.68 % (-148.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,468.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04849292 BTC (28,316.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.85 CZK over 84 transactions" + } + ] + }, + { + "id": 85, + "type": "message", + "date": "2023-06-10T02:29:04", + "date_unixtime": "1686356944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011288 BTC for 65.77 CZK @ 582,612 CZK\nFees are 0.23098397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (116.52239998418010386750554491 CZK)\nThe limits being 0.10 % (28.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00933252 BTC (5,597.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.87 % (-160.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,402.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04860580 BTC (28,318.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 85 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011288 BTC for 65.77 CZK @ 582,612 CZK\nFees are 0.23098397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (116.52239998418010386750554491 CZK)\nThe limits being 0.10 % (28.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00933252 BTC (5,597.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.87 % (-160.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,402.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04860580 BTC (28,318.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 85 transactions" + } + ] + }, + { + "id": 86, + "type": "message", + "date": "2023-06-10T14:29:04", + "date_unixtime": "1686400144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011619 BTC for 65.77 CZK @ 566,030 CZK\nFees are 0.23099024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (50.942700000038594585874304382 CZK)\nThe limits being 0.10 % (27.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00944871 BTC (5,663.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.57 % (-315.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,336.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04872199 BTC (27,578.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 86 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011619 BTC for 65.77 CZK @ 566,030 CZK\nFees are 0.23099024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (50.942700000038594585874304382 CZK)\nThe limits being 0.10 % (27.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00944871 BTC (5,663.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.57 % (-315.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,336.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04872199 BTC (27,578.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 86 transactions" + } + ] + }, + { + "id": 87, + "type": "message", + "date": "2023-06-11T02:29:03", + "date_unixtime": "1686443343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011526 BTC for 65.77 CZK @ 570,618 CZK\nFees are 0.23099868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.530899996809708446257982538 CZK)\nThe limits being 0.10 % (27.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00956397 BTC (5,729.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 570,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.75 % (-272.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,270.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04883725 BTC (27,867.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 87 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011526 BTC for 65.77 CZK @ 570,618 CZK\nFees are 0.23099868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.530899996809708446257982538 CZK)\nThe limits being 0.10 % (27.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00956397 BTC (5,729.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 570,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.75 % (-272.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,270.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04883725 BTC (27,867.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 87 transactions" + } + ] + }, + { + "id": 88, + "type": "message", + "date": "2023-06-11T14:29:05", + "date_unixtime": "1686486545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011550 BTC for 65.77 CZK @ 569,410 CZK\nFees are 0.23098964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (22.776399999137218868160572196 CZK)\nThe limits being 0.10 % (27.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00967947 BTC (5,795.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.90 % (-284.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,204.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04895275 BTC (27,874.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 88 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011550 BTC for 65.77 CZK @ 569,410 CZK\nFees are 0.23098964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (22.776399999137218868160572196 CZK)\nThe limits being 0.10 % (27.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00967947 BTC (5,795.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.90 % (-284.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,204.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04895275 BTC (27,874.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 88 transactions" + } + ] + }, + { + "id": 89, + "type": "message", + "date": "2023-06-12T02:29:03", + "date_unixtime": "1686529743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011526 BTC for 65.77 CZK @ 570,617 CZK\nFees are 0.23099828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (34.237019997940576021405559459 CZK)\nThe limits being 0.10 % (28.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00979473 BTC (5,861.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 570,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.65 % (-272.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,138.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04906801 BTC (27,999.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 89 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011526 BTC for 65.77 CZK @ 570,617 CZK\nFees are 0.23099828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (34.237019997940576021405559459 CZK)\nThe limits being 0.10 % (28.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00979473 BTC (5,861.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 570,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.65 % (-272.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,138.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04906801 BTC (27,999.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 89 transactions" + } + ] + }, + { + "id": 90, + "type": "message", + "date": "2023-06-12T14:29:03", + "date_unixtime": "1686572943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011536 BTC for 65.77 CZK @ 570,093 CZK\nFees are 0.23098638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.504649995819071529812093180 CZK)\nThe limits being 0.10 % (28.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00991009 BTC (5,927.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 570,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.69 % (-278.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,072.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04918337 BTC (28,039.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 90 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011536 BTC for 65.77 CZK @ 570,093 CZK\nFees are 0.23098638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.504649995819071529812093180 CZK)\nThe limits being 0.10 % (28.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00991009 BTC (5,927.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 570,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.69 % (-278.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,072.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04918337 BTC (28,039.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 90 transactions" + } + ] + }, + { + "id": 91, + "type": "message", + "date": "2023-06-13T02:29:04", + "date_unixtime": "1686616144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011492 BTC for 65.77 CZK @ 572,281 CZK\nFees are 0.23098850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (57.228099996687542088593160971 CZK)\nThe limits being 0.10 % (28.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01002501 BTC (5,993.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.28 % (-256.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,006.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04929829 BTC (28,212.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.86 CZK over 91 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011492 BTC for 65.77 CZK @ 572,281 CZK\nFees are 0.23098850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (57.228099996687542088593160971 CZK)\nThe limits being 0.10 % (28.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01002501 BTC (5,993.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.28 % (-256.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,006.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04929829 BTC (28,212.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.86 CZK over 91 transactions" + } + ] + }, + { + "id": 92, + "type": "message", + "date": "2023-06-13T14:29:04", + "date_unixtime": "1686659344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011395 BTC for 65.77 CZK @ 577,159 CZK\nFees are 0.23099109 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.857949996425411454818184620 CZK)\nThe limits being 0.10 % (28.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01013896 BTC (6,059.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.43 % (-207.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,940.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04941224 BTC (28,518.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 92 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011395 BTC for 65.77 CZK @ 577,159 CZK\nFees are 0.23099109 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.857949996425411454818184620 CZK)\nThe limits being 0.10 % (28.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01013896 BTC (6,059.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.43 % (-207.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,940.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04941224 BTC (28,518.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 92 transactions" + } + ] + }, + { + "id": 93, + "type": "message", + "date": "2023-06-14T02:29:03", + "date_unixtime": "1686702543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011494 BTC for 65.77 CZK @ 572,174 CZK\nFees are 0.23098551 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (62.939139991931840437709360548 CZK)\nThe limits being 0.10 % (28.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01025390 BTC (6,125.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.22 % (-258.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,874.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04952718 BTC (28,338.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 93 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011494 BTC for 65.77 CZK @ 572,174 CZK\nFees are 0.23098551 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (62.939139991931840437709360548 CZK)\nThe limits being 0.10 % (28.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01025390 BTC (6,125.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.22 % (-258.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,874.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04952718 BTC (28,338.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 93 transactions" + } + ] + }, + { + "id": 94, + "type": "message", + "date": "2023-06-14T14:29:04", + "date_unixtime": "1686745744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011503 BTC for 65.77 CZK @ 571,746 CZK\nFees are 0.23099346 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (74.326979990618768414695310740 CZK)\nThe limits being 0.10 % (28.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01036893 BTC (6,191.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.25 % (-263.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,808.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04964221 BTC (28,382.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 94 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011503 BTC for 65.77 CZK @ 571,746 CZK\nFees are 0.23099346 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (74.326979990618768414695310740 CZK)\nThe limits being 0.10 % (28.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01036893 BTC (6,191.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.25 % (-263.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,808.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04964221 BTC (28,382.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 94 transactions" + } + ] + }, + { + "id": 95, + "type": "message", + "date": "2023-06-15T02:29:06", + "date_unixtime": "1686788946", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011651 BTC for 65.77 CZK @ 564,468 CZK\nFees are 0.23098722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (67.736159996530895620371186472 CZK)\nThe limits being 0.10 % (28.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01048544 BTC (6,257.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 564,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.42 % (-338.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,742.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04975872 BTC (28,087.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 95 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011651 BTC for 65.77 CZK @ 564,468 CZK\nFees are 0.23098722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (67.736159996530895620371186472 CZK)\nThe limits being 0.10 % (28.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01048544 BTC (6,257.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 564,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.42 % (-338.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,742.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04975872 BTC (28,087.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 95 transactions" + } + ] + }, + { + "id": 96, + "type": "message", + "date": "2023-06-15T14:29:04", + "date_unixtime": "1686832144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011834 BTC for 65.77 CZK @ 555,752 CZK\nFees are 0.23099258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (27.787599999629486757477778258 CZK)\nThe limits being 0.10 % (27.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01060378 BTC (6,323.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.81 % (-430.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,676.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04987706 BTC (27,719.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 96 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011834 BTC for 65.77 CZK @ 555,752 CZK\nFees are 0.23099258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (27.787599999629486757477778258 CZK)\nThe limits being 0.10 % (27.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01060378 BTC (6,323.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.81 % (-430.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,676.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04987706 BTC (27,719.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 96 transactions" + } + ] + }, + { + "id": 97, + "type": "message", + "date": "2023-06-16T02:29:03", + "date_unixtime": "1686875343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011853 BTC for 65.77 CZK @ 554,857 CZK\nFees are 0.23099085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (55.485699999382066588756613306 CZK)\nThe limits being 0.10 % (27.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01072231 BTC (6,389.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.89 % (-440.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,610.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04999559 BTC (27,740.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 97 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011853 BTC for 65.77 CZK @ 554,857 CZK\nFees are 0.23099085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (55.485699999382066588756613306 CZK)\nThe limits being 0.10 % (27.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01072231 BTC (6,389.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.89 % (-440.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,610.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04999559 BTC (27,740.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 97 transactions" + } + ] + }, + { + "id": 98, + "type": "message", + "date": "2023-06-16T14:29:03", + "date_unixtime": "1686918543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011793 BTC for 65.77 CZK @ 557,684 CZK\nFees are 0.23099251 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (27.884199996020035193535928752 CZK)\nThe limits being 0.10 % (27.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01084024 BTC (6,455.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 557,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.35 % (-410.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,544.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05011352 BTC (27,947.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.87 CZK over 98 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011793 BTC for 65.77 CZK @ 557,684 CZK\nFees are 0.23099251 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (27.884199996020035193535928752 CZK)\nThe limits being 0.10 % (27.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01084024 BTC (6,455.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 557,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.35 % (-410.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,544.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05011352 BTC (27,947.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.87 CZK over 98 transactions" + } + ] + }, + { + "id": 99, + "type": "message", + "date": "2023-06-17T02:29:05", + "date_unixtime": "1686961745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011469 BTC for 65.76 CZK @ 573,414 CZK\nFees are 0.23098260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (74.543819999085075111814378162 CZK)\nThe limits being 0.10 % (28.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01095493 BTC (6,521.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.68 % (-239.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,478.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05022821 BTC (28,801.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 99 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011469 BTC for 65.76 CZK @ 573,414 CZK\nFees are 0.23098260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (74.543819999085075111814378162 CZK)\nThe limits being 0.10 % (28.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01095493 BTC (6,521.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.68 % (-239.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,478.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05022821 BTC (28,801.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 99 transactions" + } + ] + }, + { + "id": 100, + "type": "message", + "date": "2023-06-17T14:29:04", + "date_unixtime": "1687004944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011372 BTC for 65.77 CZK @ 578,337 CZK\nFees are 0.23099536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (57.833699997598976918807389052 CZK)\nThe limits being 0.10 % (29.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01106865 BTC (6,587.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.83 % (-186.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,412.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05034193 BTC (29,114.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011372 BTC for 65.77 CZK @ 578,337 CZK\nFees are 0.23099536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (57.833699997598976918807389052 CZK)\nThe limits being 0.10 % (29.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01106865 BTC (6,587.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.83 % (-186.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,412.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05034193 BTC (29,114.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 100 transactions" + } + ] + }, + { + "id": 101, + "type": "message", + "date": "2023-06-18T02:29:04", + "date_unixtime": "1687048144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011405 BTC for 65.76 CZK @ 576,625 CZK\nFees are 0.23097989 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (40.363749997324139732767842144 CZK)\nThe limits being 0.10 % (29.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01118270 BTC (6,653.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.09 % (-205.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,346.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05045598 BTC (29,094.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011405 BTC for 65.76 CZK @ 576,625 CZK\nFees are 0.23097989 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (40.363749997324139732767842144 CZK)\nThe limits being 0.10 % (29.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01118270 BTC (6,653.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.09 % (-205.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,346.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05045598 BTC (29,094.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 101 transactions" + } + ] + }, + { + "id": 102, + "type": "message", + "date": "2023-06-18T14:29:04", + "date_unixtime": "1687091344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011389 BTC for 65.77 CZK @ 577,449 CZK\nFees are 0.23098546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.872449998628472311087154219 CZK)\nThe limits being 0.10 % (29.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01129659 BTC (6,719.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.92 % (-196.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,280.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05056987 BTC (29,201.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011389 BTC for 65.77 CZK @ 577,449 CZK\nFees are 0.23098546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.872449998628472311087154219 CZK)\nThe limits being 0.10 % (29.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01129659 BTC (6,719.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.92 % (-196.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,280.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05056987 BTC (29,201.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 102 transactions" + } + ] + }, + { + "id": 103, + "type": "message", + "date": "2023-06-19T02:29:03", + "date_unixtime": "1687134543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011449 BTC for 65.77 CZK @ 574,426 CZK\nFees are 0.23098675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.721299998002449545204762630 CZK)\nThe limits being 0.10 % (29.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01141108 BTC (6,785.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.40 % (-230.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,214.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05068436 BTC (29,114.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011449 BTC for 65.77 CZK @ 574,426 CZK\nFees are 0.23098675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.721299998002449545204762630 CZK)\nThe limits being 0.10 % (29.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01141108 BTC (6,785.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.40 % (-230.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,214.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05068436 BTC (29,114.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 103 transactions" + } + ] + }, + { + "id": 104, + "type": "message", + "date": "2023-06-19T14:29:07", + "date_unixtime": "1687177747", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011389 BTC for 65.76 CZK @ 577,435 CZK\nFees are 0.23097988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.871752571330048929195615854 CZK)\nThe limits being 0.10 % (29.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01152497 BTC (6,851.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.87 % (-196.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,148.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05079825 BTC (29,332.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011389 BTC for 65.76 CZK @ 577,435 CZK\nFees are 0.23097988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.871752571330048929195615854 CZK)\nThe limits being 0.10 % (29.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01152497 BTC (6,851.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.87 % (-196.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,148.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05079825 BTC (29,332.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 104 transactions" + } + ] + }, + { + "id": 105, + "type": "message", + "date": "2023-06-20T02:29:03", + "date_unixtime": "1687220943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011225 BTC for 65.77 CZK @ 585,890 CZK\nFees are 0.23098717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (46.871199997336715704388759609 CZK)\nThe limits being 0.10 % (29.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01163722 BTC (6,917.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.44 % (-99.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,082.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05091050 BTC (29,827.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011225 BTC for 65.77 CZK @ 585,890 CZK\nFees are 0.23098717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (46.871199997336715704388759609 CZK)\nThe limits being 0.10 % (29.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01163722 BTC (6,917.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.44 % (-99.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,082.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05091050 BTC (29,827.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 105 transactions" + } + ] + }, + { + "id": 106, + "type": "message", + "date": "2023-06-20T14:29:04", + "date_unixtime": "1687264144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011259 BTC for 65.77 CZK @ 584,125 CZK\nFees are 0.23098886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (35.047499995685232249344188492 CZK)\nThe limits being 0.10 % (29.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01174981 BTC (6,983.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.72 % (-120.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,016.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05102309 BTC (29,803.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011259 BTC for 65.77 CZK @ 584,125 CZK\nFees are 0.23098886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (35.047499995685232249344188492 CZK)\nThe limits being 0.10 % (29.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01174981 BTC (6,983.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.72 % (-120.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,016.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05102309 BTC (29,803.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 106 transactions" + } + ] + }, + { + "id": 107, + "type": "message", + "date": "2023-06-21T02:29:04", + "date_unixtime": "1687307344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010694 BTC for 65.77 CZK @ 615,000 CZK\nFees are 0.23099401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (61.5000 CZK)\nThe limits being 0.10 % (31.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01185675 BTC (7,049.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.44 % (242.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,950.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05113003 BTC (31,444.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.88 CZK over 107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010694 BTC for 65.77 CZK @ 615,000 CZK\nFees are 0.23099401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (61.5000 CZK)\nThe limits being 0.10 % (31.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01185675 BTC (7,049.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.44 % (242.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,950.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05113003 BTC (31,444.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.88 CZK over 107 transactions" + } + ] + }, + { + "id": 108, + "type": "message", + "date": "2023-06-21T14:29:03", + "date_unixtime": "1687350543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010493 BTC for 65.76 CZK @ 626,739 CZK\nFees are 0.23097864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (50.139119998902155616497315149 CZK)\nThe limits being 0.10 % (32.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01196168 BTC (7,115.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 626,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.36 % (381.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,884.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05123496 BTC (32,110.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010493 BTC for 65.76 CZK @ 626,739 CZK\nFees are 0.23097864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (50.139119998902155616497315149 CZK)\nThe limits being 0.10 % (32.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01196168 BTC (7,115.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 626,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.36 % (381.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,884.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05123496 BTC (32,110.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 108 transactions" + } + ] + }, + { + "id": 109, + "type": "message", + "date": "2023-06-22T02:29:03", + "date_unixtime": "1687393743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010188 BTC for 65.77 CZK @ 645,520 CZK\nFees are 0.23098515 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (90.37279999780900339193662386 CZK)\nThe limits being 0.10 % (33.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01206356 BTC (7,181.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.43 % (605.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,818.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05133684 BTC (33,138.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010188 BTC for 65.77 CZK @ 645,520 CZK\nFees are 0.23098515 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (90.37279999780900339193662386 CZK)\nThe limits being 0.10 % (33.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01206356 BTC (7,181.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.43 % (605.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,818.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05133684 BTC (33,138.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 109 transactions" + } + ] + }, + { + "id": 110, + "type": "message", + "date": "2023-06-22T14:29:04", + "date_unixtime": "1687436944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010163 BTC for 65.77 CZK @ 647,114 CZK\nFees are 0.23098732 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (77.653679993681467417418941214 CZK)\nThe limits being 0.10 % (33.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01216519 BTC (7,247.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.62 % (624.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,752.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05143847 BTC (33,286.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010163 BTC for 65.77 CZK @ 647,114 CZK\nFees are 0.23098732 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (77.653679993681467417418941214 CZK)\nThe limits being 0.10 % (33.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01216519 BTC (7,247.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.62 % (624.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,752.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05143847 BTC (33,286.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 110 transactions" + } + ] + }, + { + "id": 111, + "type": "message", + "date": "2023-06-23T02:29:04", + "date_unixtime": "1687480144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010139 BTC for 65.77 CZK @ 648,649 CZK\nFees are 0.23098833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (38.918917103089182928298150477 CZK)\nThe limits being 0.10 % (33.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01226658 BTC (7,313.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.79 % (643.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,686.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05153986 BTC (33,431.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010139 BTC for 65.77 CZK @ 648,649 CZK\nFees are 0.23098833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (38.918917103089182928298150477 CZK)\nThe limits being 0.10 % (33.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01226658 BTC (7,313.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.79 % (643.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,686.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05153986 BTC (33,431.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 111 transactions" + } + ] + }, + { + "id": 112, + "type": "message", + "date": "2023-06-23T14:29:04", + "date_unixtime": "1687523344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010060 BTC for 65.77 CZK @ 653,760 CZK\nFees are 0.23099456 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (58.838399994650928509659531599 CZK)\nThe limits being 0.10 % (33.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01236718 BTC (7,379.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.56 % (705.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,620.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05164046 BTC (33,760.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010060 BTC for 65.77 CZK @ 653,760 CZK\nFees are 0.23099456 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (58.838399994650928509659531599 CZK)\nThe limits being 0.10 % (33.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01236718 BTC (7,379.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.56 % (705.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,620.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05164046 BTC (33,760.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 112 transactions" + } + ] + }, + { + "id": 113, + "type": "message", + "date": "2023-06-24T02:29:04", + "date_unixtime": "1687566544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009968 BTC for 65.76 CZK @ 659,761 CZK\nFees are 0.23098304 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (85.76892999001888254672050712 CZK)\nThe limits being 0.10 % (34.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01246686 BTC (7,445.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.47 % (779.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,554.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05174014 BTC (34,136.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009968 BTC for 65.76 CZK @ 659,761 CZK\nFees are 0.23098304 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (85.76892999001888254672050712 CZK)\nThe limits being 0.10 % (34.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01246686 BTC (7,445.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.47 % (779.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,554.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05174014 BTC (34,136.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 113 transactions" + } + ] + }, + { + "id": 114, + "type": "message", + "date": "2023-06-24T14:29:03", + "date_unixtime": "1687609743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009954 BTC for 65.77 CZK @ 660,697 CZK\nFees are 0.23098586 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.034849996080625586216776544 CZK)\nThe limits being 0.10 % (34.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01256640 BTC (7,511.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.53 % (790.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,488.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05183968 BTC (34,250.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009954 BTC for 65.77 CZK @ 660,697 CZK\nFees are 0.23098586 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.034849996080625586216776544 CZK)\nThe limits being 0.10 % (34.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01256640 BTC (7,511.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.53 % (790.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,488.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05183968 BTC (34,250.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 114 transactions" + } + ] + }, + { + "id": 115, + "type": "message", + "date": "2023-06-25T02:29:05", + "date_unixtime": "1687652945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009926 BTC for 65.77 CZK @ 662,586 CZK\nFees are 0.23099466 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.129299998865546248015082412 CZK)\nThe limits being 0.10 % (34.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01266566 BTC (7,577.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.75 % (814.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,422.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05193894 BTC (34,414.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009926 BTC for 65.77 CZK @ 662,586 CZK\nFees are 0.23099466 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.129299998865546248015082412 CZK)\nThe limits being 0.10 % (34.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01266566 BTC (7,577.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.75 % (814.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,422.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05193894 BTC (34,414.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 115 transactions" + } + ] + }, + { + "id": 116, + "type": "message", + "date": "2023-06-25T14:29:04", + "date_unixtime": "1687696144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009881 BTC for 65.76 CZK @ 665,569 CZK\nFees are 0.23098267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.278449997420726677355901445 CZK)\nThe limits being 0.10 % (34.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01276447 BTC (7,643.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.15 % (852.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,356.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05203775 BTC (34,634.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009881 BTC for 65.76 CZK @ 665,569 CZK\nFees are 0.23098267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.278449997420726677355901445 CZK)\nThe limits being 0.10 % (34.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01276447 BTC (7,643.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.15 % (852.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,356.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05203775 BTC (34,634.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 116 transactions" + } + ] + }, + { + "id": 117, + "type": "message", + "date": "2023-06-26T02:29:03", + "date_unixtime": "1687739343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009925 BTC for 65.77 CZK @ 662,632 CZK\nFees are 0.23098743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.131599999497978736889400950 CZK)\nThe limits being 0.10 % (34.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01286372 BTC (7,709.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.56 % (814.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,290.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05213700 BTC (34,547.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009925 BTC for 65.77 CZK @ 662,632 CZK\nFees are 0.23098743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (33.131599999497978736889400950 CZK)\nThe limits being 0.10 % (34.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01286372 BTC (7,709.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.56 % (814.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,290.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05213700 BTC (34,547.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 117 transactions" + } + ] + }, + { + "id": 118, + "type": "message", + "date": "2023-06-26T14:29:03", + "date_unixtime": "1687782543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010024 BTC for 65.77 CZK @ 656,081 CZK\nFees are 0.23098509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (32.804049996003612257338739790 CZK)\nThe limits being 0.10 % (34.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01296396 BTC (7,775.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.39 % (729.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,224.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05223724 BTC (34,271.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.89 CZK over 118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010024 BTC for 65.77 CZK @ 656,081 CZK\nFees are 0.23098509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (32.804049996003612257338739790 CZK)\nThe limits being 0.10 % (34.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01296396 BTC (7,775.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.39 % (729.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,224.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05223724 BTC (34,271.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.89 CZK over 118 transactions" + } + ] + }, + { + "id": 119, + "type": "message", + "date": "2023-06-27T02:29:03", + "date_unixtime": "1687825743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010044 BTC for 65.77 CZK @ 654,802 CZK\nFees are 0.23099476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (65.480199994959894451458922048 CZK)\nThe limits being 0.10 % (34.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01306440 BTC (7,841.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.09 % (712.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,158.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05233768 BTC (34,270.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010044 BTC for 65.77 CZK @ 654,802 CZK\nFees are 0.23099476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (65.480199994959894451458922048 CZK)\nThe limits being 0.10 % (34.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01306440 BTC (7,841.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.09 % (712.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,158.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05233768 BTC (34,270.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 119 transactions" + } + ] + }, + { + "id": 120, + "type": "message", + "date": "2023-06-27T14:29:04", + "date_unixtime": "1687868944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009942 BTC for 65.77 CZK @ 661,494 CZK\nFees are 0.23098570 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (39.689639995681980900282926474 CZK)\nThe limits being 0.10 % (34.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01316382 BTC (7,907.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.12 % (800.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,092.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05243710 BTC (34,686.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009942 BTC for 65.77 CZK @ 661,494 CZK\nFees are 0.23098570 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (39.689639995681980900282926474 CZK)\nThe limits being 0.10 % (34.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01316382 BTC (7,907.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.12 % (800.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,092.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05243710 BTC (34,686.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 120 transactions" + } + ] + }, + { + "id": 121, + "type": "message", + "date": "2023-06-28T02:29:05", + "date_unixtime": "1687912145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009970 BTC for 65.77 CZK @ 659,648 CZK\nFees are 0.23098981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (52.771839992323757520693620473 CZK)\nThe limits being 0.10 % (34.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01326352 BTC (7,973.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.73 % (775.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,026.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05253680 BTC (34,655.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009970 BTC for 65.77 CZK @ 659,648 CZK\nFees are 0.23098981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (52.771839992323757520693620473 CZK)\nThe limits being 0.10 % (34.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01326352 BTC (7,973.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.73 % (775.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,026.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05253680 BTC (34,655.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 121 transactions" + } + ] + }, + { + "id": 122, + "type": "message", + "date": "2023-06-28T14:29:03", + "date_unixtime": "1687955343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010014 BTC for 65.77 CZK @ 656,736 CZK\nFees are 0.23098503 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (45.971519999554186669803281883 CZK)\nThe limits being 0.10 % (34.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01336366 BTC (8,039.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.16 % (736.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 960.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05263694 BTC (34,568.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010014 BTC for 65.77 CZK @ 656,736 CZK\nFees are 0.23098503 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (45.971519999554186669803281883 CZK)\nThe limits being 0.10 % (34.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01336366 BTC (8,039.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.16 % (736.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 960.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05263694 BTC (34,568.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 122 transactions" + } + ] + }, + { + "id": 123, + "type": "message", + "date": "2023-06-29T02:29:04", + "date_unixtime": "1687998544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010042 BTC for 65.77 CZK @ 654,945 CZK\nFees are 0.23099920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (91.69229998728806873612144390 CZK)\nThe limits being 0.10 % (34.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01346408 BTC (8,105.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.79 % (712.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 894.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05273736 BTC (34,540.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010042 BTC for 65.77 CZK @ 654,945 CZK\nFees are 0.23099920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (91.69229998728806873612144390 CZK)\nThe limits being 0.10 % (34.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01346408 BTC (8,105.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.79 % (712.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 894.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05273736 BTC (34,540.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 123 transactions" + } + ] + }, + { + "id": 124, + "type": "message", + "date": "2023-06-29T14:29:04", + "date_unixtime": "1688041744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009910 BTC for 65.77 CZK @ 663,666 CZK\nFees are 0.23099823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (73.003259997677151161650670685 CZK)\nThe limits being 0.10 % (35.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01356318 BTC (8,171.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.16 % (829.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 828.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05283646 BTC (35,065.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009910 BTC for 65.77 CZK @ 663,666 CZK\nFees are 0.23099823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (73.003259997677151161650670685 CZK)\nThe limits being 0.10 % (35.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01356318 BTC (8,171.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.16 % (829.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 828.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05283646 BTC (35,065.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 124 transactions" + } + ] + }, + { + "id": 125, + "type": "message", + "date": "2023-06-30T02:29:05", + "date_unixtime": "1688084945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009912 BTC for 65.77 CZK @ 663,510 CZK\nFees are 0.23099054 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (46.445699993525485658950734576 CZK)\nThe limits being 0.10 % (35.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01366230 BTC (8,237.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.05 % (827.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 762.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05293558 BTC (35,123.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009912 BTC for 65.77 CZK @ 663,510 CZK\nFees are 0.23099054 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (46.445699993525485658950734576 CZK)\nThe limits being 0.10 % (35.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01366230 BTC (8,237.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.05 % (827.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 762.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05293558 BTC (35,123.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 125 transactions" + } + ] + }, + { + "id": 126, + "type": "message", + "date": "2023-06-30T14:29:04", + "date_unixtime": "1688128144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009781 BTC for 65.77 CZK @ 672,400 CZK\nFees are 0.23099171 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (26.895999998369880859176707309 CZK)\nThe limits being 0.10 % (35.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01376011 BTC (8,303.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 672,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.43 % (948.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 696.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05303339 BTC (35,659.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009781 BTC for 65.77 CZK @ 672,400 CZK\nFees are 0.23099171 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (26.895999998369880859176707309 CZK)\nThe limits being 0.10 % (35.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01376011 BTC (8,303.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 672,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.43 % (948.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 696.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05303339 BTC (35,659.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 126 transactions" + } + ] + }, + { + "id": 127, + "type": "message", + "date": "2023-07-01T02:29:05", + "date_unixtime": "1688171345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009932 BTC for 65.76 CZK @ 662,137 CZK\nFees are 0.23097767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (46.349589997232802388579159410 CZK)\nThe limits being 0.10 % (35.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01385943 BTC (8,369.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.65 % (807.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 630.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05313271 BTC (35,181.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009932 BTC for 65.76 CZK @ 662,137 CZK\nFees are 0.23097767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (46.349589997232802388579159410 CZK)\nThe limits being 0.10 % (35.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01385943 BTC (8,369.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.65 % (807.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 630.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05313271 BTC (35,181.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 127 transactions" + } + ] + }, + { + "id": 128, + "type": "message", + "date": "2023-07-01T14:29:04", + "date_unixtime": "1688214544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009905 BTC for 65.74 CZK @ 663,669 CZK\nFees are 0.23088278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (26.546766317887394120577977080 CZK)\nThe limits being 0.10 % (35.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01395848 BTC (8,435.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.82 % (828.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 564.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05323176 BTC (35,328.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009905 BTC for 65.74 CZK @ 663,669 CZK\nFees are 0.23088278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (26.546766317887394120577977080 CZK)\nThe limits being 0.10 % (35.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01395848 BTC (8,435.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.82 % (828.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 564.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05323176 BTC (35,328.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 128 transactions" + } + ] + }, + { + "id": 129, + "type": "message", + "date": "2023-07-02T02:29:04", + "date_unixtime": "1688257744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009899 BTC for 65.77 CZK @ 664,362 CZK\nFees are 0.23098380 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (39.861719999800677424951652951 CZK)\nThe limits being 0.10 % (35.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01405747 BTC (8,501.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 664,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.85 % (837.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 498.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05333075 BTC (35,430.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009899 BTC for 65.77 CZK @ 664,362 CZK\nFees are 0.23098380 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (39.861719999800677424951652951 CZK)\nThe limits being 0.10 % (35.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01405747 BTC (8,501.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 664,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.85 % (837.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 498.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05333075 BTC (35,430.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 129 transactions" + } + ] + }, + { + "id": 130, + "type": "message", + "date": "2023-07-02T14:29:04", + "date_unixtime": "1688300944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009909 BTC for 65.77 CZK @ 663,692 CZK\nFees are 0.23098397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 40.37 % (26.547679999605779811028742222 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01415656 BTC (8,567.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.67 % (828.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 432.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00009909 BTC (65.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009909 BTC for 65.77 CZK @ 663,692 CZK\nFees are 0.23098397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 40.37 % (26.547679999605779811028742222 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01415656 BTC (8,567.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.67 % (828.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 432.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00009909 BTC (65.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 130 transactions" + } + ] + }, + { + "id": 131, + "type": "message", + "date": "2023-07-03T02:29:04", + "date_unixtime": "1688344144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009876 BTC for 65.77 CZK @ 665,912 CZK\nFees are 0.23098477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.22 % (26.636479999225069486445072865 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01425532 BTC (8,633.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.95 % (859.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 366.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00019785 BTC (131.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.90 CZK over 131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009876 BTC for 65.77 CZK @ 665,912 CZK\nFees are 0.23098477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.22 % (26.636479999225069486445072865 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01425532 BTC (8,633.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.95 % (859.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 366.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00019785 BTC (131.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.90 CZK over 131 transactions" + } + ] + }, + { + "id": 132, + "type": "message", + "date": "2023-07-03T14:29:04", + "date_unixtime": "1688387344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009897 BTC for 65.77 CZK @ 664,500 CZK\nFees are 0.23098511 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.21 % (39.869999995469026035429497819 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01435429 BTC (8,699.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 664,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.64 % (838.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,300.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00029682 BTC (197.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009897 BTC for 65.77 CZK @ 664,500 CZK\nFees are 0.23098511 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.21 % (39.869999995469026035429497819 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01435429 BTC (8,699.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 664,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.64 % (838.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,300.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00029682 BTC (197.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 132 transactions" + } + ] + }, + { + "id": 133, + "type": "message", + "date": "2023-07-04T02:29:04", + "date_unixtime": "1688430544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009714 BTC for 65.76 CZK @ 676,994 CZK\nFees are 0.23097679 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.31 % (54.159519999950759125026582378 CZK)\nThe limits being 0.10 % (0.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01445143 BTC (8,765.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 676,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.61 % (1,018.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,234.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00039396 BTC (266.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009714 BTC for 65.76 CZK @ 676,994 CZK\nFees are 0.23097679 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.31 % (54.159519999950759125026582378 CZK)\nThe limits being 0.10 % (0.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01445143 BTC (8,765.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 676,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.61 % (1,018.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,234.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00039396 BTC (266.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 133 transactions" + } + ] + }, + { + "id": 134, + "type": "message", + "date": "2023-07-04T14:29:04", + "date_unixtime": "1688473744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009737 BTC for 65.77 CZK @ 675,451 CZK\nFees are 0.23099599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.14 % (27.018039998548778566380510976 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01454880 BTC (8,831.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 675,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.27 % (995.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,168.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00049133 BTC (331.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009737 BTC for 65.77 CZK @ 675,451 CZK\nFees are 0.23099599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.14 % (27.018039998548778566380510976 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01454880 BTC (8,831.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 675,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.27 % (995.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,168.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00049133 BTC (331.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 134 transactions" + } + ] + }, + { + "id": 135, + "type": "message", + "date": "2023-07-05T02:29:04", + "date_unixtime": "1688516944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009784 BTC for 65.77 CZK @ 672,215 CZK\nFees are 0.23099898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.79 % (26.888599998125937794986557678 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01464664 BTC (8,897.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 672,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.66 % (948.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,102.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00058917 BTC (396.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009784 BTC for 65.77 CZK @ 672,215 CZK\nFees are 0.23099898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.79 % (26.888599998125937794986557678 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01464664 BTC (8,897.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 672,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.66 % (948.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,102.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00058917 BTC (396.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 135 transactions" + } + ] + }, + { + "id": 136, + "type": "message", + "date": "2023-07-05T14:29:04", + "date_unixtime": "1688560144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009900 BTC for 65.77 CZK @ 664,335 CZK\nFees are 0.23099775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.91 % (13.286699998490133019281001344 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01474564 BTC (8,963.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 664,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.29 % (832.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,036.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00068817 BTC (457.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009900 BTC for 65.77 CZK @ 664,335 CZK\nFees are 0.23099775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.91 % (13.286699998490133019281001344 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01474564 BTC (8,963.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 664,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.29 % (832.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,036.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00068817 BTC (457.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 136 transactions" + } + ] + }, + { + "id": 137, + "type": "message", + "date": "2023-07-06T02:29:04", + "date_unixtime": "1688603344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009833 BTC for 65.77 CZK @ 668,865 CZK\nFees are 0.23099891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.36 % (33.443249997935122930619471735 CZK)\nThe limits being 0.10 % (0.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01484397 BTC (9,029.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 668,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.96 % (899.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,970.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00078650 BTC (526.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009833 BTC for 65.77 CZK @ 668,865 CZK\nFees are 0.23099891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.36 % (33.443249997935122930619471735 CZK)\nThe limits being 0.10 % (0.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01484397 BTC (9,029.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 668,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.96 % (899.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,970.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00078650 BTC (526.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 137 transactions" + } + ] + }, + { + "id": 138, + "type": "message", + "date": "2023-07-06T14:29:05", + "date_unixtime": "1688646545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009790 BTC for 65.77 CZK @ 671,759 CZK\nFees are 0.23098385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.52 % (26.870359999450340559828139815 CZK)\nThe limits being 0.10 % (0.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01494187 BTC (9,095.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 671,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.35 % (941.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,904.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00088440 BTC (594.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009790 BTC for 65.77 CZK @ 671,759 CZK\nFees are 0.23098385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.52 % (26.870359999450340559828139815 CZK)\nThe limits being 0.10 % (0.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01494187 BTC (9,095.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 671,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.35 % (941.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,904.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00088440 BTC (594.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 138 transactions" + } + ] + }, + { + "id": 139, + "type": "message", + "date": "2023-07-07T02:29:03", + "date_unixtime": "1688689743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010026 BTC for 65.77 CZK @ 655,956 CZK\nFees are 0.23098716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (26.238240000015902847911821889 CZK)\nThe limits being 0.10 % (0.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01504213 BTC (9,161.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 655,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.70 % (705.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,838.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00098466 BTC (645.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010026 BTC for 65.77 CZK @ 655,956 CZK\nFees are 0.23098716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (26.238240000015902847911821889 CZK)\nThe limits being 0.10 % (0.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01504213 BTC (9,161.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 655,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.70 % (705.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,838.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00098466 BTC (645.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 139 transactions" + } + ] + }, + { + "id": 140, + "type": "message", + "date": "2023-07-07T14:29:03", + "date_unixtime": "1688732943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009950 BTC for 65.77 CZK @ 660,998 CZK\nFees are 0.23099823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.84 % (13.219959999298936135585751378 CZK)\nThe limits being 0.10 % (0.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01514163 BTC (9,227.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.46 % (781.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,772.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00108416 BTC (716.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009950 BTC for 65.77 CZK @ 660,998 CZK\nFees are 0.23099823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.84 % (13.219959999298936135585751378 CZK)\nThe limits being 0.10 % (0.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01514163 BTC (9,227.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.46 % (781.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,772.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00108416 BTC (716.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 140 transactions" + } + ] + }, + { + "id": 141, + "type": "message", + "date": "2023-07-08T02:29:03", + "date_unixtime": "1688776143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009990 BTC for 65.77 CZK @ 658,333 CZK\nFees are 0.23099178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.53 % (19.749989998967577442913765784 CZK)\nThe limits being 0.10 % (0.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01524153 BTC (9,293.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.97 % (740.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,706.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00118406 BTC (779.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009990 BTC for 65.77 CZK @ 658,333 CZK\nFees are 0.23099178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.53 % (19.749989998967577442913765784 CZK)\nThe limits being 0.10 % (0.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01524153 BTC (9,293.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.97 % (740.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,706.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00118406 BTC (779.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 141 transactions" + } + ] + }, + { + "id": 142, + "type": "message", + "date": "2023-07-08T14:29:03", + "date_unixtime": "1688819343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010019 BTC for 65.77 CZK @ 656,437 CZK\nFees are 0.23099514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (13.128739999879650686615211865 CZK)\nThe limits being 0.10 % (0.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01534172 BTC (9,359.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.60 % (711.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,640.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00128425 BTC (843.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010019 BTC for 65.77 CZK @ 656,437 CZK\nFees are 0.23099514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (13.128739999879650686615211865 CZK)\nThe limits being 0.10 % (0.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01534172 BTC (9,359.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.60 % (711.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,640.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00128425 BTC (843.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 142 transactions" + } + ] + }, + { + "id": 143, + "type": "message", + "date": "2023-07-09T02:29:03", + "date_unixtime": "1688862543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010000 BTC for 65.76 CZK @ 657,642 CZK\nFees are 0.23098031 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (13.15284 CZK)\nThe limits being 0.10 % (0.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01544172 BTC (9,425.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.74 % (729.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,574.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00138425 BTC (910.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010000 BTC for 65.76 CZK @ 657,642 CZK\nFees are 0.23098031 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (13.15284 CZK)\nThe limits being 0.10 % (0.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01544172 BTC (9,425.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.74 % (729.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,574.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00138425 BTC (910.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 143 transactions" + } + ] + }, + { + "id": 144, + "type": "message", + "date": "2023-07-09T14:29:04", + "date_unixtime": "1688905744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009982 BTC for 65.77 CZK @ 658,860 CZK\nFees are 0.23099157 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.35 % (13.177199998362772971418308810 CZK)\nThe limits being 0.10 % (0.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01554154 BTC (9,491.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.88 % (748.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,508.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00148407 BTC (977.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009982 BTC for 65.77 CZK @ 658,860 CZK\nFees are 0.23099157 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.35 % (13.177199998362772971418308810 CZK)\nThe limits being 0.10 % (0.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01554154 BTC (9,491.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.88 % (748.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,508.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00148407 BTC (977.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 144 transactions" + } + ] + }, + { + "id": 145, + "type": "message", + "date": "2023-07-10T02:29:04", + "date_unixtime": "1688948944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010056 BTC for 65.76 CZK @ 653,984 CZK\nFees are 0.23098183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.26 % (13.079679998287616254802701285 CZK)\nThe limits being 0.10 % (1.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01564210 BTC (9,557.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.03 % (672.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,442.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00158463 BTC (1,036.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010056 BTC for 65.76 CZK @ 653,984 CZK\nFees are 0.23098183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.26 % (13.079679998287616254802701285 CZK)\nThe limits being 0.10 % (1.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01564210 BTC (9,557.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.03 % (672.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,442.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00158463 BTC (1,036.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 145 transactions" + } + ] + }, + { + "id": 146, + "type": "message", + "date": "2023-07-10T14:29:19", + "date_unixtime": "1688992159", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010015 BTC for 65.77 CZK @ 656,699 CZK\nFees are 0.23099508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (13.133979998611947549527726348 CZK)\nThe limits being 0.10 % (1.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01574225 BTC (9,623.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.42 % (714.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,376.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00168478 BTC (1,106.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010015 BTC for 65.77 CZK @ 656,699 CZK\nFees are 0.23099508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (13.133979998611947549527726348 CZK)\nThe limits being 0.10 % (1.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01574225 BTC (9,623.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.42 % (714.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,376.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00168478 BTC (1,106.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 146 transactions" + } + ] + }, + { + "id": 147, + "type": "message", + "date": "2023-07-11T02:29:04", + "date_unixtime": "1689035344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009991 BTC for 65.77 CZK @ 658,279 CZK\nFees are 0.23099596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.68 % (19.748369999367143433574522003 CZK)\nThe limits being 0.10 % (1.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01584216 BTC (9,689.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.63 % (739.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,310.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00178469 BTC (1,174.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.91 CZK over 147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009991 BTC for 65.77 CZK @ 658,279 CZK\nFees are 0.23099596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.68 % (19.748369999367143433574522003 CZK)\nThe limits being 0.10 % (1.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01584216 BTC (9,689.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.63 % (739.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,310.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00178469 BTC (1,174.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.91 CZK over 147 transactions" + } + ] + }, + { + "id": 148, + "type": "message", + "date": "2023-07-11T14:29:04", + "date_unixtime": "1689078544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009968 BTC for 65.77 CZK @ 659,787 CZK\nFees are 0.23099214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (19.793609997432741424276668898 CZK)\nThe limits being 0.10 % (1.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01594184 BTC (9,755.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.82 % (762.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,244.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00188437 BTC (1,243.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009968 BTC for 65.77 CZK @ 659,787 CZK\nFees are 0.23099214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (19.793609997432741424276668898 CZK)\nThe limits being 0.10 % (1.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01594184 BTC (9,755.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.82 % (762.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,244.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00188437 BTC (1,243.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 148 transactions" + } + ] + }, + { + "id": 149, + "type": "message", + "date": "2023-07-12T02:29:04", + "date_unixtime": "1689121744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009938 BTC for 65.77 CZK @ 661,784 CZK\nFees are 0.23099399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (33.089199995628101002498500168 CZK)\nThe limits being 0.10 % (1.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01604122 BTC (9,821.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.09 % (794.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,178.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00198375 BTC (1,312.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009938 BTC for 65.77 CZK @ 661,784 CZK\nFees are 0.23099399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (33.089199995628101002498500168 CZK)\nThe limits being 0.10 % (1.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01604122 BTC (9,821.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.09 % (794.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,178.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00198375 BTC (1,312.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 149 transactions" + } + ] + }, + { + "id": 150, + "type": "message", + "date": "2023-07-12T14:29:03", + "date_unixtime": "1689164943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009868 BTC for 65.77 CZK @ 666,490 CZK\nFees are 0.23099799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (13.329799998747795767105362282 CZK)\nThe limits being 0.10 % (1.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01613990 BTC (9,887.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 666,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.79 % (869.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,112.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00208243 BTC (1,387.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009868 BTC for 65.77 CZK @ 666,490 CZK\nFees are 0.23099799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (13.329799998747795767105362282 CZK)\nThe limits being 0.10 % (1.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01613990 BTC (9,887.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 666,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.79 % (869.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,112.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00208243 BTC (1,387.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 150 transactions" + } + ] + }, + { + "id": 151, + "type": "message", + "date": "2023-07-13T02:29:05", + "date_unixtime": "1689208145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010108 BTC for 65.77 CZK @ 650,667 CZK\nFees are 0.23099865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.29 % (32.533349999378905133970162602 CZK)\nThe limits being 0.10 % (1.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01624098 BTC (9,953.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.17 % (613.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,046.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00218351 BTC (1,420.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010108 BTC for 65.77 CZK @ 650,667 CZK\nFees are 0.23099865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.29 % (32.533349999378905133970162602 CZK)\nThe limits being 0.10 % (1.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01624098 BTC (9,953.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.17 % (613.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,046.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00218351 BTC (1,420.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 151 transactions" + } + ] + }, + { + "id": 152, + "type": "message", + "date": "2023-07-13T14:29:03", + "date_unixtime": "1689251343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010111 BTC for 65.76 CZK @ 650,423 CZK\nFees are 0.23098056 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.31 % (19.512689999008021425554521198 CZK)\nThe limits being 0.10 % (1.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01634209 BTC (10,019.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.09 % (609.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,980.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00228462 BTC (1,485.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010111 BTC for 65.76 CZK @ 650,423 CZK\nFees are 0.23098056 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.31 % (19.512689999008021425554521198 CZK)\nThe limits being 0.10 % (1.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01634209 BTC (10,019.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.09 % (609.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,980.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00228462 BTC (1,485.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 152 transactions" + } + ] + }, + { + "id": 153, + "type": "message", + "date": "2023-07-14T02:29:04", + "date_unixtime": "1689294544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009873 BTC for 65.77 CZK @ 666,133 CZK\nFees are 0.23099124 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.36 % (53.290639992882199852425757292 CZK)\nThe limits being 0.10 % (1.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01644082 BTC (10,085.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 666,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.59 % (866.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,914.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00238335 BTC (1,587.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009873 BTC for 65.77 CZK @ 666,133 CZK\nFees are 0.23099124 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.36 % (53.290639992882199852425757292 CZK)\nThe limits being 0.10 % (1.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01644082 BTC (10,085.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 666,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.59 % (866.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,914.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00238335 BTC (1,587.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 153 transactions" + } + ] + }, + { + "id": 154, + "type": "message", + "date": "2023-07-14T14:29:05", + "date_unixtime": "1689337745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009948 BTC for 65.77 CZK @ 661,125 CZK\nFees are 0.23099617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.21 % (19.833749999248709132030655071 CZK)\nThe limits being 0.10 % (1.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01654030 BTC (10,151.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.72 % (783.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,848.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00248283 BTC (1,641.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009948 BTC for 65.77 CZK @ 661,125 CZK\nFees are 0.23099617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.21 % (19.833749999248709132030655071 CZK)\nThe limits being 0.10 % (1.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01654030 BTC (10,151.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.72 % (783.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,848.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00248283 BTC (1,641.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 154 transactions" + } + ] + }, + { + "id": 155, + "type": "message", + "date": "2023-07-15T02:29:04", + "date_unixtime": "1689380944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010239 BTC for 65.76 CZK @ 642,290 CZK\nFees are 0.23097987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.32 % (38.537399996583887247256927154 CZK)\nThe limits being 0.10 % (1.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01664269 BTC (10,217.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.62 % (471.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,782.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00258522 BTC (1,660.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010239 BTC for 65.76 CZK @ 642,290 CZK\nFees are 0.23097987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.32 % (38.537399996583887247256927154 CZK)\nThe limits being 0.10 % (1.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01664269 BTC (10,217.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.62 % (471.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,782.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00258522 BTC (1,660.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 155 transactions" + } + ] + }, + { + "id": 156, + "type": "message", + "date": "2023-07-15T14:29:05", + "date_unixtime": "1689424145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010208 BTC for 65.77 CZK @ 644,256 CZK\nFees are 0.23098541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (19.327679998922267362038507856 CZK)\nThe limits being 0.10 % (1.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01674477 BTC (10,283.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,256 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.91 % (504.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,716.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00268730 BTC (1,731.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010208 BTC for 65.77 CZK @ 644,256 CZK\nFees are 0.23098541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (19.327679998922267362038507856 CZK)\nThe limits being 0.10 % (1.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01674477 BTC (10,283.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,256 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.91 % (504.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,716.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00268730 BTC (1,731.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 156 transactions" + } + ] + }, + { + "id": 157, + "type": "message", + "date": "2023-07-16T02:29:04", + "date_unixtime": "1689467344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010229 BTC for 65.77 CZK @ 642,937 CZK\nFees are 0.23098672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (19.288109999983925651168217914 CZK)\nThe limits being 0.10 % (1.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01684706 BTC (10,349.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.66 % (482.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,650.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00278959 BTC (1,793.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010229 BTC for 65.77 CZK @ 642,937 CZK\nFees are 0.23098672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (19.288109999983925651168217914 CZK)\nThe limits being 0.10 % (1.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01684706 BTC (10,349.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.66 % (482.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,650.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00278959 BTC (1,793.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 157 transactions" + } + ] + }, + { + "id": 158, + "type": "message", + "date": "2023-07-16T14:29:05", + "date_unixtime": "1689510545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010248 BTC for 65.77 CZK @ 641,757 CZK\nFees are 0.23099105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (19.252709999778293537023229003 CZK)\nThe limits being 0.10 % (1.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01694954 BTC (10,415.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.44 % (462.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,584.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00289207 BTC (1,856.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010248 BTC for 65.77 CZK @ 641,757 CZK\nFees are 0.23099105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (19.252709999778293537023229003 CZK)\nThe limits being 0.10 % (1.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01694954 BTC (10,415.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.44 % (462.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,584.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00289207 BTC (1,856.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 158 transactions" + } + ] + }, + { + "id": 159, + "type": "message", + "date": "2023-07-17T02:29:05", + "date_unixtime": "1689553745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010261 BTC for 65.77 CZK @ 640,926 CZK\nFees are 0.23098459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (19.227779997374941529808908271 CZK)\nThe limits being 0.10 % (1.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01705215 BTC (10,481.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,671 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.27 % (447.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,518.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00299468 BTC (1,919.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010261 BTC for 65.77 CZK @ 640,926 CZK\nFees are 0.23098459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (19.227779997374941529808908271 CZK)\nThe limits being 0.10 % (1.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01705215 BTC (10,481.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,671 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.27 % (447.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,518.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00299468 BTC (1,919.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 159 transactions" + } + ] + }, + { + "id": 160, + "type": "message", + "date": "2023-07-17T14:29:03", + "date_unixtime": "1689596943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010306 BTC for 65.77 CZK @ 638,136 CZK\nFees are 0.23098767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (19.144079998097092932353684286 CZK)\nThe limits being 0.10 % (1.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01715521 BTC (10,547.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.79 % (399.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,452.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00309774 BTC (1,976.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010306 BTC for 65.77 CZK @ 638,136 CZK\nFees are 0.23098767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (19.144079998097092932353684286 CZK)\nThe limits being 0.10 % (1.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01715521 BTC (10,547.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.79 % (399.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,452.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00309774 BTC (1,976.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 160 transactions" + } + ] + }, + { + "id": 161, + "type": "message", + "date": "2023-07-18T02:29:04", + "date_unixtime": "1689640144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010294 BTC for 65.77 CZK @ 638,884 CZK\nFees are 0.23098916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (31.944199996921596251085064718 CZK)\nThe limits being 0.10 % (2.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01725815 BTC (10,613.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.89 % (412.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,386.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00320068 BTC (2,044.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010294 BTC for 65.77 CZK @ 638,884 CZK\nFees are 0.23098916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (31.944199996921596251085064718 CZK)\nThe limits being 0.10 % (2.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01725815 BTC (10,613.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.89 % (412.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,386.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00320068 BTC (2,044.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 161 transactions" + } + ] + }, + { + "id": 162, + "type": "message", + "date": "2023-07-18T14:29:03", + "date_unixtime": "1689683343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010391 BTC for 65.77 CZK @ 632,915 CZK\nFees are 0.23098733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (18.987449999489324655592635860 CZK)\nThe limits being 0.10 % (2.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01736206 BTC (10,679.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 632,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.90 % (309.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,320.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00330459 BTC (2,091.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010391 BTC for 65.77 CZK @ 632,915 CZK\nFees are 0.23098733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (18.987449999489324655592635860 CZK)\nThe limits being 0.10 % (2.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01736206 BTC (10,679.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 632,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.90 % (309.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,320.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00330459 BTC (2,091.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 162 transactions" + } + ] + }, + { + "id": 163, + "type": "message", + "date": "2023-07-19T02:29:04", + "date_unixtime": "1689726544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010345 BTC for 65.77 CZK @ 635,761 CZK\nFees are 0.23099884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.47 % (31.788049998037318876440914990 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01746551 BTC (10,745.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.34 % (358.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,254.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00340804 BTC (2,166.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010345 BTC for 65.77 CZK @ 635,761 CZK\nFees are 0.23099884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.47 % (31.788049998037318876440914990 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01746551 BTC (10,745.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.34 % (358.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,254.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00340804 BTC (2,166.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 163 transactions" + } + ] + }, + { + "id": 164, + "type": "message", + "date": "2023-07-19T14:29:03", + "date_unixtime": "1689769743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010279 BTC for 65.77 CZK @ 639,835 CZK\nFees are 0.23099590 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.85 % (19.195049997447885605943939863 CZK)\nThe limits being 0.10 % (2.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01756830 BTC (10,811.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.97 % (429.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,188.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00351083 BTC (2,246.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010279 BTC for 65.77 CZK @ 639,835 CZK\nFees are 0.23099590 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.85 % (19.195049997447885605943939863 CZK)\nThe limits being 0.10 % (2.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01756830 BTC (10,811.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.97 % (429.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,188.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00351083 BTC (2,246.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 164 transactions" + } + ] + }, + { + "id": 165, + "type": "message", + "date": "2023-07-20T02:29:05", + "date_unixtime": "1689812945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010278 BTC for 65.77 CZK @ 639,904 CZK\nFees are 0.23099834 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (19.197119998278064136875285595 CZK)\nThe limits being 0.10 % (2.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01767108 BTC (10,877.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.96 % (430.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,122.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00361361 BTC (2,312.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010278 BTC for 65.77 CZK @ 639,904 CZK\nFees are 0.23099834 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (19.197119998278064136875285595 CZK)\nThe limits being 0.10 % (2.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01767108 BTC (10,877.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.96 % (430.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,122.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00361361 BTC (2,312.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 165 transactions" + } + ] + }, + { + "id": 166, + "type": "message", + "date": "2023-07-20T14:29:03", + "date_unixtime": "1689856143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010139 BTC for 65.77 CZK @ 648,676 CZK\nFees are 0.23099808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.62 % (38.920559994845931536692294004 CZK)\nThe limits being 0.10 % (2.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01777247 BTC (10,943.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.35 % (585.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,056.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00371500 BTC (2,409.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010139 BTC for 65.77 CZK @ 648,676 CZK\nFees are 0.23099808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.62 % (38.920559994845931536692294004 CZK)\nThe limits being 0.10 % (2.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01777247 BTC (10,943.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.35 % (585.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,056.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00371500 BTC (2,409.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 166 transactions" + } + ] + }, + { + "id": 167, + "type": "message", + "date": "2023-07-21T02:29:04", + "date_unixtime": "1689899344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010239 BTC for 65.77 CZK @ 642,318 CZK\nFees are 0.23098994 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.10 % (51.385439999945497916195552114 CZK)\nThe limits being 0.10 % (2.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01787486 BTC (11,009.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.29 % (471.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,990.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00381739 BTC (2,451.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.92 CZK over 167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010239 BTC for 65.77 CZK @ 642,318 CZK\nFees are 0.23098994 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.10 % (51.385439999945497916195552114 CZK)\nThe limits being 0.10 % (2.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01787486 BTC (11,009.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.29 % (471.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,990.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00381739 BTC (2,451.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.92 CZK over 167 transactions" + } + ] + }, + { + "id": 168, + "type": "message", + "date": "2023-07-21T14:29:03", + "date_unixtime": "1689942543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010203 BTC for 65.77 CZK @ 644,604 CZK\nFees are 0.23099698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (25.784159999445242640662610785 CZK)\nThe limits being 0.10 % (2.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01797689 BTC (11,075.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.63 % (512.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,924.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00391942 BTC (2,526.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010203 BTC for 65.77 CZK @ 644,604 CZK\nFees are 0.23099698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (25.784159999445242640662610785 CZK)\nThe limits being 0.10 % (2.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01797689 BTC (11,075.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.63 % (512.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,924.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00391942 BTC (2,526.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 168 transactions" + } + ] + }, + { + "id": 169, + "type": "message", + "date": "2023-07-22T02:29:05", + "date_unixtime": "1689985745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010171 BTC for 65.77 CZK @ 646,614 CZK\nFees are 0.23099056 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (45.262985003279985981617676055 CZK)\nThe limits being 0.10 % (2.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01807860 BTC (11,141.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.92 % (548.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,858.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00402113 BTC (2,600.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010171 BTC for 65.77 CZK @ 646,614 CZK\nFees are 0.23099056 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (45.262985003279985981617676055 CZK)\nThe limits being 0.10 % (2.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01807860 BTC (11,141.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.92 % (548.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,858.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00402113 BTC (2,600.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 169 transactions" + } + ] + }, + { + "id": 170, + "type": "message", + "date": "2023-07-22T14:29:04", + "date_unixtime": "1690028944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010162 BTC for 65.77 CZK @ 647,184 CZK\nFees are 0.23098958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.18 % (58.246559997105191856057430169 CZK)\nThe limits being 0.10 % (2.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01818022 BTC (11,207.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.98 % (558.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,792.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00412275 BTC (2,668.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010162 BTC for 65.77 CZK @ 647,184 CZK\nFees are 0.23098958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.18 % (58.246559997105191856057430169 CZK)\nThe limits being 0.10 % (2.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01818022 BTC (11,207.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.98 % (558.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,792.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00412275 BTC (2,668.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 170 transactions" + } + ] + }, + { + "id": 171, + "type": "message", + "date": "2023-07-23T02:29:05", + "date_unixtime": "1690072145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010188 BTC for 65.77 CZK @ 645,556 CZK\nFees are 0.23099803 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.50 % (122.65563998424047439771557304 CZK)\nThe limits being 0.10 % (2.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01828210 BTC (11,273.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.69 % (528.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,726.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00422463 BTC (2,727.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010188 BTC for 65.77 CZK @ 645,556 CZK\nFees are 0.23099803 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.50 % (122.65563998424047439771557304 CZK)\nThe limits being 0.10 % (2.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01828210 BTC (11,273.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.69 % (528.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,726.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00422463 BTC (2,727.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 171 transactions" + } + ] + }, + { + "id": 172, + "type": "message", + "date": "2023-07-23T14:29:04", + "date_unixtime": "1690115344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010156 BTC for 65.76 CZK @ 647,539 CZK\nFees are 0.23097982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (19.426169999134576834564647993 CZK)\nThe limits being 0.10 % (2.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01838366 BTC (11,339.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.98 % (564.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,660.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00432619 BTC (2,801.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010156 BTC for 65.76 CZK @ 647,539 CZK\nFees are 0.23097982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (19.426169999134576834564647993 CZK)\nThe limits being 0.10 % (2.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01838366 BTC (11,339.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.98 % (564.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,660.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00432619 BTC (2,801.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 172 transactions" + } + ] + }, + { + "id": 173, + "type": "message", + "date": "2023-07-24T02:29:06", + "date_unixtime": "1690158546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010108 BTC for 65.77 CZK @ 650,652 CZK\nFees are 0.23099332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (19.519559998651336862335210223 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01848474 BTC (11,405.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.45 % (621.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,594.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00442727 BTC (2,880.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010108 BTC for 65.77 CZK @ 650,652 CZK\nFees are 0.23099332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (19.519559998651336862335210223 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01848474 BTC (11,405.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.45 % (621.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,594.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00442727 BTC (2,880.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 173 transactions" + } + ] + }, + { + "id": 174, + "type": "message", + "date": "2023-07-24T14:29:04", + "date_unixtime": "1690201744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010343 BTC for 65.77 CZK @ 635,861 CZK\nFees are 0.23099051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (19.075829999622803317076300819 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01858817 BTC (11,471.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.03 % (348.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,528.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00453070 BTC (2,880.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010343 BTC for 65.77 CZK @ 635,861 CZK\nFees are 0.23099051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (19.075829999622803317076300819 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01858817 BTC (11,471.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.03 % (348.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,528.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00453070 BTC (2,880.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 174 transactions" + } + ] + }, + { + "id": 175, + "type": "message", + "date": "2023-07-25T02:29:03", + "date_unixtime": "1690244943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010324 BTC for 65.76 CZK @ 637,000 CZK\nFees are 0.23097919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (19.11000 CZK)\nThe limits being 0.10 % (2.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01869141 BTC (11,537.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.20 % (369.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,462.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00463394 BTC (2,951.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010324 BTC for 65.76 CZK @ 637,000 CZK\nFees are 0.23097919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (19.11000 CZK)\nThe limits being 0.10 % (2.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01869141 BTC (11,537.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.20 % (369.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,462.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00463394 BTC (2,951.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 175 transactions" + } + ] + }, + { + "id": 176, + "type": "message", + "date": "2023-07-25T14:29:03", + "date_unixtime": "1690288143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010381 BTC for 65.77 CZK @ 633,549 CZK\nFees are 0.23099619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (19.006469998296589045555659709 CZK)\nThe limits being 0.10 % (3.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01879522 BTC (11,603.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 633,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.62 % (304.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,396.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00473775 BTC (3,001.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010381 BTC for 65.77 CZK @ 633,549 CZK\nFees are 0.23099619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (19.006469998296589045555659709 CZK)\nThe limits being 0.10 % (3.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01879522 BTC (11,603.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 633,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.62 % (304.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,396.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00473775 BTC (3,001.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 176 transactions" + } + ] + }, + { + "id": 177, + "type": "message", + "date": "2023-07-26T02:29:04", + "date_unixtime": "1690331344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010333 BTC for 65.77 CZK @ 636,500 CZK\nFees are 0.23099908 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (31.824999996383508393226050834 CZK)\nThe limits being 0.10 % (3.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01889855 BTC (11,669.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.08 % (359.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,330.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00484108 BTC (3,081.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010333 BTC for 65.77 CZK @ 636,500 CZK\nFees are 0.23099908 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (31.824999996383508393226050834 CZK)\nThe limits being 0.10 % (3.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01889855 BTC (11,669.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.08 % (359.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,330.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00484108 BTC (3,081.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 177 transactions" + } + ] + }, + { + "id": 178, + "type": "message", + "date": "2023-07-26T14:29:05", + "date_unixtime": "1690374545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010341 BTC for 65.76 CZK @ 635,949 CZK\nFees are 0.23097780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (19.078469999619839410337679451 CZK)\nThe limits being 0.10 % (3.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01900196 BTC (11,735.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.97 % (348.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,264.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00494449 BTC (3,144.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010341 BTC for 65.76 CZK @ 635,949 CZK\nFees are 0.23097780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (19.078469999619839410337679451 CZK)\nThe limits being 0.10 % (3.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01900196 BTC (11,735.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.97 % (348.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,264.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00494449 BTC (3,144.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 178 transactions" + } + ] + }, + { + "id": 179, + "type": "message", + "date": "2023-07-27T02:29:04", + "date_unixtime": "1690417744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010343 BTC for 65.77 CZK @ 635,854 CZK\nFees are 0.23098797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (31.792699996497803467617761118 CZK)\nThe limits being 0.10 % (3.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01910539 BTC (11,801.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.94 % (346.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,198.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00504792 BTC (3,209.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010343 BTC for 65.77 CZK @ 635,854 CZK\nFees are 0.23098797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (31.792699996497803467617761118 CZK)\nThe limits being 0.10 % (3.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01910539 BTC (11,801.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.94 % (346.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,198.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00504792 BTC (3,209.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 179 transactions" + } + ] + }, + { + "id": 180, + "type": "message", + "date": "2023-07-27T14:29:06", + "date_unixtime": "1690460946", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010304 BTC for 65.77 CZK @ 638,293 CZK\nFees are 0.23099967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (19.148789997818195322582142625 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01920843 BTC (11,867.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.31 % (393.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,132.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00515096 BTC (3,287.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010304 BTC for 65.77 CZK @ 638,293 CZK\nFees are 0.23099967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (19.148789997818195322582142625 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01920843 BTC (11,867.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.31 % (393.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,132.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00515096 BTC (3,287.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 180 transactions" + } + ] + }, + { + "id": 181, + "type": "message", + "date": "2023-07-28T02:29:04", + "date_unixtime": "1690504144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010257 BTC for 65.77 CZK @ 641,218 CZK\nFees are 0.23099974 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (32.060899997129088844207601561 CZK)\nThe limits being 0.10 % (3.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01931100 BTC (11,933.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.76 % (449.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,066.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00525353 BTC (3,368.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010257 BTC for 65.77 CZK @ 641,218 CZK\nFees are 0.23099974 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (32.060899997129088844207601561 CZK)\nThe limits being 0.10 % (3.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01931100 BTC (11,933.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.76 % (449.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,066.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00525353 BTC (3,368.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 181 transactions" + } + ] + }, + { + "id": 182, + "type": "message", + "date": "2023-07-28T14:29:05", + "date_unixtime": "1690547345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010292 BTC for 65.77 CZK @ 638,996 CZK\nFees are 0.23098477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (19.169879997350896425278722295 CZK)\nThe limits being 0.10 % (3.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01941392 BTC (11,999.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.38 % (406.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,000.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00535645 BTC (3,422.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010292 BTC for 65.77 CZK @ 638,996 CZK\nFees are 0.23098477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (19.169879997350896425278722295 CZK)\nThe limits being 0.10 % (3.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01941392 BTC (11,999.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.38 % (406.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,000.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00535645 BTC (3,422.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 182 transactions" + } + ] + }, + { + "id": 183, + "type": "message", + "date": "2023-07-29T02:29:06", + "date_unixtime": "1690590546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010294 BTC for 65.77 CZK @ 638,873 CZK\nFees are 0.23098518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (31.943649998465638383009379741 CZK)\nThe limits being 0.10 % (3.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01951686 BTC (12,065.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.34 % (403.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 934.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00545939 BTC (3,487.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010294 BTC for 65.77 CZK @ 638,873 CZK\nFees are 0.23098518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (31.943649998465638383009379741 CZK)\nThe limits being 0.10 % (3.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01951686 BTC (12,065.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.34 % (403.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 934.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00545939 BTC (3,487.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 183 transactions" + } + ] + }, + { + "id": 184, + "type": "message", + "date": "2023-07-29T14:29:04", + "date_unixtime": "1690633744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010305 BTC for 65.76 CZK @ 638,175 CZK\nFees are 0.23097938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (19.145249997642893250624270657 CZK)\nThe limits being 0.10 % (3.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01961991 BTC (12,131.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.21 % (389.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 868.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00556244 BTC (3,549.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010305 BTC for 65.76 CZK @ 638,175 CZK\nFees are 0.23097938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (19.145249997642893250624270657 CZK)\nThe limits being 0.10 % (3.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01961991 BTC (12,131.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.21 % (389.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 868.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00556244 BTC (3,549.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 184 transactions" + } + ] + }, + { + "id": 185, + "type": "message", + "date": "2023-07-30T02:29:04", + "date_unixtime": "1690676944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010275 BTC for 65.77 CZK @ 640,052 CZK\nFees are 0.23098433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.88 % (32.002599999757539608935635252 CZK)\nThe limits being 0.10 % (3.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01972266 BTC (12,197.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.49 % (426.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 802.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00566519 BTC (3,626.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010275 BTC for 65.77 CZK @ 640,052 CZK\nFees are 0.23098433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.88 % (32.002599999757539608935635252 CZK)\nThe limits being 0.10 % (3.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01972266 BTC (12,197.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.49 % (426.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 802.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00566519 BTC (3,626.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 185 transactions" + } + ] + }, + { + "id": 186, + "type": "message", + "date": "2023-07-30T14:29:05", + "date_unixtime": "1690720145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010292 BTC for 65.77 CZK @ 638,994 CZK\nFees are 0.23098404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (19.169819997478704053883696220 CZK)\nThe limits being 0.10 % (3.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01982558 BTC (12,263.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.30 % (405.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 736.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00576811 BTC (3,685.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010292 BTC for 65.77 CZK @ 638,994 CZK\nFees are 0.23098404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (19.169819997478704053883696220 CZK)\nThe limits being 0.10 % (3.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01982558 BTC (12,263.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.30 % (405.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 736.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00576811 BTC (3,685.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 186 transactions" + } + ] + }, + { + "id": 187, + "type": "message", + "date": "2023-07-31T02:29:04", + "date_unixtime": "1690763344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010290 BTC for 65.77 CZK @ 639,136 CZK\nFees are 0.23099048 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (19.174079999883788663874689316 CZK)\nThe limits being 0.10 % (3.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01992848 BTC (12,329.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.31 % (407.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 670.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00587101 BTC (3,752.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010290 BTC for 65.77 CZK @ 639,136 CZK\nFees are 0.23099048 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (19.174079999883788663874689316 CZK)\nThe limits being 0.10 % (3.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01992848 BTC (12,329.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.31 % (407.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 670.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00587101 BTC (3,752.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 187 transactions" + } + ] + }, + { + "id": 188, + "type": "message", + "date": "2023-07-31T14:29:04", + "date_unixtime": "1690806544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010306 BTC for 65.77 CZK @ 638,133 CZK\nFees are 0.23098659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (19.143989998714957574744942285 CZK)\nThe limits being 0.10 % (3.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02003154 BTC (12,395.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.13 % (387.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 604.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597407 BTC (3,812.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010306 BTC for 65.77 CZK @ 638,133 CZK\nFees are 0.23098659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (19.143989998714957574744942285 CZK)\nThe limits being 0.10 % (3.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02003154 BTC (12,395.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.13 % (387.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 604.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597407 BTC (3,812.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 188 transactions" + } + ] + }, + { + "id": 189, + "type": "message", + "date": "2023-08-01T02:29:04", + "date_unixtime": "1690849744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010342 BTC for 65.77 CZK @ 635,944 CZK\nFees are 0.23099832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (25.437759996269101463385210360 CZK)\nThe limits being 0.10 % (3.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02013496 BTC (12,461.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.76 % (343.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 538.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00607749 BTC (3,864.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010342 BTC for 65.77 CZK @ 635,944 CZK\nFees are 0.23099832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (25.437759996269101463385210360 CZK)\nThe limits being 0.10 % (3.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02013496 BTC (12,461.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.76 % (343.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 538.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00607749 BTC (3,864.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 189 transactions" + } + ] + }, + { + "id": 190, + "type": "message", + "date": "2023-08-01T14:29:04", + "date_unixtime": "1690892944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010422 BTC for 65.76 CZK @ 631,010 CZK\nFees are 0.23097912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (18.930299997791265401262535645 CZK)\nThe limits being 0.10 % (3.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02023918 BTC (12,527.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.95 % (243.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 472.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00618171 BTC (3,900.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010422 BTC for 65.76 CZK @ 631,010 CZK\nFees are 0.23097912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (18.930299997791265401262535645 CZK)\nThe limits being 0.10 % (3.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02023918 BTC (12,527.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.95 % (243.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 472.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00618171 BTC (3,900.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 190 transactions" + } + ] + }, + { + "id": 191, + "type": "message", + "date": "2023-08-02T02:29:04", + "date_unixtime": "1690936144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010156 BTC for 65.77 CZK @ 647,584 CZK\nFees are 0.23099587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (25.903359996608954127273722750 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02034074 BTC (12,593.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.60 % (578.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 406.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00628327 BTC (4,068.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010156 BTC for 65.77 CZK @ 647,584 CZK\nFees are 0.23099587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (25.903359996608954127273722750 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02034074 BTC (12,593.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.60 % (578.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 406.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00628327 BTC (4,068.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 191 transactions" + } + ] + }, + { + "id": 192, + "type": "message", + "date": "2023-08-02T14:29:03", + "date_unixtime": "1690979343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010209 BTC for 65.76 CZK @ 644,177 CZK\nFees are 0.23097971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (19.325309998607576977493260804 CZK)\nThe limits being 0.10 % (4.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02044283 BTC (12,659.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.02 % (509.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 340.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00638536 BTC (4,113.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010209 BTC for 65.76 CZK @ 644,177 CZK\nFees are 0.23097971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (19.325309998607576977493260804 CZK)\nThe limits being 0.10 % (4.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02044283 BTC (12,659.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.02 % (509.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 340.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00638536 BTC (4,113.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 192 transactions" + } + ] + }, + { + "id": 193, + "type": "message", + "date": "2023-08-03T02:29:04", + "date_unixtime": "1691022544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010287 BTC for 65.76 CZK @ 639,296 CZK\nFees are 0.23098094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (25.571839996776132375027057288 CZK)\nThe limits being 0.10 % (4.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02054570 BTC (12,725.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.22 % (409.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 274.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00648823 BTC (4,147.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010287 BTC for 65.76 CZK @ 639,296 CZK\nFees are 0.23098094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (25.571839996776132375027057288 CZK)\nThe limits being 0.10 % (4.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02054570 BTC (12,725.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.22 % (409.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 274.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00648823 BTC (4,147.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 193 transactions" + } + ] + }, + { + "id": 194, + "type": "message", + "date": "2023-08-03T14:29:04", + "date_unixtime": "1691065744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010287 BTC for 65.77 CZK @ 639,337 CZK\nFees are 0.23099576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (38.360219999904097687838845754 CZK)\nThe limits being 0.10 % (4.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02064857 BTC (12,791.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.21 % (410.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,208.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00659110 BTC (4,213.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.93 CZK over 194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010287 BTC for 65.77 CZK @ 639,337 CZK\nFees are 0.23099576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (38.360219999904097687838845754 CZK)\nThe limits being 0.10 % (4.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02064857 BTC (12,791.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.21 % (410.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,208.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00659110 BTC (4,213.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.93 CZK over 194 transactions" + } + ] + }, + { + "id": 195, + "type": "message", + "date": "2023-08-04T02:29:05", + "date_unixtime": "1691108945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010220 BTC for 65.77 CZK @ 643,500 CZK\nFees are 0.23098558 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (51.48000 CZK)\nThe limits being 0.10 % (4.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02075077 BTC (12,857.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.86 % (495.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,142.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00669330 BTC (4,307.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010220 BTC for 65.77 CZK @ 643,500 CZK\nFees are 0.23098558 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (51.48000 CZK)\nThe limits being 0.10 % (4.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02075077 BTC (12,857.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.86 % (495.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,142.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00669330 BTC (4,307.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 195 transactions" + } + ] + }, + { + "id": 196, + "type": "message", + "date": "2023-08-04T14:29:04", + "date_unixtime": "1691152144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010209 BTC for 65.73 CZK @ 643,881 CZK\nFees are 0.23087359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.59 % (25.755240894307478922214798894 CZK)\nThe limits being 0.10 % (4.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02085286 BTC (12,923.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.90 % (503.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,076.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00679539 BTC (4,375.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010209 BTC for 65.73 CZK @ 643,881 CZK\nFees are 0.23087359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.59 % (25.755240894307478922214798894 CZK)\nThe limits being 0.10 % (4.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02085286 BTC (12,923.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.90 % (503.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,076.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00679539 BTC (4,375.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 196 transactions" + } + ] + }, + { + "id": 197, + "type": "message", + "date": "2023-08-05T02:29:04", + "date_unixtime": "1691195344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010269 BTC for 65.76 CZK @ 640,422 CZK\nFees are 0.23098289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.16 % (51.233759997570097802107852820 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02095555 BTC (12,989.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.32 % (431.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,010.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00689808 BTC (4,417.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010269 BTC for 65.76 CZK @ 640,422 CZK\nFees are 0.23098289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.16 % (51.233759997570097802107852820 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02095555 BTC (12,989.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.32 % (431.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,010.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00689808 BTC (4,417.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 197 transactions" + } + ] + }, + { + "id": 198, + "type": "message", + "date": "2023-08-05T14:29:03", + "date_unixtime": "1691238543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010266 BTC for 65.77 CZK @ 640,628 CZK\nFees are 0.23098969 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (38.437679996109467244538912171 CZK)\nThe limits being 0.10 % (4.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02105821 BTC (13,055.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.33 % (435.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 944.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00700074 BTC (4,484.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010266 BTC for 65.77 CZK @ 640,628 CZK\nFees are 0.23098969 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (38.437679996109467244538912171 CZK)\nThe limits being 0.10 % (4.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02105821 BTC (13,055.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.33 % (435.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 944.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00700074 BTC (4,484.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 198 transactions" + } + ] + }, + { + "id": 199, + "type": "message", + "date": "2023-08-06T02:29:03", + "date_unixtime": "1691281743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010248 BTC for 65.77 CZK @ 641,747 CZK\nFees are 0.23098745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (19.252409998844792640278930068 CZK)\nThe limits being 0.10 % (4.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02116069 BTC (13,121.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.49 % (458.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 878.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00710322 BTC (4,558.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010248 BTC for 65.77 CZK @ 641,747 CZK\nFees are 0.23098745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (19.252409998844792640278930068 CZK)\nThe limits being 0.10 % (4.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02116069 BTC (13,121.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.49 % (458.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 878.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00710322 BTC (4,558.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 199 transactions" + } + ] + }, + { + "id": 200, + "type": "message", + "date": "2023-08-06T14:29:04", + "date_unixtime": "1691324944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010251 BTC for 65.76 CZK @ 641,534 CZK\nFees are 0.23097838 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (19.246019998194787660804975970 CZK)\nThe limits being 0.10 % (4.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02126320 BTC (13,187.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.44 % (453.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 812.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00720573 BTC (4,622.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010251 BTC for 65.76 CZK @ 641,534 CZK\nFees are 0.23097838 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (19.246019998194787660804975970 CZK)\nThe limits being 0.10 % (4.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02126320 BTC (13,187.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.44 % (453.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 812.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00720573 BTC (4,622.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 200 transactions" + } + ] + }, + { + "id": 201, + "type": "message", + "date": "2023-08-07T02:29:03", + "date_unixtime": "1691368143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010253 BTC for 65.77 CZK @ 641,439 CZK\nFees are 0.23098923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (19.243169999316252474575599077 CZK)\nThe limits being 0.10 % (4.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02136573 BTC (13,253.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.41 % (451.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 746.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00730826 BTC (4,687.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010253 BTC for 65.77 CZK @ 641,439 CZK\nFees are 0.23098923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (19.243169999316252474575599077 CZK)\nThe limits being 0.10 % (4.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02136573 BTC (13,253.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.41 % (451.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 746.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00730826 BTC (4,687.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 201 transactions" + } + ] + }, + { + "id": 202, + "type": "message", + "date": "2023-08-07T14:29:04", + "date_unixtime": "1691411344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010275 BTC for 65.77 CZK @ 640,088 CZK\nFees are 0.23099732 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (25.603519997284443620079114826 CZK)\nThe limits being 0.10 % (4.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02146848 BTC (13,319.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.17 % (422.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 680.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00741101 BTC (4,743.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010275 BTC for 65.77 CZK @ 640,088 CZK\nFees are 0.23099732 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (25.603519997284443620079114826 CZK)\nThe limits being 0.10 % (4.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02146848 BTC (13,319.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.17 % (422.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 680.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00741101 BTC (4,743.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 202 transactions" + } + ] + }, + { + "id": 203, + "type": "message", + "date": "2023-08-08T02:29:04", + "date_unixtime": "1691454544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010222 BTC for 65.77 CZK @ 643,407 CZK\nFees are 0.23099739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (51.472559998136048385532264934 CZK)\nThe limits being 0.10 % (4.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02157070 BTC (13,385.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.69 % (493.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 614.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00751323 BTC (4,834.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010222 BTC for 65.77 CZK @ 643,407 CZK\nFees are 0.23099739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (51.472559998136048385532264934 CZK)\nThe limits being 0.10 % (4.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02157070 BTC (13,385.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.69 % (493.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 614.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00751323 BTC (4,834.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 203 transactions" + } + ] + }, + { + "id": 204, + "type": "message", + "date": "2023-08-08T14:29:04", + "date_unixtime": "1691497744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010094 BTC for 65.77 CZK @ 651,572 CZK\nFees are 0.23099955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (39.094319998886402050915712186 CZK)\nThe limits being 0.10 % (4.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02167164 BTC (13,451.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 651,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.98 % (669.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 548.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00761417 BTC (4,961.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010094 BTC for 65.77 CZK @ 651,572 CZK\nFees are 0.23099955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (39.094319998886402050915712186 CZK)\nThe limits being 0.10 % (4.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02167164 BTC (13,451.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 651,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.98 % (669.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 548.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00761417 BTC (4,961.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 204 transactions" + } + ] + }, + { + "id": 205, + "type": "message", + "date": "2023-08-09T02:29:03", + "date_unixtime": "1691540943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009981 BTC for 65.77 CZK @ 658,908 CZK\nFees are 0.23098525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.30 % (65.890799993829831238396301253 CZK)\nThe limits being 0.10 % (5.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02177145 BTC (13,517.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.13 % (828.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 482.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00771398 BTC (5,082.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009981 BTC for 65.77 CZK @ 658,908 CZK\nFees are 0.23098525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.30 % (65.890799993829831238396301253 CZK)\nThe limits being 0.10 % (5.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02177145 BTC (13,517.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.13 % (828.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 482.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00771398 BTC (5,082.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 205 transactions" + } + ] + }, + { + "id": 206, + "type": "message", + "date": "2023-08-09T14:29:03", + "date_unixtime": "1691584143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009956 BTC for 65.77 CZK @ 660,578 CZK\nFees are 0.23099066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (19.817339997033284268419311037 CZK)\nThe limits being 0.10 % (5.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02187101 BTC (13,583.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.36 % (864.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 416.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00781354 BTC (5,161.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009956 BTC for 65.77 CZK @ 660,578 CZK\nFees are 0.23099066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (19.817339997033284268419311037 CZK)\nThe limits being 0.10 % (5.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02187101 BTC (13,583.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.36 % (864.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 416.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00781354 BTC (5,161.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 206 transactions" + } + ] + }, + { + "id": 207, + "type": "message", + "date": "2023-08-10T02:29:03", + "date_unixtime": "1691627343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010041 BTC for 65.76 CZK @ 654,964 CZK\nFees are 0.23098289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (32.748199998342619872374783070 CZK)\nThe limits being 0.10 % (5.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02197142 BTC (13,649.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.43 % (741.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 350.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00791395 BTC (5,183.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010041 BTC for 65.76 CZK @ 654,964 CZK\nFees are 0.23098289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (32.748199998342619872374783070 CZK)\nThe limits being 0.10 % (5.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02197142 BTC (13,649.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.43 % (741.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 350.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00791395 BTC (5,183.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 207 transactions" + } + ] + }, + { + "id": 208, + "type": "message", + "date": "2023-08-10T14:29:05", + "date_unixtime": "1691670545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010124 BTC for 65.77 CZK @ 649,628 CZK\nFees are 0.23099485 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (19.488839998369987934367209827 CZK)\nThe limits being 0.10 % (5.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02207266 BTC (13,715.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.55 % (623.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 284.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00801519 BTC (5,206.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010124 BTC for 65.77 CZK @ 649,628 CZK\nFees are 0.23099485 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (19.488839998369987934367209827 CZK)\nThe limits being 0.10 % (5.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02207266 BTC (13,715.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.55 % (623.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 284.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00801519 BTC (5,206.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 208 transactions" + } + ] + }, + { + "id": 209, + "type": "message", + "date": "2023-08-11T02:29:05", + "date_unixtime": "1691713745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010121 BTC for 65.77 CZK @ 649,797 CZK\nFees are 0.23098643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (45.485781439696759395667185402 CZK)\nThe limits being 0.10 % (5.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02217387 BTC (13,781.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.55 % (627.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 218.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00811640 BTC (5,274.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010121 BTC for 65.77 CZK @ 649,797 CZK\nFees are 0.23098643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (45.485781439696759395667185402 CZK)\nThe limits being 0.10 % (5.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02217387 BTC (13,781.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.55 % (627.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 218.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00811640 BTC (5,274.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 209 transactions" + } + ] + }, + { + "id": 210, + "type": "message", + "date": "2023-08-11T14:29:04", + "date_unixtime": "1691756944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010211 BTC for 65.77 CZK @ 644,107 CZK\nFees are 0.23099986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (19.323209999942908663083380141 CZK)\nThe limits being 0.10 % (5.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02227598 BTC (13,847.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.62 % (500.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,152.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00821851 BTC (5,293.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010211 BTC for 65.77 CZK @ 644,107 CZK\nFees are 0.23099986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (19.323209999942908663083380141 CZK)\nThe limits being 0.10 % (5.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02227598 BTC (13,847.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.62 % (500.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,152.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00821851 BTC (5,293.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 210 transactions" + } + ] + }, + { + "id": 211, + "type": "message", + "date": "2023-08-12T02:29:04", + "date_unixtime": "1691800144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010164 BTC for 65.77 CZK @ 647,061 CZK\nFees are 0.23099113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (32.353049999931369682694590970 CZK)\nThe limits being 0.10 % (5.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02237762 BTC (13,913.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.07 % (566.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,086.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00832015 BTC (5,383.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010164 BTC for 65.77 CZK @ 647,061 CZK\nFees are 0.23099113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (32.353049999931369682694590970 CZK)\nThe limits being 0.10 % (5.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02237762 BTC (13,913.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.07 % (566.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,086.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00832015 BTC (5,383.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 211 transactions" + } + ] + }, + { + "id": 212, + "type": "message", + "date": "2023-08-12T14:29:05", + "date_unixtime": "1691843345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010155 BTC for 65.77 CZK @ 647,626 CZK\nFees are 0.23098811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (19.428779999690889861849847542 CZK)\nThe limits being 0.10 % (5.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02247917 BTC (13,979.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.14 % (578.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,020.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00842170 BTC (5,454.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010155 BTC for 65.77 CZK @ 647,626 CZK\nFees are 0.23098811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (19.428779999690889861849847542 CZK)\nThe limits being 0.10 % (5.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02247917 BTC (13,979.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.14 % (578.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,020.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00842170 BTC (5,454.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 212 transactions" + } + ] + }, + { + "id": 213, + "type": "message", + "date": "2023-08-13T02:29:04", + "date_unixtime": "1691886544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010149 BTC for 65.77 CZK @ 648,021 CZK\nFees are 0.23099243 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (19.44062999719721736558757326 CZK)\nThe limits being 0.10 % (5.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02258066 BTC (14,045.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.18 % (587.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 954.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00852319 BTC (5,523.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010149 BTC for 65.77 CZK @ 648,021 CZK\nFees are 0.23099243 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (19.44062999719721736558757326 CZK)\nThe limits being 0.10 % (5.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02258066 BTC (14,045.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.18 % (587.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 954.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00852319 BTC (5,523.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 213 transactions" + } + ] + }, + { + "id": 214, + "type": "message", + "date": "2023-08-13T14:29:03", + "date_unixtime": "1691929743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010161 BTC for 65.76 CZK @ 647,222 CZK\nFees are 0.23098041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (19.416659998243525870260112635 CZK)\nThe limits being 0.10 % (5.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02268227 BTC (14,111.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.03 % (569.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 888.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00862480 BTC (5,582.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010161 BTC for 65.76 CZK @ 647,222 CZK\nFees are 0.23098041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (19.416659998243525870260112635 CZK)\nThe limits being 0.10 % (5.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02268227 BTC (14,111.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.03 % (569.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 888.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00862480 BTC (5,582.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 214 transactions" + } + ] + }, + { + "id": 215, + "type": "message", + "date": "2023-08-14T02:29:04", + "date_unixtime": "1691972944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010186 BTC for 65.76 CZK @ 645,641 CZK\nFees are 0.23098309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (19.369229999145930535096531862 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02278413 BTC (14,177.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.76 % (533.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 822.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00872666 BTC (5,634.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010186 BTC for 65.76 CZK @ 645,641 CZK\nFees are 0.23098309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (19.369229999145930535096531862 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02278413 BTC (14,177.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.76 % (533.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 822.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00872666 BTC (5,634.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 215 transactions" + } + ] + }, + { + "id": 216, + "type": "message", + "date": "2023-08-14T14:29:06", + "date_unixtime": "1692016146", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010180 BTC for 65.76 CZK @ 646,010 CZK\nFees are 0.23097897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (19.380299999118997066260230647 CZK)\nThe limits being 0.10 % (5.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02288593 BTC (14,243.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.80 % (541.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 756.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882846 BTC (5,703.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010180 BTC for 65.76 CZK @ 646,010 CZK\nFees are 0.23097897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (19.380299999118997066260230647 CZK)\nThe limits being 0.10 % (5.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02288593 BTC (14,243.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.80 % (541.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 756.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882846 BTC (5,703.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 216 transactions" + } + ] + }, + { + "id": 217, + "type": "message", + "date": "2023-08-15T02:29:06", + "date_unixtime": "1692059346", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010121 BTC for 65.77 CZK @ 649,794 CZK\nFees are 0.23098541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (19.493819997758069068309331528 CZK)\nThe limits being 0.10 % (5.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02298714 BTC (14,309.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.39 % (627.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 690.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00892967 BTC (5,802.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010121 BTC for 65.77 CZK @ 649,794 CZK\nFees are 0.23098541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (19.493819997758069068309331528 CZK)\nThe limits being 0.10 % (5.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02298714 BTC (14,309.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.39 % (627.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 690.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00892967 BTC (5,802.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 217 transactions" + } + ] + }, + { + "id": 218, + "type": "message", + "date": "2023-08-15T14:29:05", + "date_unixtime": "1692102545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010109 BTC for 65.76 CZK @ 650,558 CZK\nFees are 0.23098280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (19.516739997406446119953197738 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02308823 BTC (14,375.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.49 % (644.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 624.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00903076 BTC (5,875.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010109 BTC for 65.76 CZK @ 650,558 CZK\nFees are 0.23098280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (19.516739997406446119953197738 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02308823 BTC (14,375.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.49 % (644.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 624.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00903076 BTC (5,875.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 218 transactions" + } + ] + }, + { + "id": 219, + "type": "message", + "date": "2023-08-16T02:29:04", + "date_unixtime": "1692145744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010150 BTC for 65.77 CZK @ 647,972 CZK\nFees are 0.23099773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (25.918879998821857488936505482 CZK)\nThe limits being 0.10 % (5.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02318973 BTC (14,441.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.05 % (585.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 558.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00913226 BTC (5,917.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010150 BTC for 65.77 CZK @ 647,972 CZK\nFees are 0.23099773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (25.918879998821857488936505482 CZK)\nThe limits being 0.10 % (5.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02318973 BTC (14,441.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.05 % (585.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 558.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00913226 BTC (5,917.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 219 transactions" + } + ] + }, + { + "id": 220, + "type": "message", + "date": "2023-08-16T14:29:04", + "date_unixtime": "1692188944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010224 BTC for 65.77 CZK @ 643,251 CZK\nFees are 0.23098657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (19.297529997707554077161858378 CZK)\nThe limits being 0.10 % (5.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02329197 BTC (14,507.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.28 % (475.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 492.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00923450 BTC (5,940.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010224 BTC for 65.77 CZK @ 643,251 CZK\nFees are 0.23098657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (19.297529997707554077161858378 CZK)\nThe limits being 0.10 % (5.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02329197 BTC (14,507.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.28 % (475.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 492.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00923450 BTC (5,940.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 220 transactions" + } + ] + }, + { + "id": 221, + "type": "message", + "date": "2023-08-17T02:29:05", + "date_unixtime": "1692232145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010294 BTC for 65.77 CZK @ 638,890 CZK\nFees are 0.23099133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (19.166699997647634871112172096 CZK)\nThe limits being 0.10 % (5.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02339491 BTC (14,573.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.56 % (373.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 426.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00933744 BTC (5,965.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010294 BTC for 65.77 CZK @ 638,890 CZK\nFees are 0.23099133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (19.166699997647634871112172096 CZK)\nThe limits being 0.10 % (5.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02339491 BTC (14,573.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.56 % (373.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 426.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00933744 BTC (5,965.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 221 transactions" + } + ] + }, + { + "id": 222, + "type": "message", + "date": "2023-08-17T14:29:03", + "date_unixtime": "1692275343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010418 BTC for 65.77 CZK @ 631,273 CZK\nFees are 0.23098671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (25.250919998473379263956455726 CZK)\nThe limits being 0.10 % (5.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02349909 BTC (14,639.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.33 % (195.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 360.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00944162 BTC (5,960.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010418 BTC for 65.77 CZK @ 631,273 CZK\nFees are 0.23098671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (25.250919998473379263956455726 CZK)\nThe limits being 0.10 % (5.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02349909 BTC (14,639.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.33 % (195.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 360.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00944162 BTC (5,960.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 222 transactions" + } + ] + }, + { + "id": 223, + "type": "message", + "date": "2023-08-18T02:29:04", + "date_unixtime": "1692318544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011060 BTC for 65.77 CZK @ 594,630 CZK\nFees are 0.23098691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (29.731499998648491581454060878 CZK)\nThe limits being 0.10 % (5.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02360969 BTC (14,705.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.53 % (-666.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,294.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00955222 BTC (5,680.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011060 BTC for 65.77 CZK @ 594,630 CZK\nFees are 0.23098691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (29.731499998648491581454060878 CZK)\nThe limits being 0.10 % (5.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02360969 BTC (14,705.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.53 % (-666.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,294.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00955222 BTC (5,680.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 223 transactions" + } + ] + }, + { + "id": 224, + "type": "message", + "date": "2023-08-18T14:29:04", + "date_unixtime": "1692361744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011206 BTC for 65.77 CZK @ 586,876 CZK\nFees are 0.23098426 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (17.606279998409991230941570646 CZK)\nThe limits being 0.10 % (5.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02372175 BTC (14,771.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.75 % (-849.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,028.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01000119 BTC (5,869.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011206 BTC for 65.77 CZK @ 586,876 CZK\nFees are 0.23098426 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (17.606279998409991230941570646 CZK)\nThe limits being 0.10 % (5.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02372175 BTC (14,771.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.75 % (-849.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,028.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01000119 BTC (5,869.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 224 transactions" + } + ] + }, + { + "id": 225, + "type": "message", + "date": "2023-08-19T02:29:04", + "date_unixtime": "1692404944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011387 BTC for 65.77 CZK @ 577,548 CZK\nFees are 0.23098449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.59 % (34.652879995977895754251530901 CZK)\nThe limits being 0.10 % (5.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02383562 BTC (14,837.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.22 % (-1,071.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 962.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01011506 BTC (5,841.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011387 BTC for 65.77 CZK @ 577,548 CZK\nFees are 0.23098449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.59 % (34.652879995977895754251530901 CZK)\nThe limits being 0.10 % (5.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02383562 BTC (14,837.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.22 % (-1,071.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 962.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01011506 BTC (5,841.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 225 transactions" + } + ] + }, + { + "id": 226, + "type": "message", + "date": "2023-08-19T14:29:04", + "date_unixtime": "1692448144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011444 BTC for 65.77 CZK @ 574,685 CZK\nFees are 0.23098998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (17.240549997413805264238569411 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02395006 BTC (14,903.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.65 % (-1,139.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 896.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01022950 BTC (5,878.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011444 BTC for 65.77 CZK @ 574,685 CZK\nFees are 0.23098998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (17.240549997413805264238569411 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02395006 BTC (14,903.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.65 % (-1,139.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 896.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01022950 BTC (5,878.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 226 transactions" + } + ] + }, + { + "id": 227, + "type": "message", + "date": "2023-08-20T02:29:04", + "date_unixtime": "1692491344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011342 BTC for 65.77 CZK @ 579,846 CZK\nFees are 0.23098710 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (17.395379998255093243125344138 CZK)\nThe limits being 0.10 % (6.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02406348 BTC (14,969.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.79 % (-1,016.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 830.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01034292 BTC (5,997.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011342 BTC for 65.77 CZK @ 579,846 CZK\nFees are 0.23098710 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (17.395379998255093243125344138 CZK)\nThe limits being 0.10 % (6.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02406348 BTC (14,969.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.79 % (-1,016.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 830.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01034292 BTC (5,997.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 227 transactions" + } + ] + }, + { + "id": 228, + "type": "message", + "date": "2023-08-20T14:29:03", + "date_unixtime": "1692534543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011318 BTC for 65.77 CZK @ 581,105 CZK\nFees are 0.23099880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (17.433149999035888967162378222 CZK)\nThe limits being 0.10 % (6.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02417666 BTC (15,035.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.56 % (-986.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 764.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01045610 BTC (6,076.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011318 BTC for 65.77 CZK @ 581,105 CZK\nFees are 0.23099880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (17.433149999035888967162378222 CZK)\nThe limits being 0.10 % (6.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02417666 BTC (15,035.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.56 % (-986.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 764.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01045610 BTC (6,076.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 228 transactions" + } + ] + }, + { + "id": 229, + "type": "message", + "date": "2023-08-21T02:29:05", + "date_unixtime": "1692577745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011337 BTC for 65.77 CZK @ 580,103 CZK\nFees are 0.23098761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (17.403089997393351900262286548 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02429003 BTC (15,101.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.69 % (-1,010.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 698.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01056947 BTC (6,131.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011337 BTC for 65.77 CZK @ 580,103 CZK\nFees are 0.23098761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (17.403089997393351900262286548 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02429003 BTC (15,101.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.69 % (-1,010.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 698.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01056947 BTC (6,131.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 229 transactions" + } + ] + }, + { + "id": 230, + "type": "message", + "date": "2023-08-21T14:29:03", + "date_unixtime": "1692620943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011418 BTC for 65.77 CZK @ 576,005 CZK\nFees are 0.23099454 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (17.280149997866112850949160859 CZK)\nThe limits being 0.10 % (6.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02440421 BTC (15,167.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.32 % (-1,110.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 632.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01068365 BTC (6,153.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011418 BTC for 65.77 CZK @ 576,005 CZK\nFees are 0.23099454 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (17.280149997866112850949160859 CZK)\nThe limits being 0.10 % (6.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02440421 BTC (15,167.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.32 % (-1,110.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 632.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01068365 BTC (6,153.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 230 transactions" + } + ] + }, + { + "id": 231, + "type": "message", + "date": "2023-08-22T02:29:05", + "date_unixtime": "1692664145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011387 BTC for 65.77 CZK @ 577,556 CZK\nFees are 0.23098769 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (17.326679998419512561396489296 CZK)\nThe limits being 0.10 % (6.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02451808 BTC (15,233.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.04 % (-1,072.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 566.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01079752 BTC (6,236.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011387 BTC for 65.77 CZK @ 577,556 CZK\nFees are 0.23098769 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (17.326679998419512561396489296 CZK)\nThe limits being 0.10 % (6.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02451808 BTC (15,233.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.04 % (-1,072.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 566.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01079752 BTC (6,236.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 231 transactions" + } + ] + }, + { + "id": 232, + "type": "message", + "date": "2023-08-22T14:29:04", + "date_unixtime": "1692707344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011399 BTC for 65.77 CZK @ 576,967 CZK\nFees are 0.23099530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (17.309009997598981684990331017 CZK)\nThe limits being 0.10 % (6.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02463207 BTC (15,299.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.11 % (-1,087.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 500.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01091151 BTC (6,295.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.94 CZK over 232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011399 BTC for 65.77 CZK @ 576,967 CZK\nFees are 0.23099530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (17.309009997598981684990331017 CZK)\nThe limits being 0.10 % (6.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02463207 BTC (15,299.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.11 % (-1,087.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 500.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01091151 BTC (6,295.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.94 CZK over 232 transactions" + } + ] + }, + { + "id": 233, + "type": "message", + "date": "2023-08-23T02:29:06", + "date_unixtime": "1692750546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011330 BTC for 65.77 CZK @ 580,483 CZK\nFees are 0.23099620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (29.024149998394850151565724730 CZK)\nThe limits being 0.10 % (6.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02474537 BTC (15,365.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.51 % (-1,000.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 434.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01102481 BTC (6,399.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011330 BTC for 65.77 CZK @ 580,483 CZK\nFees are 0.23099620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (29.024149998394850151565724730 CZK)\nThe limits being 0.10 % (6.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02474537 BTC (15,365.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.51 % (-1,000.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 434.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01102481 BTC (6,399.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 233 transactions" + } + ] + }, + { + "id": 234, + "type": "message", + "date": "2023-08-23T14:29:03", + "date_unixtime": "1692793743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011347 BTC for 65.77 CZK @ 579,597 CZK\nFees are 0.23098969 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (17.387909999851142311506975959 CZK)\nThe limits being 0.10 % (6.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02485884 BTC (15,431.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.63 % (-1,023.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 368.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01113828 BTC (6,455.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011347 BTC for 65.77 CZK @ 579,597 CZK\nFees are 0.23098969 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (17.387909999851142311506975959 CZK)\nThe limits being 0.10 % (6.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02485884 BTC (15,431.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.63 % (-1,023.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 368.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01113828 BTC (6,455.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 234 transactions" + } + ] + }, + { + "id": 235, + "type": "message", + "date": "2023-08-24T02:29:04", + "date_unixtime": "1692836944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011185 BTC for 65.77 CZK @ 587,998 CZK\nFees are 0.23099217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (29.399899996859449682035985361 CZK)\nThe limits being 0.10 % (6.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02497069 BTC (15,497.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.26 % (-814.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 302.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01125013 BTC (6,615.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011185 BTC for 65.77 CZK @ 587,998 CZK\nFees are 0.23099217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (29.399899996859449682035985361 CZK)\nThe limits being 0.10 % (6.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02497069 BTC (15,497.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.26 % (-814.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 302.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01125013 BTC (6,615.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 235 transactions" + } + ] + }, + { + "id": 236, + "type": "message", + "date": "2023-08-24T14:29:04", + "date_unixtime": "1692880144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011154 BTC for 65.77 CZK @ 589,634 CZK\nFees are 0.23099287 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (17.689019998054147760943207649 CZK)\nThe limits being 0.10 % (6.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02508223 BTC (15,563.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.97 % (-773.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 236.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01136167 BTC (6,699.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011154 BTC for 65.77 CZK @ 589,634 CZK\nFees are 0.23099287 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (17.689019998054147760943207649 CZK)\nThe limits being 0.10 % (6.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02508223 BTC (15,563.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.97 % (-773.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 236.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01136167 BTC (6,699.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 236 transactions" + } + ] + }, + { + "id": 237, + "type": "message", + "date": "2023-08-25T02:29:04", + "date_unixtime": "1692923344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011210 BTC for 65.77 CZK @ 586,703 CZK\nFees are 0.23099860 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (23.468119999271061543296055243 CZK)\nThe limits being 0.10 % (6.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02519433 BTC (15,629.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.42 % (-847.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 170.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01147377 BTC (6,731.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011210 BTC for 65.77 CZK @ 586,703 CZK\nFees are 0.23099860 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (23.468119999271061543296055243 CZK)\nThe limits being 0.10 % (6.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02519433 BTC (15,629.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.42 % (-847.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 170.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01147377 BTC (6,731.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 237 transactions" + } + ] + }, + { + "id": 238, + "type": "message", + "date": "2023-08-25T14:29:05", + "date_unixtime": "1692966545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011270 BTC for 65.77 CZK @ 583,562 CZK\nFees are 0.23099168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (17.506859999761261494264307400 CZK)\nThe limits being 0.10 % (6.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02530703 BTC (15,695.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.91 % (-926.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,104.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01158647 BTC (6,761.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011270 BTC for 65.77 CZK @ 583,562 CZK\nFees are 0.23099168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (17.506859999761261494264307400 CZK)\nThe limits being 0.10 % (6.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02530703 BTC (15,695.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.91 % (-926.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,104.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01158647 BTC (6,761.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 238 transactions" + } + ] + }, + { + "id": 239, + "type": "message", + "date": "2023-08-26T02:29:04", + "date_unixtime": "1693009744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011263 BTC for 65.77 CZK @ 583,945 CZK\nFees are 0.23099972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (29.197249996140207312230154594 CZK)\nThe limits being 0.10 % (6.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02541966 BTC (15,761.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.82 % (-917.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,038.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01169910 BTC (6,831.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011263 BTC for 65.77 CZK @ 583,945 CZK\nFees are 0.23099972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (29.197249996140207312230154594 CZK)\nThe limits being 0.10 % (6.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02541966 BTC (15,761.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.82 % (-917.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,038.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01169910 BTC (6,831.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 239 transactions" + } + ] + }, + { + "id": 240, + "type": "message", + "date": "2023-08-26T14:29:17", + "date_unixtime": "1693052957", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011280 BTC for 65.77 CZK @ 583,043 CZK\nFees are 0.23099103 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.491289998303809008894401510 CZK)\nThe limits being 0.10 % (6.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02553246 BTC (15,827.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.94 % (-940.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 972.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01181190 BTC (6,886.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011280 BTC for 65.77 CZK @ 583,043 CZK\nFees are 0.23099103 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.491289998303809008894401510 CZK)\nThe limits being 0.10 % (6.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02553246 BTC (15,827.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.94 % (-940.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 972.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01181190 BTC (6,886.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 240 transactions" + } + ] + }, + { + "id": 241, + "type": "message", + "date": "2023-08-27T02:29:04", + "date_unixtime": "1693096144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011269 BTC for 65.77 CZK @ 583,601 CZK\nFees are 0.23098662 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.508029997767596887687839213 CZK)\nThe limits being 0.10 % (6.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02564515 BTC (15,893.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.83 % (-926.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 906.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01192459 BTC (6,959.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011269 BTC for 65.77 CZK @ 583,601 CZK\nFees are 0.23098662 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.508029997767596887687839213 CZK)\nThe limits being 0.10 % (6.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02564515 BTC (15,893.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.83 % (-926.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 906.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01192459 BTC (6,959.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 241 transactions" + } + ] + }, + { + "id": 242, + "type": "message", + "date": "2023-08-27T14:29:04", + "date_unixtime": "1693139344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011257 BTC for 65.77 CZK @ 584,229 CZK\nFees are 0.23098895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.526869998710651123838175164 CZK)\nThe limits being 0.10 % (7.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02575772 BTC (15,959.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.71 % (-910.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 840.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01203716 BTC (7,032.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011257 BTC for 65.77 CZK @ 584,229 CZK\nFees are 0.23098895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.526869998710651123838175164 CZK)\nThe limits being 0.10 % (7.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02575772 BTC (15,959.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.71 % (-910.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 840.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01203716 BTC (7,032.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 242 transactions" + } + ] + }, + { + "id": 243, + "type": "message", + "date": "2023-08-28T02:29:04", + "date_unixtime": "1693182544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011268 BTC for 65.77 CZK @ 583,648 CZK\nFees are 0.23098473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.509439997813828384466932297 CZK)\nThe limits being 0.10 % (7.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02587040 BTC (16,025.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.78 % (-925.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 774.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01214984 BTC (7,091.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011268 BTC for 65.77 CZK @ 583,648 CZK\nFees are 0.23098473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (17.509439997813828384466932297 CZK)\nThe limits being 0.10 % (7.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02587040 BTC (16,025.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.78 % (-925.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 774.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01214984 BTC (7,091.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 243 transactions" + } + ] + }, + { + "id": 244, + "type": "message", + "date": "2023-08-28T14:29:03", + "date_unixtime": "1693225743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011219 BTC for 65.76 CZK @ 586,189 CZK\nFees are 0.23098152 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (23.447559998690739822156457213 CZK)\nThe limits being 0.10 % (7.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02598259 BTC (16,091.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.35 % (-860.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 708.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01226203 BTC (7,187.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011219 BTC for 65.76 CZK @ 586,189 CZK\nFees are 0.23098152 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (23.447559998690739822156457213 CZK)\nThe limits being 0.10 % (7.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02598259 BTC (16,091.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.35 % (-860.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 708.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01226203 BTC (7,187.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 244 transactions" + } + ] + }, + { + "id": 245, + "type": "message", + "date": "2023-08-29T02:29:03", + "date_unixtime": "1693268943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011280 BTC for 65.76 CZK @ 583,019 CZK\nFees are 0.23098152 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (29.150949999469940315279500472 CZK)\nThe limits being 0.10 % (7.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02609539 BTC (16,157.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.84 % (-943.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 642.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01237483 BTC (7,214.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011280 BTC for 65.76 CZK @ 583,019 CZK\nFees are 0.23098152 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (29.150949999469940315279500472 CZK)\nThe limits being 0.10 % (7.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02609539 BTC (16,157.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.84 % (-943.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 642.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01237483 BTC (7,214.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 245 transactions" + } + ] + }, + { + "id": 246, + "type": "message", + "date": "2023-08-29T14:29:04", + "date_unixtime": "1693312144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011308 BTC for 65.77 CZK @ 581,595 CZK\nFees are 0.23098931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (17.447849997594200277803774515 CZK)\nThe limits being 0.10 % (7.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02620847 BTC (16,223.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.04 % (-980.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 576.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01248791 BTC (7,262.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011308 BTC for 65.77 CZK @ 581,595 CZK\nFees are 0.23098931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (17.447849997594200277803774515 CZK)\nThe limits being 0.10 % (7.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02620847 BTC (16,223.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.04 % (-980.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 576.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01248791 BTC (7,262.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 246 transactions" + } + ] + }, + { + "id": 247, + "type": "message", + "date": "2023-08-30T02:29:04", + "date_unixtime": "1693355344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010702 BTC for 65.77 CZK @ 614,549 CZK\nFees are 0.23099729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (24.581959996673947295473132394 CZK)\nThe limits being 0.10 % (7.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02631549 BTC (16,289.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.72 % (-117.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 510.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01259493 BTC (7,740.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010702 BTC for 65.77 CZK @ 614,549 CZK\nFees are 0.23099729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (24.581959996673947295473132394 CZK)\nThe limits being 0.10 % (7.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02631549 BTC (16,289.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.72 % (-117.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 510.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01259493 BTC (7,740.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 247 transactions" + } + ] + }, + { + "id": 248, + "type": "message", + "date": "2023-08-30T14:29:04", + "date_unixtime": "1693398544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010835 BTC for 65.76 CZK @ 606,966 CZK\nFees are 0.23098230 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (18.208979999627515049426683580 CZK)\nThe limits being 0.10 % (7.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02642384 BTC (16,355.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.94 % (-316.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 444.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01270328 BTC (7,710.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010835 BTC for 65.76 CZK @ 606,966 CZK\nFees are 0.23098230 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (18.208979999627515049426683580 CZK)\nThe limits being 0.10 % (7.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02642384 BTC (16,355.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.94 % (-316.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 444.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01270328 BTC (7,710.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 248 transactions" + } + ] + }, + { + "id": 249, + "type": "message", + "date": "2023-08-31T02:29:04", + "date_unixtime": "1693441744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010919 BTC for 65.77 CZK @ 602,305 CZK\nFees are 0.23098552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (36.138299999822035094405591055 CZK)\nThe limits being 0.10 % (7.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02653303 BTC (16,421.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.68 % (-440.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 378.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01281247 BTC (7,717.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010919 BTC for 65.77 CZK @ 602,305 CZK\nFees are 0.23098552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (36.138299999822035094405591055 CZK)\nThe limits being 0.10 % (7.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02653303 BTC (16,421.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.68 % (-440.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 378.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01281247 BTC (7,717.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 249 transactions" + } + ] + }, + { + "id": 250, + "type": "message", + "date": "2023-08-31T14:29:04", + "date_unixtime": "1693484944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010897 BTC for 65.77 CZK @ 603,546 CZK\nFees are 0.23099509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (42.248219995730278520909586933 CZK)\nThe limits being 0.10 % (7.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02664200 BTC (16,487.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.47 % (-407.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 312.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01292144 BTC (7,798.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010897 BTC for 65.77 CZK @ 603,546 CZK\nFees are 0.23099509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (42.248219995730278520909586933 CZK)\nThe limits being 0.10 % (7.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02664200 BTC (16,487.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.47 % (-407.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 312.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01292144 BTC (7,798.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 250 transactions" + } + ] + }, + { + "id": 251, + "type": "message", + "date": "2023-09-01T02:29:04", + "date_unixtime": "1693528144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011356 BTC for 65.77 CZK @ 579,126 CZK\nFees are 0.23098505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (34.747560000021060490467232246 CZK)\nThe limits being 0.10 % (7.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02675556 BTC (16,553.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.39 % (-1,058.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 246.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01303500 BTC (7,548.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011356 BTC for 65.77 CZK @ 579,126 CZK\nFees are 0.23098505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (34.747560000021060490467232246 CZK)\nThe limits being 0.10 % (7.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02675556 BTC (16,553.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.39 % (-1,058.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 246.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01303500 BTC (7,548.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 251 transactions" + } + ] + }, + { + "id": 252, + "type": "message", + "date": "2023-09-01T14:29:04", + "date_unixtime": "1693571344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011307 BTC for 65.77 CZK @ 581,631 CZK\nFees are 0.23098318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (29.081549999958137145267939676 CZK)\nThe limits being 0.10 % (7.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02686863 BTC (16,619.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.97 % (-991.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,180.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01314807 BTC (7,647.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011307 BTC for 65.77 CZK @ 581,631 CZK\nFees are 0.23098318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (29.081549999958137145267939676 CZK)\nThe limits being 0.10 % (7.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02686863 BTC (16,619.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.97 % (-991.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,180.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01314807 BTC (7,647.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 252 transactions" + } + ] + }, + { + "id": 253, + "type": "message", + "date": "2023-09-02T02:29:04", + "date_unixtime": "1693614544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011370 BTC for 65.77 CZK @ 578,432 CZK\nFees are 0.23099275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (28.921609665204326633388242296 CZK)\nThe limits being 0.10 % (7.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02698233 BTC (16,685.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.46 % (-1,077.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,114.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01326177 BTC (7,671.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011370 BTC for 65.77 CZK @ 578,432 CZK\nFees are 0.23099275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (28.921609665204326633388242296 CZK)\nThe limits being 0.10 % (7.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02698233 BTC (16,685.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.46 % (-1,077.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,114.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01326177 BTC (7,671.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 253 transactions" + } + ] + }, + { + "id": 254, + "type": "message", + "date": "2023-09-02T14:29:04", + "date_unixtime": "1693657744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011362 BTC for 65.77 CZK @ 578,831 CZK\nFees are 0.23098937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (23.153239998677397985768346257 CZK)\nThe limits being 0.10 % (7.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02709595 BTC (16,751.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.37 % (-1,067.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,048.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01337539 BTC (7,742.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011362 BTC for 65.77 CZK @ 578,831 CZK\nFees are 0.23098937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (23.153239998677397985768346257 CZK)\nThe limits being 0.10 % (7.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02709595 BTC (16,751.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.37 % (-1,067.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,048.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01337539 BTC (7,742.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 254 transactions" + } + ] + }, + { + "id": 255, + "type": "message", + "date": "2023-09-03T02:29:03", + "date_unixtime": "1693700943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011342 BTC for 65.77 CZK @ 579,845 CZK\nFees are 0.23098670 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (28.992249995760737612326175965 CZK)\nThe limits being 0.10 % (7.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02720937 BTC (16,817.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.18 % (-1,039.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 982.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01348881 BTC (7,821.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011342 BTC for 65.77 CZK @ 579,845 CZK\nFees are 0.23098670 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (28.992249995760737612326175965 CZK)\nThe limits being 0.10 % (7.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02720937 BTC (16,817.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.18 % (-1,039.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 982.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01348881 BTC (7,821.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 255 transactions" + } + ] + }, + { + "id": 256, + "type": "message", + "date": "2023-09-03T14:29:03", + "date_unixtime": "1693744143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011316 BTC for 65.77 CZK @ 581,196 CZK\nFees are 0.23099415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (23.247839997266548346252943260 CZK)\nThe limits being 0.10 % (7.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02732253 BTC (16,883.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.94 % (-1,003.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 916.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01360197 BTC (7,905.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011316 BTC for 65.77 CZK @ 581,196 CZK\nFees are 0.23099415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (23.247839997266548346252943260 CZK)\nThe limits being 0.10 % (7.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02732253 BTC (16,883.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.94 % (-1,003.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 916.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01360197 BTC (7,905.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 256 transactions" + } + ] + }, + { + "id": 257, + "type": "message", + "date": "2023-09-04T02:29:04", + "date_unixtime": "1693787344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011310 BTC for 65.77 CZK @ 581,488 CZK\nFees are 0.23098766 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (23.259519998308308189242161718 CZK)\nThe limits being 0.10 % (7.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02743563 BTC (16,949.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.87 % (-995.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 850.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01371507 BTC (7,975.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011310 BTC for 65.77 CZK @ 581,488 CZK\nFees are 0.23098766 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (23.259519998308308189242161718 CZK)\nThe limits being 0.10 % (7.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02743563 BTC (16,949.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.87 % (-995.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 850.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01371507 BTC (7,975.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 257 transactions" + } + ] + }, + { + "id": 258, + "type": "message", + "date": "2023-09-04T14:29:05", + "date_unixtime": "1693830545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011357 BTC for 65.76 CZK @ 579,064 CZK\nFees are 0.23098066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (23.162559998357426387234360113 CZK)\nThe limits being 0.10 % (8.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02754920 BTC (17,015.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.24 % (-1,062.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 784.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01382864 BTC (8,007.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011357 BTC for 65.76 CZK @ 579,064 CZK\nFees are 0.23098066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (23.162559998357426387234360113 CZK)\nThe limits being 0.10 % (8.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02754920 BTC (17,015.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.24 % (-1,062.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 784.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01382864 BTC (8,007.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 258 transactions" + } + ] + }, + { + "id": 259, + "type": "message", + "date": "2023-09-05T02:29:05", + "date_unixtime": "1693873745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011372 BTC for 65.76 CZK @ 578,304 CZK\nFees are 0.23098218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (28.915199996459805383934982398 CZK)\nThe limits being 0.10 % (8.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02766292 BTC (17,081.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.34 % (-1,083.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 718.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01394236 BTC (8,062.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011372 BTC for 65.76 CZK @ 578,304 CZK\nFees are 0.23098218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (28.915199996459805383934982398 CZK)\nThe limits being 0.10 % (8.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02766292 BTC (17,081.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.34 % (-1,083.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 718.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01394236 BTC (8,062.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 259 transactions" + } + ] + }, + { + "id": 260, + "type": "message", + "date": "2023-09-05T14:29:03", + "date_unixtime": "1693916943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011327 BTC for 65.77 CZK @ 580,636 CZK\nFees are 0.23099590 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (34.838159995238700392186981831 CZK)\nThe limits being 0.10 % (8.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02777619 BTC (17,147.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.94 % (-1,019.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 652.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01405563 BTC (8,161.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011327 BTC for 65.77 CZK @ 580,636 CZK\nFees are 0.23099590 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (34.838159995238700392186981831 CZK)\nThe limits being 0.10 % (8.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02777619 BTC (17,147.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.94 % (-1,019.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 652.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01405563 BTC (8,161.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 260 transactions" + } + ] + }, + { + "id": 261, + "type": "message", + "date": "2023-09-06T02:29:03", + "date_unixtime": "1693960143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011248 BTC for 65.76 CZK @ 584,680 CZK\nFees are 0.23098244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (40.927599998511610501225795066 CZK)\nThe limits being 0.10 % (8.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02788867 BTC (17,213.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.27 % (-907.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 586.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01416811 BTC (8,283.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011248 BTC for 65.76 CZK @ 584,680 CZK\nFees are 0.23098244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (40.927599998511610501225795066 CZK)\nThe limits being 0.10 % (8.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02788867 BTC (17,213.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.27 % (-907.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 586.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01416811 BTC (8,283.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 261 transactions" + } + ] + }, + { + "id": 262, + "type": "message", + "date": "2023-09-06T14:29:04", + "date_unixtime": "1694003344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011245 BTC for 65.76 CZK @ 584,830 CZK\nFees are 0.23098008 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (35.089799996145106179062476530 CZK)\nThe limits being 0.10 % (8.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02800112 BTC (17,279.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.23 % (-903.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 520.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01428056 BTC (8,351.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011245 BTC for 65.76 CZK @ 584,830 CZK\nFees are 0.23098008 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (35.089799996145106179062476530 CZK)\nThe limits being 0.10 % (8.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02800112 BTC (17,279.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.23 % (-903.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 520.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01428056 BTC (8,351.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 262 transactions" + } + ] + }, + { + "id": 263, + "type": "message", + "date": "2023-09-07T02:29:04", + "date_unixtime": "1694046544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011204 BTC for 65.77 CZK @ 587,019 CZK\nFees are 0.23099931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (46.961519999530383393929885173 CZK)\nThe limits being 0.10 % (8.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02811316 BTC (17,345.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.86 % (-842.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 454.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01439260 BTC (8,448.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011204 BTC for 65.77 CZK @ 587,019 CZK\nFees are 0.23099931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (46.961519999530383393929885173 CZK)\nThe limits being 0.10 % (8.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02811316 BTC (17,345.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.86 % (-842.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 454.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01439260 BTC (8,448.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 263 transactions" + } + ] + }, + { + "id": 264, + "type": "message", + "date": "2023-09-07T14:29:04", + "date_unixtime": "1694089744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011141 BTC for 65.77 CZK @ 590,321 CZK\nFees are 0.23099247 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (41.322469994280408123671986035 CZK)\nThe limits being 0.10 % (8.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02822457 BTC (17,411.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.30 % (-749.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 388.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01450401 BTC (8,562.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011141 BTC for 65.77 CZK @ 590,321 CZK\nFees are 0.23099247 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (41.322469994280408123671986035 CZK)\nThe limits being 0.10 % (8.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02822457 BTC (17,411.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.30 % (-749.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 388.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01450401 BTC (8,562.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 264 transactions" + } + ] + }, + { + "id": 265, + "type": "message", + "date": "2023-09-08T02:29:03", + "date_unixtime": "1694132943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010962 BTC for 65.77 CZK @ 599,942 CZK\nFees are 0.23098538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (41.995939995456515223537541974 CZK)\nThe limits being 0.10 % (8.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02833419 BTC (17,477.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.74 % (-478.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 322.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01461363 BTC (8,767.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010962 BTC for 65.77 CZK @ 599,942 CZK\nFees are 0.23098538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (41.995939995456515223537541974 CZK)\nThe limits being 0.10 % (8.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02833419 BTC (17,477.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.74 % (-478.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 322.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01461363 BTC (8,767.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 265 transactions" + } + ] + }, + { + "id": 266, + "type": "message", + "date": "2023-09-08T14:29:06", + "date_unixtime": "1694176146", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011059 BTC for 65.77 CZK @ 594,711 CZK\nFees are 0.23099748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (47.576879997682404017442703138 CZK)\nThe limits being 0.10 % (8.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02844478 BTC (17,543.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.57 % (-626.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,256.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01472422 BTC (8,756.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011059 BTC for 65.77 CZK @ 594,711 CZK\nFees are 0.23099748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (47.576879997682404017442703138 CZK)\nThe limits being 0.10 % (8.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02844478 BTC (17,543.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.57 % (-626.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,256.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01472422 BTC (8,756.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 266 transactions" + } + ] + }, + { + "id": 267, + "type": "message", + "date": "2023-09-09T02:29:05", + "date_unixtime": "1694219345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011059 BTC for 65.77 CZK @ 594,710 CZK\nFees are 0.23099710 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (65.418099993904145870139924857 CZK)\nThe limits being 0.10 % (8.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02855537 BTC (17,609.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.56 % (-626.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,190.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01483481 BTC (8,822.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011059 BTC for 65.77 CZK @ 594,710 CZK\nFees are 0.23099710 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (65.418099993904145870139924857 CZK)\nThe limits being 0.10 % (8.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02855537 BTC (17,609.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.56 % (-626.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,190.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01483481 BTC (8,822.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 267 transactions" + } + ] + }, + { + "id": 268, + "type": "message", + "date": "2023-09-09T14:29:03", + "date_unixtime": "1694262543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011047 BTC for 65.77 CZK @ 595,342 CZK\nFees are 0.23099166 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (35.720519995891991860298496315 CZK)\nThe limits being 0.10 % (8.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02866584 BTC (17,675.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.45 % (-609.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,124.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01494528 BTC (8,897.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011047 BTC for 65.77 CZK @ 595,342 CZK\nFees are 0.23099166 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (35.720519995891991860298496315 CZK)\nThe limits being 0.10 % (8.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02866584 BTC (17,675.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.45 % (-609.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,124.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01494528 BTC (8,897.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 268 transactions" + } + ] + }, + { + "id": 269, + "type": "message", + "date": "2023-09-10T02:29:03", + "date_unixtime": "1694305743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011072 BTC for 65.77 CZK @ 594,007 CZK\nFees are 0.23099526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (35.640419998574353923118795199 CZK)\nThe limits being 0.10 % (8.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02877656 BTC (17,741.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.65 % (-647.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,058.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01505600 BTC (8,943.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011072 BTC for 65.77 CZK @ 594,007 CZK\nFees are 0.23099526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (35.640419998574353923118795199 CZK)\nThe limits being 0.10 % (8.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02877656 BTC (17,741.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.65 % (-647.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,058.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01505600 BTC (8,943.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 269 transactions" + } + ] + }, + { + "id": 270, + "type": "message", + "date": "2023-09-10T14:29:05", + "date_unixtime": "1694348945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011059 BTC for 65.77 CZK @ 594,677 CZK\nFees are 0.23098428 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (35.680619998375339985788955583 CZK)\nThe limits being 0.10 % (9.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02888715 BTC (17,807.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.53 % (-628.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 992.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01516659 BTC (9,019.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011059 BTC for 65.77 CZK @ 594,677 CZK\nFees are 0.23098428 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (35.680619998375339985788955583 CZK)\nThe limits being 0.10 % (9.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02888715 BTC (17,807.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.53 % (-628.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 992.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01516659 BTC (9,019.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 270 transactions" + } + ] + }, + { + "id": 271, + "type": "message", + "date": "2023-09-11T02:29:04", + "date_unixtime": "1694392144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011149 BTC for 65.77 CZK @ 589,885 CZK\nFees are 0.23098761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (35.393099997171081589358761958 CZK)\nThe limits being 0.10 % (9.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02899864 BTC (17,873.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.29 % (-767.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 926.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01527808 BTC (9,012.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011149 BTC for 65.77 CZK @ 589,885 CZK\nFees are 0.23098761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (35.393099997171081589358761958 CZK)\nThe limits being 0.10 % (9.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02899864 BTC (17,873.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.29 % (-767.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 926.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01527808 BTC (9,012.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 271 transactions" + } + ] + }, + { + "id": 272, + "type": "message", + "date": "2023-09-11T14:29:04", + "date_unixtime": "1694435344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011158 BTC for 65.77 CZK @ 589,432 CZK\nFees are 0.23099655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (35.365919995198736667585658477 CZK)\nThe limits being 0.10 % (9.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02911022 BTC (17,939.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.35 % (-780.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 860.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01538966 BTC (9,071.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011158 BTC for 65.77 CZK @ 589,432 CZK\nFees are 0.23099655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (35.365919995198736667585658477 CZK)\nThe limits being 0.10 % (9.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02911022 BTC (17,939.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.35 % (-780.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 860.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01538966 BTC (9,071.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 272 transactions" + } + ] + }, + { + "id": 273, + "type": "message", + "date": "2023-09-12T02:29:03", + "date_unixtime": "1694478543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011419 BTC for 65.77 CZK @ 575,937 CZK\nFees are 0.23098750 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (46.074959999228551719738424927 CZK)\nThe limits being 0.10 % (8.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02922441 BTC (18,005.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.52 % (-1,173.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 794.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01550385 BTC (8,929.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011419 BTC for 65.77 CZK @ 575,937 CZK\nFees are 0.23098750 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (46.074959999228551719738424927 CZK)\nThe limits being 0.10 % (8.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02922441 BTC (18,005.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.52 % (-1,173.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 794.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01550385 BTC (8,929.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 273 transactions" + } + ] + }, + { + "id": 274, + "type": "message", + "date": "2023-09-12T14:29:03", + "date_unixtime": "1694521743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010940 BTC for 65.77 CZK @ 601,145 CZK\nFees are 0.23098404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (36.068699999726733398370784521 CZK)\nThe limits being 0.10 % (9.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02933381 BTC (18,071.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.42 % (-437.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 728.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01561325 BTC (9,385.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010940 BTC for 65.77 CZK @ 601,145 CZK\nFees are 0.23098404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (36.068699999726733398370784521 CZK)\nThe limits being 0.10 % (9.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02933381 BTC (18,071.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.42 % (-437.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 728.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01561325 BTC (9,385.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 274 transactions" + } + ] + }, + { + "id": 275, + "type": "message", + "date": "2023-09-13T02:29:03", + "date_unixtime": "1694564943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011091 BTC for 65.77 CZK @ 592,991 CZK\nFees are 0.23099588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (59.299099998800519523296808479 CZK)\nThe limits being 0.10 % (9.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02944472 BTC (18,137.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.73 % (-676.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 662.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01572416 BTC (9,324.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011091 BTC for 65.77 CZK @ 592,991 CZK\nFees are 0.23099588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (59.299099998800519523296808479 CZK)\nThe limits being 0.10 % (9.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02944472 BTC (18,137.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.73 % (-676.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 662.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01572416 BTC (9,324.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 275 transactions" + } + ] + }, + { + "id": 276, + "type": "message", + "date": "2023-09-13T14:29:04", + "date_unixtime": "1694608144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010981 BTC for 65.77 CZK @ 598,941 CZK\nFees are 0.23099967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (29.947049995809675697031067886 CZK)\nThe limits being 0.10 % (9.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02955453 BTC (18,203.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.76 % (-501.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 596.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01583397 BTC (9,483.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010981 BTC for 65.77 CZK @ 598,941 CZK\nFees are 0.23099967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (29.947049995809675697031067886 CZK)\nThe limits being 0.10 % (9.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02955453 BTC (18,203.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.76 % (-501.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 596.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01583397 BTC (9,483.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 276 transactions" + } + ] + }, + { + "id": 277, + "type": "message", + "date": "2023-09-14T02:29:03", + "date_unixtime": "1694651343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010993 BTC for 65.77 CZK @ 598,283 CZK\nFees are 0.23099805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (29.914149997432347105335093206 CZK)\nThe limits being 0.10 % (9.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02966446 BTC (18,269.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.85 % (-521.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 530.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01594390 BTC (9,538.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010993 BTC for 65.77 CZK @ 598,283 CZK\nFees are 0.23099805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (29.914149997432347105335093206 CZK)\nThe limits being 0.10 % (9.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02966446 BTC (18,269.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.85 % (-521.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 530.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01594390 BTC (9,538.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 277 transactions" + } + ] + }, + { + "id": 278, + "type": "message", + "date": "2023-09-14T14:29:03", + "date_unixtime": "1694694543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010859 BTC for 65.77 CZK @ 605,647 CZK\nFees are 0.23099088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.282349996762872445749206445 CZK)\nThe limits being 0.10 % (9.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02977305 BTC (18,335.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.65 % (-303.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 464.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01605249 BTC (9,722.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010859 BTC for 65.77 CZK @ 605,647 CZK\nFees are 0.23099088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.282349996762872445749206445 CZK)\nThe limits being 0.10 % (9.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02977305 BTC (18,335.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.65 % (-303.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 464.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01605249 BTC (9,722.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 278 transactions" + } + ] + }, + { + "id": 279, + "type": "message", + "date": "2023-09-15T02:29:03", + "date_unixtime": "1694737743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010715 BTC for 65.77 CZK @ 613,770 CZK\nFees are 0.23098472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.688499998023715874513863168 CZK)\nThe limits being 0.10 % (9.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02988020 BTC (18,401.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.33 % (-61.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 398.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01615964 BTC (9,918.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010715 BTC for 65.77 CZK @ 613,770 CZK\nFees are 0.23098472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.688499998023715874513863168 CZK)\nThe limits being 0.10 % (9.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02988020 BTC (18,401.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.33 % (-61.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 398.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01615964 BTC (9,918.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 279 transactions" + } + ] + }, + { + "id": 280, + "type": "message", + "date": "2023-09-15T14:29:04", + "date_unixtime": "1694780944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010747 BTC for 65.77 CZK @ 611,981 CZK\nFees are 0.23099927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.599049998495541959334754154 CZK)\nThe limits being 0.10 % (9.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02998767 BTC (18,467.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.62 % (-115.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,332.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01626711 BTC (9,955.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010747 BTC for 65.77 CZK @ 611,981 CZK\nFees are 0.23099927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.599049998495541959334754154 CZK)\nThe limits being 0.10 % (9.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02998767 BTC (18,467.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.62 % (-115.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,332.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01626711 BTC (9,955.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 280 transactions" + } + ] + }, + { + "id": 281, + "type": "message", + "date": "2023-09-16T02:29:05", + "date_unixtime": "1694824145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010622 BTC for 65.77 CZK @ 619,176 CZK\nFees are 0.23099673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.958799999286999362145876740 CZK)\nThe limits being 0.10 % (10.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03009389 BTC (18,533.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.54 % (100.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,266.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01637333 BTC (10,137.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010622 BTC for 65.77 CZK @ 619,176 CZK\nFees are 0.23099673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (30.958799999286999362145876740 CZK)\nThe limits being 0.10 % (10.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03009389 BTC (18,533.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.54 % (100.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,266.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01637333 BTC (10,137.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 281 transactions" + } + ] + }, + { + "id": 282, + "type": "message", + "date": "2023-09-16T14:29:03", + "date_unixtime": "1694867343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010733 BTC for 65.77 CZK @ 612,748 CZK\nFees are 0.23098749 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (30.637400000027853690690614156 CZK)\nThe limits being 0.10 % (10.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03020122 BTC (18,599.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.50 % (-93.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,200.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01648066 BTC (10,098.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010733 BTC for 65.77 CZK @ 612,748 CZK\nFees are 0.23098749 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (30.637400000027853690690614156 CZK)\nThe limits being 0.10 % (10.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03020122 BTC (18,599.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.50 % (-93.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,200.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01648066 BTC (10,098.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 282 transactions" + } + ] + }, + { + "id": 283, + "type": "message", + "date": "2023-09-17T02:29:03", + "date_unixtime": "1694910543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010740 BTC for 65.77 CZK @ 612,359 CZK\nFees are 0.23099140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (36.741539995490643084400130270 CZK)\nThe limits being 0.10 % (10.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03030862 BTC (18,665.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.56 % (-105.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,134.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01658806 BTC (10,157.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010740 BTC for 65.77 CZK @ 612,359 CZK\nFees are 0.23099140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (36.741539995490643084400130270 CZK)\nThe limits being 0.10 % (10.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03030862 BTC (18,665.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.56 % (-105.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,134.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01658806 BTC (10,157.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 283 transactions" + } + ] + }, + { + "id": 284, + "type": "message", + "date": "2023-09-17T14:29:04", + "date_unixtime": "1694953744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010715 BTC for 65.77 CZK @ 613,807 CZK\nFees are 0.23099865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (36.828419999902348313799508533 CZK)\nThe limits being 0.10 % (10.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03041577 BTC (18,731.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.33 % (-61.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,068.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01669521 BTC (10,247.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010715 BTC for 65.77 CZK @ 613,807 CZK\nFees are 0.23099865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (36.828419999902348313799508533 CZK)\nThe limits being 0.10 % (10.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03041577 BTC (18,731.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.33 % (-61.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,068.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01669521 BTC (10,247.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 284 transactions" + } + ] + }, + { + "id": 285, + "type": "message", + "date": "2023-09-18T02:29:03", + "date_unixtime": "1694996943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010749 BTC for 65.76 CZK @ 611,814 CZK\nFees are 0.23097921 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (42.826979997397702329686825481 CZK)\nThe limits being 0.10 % (10.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03052326 BTC (18,797.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.65 % (-122.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,002.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01680270 BTC (10,280.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010749 BTC for 65.76 CZK @ 611,814 CZK\nFees are 0.23097921 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (42.826979997397702329686825481 CZK)\nThe limits being 0.10 % (10.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03052326 BTC (18,797.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.65 % (-122.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,002.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01680270 BTC (10,280.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 285 transactions" + } + ] + }, + { + "id": 286, + "type": "message", + "date": "2023-09-18T14:29:03", + "date_unixtime": "1695040143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010540 BTC for 65.77 CZK @ 624,000 CZK\nFees are 0.23099928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (56.16000 CZK)\nThe limits being 0.10 % (10.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03062866 BTC (18,863.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.32 % (249.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 936.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01690810 BTC (10,550.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010540 BTC for 65.77 CZK @ 624,000 CZK\nFees are 0.23099928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (56.16000 CZK)\nThe limits being 0.10 % (10.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03062866 BTC (18,863.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.32 % (249.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 936.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01690810 BTC (10,550.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 286 transactions" + } + ] + }, + { + "id": 287, + "type": "message", + "date": "2023-09-19T02:29:04", + "date_unixtime": "1695083344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010776 BTC for 65.76 CZK @ 610,285 CZK\nFees are 0.23098070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (79.33704999927869383660528906 CZK)\nThe limits being 0.10 % (10.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03073642 BTC (18,929.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.90 % (-171.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 870.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01701586 BTC (10,384.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.95 CZK over 287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010776 BTC for 65.76 CZK @ 610,285 CZK\nFees are 0.23098070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (79.33704999927869383660528906 CZK)\nThe limits being 0.10 % (10.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03073642 BTC (18,929.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.90 % (-171.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 870.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01701586 BTC (10,384.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.95 CZK over 287 transactions" + } + ] + }, + { + "id": 288, + "type": "message", + "date": "2023-09-19T14:29:03", + "date_unixtime": "1695126543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010557 BTC for 65.76 CZK @ 622,948 CZK\nFees are 0.23098179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (56.065319998929577680165456707 CZK)\nThe limits being 0.10 % (10.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03084199 BTC (18,995.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.15 % (217.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 804.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01712143 BTC (10,665.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010557 BTC for 65.76 CZK @ 622,948 CZK\nFees are 0.23098179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (56.065319998929577680165456707 CZK)\nThe limits being 0.10 % (10.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03084199 BTC (18,995.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.15 % (217.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 804.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01712143 BTC (10,665.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 288 transactions" + } + ] + }, + { + "id": 289, + "type": "message", + "date": "2023-09-20T02:29:04", + "date_unixtime": "1695169744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010539 BTC for 65.76 CZK @ 624,007 CZK\nFees are 0.23097995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (81.12090999747397062175355229 CZK)\nThe limits being 0.10 % (10.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03094738 BTC (19,061.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.31 % (250.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 738.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01722682 BTC (10,749.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010539 BTC for 65.76 CZK @ 624,007 CZK\nFees are 0.23097995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (81.12090999747397062175355229 CZK)\nThe limits being 0.10 % (10.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03094738 BTC (19,061.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.31 % (250.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 738.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01722682 BTC (10,749.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 289 transactions" + } + ] + }, + { + "id": 290, + "type": "message", + "date": "2023-09-20T14:29:04", + "date_unixtime": "1695212944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010621 BTC for 65.77 CZK @ 619,205 CZK\nFees are 0.23098582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (49.536404675716716377341764984 CZK)\nThe limits being 0.10 % (10.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03105359 BTC (19,127.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.53 % (101.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 672.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01733303 BTC (10,732.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010621 BTC for 65.77 CZK @ 619,205 CZK\nFees are 0.23098582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (49.536404675716716377341764984 CZK)\nThe limits being 0.10 % (10.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03105359 BTC (19,127.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.53 % (101.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 672.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01733303 BTC (10,732.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 290 transactions" + } + ] + }, + { + "id": 291, + "type": "message", + "date": "2023-09-21T02:29:04", + "date_unixtime": "1695256144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010570 BTC for 65.77 CZK @ 622,195 CZK\nFees are 0.23098667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (80.88534999969359842255040188 CZK)\nThe limits being 0.10 % (10.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03115929 BTC (19,193.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.01 % (194.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 606.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01743873 BTC (10,850.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010570 BTC for 65.77 CZK @ 622,195 CZK\nFees are 0.23098667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (80.88534999969359842255040188 CZK)\nThe limits being 0.10 % (10.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03115929 BTC (19,193.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.01 % (194.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 606.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01743873 BTC (10,850.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 291 transactions" + } + ] + }, + { + "id": 292, + "type": "message", + "date": "2023-09-21T14:29:03", + "date_unixtime": "1695299343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010699 BTC for 65.77 CZK @ 614,696 CZK\nFees are 0.23098778 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (79.91047999074926699443805732 CZK)\nThe limits being 0.10 % (10.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03126628 BTC (19,259.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.21 % (-39.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 540.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01754572 BTC (10,785.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010699 BTC for 65.77 CZK @ 614,696 CZK\nFees are 0.23098778 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (79.91047999074926699443805732 CZK)\nThe limits being 0.10 % (10.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03126628 BTC (19,259.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.21 % (-39.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 540.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01754572 BTC (10,785.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 292 transactions" + } + ] + }, + { + "id": 293, + "type": "message", + "date": "2023-09-22T02:29:04", + "date_unixtime": "1695342544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010796 BTC for 65.76 CZK @ 609,149 CZK\nFees are 0.23097865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (115.73830999800069892464185650 CZK)\nThe limits being 0.10 % (10.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03137424 BTC (19,325.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.10 % (-213.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 474.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01765368 BTC (10,753.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010796 BTC for 65.76 CZK @ 609,149 CZK\nFees are 0.23097865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (115.73830999800069892464185650 CZK)\nThe limits being 0.10 % (10.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03137424 BTC (19,325.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.10 % (-213.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 474.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01765368 BTC (10,753.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 293 transactions" + } + ] + }, + { + "id": 294, + "type": "message", + "date": "2023-09-22T14:29:03", + "date_unixtime": "1695385743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010752 BTC for 65.77 CZK @ 611,674 CZK\nFees are 0.23099081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (79.51761998833695162170498493 CZK)\nThe limits being 0.10 % (10.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03148176 BTC (19,391.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.69 % (-134.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 408.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01776120 BTC (10,864.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010752 BTC for 65.77 CZK @ 611,674 CZK\nFees are 0.23099081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (79.51761998833695162170498493 CZK)\nThe limits being 0.10 % (10.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03148176 BTC (19,391.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.69 % (-134.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 408.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01776120 BTC (10,864.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 294 transactions" + } + ] + }, + { + "id": 295, + "type": "message", + "date": "2023-09-23T02:29:03", + "date_unixtime": "1695428943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010743 BTC for 65.77 CZK @ 612,173 CZK\nFees are 0.23098574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (128.55632998273148142350697440 CZK)\nThe limits being 0.10 % (10.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03158919 BTC (19,457.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.61 % (-118.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 343.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01786863 BTC (10,938.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010743 BTC for 65.77 CZK @ 612,173 CZK\nFees are 0.23098574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (128.55632998273148142350697440 CZK)\nThe limits being 0.10 % (10.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03158919 BTC (19,457.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.61 % (-118.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 343.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01786863 BTC (10,938.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 295 transactions" + } + ] + }, + { + "id": 296, + "type": "message", + "date": "2023-09-23T14:29:04", + "date_unixtime": "1695472144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010749 BTC for 65.77 CZK @ 611,828 CZK\nFees are 0.23098450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (79.53763999877069942613634862 CZK)\nThe limits being 0.10 % (11.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03169668 BTC (19,523.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.67 % (-130.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 277.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01797612 BTC (10,998.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010749 BTC for 65.77 CZK @ 611,828 CZK\nFees are 0.23098450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (79.53763999877069942613634862 CZK)\nThe limits being 0.10 % (11.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03169668 BTC (19,523.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.67 % (-130.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 277.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01797612 BTC (10,998.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 296 transactions" + } + ] + }, + { + "id": 297, + "type": "message", + "date": "2023-09-24T02:29:07", + "date_unixtime": "1695515347", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010744 BTC for 65.76 CZK @ 612,105 CZK\nFees are 0.23098158 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (116.29994999259850389608076869 CZK)\nThe limits being 0.10 % (11.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03180412 BTC (19,589.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.62 % (-121.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 211.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01808356 BTC (11,069.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010744 BTC for 65.76 CZK @ 612,105 CZK\nFees are 0.23098158 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (116.29994999259850389608076869 CZK)\nThe limits being 0.10 % (11.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03180412 BTC (19,589.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.62 % (-121.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 211.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01808356 BTC (11,069.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 297 transactions" + } + ] + }, + { + "id": 298, + "type": "message", + "date": "2023-09-24T14:29:05", + "date_unixtime": "1695558545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010732 BTC for 65.77 CZK @ 612,803 CZK\nFees are 0.23098670 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (73.536359996813240872748585320 CZK)\nThe limits being 0.10 % (11.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03191144 BTC (19,655.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.51 % (-99.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 145.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01819088 BTC (11,147.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010732 BTC for 65.77 CZK @ 612,803 CZK\nFees are 0.23098670 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (73.536359996813240872748585320 CZK)\nThe limits being 0.10 % (11.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03191144 BTC (19,655.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.51 % (-99.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 145.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01819088 BTC (11,147.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 298 transactions" + } + ] + }, + { + "id": 299, + "type": "message", + "date": "2023-09-25T02:29:03", + "date_unixtime": "1695601743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010919 BTC for 65.77 CZK @ 602,330 CZK\nFees are 0.23099511 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (60.232999995938749590281436896 CZK)\nThe limits being 0.10 % (11.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03202063 BTC (19,721.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.20 % (-434.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 79.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01830007 BTC (11,022.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010919 BTC for 65.77 CZK @ 602,330 CZK\nFees are 0.23099511 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (60.232999995938749590281436896 CZK)\nThe limits being 0.10 % (11.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03202063 BTC (19,721.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.20 % (-434.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 79.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01830007 BTC (11,022.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 299 transactions" + } + ] + }, + { + "id": 300, + "type": "message", + "date": "2023-09-25T14:29:04", + "date_unixtime": "1695644944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010977 BTC for 65.76 CZK @ 599,110 CZK\nFees are 0.23098068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (53.919899994730114454560718273 CZK)\nThe limits being 0.10 % (11.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03213040 BTC (19,786.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.72 % (-537.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,013.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01840984 BTC (11,029.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010977 BTC for 65.76 CZK @ 599,110 CZK\nFees are 0.23098068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (53.919899994730114454560718273 CZK)\nThe limits being 0.10 % (11.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03213040 BTC (19,786.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.72 % (-537.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,013.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01840984 BTC (11,029.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 300 transactions" + } + ] + }, + { + "id": 301, + "type": "message", + "date": "2023-09-26T02:29:04", + "date_unixtime": "1695688144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010795 BTC for 65.77 CZK @ 609,225 CZK\nFees are 0.23098607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (42.645749996365199799774434685 CZK)\nThe limits being 0.10 % (11.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03223835 BTC (19,852.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.07 % (-212.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 947.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01851779 BTC (11,281.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010795 BTC for 65.77 CZK @ 609,225 CZK\nFees are 0.23098607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (42.645749996365199799774434685 CZK)\nThe limits being 0.10 % (11.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03223835 BTC (19,852.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.07 % (-212.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 947.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01851779 BTC (11,281.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 301 transactions" + } + ] + }, + { + "id": 302, + "type": "message", + "date": "2023-09-26T14:29:03", + "date_unixtime": "1695731343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010883 BTC for 65.77 CZK @ 604,328 CZK\nFees are 0.23099723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (36.259679996242133512216568483 CZK)\nThe limits being 0.10 % (11.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03234718 BTC (19,918.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.86 % (-370.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 881.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01862662 BTC (11,256.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010883 BTC for 65.77 CZK @ 604,328 CZK\nFees are 0.23099723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (36.259679996242133512216568483 CZK)\nThe limits being 0.10 % (11.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03234718 BTC (19,918.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.86 % (-370.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 881.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01862662 BTC (11,256.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 302 transactions" + } + ] + }, + { + "id": 303, + "type": "message", + "date": "2023-09-27T02:29:05", + "date_unixtime": "1695774545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010842 BTC for 65.76 CZK @ 606,575 CZK\nFees are 0.23098263 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (36.394499997104765308139828255 CZK)\nThe limits being 0.10 % (11.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03245560 BTC (19,984.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.49 % (-298.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 815.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01873504 BTC (11,364.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010842 BTC for 65.76 CZK @ 606,575 CZK\nFees are 0.23098263 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (36.394499997104765308139828255 CZK)\nThe limits being 0.10 % (11.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03245560 BTC (19,984.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.49 % (-298.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 815.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01873504 BTC (11,364.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 303 transactions" + } + ] + }, + { + "id": 304, + "type": "message", + "date": "2023-09-27T14:29:04", + "date_unixtime": "1695817744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010579 BTC for 65.77 CZK @ 621,687 CZK\nFees are 0.23099460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (24.867479997341754940042774008 CZK)\nThe limits being 0.10 % (11.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03256139 BTC (20,050.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.96 % (192.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 749.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01884083 BTC (11,713.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010579 BTC for 65.77 CZK @ 621,687 CZK\nFees are 0.23099460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (24.867479997341754940042774008 CZK)\nThe limits being 0.10 % (11.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03256139 BTC (20,050.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.96 % (192.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 749.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01884083 BTC (11,713.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 304 transactions" + } + ] + }, + { + "id": 305, + "type": "message", + "date": "2023-09-28T02:29:03", + "date_unixtime": "1695860943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010700 BTC for 65.77 CZK @ 614,670 CZK\nFees are 0.23099959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (92.20049999301510135087939874 CZK)\nThe limits being 0.10 % (11.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03266839 BTC (20,116.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.18 % (-36.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 683.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01894783 BTC (11,646.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010700 BTC for 65.77 CZK @ 614,670 CZK\nFees are 0.23099959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (92.20049999301510135087939874 CZK)\nThe limits being 0.10 % (11.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03266839 BTC (20,116.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.18 % (-36.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 683.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01894783 BTC (11,646.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 305 transactions" + } + ] + }, + { + "id": 306, + "type": "message", + "date": "2023-09-28T14:29:03", + "date_unixtime": "1695904143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010662 BTC for 65.77 CZK @ 616,856 CZK\nFees are 0.23099783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (24.674239998684028148712670164 CZK)\nThe limits being 0.10 % (11.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03277501 BTC (20,182.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.17 % (34.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 617.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01905445 BTC (11,753.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010662 BTC for 65.77 CZK @ 616,856 CZK\nFees are 0.23099783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (24.674239998684028148712670164 CZK)\nThe limits being 0.10 % (11.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03277501 BTC (20,182.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.17 % (34.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 617.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01905445 BTC (11,753.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 306 transactions" + } + ] + }, + { + "id": 307, + "type": "message", + "date": "2023-09-29T02:29:03", + "date_unixtime": "1695947343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010535 BTC for 65.77 CZK @ 624,282 CZK\nFees are 0.23099404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (81.15665999944664485879866599 CZK)\nThe limits being 0.10 % (11.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03288036 BTC (20,248.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.37 % (277.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 551.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01915980 BTC (11,961.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010535 BTC for 65.77 CZK @ 624,282 CZK\nFees are 0.23099404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (81.15665999944664485879866599 CZK)\nThe limits being 0.10 % (11.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03288036 BTC (20,248.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.37 % (277.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 551.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01915980 BTC (11,961.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 307 transactions" + } + ] + }, + { + "id": 308, + "type": "message", + "date": "2023-09-29T14:29:05", + "date_unixtime": "1695990545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010629 BTC for 65.77 CZK @ 618,752 CZK\nFees are 0.23099067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (37.125119997029870474507724235 CZK)\nThe limits being 0.10 % (11.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03298665 BTC (20,314.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 618,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.47 % (95.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 485.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01926609 BTC (11,920.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010629 BTC for 65.77 CZK @ 618,752 CZK\nFees are 0.23099067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (37.125119997029870474507724235 CZK)\nThe limits being 0.10 % (11.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03298665 BTC (20,314.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 618,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.47 % (95.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 485.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01926609 BTC (11,920.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 308 transactions" + } + ] + }, + { + "id": 309, + "type": "message", + "date": "2023-09-30T02:29:04", + "date_unixtime": "1696033744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010579 BTC for 65.77 CZK @ 621,687 CZK\nFees are 0.23099460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.77 % (93.25304999003158102516040253 CZK)\nThe limits being 0.10 % (12.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03309244 BTC (20,380.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.94 % (192.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 419.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01937188 BTC (12,043.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010579 BTC for 65.77 CZK @ 621,687 CZK\nFees are 0.23099460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.77 % (93.25304999003158102516040253 CZK)\nThe limits being 0.10 % (12.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03309244 BTC (20,380.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.94 % (192.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 419.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01937188 BTC (12,043.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 309 transactions" + } + ] + }, + { + "id": 310, + "type": "message", + "date": "2023-09-30T14:29:03", + "date_unixtime": "1696076943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010547 BTC for 65.76 CZK @ 623,532 CZK\nFees are 0.23097933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (12.470639999973544759833424580 CZK)\nThe limits being 0.10 % (12.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03319791 BTC (20,446.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.24 % (252.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 353.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01947735 BTC (12,144.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010547 BTC for 65.76 CZK @ 623,532 CZK\nFees are 0.23097933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (12.470639999973544759833424580 CZK)\nThe limits being 0.10 % (12.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03319791 BTC (20,446.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.24 % (252.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 353.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01947735 BTC (12,144.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 310 transactions" + } + ] + }, + { + "id": 311, + "type": "message", + "date": "2023-10-01T02:29:04", + "date_unixtime": "1696120144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010543 BTC for 65.76 CZK @ 623,766 CZK\nFees are 0.23097838 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (18.712979999197534986269483347 CZK)\nThe limits being 0.10 % (12.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03330334 BTC (20,512.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.27 % (260.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 287.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01958278 BTC (12,215.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010543 BTC for 65.76 CZK @ 623,766 CZK\nFees are 0.23097838 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (18.712979999197534986269483347 CZK)\nThe limits being 0.10 % (12.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03330334 BTC (20,512.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.27 % (260.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 287.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01958278 BTC (12,215.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 311 transactions" + } + ] + }, + { + "id": 312, + "type": "message", + "date": "2023-10-01T14:29:03", + "date_unixtime": "1696163343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010463 BTC for 65.77 CZK @ 628,592 CZK\nFees are 0.23099921 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (12.571839999359976867735362435 CZK)\nThe limits being 0.10 % (12.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03340797 BTC (20,578.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.05 % (421.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 221.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01968741 BTC (12,375.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010463 BTC for 65.77 CZK @ 628,592 CZK\nFees are 0.23099921 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (12.571839999359976867735362435 CZK)\nThe limits being 0.10 % (12.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03340797 BTC (20,578.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.05 % (421.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 221.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01968741 BTC (12,375.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 312 transactions" + } + ] + }, + { + "id": 313, + "type": "message", + "date": "2023-10-02T02:29:04", + "date_unixtime": "1696206544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010178 BTC for 65.76 CZK @ 646,137 CZK\nFees are 0.23097899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (25.845479998625365357620895152 CZK)\nThe limits being 0.10 % (12.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03350975 BTC (20,644.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.88 % (1,006.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 155.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01978919 BTC (12,786.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010178 BTC for 65.76 CZK @ 646,137 CZK\nFees are 0.23097899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (25.845479998625365357620895152 CZK)\nThe limits being 0.10 % (12.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03350975 BTC (20,644.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.88 % (1,006.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 155.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01978919 BTC (12,786.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 313 transactions" + } + ] + }, + { + "id": 314, + "type": "message", + "date": "2023-10-02T14:29:04", + "date_unixtime": "1696249744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010056 BTC for 65.77 CZK @ 654,000 CZK\nFees are 0.23098748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (13.08000 CZK)\nThe limits being 0.10 % (13.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03361031 BTC (20,710.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.13 % (1,270.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 89.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01988975 BTC (13,007.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010056 BTC for 65.77 CZK @ 654,000 CZK\nFees are 0.23098748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (13.08000 CZK)\nThe limits being 0.10 % (13.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03361031 BTC (20,710.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.13 % (1,270.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 89.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01988975 BTC (13,007.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 314 transactions" + } + ] + }, + { + "id": 315, + "type": "message", + "date": "2023-10-03T02:29:03", + "date_unixtime": "1696292943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010296 BTC for 65.76 CZK @ 638,737 CZK\nFees are 0.23098088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (95.81054999227644967555281457 CZK)\nThe limits being 0.10 % (12.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03371327 BTC (20,776.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.64 % (756.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01999271 BTC (12,770.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010296 BTC for 65.76 CZK @ 638,737 CZK\nFees are 0.23098088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (95.81054999227644967555281457 CZK)\nThe limits being 0.10 % (12.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03371327 BTC (20,776.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.64 % (756.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01999271 BTC (12,770.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 315 transactions" + } + ] + }, + { + "id": 316, + "type": "message", + "date": "2023-10-03T14:29:04", + "date_unixtime": "1696336144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010251 BTC for 65.77 CZK @ 641,576 CZK\nFees are 0.23099350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (19.247279998495170327908509856 CZK)\nThe limits being 0.10 % (12.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03381578 BTC (20,842.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.09 % (852.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 957.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02009522 BTC (12,892.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010251 BTC for 65.77 CZK @ 641,576 CZK\nFees are 0.23099350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (19.247279998495170327908509856 CZK)\nThe limits being 0.10 % (12.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03381578 BTC (20,842.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.09 % (852.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 957.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02009522 BTC (12,892.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 316 transactions" + } + ] + }, + { + "id": 317, + "type": "message", + "date": "2023-10-04T02:29:03", + "date_unixtime": "1696379343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010289 BTC for 65.76 CZK @ 639,174 CZK\nFees are 0.23098176 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (89.48435999320678722730720445 CZK)\nThe limits being 0.10 % (12.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03391867 BTC (20,908.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.69 % (770.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 891.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02019811 BTC (12,910.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010289 BTC for 65.76 CZK @ 639,174 CZK\nFees are 0.23098176 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (89.48435999320678722730720445 CZK)\nThe limits being 0.10 % (12.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03391867 BTC (20,908.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.69 % (770.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 891.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02019811 BTC (12,910.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 317 transactions" + } + ] + }, + { + "id": 318, + "type": "message", + "date": "2023-10-04T14:29:05", + "date_unixtime": "1696422545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010244 BTC for 65.77 CZK @ 642,000 CZK\nFees are 0.23098832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (19.26000 CZK)\nThe limits being 0.10 % (13.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03402111 BTC (20,974.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.13 % (866.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 825.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02030055 BTC (13,032.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010244 BTC for 65.77 CZK @ 642,000 CZK\nFees are 0.23098832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (19.26000 CZK)\nThe limits being 0.10 % (13.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03402111 BTC (20,974.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.13 % (866.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 825.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02030055 BTC (13,032.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 318 transactions" + } + ] + }, + { + "id": 319, + "type": "message", + "date": "2023-10-05T02:29:04", + "date_unixtime": "1696465744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010206 BTC for 65.76 CZK @ 644,372 CZK\nFees are 0.23098174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (83.76835999730904600896665707 CZK)\nThe limits being 0.10 % (13.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03412317 BTC (21,040.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.50 % (947.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 759.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02040261 BTC (13,146.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010206 BTC for 65.76 CZK @ 644,372 CZK\nFees are 0.23098174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (83.76835999730904600896665707 CZK)\nThe limits being 0.10 % (13.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03412317 BTC (21,040.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.50 % (947.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 759.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02040261 BTC (13,146.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 319 transactions" + } + ] + }, + { + "id": 320, + "type": "message", + "date": "2023-10-05T14:29:03", + "date_unixtime": "1696508943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010231 BTC for 65.77 CZK @ 642,803 CZK\nFees are 0.23098374 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (38.568179998682161063002197810 CZK)\nThe limits being 0.10 % (13.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03422548 BTC (21,106.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.23 % (893.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 693.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02050492 BTC (13,180.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010231 BTC for 65.77 CZK @ 642,803 CZK\nFees are 0.23098374 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (38.568179998682161063002197810 CZK)\nThe limits being 0.10 % (13.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03422548 BTC (21,106.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.23 % (893.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 693.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02050492 BTC (13,180.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 320 transactions" + } + ] + }, + { + "id": 321, + "type": "message", + "date": "2023-10-06T02:29:03", + "date_unixtime": "1696552143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010351 BTC for 65.76 CZK @ 635,341 CZK\nFees are 0.23098012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (50.827279996776811061776488310 CZK)\nThe limits being 0.10 % (13.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03432899 BTC (21,172.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.01 % (637.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 627.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02060843 BTC (13,093.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010351 BTC for 65.76 CZK @ 635,341 CZK\nFees are 0.23098012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (50.827279996776811061776488310 CZK)\nThe limits being 0.10 % (13.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03432899 BTC (21,172.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.01 % (637.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 627.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02060843 BTC (13,093.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 321 transactions" + } + ] + }, + { + "id": 322, + "type": "message", + "date": "2023-10-06T14:29:03", + "date_unixtime": "1696595343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010273 BTC for 65.77 CZK @ 640,198 CZK\nFees are 0.23099204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (140.84355999596661368845757458 CZK)\nThe limits being 0.10 % (13.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03443172 BTC (21,238.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.79 % (804.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 561.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02071116 BTC (13,259.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010273 BTC for 65.77 CZK @ 640,198 CZK\nFees are 0.23099204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (140.84355999596661368845757458 CZK)\nThe limits being 0.10 % (13.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03443172 BTC (21,238.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.79 % (804.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 561.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02071116 BTC (13,259.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 322 transactions" + } + ] + }, + { + "id": 323, + "type": "message", + "date": "2023-10-07T02:29:04", + "date_unixtime": "1696638544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010209 BTC for 65.77 CZK @ 644,215 CZK\nFees are 0.23099334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (64.421499997340096224093330313 CZK)\nThe limits being 0.10 % (13.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03453381 BTC (21,304.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.42 % (942.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 495.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02081325 BTC (13,408.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010209 BTC for 65.77 CZK @ 644,215 CZK\nFees are 0.23099334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (64.421499997340096224093330313 CZK)\nThe limits being 0.10 % (13.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03453381 BTC (21,304.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.42 % (942.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 495.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02081325 BTC (13,408.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 323 transactions" + } + ] + }, + { + "id": 324, + "type": "message", + "date": "2023-10-07T14:29:04", + "date_unixtime": "1696681744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010190 BTC for 65.77 CZK @ 645,429 CZK\nFees are 0.23099793 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (161.35724999303223800114711366 CZK)\nThe limits being 0.10 % (13.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03463571 BTC (21,370.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.60 % (983.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 429.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02091515 BTC (13,499.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010190 BTC for 65.77 CZK @ 645,429 CZK\nFees are 0.23099793 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (161.35724999303223800114711366 CZK)\nThe limits being 0.10 % (13.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03463571 BTC (21,370.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.60 % (983.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 429.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02091515 BTC (13,499.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 324 transactions" + } + ] + }, + { + "id": 325, + "type": "message", + "date": "2023-10-08T02:29:03", + "date_unixtime": "1696724943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010192 BTC for 65.77 CZK @ 645,282 CZK\nFees are 0.23099064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (6.4528199995072192381609421968 CZK)\nThe limits being 0.10 % (13.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03473763 BTC (21,436.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.57 % (978.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 363.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02101707 BTC (13,561.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010192 BTC for 65.77 CZK @ 645,282 CZK\nFees are 0.23099064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (6.4528199995072192381609421968 CZK)\nThe limits being 0.10 % (13.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03473763 BTC (21,436.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.57 % (978.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 363.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02101707 BTC (13,561.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 325 transactions" + } + ] + }, + { + "id": 326, + "type": "message", + "date": "2023-10-08T14:29:03", + "date_unixtime": "1696768143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010245 BTC for 65.76 CZK @ 641,915 CZK\nFees are 0.23098028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.838299999781146660188607808 CZK)\nThe limits being 0.10 % (13.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03484008 BTC (21,502.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.01 % (861.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 297.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02111952 BTC (13,556.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010245 BTC for 65.76 CZK @ 641,915 CZK\nFees are 0.23098028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.838299999781146660188607808 CZK)\nThe limits being 0.10 % (13.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03484008 BTC (21,502.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.01 % (861.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 297.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02111952 BTC (13,556.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 326 transactions" + } + ] + }, + { + "id": 327, + "type": "message", + "date": "2023-10-09T02:29:03", + "date_unixtime": "1696811343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010226 BTC for 65.77 CZK @ 643,160 CZK\nFees are 0.23099907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (6.4315999994542862936888892008 CZK)\nThe limits being 0.10 % (13.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03494234 BTC (21,568.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.19 % (904.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 231.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02122178 BTC (13,649.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010226 BTC for 65.77 CZK @ 643,160 CZK\nFees are 0.23099907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (6.4315999994542862936888892008 CZK)\nThe limits being 0.10 % (13.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03494234 BTC (21,568.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.19 % (904.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 231.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02122178 BTC (13,649.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 327 transactions" + } + ] + }, + { + "id": 328, + "type": "message", + "date": "2023-10-09T14:29:04", + "date_unixtime": "1696854544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010324 BTC for 65.77 CZK @ 637,030 CZK\nFees are 0.23099007 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.740599999961390460779754393 CZK)\nThe limits being 0.10 % (13.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03504558 BTC (21,634.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.19 % (690.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 165.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02132502 BTC (13,584.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010324 BTC for 65.77 CZK @ 637,030 CZK\nFees are 0.23099007 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.740599999961390460779754393 CZK)\nThe limits being 0.10 % (13.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03504558 BTC (21,634.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.19 % (690.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 165.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02132502 BTC (13,584.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 328 transactions" + } + ] + }, + { + "id": 329, + "type": "message", + "date": "2023-10-10T02:29:03", + "date_unixtime": "1696897743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010330 BTC for 65.77 CZK @ 636,649 CZK\nFees are 0.23098608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (50.931919995408133488260594213 CZK)\nThe limits being 0.10 % (13.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03514888 BTC (21,700.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.12 % (676.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 99.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02142832 BTC (13,642.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010330 BTC for 65.77 CZK @ 636,649 CZK\nFees are 0.23098608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (50.931919995408133488260594213 CZK)\nThe limits being 0.10 % (13.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03514888 BTC (21,700.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.12 % (676.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 99.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02142832 BTC (13,642.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 329 transactions" + } + ] + }, + { + "id": 330, + "type": "message", + "date": "2023-10-10T14:29:03", + "date_unixtime": "1696940943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010333 BTC for 65.77 CZK @ 636,495 CZK\nFees are 0.23099727 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (6.364949999110343064733608505 CZK)\nThe limits being 0.10 % (13.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03525221 BTC (21,766.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.08 % (670.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,033.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02153165 BTC (13,704.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010333 BTC for 65.77 CZK @ 636,495 CZK\nFees are 0.23099727 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (6.364949999110343064733608505 CZK)\nThe limits being 0.10 % (13.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03525221 BTC (21,766.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.08 % (670.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,033.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02153165 BTC (13,704.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 330 transactions" + } + ] + }, + { + "id": 331, + "type": "message", + "date": "2023-10-11T02:29:04", + "date_unixtime": "1696984144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010391 BTC for 65.76 CZK @ 632,893 CZK\nFees are 0.23097930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.657859999864778922889317664 CZK)\nThe limits being 0.10 % (13.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03535612 BTC (21,832.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 632,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.49 % (543.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 967.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02163556 BTC (13,692.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010391 BTC for 65.76 CZK @ 632,893 CZK\nFees are 0.23097930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.657859999864778922889317664 CZK)\nThe limits being 0.10 % (13.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03535612 BTC (21,832.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 632,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.49 % (543.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 967.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02163556 BTC (13,692.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 331 transactions" + } + ] + }, + { + "id": 332, + "type": "message", + "date": "2023-10-11T14:29:03", + "date_unixtime": "1697027343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010461 BTC for 65.76 CZK @ 628,666 CZK\nFees are 0.23098224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (25.146639997748059594687878345 CZK)\nThe limits being 0.10 % (13.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03546073 BTC (21,898.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.80 % (394.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 901.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02174017 BTC (13,667.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010461 BTC for 65.76 CZK @ 628,666 CZK\nFees are 0.23098224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (25.146639997748059594687878345 CZK)\nThe limits being 0.10 % (13.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03546073 BTC (21,898.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.80 % (394.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 901.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02174017 BTC (13,667.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 332 transactions" + } + ] + }, + { + "id": 333, + "type": "message", + "date": "2023-10-12T02:29:03", + "date_unixtime": "1697070543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010611 BTC for 65.77 CZK @ 619,806 CZK\nFees are 0.23099230 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (43.386419999138816610997311878 CZK)\nThe limits being 0.10 % (13.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03556684 BTC (21,964.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.36 % (79.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 835.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02184628 BTC (13,540.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010611 BTC for 65.77 CZK @ 619,806 CZK\nFees are 0.23099230 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (43.386419999138816610997311878 CZK)\nThe limits being 0.10 % (13.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03556684 BTC (21,964.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.36 % (79.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 835.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02184628 BTC (13,540.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 333 transactions" + } + ] + }, + { + "id": 334, + "type": "message", + "date": "2023-10-12T14:29:03", + "date_unixtime": "1697113743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010601 BTC for 65.77 CZK @ 620,375 CZK\nFees are 0.23098647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (31.018749996181180226343915530 CZK)\nThe limits being 0.10 % (13.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03567285 BTC (22,030.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.45 % (99.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 769.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02195229 BTC (13,618.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010601 BTC for 65.77 CZK @ 620,375 CZK\nFees are 0.23098647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (31.018749996181180226343915530 CZK)\nThe limits being 0.10 % (13.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03567285 BTC (22,030.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.45 % (99.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 769.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02195229 BTC (13,618.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 334 transactions" + } + ] + }, + { + "id": 335, + "type": "message", + "date": "2023-10-13T02:29:04", + "date_unixtime": "1697156944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010503 BTC for 65.76 CZK @ 626,148 CZK\nFees are 0.23098075 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (62.614799994743713578690900993 CZK)\nThe limits being 0.10 % (13.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03577788 BTC (22,096.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 626,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.38 % (305.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 703.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02205732 BTC (13,811.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010503 BTC for 65.76 CZK @ 626,148 CZK\nFees are 0.23098075 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (62.614799994743713578690900993 CZK)\nThe limits being 0.10 % (13.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03577788 BTC (22,096.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 626,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.38 % (305.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 703.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02205732 BTC (13,811.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 335 transactions" + } + ] + }, + { + "id": 336, + "type": "message", + "date": "2023-10-13T14:29:03", + "date_unixtime": "1697200143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010470 BTC for 65.77 CZK @ 628,167 CZK\nFees are 0.23099747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (37.690019995916869752428106212 CZK)\nThe limits being 0.10 % (13.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03588258 BTC (22,162.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.70 % (377.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 637.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02216202 BTC (13,921.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010470 BTC for 65.77 CZK @ 628,167 CZK\nFees are 0.23099747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (37.690019995916869752428106212 CZK)\nThe limits being 0.10 % (13.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03588258 BTC (22,162.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.70 % (377.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 637.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02216202 BTC (13,921.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 336 transactions" + } + ] + }, + { + "id": 337, + "type": "message", + "date": "2023-10-14T02:29:03", + "date_unixtime": "1697243343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010430 BTC for 65.77 CZK @ 630,538 CZK\nFees are 0.23098352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (31.526899996703770742955743106 CZK)\nThe limits being 0.10 % (14.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03598688 BTC (22,228.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.08 % (462.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 571.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02226632 BTC (14,039.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010430 BTC for 65.77 CZK @ 630,538 CZK\nFees are 0.23098352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (31.526899996703770742955743106 CZK)\nThe limits being 0.10 % (14.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03598688 BTC (22,228.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.08 % (462.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 571.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02226632 BTC (14,039.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 337 transactions" + } + ] + }, + { + "id": 338, + "type": "message", + "date": "2023-10-14T14:29:04", + "date_unixtime": "1697286544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010441 BTC for 65.77 CZK @ 629,918 CZK\nFees are 0.23099976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.598359999173470384541949170 CZK)\nThe limits being 0.10 % (14.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03609129 BTC (22,294.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 629,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.97 % (439.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 505.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02237073 BTC (14,091.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010441 BTC for 65.77 CZK @ 629,918 CZK\nFees are 0.23099976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.598359999173470384541949170 CZK)\nThe limits being 0.10 % (14.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03609129 BTC (22,294.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 629,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.97 % (439.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 505.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02237073 BTC (14,091.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 338 transactions" + } + ] + }, + { + "id": 339, + "type": "message", + "date": "2023-10-15T02:29:03", + "date_unixtime": "1697329743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010445 BTC for 65.77 CZK @ 629,632 CZK\nFees are 0.23098334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.2963199991985923847672447535 CZK)\nThe limits being 0.10 % (14.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03619574 BTC (22,360.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 629,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.92 % (429.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 439.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02247518 BTC (14,151.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010445 BTC for 65.77 CZK @ 629,632 CZK\nFees are 0.23098334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.2963199991985923847672447535 CZK)\nThe limits being 0.10 % (14.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03619574 BTC (22,360.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 629,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.92 % (429.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 439.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02247518 BTC (14,151.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 339 transactions" + } + ] + }, + { + "id": 340, + "type": "message", + "date": "2023-10-15T14:29:03", + "date_unixtime": "1697372943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010445 BTC for 65.77 CZK @ 629,655 CZK\nFees are 0.23099178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.2965499993679374463194043443 CZK)\nThe limits being 0.10 % (14.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03630019 BTC (22,426.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 629,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.92 % (429.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 373.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02257963 BTC (14,217.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010445 BTC for 65.77 CZK @ 629,655 CZK\nFees are 0.23099178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.2965499993679374463194043443 CZK)\nThe limits being 0.10 % (14.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03630019 BTC (22,426.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 629,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.92 % (429.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 373.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02257963 BTC (14,217.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 340 transactions" + } + ] + }, + { + "id": 341, + "type": "message", + "date": "2023-10-16T02:29:03", + "date_unixtime": "1697416143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010316 BTC for 65.76 CZK @ 637,494 CZK\nFees are 0.23097919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.3749399996483807256223999252 CZK)\nThe limits being 0.10 % (14.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03640335 BTC (22,492.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.17 % (714.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 307.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02268279 BTC (14,460.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010316 BTC for 65.76 CZK @ 637,494 CZK\nFees are 0.23097919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.3749399996483807256223999252 CZK)\nThe limits being 0.10 % (14.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03640335 BTC (22,492.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.17 % (714.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 307.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02268279 BTC (14,460.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 341 transactions" + } + ] + }, + { + "id": 342, + "type": "message", + "date": "2023-10-16T14:29:04", + "date_unixtime": "1697459344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010135 BTC for 65.77 CZK @ 648,900 CZK\nFees are 0.23098669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.977999999508380756154642766 CZK)\nThe limits being 0.10 % (14.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03650470 BTC (22,558.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.00 % (1,129.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,241.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02278414 BTC (14,784.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010135 BTC for 65.77 CZK @ 648,900 CZK\nFees are 0.23098669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (12.977999999508380756154642766 CZK)\nThe limits being 0.10 % (14.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03650470 BTC (22,558.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.00 % (1,129.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,241.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02278414 BTC (14,784.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 342 transactions" + } + ] + }, + { + "id": 343, + "type": "message", + "date": "2023-10-17T02:29:04", + "date_unixtime": "1697502544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009949 BTC for 65.77 CZK @ 661,052 CZK\nFees are 0.23099388 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (79.32623999737976084608483836 CZK)\nThe limits being 0.10 % (15.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03660419 BTC (22,624.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.95 % (1,572.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,175.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02288363 BTC (15,127.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009949 BTC for 65.77 CZK @ 661,052 CZK\nFees are 0.23099388 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (79.32623999737976084608483836 CZK)\nThe limits being 0.10 % (15.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03660419 BTC (22,624.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.95 % (1,572.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,175.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02288363 BTC (15,127.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 343 transactions" + } + ] + }, + { + "id": 344, + "type": "message", + "date": "2023-10-17T14:29:03", + "date_unixtime": "1697545743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009952 BTC for 65.77 CZK @ 660,849 CZK\nFees are 0.23099258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (66.084899996315147786605401994 CZK)\nThe limits being 0.10 % (15.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03670371 BTC (22,690.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.90 % (1,564.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,109.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02298315 BTC (15,188.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009952 BTC for 65.77 CZK @ 660,849 CZK\nFees are 0.23099258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (66.084899996315147786605401994 CZK)\nThe limits being 0.10 % (15.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03670371 BTC (22,690.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.90 % (1,564.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,109.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02298315 BTC (15,188.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 344 transactions" + } + ] + }, + { + "id": 345, + "type": "message", + "date": "2023-10-18T02:29:03", + "date_unixtime": "1697588943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009947 BTC for 65.77 CZK @ 661,175 CZK\nFees are 0.23099042 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.835249999887295040395711621 CZK)\nThe limits being 0.10 % (15.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03680318 BTC (22,756.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.93 % (1,576.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,043.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02308262 BTC (15,261.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009947 BTC for 65.77 CZK @ 661,175 CZK\nFees are 0.23099042 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.835249999887295040395711621 CZK)\nThe limits being 0.10 % (15.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03680318 BTC (22,756.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.93 % (1,576.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,043.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02308262 BTC (15,261.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 345 transactions" + } + ] + }, + { + "id": 346, + "type": "message", + "date": "2023-10-18T14:29:04", + "date_unixtime": "1697632144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009951 BTC for 65.77 CZK @ 660,928 CZK\nFees are 0.23099698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (26.437119996603186205330884663 CZK)\nThe limits being 0.10 % (15.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03690269 BTC (22,822.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.87 % (1,567.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 977.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02318213 BTC (15,321.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009951 BTC for 65.77 CZK @ 660,928 CZK\nFees are 0.23099698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (26.437119996603186205330884663 CZK)\nThe limits being 0.10 % (15.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03690269 BTC (22,822.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.87 % (1,567.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 977.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02318213 BTC (15,321.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 346 transactions" + } + ] + }, + { + "id": 347, + "type": "message", + "date": "2023-10-19T02:29:04", + "date_unixtime": "1697675344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009939 BTC for 65.77 CZK @ 661,696 CZK\nFees are 0.23098651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (52.935679992748992571677767516 CZK)\nThe limits being 0.10 % (15.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03700208 BTC (22,888.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.97 % (1,595.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 911.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02328152 BTC (15,405.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009939 BTC for 65.77 CZK @ 661,696 CZK\nFees are 0.23098651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (52.935679992748992571677767516 CZK)\nThe limits being 0.10 % (15.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03700208 BTC (22,888.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.97 % (1,595.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 911.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02328152 BTC (15,405.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 347 transactions" + } + ] + }, + { + "id": 348, + "type": "message", + "date": "2023-10-19T14:29:03", + "date_unixtime": "1697718543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009911 BTC for 65.76 CZK @ 663,546 CZK\nFees are 0.23097976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.6354599995767009996341630849 CZK)\nThe limits being 0.10 % (15.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03710119 BTC (22,954.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.25 % (1,663.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 845.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02338063 BTC (15,514.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009911 BTC for 65.76 CZK @ 663,546 CZK\nFees are 0.23097976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (6.6354599995767009996341630849 CZK)\nThe limits being 0.10 % (15.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03710119 BTC (22,954.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.25 % (1,663.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 845.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02338063 BTC (15,514.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 348 transactions" + } + ] + }, + { + "id": 349, + "type": "message", + "date": "2023-10-20T02:29:03", + "date_unixtime": "1697761743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009847 BTC for 65.77 CZK @ 667,905 CZK\nFees are 0.23099578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (53.432399992936269719938780330 CZK)\nThe limits being 0.10 % (15.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03719966 BTC (23,020.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 667,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.93 % (1,825.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 779.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02347910 BTC (15,681.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009847 BTC for 65.77 CZK @ 667,905 CZK\nFees are 0.23099578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (53.432399992936269719938780330 CZK)\nThe limits being 0.10 % (15.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03719966 BTC (23,020.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 667,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.93 % (1,825.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 779.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02347910 BTC (15,681.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 349 transactions" + } + ] + }, + { + "id": 350, + "type": "message", + "date": "2023-10-20T14:29:03", + "date_unixtime": "1697804943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009523 BTC for 65.77 CZK @ 690,609 CZK\nFees are 0.23098907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.718269999138267559917480878 CZK)\nThe limits being 0.10 % (16.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03729489 BTC (23,086.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 690,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.56 % (2,669.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 713.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02357433 BTC (16,280.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009523 BTC for 65.77 CZK @ 690,609 CZK\nFees are 0.23098907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.718269999138267559917480878 CZK)\nThe limits being 0.10 % (16.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03729489 BTC (23,086.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 690,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.56 % (2,669.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 713.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02357433 BTC (16,280.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 350 transactions" + } + ] + }, + { + "id": 351, + "type": "message", + "date": "2023-10-21T02:29:03", + "date_unixtime": "1697848143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009549 BTC for 65.77 CZK @ 688,712 CZK\nFees are 0.23098350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (55.096959999098348992475440576 CZK)\nThe limits being 0.10 % (16.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03739038 BTC (23,152.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 688,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.22 % (2,598.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 647.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02366982 BTC (16,301.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009549 BTC for 65.77 CZK @ 688,712 CZK\nFees are 0.23098350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (55.096959999098348992475440576 CZK)\nThe limits being 0.10 % (16.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03739038 BTC (23,152.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 688,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.22 % (2,598.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 647.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02366982 BTC (16,301.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 351 transactions" + } + ] + }, + { + "id": 352, + "type": "message", + "date": "2023-10-21T14:29:03", + "date_unixtime": "1697891343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009519 BTC for 65.77 CZK @ 690,924 CZK\nFees are 0.23099737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (13.818479999066195095189737484 CZK)\nThe limits being 0.10 % (16.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03748557 BTC (23,218.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 690,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.55 % (2,680.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 581.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02376501 BTC (16,419.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009519 BTC for 65.77 CZK @ 690,924 CZK\nFees are 0.23099737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (13.818479999066195095189737484 CZK)\nThe limits being 0.10 % (16.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03748557 BTC (23,218.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 690,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.55 % (2,680.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 581.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02376501 BTC (16,419.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 352 transactions" + } + ] + }, + { + "id": 353, + "type": "message", + "date": "2023-10-22T02:29:03", + "date_unixtime": "1697934543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009463 BTC for 65.77 CZK @ 694,995 CZK\nFees are 0.23099147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.849849997164631598767096521 CZK)\nThe limits being 0.10 % (16.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03758020 BTC (23,284.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 694,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.17 % (2,833.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 515.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02385964 BTC (16,582.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009463 BTC for 65.77 CZK @ 694,995 CZK\nFees are 0.23099147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.849849997164631598767096521 CZK)\nThe limits being 0.10 % (16.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03758020 BTC (23,284.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 694,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.17 % (2,833.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 515.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02385964 BTC (16,582.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 353 transactions" + } + ] + }, + { + "id": 354, + "type": "message", + "date": "2023-10-22T14:29:03", + "date_unixtime": "1697977743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009462 BTC for 65.77 CZK @ 695,079 CZK\nFees are 0.23099498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.852369999232236948739020277 CZK)\nThe limits being 0.10 % (16.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03767482 BTC (23,350.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 695,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.15 % (2,836.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 449.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02395426 BTC (16,650.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009462 BTC for 65.77 CZK @ 695,079 CZK\nFees are 0.23099498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.852369999232236948739020277 CZK)\nThe limits being 0.10 % (16.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03767482 BTC (23,350.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 695,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.15 % (2,836.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 449.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02395426 BTC (16,650.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 354 transactions" + } + ] + }, + { + "id": 355, + "type": "message", + "date": "2023-10-23T02:29:03", + "date_unixtime": "1698020943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009473 BTC for 65.77 CZK @ 694,266 CZK\nFees are 0.23099302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (13.885319999236284321248479472 CZK)\nThe limits being 0.10 % (16.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03776955 BTC (23,416.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 694,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.98 % (2,805.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 383.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02404899 BTC (16,696.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009473 BTC for 65.77 CZK @ 694,266 CZK\nFees are 0.23099302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (13.885319999236284321248479472 CZK)\nThe limits being 0.10 % (16.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03776955 BTC (23,416.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 694,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.98 % (2,805.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 383.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02404899 BTC (16,696.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 355 transactions" + } + ] + }, + { + "id": 356, + "type": "message", + "date": "2023-10-23T14:29:04", + "date_unixtime": "1698064144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009260 BTC for 65.77 CZK @ 710,214 CZK\nFees are 0.23098599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (14.204279998407302303708080035 CZK)\nThe limits being 0.10 % (17.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03786215 BTC (23,482.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 710,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.51 % (3,407.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 317.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02414159 BTC (17,145.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009260 BTC for 65.77 CZK @ 710,214 CZK\nFees are 0.23098599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (14.204279998407302303708080035 CZK)\nThe limits being 0.10 % (17.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03786215 BTC (23,482.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 710,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.51 % (3,407.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 317.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02414159 BTC (17,145.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 356 transactions" + } + ] + }, + { + "id": 357, + "type": "message", + "date": "2023-10-24T02:29:03", + "date_unixtime": "1698107343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008697 BTC for 65.76 CZK @ 756,180 CZK\nFees are 0.23098303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (60.494399998991685934918254089 CZK)\nThe limits being 0.10 % (18.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03794912 BTC (23,548.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 756,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.86 % (5,147.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 251.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02422856 BTC (18,321.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008697 BTC for 65.76 CZK @ 756,180 CZK\nFees are 0.23098303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (60.494399998991685934918254089 CZK)\nThe limits being 0.10 % (18.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03794912 BTC (23,548.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 756,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.86 % (5,147.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 251.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02422856 BTC (18,321.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 357 transactions" + } + ] + }, + { + "id": 358, + "type": "message", + "date": "2023-10-24T14:29:04", + "date_unixtime": "1698150544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008200 BTC for 65.77 CZK @ 802,024 CZK\nFees are 0.23098652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (80.20239999027792968512644768 CZK)\nThe limits being 0.10 % (19.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03803112 BTC (23,614.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 802,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.16 % (6,887.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 185.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02431056 BTC (19,497.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008200 BTC for 65.77 CZK @ 802,024 CZK\nFees are 0.23098652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (80.20239999027792968512644768 CZK)\nThe limits being 0.10 % (19.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03803112 BTC (23,614.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 802,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.16 % (6,887.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 185.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02431056 BTC (19,497.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 358 transactions" + } + ] + }, + { + "id": 359, + "type": "message", + "date": "2023-10-25T02:29:05", + "date_unixtime": "1698193745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008357 BTC for 65.77 CZK @ 786,993 CZK\nFees are 0.23099719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (133.78880998472559157702140868 CZK)\nThe limits being 0.10 % (19.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03811469 BTC (23,680.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 786,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.67 % (6,315.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 119.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02439413 BTC (19,198.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008357 BTC for 65.77 CZK @ 786,993 CZK\nFees are 0.23099719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (133.78880998472559157702140868 CZK)\nThe limits being 0.10 % (19.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03811469 BTC (23,680.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 786,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.67 % (6,315.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 119.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02439413 BTC (19,198.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 359 transactions" + } + ] + }, + { + "id": 360, + "type": "message", + "date": "2023-10-25T14:29:07", + "date_unixtime": "1698236947", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008177 BTC for 65.77 CZK @ 804,325 CZK\nFees are 0.23099947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (104.56224999465305453171451588 CZK)\nThe limits being 0.10 % (19.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03819646 BTC (23,746.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 804,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.37 % (6,975.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,053.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02447590 BTC (19,686.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008177 BTC for 65.77 CZK @ 804,325 CZK\nFees are 0.23099947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (104.56224999465305453171451588 CZK)\nThe limits being 0.10 % (19.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03819646 BTC (23,746.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 804,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.37 % (6,975.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,053.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02447590 BTC (19,686.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 360 transactions" + } + ] + }, + { + "id": 361, + "type": "message", + "date": "2023-10-26T02:29:04", + "date_unixtime": "1698280144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008137 BTC for 65.77 CZK @ 808,263 CZK\nFees are 0.23099492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (145.48733999760822374240239045 CZK)\nThe limits being 0.10 % (19.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03827783 BTC (23,812.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 808,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.92 % (7,125.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 987.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02455727 BTC (19,848.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008137 BTC for 65.77 CZK @ 808,263 CZK\nFees are 0.23099492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (145.48733999760822374240239045 CZK)\nThe limits being 0.10 % (19.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03827783 BTC (23,812.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 808,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.92 % (7,125.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 987.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02455727 BTC (19,848.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 361 transactions" + } + ] + }, + { + "id": 362, + "type": "message", + "date": "2023-10-26T14:29:03", + "date_unixtime": "1698323343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008160 BTC for 65.77 CZK @ 805,999 CZK\nFees are 0.23099899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (48.359939996775989917641196986 CZK)\nThe limits being 0.10 % (19.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03835943 BTC (23,878.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 805,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.48 % (7,038.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 921.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02463887 BTC (19,858.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008160 BTC for 65.77 CZK @ 805,999 CZK\nFees are 0.23099899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (48.359939996775989917641196986 CZK)\nThe limits being 0.10 % (19.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03835943 BTC (23,878.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 805,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.48 % (7,038.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 921.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02463887 BTC (19,858.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 362 transactions" + } + ] + }, + { + "id": 363, + "type": "message", + "date": "2023-10-27T02:29:04", + "date_unixtime": "1698366544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008244 BTC for 65.77 CZK @ 797,762 CZK\nFees are 0.23099190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (103.70905998824589434311302968 CZK)\nThe limits being 0.10 % (19.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03844187 BTC (23,944.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 797,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.08 % (6,722.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 855.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02472131 BTC (19,721.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008244 BTC for 65.77 CZK @ 797,762 CZK\nFees are 0.23099190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (103.70905998824589434311302968 CZK)\nThe limits being 0.10 % (19.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03844187 BTC (23,944.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 797,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.08 % (6,722.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 855.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02472131 BTC (19,721.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 363 transactions" + } + ] + }, + { + "id": 364, + "type": "message", + "date": "2023-10-27T14:29:04", + "date_unixtime": "1698409744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008249 BTC for 65.77 CZK @ 797,263 CZK\nFees are 0.23098742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (31.890519996595743241484239036 CZK)\nThe limits being 0.10 % (19.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03852436 BTC (24,010.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 797,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.92 % (6,703.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 789.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02480380 BTC (19,775.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008249 BTC for 65.77 CZK @ 797,263 CZK\nFees are 0.23098742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (31.890519996595743241484239036 CZK)\nThe limits being 0.10 % (19.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03852436 BTC (24,010.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 797,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.92 % (6,703.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 789.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02480380 BTC (19,775.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 364 transactions" + } + ] + }, + { + "id": 365, + "type": "message", + "date": "2023-10-28T02:29:05", + "date_unixtime": "1698452945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008307 BTC for 65.77 CZK @ 791,733 CZK\nFees are 0.23099808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (47.503979999219056883428764942 CZK)\nThe limits being 0.10 % (19.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03860743 BTC (24,076.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 791,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.96 % (6,489.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 723.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02488687 BTC (19,703.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008307 BTC for 65.77 CZK @ 791,733 CZK\nFees are 0.23099808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (47.503979999219056883428764942 CZK)\nThe limits being 0.10 % (19.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03860743 BTC (24,076.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 791,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.96 % (6,489.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 723.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02488687 BTC (19,703.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 365 transactions" + } + ] + }, + { + "id": 366, + "type": "message", + "date": "2023-10-28T14:29:04", + "date_unixtime": "1698496144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008221 BTC for 65.76 CZK @ 799,953 CZK\nFees are 0.23098009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (31.99811999687021710353623648 CZK)\nThe limits being 0.10 % (19.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03868964 BTC (24,142.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.20 % (6,807.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 657.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02496908 BTC (19,974.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008221 BTC for 65.76 CZK @ 799,953 CZK\nFees are 0.23098009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (31.99811999687021710353623648 CZK)\nThe limits being 0.10 % (19.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03868964 BTC (24,142.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.20 % (6,807.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 657.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02496908 BTC (19,974.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 366 transactions" + } + ] + }, + { + "id": 367, + "type": "message", + "date": "2023-10-29T02:29:04", + "date_unixtime": "1698539344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008276 BTC for 65.77 CZK @ 794,653 CZK\nFees are 0.23098482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (23.839589997117387355950644469 CZK)\nThe limits being 0.10 % (19.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03877240 BTC (24,208.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 794,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.27 % (6,601.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 591.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02505184 BTC (19,907.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008276 BTC for 65.77 CZK @ 794,653 CZK\nFees are 0.23098482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (23.839589997117387355950644469 CZK)\nThe limits being 0.10 % (19.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03877240 BTC (24,208.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 794,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.27 % (6,601.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 591.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02505184 BTC (19,907.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 367 transactions" + } + ] + }, + { + "id": 368, + "type": "message", + "date": "2023-10-29T13:29:04", + "date_unixtime": "1698582544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008217 BTC for 65.77 CZK @ 800,389 CZK\nFees are 0.23099353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (40.019449997298611486303960235 CZK)\nThe limits being 0.10 % (20.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03885457 BTC (24,274.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.11 % (6,823.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 525.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02513401 BTC (20,116.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008217 BTC for 65.77 CZK @ 800,389 CZK\nFees are 0.23099353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (40.019449997298611486303960235 CZK)\nThe limits being 0.10 % (20.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03885457 BTC (24,274.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.11 % (6,823.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 525.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02513401 BTC (20,116.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 368 transactions" + } + ] + }, + { + "id": 369, + "type": "message", + "date": "2023-10-30T01:29:04", + "date_unixtime": "1698625744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008149 BTC for 65.76 CZK @ 807,000 CZK\nFees are 0.23097409 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (24.20999999816570338579971939 CZK)\nThe limits being 0.10 % (20.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03893606 BTC (24,340.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 807,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.09 % (7,080.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 459.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02521550 BTC (20,348.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008149 BTC for 65.76 CZK @ 807,000 CZK\nFees are 0.23097409 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (24.20999999816570338579971939 CZK)\nThe limits being 0.10 % (20.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03893606 BTC (24,340.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 807,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.09 % (7,080.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 459.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02521550 BTC (20,348.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 369 transactions" + } + ] + }, + { + "id": 370, + "type": "message", + "date": "2023-10-30T13:29:05", + "date_unixtime": "1698668945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008139 BTC for 65.77 CZK @ 808,058 CZK\nFees are 0.23099310 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (32.322319998937249544275341012 CZK)\nThe limits being 0.10 % (20.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03901745 BTC (24,406.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 808,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.18 % (7,121.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 393.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02529689 BTC (20,441.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008139 BTC for 65.77 CZK @ 808,058 CZK\nFees are 0.23099310 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (32.322319998937249544275341012 CZK)\nThe limits being 0.10 % (20.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03901745 BTC (24,406.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 808,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.18 % (7,121.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 393.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02529689 BTC (20,441.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 370 transactions" + } + ] + }, + { + "id": 371, + "type": "message", + "date": "2023-10-31T01:29:03", + "date_unixtime": "1698712143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008220 BTC for 65.76 CZK @ 800,058 CZK\nFees are 0.23098230 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (48.003479995199284256925577998 CZK)\nThe limits being 0.10 % (20.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03909965 BTC (24,472.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.82 % (6,809.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 327.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02537909 BTC (20,304.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008220 BTC for 65.76 CZK @ 800,058 CZK\nFees are 0.23098230 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (48.003479995199284256925577998 CZK)\nThe limits being 0.10 % (20.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03909965 BTC (24,472.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.82 % (6,809.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 327.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02537909 BTC (20,304.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 371 transactions" + } + ] + }, + { + "id": 372, + "type": "message", + "date": "2023-10-31T13:29:05", + "date_unixtime": "1698755345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008281 BTC for 65.77 CZK @ 794,213 CZK\nFees are 0.23099639 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (23.826389998247288938660347522 CZK)\nThe limits being 0.10 % (20.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03918246 BTC (24,538.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 794,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.82 % (6,580.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 261.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02546190 BTC (20,222.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008281 BTC for 65.77 CZK @ 794,213 CZK\nFees are 0.23099639 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (23.826389998247288938660347522 CZK)\nThe limits being 0.10 % (20.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03918246 BTC (24,538.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 794,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.82 % (6,580.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 261.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02546190 BTC (20,222.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 372 transactions" + } + ] + }, + { + "id": 373, + "type": "message", + "date": "2023-11-01T01:29:04", + "date_unixtime": "1698798544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008184 BTC for 65.77 CZK @ 803,586 CZK\nFees are 0.23098480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (48.215159997194569739051150886 CZK)\nThe limits being 0.10 % (20.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03926430 BTC (24,604.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.24 % (6,947.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 195.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02554374 BTC (20,526.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008184 BTC for 65.77 CZK @ 803,586 CZK\nFees are 0.23098480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (48.215159997194569739051150886 CZK)\nThe limits being 0.10 % (20.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03926430 BTC (24,604.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.24 % (6,947.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 195.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02554374 BTC (20,526.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 373 transactions" + } + ] + }, + { + "id": 374, + "type": "message", + "date": "2023-11-01T13:29:03", + "date_unixtime": "1698841743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008162 BTC for 65.77 CZK @ 805,747 CZK\nFees are 0.23098337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (48.344819995978300403378667192 CZK)\nThe limits being 0.10 % (20.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03934592 BTC (24,670.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 805,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.50 % (7,032.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,129.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02562536 BTC (20,647.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008162 BTC for 65.77 CZK @ 805,747 CZK\nFees are 0.23098337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (48.344819995978300403378667192 CZK)\nThe limits being 0.10 % (20.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03934592 BTC (24,670.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 805,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.50 % (7,032.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,129.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02562536 BTC (20,647.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 374 transactions" + } + ] + }, + { + "id": 375, + "type": "message", + "date": "2023-11-02T01:29:04", + "date_unixtime": "1698884944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007936 BTC for 65.77 CZK @ 828,725 CZK\nFees are 0.23099231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (74.585249993219296976710545348 CZK)\nThe limits being 0.10 % (21.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03942528 BTC (24,736.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.08 % (7,935.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,063.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02570472 BTC (21,302.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007936 BTC for 65.77 CZK @ 828,725 CZK\nFees are 0.23099231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (74.585249993219296976710545348 CZK)\nThe limits being 0.10 % (21.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03942528 BTC (24,736.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.08 % (7,935.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,063.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02570472 BTC (21,302.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 375 transactions" + } + ] + }, + { + "id": 376, + "type": "message", + "date": "2023-11-02T13:29:06", + "date_unixtime": "1698928146", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008030 BTC for 65.77 CZK @ 818,994 CZK\nFees are 0.23098389 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (49.139639997245009837920950396 CZK)\nThe limits being 0.10 % (21.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03950558 BTC (24,802.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 818,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.45 % (7,552.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 997.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02578502 BTC (21,117.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008030 BTC for 65.77 CZK @ 818,994 CZK\nFees are 0.23098389 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (49.139639997245009837920950396 CZK)\nThe limits being 0.10 % (21.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03950558 BTC (24,802.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 818,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.45 % (7,552.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 997.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02578502 BTC (21,117.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 376 transactions" + } + ] + }, + { + "id": 377, + "type": "message", + "date": "2023-11-03T01:29:03", + "date_unixtime": "1698971343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008187 BTC for 65.76 CZK @ 803,281 CZK\nFees are 0.23098177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (64.262479995963803005591337856 CZK)\nThe limits being 0.10 % (20.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03958745 BTC (24,868.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.87 % (6,931.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 931.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02586689 BTC (20,778.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008187 BTC for 65.76 CZK @ 803,281 CZK\nFees are 0.23098177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (64.262479995963803005591337856 CZK)\nThe limits being 0.10 % (20.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03958745 BTC (24,868.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.87 % (6,931.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 931.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02586689 BTC (20,778.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 377 transactions" + } + ] + }, + { + "id": 378, + "type": "message", + "date": "2023-11-03T13:29:04", + "date_unixtime": "1699014544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008343 BTC for 65.77 CZK @ 788,288 CZK\nFees are 0.23098968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (63.063039992890757931561720243 CZK)\nThe limits being 0.10 % (20.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03967088 BTC (24,934.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 788,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.42 % (6,337.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 865.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02595032 BTC (20,456.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.96 CZK over 378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008343 BTC for 65.77 CZK @ 788,288 CZK\nFees are 0.23098968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (63.063039992890757931561720243 CZK)\nThe limits being 0.10 % (20.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03967088 BTC (24,934.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 788,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.42 % (6,337.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 865.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02595032 BTC (20,456.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.96 CZK over 378 transactions" + } + ] + }, + { + "id": 379, + "type": "message", + "date": "2023-11-04T01:29:03", + "date_unixtime": "1699057743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008315 BTC for 65.77 CZK @ 790,963 CZK\nFees are 0.23099567 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (142.37333998473772343999848995 CZK)\nThe limits being 0.10 % (20.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03975403 BTC (25,000.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 790,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.77 % (6,443.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 799.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02603347 BTC (20,591.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008315 BTC for 65.77 CZK @ 790,963 CZK\nFees are 0.23099567 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (142.37333998473772343999848995 CZK)\nThe limits being 0.10 % (20.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03975403 BTC (25,000.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 790,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.77 % (6,443.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 799.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02603347 BTC (20,591.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 379 transactions" + } + ] + }, + { + "id": 380, + "type": "message", + "date": "2023-11-04T13:29:04", + "date_unixtime": "1699100944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008300 BTC for 65.77 CZK @ 792,358 CZK\nFees are 0.23098563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.34 % (277.32529996218056080825544329 CZK)\nThe limits being 0.10 % (20.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03983703 BTC (25,066.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 792,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.92 % (6,498.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 733.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02611647 BTC (20,693.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008300 BTC for 65.77 CZK @ 792,358 CZK\nFees are 0.23098563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.34 % (277.32529996218056080825544329 CZK)\nThe limits being 0.10 % (20.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03983703 BTC (25,066.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 792,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.92 % (6,498.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 733.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02611647 BTC (20,693.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 380 transactions" + } + ] + }, + { + "id": 381, + "type": "message", + "date": "2023-11-05T01:29:06", + "date_unixtime": "1699144146", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008235 BTC for 65.77 CZK @ 798,619 CZK\nFees are 0.23098760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (223.61331999567996529451110550 CZK)\nThe limits being 0.10 % (20.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03991938 BTC (25,132.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.85 % (6,747.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 667.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02619882 BTC (20,922.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008235 BTC for 65.77 CZK @ 798,619 CZK\nFees are 0.23098760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (223.61331999567996529451110550 CZK)\nThe limits being 0.10 % (20.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03991938 BTC (25,132.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.85 % (6,747.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 667.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02619882 BTC (20,922.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 381 transactions" + } + ] + }, + { + "id": 382, + "type": "message", + "date": "2023-11-05T13:29:04", + "date_unixtime": "1699187344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008202 BTC for 65.77 CZK @ 801,822 CZK\nFees are 0.23098467 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (208.47371999513529032196140624 CZK)\nThe limits being 0.10 % (21.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04000140 BTC (25,198.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.28 % (6,875.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 601.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02628084 BTC (21,072.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008202 BTC for 65.77 CZK @ 801,822 CZK\nFees are 0.23098467 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (208.47371999513529032196140624 CZK)\nThe limits being 0.10 % (21.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04000140 BTC (25,198.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.28 % (6,875.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 601.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02628084 BTC (21,072.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 382 transactions" + } + ] + }, + { + "id": 383, + "type": "message", + "date": "2023-11-06T01:29:05", + "date_unixtime": "1699230545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008221 BTC for 65.77 CZK @ 799,989 CZK\nFees are 0.23099048 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (175.99757998689297348587812745 CZK)\nThe limits being 0.10 % (21.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04008361 BTC (25,264.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.92 % (6,801.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 535.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02636305 BTC (21,090.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008221 BTC for 65.77 CZK @ 799,989 CZK\nFees are 0.23099048 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (175.99757998689297348587812745 CZK)\nThe limits being 0.10 % (21.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04008361 BTC (25,264.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.92 % (6,801.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 535.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02636305 BTC (21,090.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 383 transactions" + } + ] + }, + { + "id": 384, + "type": "message", + "date": "2023-11-06T13:29:04", + "date_unixtime": "1699273744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008210 BTC for 65.77 CZK @ 801,060 CZK\nFees are 0.23099024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (208.27559999684417571386869464 CZK)\nThe limits being 0.10 % (21.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04016571 BTC (25,330.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.02 % (6,844.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 469.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02644515 BTC (21,184.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008210 BTC for 65.77 CZK @ 801,060 CZK\nFees are 0.23099024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (208.27559999684417571386869464 CZK)\nThe limits being 0.10 % (21.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04016571 BTC (25,330.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.02 % (6,844.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 469.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02644515 BTC (21,184.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 384 transactions" + } + ] + }, + { + "id": 385, + "type": "message", + "date": "2023-11-07T01:29:05", + "date_unixtime": "1699316945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008195 BTC for 65.77 CZK @ 802,504 CZK\nFees are 0.23098383 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.32 % (280.87639995829119132456779550 CZK)\nThe limits being 0.10 % (21.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04024766 BTC (25,396.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 802,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.18 % (6,902.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 403.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02652710 BTC (21,288.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008195 BTC for 65.77 CZK @ 802,504 CZK\nFees are 0.23098383 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.32 % (280.87639995829119132456779550 CZK)\nThe limits being 0.10 % (21.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04024766 BTC (25,396.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 802,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.18 % (6,902.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 403.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02652710 BTC (21,288.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 385 transactions" + } + ] + }, + { + "id": 386, + "type": "message", + "date": "2023-11-07T13:29:04", + "date_unixtime": "1699360144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008208 BTC for 65.76 CZK @ 801,225 CZK\nFees are 0.23098153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (208.31849997474725400668809264 CZK)\nThe limits being 0.10 % (21.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04032974 BTC (25,462.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.90 % (6,850.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 337.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02660918 BTC (21,319.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008208 BTC for 65.76 CZK @ 801,225 CZK\nFees are 0.23098153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (208.31849997474725400668809264 CZK)\nThe limits being 0.10 % (21.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04032974 BTC (25,462.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.90 % (6,850.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 337.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02660918 BTC (21,319.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 386 transactions" + } + ] + }, + { + "id": 387, + "type": "message", + "date": "2023-11-08T01:29:04", + "date_unixtime": "1699403344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008081 BTC for 65.77 CZK @ 813,873 CZK\nFees are 0.23099744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.35 % (292.99428000019977104019115868 CZK)\nThe limits being 0.10 % (21.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04041055 BTC (25,528.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 813,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.83 % (7,360.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 271.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02668999 BTC (21,722.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008081 BTC for 65.77 CZK @ 813,873 CZK\nFees are 0.23099744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.35 % (292.99428000019977104019115868 CZK)\nThe limits being 0.10 % (21.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04041055 BTC (25,528.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 813,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.83 % (7,360.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 271.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02668999 BTC (21,722.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 387 transactions" + } + ] + }, + { + "id": 388, + "type": "message", + "date": "2023-11-08T13:29:05", + "date_unixtime": "1699446545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008042 BTC for 65.77 CZK @ 817,801 CZK\nFees are 0.23099210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (139.02616998426422715720048222 CZK)\nThe limits being 0.10 % (21.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04049097 BTC (25,594.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 817,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.38 % (7,518.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 205.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02677041 BTC (21,892.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008042 BTC for 65.77 CZK @ 817,801 CZK\nFees are 0.23099210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (139.02616998426422715720048222 CZK)\nThe limits being 0.10 % (21.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04049097 BTC (25,594.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 817,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.38 % (7,518.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 205.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02677041 BTC (21,892.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 388 transactions" + } + ] + }, + { + "id": 389, + "type": "message", + "date": "2023-11-09T01:29:05", + "date_unixtime": "1699489745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007999 BTC for 65.76 CZK @ 822,132 CZK\nFees are 0.23097377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (221.97563998190356754235535046 CZK)\nThe limits being 0.10 % (22.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04057096 BTC (25,660.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 822,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.98 % (7,693.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 139.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02685040 BTC (22,074.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007999 BTC for 65.76 CZK @ 822,132 CZK\nFees are 0.23097377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (221.97563998190356754235535046 CZK)\nThe limits being 0.10 % (22.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04057096 BTC (25,660.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 822,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.98 % (7,693.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 139.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02685040 BTC (22,074.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 389 transactions" + } + ] + }, + { + "id": 390, + "type": "message", + "date": "2023-11-09T13:29:03", + "date_unixtime": "1699532943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007747 BTC for 65.77 CZK @ 848,910 CZK\nFees are 0.23098332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.11 % (254.67299999247502722014192097 CZK)\nThe limits being 0.10 % (22.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04064843 BTC (25,726.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 848,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.13 % (8,780.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,073.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02692787 BTC (22,859.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007747 BTC for 65.77 CZK @ 848,910 CZK\nFees are 0.23098332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.11 % (254.67299999247502722014192097 CZK)\nThe limits being 0.10 % (22.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04064843 BTC (25,726.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 848,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.13 % (8,780.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,073.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02692787 BTC (22,859.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 390 transactions" + } + ] + }, + { + "id": 391, + "type": "message", + "date": "2023-11-10T01:29:03", + "date_unixtime": "1699576143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007788 BTC for 65.76 CZK @ 844,399 CZK\nFees are 0.23097186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.00 % (455.97545993491193764812370876 CZK)\nThe limits being 0.10 % (22.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04072631 BTC (25,792.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 844,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.33 % (8,596.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,007.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02700575 BTC (22,803.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007788 BTC for 65.76 CZK @ 844,399 CZK\nFees are 0.23097186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.00 % (455.97545993491193764812370876 CZK)\nThe limits being 0.10 % (22.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04072631 BTC (25,792.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 844,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.33 % (8,596.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,007.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02700575 BTC (22,803.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 391 transactions" + } + ] + }, + { + "id": 392, + "type": "message", + "date": "2023-11-10T13:29:04", + "date_unixtime": "1699619344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007733 BTC for 65.76 CZK @ 850,403 CZK\nFees are 0.23097140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.55 % (357.16925997854012959040100887 CZK)\nThe limits being 0.10 % (23.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04080364 BTC (25,858.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 850,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.19 % (8,840.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 941.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02708308 BTC (23,031.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007733 BTC for 65.76 CZK @ 850,403 CZK\nFees are 0.23097140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.55 % (357.16925997854012959040100887 CZK)\nThe limits being 0.10 % (23.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04080364 BTC (25,858.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 850,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.19 % (8,840.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 941.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02708308 BTC (23,031.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 392 transactions" + } + ] + }, + { + "id": 393, + "type": "message", + "date": "2023-11-11T01:29:03", + "date_unixtime": "1699662543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007629 BTC for 65.76 CZK @ 861,999 CZK\nFees are 0.23097225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (94.81988999571103967415657468 CZK)\nThe limits being 0.10 % (23.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04087993 BTC (25,924.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 861,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.93 % (9,313.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 875.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02715937 BTC (23,411.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007629 BTC for 65.76 CZK @ 861,999 CZK\nFees are 0.23097225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (94.81988999571103967415657468 CZK)\nThe limits being 0.10 % (23.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04087993 BTC (25,924.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 861,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.93 % (9,313.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 875.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02715937 BTC (23,411.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 393 transactions" + } + ] + }, + { + "id": 394, + "type": "message", + "date": "2023-11-11T13:29:05", + "date_unixtime": "1699705745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007706 BTC for 65.76 CZK @ 853,385 CZK\nFees are 0.23097205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (119.47389998488291240197331660 CZK)\nThe limits being 0.10 % (23.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04095699 BTC (25,990.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.48 % (8,961.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 809.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02723643 BTC (23,243.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007706 BTC for 65.76 CZK @ 853,385 CZK\nFees are 0.23097205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (119.47389998488291240197331660 CZK)\nThe limits being 0.10 % (23.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04095699 BTC (25,990.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.48 % (8,961.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 809.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02723643 BTC (23,243.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 394 transactions" + } + ] + }, + { + "id": 395, + "type": "message", + "date": "2023-11-12T01:29:03", + "date_unixtime": "1699748943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007712 BTC for 65.76 CZK @ 852,728 CZK\nFees are 0.23097393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (119.38191999681612282323072566 CZK)\nThe limits being 0.10 % (23.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04103411 BTC (26,056.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 852,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.29 % (8,934.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 743.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02731355 BTC (23,291.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007712 BTC for 65.76 CZK @ 852,728 CZK\nFees are 0.23097393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (119.38191999681612282323072566 CZK)\nThe limits being 0.10 % (23.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04103411 BTC (26,056.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 852,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.29 % (8,934.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 743.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02731355 BTC (23,291.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 395 transactions" + } + ] + }, + { + "id": 396, + "type": "message", + "date": "2023-11-12T13:29:03", + "date_unixtime": "1699792143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007702 BTC for 65.76 CZK @ 853,867 CZK\nFees are 0.23098255 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (111.00270998790651830512189419 CZK)\nThe limits being 0.10 % (23.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04111113 BTC (26,122.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.38 % (8,980.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 677.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02739057 BTC (23,387.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007702 BTC for 65.76 CZK @ 853,867 CZK\nFees are 0.23098255 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (111.00270998790651830512189419 CZK)\nThe limits being 0.10 % (23.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04111113 BTC (26,122.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.38 % (8,980.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 677.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02739057 BTC (23,387.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 396 transactions" + } + ] + }, + { + "id": 397, + "type": "message", + "date": "2023-11-13T01:29:03", + "date_unixtime": "1699835343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007703 BTC for 65.77 CZK @ 853,811 CZK\nFees are 0.23099739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (162.22408998855815628035874181 CZK)\nThe limits being 0.10 % (23.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04118816 BTC (26,188.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.28 % (8,978.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 611.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02746760 BTC (23,452.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007703 BTC for 65.77 CZK @ 853,811 CZK\nFees are 0.23099739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (162.22408998855815628035874181 CZK)\nThe limits being 0.10 % (23.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04118816 BTC (26,188.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.28 % (8,978.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 611.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02746760 BTC (23,452.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 397 transactions" + } + ] + }, + { + "id": 398, + "type": "message", + "date": "2023-11-13T13:29:03", + "date_unixtime": "1699878543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007708 BTC for 65.76 CZK @ 853,201 CZK\nFees are 0.23098218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (170.64019998505490254788054988 CZK)\nThe limits being 0.10 % (23.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04126524 BTC (26,254.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.10 % (8,952.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 545.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02754468 BTC (23,501.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007708 BTC for 65.76 CZK @ 853,201 CZK\nFees are 0.23098218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (170.64019998505490254788054988 CZK)\nThe limits being 0.10 % (23.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04126524 BTC (26,254.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.10 % (8,952.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 545.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02754468 BTC (23,501.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 398 transactions" + } + ] + }, + { + "id": 399, + "type": "message", + "date": "2023-11-14T01:29:05", + "date_unixtime": "1699921745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007751 BTC for 65.77 CZK @ 848,473 CZK\nFees are 0.23098362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (169.69459997993090497283504638 CZK)\nThe limits being 0.10 % (23.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04134275 BTC (26,320.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 848,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.27 % (8,757.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 479.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02762219 BTC (23,436.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007751 BTC for 65.77 CZK @ 848,473 CZK\nFees are 0.23098362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (169.69459997993090497283504638 CZK)\nThe limits being 0.10 % (23.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04134275 BTC (26,320.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 848,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.27 % (8,757.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 479.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02762219 BTC (23,436.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 399 transactions" + } + ] + }, + { + "id": 400, + "type": "message", + "date": "2023-11-14T13:29:05", + "date_unixtime": "1699964945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007780 BTC for 65.77 CZK @ 845,323 CZK\nFees are 0.23098709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (126.79844999442824151459608594 CZK)\nThe limits being 0.10 % (23.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04142055 BTC (26,386.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 845,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.69 % (8,627.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 413.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02769999 BTC (23,415.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007780 BTC for 65.77 CZK @ 845,323 CZK\nFees are 0.23098709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (126.79844999442824151459608594 CZK)\nThe limits being 0.10 % (23.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04142055 BTC (26,386.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 845,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.69 % (8,627.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 413.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02769999 BTC (23,415.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 400 transactions" + } + ] + }, + { + "id": 401, + "type": "message", + "date": "2023-11-15T01:29:04", + "date_unixtime": "1700008144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008074 BTC for 65.76 CZK @ 814,496 CZK\nFees are 0.23097401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (179.18911998740104457287776163 CZK)\nThe limits being 0.10 % (22.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04150129 BTC (26,452.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 814,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.79 % (7,349.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 347.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02778073 BTC (22,627.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008074 BTC for 65.76 CZK @ 814,496 CZK\nFees are 0.23097401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (179.18911998740104457287776163 CZK)\nThe limits being 0.10 % (22.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04150129 BTC (26,452.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 814,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.79 % (7,349.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 347.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02778073 BTC (22,627.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 401 transactions" + } + ] + }, + { + "id": 402, + "type": "message", + "date": "2023-11-15T13:29:05", + "date_unixtime": "1700051345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007907 BTC for 65.77 CZK @ 831,733 CZK\nFees are 0.23098357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (133.07727998168040793607853731 CZK)\nThe limits being 0.10 % (23.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04158036 BTC (26,518.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 831,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.41 % (8,065.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 281.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02785980 BTC (23,171.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007907 BTC for 65.77 CZK @ 831,733 CZK\nFees are 0.23098357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (133.07727998168040793607853731 CZK)\nThe limits being 0.10 % (23.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04158036 BTC (26,518.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 831,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.41 % (8,065.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 281.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02785980 BTC (23,171.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 402 transactions" + } + ] + }, + { + "id": 403, + "type": "message", + "date": "2023-11-16T01:29:05", + "date_unixtime": "1700094545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007674 BTC for 65.76 CZK @ 856,965 CZK\nFees are 0.23097783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (385.63424994536323804915789266 CZK)\nThe limits being 0.10 % (23.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04165710 BTC (26,584.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 856,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.28 % (9,114.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 215.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02793654 BTC (23,940.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007674 BTC for 65.76 CZK @ 856,965 CZK\nFees are 0.23097783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (385.63424994536323804915789266 CZK)\nThe limits being 0.10 % (23.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04165710 BTC (26,584.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 856,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.28 % (9,114.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 215.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02793654 BTC (23,940.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 403 transactions" + } + ] + }, + { + "id": 404, + "type": "message", + "date": "2023-11-16T13:29:05", + "date_unixtime": "1700137745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007786 BTC for 65.76 CZK @ 844,629 CZK\nFees are 0.23097544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.32 % (549.00884992687422943407296143 CZK)\nThe limits being 0.10 % (23.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04173496 BTC (26,650.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 844,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.27 % (8,599.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,149.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02801440 BTC (23,661.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007786 BTC for 65.76 CZK @ 844,629 CZK\nFees are 0.23097544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.32 % (549.00884992687422943407296143 CZK)\nThe limits being 0.10 % (23.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04173496 BTC (26,650.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 844,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.27 % (8,599.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,149.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02801440 BTC (23,661.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 404 transactions" + } + ] + }, + { + "id": 405, + "type": "message", + "date": "2023-11-17T01:29:04", + "date_unixtime": "1700180944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008023 BTC for 65.77 CZK @ 819,740 CZK\nFees are 0.23099275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (401.67259999573970226729194920 CZK)\nThe limits being 0.10 % (23.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04181519 BTC (26,716.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 819,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.30 % (7,560.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,083.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02809463 BTC (23,030.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008023 BTC for 65.77 CZK @ 819,740 CZK\nFees are 0.23099275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (401.67259999573970226729194920 CZK)\nThe limits being 0.10 % (23.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04181519 BTC (26,716.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 819,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.30 % (7,560.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,083.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02809463 BTC (23,030.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 405 transactions" + } + ] + }, + { + "id": 406, + "type": "message", + "date": "2023-11-17T13:29:04", + "date_unixtime": "1700224144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007997 BTC for 65.76 CZK @ 822,363 CZK\nFees are 0.23098091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.81 % (419.40512998802054507361037670 CZK)\nThe limits being 0.10 % (23.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04189516 BTC (26,782.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 822,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.64 % (7,670.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,017.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02817460 BTC (23,169.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007997 BTC for 65.76 CZK @ 822,363 CZK\nFees are 0.23098091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.81 % (419.40512998802054507361037670 CZK)\nThe limits being 0.10 % (23.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04189516 BTC (26,782.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 822,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.64 % (7,670.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,017.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02817460 BTC (23,169.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 406 transactions" + } + ] + }, + { + "id": 407, + "type": "message", + "date": "2023-11-18T01:29:03", + "date_unixtime": "1700267343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008002 BTC for 65.76 CZK @ 821,844 CZK\nFees are 0.23097946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (287.64539996042344670434284803 CZK)\nThe limits being 0.10 % (23.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04197518 BTC (26,848.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.49 % (7,648.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 951.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02825462 BTC (23,220.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008002 BTC for 65.76 CZK @ 821,844 CZK\nFees are 0.23097946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (287.64539996042344670434284803 CZK)\nThe limits being 0.10 % (23.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04197518 BTC (26,848.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.49 % (7,648.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 951.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02825462 BTC (23,220.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 407 transactions" + } + ] + }, + { + "id": 408, + "type": "message", + "date": "2023-11-18T13:29:04", + "date_unixtime": "1700310544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008013 BTC for 65.77 CZK @ 820,777 CZK\nFees are 0.23099668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.07 % (714.07598996175310785146036051 CZK)\nThe limits being 0.10 % (23.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04205531 BTC (26,914.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.25 % (7,603.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 885.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02833475 BTC (23,256.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008013 BTC for 65.77 CZK @ 820,777 CZK\nFees are 0.23099668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.07 % (714.07598996175310785146036051 CZK)\nThe limits being 0.10 % (23.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04205531 BTC (26,914.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.25 % (7,603.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 885.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02833475 BTC (23,256.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 408 transactions" + } + ] + }, + { + "id": 409, + "type": "message", + "date": "2023-11-19T01:29:04", + "date_unixtime": "1700353744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007977 BTC for 65.77 CZK @ 824,437 CZK\nFees are 0.23098431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.92 % (684.28270991482175429746670157 CZK)\nThe limits being 0.10 % (23.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04213508 BTC (26,980.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 824,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.75 % (7,757.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 819.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02841452 BTC (23,425.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007977 BTC for 65.77 CZK @ 824,437 CZK\nFees are 0.23098431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.92 % (684.28270991482175429746670157 CZK)\nThe limits being 0.10 % (23.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04213508 BTC (26,980.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 824,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.75 % (7,757.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 819.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02841452 BTC (23,425.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 409 transactions" + } + ] + }, + { + "id": 410, + "type": "message", + "date": "2023-11-19T13:29:03", + "date_unixtime": "1700396943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008016 BTC for 65.76 CZK @ 820,387 CZK\nFees are 0.23097336 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (246.1160999749380163439936271 CZK)\nThe limits being 0.10 % (23.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04221524 BTC (27,046.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.05 % (7,586.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 753.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02849468 BTC (23,376.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008016 BTC for 65.76 CZK @ 820,387 CZK\nFees are 0.23097336 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (246.1160999749380163439936271 CZK)\nThe limits being 0.10 % (23.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04221524 BTC (27,046.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.05 % (7,586.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 753.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02849468 BTC (23,376.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 410 transactions" + } + ] + }, + { + "id": 411, + "type": "message", + "date": "2023-11-20T01:29:04", + "date_unixtime": "1700440144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007845 BTC for 65.76 CZK @ 838,299 CZK\nFees are 0.23098156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (276.63866996677975079573309861 CZK)\nThe limits being 0.10 % (23.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04229369 BTC (27,112.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.77 % (8,342.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 687.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02857313 BTC (23,952.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007845 BTC for 65.76 CZK @ 838,299 CZK\nFees are 0.23098156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (276.63866996677975079573309861 CZK)\nThe limits being 0.10 % (23.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04229369 BTC (27,112.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.77 % (8,342.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 687.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02857313 BTC (23,952.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 411 transactions" + } + ] + }, + { + "id": 412, + "type": "message", + "date": "2023-11-20T13:29:07", + "date_unixtime": "1700483347", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007866 BTC for 65.76 CZK @ 836,037 CZK\nFees are 0.23097494 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (150.48665998524614649641586255 CZK)\nThe limits being 0.10 % (23.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04237235 BTC (27,178.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.34 % (8,246.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 621.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02865179 BTC (23,953.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007866 BTC for 65.76 CZK @ 836,037 CZK\nFees are 0.23097494 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (150.48665998524614649641586255 CZK)\nThe limits being 0.10 % (23.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04237235 BTC (27,178.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.34 % (8,246.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 621.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02865179 BTC (23,953.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 412 transactions" + } + ] + }, + { + "id": 413, + "type": "message", + "date": "2023-11-21T01:29:04", + "date_unixtime": "1700526544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007818 BTC for 65.77 CZK @ 841,254 CZK\nFees are 0.23099801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (159.83825999510793828150462891 CZK)\nThe limits being 0.10 % (24.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04245053 BTC (27,244.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.08 % (8,467.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 555.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02872997 BTC (24,169.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007818 BTC for 65.77 CZK @ 841,254 CZK\nFees are 0.23099801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (159.83825999510793828150462891 CZK)\nThe limits being 0.10 % (24.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04245053 BTC (27,244.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.08 % (8,467.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 555.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02872997 BTC (24,169.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 413 transactions" + } + ] + }, + { + "id": 414, + "type": "message", + "date": "2023-11-21T13:29:03", + "date_unixtime": "1700569743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007879 BTC for 65.76 CZK @ 834,653 CZK\nFees are 0.23097367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (233.70283998390453820310218968 CZK)\nThe limits being 0.10 % (24.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04252932 BTC (27,310.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 834,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.98 % (8,186.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 489.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02880876 BTC (24,045.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007879 BTC for 65.76 CZK @ 834,653 CZK\nFees are 0.23097367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (233.70283998390453820310218968 CZK)\nThe limits being 0.10 % (24.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04252932 BTC (27,310.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 834,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.98 % (8,186.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 489.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02880876 BTC (24,045.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 414 transactions" + } + ] + }, + { + "id": 415, + "type": "message", + "date": "2023-11-22T01:29:04", + "date_unixtime": "1700612944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008094 BTC for 65.76 CZK @ 812,489 CZK\nFees are 0.23097560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (194.99735997396805768394754756 CZK)\nThe limits being 0.10 % (23.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04261026 BTC (27,376.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 812,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.46 % (7,243.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 423.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02888970 BTC (23,472.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008094 BTC for 65.76 CZK @ 812,489 CZK\nFees are 0.23097560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (194.99735997396805768394754756 CZK)\nThe limits being 0.10 % (23.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04261026 BTC (27,376.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 812,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.46 % (7,243.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 423.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02888970 BTC (23,472.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 415 transactions" + } + ] + }, + { + "id": 416, + "type": "message", + "date": "2023-11-22T13:29:05", + "date_unixtime": "1700656145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008001 BTC for 65.77 CZK @ 821,973 CZK\nFees are 0.23098684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.93 % (460.30487993684396824587260422 CZK)\nThe limits being 0.10 % (23.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04269027 BTC (27,442.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.87 % (7,647.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 357.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02896971 BTC (23,812.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008001 BTC for 65.77 CZK @ 821,973 CZK\nFees are 0.23098684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.93 % (460.30487993684396824587260422 CZK)\nThe limits being 0.10 % (23.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04269027 BTC (27,442.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.87 % (7,647.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 357.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02896971 BTC (23,812.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 416 transactions" + } + ] + }, + { + "id": 417, + "type": "message", + "date": "2023-11-23T01:29:04", + "date_unixtime": "1700699344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007805 BTC for 65.77 CZK @ 842,628 CZK\nFees are 0.23099055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (294.91979998257220803421209623 CZK)\nThe limits being 0.10 % (24.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04276832 BTC (27,508.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.01 % (8,529.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 291.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02904776 BTC (24,476.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007805 BTC for 65.77 CZK @ 842,628 CZK\nFees are 0.23099055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (294.91979998257220803421209623 CZK)\nThe limits being 0.10 % (24.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04276832 BTC (27,508.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.01 % (8,529.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 291.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02904776 BTC (24,476.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 417 transactions" + } + ] + }, + { + "id": 418, + "type": "message", + "date": "2023-11-23T13:29:05", + "date_unixtime": "1700742545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007829 BTC for 65.77 CZK @ 840,020 CZK\nFees are 0.23098370 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (403.20959999816709978480605909 CZK)\nThe limits being 0.10 % (24.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04284661 BTC (27,574.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 840,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.53 % (8,417.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 225.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02912605 BTC (24,466.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007829 BTC for 65.77 CZK @ 840,020 CZK\nFees are 0.23098370 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (403.20959999816709978480605909 CZK)\nThe limits being 0.10 % (24.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04284661 BTC (27,574.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 840,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.53 % (8,417.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 225.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02912605 BTC (24,466.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 418 transactions" + } + ] + }, + { + "id": 419, + "type": "message", + "date": "2023-11-24T01:29:04", + "date_unixtime": "1700785744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007852 BTC for 65.77 CZK @ 837,588 CZK\nFees are 0.23099158 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.37 % (335.03519997888186050808923732 CZK)\nThe limits being 0.10 % (24.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04292513 BTC (27,640.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.08 % (8,313.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 159.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02920457 BTC (24,461.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007852 BTC for 65.77 CZK @ 837,588 CZK\nFees are 0.23099158 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.37 % (335.03519997888186050808923732 CZK)\nThe limits being 0.10 % (24.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04292513 BTC (27,640.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.08 % (8,313.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 159.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02920457 BTC (24,461.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 419 transactions" + } + ] + }, + { + "id": 420, + "type": "message", + "date": "2023-11-24T13:29:12", + "date_unixtime": "1700828952", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007743 BTC for 65.76 CZK @ 849,347 CZK\nFees are 0.23098290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (297.27144998317589328477797682 CZK)\nThe limits being 0.10 % (24.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04300256 BTC (27,706.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 849,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.82 % (8,817.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,093.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02928200 BTC (24,870.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007743 BTC for 65.76 CZK @ 849,347 CZK\nFees are 0.23098290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (297.27144998317589328477797682 CZK)\nThe limits being 0.10 % (24.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04300256 BTC (27,706.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 849,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.82 % (8,817.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,093.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02928200 BTC (24,870.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 420 transactions" + } + ] + }, + { + "id": 421, + "type": "message", + "date": "2023-11-25T01:29:03", + "date_unixtime": "1700872143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007799 BTC for 65.76 CZK @ 843,246 CZK\nFees are 0.23098226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (177.0816599882204820632594229 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04308055 BTC (27,772.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.80 % (8,554.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,027.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02935999 BTC (24,757.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007799 BTC for 65.76 CZK @ 843,246 CZK\nFees are 0.23098226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (177.0816599882204820632594229 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04308055 BTC (27,772.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.80 % (8,554.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,027.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02935999 BTC (24,757.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 421 transactions" + } + ] + }, + { + "id": 422, + "type": "message", + "date": "2023-11-25T13:29:03", + "date_unixtime": "1700915343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007816 BTC for 65.76 CZK @ 841,395 CZK\nFees are 0.23097762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (185.10689998260948502146275141 CZK)\nThe limits being 0.10 % (24.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04315871 BTC (27,838.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.44 % (8,474.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 961.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02943815 BTC (24,769.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007816 BTC for 65.76 CZK @ 841,395 CZK\nFees are 0.23097762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (185.10689998260948502146275141 CZK)\nThe limits being 0.10 % (24.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04315871 BTC (27,838.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.44 % (8,474.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 961.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02943815 BTC (24,769.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 422 transactions" + } + ] + }, + { + "id": 423, + "type": "message", + "date": "2023-11-26T01:29:04", + "date_unixtime": "1700958544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007797 BTC for 65.77 CZK @ 843,518 CZK\nFees are 0.23099765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (168.70369571575796115417252902 CZK)\nThe limits being 0.10 % (24.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04323668 BTC (27,904.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.70 % (8,566.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 895.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02951612 BTC (24,897.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007797 BTC for 65.77 CZK @ 843,518 CZK\nFees are 0.23099765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (168.70369571575796115417252902 CZK)\nThe limits being 0.10 % (24.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04323668 BTC (27,904.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.70 % (8,566.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 895.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02951612 BTC (24,897.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 423 transactions" + } + ] + }, + { + "id": 424, + "type": "message", + "date": "2023-11-26T13:29:04", + "date_unixtime": "1701001744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007833 BTC for 65.76 CZK @ 839,562 CZK\nFees are 0.23097572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (167.91239999972011657653466284 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04331501 BTC (27,970.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 839,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.01 % (8,395.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 829.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02959445 BTC (24,846.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007833 BTC for 65.76 CZK @ 839,562 CZK\nFees are 0.23097572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (167.91239999972011657653466284 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04331501 BTC (27,970.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 839,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.01 % (8,395.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 829.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02959445 BTC (24,846.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 424 transactions" + } + ] + }, + { + "id": 425, + "type": "message", + "date": "2023-11-27T01:29:03", + "date_unixtime": "1701044943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007839 BTC for 65.77 CZK @ 838,955 CZK\nFees are 0.23098552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (176.18054997710844039737688088 CZK)\nThe limits being 0.10 % (24.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04339340 BTC (28,036.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.85 % (8,368.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 763.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02967284 BTC (24,894.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007839 BTC for 65.77 CZK @ 838,955 CZK\nFees are 0.23098552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (176.18054997710844039737688088 CZK)\nThe limits being 0.10 % (24.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04339340 BTC (28,036.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.85 % (8,368.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 763.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02967284 BTC (24,894.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 425 transactions" + } + ] + }, + { + "id": 426, + "type": "message", + "date": "2023-11-27T13:29:03", + "date_unixtime": "1701088143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007959 BTC for 65.77 CZK @ 826,311 CZK\nFees are 0.23098696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (214.84085998790638093973517615 CZK)\nThe limits being 0.10 % (24.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04347299 BTC (28,102.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 826,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.83 % (7,819.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 697.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02975243 BTC (24,584.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007959 BTC for 65.77 CZK @ 826,311 CZK\nFees are 0.23098696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (214.84085998790638093973517615 CZK)\nThe limits being 0.10 % (24.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04347299 BTC (28,102.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 826,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.83 % (7,819.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 697.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02975243 BTC (24,584.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 426 transactions" + } + ] + }, + { + "id": 427, + "type": "message", + "date": "2023-11-28T01:29:06", + "date_unixtime": "1701131346", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007931 BTC for 65.77 CZK @ 829,256 CZK\nFees are 0.23099469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (223.89911997706677492475742291 CZK)\nThe limits being 0.10 % (24.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04355230 BTC (28,168.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 829,256 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.21 % (7,947.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 631.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02983174 BTC (24,738.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007931 BTC for 65.77 CZK @ 829,256 CZK\nFees are 0.23099469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (223.89911997706677492475742291 CZK)\nThe limits being 0.10 % (24.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04355230 BTC (28,168.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 829,256 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.21 % (7,947.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 631.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02983174 BTC (24,738.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 427 transactions" + } + ] + }, + { + "id": 428, + "type": "message", + "date": "2023-11-28T13:29:04", + "date_unixtime": "1701174544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007936 BTC for 65.77 CZK @ 828,744 CZK\nFees are 0.23099761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.84 % (207.18599998920110259253901668 CZK)\nThe limits being 0.10 % (24.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04363166 BTC (28,234.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.07 % (7,924.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 565.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02991110 BTC (24,788.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007936 BTC for 65.77 CZK @ 828,744 CZK\nFees are 0.23099761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.84 % (207.18599998920110259253901668 CZK)\nThe limits being 0.10 % (24.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04363166 BTC (28,234.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.07 % (7,924.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 565.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02991110 BTC (24,788.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 428 transactions" + } + ] + }, + { + "id": 429, + "type": "message", + "date": "2023-11-29T01:29:04", + "date_unixtime": "1701217744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007886 BTC for 65.77 CZK @ 833,999 CZK\nFees are 0.23099774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (225.17972998638672836803371816 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04371052 BTC (28,300.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 833,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.81 % (8,154.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 499.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02998996 BTC (25,011.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007886 BTC for 65.77 CZK @ 833,999 CZK\nFees are 0.23099774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (225.17972998638672836803371816 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04371052 BTC (28,300.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 833,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.81 % (8,154.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 499.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02998996 BTC (25,011.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 429 transactions" + } + ] + }, + { + "id": 430, + "type": "message", + "date": "2023-11-29T13:29:03", + "date_unixtime": "1701260943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007788 BTC for 65.77 CZK @ 844,500 CZK\nFees are 0.23099949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.93 % (236.46000 CZK)\nThe limits being 0.10 % (25.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04378840 BTC (28,366.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 844,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.36 % (8,612.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 433.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03006784 BTC (25,392.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007788 BTC for 65.77 CZK @ 844,500 CZK\nFees are 0.23099949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.93 % (236.46000 CZK)\nThe limits being 0.10 % (25.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04378840 BTC (28,366.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 844,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.36 % (8,612.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 433.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03006784 BTC (25,392.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 430 transactions" + } + ] + }, + { + "id": 431, + "type": "message", + "date": "2023-11-30T01:29:04", + "date_unixtime": "1701304144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007848 BTC for 65.76 CZK @ 837,951 CZK\nFees are 0.23097397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (335.18039999654623699823299388 CZK)\nThe limits being 0.10 % (25.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04386688 BTC (28,432.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.28 % (8,325.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 367.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03014632 BTC (25,261.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007848 BTC for 65.76 CZK @ 837,951 CZK\nFees are 0.23097397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (335.18039999654623699823299388 CZK)\nThe limits being 0.10 % (25.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04386688 BTC (28,432.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.28 % (8,325.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 367.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03014632 BTC (25,261.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 431 transactions" + } + ] + }, + { + "id": 432, + "type": "message", + "date": "2023-11-30T13:29:05", + "date_unixtime": "1701347345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007802 BTC for 65.76 CZK @ 842,911 CZK\nFees are 0.23097931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (269.73151997232960720533758608 CZK)\nThe limits being 0.10 % (25.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04394490 BTC (28,498.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.98 % (8,543.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 301.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03022434 BTC (25,476.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007802 BTC for 65.76 CZK @ 842,911 CZK\nFees are 0.23097931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (269.73151997232960720533758608 CZK)\nThe limits being 0.10 % (25.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04394490 BTC (28,498.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.98 % (8,543.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 301.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03022434 BTC (25,476.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 432 transactions" + } + ] + }, + { + "id": 433, + "type": "message", + "date": "2023-12-01T01:29:04", + "date_unixtime": "1701390544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007814 BTC for 65.77 CZK @ 841,637 CZK\nFees are 0.23098493 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (286.15657998642835563115479236 CZK)\nThe limits being 0.10 % (25.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04402304 BTC (28,564.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.71 % (8,486.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03030248 BTC (25,503.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007814 BTC for 65.77 CZK @ 841,637 CZK\nFees are 0.23098493 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (286.15657998642835563115479236 CZK)\nThe limits being 0.10 % (25.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04402304 BTC (28,564.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.71 % (8,486.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03030248 BTC (25,503.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 433 transactions" + } + ] + }, + { + "id": 434, + "type": "message", + "date": "2023-12-01T13:29:07", + "date_unixtime": "1701433747", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007632 BTC for 65.76 CZK @ 861,683 CZK\nFees are 0.23097837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (232.65440998956482499929492060 CZK)\nThe limits being 0.10 % (26.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04409936 BTC (28,630.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 861,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.72 % (9,369.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 169.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03037880 BTC (26,176.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007632 BTC for 65.76 CZK @ 861,683 CZK\nFees are 0.23097837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (232.65440998956482499929492060 CZK)\nThe limits being 0.10 % (26.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04409936 BTC (28,630.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 861,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.72 % (9,369.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 169.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03037880 BTC (26,176.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 434 transactions" + } + ] + }, + { + "id": 435, + "type": "message", + "date": "2023-12-02T01:29:05", + "date_unixtime": "1701476945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007607 BTC for 65.76 CZK @ 864,521 CZK\nFees are 0.23098000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (259.35629998567521889503472434 CZK)\nThe limits being 0.10 % (26.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04417543 BTC (28,696.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 864,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.08 % (9,494.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,103.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03045487 BTC (26,328.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007607 BTC for 65.76 CZK @ 864,521 CZK\nFees are 0.23098000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (259.35629998567521889503472434 CZK)\nThe limits being 0.10 % (26.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04417543 BTC (28,696.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 864,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.08 % (9,494.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,103.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03045487 BTC (26,328.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 435 transactions" + } + ] + }, + { + "id": 436, + "type": "message", + "date": "2023-12-02T13:29:04", + "date_unixtime": "1701520144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007603 BTC for 65.77 CZK @ 865,000 CZK\nFees are 0.23098646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (216.24999998361646377623077875 CZK)\nThe limits being 0.10 % (26.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04425146 BTC (28,762.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 865,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.08 % (9,515.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,037.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03053090 BTC (26,409.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007603 BTC for 65.77 CZK @ 865,000 CZK\nFees are 0.23098646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (216.24999998361646377623077875 CZK)\nThe limits being 0.10 % (26.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04425146 BTC (28,762.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 865,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.08 % (9,515.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,037.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03053090 BTC (26,409.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 436 transactions" + } + ] + }, + { + "id": 437, + "type": "message", + "date": "2023-12-03T01:29:04", + "date_unixtime": "1701563344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007541 BTC for 65.76 CZK @ 872,096 CZK\nFees are 0.23098228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (409.88511995180374854300889729 CZK)\nThe limits being 0.10 % (26.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04432687 BTC (28,828.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 872,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.09 % (9,828.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 971.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03060631 BTC (26,691.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007541 BTC for 65.76 CZK @ 872,096 CZK\nFees are 0.23098228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (409.88511995180374854300889729 CZK)\nThe limits being 0.10 % (26.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04432687 BTC (28,828.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 872,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.09 % (9,828.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 971.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03060631 BTC (26,691.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 437 transactions" + } + ] + }, + { + "id": 438, + "type": "message", + "date": "2023-12-03T13:29:03", + "date_unixtime": "1701606543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007465 BTC for 65.77 CZK @ 881,028 CZK\nFees are 0.23099626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.35 % (634.34015999327204082429514114 CZK)\nThe limits being 0.10 % (27.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04440152 BTC (28,894.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 881,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.39 % (10,224.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 905.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03068096 BTC (27,030.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007465 BTC for 65.77 CZK @ 881,028 CZK\nFees are 0.23099626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.35 % (634.34015999327204082429514114 CZK)\nThe limits being 0.10 % (27.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04440152 BTC (28,894.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 881,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.39 % (10,224.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 905.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03068096 BTC (27,030.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 438 transactions" + } + ] + }, + { + "id": 439, + "type": "message", + "date": "2023-12-04T01:29:04", + "date_unixtime": "1701649744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007363 BTC for 65.77 CZK @ 893,215 CZK\nFees are 0.23099162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.24 % (616.31834998529186960130917586 CZK)\nThe limits being 0.10 % (27.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04447515 BTC (28,960.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 893,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.17 % (10,765.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 839.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03075459 BTC (27,470.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007363 BTC for 65.77 CZK @ 893,215 CZK\nFees are 0.23099162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.24 % (616.31834998529186960130917586 CZK)\nThe limits being 0.10 % (27.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04447515 BTC (28,960.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 893,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.17 % (10,765.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 839.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03075459 BTC (27,470.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 439 transactions" + } + ] + }, + { + "id": 440, + "type": "message", + "date": "2023-12-04T13:29:05", + "date_unixtime": "1701692945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007019 BTC for 65.76 CZK @ 936,938 CZK\nFees are 0.23097848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (290.45077998340755354549431740 CZK)\nThe limits being 0.10 % (28.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04454534 BTC (29,026.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 936,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.79 % (12,709.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 773.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03082478 BTC (28,880.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007019 BTC for 65.76 CZK @ 936,938 CZK\nFees are 0.23097848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (290.45077998340755354549431740 CZK)\nThe limits being 0.10 % (28.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04454534 BTC (29,026.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 936,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.79 % (12,709.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 773.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03082478 BTC (28,880.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 440 transactions" + } + ] + }, + { + "id": 441, + "type": "message", + "date": "2023-12-05T01:29:04", + "date_unixtime": "1701736144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006988 BTC for 65.76 CZK @ 941,057 CZK\nFees are 0.23096929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.75 % (508.17077999183738426668651705 CZK)\nThe limits being 0.10 % (29.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04461522 BTC (29,092.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 941,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.32 % (12,893.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 707.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03089466 BTC (29,073.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006988 BTC for 65.76 CZK @ 941,057 CZK\nFees are 0.23096929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.75 % (508.17077999183738426668651705 CZK)\nThe limits being 0.10 % (29.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04461522 BTC (29,092.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 941,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.32 % (12,893.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 707.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03089466 BTC (29,073.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 441 transactions" + } + ] + }, + { + "id": 442, + "type": "message", + "date": "2023-12-05T13:29:04", + "date_unixtime": "1701779344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006995 BTC for 65.77 CZK @ 940,218 CZK\nFees are 0.23099453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.10 % (611.14169998286910751611675076 CZK)\nThe limits being 0.10 % (29.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04468517 BTC (29,158.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 940,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.09 % (12,855.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 641.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03096461 BTC (29,113.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006995 BTC for 65.77 CZK @ 940,218 CZK\nFees are 0.23099453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.10 % (611.14169998286910751611675076 CZK)\nThe limits being 0.10 % (29.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04468517 BTC (29,158.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 940,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.09 % (12,855.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 641.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03096461 BTC (29,113.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 442 transactions" + } + ] + }, + { + "id": 443, + "type": "message", + "date": "2023-12-06T01:29:06", + "date_unixtime": "1701822546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006628 BTC for 65.76 CZK @ 992,199 CZK\nFees are 0.23097592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.58 % (486.17750997038428265103519696 CZK)\nThe limits being 0.10 % (30.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04475145 BTC (29,224.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.94 % (15,177.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 575.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03103089 BTC (30,788.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006628 BTC for 65.76 CZK @ 992,199 CZK\nFees are 0.23097592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.58 % (486.17750997038428265103519696 CZK)\nThe limits being 0.10 % (30.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04475145 BTC (29,224.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.94 % (15,177.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 575.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03103089 BTC (30,788.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 443 transactions" + } + ] + }, + { + "id": 444, + "type": "message", + "date": "2023-12-06T13:29:06", + "date_unixtime": "1701865746", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006624 BTC for 65.76 CZK @ 992,781 CZK\nFees are 0.23097193 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.80 % (555.95735994069067442694530496 CZK)\nThe limits being 0.10 % (30.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04481769 BTC (29,290.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.91 % (15,203.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 509.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03109713 BTC (30,872.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006624 BTC for 65.76 CZK @ 992,781 CZK\nFees are 0.23097193 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.80 % (555.95735994069067442694530496 CZK)\nThe limits being 0.10 % (30.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04481769 BTC (29,290.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.91 % (15,203.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 509.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03109713 BTC (30,872.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 444 transactions" + } + ] + }, + { + "id": 445, + "type": "message", + "date": "2023-12-07T01:29:05", + "date_unixtime": "1701908945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006638 BTC for 65.76 CZK @ 990,676 CZK\nFees are 0.23096933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.96 % (604.31235995348008394241726717 CZK)\nThe limits being 0.10 % (30.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04488407 BTC (29,356.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 990,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.47 % (15,109.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 443.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03116351 BTC (30,872.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006638 BTC for 65.76 CZK @ 990,676 CZK\nFees are 0.23096933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.96 % (604.31235995348008394241726717 CZK)\nThe limits being 0.10 % (30.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04488407 BTC (29,356.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 990,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.47 % (15,109.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 443.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03116351 BTC (30,872.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 445 transactions" + } + ] + }, + { + "id": 446, + "type": "message", + "date": "2023-12-07T13:29:03", + "date_unixtime": "1701952143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006732 BTC for 65.76 CZK @ 976,882 CZK\nFees are 0.23097854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.77 % (234.45167997570002318089893926 CZK)\nThe limits being 0.10 % (30.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04495139 BTC (29,422.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.25 % (14,489.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 377.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03123083 BTC (30,508.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006732 BTC for 65.76 CZK @ 976,882 CZK\nFees are 0.23097854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.77 % (234.45167997570002318089893926 CZK)\nThe limits being 0.10 % (30.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04495139 BTC (29,422.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.25 % (14,489.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 377.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03123083 BTC (30,508.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 446 transactions" + } + ] + }, + { + "id": 447, + "type": "message", + "date": "2023-12-08T01:29:04", + "date_unixtime": "1701995344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006720 BTC for 65.77 CZK @ 978,703 CZK\nFees are 0.23099661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.76 % (538.28664995432652383325029064 CZK)\nThe limits being 0.10 % (30.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04501859 BTC (29,488.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 978,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.41 % (14,571.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 311.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03129803 BTC (30,631.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006720 BTC for 65.77 CZK @ 978,703 CZK\nFees are 0.23099661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.76 % (538.28664995432652383325029064 CZK)\nThe limits being 0.10 % (30.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04501859 BTC (29,488.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 978,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.41 % (14,571.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 311.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03129803 BTC (30,631.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 447 transactions" + } + ] + }, + { + "id": 448, + "type": "message", + "date": "2023-12-08T13:29:05", + "date_unixtime": "1702038545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006670 BTC for 65.77 CZK @ 986,016 CZK\nFees are 0.23099108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (216.92351998290839632500640562 CZK)\nThe limits being 0.10 % (31.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04508529 BTC (29,554.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 986,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.42 % (14,900.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 45.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03156654 BTC (31,125.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006670 BTC for 65.77 CZK @ 986,016 CZK\nFees are 0.23099108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (216.92351998290839632500640562 CZK)\nThe limits being 0.10 % (31.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04508529 BTC (29,554.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 986,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.42 % (14,900.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 45.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03156654 BTC (31,125.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 448 transactions" + } + ] + }, + { + "id": 449, + "type": "message", + "date": "2023-12-09T01:29:04", + "date_unixtime": "1702081744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006554 BTC for 65.76 CZK @ 1,003,370 CZK\nFees are 0.23096861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (230.77509998496260950572903290 CZK)\nThe limits being 0.10 % (31.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04515083 BTC (29,620.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,003,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.95 % (15,682.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 979.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03163208 BTC (31,738.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006554 BTC for 65.76 CZK @ 1,003,370 CZK\nFees are 0.23096861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (230.77509998496260950572903290 CZK)\nThe limits being 0.10 % (31.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04515083 BTC (29,620.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,003,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.95 % (15,682.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 979.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03163208 BTC (31,738.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 449 transactions" + } + ] + }, + { + "id": 450, + "type": "message", + "date": "2023-12-09T13:29:03", + "date_unixtime": "1702124943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006622 BTC for 65.77 CZK @ 993,167 CZK\nFees are 0.23099197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (178.77005998485819113621804206 CZK)\nThe limits being 0.10 % (31.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04521705 BTC (29,686.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.27 % (15,221.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 913.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03169830 BTC (31,481.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006622 BTC for 65.77 CZK @ 993,167 CZK\nFees are 0.23099197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (178.77005998485819113621804206 CZK)\nThe limits being 0.10 % (31.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04521705 BTC (29,686.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.27 % (15,221.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 913.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03169830 BTC (31,481.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 450 transactions" + } + ] + }, + { + "id": 451, + "type": "message", + "date": "2023-12-10T01:29:03", + "date_unixtime": "1702168143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006632 BTC for 65.77 CZK @ 991,680 CZK\nFees are 0.23099442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.01 % (634.67519998461356302398781587 CZK)\nThe limits being 0.10 % (31.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04528337 BTC (29,752.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.93 % (15,154.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 847.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03176462 BTC (31,500.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006632 BTC for 65.77 CZK @ 991,680 CZK\nFees are 0.23099442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.01 % (634.67519998461356302398781587 CZK)\nThe limits being 0.10 % (31.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04528337 BTC (29,752.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.93 % (15,154.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 847.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03176462 BTC (31,500.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 451 transactions" + } + ] + }, + { + "id": 452, + "type": "message", + "date": "2023-12-10T13:29:03", + "date_unixtime": "1702211343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006631 BTC for 65.76 CZK @ 991,745 CZK\nFees are 0.23097473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (109.09194998623803266759675475 CZK)\nThe limits being 0.10 % (31.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04534968 BTC (29,818.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.83 % (15,156.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 781.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03183093 BTC (31,568.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006631 BTC for 65.76 CZK @ 991,745 CZK\nFees are 0.23097473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (109.09194998623803266759675475 CZK)\nThe limits being 0.10 % (31.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04534968 BTC (29,818.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.83 % (15,156.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 781.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03183093 BTC (31,568.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 452 transactions" + } + ] + }, + { + "id": 453, + "type": "message", + "date": "2023-12-11T01:29:05", + "date_unixtime": "1702254545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006639 BTC for 65.76 CZK @ 990,535 CZK\nFees are 0.23097125 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (158.48559998733158151920905240 CZK)\nThe limits being 0.10 % (31.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04541607 BTC (29,884.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 990,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.53 % (15,101.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 715.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03189732 BTC (31,595.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006639 BTC for 65.76 CZK @ 990,535 CZK\nFees are 0.23097125 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (158.48559998733158151920905240 CZK)\nThe limits being 0.10 % (31.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04541607 BTC (29,884.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 990,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.53 % (15,101.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 715.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03189732 BTC (31,595.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 453 transactions" + } + ] + }, + { + "id": 454, + "type": "message", + "date": "2023-12-11T13:29:03", + "date_unixtime": "1702297743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006880 BTC for 65.76 CZK @ 955,841 CZK\nFees are 0.23097210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (172.05137999269996871415163208 CZK)\nThe limits being 0.10 % (30.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04548487 BTC (29,950.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.16 % (13,525.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 649.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03196612 BTC (30,554.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006880 BTC for 65.76 CZK @ 955,841 CZK\nFees are 0.23097210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (172.05137999269996871415163208 CZK)\nThe limits being 0.10 % (30.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04548487 BTC (29,950.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.16 % (13,525.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 649.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03196612 BTC (30,554.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 454 transactions" + } + ] + }, + { + "id": 455, + "type": "message", + "date": "2023-12-12T01:29:05", + "date_unixtime": "1702340945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006955 BTC for 65.77 CZK @ 945,595 CZK\nFees are 0.23098710 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (217.48684999052561183234667162 CZK)\nThe limits being 0.10 % (30.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04555442 BTC (30,016.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 945,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.51 % (13,059.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 583.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03203567 BTC (30,292.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006955 BTC for 65.77 CZK @ 945,595 CZK\nFees are 0.23098710 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (217.48684999052561183234667162 CZK)\nThe limits being 0.10 % (30.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04555442 BTC (30,016.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 945,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.51 % (13,059.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 583.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03203567 BTC (30,292.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 455 transactions" + } + ] + }, + { + "id": 456, + "type": "message", + "date": "2023-12-12T13:29:04", + "date_unixtime": "1702384144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006968 BTC for 65.77 CZK @ 943,826 CZK\nFees are 0.23098592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (207.64171998464616093958172803 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04562410 BTC (30,082.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.14 % (12,978.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 517.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03210535 BTC (30,301.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006968 BTC for 65.77 CZK @ 943,826 CZK\nFees are 0.23098592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (207.64171998464616093958172803 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04562410 BTC (30,082.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.14 % (12,978.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 517.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03210535 BTC (30,301.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 456 transactions" + } + ] + }, + { + "id": 457, + "type": "message", + "date": "2023-12-13T01:29:04", + "date_unixtime": "1702427344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007007 BTC for 65.77 CZK @ 938,593 CZK\nFees are 0.23099089 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.81 % (244.03417999894617447468184176 CZK)\nThe limits being 0.10 % (30.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04569417 BTC (30,148.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 938,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.26 % (12,739.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 451.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03217542 BTC (30,199.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007007 BTC for 65.77 CZK @ 938,593 CZK\nFees are 0.23099089 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.81 % (244.03417999894617447468184176 CZK)\nThe limits being 0.10 % (30.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04569417 BTC (30,148.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 938,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.26 % (12,739.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 451.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03217542 BTC (30,199.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 457 transactions" + } + ] + }, + { + "id": 458, + "type": "message", + "date": "2023-12-13T13:29:03", + "date_unixtime": "1702470543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007027 BTC for 65.76 CZK @ 935,826 CZK\nFees are 0.23096729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (402.40517996603463230904726582 CZK)\nThe limits being 0.10 % (30.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04576444 BTC (30,214.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 935,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.75 % (12,613.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 385.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03224569 BTC (30,176.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007027 BTC for 65.76 CZK @ 935,826 CZK\nFees are 0.23096729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (402.40517996603463230904726582 CZK)\nThe limits being 0.10 % (30.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04576444 BTC (30,214.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 935,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.75 % (12,613.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 385.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03224569 BTC (30,176.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 458 transactions" + } + ] + }, + { + "id": 459, + "type": "message", + "date": "2023-12-14T01:29:09", + "date_unixtime": "1702513749", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006844 BTC for 65.77 CZK @ 960,973 CZK\nFees are 0.23099714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.55 % (480.48649998238194373462606185 CZK)\nThe limits being 0.10 % (31.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04583288 BTC (30,280.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.45 % (13,763.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 319.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03231413 BTC (31,053.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006844 BTC for 65.77 CZK @ 960,973 CZK\nFees are 0.23099714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.55 % (480.48649998238194373462606185 CZK)\nThe limits being 0.10 % (31.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04583288 BTC (30,280.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.45 % (13,763.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 319.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03231413 BTC (31,053.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 459 transactions" + } + ] + }, + { + "id": 460, + "type": "message", + "date": "2023-12-14T13:29:05", + "date_unixtime": "1702556945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006812 BTC for 65.76 CZK @ 965,378 CZK\nFees are 0.23097100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.91 % (598.53435997496723885660318070 CZK)\nThe limits being 0.10 % (31.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04590100 BTC (30,346.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 965,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.02 % (13,965.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 253.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03238225 BTC (31,261.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006812 BTC for 65.76 CZK @ 965,378 CZK\nFees are 0.23097100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.91 % (598.53435997496723885660318070 CZK)\nThe limits being 0.10 % (31.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04590100 BTC (30,346.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 965,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.02 % (13,965.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 253.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03238225 BTC (31,261.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 460 transactions" + } + ] + }, + { + "id": 461, + "type": "message", + "date": "2023-12-15T01:29:03", + "date_unixtime": "1702600143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006859 BTC for 65.77 CZK @ 958,848 CZK\nFees are 0.23099150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (335.59679997396486549881944760 CZK)\nThe limits being 0.10 % (31.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04596959 BTC (30,412.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.93 % (13,665.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 187.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03245084 BTC (31,115.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006859 BTC for 65.77 CZK @ 958,848 CZK\nFees are 0.23099150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (335.59679997396486549881944760 CZK)\nThe limits being 0.10 % (31.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04596959 BTC (30,412.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.93 % (13,665.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 187.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03245084 BTC (31,115.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 461 transactions" + } + ] + }, + { + "id": 462, + "type": "message", + "date": "2023-12-15T13:29:03", + "date_unixtime": "1702643343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006881 BTC for 65.76 CZK @ 955,697 CZK\nFees are 0.23097087 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.51 % (468.29152995036193262543458017 CZK)\nThe limits being 0.10 % (31.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04603840 BTC (30,478.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.36 % (13,520.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,121.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03251965 BTC (31,078.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006881 BTC for 65.76 CZK @ 955,697 CZK\nFees are 0.23097087 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.51 % (468.29152995036193262543458017 CZK)\nThe limits being 0.10 % (31.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04603840 BTC (30,478.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.36 % (13,520.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,121.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03251965 BTC (31,078.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 462 transactions" + } + ] + }, + { + "id": 463, + "type": "message", + "date": "2023-12-16T01:29:04", + "date_unixtime": "1702686544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006934 BTC for 65.76 CZK @ 948,408 CZK\nFees are 0.23097473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (331.94279996217450058340659148 CZK)\nThe limits being 0.10 % (30.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04610774 BTC (30,544.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 948,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.17 % (13,184.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,055.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03258899 BTC (30,907.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006934 BTC for 65.76 CZK @ 948,408 CZK\nFees are 0.23097473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (331.94279996217450058340659148 CZK)\nThe limits being 0.10 % (30.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04610774 BTC (30,544.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 948,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.17 % (13,184.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,055.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03258899 BTC (30,907.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 463 transactions" + } + ] + }, + { + "id": 464, + "type": "message", + "date": "2023-12-16T13:29:03", + "date_unixtime": "1702729743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006901 BTC for 65.77 CZK @ 952,999 CZK\nFees are 0.23098825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (514.61945997298110431775988792 CZK)\nThe limits being 0.10 % (31.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04617675 BTC (30,610.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 952,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.76 % (13,396.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 989.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03265800 BTC (31,123.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006901 BTC for 65.77 CZK @ 952,999 CZK\nFees are 0.23098825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (514.61945997298110431775988792 CZK)\nThe limits being 0.10 % (31.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04617675 BTC (30,610.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 952,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.76 % (13,396.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 989.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03265800 BTC (31,123.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 464 transactions" + } + ] + }, + { + "id": 465, + "type": "message", + "date": "2023-12-17T01:29:03", + "date_unixtime": "1702772943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006879 BTC for 65.76 CZK @ 955,998 CZK\nFees are 0.23097646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.44 % (764.79839990184086761895221648 CZK)\nThe limits being 0.10 % (31.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04624554 BTC (30,676.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.12 % (13,534.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 923.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03272679 BTC (31,286.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006879 BTC for 65.76 CZK @ 955,998 CZK\nFees are 0.23097646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.44 % (764.79839990184086761895221648 CZK)\nThe limits being 0.10 % (31.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04624554 BTC (30,676.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.12 % (13,534.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 923.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03272679 BTC (31,286.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 465 transactions" + } + ] + }, + { + "id": 466, + "type": "message", + "date": "2023-12-17T13:29:05", + "date_unixtime": "1702816145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006904 BTC for 65.76 CZK @ 952,549 CZK\nFees are 0.23097955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.81 % (876.3450799952195127020665215 CZK)\nThe limits being 0.10 % (31.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04631458 BTC (30,742.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 952,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.51 % (13,374.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 857.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03279583 BTC (31,239.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006904 BTC for 65.76 CZK @ 952,549 CZK\nFees are 0.23097955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.81 % (876.3450799952195127020665215 CZK)\nThe limits being 0.10 % (31.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04631458 BTC (30,742.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 952,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.51 % (13,374.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 857.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03279583 BTC (31,239.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 466 transactions" + } + ] + }, + { + "id": 467, + "type": "message", + "date": "2023-12-18T01:29:05", + "date_unixtime": "1702859345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007038 BTC for 65.76 CZK @ 934,422 CZK\nFees are 0.23098179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (383.11301999268544748113062084 CZK)\nThe limits being 0.10 % (30.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04638496 BTC (30,808.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 934,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.69 % (12,534.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 791.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03286621 BTC (30,710.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007038 BTC for 65.76 CZK @ 934,422 CZK\nFees are 0.23098179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (383.11301999268544748113062084 CZK)\nThe limits being 0.10 % (30.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04638496 BTC (30,808.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 934,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.69 % (12,534.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 791.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03286621 BTC (30,710.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 467 transactions" + } + ] + }, + { + "id": 468, + "type": "message", + "date": "2023-12-18T13:29:10", + "date_unixtime": "1702902550", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007073 BTC for 65.76 CZK @ 929,774 CZK\nFees are 0.23097580 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (297.52767998841323852307958480 CZK)\nThe limits being 0.10 % (30.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04645569 BTC (30,874.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 929,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.90 % (12,318.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 725.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03293694 BTC (30,623.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007073 BTC for 65.76 CZK @ 929,774 CZK\nFees are 0.23097580 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (297.52767998841323852307958480 CZK)\nThe limits being 0.10 % (30.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04645569 BTC (30,874.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 929,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.90 % (12,318.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 725.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03293694 BTC (30,623.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 468 transactions" + } + ] + }, + { + "id": 469, + "type": "message", + "date": "2023-12-19T01:29:05", + "date_unixtime": "1702945745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006885 BTC for 65.76 CZK @ 955,188 CZK\nFees are 0.23098205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (334.31579995795398747810405048 CZK)\nThe limits being 0.10 % (31.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04652454 BTC (30,940.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.63 % (13,499.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 659.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03300579 BTC (31,526.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006885 BTC for 65.76 CZK @ 955,188 CZK\nFees are 0.23098205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (334.31579995795398747810405048 CZK)\nThe limits being 0.10 % (31.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04652454 BTC (30,940.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.63 % (13,499.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 659.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03300579 BTC (31,526.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 469 transactions" + } + ] + }, + { + "id": 470, + "type": "message", + "date": "2023-12-19T13:29:04", + "date_unixtime": "1702988944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006821 BTC for 65.76 CZK @ 964,146 CZK\nFees are 0.23098101 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.24 % (713.46803994259353368619595380 CZK)\nThe limits being 0.10 % (31.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04659275 BTC (31,006.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 964,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.88 % (13,915.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 593.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03307400 BTC (31,888.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006821 BTC for 65.76 CZK @ 964,146 CZK\nFees are 0.23098101 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.24 % (713.46803994259353368619595380 CZK)\nThe limits being 0.10 % (31.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04659275 BTC (31,006.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 964,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.88 % (13,915.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 593.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03307400 BTC (31,888.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 470 transactions" + } + ] + }, + { + "id": 471, + "type": "message", + "date": "2023-12-20T01:29:07", + "date_unixtime": "1703032147", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006946 BTC for 65.76 CZK @ 946,750 CZK\nFees are 0.23096997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.39 % (435.50499998350145352194471667 CZK)\nThe limits being 0.10 % (31.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04666221 BTC (31,072.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.18 % (13,105.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 527.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03314346 BTC (31,378.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006946 BTC for 65.76 CZK @ 946,750 CZK\nFees are 0.23096997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.39 % (435.50499998350145352194471667 CZK)\nThe limits being 0.10 % (31.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04666221 BTC (31,072.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.18 % (13,105.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 527.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03314346 BTC (31,378.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 471 transactions" + } + ] + }, + { + "id": 472, + "type": "message", + "date": "2023-12-20T13:29:03", + "date_unixtime": "1703075343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006834 BTC for 65.77 CZK @ 962,362 CZK\nFees are 0.23099302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.00 % (1279.9414598685111328961453176 CZK)\nThe limits being 0.10 % (31.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04673055 BTC (31,138.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.43 % (13,833.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 461.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03321180 BTC (31,961.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006834 BTC for 65.77 CZK @ 962,362 CZK\nFees are 0.23099302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.00 % (1279.9414598685111328961453176 CZK)\nThe limits being 0.10 % (31.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04673055 BTC (31,138.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.43 % (13,833.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 461.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03321180 BTC (31,961.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 472 transactions" + } + ] + }, + { + "id": 473, + "type": "message", + "date": "2023-12-21T01:29:03", + "date_unixtime": "1703118543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006741 BTC for 65.76 CZK @ 975,540 CZK\nFees are 0.23096960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (517.03619992243436357262265646 CZK)\nThe limits being 0.10 % (32.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04679796 BTC (31,204.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.30 % (14,448.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 395.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03327921 BTC (32,465.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006741 BTC for 65.76 CZK @ 975,540 CZK\nFees are 0.23096960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (517.03619992243436357262265646 CZK)\nThe limits being 0.10 % (32.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04679796 BTC (31,204.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.30 % (14,448.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 395.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03327921 BTC (32,465.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 473 transactions" + } + ] + }, + { + "id": 474, + "type": "message", + "date": "2023-12-21T13:29:06", + "date_unixtime": "1703161746", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006682 BTC for 65.76 CZK @ 984,169 CZK\nFees are 0.23097319 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (472.40111997115155322131295330 CZK)\nThe limits being 0.10 % (32.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04686478 BTC (31,270.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.50 % (14,852.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 329.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03334603 BTC (32,818.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006682 BTC for 65.76 CZK @ 984,169 CZK\nFees are 0.23097319 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (472.40111997115155322131295330 CZK)\nThe limits being 0.10 % (32.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04686478 BTC (31,270.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.50 % (14,852.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 329.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03334603 BTC (32,818.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 474 transactions" + } + ] + }, + { + "id": 475, + "type": "message", + "date": "2023-12-22T01:29:04", + "date_unixtime": "1703204944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006696 BTC for 65.76 CZK @ 982,138 CZK\nFees are 0.23097947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (491.06899998749895080479968855 CZK)\nThe limits being 0.10 % (32.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04693174 BTC (31,336.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 982,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.09 % (14,757.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 263.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03341299 BTC (32,816.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006696 BTC for 65.76 CZK @ 982,138 CZK\nFees are 0.23097947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (491.06899998749895080479968855 CZK)\nThe limits being 0.10 % (32.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04693174 BTC (31,336.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 982,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.09 % (14,757.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 263.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03341299 BTC (32,816.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 475 transactions" + } + ] + }, + { + "id": 476, + "type": "message", + "date": "2023-12-22T13:29:03", + "date_unixtime": "1703248143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006775 BTC for 65.76 CZK @ 970,640 CZK\nFees are 0.23096858 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.37 % (446.49440 CZK)\nThe limits being 0.10 % (32.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04699949 BTC (31,402.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.27 % (14,217.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 197.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03348074 BTC (32,497.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006775 BTC for 65.76 CZK @ 970,640 CZK\nFees are 0.23096858 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.37 % (446.49440 CZK)\nThe limits being 0.10 % (32.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04699949 BTC (31,402.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.27 % (14,217.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 197.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03348074 BTC (32,497.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 476 transactions" + } + ] + }, + { + "id": 477, + "type": "message", + "date": "2023-12-23T01:29:04", + "date_unixtime": "1703291344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006682 BTC for 65.76 CZK @ 984,145 CZK\nFees are 0.23096756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.22 % (403.49944999296834023151832994 CZK)\nThe limits being 0.10 % (33.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04706631 BTC (31,468.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.20 % (14,851.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,131.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03354756 BTC (33,015.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006682 BTC for 65.76 CZK @ 984,145 CZK\nFees are 0.23096756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.22 % (403.49944999296834023151832994 CZK)\nThe limits being 0.10 % (33.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04706631 BTC (31,468.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.20 % (14,851.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,131.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03354756 BTC (33,015.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 477 transactions" + } + ] + }, + { + "id": 478, + "type": "message", + "date": "2023-12-23T13:29:03", + "date_unixtime": "1703334543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006740 BTC for 65.76 CZK @ 975,730 CZK\nFees are 0.23098032 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (243.93249997412616672506760462 CZK)\nThe limits being 0.10 % (32.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04713371 BTC (31,534.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.84 % (14,455.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,065.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03361496 BTC (32,799.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006740 BTC for 65.76 CZK @ 975,730 CZK\nFees are 0.23098032 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (243.93249997412616672506760462 CZK)\nThe limits being 0.10 % (32.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04713371 BTC (31,534.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.84 % (14,455.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,065.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03361496 BTC (32,799.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 478 transactions" + } + ] + }, + { + "id": 479, + "type": "message", + "date": "2023-12-24T01:29:04", + "date_unixtime": "1703377744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006714 BTC for 65.76 CZK @ 979,461 CZK\nFees are 0.23096911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (244.86524999855287548094626805 CZK)\nThe limits being 0.10 % (32.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04720085 BTC (31,600.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 979,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.30 % (14,631.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 999.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03368210 BTC (32,990.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006714 BTC for 65.76 CZK @ 979,461 CZK\nFees are 0.23096911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (244.86524999855287548094626805 CZK)\nThe limits being 0.10 % (32.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04720085 BTC (31,600.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 979,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.30 % (14,631.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 999.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03368210 BTC (32,990.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 479 transactions" + } + ] + }, + { + "id": 480, + "type": "message", + "date": "2023-12-24T13:29:03", + "date_unixtime": "1703420943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006732 BTC for 65.77 CZK @ 976,931 CZK\nFees are 0.23099013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (214.92481999277040163349844172 CZK)\nThe limits being 0.10 % (32.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04726817 BTC (31,666.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.83 % (14,511.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 933.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03374942 BTC (32,970.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006732 BTC for 65.77 CZK @ 976,931 CZK\nFees are 0.23099013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (214.92481999277040163349844172 CZK)\nThe limits being 0.10 % (32.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04726817 BTC (31,666.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.83 % (14,511.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 933.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03374942 BTC (32,970.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 480 transactions" + } + ] + }, + { + "id": 481, + "type": "message", + "date": "2023-12-25T01:29:04", + "date_unixtime": "1703464144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006835 BTC for 65.76 CZK @ 962,115 CZK\nFees are 0.23096753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (173.18069999770372095617059385 CZK)\nThe limits being 0.10 % (32.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04733652 BTC (31,732.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.52 % (13,810.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 867.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03381777 BTC (32,536.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006835 BTC for 65.76 CZK @ 962,115 CZK\nFees are 0.23096753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (173.18069999770372095617059385 CZK)\nThe limits being 0.10 % (32.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04733652 BTC (31,732.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.52 % (13,810.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 867.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03381777 BTC (32,536.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 481 transactions" + } + ] + }, + { + "id": 482, + "type": "message", + "date": "2023-12-25T13:29:03", + "date_unixtime": "1703507343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006797 BTC for 65.77 CZK @ 967,619 CZK\nFees are 0.23099739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (261.25712999206323549495260042 CZK)\nThe limits being 0.10 % (32.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04740449 BTC (31,798.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.25 % (14,071.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 801.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03388574 BTC (32,788.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006797 BTC for 65.77 CZK @ 967,619 CZK\nFees are 0.23099739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (261.25712999206323549495260042 CZK)\nThe limits being 0.10 % (32.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04740449 BTC (31,798.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.25 % (14,071.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 801.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03388574 BTC (32,788.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 482 transactions" + } + ] + }, + { + "id": 483, + "type": "message", + "date": "2023-12-26T01:29:04", + "date_unixtime": "1703550544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006751 BTC for 65.76 CZK @ 974,114 CZK\nFees are 0.23097412 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (379.90445996263854172963137388 CZK)\nThe limits being 0.10 % (33.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04747200 BTC (31,864.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 974,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.13 % (14,378.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 735.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03395325 BTC (33,074.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006751 BTC for 65.76 CZK @ 974,114 CZK\nFees are 0.23097412 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (379.90445996263854172963137388 CZK)\nThe limits being 0.10 % (33.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04747200 BTC (31,864.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 974,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.13 % (14,378.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 735.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03395325 BTC (33,074.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 483 transactions" + } + ] + }, + { + "id": 484, + "type": "message", + "date": "2023-12-26T13:29:04", + "date_unixtime": "1703593744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006877 BTC for 65.77 CZK @ 956,322 CZK\nFees are 0.23098756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (325.14947998132753191371279482 CZK)\nThe limits being 0.10 % (32.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04754077 BTC (31,930.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.39 % (13,534.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 669.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03402202 BTC (32,536.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006877 BTC for 65.77 CZK @ 956,322 CZK\nFees are 0.23098756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (325.14947998132753191371279482 CZK)\nThe limits being 0.10 % (32.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04754077 BTC (31,930.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.39 % (13,534.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 669.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03402202 BTC (32,536.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 484 transactions" + } + ] + }, + { + "id": 485, + "type": "message", + "date": "2023-12-27T01:29:04", + "date_unixtime": "1703636944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006939 BTC for 65.76 CZK @ 947,726 CZK\nFees are 0.23097507 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.88 % (284.31779997850153085041093743 CZK)\nThe limits being 0.10 % (32.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04761016 BTC (31,996.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.02 % (13,125.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 603.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03409141 BTC (32,309.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006939 BTC for 65.76 CZK @ 947,726 CZK\nFees are 0.23097507 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.88 % (284.31779997850153085041093743 CZK)\nThe limits being 0.10 % (32.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04761016 BTC (31,996.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.02 % (13,125.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 603.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03409141 BTC (32,309.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 485 transactions" + } + ] + }, + { + "id": 486, + "type": "message", + "date": "2023-12-27T13:29:04", + "date_unixtime": "1703680144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006857 BTC for 65.77 CZK @ 959,123 CZK\nFees are 0.23099037 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (374.05796997514677918520412621 CZK)\nThe limits being 0.10 % (32.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04767873 BTC (32,062.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 959,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.63 % (13,667.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 537.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03415998 BTC (32,763.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006857 BTC for 65.77 CZK @ 959,123 CZK\nFees are 0.23099037 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (374.05796997514677918520412621 CZK)\nThe limits being 0.10 % (32.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04767873 BTC (32,062.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 959,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.63 % (13,667.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 537.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03415998 BTC (32,763.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 486 transactions" + } + ] + }, + { + "id": 487, + "type": "message", + "date": "2023-12-28T01:29:04", + "date_unixtime": "1703723344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006765 BTC for 65.77 CZK @ 972,189 CZK\nFees are 0.23099572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.63 % (874.9700999937027499096841764 CZK)\nThe limits being 0.10 % (33.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04774638 BTC (32,128.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.48 % (14,290.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 471.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03422763 BTC (33,275.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006765 BTC for 65.77 CZK @ 972,189 CZK\nFees are 0.23099572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.63 % (874.9700999937027499096841764 CZK)\nThe limits being 0.10 % (33.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04774638 BTC (32,128.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.48 % (14,290.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 471.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03422763 BTC (33,275.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 487 transactions" + } + ] + }, + { + "id": 488, + "type": "message", + "date": "2023-12-28T13:29:04", + "date_unixtime": "1703766544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006852 BTC for 65.77 CZK @ 959,820 CZK\nFees are 0.23098968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.46 % (479.90999998254794733319546210 CZK)\nThe limits being 0.10 % (32.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04781490 BTC (32,194.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 959,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.55 % (13,699.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 405.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03429615 BTC (32,918.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006852 BTC for 65.77 CZK @ 959,820 CZK\nFees are 0.23098968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.46 % (479.90999998254794733319546210 CZK)\nThe limits being 0.10 % (32.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04781490 BTC (32,194.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 959,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.55 % (13,699.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 405.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03429615 BTC (32,918.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 488 transactions" + } + ] + }, + { + "id": 489, + "type": "message", + "date": "2023-12-29T01:29:05", + "date_unixtime": "1703809745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006878 BTC for 65.76 CZK @ 956,100 CZK\nFees are 0.23096752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (219.90299999000300344548659512 CZK)\nThe limits being 0.10 % (32.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04788368 BTC (32,260.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.91 % (13,521.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 339.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03436493 BTC (32,856.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006878 BTC for 65.76 CZK @ 956,100 CZK\nFees are 0.23096752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (219.90299999000300344548659512 CZK)\nThe limits being 0.10 % (32.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04788368 BTC (32,260.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.91 % (13,521.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 339.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03436493 BTC (32,856.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 489 transactions" + } + ] + }, + { + "id": 490, + "type": "message", + "date": "2023-12-29T13:29:04", + "date_unixtime": "1703852944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006847 BTC for 65.77 CZK @ 960,547 CZK\nFees are 0.23099595 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (153.68751998645896074706833371 CZK)\nThe limits being 0.10 % (33.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04795215 BTC (32,326.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.49 % (13,734.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,273.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03443340 BTC (33,074.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006847 BTC for 65.77 CZK @ 960,547 CZK\nFees are 0.23099595 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (153.68751998645896074706833371 CZK)\nThe limits being 0.10 % (33.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04795215 BTC (32,326.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.49 % (13,734.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,273.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03443340 BTC (33,074.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 490 transactions" + } + ] + }, + { + "id": 491, + "type": "message", + "date": "2023-12-30T01:29:04", + "date_unixtime": "1703896144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006949 BTC for 65.77 CZK @ 946,417 CZK\nFees are 0.23098845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (189.28339999812141172610498454 CZK)\nThe limits being 0.10 % (32.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04802164 BTC (32,392.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.31 % (13,056.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,207.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03450289 BTC (32,654.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006949 BTC for 65.77 CZK @ 946,417 CZK\nFees are 0.23098845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (189.28339999812141172610498454 CZK)\nThe limits being 0.10 % (32.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04802164 BTC (32,392.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.31 % (13,056.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,207.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03450289 BTC (32,654.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 491 transactions" + } + ] + }, + { + "id": 492, + "type": "message", + "date": "2023-12-30T13:29:04", + "date_unixtime": "1703939344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006957 BTC for 65.76 CZK @ 945,255 CZK\nFees are 0.23097044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (236.31374997770846453110534002 CZK)\nThe limits being 0.10 % (32.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04809121 BTC (32,458.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 945,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.05 % (13,000.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,141.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03457246 BTC (32,679.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006957 BTC for 65.76 CZK @ 945,255 CZK\nFees are 0.23097044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (236.31374997770846453110534002 CZK)\nThe limits being 0.10 % (32.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04809121 BTC (32,458.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 945,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.05 % (13,000.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,141.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03457246 BTC (32,679.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 492 transactions" + } + ] + }, + { + "id": 493, + "type": "message", + "date": "2023-12-31T01:29:03", + "date_unixtime": "1703982543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006899 BTC for 65.76 CZK @ 953,251 CZK\nFees are 0.23098237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (305.04031998745079278619916538 CZK)\nThe limits being 0.10 % (33.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04816020 BTC (32,524.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 953,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.15 % (13,384.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,075.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03464145 BTC (33,022.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006899 BTC for 65.76 CZK @ 953,251 CZK\nFees are 0.23098237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (305.04031998745079278619916538 CZK)\nThe limits being 0.10 % (33.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04816020 BTC (32,524.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 953,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.15 % (13,384.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,075.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03464145 BTC (33,022.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 493 transactions" + } + ] + }, + { + "id": 494, + "type": "message", + "date": "2023-12-31T13:29:03", + "date_unixtime": "1704025743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006858 BTC for 65.77 CZK @ 958,997 CZK\nFees are 0.23099371 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (412.36871000056233628494494990 CZK)\nThe limits being 0.10 % (33.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04822878 BTC (32,590.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.92 % (13,661.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,009.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03471003 BTC (33,286.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006858 BTC for 65.77 CZK @ 958,997 CZK\nFees are 0.23099371 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (412.36871000056233628494494990 CZK)\nThe limits being 0.10 % (33.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04822878 BTC (32,590.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.92 % (13,661.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,009.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03471003 BTC (33,286.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 494 transactions" + } + ] + }, + { + "id": 495, + "type": "message", + "date": "2024-01-01T01:29:04", + "date_unixtime": "1704068944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006881 BTC for 65.76 CZK @ 955,718 CZK\nFees are 0.23097594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.35 % (449.18745996916619473175089048 CZK)\nThe limits being 0.10 % (33.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04829759 BTC (32,656.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.35 % (13,502.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 943.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03477884 BTC (33,238.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006881 BTC for 65.76 CZK @ 955,718 CZK\nFees are 0.23097594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.35 % (449.18745996916619473175089048 CZK)\nThe limits being 0.10 % (33.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04829759 BTC (32,656.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.35 % (13,502.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 943.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03477884 BTC (33,238.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 495 transactions" + } + ] + }, + { + "id": 496, + "type": "message", + "date": "2024-01-01T13:29:04", + "date_unixtime": "1704112144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006864 BTC for 65.77 CZK @ 958,162 CZK\nFees are 0.23099450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (335.35669995487820599928223248 CZK)\nThe limits being 0.10 % (33.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04836623 BTC (32,722.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.62 % (13,620.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 877.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03484748 BTC (33,389.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006864 BTC for 65.77 CZK @ 958,162 CZK\nFees are 0.23099450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (335.35669995487820599928223248 CZK)\nThe limits being 0.10 % (33.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04836623 BTC (32,722.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.62 % (13,620.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 877.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03484748 BTC (33,389.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 496 transactions" + } + ] + }, + { + "id": 497, + "type": "message", + "date": "2024-01-02T01:29:05", + "date_unixtime": "1704155345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006557 BTC for 65.77 CZK @ 1,003,000 CZK\nFees are 0.23098913 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (170.50999998708196772634805176 CZK)\nThe limits being 0.10 % (35.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04843180 BTC (32,788.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,003,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 48.15 % (15,788.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 811.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03491305 BTC (35,017.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006557 BTC for 65.77 CZK @ 1,003,000 CZK\nFees are 0.23098913 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (170.50999998708196772634805176 CZK)\nThe limits being 0.10 % (35.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04843180 BTC (32,788.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,003,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 48.15 % (15,788.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 811.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03491305 BTC (35,017.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 497 transactions" + } + ] + }, + { + "id": 498, + "type": "message", + "date": "2024-01-02T13:29:03", + "date_unixtime": "1704198543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006404 BTC for 65.76 CZK @ 1,026,899 CZK\nFees are 0.23097473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (143.76585999594797347323094965 CZK)\nThe limits being 0.10 % (35.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04849584 BTC (32,854.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,026,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.58 % (16,946.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 745.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03497709 BTC (35,917.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006404 BTC for 65.76 CZK @ 1,026,899 CZK\nFees are 0.23097473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (143.76585999594797347323094965 CZK)\nThe limits being 0.10 % (35.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04849584 BTC (32,854.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,026,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.58 % (16,946.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 745.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03497709 BTC (35,917.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 498 transactions" + } + ] + }, + { + "id": 499, + "type": "message", + "date": "2024-01-03T01:29:05", + "date_unixtime": "1704241745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006477 BTC for 65.76 CZK @ 1,015,298 CZK\nFees are 0.23096855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (121.83575999979691275071755572 CZK)\nThe limits being 0.10 % (35.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04856061 BTC (32,920.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,015,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.77 % (16,383.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 679.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03504186 BTC (35,577.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006477 BTC for 65.76 CZK @ 1,015,298 CZK\nFees are 0.23096855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (121.83575999979691275071755572 CZK)\nThe limits being 0.10 % (35.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04856061 BTC (32,920.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,015,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.77 % (16,383.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 679.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03504186 BTC (35,577.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 499 transactions" + } + ] + }, + { + "id": 500, + "type": "message", + "date": "2024-01-03T13:29:03", + "date_unixtime": "1704284943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006848 BTC for 65.77 CZK @ 960,381 CZK\nFees are 0.23098976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (105.64190998706629600137835333 CZK)\nThe limits being 0.10 % (33.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04862909 BTC (32,986.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.58 % (13,716.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 613.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03511034 BTC (33,719.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006848 BTC for 65.77 CZK @ 960,381 CZK\nFees are 0.23098976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (105.64190998706629600137835333 CZK)\nThe limits being 0.10 % (33.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04862909 BTC (32,986.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.58 % (13,716.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 613.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03511034 BTC (33,719.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 500 transactions" + } + ] + }, + { + "id": 501, + "type": "message", + "date": "2024-01-04T01:29:03", + "date_unixtime": "1704328143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006742 BTC for 65.77 CZK @ 975,462 CZK\nFees are 0.23098540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (107.30081998676539557410824204 CZK)\nThe limits being 0.10 % (34.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04869651 BTC (33,052.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.72 % (14,449.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 547.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03517776 BTC (34,314.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006742 BTC for 65.77 CZK @ 975,462 CZK\nFees are 0.23098540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (107.30081998676539557410824204 CZK)\nThe limits being 0.10 % (34.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04869651 BTC (33,052.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.72 % (14,449.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 547.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03517776 BTC (34,314.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 501 transactions" + } + ] + }, + { + "id": 502, + "type": "message", + "date": "2024-01-04T13:29:07", + "date_unixtime": "1704371347", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006725 BTC for 65.77 CZK @ 977,965 CZK\nFees are 0.23099417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (97.79649999722162023994087608 CZK)\nThe limits being 0.10 % (34.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04876376 BTC (33,118.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.00 % (14,571.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 481.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03524501 BTC (34,468.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006725 BTC for 65.77 CZK @ 977,965 CZK\nFees are 0.23099417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (97.79649999722162023994087608 CZK)\nThe limits being 0.10 % (34.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04876376 BTC (33,118.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.00 % (14,571.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 481.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03524501 BTC (34,468.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 502 transactions" + } + ] + }, + { + "id": 503, + "type": "message", + "date": "2024-01-05T01:29:03", + "date_unixtime": "1704414543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006560 BTC for 65.76 CZK @ 1,002,495 CZK\nFees are 0.23097846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 121.95 % (80.19959999756948242128161192 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04882936 BTC (33,184.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,002,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.51 % (15,767.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 415.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00006560 BTC (65.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006560 BTC for 65.76 CZK @ 1,002,495 CZK\nFees are 0.23097846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 121.95 % (80.19959999756948242128161192 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04882936 BTC (33,184.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,002,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.51 % (15,767.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 415.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00006560 BTC (65.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 503 transactions" + } + ] + }, + { + "id": 504, + "type": "message", + "date": "2024-01-05T13:29:03", + "date_unixtime": "1704457743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006593 BTC for 65.76 CZK @ 997,485 CZK\nFees are 0.23098026 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 76.03 % (99.74849999822402268535176178 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04889529 BTC (33,250.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.68 % (15,522.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,349.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00013153 BTC (131.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006593 BTC for 65.76 CZK @ 997,485 CZK\nFees are 0.23098026 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 76.03 % (99.74849999822402268535176178 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04889529 BTC (33,250.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.68 % (15,522.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,349.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00013153 BTC (131.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 504 transactions" + } + ] + }, + { + "id": 505, + "type": "message", + "date": "2024-01-06T01:29:03", + "date_unixtime": "1704500943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006590 BTC for 65.77 CZK @ 997,972 CZK\nFees are 0.23098788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 60.78 % (119.75663999673373844049619957 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04896119 BTC (33,316.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.66 % (15,545.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,283.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00019743 BTC (197.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006590 BTC for 65.77 CZK @ 997,972 CZK\nFees are 0.23098788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 60.78 % (119.75663999673373844049619957 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04896119 BTC (33,316.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.66 % (15,545.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,283.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00019743 BTC (197.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 505 transactions" + } + ] + }, + { + "id": 506, + "type": "message", + "date": "2024-01-06T13:29:03", + "date_unixtime": "1704544143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006653 BTC for 65.76 CZK @ 988,490 CZK\nFees are 0.23098045 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 30.31 % (79.079199989275473614781752520 CZK)\nThe limits being 0.10 % (0.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04902772 BTC (33,382.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.18 % (15,081.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,217.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00026396 BTC (260.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006653 BTC for 65.76 CZK @ 988,490 CZK\nFees are 0.23098045 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 30.31 % (79.079199989275473614781752520 CZK)\nThe limits being 0.10 % (0.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04902772 BTC (33,382.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.18 % (15,081.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,217.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00026396 BTC (260.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 506 transactions" + } + ] + }, + { + "id": 507, + "type": "message", + "date": "2024-01-07T01:29:03", + "date_unixtime": "1704587343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006616 BTC for 65.77 CZK @ 994,069 CZK\nFees are 0.23099227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 21.20 % (69.584829991944759243494203181 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04909388 BTC (33,448.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.91 % (15,354.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,151.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00033012 BTC (328.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006616 BTC for 65.77 CZK @ 994,069 CZK\nFees are 0.23099227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 21.20 % (69.584829991944759243494203181 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04909388 BTC (33,448.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.91 % (15,354.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,151.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00033012 BTC (328.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 507 transactions" + } + ] + }, + { + "id": 508, + "type": "message", + "date": "2024-01-07T13:29:03", + "date_unixtime": "1704630543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006598 BTC for 65.76 CZK @ 996,687 CZK\nFees are 0.23097051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.20 % (79.73495998923440586018048682 CZK)\nThe limits being 0.10 % (0.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04915986 BTC (33,514.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.20 % (15,482.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,085.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00039610 BTC (394.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006598 BTC for 65.76 CZK @ 996,687 CZK\nFees are 0.23097051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 20.20 % (79.73495998923440586018048682 CZK)\nThe limits being 0.10 % (0.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04915986 BTC (33,514.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.20 % (15,482.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,085.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00039610 BTC (394.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 508 transactions" + } + ] + }, + { + "id": 509, + "type": "message", + "date": "2024-01-08T01:29:10", + "date_unixtime": "1704673750", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006639 BTC for 65.77 CZK @ 990,658 CZK\nFees are 0.23099993 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 17.30 % (79.25263999259107658516775861 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04922625 BTC (33,580.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 990,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.22 % (15,186.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,019.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00046249 BTC (458.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006639 BTC for 65.77 CZK @ 990,658 CZK\nFees are 0.23099993 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 17.30 % (79.25263999259107658516775861 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04922625 BTC (33,580.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 990,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.22 % (15,186.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,019.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00046249 BTC (458.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 509 transactions" + } + ] + }, + { + "id": 510, + "type": "message", + "date": "2024-01-08T13:29:05", + "date_unixtime": "1704716945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006535 BTC for 65.76 CZK @ 1,006,348 CZK\nFees are 0.23098257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 17.05 % (90.57131999135390326664630946 CZK)\nThe limits being 0.10 % (0.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04929160 BTC (33,646.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,006,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.43 % (15,958.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 953.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00052784 BTC (531.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006535 BTC for 65.76 CZK @ 1,006,348 CZK\nFees are 0.23098257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 17.05 % (90.57131999135390326664630946 CZK)\nThe limits being 0.10 % (0.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04929160 BTC (33,646.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,006,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.43 % (15,958.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 953.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00052784 BTC (531.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 510 transactions" + } + ] + }, + { + "id": 511, + "type": "message", + "date": "2024-01-09T01:29:04", + "date_unixtime": "1704760144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006245 BTC for 65.77 CZK @ 1,053,136 CZK\nFees are 0.23099486 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 74.54 % (463.37983999157472465266682701 CZK)\nThe limits being 0.10 % (0.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04935405 BTC (33,712.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,053,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.18 % (18,264.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 887.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00059029 BTC (621.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006245 BTC for 65.77 CZK @ 1,053,136 CZK\nFees are 0.23099486 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 74.54 % (463.37983999157472465266682701 CZK)\nThe limits being 0.10 % (0.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04935405 BTC (33,712.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,053,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.18 % (18,264.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 887.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00059029 BTC (621.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 511 transactions" + } + ] + }, + { + "id": 512, + "type": "message", + "date": "2024-01-09T13:29:07", + "date_unixtime": "1704803347", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006256 BTC for 65.77 CZK @ 1,051,247 CZK\nFees are 0.23098668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 18.38 % (126.14963999403621850377897308 CZK)\nThe limits being 0.10 % (0.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04941661 BTC (33,778.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,051,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.80 % (18,170.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 821.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00065285 BTC (686.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006256 BTC for 65.77 CZK @ 1,051,247 CZK\nFees are 0.23098668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 18.38 % (126.14963999403621850377897308 CZK)\nThe limits being 0.10 % (0.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04941661 BTC (33,778.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,051,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.80 % (18,170.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 821.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00065285 BTC (686.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 512 transactions" + } + ] + }, + { + "id": 513, + "type": "message", + "date": "2024-01-10T01:29:05", + "date_unixtime": "1704846545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006330 BTC for 65.76 CZK @ 1,038,872 CZK\nFees are 0.23096766 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 12.57 % (93.49847999773305279861716221 CZK)\nThe limits being 0.10 % (0.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04947991 BTC (33,844.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,038,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.88 % (17,559.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 755.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00071615 BTC (743.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006330 BTC for 65.76 CZK @ 1,038,872 CZK\nFees are 0.23096766 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 12.57 % (93.49847999773305279861716221 CZK)\nThe limits being 0.10 % (0.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04947991 BTC (33,844.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,038,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.88 % (17,559.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 755.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00071615 BTC (743.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 513 transactions" + } + ] + }, + { + "id": 514, + "type": "message", + "date": "2024-01-10T13:29:03", + "date_unixtime": "1704889743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006458 BTC for 65.77 CZK @ 1,018,390 CZK\nFees are 0.23099235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 11.53 % (91.6550999976391085829513087 CZK)\nThe limits being 0.10 % (0.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04954449 BTC (33,910.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,018,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 48.79 % (16,545.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 689.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00078073 BTC (795.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006458 BTC for 65.77 CZK @ 1,018,390 CZK\nFees are 0.23099235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 11.53 % (91.6550999976391085829513087 CZK)\nThe limits being 0.10 % (0.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04954449 BTC (33,910.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,018,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 48.79 % (16,545.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 689.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00078073 BTC (795.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 514 transactions" + } + ] + }, + { + "id": 515, + "type": "message", + "date": "2024-01-11T01:29:05", + "date_unixtime": "1704932945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006297 BTC for 65.76 CZK @ 1,044,308 CZK\nFees are 0.23096582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.67 % (93.98771999763571663066831597 CZK)\nThe limits being 0.10 % (0.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04960746 BTC (33,976.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,044,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.48 % (17,829.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 623.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00084370 BTC (881.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006297 BTC for 65.76 CZK @ 1,044,308 CZK\nFees are 0.23096582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.67 % (93.98771999763571663066831597 CZK)\nThe limits being 0.10 % (0.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04960746 BTC (33,976.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,044,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.48 % (17,829.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 623.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00084370 BTC (881.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 515 transactions" + } + ] + }, + { + "id": 516, + "type": "message", + "date": "2024-01-11T13:29:04", + "date_unixtime": "1704976144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006174 BTC for 65.76 CZK @ 1,065,191 CZK\nFees are 0.23098274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.84 % (85.21527999588095375289176577 CZK)\nThe limits being 0.10 % (0.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04966920 BTC (34,042.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,065,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.42 % (18,865.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 557.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00090544 BTC (964.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006174 BTC for 65.76 CZK @ 1,065,191 CZK\nFees are 0.23098274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.84 % (85.21527999588095375289176577 CZK)\nThe limits being 0.10 % (0.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04966920 BTC (34,042.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,065,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.42 % (18,865.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 557.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00090544 BTC (964.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 516 transactions" + } + ] + }, + { + "id": 517, + "type": "message", + "date": "2024-01-12T01:29:03", + "date_unixtime": "1705019343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006289 BTC for 65.77 CZK @ 1,045,764 CZK\nFees are 0.23099400 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.29 % (94.11875999592141449908623998 CZK)\nThe limits being 0.10 % (1.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04973209 BTC (34,108.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,045,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.48 % (17,899.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 491.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00096833 BTC (1,012.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006289 BTC for 65.77 CZK @ 1,045,764 CZK\nFees are 0.23099400 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.29 % (94.11875999592141449908623998 CZK)\nThe limits being 0.10 % (1.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04973209 BTC (34,108.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,045,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.48 % (17,899.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 491.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00096833 BTC (1,012.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 517 transactions" + } + ] + }, + { + "id": 518, + "type": "message", + "date": "2024-01-12T13:29:03", + "date_unixtime": "1705062543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006274 BTC for 65.76 CZK @ 1,048,178 CZK\nFees are 0.23097500 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.76 % (83.85423999107999273819921635 CZK)\nThe limits being 0.10 % (1.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04979483 BTC (34,174.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,048,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.73 % (18,019.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 425.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00103107 BTC (1,080.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006274 BTC for 65.76 CZK @ 1,048,178 CZK\nFees are 0.23097500 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.76 % (83.85423999107999273819921635 CZK)\nThe limits being 0.10 % (1.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04979483 BTC (34,174.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,048,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.73 % (18,019.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 425.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00103107 BTC (1,080.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 518 transactions" + } + ] + }, + { + "id": 519, + "type": "message", + "date": "2024-01-13T01:29:04", + "date_unixtime": "1705105744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006763 BTC for 65.76 CZK @ 972,362 CZK\nFees are 0.23096852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.10 % (97.23619998937623389849264083 CZK)\nThe limits being 0.10 % (1.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04986246 BTC (34,240.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.60 % (14,244.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 359.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00109870 BTC (1,068.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006763 BTC for 65.76 CZK @ 972,362 CZK\nFees are 0.23096852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.10 % (97.23619998937623389849264083 CZK)\nThe limits being 0.10 % (1.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04986246 BTC (34,240.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.60 % (14,244.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 359.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00109870 BTC (1,068.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 519 transactions" + } + ] + }, + { + "id": 520, + "type": "message", + "date": "2024-01-13T13:29:04", + "date_unixtime": "1705148944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006797 BTC for 65.77 CZK @ 967,620 CZK\nFees are 0.23099763 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 21.43 % (241.90499996371387799022385898 CZK)\nThe limits being 0.10 % (1.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04993043 BTC (34,306.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.83 % (14,007.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 293.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00116667 BTC (1,128.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006797 BTC for 65.77 CZK @ 967,620 CZK\nFees are 0.23099763 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 21.43 % (241.90499996371387799022385898 CZK)\nThe limits being 0.10 % (1.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04993043 BTC (34,306.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.83 % (14,007.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 293.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00116667 BTC (1,128.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 520 transactions" + } + ] + }, + { + "id": 521, + "type": "message", + "date": "2024-01-14T01:29:05", + "date_unixtime": "1705192145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006776 BTC for 65.77 CZK @ 970,566 CZK\nFees are 0.23098506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 28.35 % (339.69809998682297907736146627 CZK)\nThe limits being 0.10 % (1.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04999819 BTC (34,372.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.18 % (14,154.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 227.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00123443 BTC (1,198.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006776 BTC for 65.77 CZK @ 970,566 CZK\nFees are 0.23098506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 28.35 % (339.69809998682297907736146627 CZK)\nThe limits being 0.10 % (1.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04999819 BTC (34,372.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.18 % (14,154.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 227.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00123443 BTC (1,198.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 521 transactions" + } + ] + }, + { + "id": 522, + "type": "message", + "date": "2024-01-14T13:29:05", + "date_unixtime": "1705235345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006785 BTC for 65.77 CZK @ 969,285 CZK\nFees are 0.23098659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 43.77 % (552.49244995500273728758483114 CZK)\nThe limits being 0.10 % (1.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05006604 BTC (34,438.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 969,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.91 % (14,090.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 161.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00130228 BTC (1,262.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006785 BTC for 65.77 CZK @ 969,285 CZK\nFees are 0.23098659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 43.77 % (552.49244995500273728758483114 CZK)\nThe limits being 0.10 % (1.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05006604 BTC (34,438.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 969,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.91 % (14,090.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 161.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00130228 BTC (1,262.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 522 transactions" + } + ] + }, + { + "id": 523, + "type": "message", + "date": "2024-01-15T01:29:04", + "date_unixtime": "1705278544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006899 BTC for 65.76 CZK @ 953,252 CZK\nFees are 0.23098261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 34.27 % (448.02843997162272963601160254 CZK)\nThe limits being 0.10 % (1.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05013503 BTC (34,504.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 953,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.51 % (13,287.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 95.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00137127 BTC (1,307.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006899 BTC for 65.76 CZK @ 953,252 CZK\nFees are 0.23098261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 34.27 % (448.02843997162272963601160254 CZK)\nThe limits being 0.10 % (1.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05013503 BTC (34,504.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 953,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.51 % (13,287.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 95.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00137127 BTC (1,307.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 523 transactions" + } + ] + }, + { + "id": 524, + "type": "message", + "date": "2024-01-15T13:29:03", + "date_unixtime": "1705321743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006804 BTC for 65.76 CZK @ 966,521 CZK\nFees are 0.23097290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 27.10 % (376.94318999463078519713630160 CZK)\nThe limits being 0.10 % (1.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05020307 BTC (34,570.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 966,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.36 % (13,952.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,029.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00143931 BTC (1,391.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006804 BTC for 65.76 CZK @ 966,521 CZK\nFees are 0.23097290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 27.10 % (376.94318999463078519713630160 CZK)\nThe limits being 0.10 % (1.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05020307 BTC (34,570.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 966,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.36 % (13,952.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,029.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00143931 BTC (1,391.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 524 transactions" + } + ] + }, + { + "id": 525, + "type": "message", + "date": "2024-01-16T01:29:03", + "date_unixtime": "1705364943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006805 BTC for 65.77 CZK @ 966,443 CZK\nFees are 0.23098820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 19.24 % (280.26846999352376893949794384 CZK)\nThe limits being 0.10 % (1.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05027112 BTC (34,636.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 966,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.27 % (13,948.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 963.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00150736 BTC (1,456.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006805 BTC for 65.77 CZK @ 966,443 CZK\nFees are 0.23098820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 19.24 % (280.26846999352376893949794384 CZK)\nThe limits being 0.10 % (1.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05027112 BTC (34,636.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 966,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.27 % (13,948.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 963.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00150736 BTC (1,456.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 525 transactions" + } + ] + }, + { + "id": 526, + "type": "message", + "date": "2024-01-16T13:29:04", + "date_unixtime": "1705408144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006729 BTC for 65.76 CZK @ 977,323 CZK\nFees are 0.23097984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 11.43 % (175.91813998308639334331622646 CZK)\nThe limits being 0.10 % (1.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05033841 BTC (34,702.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.77 % (14,494.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 897.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00157465 BTC (1,538.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006729 BTC for 65.76 CZK @ 977,323 CZK\nFees are 0.23097984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 11.43 % (175.91813998308639334331622646 CZK)\nThe limits being 0.10 % (1.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05033841 BTC (34,702.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.77 % (14,494.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 897.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00157465 BTC (1,538.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 526 transactions" + } + ] + }, + { + "id": 527, + "type": "message", + "date": "2024-01-17T01:29:03", + "date_unixtime": "1705451343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006688 BTC for 65.77 CZK @ 983,354 CZK\nFees are 0.23098915 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 14.01 % (226.17141998519535692063423950 CZK)\nThe limits being 0.10 % (1.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05040529 BTC (34,768.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 983,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.56 % (14,798.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 831.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00164153 BTC (1,614.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006688 BTC for 65.77 CZK @ 983,354 CZK\nFees are 0.23098915 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 14.01 % (226.17141998519535692063423950 CZK)\nThe limits being 0.10 % (1.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05040529 BTC (34,768.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 983,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.56 % (14,798.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 831.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00164153 BTC (1,614.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 527 transactions" + } + ] + }, + { + "id": 528, + "type": "message", + "date": "2024-01-17T13:29:03", + "date_unixtime": "1705494543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006751 BTC for 65.77 CZK @ 974,199 CZK\nFees are 0.23099427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.36 % (155.87183999831134651885339542 CZK)\nThe limits being 0.10 % (1.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05047280 BTC (34,834.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 974,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.16 % (14,336.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 766.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00170904 BTC (1,664.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006751 BTC for 65.77 CZK @ 974,199 CZK\nFees are 0.23099427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.36 % (155.87183999831134651885339542 CZK)\nThe limits being 0.10 % (1.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05047280 BTC (34,834.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 974,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.16 % (14,336.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 766.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00170904 BTC (1,664.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 528 transactions" + } + ] + }, + { + "id": 529, + "type": "message", + "date": "2024-01-18T01:29:04", + "date_unixtime": "1705537744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006759 BTC for 65.77 CZK @ 973,035 CZK\nFees are 0.23099168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.57 % (165.41594998803197537719918442 CZK)\nThe limits being 0.10 % (1.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05054039 BTC (34,900.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 973,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.91 % (14,277.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 700.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00177663 BTC (1,728.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006759 BTC for 65.77 CZK @ 973,035 CZK\nFees are 0.23099168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.57 % (165.41594998803197537719918442 CZK)\nThe limits being 0.10 % (1.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05054039 BTC (34,900.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 973,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.91 % (14,277.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 700.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00177663 BTC (1,728.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 529 transactions" + } + ] + }, + { + "id": 530, + "type": "message", + "date": "2024-01-18T13:29:03", + "date_unixtime": "1705580943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006796 BTC for 65.77 CZK @ 967,717 CZK\nFees are 0.23098680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.18 % (270.96075997692596219294857639 CZK)\nThe limits being 0.10 % (1.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05060835 BTC (34,966.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.06 % (14,008.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 634.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00184459 BTC (1,785.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006796 BTC for 65.77 CZK @ 967,717 CZK\nFees are 0.23098680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.18 % (270.96075997692596219294857639 CZK)\nThe limits being 0.10 % (1.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05060835 BTC (34,966.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.06 % (14,008.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 634.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00184459 BTC (1,785.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 530 transactions" + } + ] + }, + { + "id": 531, + "type": "message", + "date": "2024-01-19T01:29:04", + "date_unixtime": "1705624144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006979 BTC for 65.77 CZK @ 942,330 CZK\nFees are 0.23098386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.34 % (150.77279998297975997891889062 CZK)\nThe limits being 0.10 % (2.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05067814 BTC (35,032.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 942,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.32 % (12,723.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 318.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00218129 BTC (2,055.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006979 BTC for 65.77 CZK @ 942,330 CZK\nFees are 0.23098386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.34 % (150.77279998297975997891889062 CZK)\nThe limits being 0.10 % (2.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05067814 BTC (35,032.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 942,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.32 % (12,723.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 318.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00218129 BTC (2,055.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 531 transactions" + } + ] + }, + { + "id": 532, + "type": "message", + "date": "2024-01-19T13:29:04", + "date_unixtime": "1705667344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006970 BTC for 65.77 CZK @ 943,545 CZK\nFees are 0.23098343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.33 % (113.22539999528193646484077608 CZK)\nThe limits being 0.10 % (2.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05074784 BTC (35,098.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.43 % (12,784.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 252.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00225099 BTC (2,123.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006970 BTC for 65.77 CZK @ 943,545 CZK\nFees are 0.23098343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.33 % (113.22539999528193646484077608 CZK)\nThe limits being 0.10 % (2.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05074784 BTC (35,098.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.43 % (12,784.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 252.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00225099 BTC (2,123.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 532 transactions" + } + ] + }, + { + "id": 533, + "type": "message", + "date": "2024-01-20T01:29:04", + "date_unixtime": "1705710544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006924 BTC for 65.76 CZK @ 949,798 CZK\nFees are 0.23097966 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.03 % (132.9717199852509285093161802 CZK)\nThe limits being 0.10 % (2.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05081708 BTC (35,164.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.26 % (13,101.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 186.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00232023 BTC (2,203.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006924 BTC for 65.76 CZK @ 949,798 CZK\nFees are 0.23097966 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.03 % (132.9717199852509285093161802 CZK)\nThe limits being 0.10 % (2.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05081708 BTC (35,164.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.26 % (13,101.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 186.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00232023 BTC (2,203.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 533 transactions" + } + ] + }, + { + "id": 534, + "type": "message", + "date": "2024-01-20T13:29:03", + "date_unixtime": "1705753743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006934 BTC for 65.77 CZK @ 948,510 CZK\nFees are 0.23099957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.60 % (104.33609999699637941562765107 CZK)\nThe limits being 0.10 % (2.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05088642 BTC (35,230.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 948,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.00 % (13,036.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 120.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00238957 BTC (2,266.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006934 BTC for 65.77 CZK @ 948,510 CZK\nFees are 0.23099957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.60 % (104.33609999699637941562765107 CZK)\nThe limits being 0.10 % (2.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05088642 BTC (35,230.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 948,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.00 % (13,036.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 120.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00238957 BTC (2,266.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 534 transactions" + } + ] + }, + { + "id": 535, + "type": "message", + "date": "2024-01-21T01:29:00", + "date_unixtime": "1705796940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006910 BTC for 65.76 CZK @ 951,718 CZK\nFees are 0.23097860 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.69 % (133.24051998324244305567272866 CZK)\nThe limits being 0.10 % (2.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05095552 BTC (35,295.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.40 % (13,199.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 54.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00245867 BTC (2,339.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006910 BTC for 65.76 CZK @ 951,718 CZK\nFees are 0.23097860 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.69 % (133.24051998324244305567272866 CZK)\nThe limits being 0.10 % (2.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05095552 BTC (35,295.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.40 % (13,199.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 54.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00245867 BTC (2,339.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 535 transactions" + } + ] + }, + { + "id": 536, + "type": "message", + "date": "2024-01-21T13:29:00", + "date_unixtime": "1705840140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.02926915 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.02926915 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 537, + "type": "message", + "date": "2024-01-22T01:29:00", + "date_unixtime": "1705883340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006936 BTC for 65.77 CZK @ 948,219 CZK\nFees are 0.23099531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.19 % (151.71503998979350818846838832 CZK)\nThe limits being 0.10 % (2.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05102488 BTC (35,361.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 948,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.82 % (13,020.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 934.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00258469 BTC (2,450.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006936 BTC for 65.77 CZK @ 948,219 CZK\nFees are 0.23099531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.19 % (151.71503998979350818846838832 CZK)\nThe limits being 0.10 % (2.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05102488 BTC (35,361.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 948,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.82 % (13,020.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 934.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00258469 BTC (2,450.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 536 transactions" + } + ] + }, + { + "id": 538, + "type": "message", + "date": "2024-01-22T13:29:00", + "date_unixtime": "1705926540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007080 BTC for 65.77 CZK @ 928,925 CZK\nFees are 0.23099327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.14 % (102.18174999225873285309326960 CZK)\nThe limits being 0.10 % (2.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05109568 BTC (35,427.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 928,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.97 % (12,036.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 868.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00265549 BTC (2,466.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007080 BTC for 65.77 CZK @ 928,925 CZK\nFees are 0.23099327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.14 % (102.18174999225873285309326960 CZK)\nThe limits being 0.10 % (2.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05109568 BTC (35,427.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 928,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.97 % (12,036.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 868.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00265549 BTC (2,466.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 537 transactions" + } + ] + }, + { + "id": 539, + "type": "message", + "date": "2024-01-23T01:29:01", + "date_unixtime": "1705969741", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007254 BTC for 65.76 CZK @ 906,575 CZK\nFees are 0.23097592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.67 % (90.65749999072724372883493381 CZK)\nThe limits being 0.10 % (2.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05116822 BTC (35,493.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 906,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.69 % (10,893.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 802.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00272803 BTC (2,473.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007254 BTC for 65.76 CZK @ 906,575 CZK\nFees are 0.23097592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.67 % (90.65749999072724372883493381 CZK)\nThe limits being 0.10 % (2.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05116822 BTC (35,493.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 906,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.69 % (10,893.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 802.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00272803 BTC (2,473.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 538 transactions" + } + ] + }, + { + "id": 540, + "type": "message", + "date": "2024-01-23T13:29:03", + "date_unixtime": "1706012943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007386 BTC for 65.77 CZK @ 890,405 CZK\nFees are 0.23098422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.57 % (89.04049999116280130294038561 CZK)\nThe limits being 0.10 % (2.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05124208 BTC (35,559.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 890,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.31 % (10,066.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 736.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00280189 BTC (2,494.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007386 BTC for 65.77 CZK @ 890,405 CZK\nFees are 0.23098422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.57 % (89.04049999116280130294038561 CZK)\nThe limits being 0.10 % (2.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05124208 BTC (35,559.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 890,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.31 % (10,066.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 736.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00280189 BTC (2,494.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 539 transactions" + } + ] + }, + { + "id": 541, + "type": "message", + "date": "2024-01-24T01:29:00", + "date_unixtime": "1706056140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007189 BTC for 65.77 CZK @ 914,852 CZK\nFees are 0.23099615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.26 % (164.67335998507934705925283208 CZK)\nThe limits being 0.10 % (2.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05131397 BTC (35,625.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 914,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.77 % (11,318.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 670.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00287378 BTC (2,629.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007189 BTC for 65.77 CZK @ 914,852 CZK\nFees are 0.23099615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.26 % (164.67335998507934705925283208 CZK)\nThe limits being 0.10 % (2.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05131397 BTC (35,625.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 914,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.77 % (11,318.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 670.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00287378 BTC (2,629.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 540 transactions" + } + ] + }, + { + "id": 542, + "type": "message", + "date": "2024-01-24T13:29:00", + "date_unixtime": "1706099340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007153 BTC for 65.76 CZK @ 919,382 CZK\nFees are 0.23097748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.40 % (91.93819999915018531184472409 CZK)\nThe limits being 0.10 % (2.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05138550 BTC (35,691.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 919,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.36 % (11,550.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 604.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00294531 BTC (2,707.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007153 BTC for 65.76 CZK @ 919,382 CZK\nFees are 0.23097748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.40 % (91.93819999915018531184472409 CZK)\nThe limits being 0.10 % (2.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05138550 BTC (35,691.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 919,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.36 % (11,550.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 604.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00294531 BTC (2,707.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 541 transactions" + } + ] + }, + { + "id": 543, + "type": "message", + "date": "2024-01-25T01:29:00", + "date_unixtime": "1706142540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007173 BTC for 65.77 CZK @ 916,855 CZK\nFees are 0.23098667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.98 % (82.51694999746808378954712458 CZK)\nThe limits being 0.10 % (2.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05145723 BTC (35,757.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 916,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.94 % (11,420.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 538.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00301704 BTC (2,766.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007173 BTC for 65.77 CZK @ 916,855 CZK\nFees are 0.23098667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.98 % (82.51694999746808378954712458 CZK)\nThe limits being 0.10 % (2.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05145723 BTC (35,757.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 916,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.94 % (11,420.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 538.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00301704 BTC (2,766.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 542 transactions" + } + ] + }, + { + "id": 544, + "type": "message", + "date": "2024-01-25T13:29:00", + "date_unixtime": "1706185740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007200 BTC for 65.77 CZK @ 913,431 CZK\nFees are 0.23099026 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.91 % (82.20878999750871948181365221 CZK)\nThe limits being 0.10 % (2.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05152923 BTC (35,823.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 913,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.39 % (11,244.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 472.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00308904 BTC (2,821.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007200 BTC for 65.77 CZK @ 913,431 CZK\nFees are 0.23099026 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.91 % (82.20878999750871948181365221 CZK)\nThe limits being 0.10 % (2.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05152923 BTC (35,823.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 913,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.39 % (11,244.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 472.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00308904 BTC (2,821.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 543 transactions" + } + ] + }, + { + "id": 545, + "type": "message", + "date": "2024-01-26T01:29:00", + "date_unixtime": "1706228940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007190 BTC for 65.76 CZK @ 914,635 CZK\nFees are 0.23097349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.85 % (82.31714999033286141065381041 CZK)\nThe limits being 0.10 % (2.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05160113 BTC (35,889.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 914,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.50 % (11,306.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 406.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00316094 BTC (2,891.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007190 BTC for 65.76 CZK @ 914,635 CZK\nFees are 0.23097349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.85 % (82.31714999033286141065381041 CZK)\nThe limits being 0.10 % (2.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05160113 BTC (35,889.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 914,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.50 % (11,306.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 406.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00316094 BTC (2,891.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 544 transactions" + } + ] + }, + { + "id": 546, + "type": "message", + "date": "2024-01-26T13:29:03", + "date_unixtime": "1706272143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006959 BTC for 65.76 CZK @ 944,979 CZK\nFees are 0.23096938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.48 % (75.598319999845346575103247272 CZK)\nThe limits being 0.10 % (3.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05167072 BTC (35,955.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.80 % (12,871.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 340.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00323053 BTC (3,052.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006959 BTC for 65.76 CZK @ 944,979 CZK\nFees are 0.23096938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.48 % (75.598319999845346575103247272 CZK)\nThe limits being 0.10 % (3.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05167072 BTC (35,955.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.80 % (12,871.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 340.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00323053 BTC (3,052.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 545 transactions" + } + ] + }, + { + "id": 547, + "type": "message", + "date": "2024-01-27T01:29:03", + "date_unixtime": "1706315343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006871 BTC for 65.77 CZK @ 957,197 CZK\nFees are 0.23099719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.33 % (105.29166999913053548499332528 CZK)\nThe limits being 0.10 % (3.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05173943 BTC (36,021.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.49 % (13,502.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,274.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00329924 BTC (3,158.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006871 BTC for 65.77 CZK @ 957,197 CZK\nFees are 0.23099719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.33 % (105.29166999913053548499332528 CZK)\nThe limits being 0.10 % (3.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05173943 BTC (36,021.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.49 % (13,502.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,274.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00329924 BTC (3,158.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 546 transactions" + } + ] + }, + { + "id": 548, + "type": "message", + "date": "2024-01-27T13:29:00", + "date_unixtime": "1706358540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006882 BTC for 65.76 CZK @ 955,568 CZK\nFees are 0.23097325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.38 % (76.445439995181062734946721640 CZK)\nThe limits being 0.10 % (3.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05180825 BTC (36,087.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.18 % (13,418.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,208.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00336806 BTC (3,218.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006882 BTC for 65.76 CZK @ 955,568 CZK\nFees are 0.23097325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.38 % (76.445439995181062734946721640 CZK)\nThe limits being 0.10 % (3.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05180825 BTC (36,087.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.18 % (13,418.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,208.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00336806 BTC (3,218.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 547 transactions" + } + ] + }, + { + "id": 549, + "type": "message", + "date": "2024-01-28T01:29:00", + "date_unixtime": "1706401740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006841 BTC for 65.77 CZK @ 961,390 CZK\nFees are 0.23099608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.33 % (76.911199994581164433472759096 CZK)\nThe limits being 0.10 % (3.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05187666 BTC (36,153.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 961,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.95 % (13,719.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,142.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00343647 BTC (3,303.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006841 BTC for 65.77 CZK @ 961,390 CZK\nFees are 0.23099608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.33 % (76.911199994581164433472759096 CZK)\nThe limits being 0.10 % (3.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05187666 BTC (36,153.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 961,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.95 % (13,719.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,142.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00343647 BTC (3,303.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 548 transactions" + } + ] + }, + { + "id": 550, + "type": "message", + "date": "2024-01-28T13:29:00", + "date_unixtime": "1706444940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006758 BTC for 65.76 CZK @ 973,123 CZK\nFees are 0.23097839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.14 % (107.04352999482574528658425902 CZK)\nThe limits being 0.10 % (3.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05194424 BTC (36,219.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 973,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.56 % (14,328.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,076.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00350405 BTC (3,409.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006758 BTC for 65.76 CZK @ 973,123 CZK\nFees are 0.23097839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.14 % (107.04352999482574528658425902 CZK)\nThe limits being 0.10 % (3.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05194424 BTC (36,219.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 973,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.56 % (14,328.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,076.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00350405 BTC (3,409.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 549 transactions" + } + ] + }, + { + "id": 551, + "type": "message", + "date": "2024-01-29T01:29:01", + "date_unixtime": "1706488141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006843 BTC for 65.76 CZK @ 961,006 CZK\nFees are 0.23097132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (86.49053999733943036286631162 CZK)\nThe limits being 0.10 % (3.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05201267 BTC (36,285.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 961,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.75 % (13,698.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,010.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00357248 BTC (3,433.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006843 BTC for 65.76 CZK @ 961,006 CZK\nFees are 0.23097132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (86.49053999733943036286631162 CZK)\nThe limits being 0.10 % (3.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05201267 BTC (36,285.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 961,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.75 % (13,698.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,010.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00357248 BTC (3,433.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 550 transactions" + } + ] + }, + { + "id": 552, + "type": "message", + "date": "2024-01-29T13:29:00", + "date_unixtime": "1706531340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006798 BTC for 65.76 CZK @ 967,391 CZK\nFees are 0.23097694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.47 % (87.06518999916884021546827938 CZK)\nThe limits being 0.10 % (3.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05208065 BTC (36,351.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.60 % (14,030.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 944.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00364046 BTC (3,521.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006798 BTC for 65.76 CZK @ 967,391 CZK\nFees are 0.23097694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.47 % (87.06518999916884021546827938 CZK)\nThe limits being 0.10 % (3.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05208065 BTC (36,351.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.60 % (14,030.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 944.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00364046 BTC (3,521.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 551 transactions" + } + ] + }, + { + "id": 553, + "type": "message", + "date": "2024-01-30T01:29:00", + "date_unixtime": "1706574540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006623 BTC for 65.77 CZK @ 993,000 CZK\nFees are 0.23098800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.97 % (109.22999999172457022495853070 CZK)\nThe limits being 0.10 % (3.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05214688 BTC (36,417.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.19 % (15,363.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 878.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00370669 BTC (3,680.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006623 BTC for 65.77 CZK @ 993,000 CZK\nFees are 0.23098800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.97 % (109.22999999172457022495853070 CZK)\nThe limits being 0.10 % (3.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05214688 BTC (36,417.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.19 % (15,363.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 878.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00370669 BTC (3,680.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 552 transactions" + } + ] + }, + { + "id": 554, + "type": "message", + "date": "2024-01-30T13:29:00", + "date_unixtime": "1706617740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006570 BTC for 65.76 CZK @ 1,000,970 CZK\nFees are 0.23097866 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.39 % (90.08729999795237217683313881 CZK)\nThe limits being 0.10 % (3.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05221258 BTC (36,483.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,000,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.25 % (15,779.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 812.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00377239 BTC (3,776.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006570 BTC for 65.76 CZK @ 1,000,970 CZK\nFees are 0.23097866 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.39 % (90.08729999795237217683313881 CZK)\nThe limits being 0.10 % (3.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05221258 BTC (36,483.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,000,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.25 % (15,779.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 812.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00377239 BTC (3,776.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 553 transactions" + } + ] + }, + { + "id": 555, + "type": "message", + "date": "2024-01-31T01:29:03", + "date_unixtime": "1706660943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006677 BTC for 65.76 CZK @ 984,930 CZK\nFees are 0.23097882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.60 % (98.49299999052291071410315506 CZK)\nThe limits being 0.10 % (3.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05227935 BTC (36,549.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.88 % (14,941.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 746.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00383916 BTC (3,781.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006677 BTC for 65.76 CZK @ 984,930 CZK\nFees are 0.23097882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.60 % (98.49299999052291071410315506 CZK)\nThe limits being 0.10 % (3.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05227935 BTC (36,549.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.88 % (14,941.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 746.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00383916 BTC (3,781.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 554 transactions" + } + ] + }, + { + "id": 556, + "type": "message", + "date": "2024-01-31T13:29:03", + "date_unixtime": "1706704143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006696 BTC for 65.77 CZK @ 982,209 CZK\nFees are 0.23099617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.56 % (98.22089999815460702356566831 CZK)\nThe limits being 0.10 % (3.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05234631 BTC (36,615.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 982,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.42 % (14,799.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 680.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00390612 BTC (3,836.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006696 BTC for 65.77 CZK @ 982,209 CZK\nFees are 0.23099617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.56 % (98.22089999815460702356566831 CZK)\nThe limits being 0.10 % (3.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05234631 BTC (36,615.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 982,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.42 % (14,799.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 680.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00390612 BTC (3,836.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 555 transactions" + } + ] + }, + { + "id": 557, + "type": "message", + "date": "2024-02-01T01:29:01", + "date_unixtime": "1706747341", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006736 BTC for 65.76 CZK @ 976,295 CZK\nFees are 0.23097691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (97.62949998638967887926698361 CZK)\nThe limits being 0.10 % (3.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05241367 BTC (36,681.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.50 % (14,489.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 614.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00397348 BTC (3,879.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006736 BTC for 65.76 CZK @ 976,295 CZK\nFees are 0.23097691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (97.62949998638967887926698361 CZK)\nThe limits being 0.10 % (3.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05241367 BTC (36,681.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.50 % (14,489.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 614.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00397348 BTC (3,879.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 556 transactions" + } + ] + }, + { + "id": 558, + "type": "message", + "date": "2024-02-01T13:29:01", + "date_unixtime": "1706790541", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006779 BTC for 65.77 CZK @ 970,167 CZK\nFees are 0.23099233 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.98 % (77.613359996172123045076117640 CZK)\nThe limits being 0.10 % (3.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05248146 BTC (36,747.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.55 % (14,167.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 548.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00404127 BTC (3,920.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006779 BTC for 65.77 CZK @ 970,167 CZK\nFees are 0.23099233 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.98 % (77.613359996172123045076117640 CZK)\nThe limits being 0.10 % (3.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05248146 BTC (36,747.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.55 % (14,167.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 548.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00404127 BTC (3,920.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 557 transactions" + } + ] + }, + { + "id": 559, + "type": "message", + "date": "2024-02-02T01:29:03", + "date_unixtime": "1706833743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006632 BTC for 65.76 CZK @ 991,601 CZK\nFees are 0.23097602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.16 % (128.90812999195217222231237713 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05254778 BTC (36,813.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.54 % (15,292.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 482.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00410759 BTC (4,073.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006632 BTC for 65.76 CZK @ 991,601 CZK\nFees are 0.23097602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.16 % (128.90812999195217222231237713 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05254778 BTC (36,813.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.54 % (15,292.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 482.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00410759 BTC (4,073.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 558 transactions" + } + ] + }, + { + "id": 560, + "type": "message", + "date": "2024-02-02T13:29:00", + "date_unixtime": "1706876940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006647 BTC for 65.77 CZK @ 989,460 CZK\nFees are 0.23099860 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.64 % (108.84059999719651297186191042 CZK)\nThe limits being 0.10 % (4.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05261425 BTC (36,879.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 989,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.16 % (15,179.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 416.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00417406 BTC (4,130.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006647 BTC for 65.77 CZK @ 989,460 CZK\nFees are 0.23099860 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.64 % (108.84059999719651297186191042 CZK)\nThe limits being 0.10 % (4.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05261425 BTC (36,879.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 989,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.16 % (15,179.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 416.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00417406 BTC (4,130.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 559 transactions" + } + ] + }, + { + "id": 561, + "type": "message", + "date": "2024-02-03T01:29:01", + "date_unixtime": "1706920141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006566 BTC for 65.76 CZK @ 1,001,584 CZK\nFees are 0.23097963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.12 % (90.14255998765211191229721257 CZK)\nThe limits being 0.10 % (4.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05267991 BTC (36,945.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,001,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.81 % (15,817.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 350.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00423972 BTC (4,246.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006566 BTC for 65.76 CZK @ 1,001,584 CZK\nFees are 0.23097963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.12 % (90.14255998765211191229721257 CZK)\nThe limits being 0.10 % (4.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05267991 BTC (36,945.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,001,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.81 % (15,817.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 350.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00423972 BTC (4,246.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 560 transactions" + } + ] + }, + { + "id": 562, + "type": "message", + "date": "2024-02-03T13:29:04", + "date_unixtime": "1706963344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006617 BTC for 65.76 CZK @ 993,821 CZK\nFees are 0.23096955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.88 % (208.70240998578422702045033707 CZK)\nThe limits being 0.10 % (4.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05274608 BTC (37,011.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.63 % (15,408.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 284.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00430589 BTC (4,279.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006617 BTC for 65.76 CZK @ 993,821 CZK\nFees are 0.23096955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.88 % (208.70240998578422702045033707 CZK)\nThe limits being 0.10 % (4.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05274608 BTC (37,011.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.63 % (15,408.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 284.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00430589 BTC (4,279.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 561 transactions" + } + ] + }, + { + "id": 563, + "type": "message", + "date": "2024-02-04T01:29:01", + "date_unixtime": "1707006541", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006633 BTC for 65.76 CZK @ 991,469 CZK\nFees are 0.23098010 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 13.04 % (565.13732995123129652277634338 CZK)\nThe limits being 0.10 % (4.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05281241 BTC (37,077.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.22 % (15,284.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 218.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00437222 BTC (4,334.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006633 BTC for 65.76 CZK @ 991,469 CZK\nFees are 0.23098010 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 13.04 % (565.13732995123129652277634338 CZK)\nThe limits being 0.10 % (4.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05281241 BTC (37,077.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.22 % (15,284.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 218.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00437222 BTC (4,334.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 562 transactions" + } + ] + }, + { + "id": 564, + "type": "message", + "date": "2024-02-04T13:29:01", + "date_unixtime": "1707049741", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006611 BTC for 65.77 CZK @ 994,838 CZK\nFees are 0.23099626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.03 % (89.53541999914532987214541873 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05287852 BTC (37,143.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.63 % (15,461.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 152.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00443833 BTC (4,415.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006611 BTC for 65.77 CZK @ 994,838 CZK\nFees are 0.23099626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.03 % (89.53541999914532987214541873 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05287852 BTC (37,143.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.63 % (15,461.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 152.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00443833 BTC (4,415.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 563 transactions" + } + ] + }, + { + "id": 565, + "type": "message", + "date": "2024-02-05T01:29:01", + "date_unixtime": "1707092941", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006678 BTC for 65.76 CZK @ 984,757 CZK\nFees are 0.23097284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.22 % (98.4756999946130442224302393 CZK)\nThe limits being 0.10 % (4.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05294530 BTC (37,209.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.12 % (14,928.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 86.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00450511 BTC (4,436.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006678 BTC for 65.76 CZK @ 984,757 CZK\nFees are 0.23097284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.22 % (98.4756999946130442224302393 CZK)\nThe limits being 0.10 % (4.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05294530 BTC (37,209.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.12 % (14,928.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 86.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00450511 BTC (4,436.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 564 transactions" + } + ] + }, + { + "id": 566, + "type": "message", + "date": "2024-02-05T13:29:01", + "date_unixtime": "1707136141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006554 BTC for 65.77 CZK @ 1,003,490 CZK\nFees are 0.23099624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.97 % (90.31409999849474048641776972 CZK)\nThe limits being 0.10 % (4.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05301084 BTC (37,275.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,003,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.71 % (15,920.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00457065 BTC (4,586.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006554 BTC for 65.77 CZK @ 1,003,490 CZK\nFees are 0.23099624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.97 % (90.31409999849474048641776972 CZK)\nThe limits being 0.10 % (4.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05301084 BTC (37,275.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,003,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.71 % (15,920.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00457065 BTC (4,586.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 565 transactions" + } + ] + }, + { + "id": 567, + "type": "message", + "date": "2024-02-06T01:29:01", + "date_unixtime": "1707179341", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006643 BTC for 65.77 CZK @ 989,993 CZK\nFees are 0.23098395 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.94 % (89.09936999667204225223759593 CZK)\nThe limits being 0.10 % (4.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05307727 BTC (37,341.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 989,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.72 % (15,204.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 954.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00463708 BTC (4,590.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.97 CZK over 566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006643 BTC for 65.77 CZK @ 989,993 CZK\nFees are 0.23098395 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.94 % (89.09936999667204225223759593 CZK)\nThe limits being 0.10 % (4.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05307727 BTC (37,341.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 989,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.72 % (15,204.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 954.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00463708 BTC (4,590.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.97 CZK over 566 transactions" + } + ] + }, + { + "id": 568, + "type": "message", + "date": "2024-02-06T13:29:03", + "date_unixtime": "1707222543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006606 BTC for 65.76 CZK @ 995,463 CZK\nFees are 0.23096656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.91 % (89.59166999968774140643985832 CZK)\nThe limits being 0.10 % (4.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05314333 BTC (37,407.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.42 % (15,494.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 888.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00470314 BTC (4,681.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006606 BTC for 65.76 CZK @ 995,463 CZK\nFees are 0.23096656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.91 % (89.59166999968774140643985832 CZK)\nThe limits being 0.10 % (4.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05314333 BTC (37,407.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.42 % (15,494.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 888.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00470314 BTC (4,681.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 567 transactions" + } + ] + }, + { + "id": 569, + "type": "message", + "date": "2024-02-07T01:29:01", + "date_unixtime": "1707265741", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006560 BTC for 65.76 CZK @ 1,002,483 CZK\nFees are 0.23097569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.89 % (90.22346999070327026140216559 CZK)\nThe limits being 0.10 % (4.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05320893 BTC (37,473.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,002,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.34 % (15,867.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 822.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00476874 BTC (4,780.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006560 BTC for 65.76 CZK @ 1,002,483 CZK\nFees are 0.23097569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.89 % (90.22346999070327026140216559 CZK)\nThe limits being 0.10 % (4.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05320893 BTC (37,473.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,002,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.34 % (15,867.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 822.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00476874 BTC (4,780.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 568 transactions" + } + ] + }, + { + "id": 570, + "type": "message", + "date": "2024-02-07T13:29:06", + "date_unixtime": "1707308946", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006592 BTC for 65.76 CZK @ 997,609 CZK\nFees are 0.23097394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (79.80871998974463165329115087 CZK)\nThe limits being 0.10 % (4.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05327485 BTC (37,539.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.58 % (15,607.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 756.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00483466 BTC (4,823.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006592 BTC for 65.76 CZK @ 997,609 CZK\nFees are 0.23097394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (79.80871998974463165329115087 CZK)\nThe limits being 0.10 % (4.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05327485 BTC (37,539.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.58 % (15,607.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 756.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00483466 BTC (4,823.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 569 transactions" + } + ] + }, + { + "id": 571, + "type": "message", + "date": "2024-02-08T01:29:01", + "date_unixtime": "1707352141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006364 BTC for 65.76 CZK @ 1,033,354 CZK\nFees are 0.23097486 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.08 % (206.67080000012526866213382012 CZK)\nThe limits being 0.10 % (5.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05333849 BTC (37,605.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,033,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.57 % (17,511.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 690.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00489830 BTC (5,061.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006364 BTC for 65.76 CZK @ 1,033,354 CZK\nFees are 0.23097486 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.08 % (206.67080000012526866213382012 CZK)\nThe limits being 0.10 % (5.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05333849 BTC (37,605.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,033,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.57 % (17,511.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 690.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00489830 BTC (5,061.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 570 transactions" + } + ] + }, + { + "id": 572, + "type": "message", + "date": "2024-02-08T13:29:04", + "date_unixtime": "1707395344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006323 BTC for 65.77 CZK @ 1,040,111 CZK\nFees are 0.23098740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (83.20887999387877049967687820 CZK)\nThe limits being 0.10 % (5.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05340172 BTC (37,671.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,040,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.44 % (17,871.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 624.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00496153 BTC (5,160.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006323 BTC for 65.77 CZK @ 1,040,111 CZK\nFees are 0.23098740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (83.20887999387877049967687820 CZK)\nThe limits being 0.10 % (5.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05340172 BTC (37,671.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,040,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.44 % (17,871.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 624.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00496153 BTC (5,160.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 571 transactions" + } + ] + }, + { + "id": 573, + "type": "message", + "date": "2024-02-09T01:29:01", + "date_unixtime": "1707438541", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006194 BTC for 65.76 CZK @ 1,061,683 CZK\nFees are 0.23096783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.79 % (95.55146998903900925385625609 CZK)\nThe limits being 0.10 % (5.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05346366 BTC (37,737.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,061,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.41 % (19,023.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 558.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00502347 BTC (5,333.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006194 BTC for 65.76 CZK @ 1,061,683 CZK\nFees are 0.23096783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.79 % (95.55146998903900925385625609 CZK)\nThe limits being 0.10 % (5.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05346366 BTC (37,737.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,061,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.41 % (19,023.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 558.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00502347 BTC (5,333.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 572 transactions" + } + ] + }, + { + "id": 574, + "type": "message", + "date": "2024-02-09T13:29:01", + "date_unixtime": "1707481741", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005964 BTC for 65.76 CZK @ 1,102,596 CZK\nFees are 0.23096143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (88.20767998791620341547708440 CZK)\nThe limits being 0.10 % (5.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05352330 BTC (37,803.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,102,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.11 % (21,210.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 492.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00508311 BTC (5,604.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005964 BTC for 65.76 CZK @ 1,102,596 CZK\nFees are 0.23096143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (88.20767998791620341547708440 CZK)\nThe limits being 0.10 % (5.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05352330 BTC (37,803.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,102,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.11 % (21,210.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 492.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00508311 BTC (5,604.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 573 transactions" + } + ] + }, + { + "id": 575, + "type": "message", + "date": "2024-02-10T01:29:01", + "date_unixtime": "1707524941", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005961 BTC for 65.77 CZK @ 1,103,311 CZK\nFees are 0.23099495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.75 % (99.29798999927029428204103955 CZK)\nThe limits being 0.10 % (5.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05358291 BTC (37,869.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,103,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.11 % (21,248.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 426.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00514272 BTC (5,674.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005961 BTC for 65.77 CZK @ 1,103,311 CZK\nFees are 0.23099495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.75 % (99.29798999927029428204103955 CZK)\nThe limits being 0.10 % (5.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05358291 BTC (37,869.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,103,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.11 % (21,248.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 426.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00514272 BTC (5,674.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 574 transactions" + } + ] + }, + { + "id": 576, + "type": "message", + "date": "2024-02-10T13:29:01", + "date_unixtime": "1707568141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005961 BTC for 65.76 CZK @ 1,103,207 CZK\nFees are 0.23097318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (88.25655999673011595801208102 CZK)\nThe limits being 0.10 % (5.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05364252 BTC (37,935.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,103,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.00 % (21,243.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 360.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00520233 BTC (5,739.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005961 BTC for 65.76 CZK @ 1,103,207 CZK\nFees are 0.23097318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (88.25655999673011595801208102 CZK)\nThe limits being 0.10 % (5.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05364252 BTC (37,935.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,103,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.00 % (21,243.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 360.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00520233 BTC (5,739.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 575 transactions" + } + ] + }, + { + "id": 577, + "type": "message", + "date": "2024-02-11T01:29:01", + "date_unixtime": "1707611341", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005907 BTC for 65.76 CZK @ 1,113,239 CZK\nFees are 0.23096215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.90 % (111.32389998809819938662286534 CZK)\nThe limits being 0.10 % (5.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05370159 BTC (38,001.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,113,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.32 % (21,780.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 294.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00526140 BTC (5,857.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005907 BTC for 65.76 CZK @ 1,113,239 CZK\nFees are 0.23096215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.90 % (111.32389998809819938662286534 CZK)\nThe limits being 0.10 % (5.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05370159 BTC (38,001.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,113,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.32 % (21,780.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 294.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00526140 BTC (5,857.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 576 transactions" + } + ] + }, + { + "id": 578, + "type": "message", + "date": "2024-02-11T13:29:01", + "date_unixtime": "1707654541", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005833 BTC for 65.76 CZK @ 1,127,398 CZK\nFees are 0.23096951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (67.643879991092380166759048628 CZK)\nThe limits being 0.10 % (6.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05375992 BTC (38,067.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,127,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.21 % (22,541.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 228.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00531973 BTC (5,997.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005833 BTC for 65.76 CZK @ 1,127,398 CZK\nFees are 0.23096951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (67.643879991092380166759048628 CZK)\nThe limits being 0.10 % (6.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05375992 BTC (38,067.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,127,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.21 % (22,541.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 228.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00531973 BTC (5,997.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 577 transactions" + } + ] + }, + { + "id": 579, + "type": "message", + "date": "2024-02-12T01:29:03", + "date_unixtime": "1707697743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005818 BTC for 65.76 CZK @ 1,130,329 CZK\nFees are 0.23097449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (67.819739995611783645518444124 CZK)\nThe limits being 0.10 % (6.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05381810 BTC (38,133.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,130,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.52 % (22,698.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 162.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00537791 BTC (6,078.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005818 BTC for 65.76 CZK @ 1,130,329 CZK\nFees are 0.23097449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (67.819739995611783645518444124 CZK)\nThe limits being 0.10 % (6.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05381810 BTC (38,133.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,130,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.52 % (22,698.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 162.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00537791 BTC (6,078.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 578 transactions" + } + ] + }, + { + "id": 580, + "type": "message", + "date": "2024-02-12T13:29:01", + "date_unixtime": "1707740941", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005859 BTC for 65.76 CZK @ 1,122,388 CZK\nFees are 0.23096806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (56.119399995560851918439073075 CZK)\nThe limits being 0.10 % (6.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05387669 BTC (38,199.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,122,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.30 % (22,270.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 96.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00543650 BTC (6,101.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005859 BTC for 65.76 CZK @ 1,122,388 CZK\nFees are 0.23096806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (56.119399995560851918439073075 CZK)\nThe limits being 0.10 % (6.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05387669 BTC (38,199.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,122,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.30 % (22,270.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 96.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00543650 BTC (6,101.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 579 transactions" + } + ] + }, + { + "id": 581, + "type": "message", + "date": "2024-02-13T01:29:01", + "date_unixtime": "1707784141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005613 BTC for 65.77 CZK @ 1,171,710 CZK\nFees are 0.23099395 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.82 % (246.05909996998745971142689523 CZK)\nThe limits being 0.10 % (6.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05393282 BTC (38,265.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,171,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.14 % (24,927.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 30.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00549263 BTC (6,435.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005613 BTC for 65.77 CZK @ 1,171,710 CZK\nFees are 0.23099395 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.82 % (246.05909996998745971142689523 CZK)\nThe limits being 0.10 % (6.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05393282 BTC (38,265.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,171,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.14 % (24,927.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 30.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00549263 BTC (6,435.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 580 transactions" + } + ] + }, + { + "id": 582, + "type": "message", + "date": "2024-02-13T13:29:00", + "date_unixtime": "1707827340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (30.25674518 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (30.25674518 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 583, + "type": "message", + "date": "2024-02-14T01:29:00", + "date_unixtime": "1707870540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (30.25674518 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (30.25674518 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 584, + "type": "message", + "date": "2024-02-14T13:29:03", + "date_unixtime": "1707913743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005376 BTC for 65.76 CZK @ 1,223,238 CZK\nFees are 0.23097004 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.11 % (143.11884599548900277599829169 CZK)\nThe limits being 0.10 % (6.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05398658 BTC (38,331.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,223,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.28 % (27,706.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 964.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00554639 BTC (6,784.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005376 BTC for 65.76 CZK @ 1,223,238 CZK\nFees are 0.23097004 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.11 % (143.11884599548900277599829169 CZK)\nThe limits being 0.10 % (6.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05398658 BTC (38,331.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,223,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.28 % (27,706.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 964.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00554639 BTC (6,784.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 581 transactions" + } + ] + }, + { + "id": 585, + "type": "message", + "date": "2024-02-15T01:29:01", + "date_unixtime": "1707956941", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005334 BTC for 65.76 CZK @ 1,232,844 CZK\nFees are 0.23096521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.55 % (176.29669198300885035110521499 CZK)\nThe limits being 0.10 % (6.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05403992 BTC (38,397.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,232,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.51 % (28,225.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 898.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00559973 BTC (6,903.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005334 BTC for 65.76 CZK @ 1,232,844 CZK\nFees are 0.23096521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.55 % (176.29669198300885035110521499 CZK)\nThe limits being 0.10 % (6.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05403992 BTC (38,397.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,232,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.51 % (28,225.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 898.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00559973 BTC (6,903.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 582 transactions" + } + ] + }, + { + "id": 586, + "type": "message", + "date": "2024-02-15T13:29:04", + "date_unixtime": "1708000144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005328 BTC for 65.77 CZK @ 1,234,370 CZK\nFees are 0.23099097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (64.187239992608452997092757932 CZK)\nThe limits being 0.10 % (6.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05409320 BTC (38,463.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,234,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.59 % (28,307.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 832.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00565301 BTC (6,977.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005328 BTC for 65.77 CZK @ 1,234,370 CZK\nFees are 0.23099097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (64.187239992608452997092757932 CZK)\nThe limits being 0.10 % (6.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05409320 BTC (38,463.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,234,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.59 % (28,307.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 832.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00565301 BTC (6,977.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 583 transactions" + } + ] + }, + { + "id": 587, + "type": "message", + "date": "2024-02-16T01:29:21", + "date_unixtime": "1708043361", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005383 BTC for 65.76 CZK @ 1,221,594 CZK\nFees are 0.23095996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (79.40360999089106759075911256 CZK)\nThe limits being 0.10 % (6.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05414703 BTC (38,529.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,221,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.67 % (27,615.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 766.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00570684 BTC (6,971.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005383 BTC for 65.76 CZK @ 1,221,594 CZK\nFees are 0.23095996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (79.40360999089106759075911256 CZK)\nThe limits being 0.10 % (6.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05414703 BTC (38,529.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,221,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.67 % (27,615.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 766.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00570684 BTC (6,971.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 584 transactions" + } + ] + }, + { + "id": 588, + "type": "message", + "date": "2024-02-16T13:29:04", + "date_unixtime": "1708086544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005347 BTC for 65.77 CZK @ 1,230,000 CZK\nFees are 0.23099401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.39 % (98.40000000 CZK)\nThe limits being 0.10 % (7.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05420050 BTC (38,595.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,230,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.73 % (28,070.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 700.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00576031 BTC (7,085.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005347 BTC for 65.77 CZK @ 1,230,000 CZK\nFees are 0.23099401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.39 % (98.40000000 CZK)\nThe limits being 0.10 % (7.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05420050 BTC (38,595.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,230,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.73 % (28,070.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 700.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00576031 BTC (7,085.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 585 transactions" + } + ] + }, + { + "id": 589, + "type": "message", + "date": "2024-02-17T01:29:04", + "date_unixtime": "1708129744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005349 BTC for 65.76 CZK @ 1,229,353 CZK\nFees are 0.23095886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.93 % (137.68753599604599456212473020 CZK)\nThe limits being 0.10 % (7.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05425399 BTC (38,661.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,229,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.52 % (28,035.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 634.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00581380 BTC (7,147.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005349 BTC for 65.76 CZK @ 1,229,353 CZK\nFees are 0.23095886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.93 % (137.68753599604599456212473020 CZK)\nThe limits being 0.10 % (7.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05425399 BTC (38,661.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,229,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.52 % (28,035.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 634.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00581380 BTC (7,147.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 586 transactions" + } + ] + }, + { + "id": 590, + "type": "message", + "date": "2024-02-17T13:29:03", + "date_unixtime": "1708172943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005405 BTC for 65.77 CZK @ 1,216,762 CZK\nFees are 0.23098658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.09 % (77.872767998407055417048655328 CZK)\nThe limits being 0.10 % (7.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05430804 BTC (38,727.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,216,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.63 % (27,352.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 568.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00586785 BTC (7,139.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005405 BTC for 65.77 CZK @ 1,216,762 CZK\nFees are 0.23098658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.09 % (77.872767998407055417048655328 CZK)\nThe limits being 0.10 % (7.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05430804 BTC (38,727.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,216,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.63 % (27,352.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 568.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00586785 BTC (7,139.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 587 transactions" + } + ] + }, + { + "id": 591, + "type": "message", + "date": "2024-02-18T01:29:03", + "date_unixtime": "1708216143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005402 BTC for 65.76 CZK @ 1,217,329 CZK\nFees are 0.23096596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (77.909055995242124611250478931 CZK)\nThe limits being 0.10 % (7.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05436206 BTC (38,793.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,217,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.59 % (27,382.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 502.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00592187 BTC (7,208.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005402 BTC for 65.76 CZK @ 1,217,329 CZK\nFees are 0.23096596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (77.909055995242124611250478931 CZK)\nThe limits being 0.10 % (7.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05436206 BTC (38,793.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,217,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.59 % (27,382.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 502.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00592187 BTC (7,208.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 588 transactions" + } + ] + }, + { + "id": 592, + "type": "message", + "date": "2024-02-18T13:29:03", + "date_unixtime": "1708259343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005375 BTC for 65.76 CZK @ 1,223,489 CZK\nFees are 0.23097446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (78.303295990359323762181203002 CZK)\nThe limits being 0.10 % (7.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05441581 BTC (38,859.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,223,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.33 % (27,717.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 436.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597562 BTC (7,311.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005375 BTC for 65.76 CZK @ 1,223,489 CZK\nFees are 0.23097446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (78.303295990359323762181203002 CZK)\nThe limits being 0.10 % (7.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05441581 BTC (38,859.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,223,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.33 % (27,717.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 436.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597562 BTC (7,311.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 589 transactions" + } + ] + }, + { + "id": 593, + "type": "message", + "date": "2024-02-19T01:29:04", + "date_unixtime": "1708302544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005348 BTC for 65.77 CZK @ 1,229,769 CZK\nFees are 0.23099382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (98.38151999788325006083792739 CZK)\nThe limits being 0.10 % (7.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05446929 BTC (38,925.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,229,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.08 % (28,058.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 370.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00602910 BTC (7,414.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005348 BTC for 65.77 CZK @ 1,229,769 CZK\nFees are 0.23099382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (98.38151999788325006083792739 CZK)\nThe limits being 0.10 % (7.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05446929 BTC (38,925.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,229,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.08 % (28,058.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 370.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00602910 BTC (7,414.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 590 transactions" + } + ] + }, + { + "id": 594, + "type": "message", + "date": "2024-02-19T13:29:03", + "date_unixtime": "1708345743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005326 BTC for 65.76 CZK @ 1,234,664 CZK\nFees are 0.23095925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (79.018495992527842375194143066 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05452255 BTC (38,991.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,234,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.64 % (28,325.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 304.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00608236 BTC (7,509.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005326 BTC for 65.76 CZK @ 1,234,664 CZK\nFees are 0.23095925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (79.018495992527842375194143066 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05452255 BTC (38,991.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,234,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.64 % (28,325.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 304.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00608236 BTC (7,509.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 591 transactions" + } + ] + }, + { + "id": 595, + "type": "message", + "date": "2024-02-20T01:29:03", + "date_unixtime": "1708388943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005370 BTC for 65.77 CZK @ 1,224,723 CZK\nFees are 0.23099234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (117.57340798601542645433719412 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05457625 BTC (39,057.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,224,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.13 % (27,783.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 238.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00613606 BTC (7,514.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005370 BTC for 65.77 CZK @ 1,224,723 CZK\nFees are 0.23099234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (117.57340798601542645433719412 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05457625 BTC (39,057.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,224,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.13 % (27,783.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 238.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00613606 BTC (7,514.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 592 transactions" + } + ] + }, + { + "id": 596, + "type": "message", + "date": "2024-02-20T13:29:04", + "date_unixtime": "1708432144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005336 BTC for 65.76 CZK @ 1,232,451 CZK\nFees are 0.23097815 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.29 % (98.59607998691237340970770220 CZK)\nThe limits being 0.10 % (7.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05462961 BTC (39,123.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,232,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.09 % (28,204.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,172.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00618942 BTC (7,628.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005336 BTC for 65.76 CZK @ 1,232,451 CZK\nFees are 0.23097815 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.29 % (98.59607998691237340970770220 CZK)\nThe limits being 0.10 % (7.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05462961 BTC (39,123.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,232,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.09 % (28,204.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,172.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00618942 BTC (7,628.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 593 transactions" + } + ] + }, + { + "id": 597, + "type": "message", + "date": "2024-02-21T01:29:03", + "date_unixtime": "1708475343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005344 BTC for 65.76 CZK @ 1,230,538 CZK\nFees are 0.23096539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.28 % (98.44303998878177874445429022 CZK)\nThe limits being 0.10 % (7.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05468305 BTC (39,189.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,230,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.70 % (28,099.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,106.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00624286 BTC (7,682.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005344 BTC for 65.76 CZK @ 1,230,538 CZK\nFees are 0.23096539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.28 % (98.44303998878177874445429022 CZK)\nThe limits being 0.10 % (7.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05468305 BTC (39,189.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,230,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.70 % (28,099.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,106.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00624286 BTC (7,682.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 594 transactions" + } + ] + }, + { + "id": 598, + "type": "message", + "date": "2024-02-21T13:29:05", + "date_unixtime": "1708518545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005454 BTC for 65.77 CZK @ 1,205,881 CZK\nFees are 0.23099629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.27 % (96.47047999402165760505630367 CZK)\nThe limits being 0.10 % (7.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05473759 BTC (39,255.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,205,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.15 % (26,751.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,040.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00629740 BTC (7,593.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005454 BTC for 65.77 CZK @ 1,205,881 CZK\nFees are 0.23099629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.27 % (96.47047999402165760505630367 CZK)\nThe limits being 0.10 % (7.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05473759 BTC (39,255.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,205,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.15 % (26,751.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,040.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00629740 BTC (7,593.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 595 transactions" + } + ] + }, + { + "id": 599, + "type": "message", + "date": "2024-02-22T01:29:04", + "date_unixtime": "1708561744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005438 BTC for 65.76 CZK @ 1,209,314 CZK\nFees are 0.23097432 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.76 % (135.44316799257032163815025491 CZK)\nThe limits being 0.10 % (7.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05479197 BTC (39,321.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,209,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.51 % (26,939.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 974.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00635178 BTC (7,681.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005438 BTC for 65.76 CZK @ 1,209,314 CZK\nFees are 0.23097432 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.76 % (135.44316799257032163815025491 CZK)\nThe limits being 0.10 % (7.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05479197 BTC (39,321.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,209,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.51 % (26,939.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 974.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00635178 BTC (7,681.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 596 transactions" + } + ] + }, + { + "id": 600, + "type": "message", + "date": "2024-02-22T13:29:03", + "date_unixtime": "1708604943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005455 BTC for 65.76 CZK @ 1,205,520 CZK\nFees are 0.23096948 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (96.44159999123142329070982998 CZK)\nThe limits being 0.10 % (7.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05484652 BTC (39,387.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,205,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.87 % (26,730.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 908.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00640633 BTC (7,722.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005455 BTC for 65.76 CZK @ 1,205,520 CZK\nFees are 0.23096948 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (96.44159999123142329070982998 CZK)\nThe limits being 0.10 % (7.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05484652 BTC (39,387.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,205,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.87 % (26,730.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 908.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00640633 BTC (7,722.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 597 transactions" + } + ] + }, + { + "id": 601, + "type": "message", + "date": "2024-02-23T01:29:03", + "date_unixtime": "1708648143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005462 BTC for 65.76 CZK @ 1,204,027 CZK\nFees are 0.23097945 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (96.32215999767930514893223407 CZK)\nThe limits being 0.10 % (7.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05490114 BTC (39,453.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,204,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.54 % (26,648.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 842.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00646095 BTC (7,779.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005462 BTC for 65.76 CZK @ 1,204,027 CZK\nFees are 0.23097945 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (96.32215999767930514893223407 CZK)\nThe limits being 0.10 % (7.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05490114 BTC (39,453.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,204,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.54 % (26,648.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 842.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00646095 BTC (7,779.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 598 transactions" + } + ] + }, + { + "id": 602, + "type": "message", + "date": "2024-02-23T13:29:05", + "date_unixtime": "1708691345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005511 BTC for 65.76 CZK @ 1,193,331 CZK\nFees are 0.23098126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (76.373184000075222115446599213 CZK)\nThe limits being 0.10 % (7.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05495625 BTC (39,519.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,193,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.95 % (26,061.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 776.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00651606 BTC (7,775.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005511 BTC for 65.76 CZK @ 1,193,331 CZK\nFees are 0.23098126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (76.373184000075222115446599213 CZK)\nThe limits being 0.10 % (7.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05495625 BTC (39,519.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,193,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.95 % (26,061.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 776.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00651606 BTC (7,775.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 599 transactions" + } + ] + }, + { + "id": 603, + "type": "message", + "date": "2024-02-24T01:29:03", + "date_unixtime": "1708734543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005514 BTC for 65.76 CZK @ 1,192,632 CZK\nFees are 0.23097163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.46 % (114.49267198320567892680297956 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05501139 BTC (39,585.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,192,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.74 % (26,022.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 710.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00657120 BTC (7,837.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005514 BTC for 65.76 CZK @ 1,192,632 CZK\nFees are 0.23097163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.46 % (114.49267198320567892680297956 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05501139 BTC (39,585.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,192,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.74 % (26,022.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 710.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00657120 BTC (7,837.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 600 transactions" + } + ] + }, + { + "id": 604, + "type": "message", + "date": "2024-02-24T13:29:03", + "date_unixtime": "1708777743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005495 BTC for 65.77 CZK @ 1,196,821 CZK\nFees are 0.23098422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (76.596543989757414109760515174 CZK)\nThe limits being 0.10 % (7.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05506634 BTC (39,651.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,196,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 66.21 % (26,252.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 644.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00662615 BTC (7,930.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005495 BTC for 65.77 CZK @ 1,196,821 CZK\nFees are 0.23098422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (76.596543989757414109760515174 CZK)\nThe limits being 0.10 % (7.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05506634 BTC (39,651.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,196,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 66.21 % (26,252.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 644.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00662615 BTC (7,930.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 601 transactions" + } + ] + }, + { + "id": 605, + "type": "message", + "date": "2024-02-25T01:29:03", + "date_unixtime": "1708820943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005452 BTC for 65.77 CZK @ 1,206,312 CZK\nFees are 0.23099412 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (96.50495999146055569995112484 CZK)\nThe limits being 0.10 % (8.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05512086 BTC (39,717.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,206,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.41 % (26,775.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 578.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00668067 BTC (8,058.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005452 BTC for 65.77 CZK @ 1,206,312 CZK\nFees are 0.23099412 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (96.50495999146055569995112484 CZK)\nThe limits being 0.10 % (8.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05512086 BTC (39,717.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,206,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.41 % (26,775.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 578.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00668067 BTC (8,058.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 602 transactions" + } + ] + }, + { + "id": 606, + "type": "message", + "date": "2024-02-25T13:29:03", + "date_unixtime": "1708864143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005440 BTC for 65.77 CZK @ 1,208,952 CZK\nFees are 0.23099011 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (77.372927999062106157859257306 CZK)\nThe limits being 0.10 % (8.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05517526 BTC (39,783.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,208,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.67 % (26,920.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 512.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00673507 BTC (8,142.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005440 BTC for 65.77 CZK @ 1,208,952 CZK\nFees are 0.23099011 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (77.372927999062106157859257306 CZK)\nThe limits being 0.10 % (8.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05517526 BTC (39,783.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,208,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.67 % (26,920.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 512.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00673507 BTC (8,142.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 603 transactions" + } + ] + }, + { + "id": 607, + "type": "message", + "date": "2024-02-26T01:29:05", + "date_unixtime": "1708907345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005425 BTC for 65.76 CZK @ 1,212,157 CZK\nFees are 0.23096386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (58.183535999669360004959599925 CZK)\nThe limits being 0.10 % (8.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05522951 BTC (39,849.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,212,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.00 % (27,097.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 446.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00678932 BTC (8,229.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005425 BTC for 65.76 CZK @ 1,212,157 CZK\nFees are 0.23096386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (58.183535999669360004959599925 CZK)\nThe limits being 0.10 % (8.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05522951 BTC (39,849.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,212,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.00 % (27,097.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 446.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00678932 BTC (8,229.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 604 transactions" + } + ] + }, + { + "id": 608, + "type": "message", + "date": "2024-02-26T13:29:04", + "date_unixtime": "1708950544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005510 BTC for 65.77 CZK @ 1,193,607 CZK\nFees are 0.23099276 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (95.48856000007234208401267072 CZK)\nThe limits being 0.10 % (8.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05528461 BTC (39,915.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,193,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.32 % (26,072.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 380.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00684442 BTC (8,169.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005510 BTC for 65.77 CZK @ 1,193,607 CZK\nFees are 0.23099276 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (95.48856000007234208401267072 CZK)\nThe limits being 0.10 % (8.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05528461 BTC (39,915.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,193,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.32 % (26,072.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 380.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00684442 BTC (8,169.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 605 transactions" + } + ] + }, + { + "id": 609, + "type": "message", + "date": "2024-02-27T01:29:04", + "date_unixtime": "1708993744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005161 BTC for 65.77 CZK @ 1,274,353 CZK\nFees are 0.23099843 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.09 % (183.50683198844733222521793756 CZK)\nThe limits being 0.10 % (8.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05533622 BTC (39,981.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,274,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.38 % (30,536.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 314.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00689603 BTC (8,787.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005161 BTC for 65.77 CZK @ 1,274,353 CZK\nFees are 0.23099843 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.09 % (183.50683198844733222521793756 CZK)\nThe limits being 0.10 % (8.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05533622 BTC (39,981.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,274,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.38 % (30,536.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 314.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00689603 BTC (8,787.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 606 transactions" + } + ] + }, + { + "id": 610, + "type": "message", + "date": "2024-02-27T13:29:04", + "date_unixtime": "1709036944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004968 BTC for 65.76 CZK @ 1,323,730 CZK\nFees are 0.23097577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (148.25775999460824312972230046 CZK)\nThe limits being 0.10 % (9.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05538590 BTC (40,047.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,323,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.07 % (33,268.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 248.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00694571 BTC (9,194.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004968 BTC for 65.76 CZK @ 1,323,730 CZK\nFees are 0.23097577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (148.25775999460824312972230046 CZK)\nThe limits being 0.10 % (9.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05538590 BTC (40,047.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,323,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.07 % (33,268.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 248.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00694571 BTC (9,194.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 607 transactions" + } + ] + }, + { + "id": 611, + "type": "message", + "date": "2024-02-28T01:29:03", + "date_unixtime": "1709080143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004939 BTC for 65.76 CZK @ 1,331,478 CZK\nFees are 0.23097153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.43 % (319.55471997835476217930500991 CZK)\nThe limits being 0.10 % (9.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05543529 BTC (40,113.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,331,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.00 % (33,697.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 182.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00699510 BTC (9,313.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004939 BTC for 65.76 CZK @ 1,331,478 CZK\nFees are 0.23097153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.43 % (319.55471997835476217930500991 CZK)\nThe limits being 0.10 % (9.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05543529 BTC (40,113.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,331,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.00 % (33,697.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 182.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00699510 BTC (9,313.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 608 transactions" + } + ] + }, + { + "id": 612, + "type": "message", + "date": "2024-02-28T13:29:04", + "date_unixtime": "1709123344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004751 BTC for 65.76 CZK @ 1,384,114 CZK\nFees are 0.23096295 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (110.72911998910988974916984409 CZK)\nThe limits being 0.10 % (9.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05548280 BTC (40,179.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,384,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.13 % (36,614.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,116.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00704261 BTC (9,747.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004751 BTC for 65.76 CZK @ 1,384,114 CZK\nFees are 0.23096295 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (110.72911998910988974916984409 CZK)\nThe limits being 0.10 % (9.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05548280 BTC (40,179.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,384,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.13 % (36,614.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,116.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00704261 BTC (9,747.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 609 transactions" + } + ] + }, + { + "id": 613, + "type": "message", + "date": "2024-02-29T01:29:09", + "date_unixtime": "1709166549", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004744 BTC for 65.76 CZK @ 1,386,142 CZK\nFees are 0.23096056 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.29 % (421.38716795095748354620548149 CZK)\nThe limits being 0.10 % (9.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05553024 BTC (40,245.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,386,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.26 % (36,727.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,050.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00709005 BTC (9,827.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004744 BTC for 65.76 CZK @ 1,386,142 CZK\nFees are 0.23096056 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.29 % (421.38716795095748354620548149 CZK)\nThe limits being 0.10 % (9.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05553024 BTC (40,245.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,386,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.26 % (36,727.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,050.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00709005 BTC (9,827.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 610 transactions" + } + ] + }, + { + "id": 614, + "type": "message", + "date": "2024-02-29T13:29:04", + "date_unixtime": "1709209744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004533 BTC for 65.76 CZK @ 1,450,798 CZK\nFees are 0.23098197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.02 % (208.91491197882197220383851754 CZK)\nThe limits being 0.10 % (10.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05557557 BTC (40,311.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,450,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.01 % (40,317.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 984.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00713538 BTC (10,352.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004533 BTC for 65.76 CZK @ 1,450,798 CZK\nFees are 0.23098197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.02 % (208.91491197882197220383851754 CZK)\nThe limits being 0.10 % (10.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05557557 BTC (40,311.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,450,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.01 % (40,317.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 984.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00713538 BTC (10,352.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 611 transactions" + } + ] + }, + { + "id": 615, + "type": "message", + "date": "2024-03-01T01:29:03", + "date_unixtime": "1709252943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004570 BTC for 65.76 CZK @ 1,439,028 CZK\nFees are 0.23097813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.46 % (460.48895993999121237594022672 CZK)\nThe limits being 0.10 % (10.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05562127 BTC (40,377.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.23 % (39,663.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 918.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00718108 BTC (10,333.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004570 BTC for 65.76 CZK @ 1,439,028 CZK\nFees are 0.23097813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.46 % (460.48895993999121237594022672 CZK)\nThe limits being 0.10 % (10.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05562127 BTC (40,377.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.23 % (39,663.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 918.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00718108 BTC (10,333.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 612 transactions" + } + ] + }, + { + "id": 616, + "type": "message", + "date": "2024-03-01T13:29:03", + "date_unixtime": "1709296143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004536 BTC for 65.77 CZK @ 1,449,948 CZK\nFees are 0.23099942 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.77 % (185.59334398740211728087496232 CZK)\nThe limits being 0.10 % (10.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05566663 BTC (40,443.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.57 % (40,270.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 852.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00722644 BTC (10,477.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004536 BTC for 65.77 CZK @ 1,449,948 CZK\nFees are 0.23099942 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.77 % (185.59334398740211728087496232 CZK)\nThe limits being 0.10 % (10.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05566663 BTC (40,443.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.57 % (40,270.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 852.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00722644 BTC (10,477.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 613 transactions" + } + ] + }, + { + "id": 617, + "type": "message", + "date": "2024-03-02T01:29:05", + "date_unixtime": "1709339345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004523 BTC for 65.77 CZK @ 1,454,048 CZK\nFees are 0.23098871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.98 % (209.38291197258853354404840630 CZK)\nThe limits being 0.10 % (10.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05571186 BTC (40,509.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,454,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.97 % (40,498.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,286.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00727167 BTC (10,573.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004523 BTC for 65.77 CZK @ 1,454,048 CZK\nFees are 0.23098871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.98 % (209.38291197258853354404840630 CZK)\nThe limits being 0.10 % (10.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05571186 BTC (40,509.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,454,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.97 % (40,498.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,286.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00727167 BTC (10,573.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 614 transactions" + } + ] + }, + { + "id": 618, + "type": "message", + "date": "2024-03-02T13:29:03", + "date_unixtime": "1709382543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004539 BTC for 65.76 CZK @ 1,448,686 CZK\nFees are 0.23095101 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.09 % (115.89487999755866584161866602 CZK)\nThe limits being 0.10 % (10.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05575725 BTC (40,575.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,448,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.07 % (40,199.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,220.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00731706 BTC (10,600.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004539 BTC for 65.76 CZK @ 1,448,686 CZK\nFees are 0.23095101 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.09 % (115.89487999755866584161866602 CZK)\nThe limits being 0.10 % (10.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05575725 BTC (40,575.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,448,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.07 % (40,199.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,220.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00731706 BTC (10,600.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 615 transactions" + } + ] + }, + { + "id": 619, + "type": "message", + "date": "2024-03-03T01:29:03", + "date_unixtime": "1709425743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004553 BTC for 65.76 CZK @ 1,444,378 CZK\nFees are 0.23097445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (184.88038398265854267367092401 CZK)\nThe limits being 0.10 % (10.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05580278 BTC (40,641.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.32 % (39,958.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,154.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00736259 BTC (10,634.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004553 BTC for 65.76 CZK @ 1,444,378 CZK\nFees are 0.23097445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (184.88038398265854267367092401 CZK)\nThe limits being 0.10 % (10.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05580278 BTC (40,641.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.32 % (39,958.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,154.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00736259 BTC (10,634.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 616 transactions" + } + ] + }, + { + "id": 620, + "type": "message", + "date": "2024-03-03T13:29:04", + "date_unixtime": "1709468944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004546 BTC for 65.76 CZK @ 1,446,476 CZK\nFees are 0.23095432 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.30 % (138.86169598661613521175665198 CZK)\nThe limits being 0.10 % (10.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05584824 BTC (40,707.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,446,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.45 % (40,075.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,088.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00740805 BTC (10,715.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004546 BTC for 65.76 CZK @ 1,446,476 CZK\nFees are 0.23095432 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.30 % (138.86169598661613521175665198 CZK)\nThe limits being 0.10 % (10.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05584824 BTC (40,707.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,446,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.45 % (40,075.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,088.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00740805 BTC (10,715.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 617 transactions" + } + ] + }, + { + "id": 621, + "type": "message", + "date": "2024-03-04T01:29:03", + "date_unixtime": "1709512143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004509 BTC for 65.76 CZK @ 1,458,495 CZK\nFees are 0.23097799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.36 % (256.69511996722935682087632297 CZK)\nThe limits being 0.10 % (10.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05589333 BTC (40,773.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,458,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.93 % (40,746.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,022.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00745314 BTC (10,870.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004509 BTC for 65.76 CZK @ 1,458,495 CZK\nFees are 0.23097799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.36 % (256.69511996722935682087632297 CZK)\nThe limits being 0.10 % (10.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05589333 BTC (40,773.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,458,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.93 % (40,746.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,022.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00745314 BTC (10,870.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 618 transactions" + } + ] + }, + { + "id": 622, + "type": "message", + "date": "2024-03-04T13:29:03", + "date_unixtime": "1709555343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004339 BTC for 65.76 CZK @ 1,515,529 CZK\nFees are 0.23096136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.99 % (339.47849599184600843349268572 CZK)\nThe limits being 0.10 % (11.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05593672 BTC (40,839.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,515,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.58 % (43,934.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 956.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00749653 BTC (11,361.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004339 BTC for 65.76 CZK @ 1,515,529 CZK\nFees are 0.23096136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.99 % (339.47849599184600843349268572 CZK)\nThe limits being 0.10 % (11.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05593672 BTC (40,839.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,515,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.58 % (43,934.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 956.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00749653 BTC (11,361.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 619 transactions" + } + ] + }, + { + "id": 623, + "type": "message", + "date": "2024-03-05T01:29:03", + "date_unixtime": "1709598543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004165 BTC for 65.75 CZK @ 1,578,736 CZK\nFees are 0.23094573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.73 % (682.01395199586561081831835873 CZK)\nThe limits being 0.10 % (11.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05597837 BTC (40,905.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.05 % (47,469.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 890.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00753818 BTC (11,900.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004165 BTC for 65.75 CZK @ 1,578,736 CZK\nFees are 0.23094573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.73 % (682.01395199586561081831835873 CZK)\nThe limits being 0.10 % (11.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05597837 BTC (40,905.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.05 % (47,469.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 890.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00753818 BTC (11,900.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 620 transactions" + } + ] + }, + { + "id": 624, + "type": "message", + "date": "2024-03-05T13:29:03", + "date_unixtime": "1709641743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004213 BTC for 65.76 CZK @ 1,560,850 CZK\nFees are 0.23096068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.22 % (499.47199994890893976470437968 CZK)\nThe limits being 0.10 % (11.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05602050 BTC (40,971.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,560,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.42 % (46,468.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 824.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00758031 BTC (11,831.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004213 BTC for 65.76 CZK @ 1,560,850 CZK\nFees are 0.23096068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.22 % (499.47199994890893976470437968 CZK)\nThe limits being 0.10 % (11.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05602050 BTC (40,971.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,560,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.42 % (46,468.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 824.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00758031 BTC (11,831.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 621 transactions" + } + ] + }, + { + "id": 625, + "type": "message", + "date": "2024-03-06T01:29:03", + "date_unixtime": "1709684943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004406 BTC for 65.77 CZK @ 1,492,705 CZK\nFees are 0.23099570 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.31 % (262.71607996795600328491677224 CZK)\nThe limits being 0.10 % (11.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05606456 BTC (41,037.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.93 % (42,650.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 758.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00762437 BTC (11,380.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004406 BTC for 65.77 CZK @ 1,492,705 CZK\nFees are 0.23099570 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.31 % (262.71607996795600328491677224 CZK)\nThe limits being 0.10 % (11.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05606456 BTC (41,037.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.93 % (42,650.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 758.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00762437 BTC (11,380.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 622 transactions" + } + ] + }, + { + "id": 626, + "type": "message", + "date": "2024-03-06T13:29:03", + "date_unixtime": "1709728143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004225 BTC for 65.76 CZK @ 1,556,546 CZK\nFees are 0.23097985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.30 % (273.95209595952627342761871910 CZK)\nThe limits being 0.10 % (11.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05610681 BTC (41,103.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.47 % (46,229.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 692.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00766662 BTC (11,933.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004225 BTC for 65.76 CZK @ 1,556,546 CZK\nFees are 0.23097985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.30 % (273.95209595952627342761871910 CZK)\nThe limits being 0.10 % (11.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05610681 BTC (41,103.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.47 % (46,229.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 692.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00766662 BTC (11,933.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 623 transactions" + } + ] + }, + { + "id": 627, + "type": "message", + "date": "2024-03-07T01:29:03", + "date_unixtime": "1709771343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004308 BTC for 65.77 CZK @ 1,526,609 CZK\nFees are 0.23098774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.28 % (268.68318397956270971747444761 CZK)\nThe limits being 0.10 % (11.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05614989 BTC (41,169.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,526,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.21 % (44,549.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 626.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00770970 BTC (11,769.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004308 BTC for 65.77 CZK @ 1,526,609 CZK\nFees are 0.23098774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.28 % (268.68318397956270971747444761 CZK)\nThe limits being 0.10 % (11.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05614989 BTC (41,169.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,526,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.21 % (44,549.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 626.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00770970 BTC (11,769.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 624 transactions" + } + ] + }, + { + "id": 628, + "type": "message", + "date": "2024-03-07T13:29:03", + "date_unixtime": "1709814543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004234 BTC for 65.77 CZK @ 1,553,327 CZK\nFees are 0.23099318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (124.26615998469221682542843082 CZK)\nThe limits being 0.10 % (12.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05619223 BTC (41,235.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.67 % (46,049.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 560.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00775204 BTC (12,041.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004234 BTC for 65.77 CZK @ 1,553,327 CZK\nFees are 0.23099318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (124.26615998469221682542843082 CZK)\nThe limits being 0.10 % (12.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05619223 BTC (41,235.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.67 % (46,049.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 560.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00775204 BTC (12,041.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 625 transactions" + } + ] + }, + { + "id": 629, + "type": "message", + "date": "2024-03-08T01:29:03", + "date_unixtime": "1709857743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004255 BTC for 65.76 CZK @ 1,545,552 CZK\nFees are 0.23097693 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (173.10182399580317303070276359 CZK)\nThe limits being 0.10 % (12.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05623478 BTC (41,301.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.44 % (45,612.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 494.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00779459 BTC (12,046.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004255 BTC for 65.76 CZK @ 1,545,552 CZK\nFees are 0.23097693 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (173.10182399580317303070276359 CZK)\nThe limits being 0.10 % (12.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05623478 BTC (41,301.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.44 % (45,612.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 494.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00779459 BTC (12,046.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 626 transactions" + } + ] + }, + { + "id": 630, + "type": "message", + "date": "2024-03-08T13:29:04", + "date_unixtime": "1709900944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004232 BTC for 65.77 CZK @ 1,554,054 CZK\nFees are 0.23099213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (124.32431998402566442781079078 CZK)\nThe limits being 0.10 % (12.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05627710 BTC (41,367.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.42 % (46,090.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,428.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00783691 BTC (12,178.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004232 BTC for 65.77 CZK @ 1,554,054 CZK\nFees are 0.23099213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (124.32431998402566442781079078 CZK)\nThe limits being 0.10 % (12.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05627710 BTC (41,367.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.42 % (46,090.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,428.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00783691 BTC (12,178.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 627 transactions" + } + ] + }, + { + "id": 631, + "type": "message", + "date": "2024-03-09T01:29:04", + "date_unixtime": "1709944144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004169 BTC for 65.77 CZK @ 1,577,566 CZK\nFees are 0.23099621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.83 % (227.16950399005256607869100030 CZK)\nThe limits being 0.10 % (12.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05631879 BTC (41,433.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.43 % (47,413.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,362.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00787860 BTC (12,429.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004169 BTC for 65.77 CZK @ 1,577,566 CZK\nFees are 0.23099621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.83 % (227.16950399005256607869100030 CZK)\nThe limits being 0.10 % (12.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05631879 BTC (41,433.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.43 % (47,413.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,362.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00787860 BTC (12,429.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 628 transactions" + } + ] + }, + { + "id": 632, + "type": "message", + "date": "2024-03-09T13:29:04", + "date_unixtime": "1709987344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004166 BTC for 65.75 CZK @ 1,578,366 CZK\nFees are 0.23094704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (126.26927998763808188383384989 CZK)\nThe limits being 0.10 % (12.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05636045 BTC (41,499.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.36 % (47,458.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,296.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00792026 BTC (12,501.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004166 BTC for 65.75 CZK @ 1,578,366 CZK\nFees are 0.23094704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (126.26927998763808188383384989 CZK)\nThe limits being 0.10 % (12.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05636045 BTC (41,499.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.36 % (47,458.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,296.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00792026 BTC (12,501.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 629 transactions" + } + ] + }, + { + "id": 633, + "type": "message", + "date": "2024-03-10T01:29:03", + "date_unixtime": "1710030543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004160 BTC for 65.77 CZK @ 1,581,000 CZK\nFees are 0.23099928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.41 % (177.07200000 CZK)\nThe limits being 0.10 % (12.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05640205 BTC (41,565.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.53 % (47,606.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,230.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00796186 BTC (12,587.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004160 BTC for 65.77 CZK @ 1,581,000 CZK\nFees are 0.23099928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.41 % (177.07200000 CZK)\nThe limits being 0.10 % (12.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05640205 BTC (41,565.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.53 % (47,606.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,230.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00796186 BTC (12,587.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 630 transactions" + } + ] + }, + { + "id": 634, + "type": "message", + "date": "2024-03-10T13:29:03", + "date_unixtime": "1710073743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004075 BTC for 65.76 CZK @ 1,613,722 CZK\nFees are 0.23096265 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.60 % (206.55641599921746280655741714 CZK)\nThe limits being 0.10 % (12.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05644280 BTC (41,631.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,613,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.78 % (49,451.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,164.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00800261 BTC (12,913.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004075 BTC for 65.76 CZK @ 1,613,722 CZK\nFees are 0.23096265 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.60 % (206.55641599921746280655741714 CZK)\nThe limits being 0.10 % (12.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05644280 BTC (41,631.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,613,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.78 % (49,451.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,164.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00800261 BTC (12,913.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 631 transactions" + } + ] + }, + { + "id": 635, + "type": "message", + "date": "2024-03-11T01:29:03", + "date_unixtime": "1710116943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004152 BTC for 65.76 CZK @ 1,583,835 CZK\nFees are 0.23096847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (101.36543999662069078072603306 CZK)\nThe limits being 0.10 % (12.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05648432 BTC (41,697.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.55 % (47,764.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,098.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00804413 BTC (12,740.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004152 BTC for 65.76 CZK @ 1,583,835 CZK\nFees are 0.23096847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (101.36543999662069078072603306 CZK)\nThe limits being 0.10 % (12.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05648432 BTC (41,697.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.55 % (47,764.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,098.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00804413 BTC (12,740.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 632 transactions" + } + ] + }, + { + "id": 636, + "type": "message", + "date": "2024-03-11T13:29:03", + "date_unixtime": "1710160143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003971 BTC for 65.76 CZK @ 1,656,076 CZK\nFees are 0.23097532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (105.98886399540665841300600253 CZK)\nThe limits being 0.10 % (13.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05652403 BTC (41,763.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,656,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.14 % (51,844.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,032.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00808384 BTC (13,387.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003971 BTC for 65.76 CZK @ 1,656,076 CZK\nFees are 0.23097532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (105.98886399540665841300600253 CZK)\nThe limits being 0.10 % (13.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05652403 BTC (41,763.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,656,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.14 % (51,844.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,032.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00808384 BTC (13,387.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 633 transactions" + } + ] + }, + { + "id": 637, + "type": "message", + "date": "2024-03-12T01:29:04", + "date_unixtime": "1710203344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003942 BTC for 65.75 CZK @ 1,668,050 CZK\nFees are 0.23094635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (160.13279997937204563328199097 CZK)\nThe limits being 0.10 % (13.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05656345 BTC (41,829.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,668,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.56 % (52,521.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 966.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00812326 BTC (13,550.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003942 BTC for 65.75 CZK @ 1,668,050 CZK\nFees are 0.23094635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (160.13279997937204563328199097 CZK)\nThe limits being 0.10 % (13.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05656345 BTC (41,829.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,668,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.56 % (52,521.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 966.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00812326 BTC (13,550.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 634 transactions" + } + ] + }, + { + "id": 638, + "type": "message", + "date": "2024-03-12T13:29:04", + "date_unixtime": "1710246544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003975 BTC for 65.77 CZK @ 1,654,583 CZK\nFees are 0.23099954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (132.36663998019510330196513461 CZK)\nThe limits being 0.10 % (13.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05660320 BTC (41,895.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,654,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.54 % (51,759.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 900.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00816301 BTC (13,506.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003975 BTC for 65.77 CZK @ 1,654,583 CZK\nFees are 0.23099954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (132.36663998019510330196513461 CZK)\nThe limits being 0.10 % (13.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05660320 BTC (41,895.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,654,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.54 % (51,759.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 900.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00816301 BTC (13,506.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 635 transactions" + } + ] + }, + { + "id": 639, + "type": "message", + "date": "2024-03-13T01:29:03", + "date_unixtime": "1710289743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003982 BTC for 65.76 CZK @ 1,651,521 CZK\nFees are 0.23097809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (105.69734399716512047111853866 CZK)\nThe limits being 0.10 % (13.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05664302 BTC (41,961.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,651,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.94 % (51,585.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 834.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00820283 BTC (13,547.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003982 BTC for 65.76 CZK @ 1,651,521 CZK\nFees are 0.23097809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (105.69734399716512047111853866 CZK)\nThe limits being 0.10 % (13.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05664302 BTC (41,961.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,651,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.94 % (51,585.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 834.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00820283 BTC (13,547.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 636 transactions" + } + ] + }, + { + "id": 640, + "type": "message", + "date": "2024-03-13T13:29:04", + "date_unixtime": "1710332944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003901 BTC for 65.77 CZK @ 1,685,956 CZK\nFees are 0.23099767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (80.92588799698364108087727305 CZK)\nThe limits being 0.10 % (13.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05668203 BTC (42,027.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,685,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.38 % (53,536.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 768.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00824184 BTC (13,895.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003901 BTC for 65.77 CZK @ 1,685,956 CZK\nFees are 0.23099767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (80.92588799698364108087727305 CZK)\nThe limits being 0.10 % (13.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05668203 BTC (42,027.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,685,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.38 % (53,536.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 768.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00824184 BTC (13,895.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 637 transactions" + } + ] + }, + { + "id": 641, + "type": "message", + "date": "2024-03-14T01:29:03", + "date_unixtime": "1710376143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003909 BTC for 65.77 CZK @ 1,682,481 CZK\nFees are 0.23099430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (80.75908799019242321865795120 CZK)\nThe limits being 0.10 % (13.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05672112 BTC (42,093.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,682,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.72 % (53,338.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 702.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00828093 BTC (13,932.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003909 BTC for 65.77 CZK @ 1,682,481 CZK\nFees are 0.23099430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (80.75908799019242321865795120 CZK)\nThe limits being 0.10 % (13.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05672112 BTC (42,093.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,682,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.72 % (53,338.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 702.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00828093 BTC (13,932.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 638 transactions" + } + ] + }, + { + "id": 642, + "type": "message", + "date": "2024-03-14T13:29:03", + "date_unixtime": "1710419343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003931 BTC for 65.76 CZK @ 1,672,740 CZK\nFees are 0.23094944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (80.29151999647126687223058142 CZK)\nThe limits being 0.10 % (13.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05676043 BTC (42,159.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,672,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.21 % (52,786.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 636.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00832024 BTC (13,917.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003931 BTC for 65.76 CZK @ 1,672,740 CZK\nFees are 0.23094944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (80.29151999647126687223058142 CZK)\nThe limits being 0.10 % (13.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05676043 BTC (42,159.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,672,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.21 % (52,786.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 636.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00832024 BTC (13,917.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 639 transactions" + } + ] + }, + { + "id": 643, + "type": "message", + "date": "2024-03-15T01:29:03", + "date_unixtime": "1710462543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003953 BTC for 65.76 CZK @ 1,663,427 CZK\nFees are 0.23094894 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (159.68899199374413181489376103 CZK)\nThe limits being 0.10 % (13.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05679996 BTC (42,225.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,663,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.76 % (52,257.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 570.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00835977 BTC (13,905.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003953 BTC for 65.76 CZK @ 1,663,427 CZK\nFees are 0.23094894 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (159.68899199374413181489376103 CZK)\nThe limits being 0.10 % (13.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05679996 BTC (42,225.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,663,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.76 % (52,257.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 570.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00835977 BTC (13,905.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 640 transactions" + } + ] + }, + { + "id": 644, + "type": "message", + "date": "2024-03-15T13:29:03", + "date_unixtime": "1710505743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004193 BTC for 65.76 CZK @ 1,568,262 CZK\nFees are 0.23095582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (75.276575988809022939150131707 CZK)\nThe limits being 0.10 % (13.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05684189 BTC (42,291.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.78 % (46,851.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 504.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00840170 BTC (13,176.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004193 BTC for 65.76 CZK @ 1,568,262 CZK\nFees are 0.23095582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (75.276575988809022939150131707 CZK)\nThe limits being 0.10 % (13.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05684189 BTC (42,291.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.78 % (46,851.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 504.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00840170 BTC (13,176.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 641 transactions" + } + ] + }, + { + "id": 645, + "type": "message", + "date": "2024-03-16T01:29:03", + "date_unixtime": "1710548943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004067 BTC for 65.76 CZK @ 1,616,866 CZK\nFees are 0.23095833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (155.21913599818878332034094095 CZK)\nThe limits being 0.10 % (13.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05688256 BTC (42,357.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,616,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.13 % (49,614.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 438.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00844237 BTC (13,650.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004067 BTC for 65.76 CZK @ 1,616,866 CZK\nFees are 0.23095833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (155.21913599818878332034094095 CZK)\nThe limits being 0.10 % (13.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05688256 BTC (42,357.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,616,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.13 % (49,614.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 438.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00844237 BTC (13,650.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 642 transactions" + } + ] + }, + { + "id": 646, + "type": "message", + "date": "2024-03-16T13:29:03", + "date_unixtime": "1710592143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004162 BTC for 65.77 CZK @ 1,580,170 CZK\nFees are 0.23098901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (151.69631999103569989419540019 CZK)\nThe limits being 0.10 % (13.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05692418 BTC (42,423.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.03 % (47,526.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 372.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00848399 BTC (13,406.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004162 BTC for 65.77 CZK @ 1,580,170 CZK\nFees are 0.23098901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (151.69631999103569989419540019 CZK)\nThe limits being 0.10 % (13.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05692418 BTC (42,423.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.03 % (47,526.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 372.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00848399 BTC (13,406.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 643 transactions" + } + ] + }, + { + "id": 647, + "type": "message", + "date": "2024-03-17T01:29:03", + "date_unixtime": "1710635343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004299 BTC for 65.77 CZK @ 1,529,876 CZK\nFees are 0.23099847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (48.956031998264274620127529920 CZK)\nThe limits being 0.10 % (13.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05696717 BTC (42,489.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,529,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.12 % (44,663.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 306.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00852698 BTC (13,045.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004299 BTC for 65.77 CZK @ 1,529,876 CZK\nFees are 0.23099847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (48.956031998264274620127529920 CZK)\nThe limits being 0.10 % (13.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05696717 BTC (42,489.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,529,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.12 % (44,663.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 306.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00852698 BTC (13,045.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 644 transactions" + } + ] + }, + { + "id": 648, + "type": "message", + "date": "2024-03-17T13:29:03", + "date_unixtime": "1710678543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004237 BTC for 65.76 CZK @ 1,551,985 CZK\nFees are 0.23095715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (49.663519995804159127265098470 CZK)\nThe limits being 0.10 % (13.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05700954 BTC (42,555.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.91 % (45,922.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 240.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00856935 BTC (13,299.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004237 BTC for 65.76 CZK @ 1,551,985 CZK\nFees are 0.23095715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (49.663519995804159127265098470 CZK)\nThe limits being 0.10 % (13.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05700954 BTC (42,555.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.91 % (45,922.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 240.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00856935 BTC (13,299.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 645 transactions" + } + ] + }, + { + "id": 649, + "type": "message", + "date": "2024-03-18T01:29:03", + "date_unixtime": "1710721743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004185 BTC for 65.77 CZK @ 1,571,483 CZK\nFees are 0.23098861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (75.431183997228338807007016661 CZK)\nThe limits being 0.10 % (13.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05705139 BTC (42,621.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.35 % (47,033.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 174.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00861120 BTC (13,532.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004185 BTC for 65.77 CZK @ 1,571,483 CZK\nFees are 0.23098861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (75.431183997228338807007016661 CZK)\nThe limits being 0.10 % (13.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05705139 BTC (42,621.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.35 % (47,033.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 174.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00861120 BTC (13,532.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 646 transactions" + } + ] + }, + { + "id": 650, + "type": "message", + "date": "2024-03-18T13:29:04", + "date_unixtime": "1710764944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004162 BTC for 65.76 CZK @ 1,579,948 CZK\nFees are 0.23095655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (50.558335996046513799491304701 CZK)\nThe limits being 0.10 % (13.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05709301 BTC (42,687.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.31 % (47,516.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 108.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00865282 BTC (13,671.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004162 BTC for 65.76 CZK @ 1,579,948 CZK\nFees are 0.23095655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (50.558335996046513799491304701 CZK)\nThe limits being 0.10 % (13.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05709301 BTC (42,687.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.31 % (47,516.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 108.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00865282 BTC (13,671.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 647 transactions" + } + ] + }, + { + "id": 651, + "type": "message", + "date": "2024-03-19T01:29:03", + "date_unixtime": "1710808143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004173 BTC for 65.77 CZK @ 1,575,982 CZK\nFees are 0.23098568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.47 % (201.72569599691279419706560229 CZK)\nThe limits being 0.10 % (13.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05713474 BTC (42,753.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.61 % (47,290.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,042.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00869455 BTC (13,702.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004173 BTC for 65.77 CZK @ 1,575,982 CZK\nFees are 0.23098568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.47 % (201.72569599691279419706560229 CZK)\nThe limits being 0.10 % (13.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05713474 BTC (42,753.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.61 % (47,290.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,042.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00869455 BTC (13,702.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 648 transactions" + } + ] + }, + { + "id": 652, + "type": "message", + "date": "2024-03-19T13:29:03", + "date_unixtime": "1710851343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004473 BTC for 65.76 CZK @ 1,470,261 CZK\nFees are 0.23098233 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (94.09670399878092671625167046 CZK)\nThe limits being 0.10 % (12.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05717947 BTC (42,819.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,470,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.33 % (41,249.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 976.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00873928 BTC (12,849.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004473 BTC for 65.76 CZK @ 1,470,261 CZK\nFees are 0.23098233 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (94.09670399878092671625167046 CZK)\nThe limits being 0.10 % (12.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05717947 BTC (42,819.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,470,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.33 % (41,249.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 976.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00873928 BTC (12,849.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 649 transactions" + } + ] + }, + { + "id": 653, + "type": "message", + "date": "2024-03-20T01:29:04", + "date_unixtime": "1710894544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004496 BTC for 65.77 CZK @ 1,462,851 CZK\nFees are 0.23099991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (70.216847996425322758246493146 CZK)\nThe limits being 0.10 % (12.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05722443 BTC (42,885.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,462,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.20 % (40,825.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 910.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00878424 BTC (12,850.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004496 BTC for 65.77 CZK @ 1,462,851 CZK\nFees are 0.23099991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (70.216847996425322758246493146 CZK)\nThe limits being 0.10 % (12.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05722443 BTC (42,885.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,462,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.20 % (40,825.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 910.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00878424 BTC (12,850.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 650 transactions" + } + ] + }, + { + "id": 654, + "type": "message", + "date": "2024-03-20T13:29:03", + "date_unixtime": "1710937743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004396 BTC for 65.76 CZK @ 1,495,906 CZK\nFees are 0.23096566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (47.868991994806167494751082765 CZK)\nThe limits being 0.10 % (13.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05726839 BTC (42,951.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,495,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.45 % (42,716.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 844.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882820 BTC (13,206.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004396 BTC for 65.76 CZK @ 1,495,906 CZK\nFees are 0.23096566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (47.868991994806167494751082765 CZK)\nThe limits being 0.10 % (13.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05726839 BTC (42,951.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,495,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.45 % (42,716.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 844.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882820 BTC (13,206.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 651 transactions" + } + ] + }, + { + "id": 655, + "type": "message", + "date": "2024-03-21T01:29:03", + "date_unixtime": "1710980943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004212 BTC for 65.76 CZK @ 1,561,331 CZK\nFees are 0.23097702 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (124.90647998860588131473366484 CZK)\nThe limits being 0.10 % (13.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05731051 BTC (43,017.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.01 % (46,463.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 778.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00887032 BTC (13,849.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004212 BTC for 65.76 CZK @ 1,561,331 CZK\nFees are 0.23097702 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (124.90647998860588131473366484 CZK)\nThe limits being 0.10 % (13.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05731051 BTC (43,017.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.01 % (46,463.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 778.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00887032 BTC (13,849.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 652 transactions" + } + ] + }, + { + "id": 656, + "type": "message", + "date": "2024-03-21T13:29:03", + "date_unixtime": "1711024143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004216 BTC for 65.76 CZK @ 1,559,777 CZK\nFees are 0.23096626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (124.78215999220943018221802439 CZK)\nThe limits being 0.10 % (13.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05735267 BTC (43,083.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.64 % (46,374.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 712.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00891248 BTC (13,901.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004216 BTC for 65.76 CZK @ 1,559,777 CZK\nFees are 0.23096626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (124.78215999220943018221802439 CZK)\nThe limits being 0.10 % (13.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05735267 BTC (43,083.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.64 % (46,374.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 712.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00891248 BTC (13,901.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 653 transactions" + } + ] + }, + { + "id": 657, + "type": "message", + "date": "2024-03-22T01:29:04", + "date_unixtime": "1711067344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004283 BTC for 65.77 CZK @ 1,535,535 CZK\nFees are 0.23099002 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (171.97991998912049712534264560 CZK)\nThe limits being 0.10 % (13.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05739550 BTC (43,149.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.25 % (44,983.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 646.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00895531 BTC (13,751.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004283 BTC for 65.77 CZK @ 1,535,535 CZK\nFees are 0.23099002 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (171.97991998912049712534264560 CZK)\nThe limits being 0.10 % (13.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05739550 BTC (43,149.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.25 % (44,983.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 646.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00895531 BTC (13,751.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 654 transactions" + } + ] + }, + { + "id": 658, + "type": "message", + "date": "2024-03-22T13:29:03", + "date_unixtime": "1711110543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004361 BTC for 65.76 CZK @ 1,507,838 CZK\nFees are 0.23095437 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (168.87785599198951342852184289 CZK)\nThe limits being 0.10 % (13.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05743911 BTC (43,215.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.41 % (43,393.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 580.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00899892 BTC (13,568.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004361 BTC for 65.76 CZK @ 1,507,838 CZK\nFees are 0.23095437 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (168.87785599198951342852184289 CZK)\nThe limits being 0.10 % (13.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05743911 BTC (43,215.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.41 % (43,393.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 580.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00899892 BTC (13,568.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 655 transactions" + } + ] + }, + { + "id": 659, + "type": "message", + "date": "2024-03-23T01:29:05", + "date_unixtime": "1711153745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004401 BTC for 65.76 CZK @ 1,494,175 CZK\nFees are 0.23096079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (71.720399993342999569672472184 CZK)\nThe limits being 0.10 % (13.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05748312 BTC (43,281.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,494,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.45 % (42,608.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 514.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00904293 BTC (13,511.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004401 BTC for 65.76 CZK @ 1,494,175 CZK\nFees are 0.23096079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (71.720399993342999569672472184 CZK)\nThe limits being 0.10 % (13.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05748312 BTC (43,281.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,494,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.45 % (42,608.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 514.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00904293 BTC (13,511.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 656 transactions" + } + ] + }, + { + "id": 660, + "type": "message", + "date": "2024-03-23T13:29:01", + "date_unixtime": "1711196941", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004320 BTC for 65.76 CZK @ 1,522,161 CZK\nFees are 0.23095627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (48.709151997637896990164055437 CZK)\nThe limits being 0.10 % (13.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05752632 BTC (43,347.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.01 % (44,217.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 448.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00908613 BTC (13,830.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004320 BTC for 65.76 CZK @ 1,522,161 CZK\nFees are 0.23095627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (48.709151997637896990164055437 CZK)\nThe limits being 0.10 % (13.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05752632 BTC (43,347.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.01 % (44,217.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 448.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00908613 BTC (13,830.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 657 transactions" + } + ] + }, + { + "id": 661, + "type": "message", + "date": "2024-03-24T01:29:01", + "date_unixtime": "1711240141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004346 BTC for 65.76 CZK @ 1,513,005 CZK\nFees are 0.23094869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (48.416159999596442364288267638 CZK)\nThe limits being 0.10 % (13.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05756978 BTC (43,413.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,513,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.64 % (43,690.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 382.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00912959 BTC (13,813.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004346 BTC for 65.76 CZK @ 1,513,005 CZK\nFees are 0.23094869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (48.416159999596442364288267638 CZK)\nThe limits being 0.10 % (13.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05756978 BTC (43,413.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,513,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.64 % (43,690.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 382.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00912959 BTC (13,813.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 658 transactions" + } + ] + }, + { + "id": 662, + "type": "message", + "date": "2024-03-24T13:29:01", + "date_unixtime": "1711283341", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004269 BTC for 65.76 CZK @ 1,540,499 CZK\nFees are 0.23097927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (49.295967993960701844317902099 CZK)\nThe limits being 0.10 % (14.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05761247 BTC (43,479.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,540,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.13 % (45,272.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 316.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00917228 BTC (14,129.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004269 BTC for 65.76 CZK @ 1,540,499 CZK\nFees are 0.23097927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (49.295967993960701844317902099 CZK)\nThe limits being 0.10 % (14.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05761247 BTC (43,479.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,540,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.13 % (45,272.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 316.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00917228 BTC (14,129.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 659 transactions" + } + ] + }, + { + "id": 663, + "type": "message", + "date": "2024-03-25T01:29:01", + "date_unixtime": "1711326541", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004187 BTC for 65.76 CZK @ 1,570,669 CZK\nFees are 0.23097930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (50.261407993446391177570645088 CZK)\nThe limits being 0.10 % (14.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05765434 BTC (43,545.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,570,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.96 % (47,010.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 250.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00921415 BTC (14,472.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004187 BTC for 65.76 CZK @ 1,570,669 CZK\nFees are 0.23097930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (50.261407993446391177570645088 CZK)\nThe limits being 0.10 % (14.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05765434 BTC (43,545.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,570,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.96 % (47,010.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 250.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00921415 BTC (14,472.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 660 transactions" + } + ] + }, + { + "id": 664, + "type": "message", + "date": "2024-03-25T13:29:02", + "date_unixtime": "1711369742", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004194 BTC for 65.75 CZK @ 1,567,827 CZK\nFees are 0.23094682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (50.170463995947421982051850474 CZK)\nThe limits being 0.10 % (14.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05769628 BTC (43,611.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.42 % (46,846.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 184.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00925609 BTC (14,511.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004194 BTC for 65.75 CZK @ 1,567,827 CZK\nFees are 0.23094682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (50.170463995947421982051850474 CZK)\nThe limits being 0.10 % (14.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05769628 BTC (43,611.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.42 % (46,846.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 184.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00925609 BTC (14,511.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 661 transactions" + } + ] + }, + { + "id": 665, + "type": "message", + "date": "2024-03-26T01:29:02", + "date_unixtime": "1711412942", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004035 BTC for 65.77 CZK @ 1,629,950 CZK\nFees are 0.23099535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (156.47519997925476445822520805 CZK)\nThe limits being 0.10 % (15.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05773663 BTC (43,677.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,629,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.46 % (50,430.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 118.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00929644 BTC (15,152.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004035 BTC for 65.77 CZK @ 1,629,950 CZK\nFees are 0.23099535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (156.47519997925476445822520805 CZK)\nThe limits being 0.10 % (15.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05773663 BTC (43,677.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,629,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.46 % (50,430.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 118.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00929644 BTC (15,152.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 662 transactions" + } + ] + }, + { + "id": 666, + "type": "message", + "date": "2024-03-26T13:29:01", + "date_unixtime": "1711456141", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003992 BTC for 65.76 CZK @ 1,647,401 CZK\nFees are 0.23098048 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (79.075247990749810532874418493 CZK)\nThe limits being 0.10 % (15.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05777655 BTC (43,743.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,647,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.59 % (51,437.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 52.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00933636 BTC (15,380.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003992 BTC for 65.76 CZK @ 1,647,401 CZK\nFees are 0.23098048 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (79.075247990749810532874418493 CZK)\nThe limits being 0.10 % (15.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05777655 BTC (43,743.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,647,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.59 % (51,437.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 52.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00933636 BTC (15,380.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 663 transactions" + } + ] + }, + { + "id": 667, + "type": "message", + "date": "2024-03-27T01:29:15", + "date_unixtime": "1711499355", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004042 BTC for 65.76 CZK @ 1,626,840 CZK\nFees are 0.23095458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (104.11775999242630999320290907 CZK)\nThe limits being 0.10 % (15.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05781697 BTC (43,809.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,626,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.70 % (50,249.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 986.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00937678 BTC (15,254.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004042 BTC for 65.76 CZK @ 1,626,840 CZK\nFees are 0.23095458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (104.11775999242630999320290907 CZK)\nThe limits being 0.10 % (15.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05781697 BTC (43,809.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,626,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.70 % (50,249.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 986.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00937678 BTC (15,254.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 664 transactions" + } + ] + }, + { + "id": 668, + "type": "message", + "date": "2024-03-27T13:29:03", + "date_unixtime": "1711542543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004012 BTC for 65.76 CZK @ 1,638,988 CZK\nFees are 0.23095221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (52.447615996057666561849081555 CZK)\nThe limits being 0.10 % (15.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05785709 BTC (43,875.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,638,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.13 % (50,951.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 920.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00941690 BTC (15,434.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004012 BTC for 65.76 CZK @ 1,638,988 CZK\nFees are 0.23095221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (52.447615996057666561849081555 CZK)\nThe limits being 0.10 % (15.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05785709 BTC (43,875.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,638,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.13 % (50,951.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 920.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00941690 BTC (15,434.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 665 transactions" + } + ] + }, + { + "id": 669, + "type": "message", + "date": "2024-03-28T01:29:03", + "date_unixtime": "1711585743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004030 BTC for 65.76 CZK @ 1,631,785 CZK\nFees are 0.23096885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (156.65135998991124117697240799 CZK)\nThe limits being 0.10 % (15.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05789739 BTC (43,941.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,631,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.01 % (50,534.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 854.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00945720 BTC (15,432.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004030 BTC for 65.76 CZK @ 1,631,785 CZK\nFees are 0.23096885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (156.65135998991124117697240799 CZK)\nThe limits being 0.10 % (15.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05789739 BTC (43,941.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,631,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.01 % (50,534.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 854.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00945720 BTC (15,432.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 666 transactions" + } + ] + }, + { + "id": 670, + "type": "message", + "date": "2024-03-28T13:29:04", + "date_unixtime": "1711628944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003981 BTC for 65.76 CZK @ 1,651,789 CZK\nFees are 0.23095755 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (52.857247999747680405693861987 CZK)\nThe limits being 0.10 % (15.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05793720 BTC (44,007.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,651,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.46 % (51,692.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 788.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00949701 BTC (15,687.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003981 BTC for 65.76 CZK @ 1,651,789 CZK\nFees are 0.23095755 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (52.857247999747680405693861987 CZK)\nThe limits being 0.10 % (15.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05793720 BTC (44,007.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,651,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.46 % (51,692.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 788.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00949701 BTC (15,687.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 667 transactions" + } + ] + }, + { + "id": 671, + "type": "message", + "date": "2024-03-29T01:29:03", + "date_unixtime": "1711672143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003971 BTC for 65.76 CZK @ 1,655,928 CZK\nFees are 0.23095468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (105.97939199505332444477569504 CZK)\nThe limits being 0.10 % (15.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05797691 BTC (44,073.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,655,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.83 % (51,932.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 722.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00953672 BTC (15,792.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003971 BTC for 65.76 CZK @ 1,655,928 CZK\nFees are 0.23095468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (105.97939199505332444477569504 CZK)\nThe limits being 0.10 % (15.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05797691 BTC (44,073.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,655,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.83 % (51,932.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 722.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00953672 BTC (15,792.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 668 transactions" + } + ] + }, + { + "id": 672, + "type": "message", + "date": "2024-03-29T13:29:04", + "date_unixtime": "1711715344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004008 BTC for 65.76 CZK @ 1,640,732 CZK\nFees are 0.23096745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (105.00684799210746419467989780 CZK)\nThe limits being 0.10 % (15.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05801699 BTC (44,139.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,640,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.66 % (51,051.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 656.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00957680 BTC (15,712.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004008 BTC for 65.76 CZK @ 1,640,732 CZK\nFees are 0.23096745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (105.00684799210746419467989780 CZK)\nThe limits being 0.10 % (15.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05801699 BTC (44,139.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,640,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.66 % (51,051.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 656.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00957680 BTC (15,712.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 669 transactions" + } + ] + }, + { + "id": 673, + "type": "message", + "date": "2024-03-30T01:29:03", + "date_unixtime": "1711758543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004028 BTC for 65.77 CZK @ 1,632,791 CZK\nFees are 0.23099654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (52.249311995899159297968530205 CZK)\nThe limits being 0.10 % (15.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05805727 BTC (44,205.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,632,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.44 % (50,590.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 590.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00961708 BTC (15,702.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004028 BTC for 65.77 CZK @ 1,632,791 CZK\nFees are 0.23099654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (52.249311995899159297968530205 CZK)\nThe limits being 0.10 % (15.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05805727 BTC (44,205.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,632,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.44 % (50,590.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 590.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00961708 BTC (15,702.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 670 transactions" + } + ] + }, + { + "id": 674, + "type": "message", + "date": "2024-03-30T13:29:05", + "date_unixtime": "1711801745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004010 BTC for 65.76 CZK @ 1,639,780 CZK\nFees are 0.23094862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (52.472959997614334865377661974 CZK)\nThe limits being 0.10 % (15.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05809737 BTC (44,271.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,639,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.19 % (50,995.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 524.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00965718 BTC (15,835.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004010 BTC for 65.76 CZK @ 1,639,780 CZK\nFees are 0.23094862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (52.472959997614334865377661974 CZK)\nThe limits being 0.10 % (15.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05809737 BTC (44,271.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,639,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.19 % (50,995.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 524.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00965718 BTC (15,835.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 671 transactions" + } + ] + }, + { + "id": 675, + "type": "message", + "date": "2024-03-31T01:29:03", + "date_unixtime": "1711844943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004031 BTC for 65.76 CZK @ 1,631,383 CZK\nFees are 0.23096924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (52.204255999560951208107273267 CZK)\nThe limits being 0.10 % (15.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05813768 BTC (44,337.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,631,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.92 % (50,507.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 458.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00969749 BTC (15,820.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004031 BTC for 65.76 CZK @ 1,631,383 CZK\nFees are 0.23096924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (52.204255999560951208107273267 CZK)\nThe limits being 0.10 % (15.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05813768 BTC (44,337.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,631,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.92 % (50,507.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 458.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00969749 BTC (15,820.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 672 transactions" + } + ] + }, + { + "id": 676, + "type": "message", + "date": "2024-03-31T14:29:03", + "date_unixtime": "1711888143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003992 BTC for 65.75 CZK @ 1,647,152 CZK\nFees are 0.23094557 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (105.41772798811374617695780200 CZK)\nThe limits being 0.10 % (16.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05817760 BTC (44,403.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,647,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.81 % (51,424.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 392.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00973741 BTC (16,038.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003992 BTC for 65.75 CZK @ 1,647,152 CZK\nFees are 0.23094557 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (105.41772798811374617695780200 CZK)\nThe limits being 0.10 % (16.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05817760 BTC (44,403.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,647,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.81 % (51,424.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 392.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00973741 BTC (16,038.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 673 transactions" + } + ] + }, + { + "id": 677, + "type": "message", + "date": "2024-04-01T02:29:04", + "date_unixtime": "1711931344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003962 BTC for 65.76 CZK @ 1,659,676 CZK\nFees are 0.23095279 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (79.66444799888929886236134156 CZK)\nThe limits being 0.10 % (16.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05821722 BTC (44,469.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,659,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.28 % (52,152.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 326.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00977703 BTC (16,226.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003962 BTC for 65.76 CZK @ 1,659,676 CZK\nFees are 0.23095279 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (79.66444799888929886236134156 CZK)\nThe limits being 0.10 % (16.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05821722 BTC (44,469.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,659,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.28 % (52,152.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 326.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00977703 BTC (16,226.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 674 transactions" + } + ] + }, + { + "id": 678, + "type": "message", + "date": "2024-04-01T14:29:04", + "date_unixtime": "1711974544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004025 BTC for 65.77 CZK @ 1,633,926 CZK\nFees are 0.23098495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (78.428447993760967050107233378 CZK)\nThe limits being 0.10 % (16.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05825747 BTC (44,535.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,633,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.74 % (50,653.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 260.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00981728 BTC (16,040.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004025 BTC for 65.77 CZK @ 1,633,926 CZK\nFees are 0.23098495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (78.428447993760967050107233378 CZK)\nThe limits being 0.10 % (16.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05825747 BTC (44,535.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,633,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.74 % (50,653.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 260.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00981728 BTC (16,040.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 675 transactions" + } + ] + }, + { + "id": 679, + "type": "message", + "date": "2024-04-02T02:29:03", + "date_unixtime": "1712017743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004024 BTC for 65.77 CZK @ 1,634,405 CZK\nFees are 0.23099526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (104.60191999968301798575760187 CZK)\nThe limits being 0.10 % (16.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05829771 BTC (44,601.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.63 % (50,681.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 194.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00985752 BTC (16,111.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004024 BTC for 65.77 CZK @ 1,634,405 CZK\nFees are 0.23099526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (104.60191999968301798575760187 CZK)\nThe limits being 0.10 % (16.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05829771 BTC (44,601.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.63 % (50,681.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 194.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00985752 BTC (16,111.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 676 transactions" + } + ] + }, + { + "id": 680, + "type": "message", + "date": "2024-04-02T14:29:05", + "date_unixtime": "1712060945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004238 BTC for 65.76 CZK @ 1,551,608 CZK\nFees are 0.23095554 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.651455996508680213871553386 CZK)\nThe limits being 0.10 % (15.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05834009 BTC (44,667.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.66 % (45,853.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,128.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00989990 BTC (15,360.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004238 BTC for 65.76 CZK @ 1,551,608 CZK\nFees are 0.23095554 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.651455996508680213871553386 CZK)\nThe limits being 0.10 % (15.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05834009 BTC (44,667.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.66 % (45,853.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,128.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00989990 BTC (15,360.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 677 transactions" + } + ] + }, + { + "id": 681, + "type": "message", + "date": "2024-04-03T02:29:04", + "date_unixtime": "1712104144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004291 BTC for 65.76 CZK @ 1,532,481 CZK\nFees are 0.23096120 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (73.559087989984251112715841792 CZK)\nThe limits being 0.10 % (15.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05838300 BTC (44,733.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,532,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.01 % (44,737.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,062.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00994281 BTC (15,237.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004291 BTC for 65.76 CZK @ 1,532,481 CZK\nFees are 0.23096120 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (73.559087989984251112715841792 CZK)\nThe limits being 0.10 % (15.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05838300 BTC (44,733.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,532,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.01 % (44,737.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,062.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00994281 BTC (15,237.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 678 transactions" + } + ] + }, + { + "id": 682, + "type": "message", + "date": "2024-04-03T14:29:03", + "date_unixtime": "1712147343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004233 BTC for 65.76 CZK @ 1,553,584 CZK\nFees are 0.23097684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.714687994334970527792461795 CZK)\nThe limits being 0.10 % (15.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05842533 BTC (44,799.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.61 % (45,969.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 997.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00998514 BTC (15,512.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004233 BTC for 65.76 CZK @ 1,553,584 CZK\nFees are 0.23097684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.714687994334970527792461795 CZK)\nThe limits being 0.10 % (15.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05842533 BTC (44,799.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.61 % (45,969.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 997.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00998514 BTC (15,512.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 679 transactions" + } + ] + }, + { + "id": 683, + "type": "message", + "date": "2024-04-04T02:29:03", + "date_unixtime": "1712190543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004246 BTC for 65.76 CZK @ 1,548,707 CZK\nFees are 0.23095888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (148.67587198362021197124243199 CZK)\nThe limits being 0.10 % (15.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05846779 BTC (44,864.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.83 % (45,684.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 931.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01002760 BTC (15,529.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004246 BTC for 65.76 CZK @ 1,548,707 CZK\nFees are 0.23095888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (148.67587198362021197124243199 CZK)\nThe limits being 0.10 % (15.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05846779 BTC (44,864.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.83 % (45,684.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 931.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01002760 BTC (15,529.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 680 transactions" + } + ] + }, + { + "id": 684, + "type": "message", + "date": "2024-04-04T14:29:03", + "date_unixtime": "1712233743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004243 BTC for 65.77 CZK @ 1,550,024 CZK\nFees are 0.23099197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.600767996903601946569049338 CZK)\nThe limits being 0.10 % (15.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05851022 BTC (44,930.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.85 % (45,761.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 865.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01007003 BTC (15,608.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004243 BTC for 65.77 CZK @ 1,550,024 CZK\nFees are 0.23099197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.600767996903601946569049338 CZK)\nThe limits being 0.10 % (15.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05851022 BTC (44,930.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.85 % (45,761.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 865.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01007003 BTC (15,608.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 681 transactions" + } + ] + }, + { + "id": 685, + "type": "message", + "date": "2024-04-05T02:29:02", + "date_unixtime": "1712276942", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004120 BTC for 65.77 CZK @ 1,596,334 CZK\nFees are 0.23099703 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (51.082687997832827821072846976 CZK)\nThe limits being 0.10 % (16.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05855142 BTC (44,996.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.72 % (48,470.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 799.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01011123 BTC (16,140.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004120 BTC for 65.77 CZK @ 1,596,334 CZK\nFees are 0.23099703 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (51.082687997832827821072846976 CZK)\nThe limits being 0.10 % (16.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05855142 BTC (44,996.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.72 % (48,470.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 799.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01011123 BTC (16,140.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 682 transactions" + } + ] + }, + { + "id": 686, + "type": "message", + "date": "2024-04-05T14:29:03", + "date_unixtime": "1712320143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004225 BTC for 65.76 CZK @ 1,556,345 CZK\nFees are 0.23095002 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.803039994811060695848553731 CZK)\nThe limits being 0.10 % (15.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05859367 BTC (45,062.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.37 % (46,128.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 733.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01015348 BTC (15,802.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004225 BTC for 65.76 CZK @ 1,556,345 CZK\nFees are 0.23095002 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (49.803039994811060695848553731 CZK)\nThe limits being 0.10 % (15.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05859367 BTC (45,062.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.37 % (46,128.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 733.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01015348 BTC (15,802.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 683 transactions" + } + ] + }, + { + "id": 687, + "type": "message", + "date": "2024-04-06T02:29:03", + "date_unixtime": "1712363343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004146 BTC for 65.77 CZK @ 1,586,238 CZK\nFees are 0.23098462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (101.51923199049347544087733454 CZK)\nThe limits being 0.10 % (16.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05863513 BTC (45,128.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.10 % (47,880.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 667.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01019494 BTC (16,171.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004146 BTC for 65.77 CZK @ 1,586,238 CZK\nFees are 0.23098462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (101.51923199049347544087733454 CZK)\nThe limits being 0.10 % (16.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05863513 BTC (45,128.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.10 % (47,880.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 667.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01019494 BTC (16,171.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 684 transactions" + } + ] + }, + { + "id": 688, + "type": "message", + "date": "2024-04-06T14:29:03", + "date_unixtime": "1712406543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004151 BTC for 65.77 CZK @ 1,584,406 CZK\nFees are 0.23099609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (50.700991995613521789612050429 CZK)\nThe limits being 0.10 % (16.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05867664 BTC (45,194.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.70 % (47,772.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 601.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01023645 BTC (16,218.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004151 BTC for 65.77 CZK @ 1,584,406 CZK\nFees are 0.23099609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (50.700991995613521789612050429 CZK)\nThe limits being 0.10 % (16.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05867664 BTC (45,194.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.70 % (47,772.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 601.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01023645 BTC (16,218.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 685 transactions" + } + ] + }, + { + "id": 689, + "type": "message", + "date": "2024-04-07T02:29:03", + "date_unixtime": "1712449743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004086 BTC for 65.75 CZK @ 1,609,266 CZK\nFees are 0.23094662 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (51.496511999484915863493923981 CZK)\nThe limits being 0.10 % (16.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05871750 BTC (45,260.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.77 % (49,231.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 535.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01027731 BTC (16,538.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004086 BTC for 65.75 CZK @ 1,609,266 CZK\nFees are 0.23094662 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (51.496511999484915863493923981 CZK)\nThe limits being 0.10 % (16.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05871750 BTC (45,260.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.77 % (49,231.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 535.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01027731 BTC (16,538.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 686 transactions" + } + ] + }, + { + "id": 690, + "type": "message", + "date": "2024-04-07T14:29:03", + "date_unixtime": "1712492943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004066 BTC for 65.76 CZK @ 1,617,376 CZK\nFees are 0.23097437 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (51.756031993286654603624157555 CZK)\nThe limits being 0.10 % (16.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05875816 BTC (45,326.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,617,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.66 % (49,707.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 469.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01031797 BTC (16,688.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004066 BTC for 65.76 CZK @ 1,617,376 CZK\nFees are 0.23097437 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (51.756031993286654603624157555 CZK)\nThe limits being 0.10 % (16.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05875816 BTC (45,326.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,617,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.66 % (49,707.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 469.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01031797 BTC (16,688.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 687 transactions" + } + ] + }, + { + "id": 691, + "type": "message", + "date": "2024-04-08T02:29:03", + "date_unixtime": "1712536143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004062 BTC for 65.76 CZK @ 1,618,878 CZK\nFees are 0.23096143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (51.804095995870681075124312566 CZK)\nThe limits being 0.10 % (16.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05879878 BTC (45,392.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,618,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.70 % (49,795.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 403.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01035859 BTC (16,769.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004062 BTC for 65.76 CZK @ 1,618,878 CZK\nFees are 0.23096143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (51.804095995870681075124312566 CZK)\nThe limits being 0.10 % (16.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05879878 BTC (45,392.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,618,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.70 % (49,795.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 403.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01035859 BTC (16,769.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 688 transactions" + } + ] + }, + { + "id": 692, + "type": "message", + "date": "2024-04-08T14:29:03", + "date_unixtime": "1712579343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003930 BTC for 65.76 CZK @ 1,673,158 CZK\nFees are 0.23094838 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (53.541054309915296462381664176 CZK)\nThe limits being 0.10 % (17.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05883808 BTC (45,458.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,673,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.56 % (52,986.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 337.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01039789 BTC (17,397.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003930 BTC for 65.76 CZK @ 1,673,158 CZK\nFees are 0.23094838 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (53.541054309915296462381664176 CZK)\nThe limits being 0.10 % (17.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05883808 BTC (45,458.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,673,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.56 % (52,986.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 337.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01039789 BTC (17,397.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 689 transactions" + } + ] + }, + { + "id": 693, + "type": "message", + "date": "2024-04-09T02:29:03", + "date_unixtime": "1712622543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003990 BTC for 65.76 CZK @ 1,648,184 CZK\nFees are 0.23097447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (184.59659503317336690006031522 CZK)\nThe limits being 0.10 % (17.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05887798 BTC (45,524.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,648,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.16 % (51,516.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 271.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01043779 BTC (17,203.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003990 BTC for 65.76 CZK @ 1,648,184 CZK\nFees are 0.23097447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (184.59659503317336690006031522 CZK)\nThe limits being 0.10 % (17.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05887798 BTC (45,524.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,648,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.16 % (51,516.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 271.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01043779 BTC (17,203.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 690 transactions" + } + ] + }, + { + "id": 694, + "type": "message", + "date": "2024-04-09T14:29:03", + "date_unixtime": "1712665743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003990 BTC for 65.76 CZK @ 1,648,117 CZK\nFees are 0.23096506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (105.47946990745423598857632372 CZK)\nThe limits being 0.10 % (17.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05891788 BTC (45,590.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,648,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.99 % (51,512.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 205.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01047769 BTC (17,268.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 691 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003990 BTC for 65.76 CZK @ 1,648,117 CZK\nFees are 0.23096506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (105.47946990745423598857632372 CZK)\nThe limits being 0.10 % (17.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05891788 BTC (45,590.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,648,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.99 % (51,512.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 205.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01047769 BTC (17,268.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 691 transactions" + } + ] + }, + { + "id": 695, + "type": "message", + "date": "2024-04-10T02:29:03", + "date_unixtime": "1712708943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004050 BTC for 65.76 CZK @ 1,623,801 CZK\nFees are 0.23097944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (181.86574462369361555543252936 CZK)\nThe limits being 0.10 % (17.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05895838 BTC (45,656.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,623,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.69 % (50,079.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,139.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01051819 BTC (17,079.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 692 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004050 BTC for 65.76 CZK @ 1,623,801 CZK\nFees are 0.23097944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (181.86574462369361555543252936 CZK)\nThe limits being 0.10 % (17.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05895838 BTC (45,656.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,623,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.69 % (50,079.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,139.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01051819 BTC (17,079.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 692 transactions" + } + ] + }, + { + "id": 696, + "type": "message", + "date": "2024-04-10T14:29:03", + "date_unixtime": "1712752143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004087 BTC for 65.75 CZK @ 1,608,877 CZK\nFees are 0.23094734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.21 % (205.93628205854990771838569900 CZK)\nThe limits being 0.10 % (16.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05899925 BTC (45,722.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,608,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.60 % (49,199.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,073.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01055906 BTC (16,988.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 693 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004087 BTC for 65.75 CZK @ 1,608,877 CZK\nFees are 0.23094734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.21 % (205.93628205854990771838569900 CZK)\nThe limits being 0.10 % (16.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05899925 BTC (45,722.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,608,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.60 % (49,199.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,073.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01055906 BTC (16,988.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 693 transactions" + } + ] + }, + { + "id": 697, + "type": "message", + "date": "2024-04-11T02:29:03", + "date_unixtime": "1712795343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003965 BTC for 65.76 CZK @ 1,658,421 CZK\nFees are 0.23095294 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.51 % (265.34741205779770802192326856 CZK)\nThe limits being 0.10 % (17.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05903890 BTC (45,788.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,658,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.83 % (52,122.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,007.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01059871 BTC (17,577.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 694 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003965 BTC for 65.76 CZK @ 1,658,421 CZK\nFees are 0.23095294 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.51 % (265.34741205779770802192326856 CZK)\nThe limits being 0.10 % (17.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05903890 BTC (45,788.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,658,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.83 % (52,122.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,007.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01059871 BTC (17,577.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 694 transactions" + } + ] + }, + { + "id": 698, + "type": "message", + "date": "2024-04-11T14:29:03", + "date_unixtime": "1712838543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003971 BTC for 65.76 CZK @ 1,655,933 CZK\nFees are 0.23095539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (264.94930269365706554382752786 CZK)\nThe limits being 0.10 % (17.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05907861 BTC (45,854.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,655,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.35 % (51,975.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 941.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01063842 BTC (17,616.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 695 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003971 BTC for 65.76 CZK @ 1,655,933 CZK\nFees are 0.23095539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (264.94930269365706554382752786 CZK)\nThe limits being 0.10 % (17.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05907861 BTC (45,854.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,655,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.35 % (51,975.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 941.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01063842 BTC (17,616.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 695 transactions" + } + ] + }, + { + "id": 699, + "type": "message", + "date": "2024-04-12T02:29:03", + "date_unixtime": "1712881743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003968 BTC for 65.76 CZK @ 1,657,201 CZK\nFees are 0.23095765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.00 % (530.30441390616712474082646221 CZK)\nThe limits being 0.10 % (17.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05911829 BTC (45,920.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,657,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.35 % (52,050.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 875.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01067810 BTC (17,695.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 696 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003968 BTC for 65.76 CZK @ 1,657,201 CZK\nFees are 0.23095765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.00 % (530.30441390616712474082646221 CZK)\nThe limits being 0.10 % (17.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05911829 BTC (45,920.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,657,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.35 % (52,050.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 875.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01067810 BTC (17,695.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 696 transactions" + } + ] + }, + { + "id": 700, + "type": "message", + "date": "2024-04-12T14:29:03", + "date_unixtime": "1712924943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003907 BTC for 65.76 CZK @ 1,683,030 CZK\nFees are 0.23095151 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.99 % (538.56975395432597120725018106 CZK)\nThe limits being 0.10 % (18.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05915736 BTC (45,986.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,683,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.50 % (53,576.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 809.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01071717 BTC (18,037.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 697 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003907 BTC for 65.76 CZK @ 1,683,030 CZK\nFees are 0.23095151 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.99 % (538.56975395432597120725018106 CZK)\nThe limits being 0.10 % (18.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05915736 BTC (45,986.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,683,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.50 % (53,576.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 809.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01071717 BTC (18,037.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 697 transactions" + } + ] + }, + { + "id": 701, + "type": "message", + "date": "2024-04-13T02:29:03", + "date_unixtime": "1712968143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004097 BTC for 65.76 CZK @ 1,605,053 CZK\nFees are 0.23096208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.42 % (590.65939341277946031944090240 CZK)\nThe limits being 0.10 % (17.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05919833 BTC (46,052.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,605,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.32 % (48,963.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 743.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01075814 BTC (17,267.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 698 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004097 BTC for 65.76 CZK @ 1,605,053 CZK\nFees are 0.23096208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.42 % (590.65939341277946031944090240 CZK)\nThe limits being 0.10 % (17.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05919833 BTC (46,052.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,605,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.32 % (48,963.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 743.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01075814 BTC (17,267.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 698 transactions" + } + ] + }, + { + "id": 702, + "type": "message", + "date": "2024-04-13T14:29:03", + "date_unixtime": "1713011343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004081 BTC for 65.76 CZK @ 1,611,477 CZK\nFees are 0.23098088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.63 % (283.61989279032819095430145435 CZK)\nThe limits being 0.10 % (17.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05923914 BTC (46,118.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,611,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.99 % (49,343.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 677.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01079895 BTC (17,402.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 699 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004081 BTC for 65.76 CZK @ 1,611,477 CZK\nFees are 0.23098088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.63 % (283.61989279032819095430145435 CZK)\nThe limits being 0.10 % (17.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05923914 BTC (46,118.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,611,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.99 % (49,343.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 677.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01079895 BTC (17,402.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 699 transactions" + } + ] + }, + { + "id": 703, + "type": "message", + "date": "2024-04-14T02:29:03", + "date_unixtime": "1713054543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004257 BTC for 65.76 CZK @ 1,544,709 CZK\nFees are 0.23095942 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (197.72271862856324218301483918 CZK)\nThe limits being 0.10 % (16.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05928171 BTC (46,184.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.28 % (45,388.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 611.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01084152 BTC (16,746.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 700 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004257 BTC for 65.76 CZK @ 1,544,709 CZK\nFees are 0.23095942 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (197.72271862856324218301483918 CZK)\nThe limits being 0.10 % (16.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05928171 BTC (46,184.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.28 % (45,388.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 611.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01084152 BTC (16,746.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 700 transactions" + } + ] + }, + { + "id": 704, + "type": "message", + "date": "2024-04-14T14:29:03", + "date_unixtime": "1713097743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004203 BTC for 65.77 CZK @ 1,564,827 CZK\nFees are 0.23099952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (175.26059424325116671710872522 CZK)\nThe limits being 0.10 % (17.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05932374 BTC (46,250.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.71 % (46,580.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 545.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01088355 BTC (17,030.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 701 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004203 BTC for 65.77 CZK @ 1,564,827 CZK\nFees are 0.23099952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (175.26059424325116671710872522 CZK)\nThe limits being 0.10 % (17.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05932374 BTC (46,250.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.71 % (46,580.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 545.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01088355 BTC (17,030.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 701 transactions" + } + ] + }, + { + "id": 705, + "type": "message", + "date": "2024-04-15T02:29:03", + "date_unixtime": "1713140943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004185 BTC for 65.76 CZK @ 1,571,211 CZK\nFees are 0.23094857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (175.97558705962821879693474274 CZK)\nThe limits being 0.10 % (17.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05936559 BTC (46,316.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.39 % (46,959.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 479.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01092540 BTC (17,166.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 702 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004185 BTC for 65.76 CZK @ 1,571,211 CZK\nFees are 0.23094857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (175.97558705962821879693474274 CZK)\nThe limits being 0.10 % (17.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05936559 BTC (46,316.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.39 % (46,959.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 479.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01092540 BTC (17,166.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 702 transactions" + } + ] + }, + { + "id": 706, + "type": "message", + "date": "2024-04-15T14:29:03", + "date_unixtime": "1713184143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004167 BTC for 65.77 CZK @ 1,578,278 CZK\nFees are 0.23098962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.77 % (479.79656132741069802607121775 CZK)\nThe limits being 0.10 % (17.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05940726 BTC (46,382.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.15 % (47,378.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 413.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01096707 BTC (17,309.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 703 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004167 BTC for 65.77 CZK @ 1,578,278 CZK\nFees are 0.23098962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.77 % (479.79656132741069802607121775 CZK)\nThe limits being 0.10 % (17.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05940726 BTC (46,382.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.15 % (47,378.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 413.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01096707 BTC (17,309.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 703 transactions" + } + ] + }, + { + "id": 707, + "type": "message", + "date": "2024-04-16T02:29:03", + "date_unixtime": "1713227343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004319 BTC for 65.76 CZK @ 1,522,471 CZK\nFees are 0.23094991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.63 % (608.98859105425523287156678876 CZK)\nThe limits being 0.10 % (16.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05945045 BTC (46,448.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.86 % (44,062.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 347.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01101026 BTC (16,762.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 704 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004319 BTC for 65.76 CZK @ 1,522,471 CZK\nFees are 0.23094991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.63 % (608.98859105425523287156678876 CZK)\nThe limits being 0.10 % (16.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05945045 BTC (46,448.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.86 % (44,062.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 347.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01101026 BTC (16,762.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 704 transactions" + } + ] + }, + { + "id": 708, + "type": "message", + "date": "2024-04-16T14:29:03", + "date_unixtime": "1713270543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004364 BTC for 65.76 CZK @ 1,506,934 CZK\nFees are 0.23097467 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (120.55470922349229575495847029 CZK)\nThe limits being 0.10 % (16.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05949409 BTC (46,514.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.74 % (43,138.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 281.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01105390 BTC (16,657.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 705 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004364 BTC for 65.76 CZK @ 1,506,934 CZK\nFees are 0.23097467 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (120.55470922349229575495847029 CZK)\nThe limits being 0.10 % (16.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05949409 BTC (46,514.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.74 % (43,138.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 281.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01105390 BTC (16,657.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 705 transactions" + } + ] + }, + { + "id": 709, + "type": "message", + "date": "2024-04-17T02:29:03", + "date_unixtime": "1713313743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004325 BTC for 65.76 CZK @ 1,520,502 CZK\nFees are 0.23097151 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (164.21417088467819279919126986 CZK)\nThe limits being 0.10 % (16.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05953734 BTC (46,580.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.34 % (43,945.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 215.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01109715 BTC (16,873.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 706 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004325 BTC for 65.76 CZK @ 1,520,502 CZK\nFees are 0.23097151 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (164.21417088467819279919126986 CZK)\nThe limits being 0.10 % (16.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05953734 BTC (46,580.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.34 % (43,945.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 215.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01109715 BTC (16,873.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 706 transactions" + } + ] + }, + { + "id": 710, + "type": "message", + "date": "2024-04-17T14:29:03", + "date_unixtime": "1713356943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004396 BTC for 65.77 CZK @ 1,496,100 CZK\nFees are 0.23099560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.42 % (403.94698435593711364183501512 CZK)\nThe limits being 0.10 % (16.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05958130 BTC (46,646.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,496,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.09 % (42,492.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 149.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01114111 BTC (16,668.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 707 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004396 BTC for 65.77 CZK @ 1,496,100 CZK\nFees are 0.23099560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.42 % (403.94698435593711364183501512 CZK)\nThe limits being 0.10 % (16.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05958130 BTC (46,646.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,496,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.09 % (42,492.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 149.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01114111 BTC (16,668.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 707 transactions" + } + ] + }, + { + "id": 711, + "type": "message", + "date": "2024-04-18T02:29:03", + "date_unixtime": "1713400143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004516 BTC for 65.76 CZK @ 1,456,251 CZK\nFees are 0.23098063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.74 % (445.61277957794309818204927573 CZK)\nThe limits being 0.10 % (16.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05962646 BTC (46,712.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.88 % (40,118.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 83.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01118627 BTC (16,290.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 708 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004516 BTC for 65.76 CZK @ 1,456,251 CZK\nFees are 0.23098063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.74 % (445.61277957794309818204927573 CZK)\nThe limits being 0.10 % (16.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05962646 BTC (46,712.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.88 % (40,118.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 83.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01118627 BTC (16,290.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 708 transactions" + } + ] + }, + { + "id": 712, + "type": "message", + "date": "2024-04-18T14:29:04", + "date_unixtime": "1713443344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004428 BTC for 65.77 CZK @ 1,485,288 CZK\nFees are 0.23099561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (187.14629728875764093963809593 CZK)\nThe limits being 0.10 % (16.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05967074 BTC (46,778.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.46 % (41,849.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,017.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01123055 BTC (16,680.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 709 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004428 BTC for 65.77 CZK @ 1,485,288 CZK\nFees are 0.23099561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (187.14629728875764093963809593 CZK)\nThe limits being 0.10 % (16.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05967074 BTC (46,778.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.46 % (41,849.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,017.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01123055 BTC (16,680.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 709 transactions" + } + ] + }, + { + "id": 713, + "type": "message", + "date": "2024-04-19T02:29:03", + "date_unixtime": "1713486543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004360 BTC for 65.76 CZK @ 1,508,258 CZK\nFees are 0.23096576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.76 % (298.63511495042580326654873081 CZK)\nThe limits being 0.10 % (17.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05971434 BTC (46,844.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,508,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.26 % (43,219.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 951.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01127415 BTC (17,004.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 710 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004360 BTC for 65.76 CZK @ 1,508,258 CZK\nFees are 0.23096576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.76 % (298.63511495042580326654873081 CZK)\nThe limits being 0.10 % (17.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05971434 BTC (46,844.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,508,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.26 % (43,219.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 951.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01127415 BTC (17,004.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 710 transactions" + } + ] + }, + { + "id": 714, + "type": "message", + "date": "2024-04-19T14:29:03", + "date_unixtime": "1713529743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004224 BTC for 65.76 CZK @ 1,556,826 CZK\nFees are 0.23096670 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.11 % (196.16005728529691534175839108 CZK)\nThe limits being 0.10 % (17.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05975658 BTC (46,910.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.31 % (46,119.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 885.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01131639 BTC (17,617.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 711 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004224 BTC for 65.76 CZK @ 1,556,826 CZK\nFees are 0.23096670 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.11 % (196.16005728529691534175839108 CZK)\nThe limits being 0.10 % (17.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05975658 BTC (46,910.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.31 % (46,119.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 885.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01131639 BTC (17,617.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 711 transactions" + } + ] + }, + { + "id": 715, + "type": "message", + "date": "2024-04-20T02:29:03", + "date_unixtime": "1713572943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004312 BTC for 65.77 CZK @ 1,525,207 CZK\nFees are 0.23098993 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (301.99104072481010341356273452 CZK)\nThe limits being 0.10 % (17.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05979970 BTC (46,976.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,525,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.15 % (44,230.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 819.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01135951 BTC (17,325.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 712 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004312 BTC for 65.77 CZK @ 1,525,207 CZK\nFees are 0.23098993 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.74 % (301.99104072481010341356273452 CZK)\nThe limits being 0.10 % (17.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05979970 BTC (46,976.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,525,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.15 % (44,230.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 819.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01135951 BTC (17,325.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 712 transactions" + } + ] + }, + { + "id": 716, + "type": "message", + "date": "2024-04-20T14:29:04", + "date_unixtime": "1713616144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004333 BTC for 65.76 CZK @ 1,517,720 CZK\nFees are 0.23097537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 22.73 % (3933.9293823954033028411637047 CZK)\nThe limits being 0.10 % (17.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05984303 BTC (47,042.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.07 % (43,782.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 753.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01140284 BTC (17,306.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 713 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004333 BTC for 65.76 CZK @ 1,517,720 CZK\nFees are 0.23097537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 22.73 % (3933.9293823954033028411637047 CZK)\nThe limits being 0.10 % (17.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05984303 BTC (47,042.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.07 % (43,782.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 753.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01140284 BTC (17,306.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 713 transactions" + } + ] + }, + { + "id": 717, + "type": "message", + "date": "2024-04-21T02:29:03", + "date_unixtime": "1713659343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004251 BTC for 65.76 CZK @ 1,546,936 CZK\nFees are 0.23096648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.54 % (804.4068629521445582662516056 CZK)\nThe limits being 0.10 % (17.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05988554 BTC (47,108.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.65 % (45,530.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 687.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01144535 BTC (17,705.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 714 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004251 BTC for 65.76 CZK @ 1,546,936 CZK\nFees are 0.23096648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.54 % (804.4068629521445582662516056 CZK)\nThe limits being 0.10 % (17.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05988554 BTC (47,108.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.65 % (45,530.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 687.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01144535 BTC (17,705.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 714 transactions" + } + ] + }, + { + "id": 718, + "type": "message", + "date": "2024-04-21T14:29:03", + "date_unixtime": "1713702543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004229 BTC for 65.76 CZK @ 1,555,091 CZK\nFees are 0.23098234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (450.97625630699268097247244009 CZK)\nThe limits being 0.10 % (17.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05992783 BTC (47,174.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,555,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.55 % (46,018.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 621.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01148764 BTC (17,864.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 715 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004229 BTC for 65.76 CZK @ 1,555,091 CZK\nFees are 0.23098234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.52 % (450.97625630699268097247244009 CZK)\nThe limits being 0.10 % (17.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05992783 BTC (47,174.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,555,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.55 % (46,018.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 621.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01148764 BTC (17,864.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 715 transactions" + } + ] + }, + { + "id": 719, + "type": "message", + "date": "2024-04-22T02:29:03", + "date_unixtime": "1713745743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004247 BTC for 65.76 CZK @ 1,548,430 CZK\nFees are 0.23097196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.37 % (422.72138642981258554794503673 CZK)\nThe limits being 0.10 % (17.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05997030 BTC (47,240.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.57 % (45,619.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 555.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01153011 BTC (17,853.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 716 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004247 BTC for 65.76 CZK @ 1,548,430 CZK\nFees are 0.23097196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.37 % (422.72138642981258554794503673 CZK)\nThe limits being 0.10 % (17.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05997030 BTC (47,240.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.57 % (45,619.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 555.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01153011 BTC (17,853.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 716 transactions" + } + ] + }, + { + "id": 720, + "type": "message", + "date": "2024-04-22T14:29:02", + "date_unixtime": "1713788942", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004186 BTC for 65.76 CZK @ 1,571,053 CZK\nFees are 0.23098062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (285.93168380234397001798054636 CZK)\nThe limits being 0.10 % (18.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06001216 BTC (47,306.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.30 % (46,975.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 489.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01157197 BTC (18,180.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 717 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004186 BTC for 65.76 CZK @ 1,571,053 CZK\nFees are 0.23098062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (285.93168380234397001798054636 CZK)\nThe limits being 0.10 % (18.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06001216 BTC (47,306.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.30 % (46,975.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 489.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01157197 BTC (18,180.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 717 transactions" + } + ] + }, + { + "id": 721, + "type": "message", + "date": "2024-04-23T02:29:03", + "date_unixtime": "1713832143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004132 BTC for 65.77 CZK @ 1,591,634 CZK\nFees are 0.23098780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.79 % (331.05994554393601098960993735 CZK)\nThe limits being 0.10 % (18.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06005348 BTC (47,372.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.77 % (48,210.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 423.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01161329 BTC (18,484.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 718 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004132 BTC for 65.77 CZK @ 1,591,634 CZK\nFees are 0.23098780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.79 % (331.05994554393601098960993735 CZK)\nThe limits being 0.10 % (18.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06005348 BTC (47,372.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.77 % (48,210.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 423.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01161329 BTC (18,484.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 718 transactions" + } + ] + }, + { + "id": 722, + "type": "message", + "date": "2024-04-23T14:29:03", + "date_unixtime": "1713875343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004185 BTC for 65.76 CZK @ 1,571,260 CZK\nFees are 0.23095579 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.23 % (592.36491480368292815051739460 CZK)\nThe limits being 0.10 % (18.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06009533 BTC (47,438.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.05 % (46,986.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 357.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01165514 BTC (18,313.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 719 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004185 BTC for 65.76 CZK @ 1,571,260 CZK\nFees are 0.23095579 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.23 % (592.36491480368292815051739460 CZK)\nThe limits being 0.10 % (18.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06009533 BTC (47,438.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.05 % (46,986.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 357.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01165514 BTC (18,313.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 719 transactions" + } + ] + }, + { + "id": 723, + "type": "message", + "date": "2024-04-24T02:29:03", + "date_unixtime": "1713918543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004171 BTC for 65.76 CZK @ 1,576,508 CZK\nFees are 0.23095200 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.11 % (758.30023388220346504806899183 CZK)\nThe limits being 0.10 % (18.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06013704 BTC (47,504.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.57 % (47,301.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 291.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01169685 BTC (18,440.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 720 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004171 BTC for 65.76 CZK @ 1,576,508 CZK\nFees are 0.23095200 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.11 % (758.30023388220346504806899183 CZK)\nThe limits being 0.10 % (18.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06013704 BTC (47,504.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.57 % (47,301.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 291.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01169685 BTC (18,440.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 720 transactions" + } + ] + }, + { + "id": 724, + "type": "message", + "date": "2024-04-24T14:29:04", + "date_unixtime": "1713961744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004155 BTC for 65.76 CZK @ 1,582,673 CZK\nFees are 0.23096579 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.65 % (678.96675310348797260131057543 CZK)\nThe limits being 0.10 % (18.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06017859 BTC (47,570.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,582,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.21 % (47,672.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 225.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01173840 BTC (18,578.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 721 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004155 BTC for 65.76 CZK @ 1,582,673 CZK\nFees are 0.23096579 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.65 % (678.96675310348797260131057543 CZK)\nThe limits being 0.10 % (18.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06017859 BTC (47,570.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,582,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.21 % (47,672.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 225.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01173840 BTC (18,578.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 721 transactions" + } + ] + }, + { + "id": 725, + "type": "message", + "date": "2024-04-25T02:29:03", + "date_unixtime": "1714004943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004304 BTC for 65.77 CZK @ 1,528,063 CZK\nFees are 0.23099312 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.09 % (556.21506818977445113107840034 CZK)\nThe limits being 0.10 % (18.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06022163 BTC (47,636.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,528,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.18 % (44,385.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 159.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01178144 BTC (18,002.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 722 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004304 BTC for 65.77 CZK @ 1,528,063 CZK\nFees are 0.23099312 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.09 % (556.21506818977445113107840034 CZK)\nThe limits being 0.10 % (18.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06022163 BTC (47,636.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,528,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.18 % (44,385.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 159.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01178144 BTC (18,002.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 722 transactions" + } + ] + }, + { + "id": 726, + "type": "message", + "date": "2024-04-25T14:29:03", + "date_unixtime": "1714048143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004348 BTC for 65.77 CZK @ 1,512,588 CZK\nFees are 0.23099128 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (117.98185747171010020585723656 CZK)\nThe limits being 0.10 % (17.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06026511 BTC (47,702.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,512,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.09 % (43,453.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,093.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01182492 BTC (17,886.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 723 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004348 BTC for 65.77 CZK @ 1,512,588 CZK\nFees are 0.23099128 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (117.98185747171010020585723656 CZK)\nThe limits being 0.10 % (17.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06026511 BTC (47,702.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,512,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.09 % (43,453.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,093.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01182492 BTC (17,886.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 723 transactions" + } + ] + }, + { + "id": 727, + "type": "message", + "date": "2024-04-26T02:29:04", + "date_unixtime": "1714091344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004337 BTC for 65.77 CZK @ 1,516,436 CZK\nFees are 0.23099313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.31 % (236.56409090479838894512508044 CZK)\nThe limits being 0.10 % (18.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06030848 BTC (47,768.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.45 % (43,685.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,027.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01186829 BTC (17,997.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 724 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004337 BTC for 65.77 CZK @ 1,516,436 CZK\nFees are 0.23099313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.31 % (236.56409090479838894512508044 CZK)\nThe limits being 0.10 % (18.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06030848 BTC (47,768.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.45 % (43,685.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,027.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01186829 BTC (17,997.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 724 transactions" + } + ] + }, + { + "id": 728, + "type": "message", + "date": "2024-04-26T14:29:04", + "date_unixtime": "1714134544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004332 BTC for 65.76 CZK @ 1,517,956 CZK\nFees are 0.23095806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (177.60088206650683825447498851 CZK)\nThe limits being 0.10 % (18.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06035180 BTC (47,834.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.52 % (43,776.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 961.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01191161 BTC (18,081.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 725 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004332 BTC for 65.76 CZK @ 1,517,956 CZK\nFees are 0.23095806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (177.60088206650683825447498851 CZK)\nThe limits being 0.10 % (18.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06035180 BTC (47,834.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.52 % (43,776.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 961.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01191161 BTC (18,081.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 725 transactions" + } + ] + }, + { + "id": 729, + "type": "message", + "date": "2024-04-27T02:29:03", + "date_unixtime": "1714177743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004364 BTC for 65.77 CZK @ 1,507,031 CZK\nFees are 0.23098958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (156.73123512618758269064689718 CZK)\nThe limits being 0.10 % (18.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06039544 BTC (47,900.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.01 % (43,117.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 895.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01195525 BTC (18,016.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 726 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004364 BTC for 65.77 CZK @ 1,507,031 CZK\nFees are 0.23098958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (156.73123512618758269064689718 CZK)\nThe limits being 0.10 % (18.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06039544 BTC (47,900.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.01 % (43,117.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 895.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01195525 BTC (18,016.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 726 transactions" + } + ] + }, + { + "id": 730, + "type": "message", + "date": "2024-04-27T14:29:03", + "date_unixtime": "1714220943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004403 BTC for 65.77 CZK @ 1,493,705 CZK\nFees are 0.23099306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (116.50898926027810227229905415 CZK)\nThe limits being 0.10 % (17.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06043947 BTC (47,966.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.21 % (42,312.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 829.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01199928 BTC (17,923.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 727 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004403 BTC for 65.77 CZK @ 1,493,705 CZK\nFees are 0.23099306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (116.50898926027810227229905415 CZK)\nThe limits being 0.10 % (17.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06043947 BTC (47,966.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.21 % (42,312.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 829.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01199928 BTC (17,923.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 727 transactions" + } + ] + }, + { + "id": 731, + "type": "message", + "date": "2024-04-28T02:29:02", + "date_unixtime": "1714264142", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004369 BTC for 65.76 CZK @ 1,505,148 CZK\nFees are 0.23096533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (117.40157741746870617521667982 CZK)\nThe limits being 0.10 % (18.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06048316 BTC (48,032.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,505,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.53 % (43,003.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 763.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01204297 BTC (18,126.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 728 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004369 BTC for 65.76 CZK @ 1,505,148 CZK\nFees are 0.23096533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (117.40157741746870617521667982 CZK)\nThe limits being 0.10 % (18.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06048316 BTC (48,032.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,505,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.53 % (43,003.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 763.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01204297 BTC (18,126.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 728 transactions" + } + ] + }, + { + "id": 732, + "type": "message", + "date": "2024-04-28T14:29:03", + "date_unixtime": "1714307343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004377 BTC for 65.77 CZK @ 1,502,614 CZK\nFees are 0.23099865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (117.20390217241710217118768341 CZK)\nThe limits being 0.10 % (18.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06052693 BTC (48,098.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,502,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.09 % (42,850.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 697.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01208674 BTC (18,161.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 729 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004377 BTC for 65.77 CZK @ 1,502,614 CZK\nFees are 0.23099865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (117.20390217241710217118768341 CZK)\nThe limits being 0.10 % (18.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06052693 BTC (48,098.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,502,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.09 % (42,850.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 697.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01208674 BTC (18,161.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 729 transactions" + } + ] + }, + { + "id": 733, + "type": "message", + "date": "2024-04-29T02:29:03", + "date_unixtime": "1714350543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004399 BTC for 65.77 CZK @ 1,495,063 CZK\nFees are 0.23099309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (97.17911880253620172089208570 CZK)\nThe limits being 0.10 % (18.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06057092 BTC (48,164.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,495,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.02 % (42,392.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 631.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01213073 BTC (18,136.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 730 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004399 BTC for 65.77 CZK @ 1,495,063 CZK\nFees are 0.23099309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (97.17911880253620172089208570 CZK)\nThe limits being 0.10 % (18.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06057092 BTC (48,164.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,495,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.02 % (42,392.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 631.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01213073 BTC (18,136.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 730 transactions" + } + ] + }, + { + "id": 734, + "type": "message", + "date": "2024-04-29T14:29:03", + "date_unixtime": "1714393743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004476 BTC for 65.76 CZK @ 1,469,235 CZK\nFees are 0.23097598 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (95.50028675774200485966676952 CZK)\nThe limits being 0.10 % (17.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06061568 BTC (48,230.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,469,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.65 % (40,828.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 565.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01217549 BTC (17,888.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 731 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004476 BTC for 65.76 CZK @ 1,469,235 CZK\nFees are 0.23097598 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (95.50028675774200485966676952 CZK)\nThe limits being 0.10 % (17.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06061568 BTC (48,230.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,469,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.65 % (40,828.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 565.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01217549 BTC (17,888.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 731 transactions" + } + ] + }, + { + "id": 735, + "type": "message", + "date": "2024-04-30T02:29:03", + "date_unixtime": "1714436943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004381 BTC for 65.76 CZK @ 1,501,114 CZK\nFees are 0.23097898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (117.08692346520117274997449579 CZK)\nThe limits being 0.10 % (18.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06065949 BTC (48,296.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,501,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.54 % (42,760.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 499.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01221930 BTC (18,342.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 732 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004381 BTC for 65.76 CZK @ 1,501,114 CZK\nFees are 0.23097898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (117.08692346520117274997449579 CZK)\nThe limits being 0.10 % (18.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06065949 BTC (48,296.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,501,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.54 % (42,760.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 499.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01221930 BTC (18,342.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 732 transactions" + } + ] + }, + { + "id": 736, + "type": "message", + "date": "2024-04-30T14:29:03", + "date_unixtime": "1714480143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004552 BTC for 65.77 CZK @ 1,444,792 CZK\nFees are 0.23098998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (93.91150849990761683842929361 CZK)\nThe limits being 0.10 % (17.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06070501 BTC (48,362.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.35 % (39,343.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 433.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01226482 BTC (17,720.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 733 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004552 BTC for 65.77 CZK @ 1,444,792 CZK\nFees are 0.23098998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (93.91150849990761683842929361 CZK)\nThe limits being 0.10 % (17.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06070501 BTC (48,362.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.35 % (39,343.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 433.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01226482 BTC (17,720.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 733 transactions" + } + ] + }, + { + "id": 737, + "type": "message", + "date": "2024-05-01T02:29:04", + "date_unixtime": "1714523344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004585 BTC for 65.76 CZK @ 1,434,146 CZK\nFees are 0.23095008 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (111.86338650926772653401209182 CZK)\nThe limits being 0.10 % (17.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06075086 BTC (48,428.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.91 % (38,697.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 367.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01231067 BTC (17,655.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 734 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004585 BTC for 65.76 CZK @ 1,434,146 CZK\nFees are 0.23095008 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (111.86338650926772653401209182 CZK)\nThe limits being 0.10 % (17.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06075086 BTC (48,428.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.91 % (38,697.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 367.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01231067 BTC (17,655.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 734 transactions" + } + ] + }, + { + "id": 738, + "type": "message", + "date": "2024-05-01T14:29:03", + "date_unixtime": "1714566543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004785 BTC for 65.77 CZK @ 1,374,466 CZK\nFees are 0.23099430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (71.472214842617193011502583176 CZK)\nThe limits being 0.10 % (16.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06079871 BTC (48,494.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,374,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.32 % (35,071.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 301.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01235852 BTC (16,986.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 735 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004785 BTC for 65.77 CZK @ 1,374,466 CZK\nFees are 0.23099430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (71.472214842617193011502583176 CZK)\nThe limits being 0.10 % (16.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06079871 BTC (48,494.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,374,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.32 % (35,071.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 301.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01235852 BTC (16,986.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 735 transactions" + } + ] + }, + { + "id": 739, + "type": "message", + "date": "2024-05-02T02:39:33", + "date_unixtime": "1714610373", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06084668 BTC (48,560.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.77 % (34,851.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01240649 BTC (17,007.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06084668 BTC (48,560.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.77 % (34,851.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01240649 BTC (17,007.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 736 transactions" + } + ] + }, + { + "id": 740, + "type": "message", + "date": "2024-05-02T02:39:33", + "date_unixtime": "1714610373", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06084668 BTC (48,560.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.77 % (34,851.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01240649 BTC (17,007.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06084668 BTC (48,560.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.77 % (34,851.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01240649 BTC (17,007.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 736 transactions" + } + ] + }, + { + "id": 741, + "type": "message", + "date": "2024-05-02T02:39:33", + "date_unixtime": "1714610373", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06084668 BTC (48,560.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.77 % (34,851.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01240649 BTC (17,007.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06084668 BTC (48,560.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.77 % (34,851.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01240649 BTC (17,007.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 736 transactions" + } + ] + }, + { + "id": 742, + "type": "message", + "date": "2024-05-02T02:39:33", + "date_unixtime": "1714610373", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06084668 BTC (48,560.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.77 % (34,851.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01240649 BTC (17,007.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004797 BTC for 65.76 CZK @ 1,370,853 CZK\nFees are 0.23096487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (106.92650993068974038021396656 CZK)\nThe limits being 0.10 % (17.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06084668 BTC (48,560.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.77 % (34,851.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01240649 BTC (17,007.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 736 transactions" + } + ] + }, + { + "id": 743, + "type": "message", + "date": "2024-05-02T14:29:03", + "date_unixtime": "1714652943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004743 BTC for 65.77 CZK @ 1,386,636 CZK\nFees are 0.23099415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (72.105067543378903334429013527 CZK)\nThe limits being 0.10 % (17.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06089411 BTC (48,626.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,386,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.65 % (35,811.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,169.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01245392 BTC (17,269.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 737 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004743 BTC for 65.77 CZK @ 1,386,636 CZK\nFees are 0.23099415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (72.105067543378903334429013527 CZK)\nThe limits being 0.10 % (17.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06089411 BTC (48,626.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,386,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.65 % (35,811.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,169.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01245392 BTC (17,269.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 737 transactions" + } + ] + }, + { + "id": 744, + "type": "message", + "date": "2024-05-03T02:29:02", + "date_unixtime": "1714696142", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004763 BTC for 65.76 CZK @ 1,380,688 CZK\nFees are 0.23097320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (89.74472867219612732718709376 CZK)\nThe limits being 0.10 % (17.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06094174 BTC (48,692.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.80 % (35,448.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,103.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01250155 BTC (17,260.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 738 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004763 BTC for 65.76 CZK @ 1,380,688 CZK\nFees are 0.23097320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (89.74472867219612732718709376 CZK)\nThe limits being 0.10 % (17.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06094174 BTC (48,692.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.80 % (35,448.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,103.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01250155 BTC (17,260.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 738 transactions" + } + ] + }, + { + "id": 745, + "type": "message", + "date": "2024-05-03T14:29:04", + "date_unixtime": "1714739344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004752 BTC for 65.76 CZK @ 1,383,869 CZK\nFees are 0.23097068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (71.961189993272703785907572652 CZK)\nThe limits being 0.10 % (17.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06098926 BTC (48,758.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,383,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.10 % (35,642.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,037.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01254907 BTC (17,366.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 739 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004752 BTC for 65.76 CZK @ 1,383,869 CZK\nFees are 0.23097068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (71.961189993272703785907572652 CZK)\nThe limits being 0.10 % (17.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06098926 BTC (48,758.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,383,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.10 % (35,642.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,037.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01254907 BTC (17,366.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 739 transactions" + } + ] + }, + { + "id": 746, + "type": "message", + "date": "2024-05-04T02:29:03", + "date_unixtime": "1714782543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004470 BTC for 65.77 CZK @ 1,471,280 CZK\nFees are 0.23098743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (95.63321709029582144819752789 CZK)\nThe limits being 0.10 % (18.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06103396 BTC (48,824.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,471,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.92 % (40,973.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 971.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01259377 BTC (18,528.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 740 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004470 BTC for 65.77 CZK @ 1,471,280 CZK\nFees are 0.23098743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (95.63321709029582144819752789 CZK)\nThe limits being 0.10 % (18.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06103396 BTC (48,824.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,471,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.92 % (40,973.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 971.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01259377 BTC (18,528.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 740 transactions" + } + ] + }, + { + "id": 747, + "type": "message", + "date": "2024-05-04T14:29:03", + "date_unixtime": "1714825743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004394 BTC for 65.77 CZK @ 1,496,794 CZK\nFees are 0.23099757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (116.74990596226815612810783559 CZK)\nThe limits being 0.10 % (18.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06107790 BTC (48,890.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,496,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.99 % (42,530.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 905.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01263771 BTC (18,916.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 741 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004394 BTC for 65.77 CZK @ 1,496,794 CZK\nFees are 0.23099757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (116.74990596226815612810783559 CZK)\nThe limits being 0.10 % (18.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06107790 BTC (48,890.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,496,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.99 % (42,530.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 905.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01263771 BTC (18,916.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 741 transactions" + } + ] + }, + { + "id": 748, + "type": "message", + "date": "2024-05-05T02:29:04", + "date_unixtime": "1714868944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004388 BTC for 65.76 CZK @ 1,498,682 CZK\nFees are 0.23097322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (136.38009473179332682012227941 CZK)\nThe limits being 0.10 % (19.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06112178 BTC (48,956.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,498,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.11 % (42,645.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 839.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01268159 BTC (19,005.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 742 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004388 BTC for 65.76 CZK @ 1,498,682 CZK\nFees are 0.23097322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (136.38009473179332682012227941 CZK)\nThe limits being 0.10 % (19.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06112178 BTC (48,956.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,498,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.11 % (42,645.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 839.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01268159 BTC (19,005.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 742 transactions" + } + ] + }, + { + "id": 749, + "type": "message", + "date": "2024-05-05T14:29:03", + "date_unixtime": "1714912143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004406 BTC for 65.76 CZK @ 1,492,483 CZK\nFees are 0.23096134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.21 % (989.5161982084492745658013566 CZK)\nThe limits being 0.10 % (18.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06116584 BTC (49,022.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.22 % (42,266.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 773.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01272565 BTC (18,992.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 743 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004406 BTC for 65.76 CZK @ 1,492,483 CZK\nFees are 0.23096134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.21 % (989.5161982084492745658013566 CZK)\nThe limits being 0.10 % (18.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06116584 BTC (49,022.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.22 % (42,266.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 773.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01272565 BTC (18,992.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 743 transactions" + } + ] + }, + { + "id": 750, + "type": "message", + "date": "2024-05-06T02:29:03", + "date_unixtime": "1714955343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004396 BTC for 65.77 CZK @ 1,496,080 CZK\nFees are 0.23099251 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (97.24519300283402993979669882 CZK)\nThe limits being 0.10 % (19.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06120980 BTC (49,088.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,496,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.55 % (42,486.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 707.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01276961 BTC (19,104.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 744 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004396 BTC for 65.77 CZK @ 1,496,080 CZK\nFees are 0.23099251 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (97.24519300283402993979669882 CZK)\nThe limits being 0.10 % (19.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06120980 BTC (49,088.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,496,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.55 % (42,486.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 707.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01276961 BTC (19,104.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 744 transactions" + } + ] + }, + { + "id": 751, + "type": "message", + "date": "2024-05-06T14:29:03", + "date_unixtime": "1714998543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004421 BTC for 65.76 CZK @ 1,487,465 CZK\nFees are 0.23096854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (96.68525650496954394069974722 CZK)\nThe limits being 0.10 % (19.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06125401 BTC (49,154.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.36 % (41,958.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 641.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01281382 BTC (19,060.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 745 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004421 BTC for 65.76 CZK @ 1,487,465 CZK\nFees are 0.23096854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (96.68525650496954394069974722 CZK)\nThe limits being 0.10 % (19.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06125401 BTC (49,154.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.36 % (41,958.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 641.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01281382 BTC (19,060.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 745 transactions" + } + ] + }, + { + "id": 752, + "type": "message", + "date": "2024-05-07T02:29:04", + "date_unixtime": "1715041744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004461 BTC for 65.77 CZK @ 1,474,286 CZK\nFees are 0.23099326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (114.99428708330527082581509438 CZK)\nThe limits being 0.10 % (18.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06129862 BTC (49,220.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,474,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.61 % (41,151.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 575.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01285843 BTC (18,957.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 746 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004461 BTC for 65.77 CZK @ 1,474,286 CZK\nFees are 0.23099326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (114.99428708330527082581509438 CZK)\nThe limits being 0.10 % (18.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06129862 BTC (49,220.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,474,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.61 % (41,151.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 575.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01285843 BTC (18,957.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 746 transactions" + } + ] + }, + { + "id": 753, + "type": "message", + "date": "2024-05-07T14:29:03", + "date_unixtime": "1715084943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004442 BTC for 65.76 CZK @ 1,480,503 CZK\nFees are 0.23097944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (115.47924825873961620595363324 CZK)\nThe limits being 0.10 % (19.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06134304 BTC (49,286.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.27 % (41,532.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 509.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01290285 BTC (19,102.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 747 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004442 BTC for 65.76 CZK @ 1,480,503 CZK\nFees are 0.23097944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (115.47924825873961620595363324 CZK)\nThe limits being 0.10 % (19.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06134304 BTC (49,286.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.27 % (41,532.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 509.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01290285 BTC (19,102.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 747 transactions" + } + ] + }, + { + "id": 754, + "type": "message", + "date": "2024-05-08T02:29:03", + "date_unixtime": "1715128143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004506 BTC for 65.76 CZK @ 1,459,488 CZK\nFees are 0.23098146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (94.86671727957917373524665446 CZK)\nThe limits being 0.10 % (18.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06138810 BTC (49,352.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.54 % (40,242.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 443.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01294791 BTC (18,897.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 748 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004506 BTC for 65.76 CZK @ 1,459,488 CZK\nFees are 0.23098146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (94.86671727957917373524665446 CZK)\nThe limits being 0.10 % (18.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06138810 BTC (49,352.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.54 % (40,242.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 443.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01294791 BTC (18,897.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 748 transactions" + } + ] + }, + { + "id": 755, + "type": "message", + "date": "2024-05-08T14:29:03", + "date_unixtime": "1715171343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004507 BTC for 65.76 CZK @ 1,458,994 CZK\nFees are 0.23095449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (94.83459243988396945282149265 CZK)\nThe limits being 0.10 % (18.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06143317 BTC (49,418.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,458,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.37 % (40,212.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 377.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01299298 BTC (18,956.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 749 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004507 BTC for 65.76 CZK @ 1,458,994 CZK\nFees are 0.23095449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (94.83459243988396945282149265 CZK)\nThe limits being 0.10 % (18.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06143317 BTC (49,418.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,458,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.37 % (40,212.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 377.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01299298 BTC (18,956.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 749 transactions" + } + ] + }, + { + "id": 756, + "type": "message", + "date": "2024-05-09T02:29:04", + "date_unixtime": "1715214544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004588 BTC for 65.76 CZK @ 1,433,361 CZK\nFees are 0.23097471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (55.901080177964743276474796799 CZK)\nThe limits being 0.10 % (18.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06147905 BTC (49,484.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.08 % (38,637.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 311.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01303886 BTC (18,689.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 750 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004588 BTC for 65.76 CZK @ 1,433,361 CZK\nFees are 0.23097471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (55.901080177964743276474796799 CZK)\nThe limits being 0.10 % (18.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06147905 BTC (49,484.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.08 % (38,637.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 311.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01303886 BTC (18,689.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 750 transactions" + } + ] + }, + { + "id": 757, + "type": "message", + "date": "2024-05-09T14:29:03", + "date_unixtime": "1715257743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004598 BTC for 65.76 CZK @ 1,430,100 CZK\nFees are 0.23095149 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (55.773897123660056266746248938 CZK)\nThe limits being 0.10 % (18.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06152503 BTC (49,550.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,371 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.57 % (38,436.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 245.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01308484 BTC (18,712.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 751 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004598 BTC for 65.76 CZK @ 1,430,100 CZK\nFees are 0.23095149 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (55.773897123660056266746248938 CZK)\nThe limits being 0.10 % (18.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06152503 BTC (49,550.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,371 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.57 % (38,436.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 245.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01308484 BTC (18,712.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 751 transactions" + } + ] + }, + { + "id": 758, + "type": "message", + "date": "2024-05-10T02:29:03", + "date_unixtime": "1715300943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004502 BTC for 65.76 CZK @ 1,460,644 CZK\nFees are 0.23095919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (94.94184898612298093943521088 CZK)\nThe limits being 0.10 % (19.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06157005 BTC (49,616.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,460,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.25 % (40,315.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 179.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01312986 BTC (19,178.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 752 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004502 BTC for 65.76 CZK @ 1,460,644 CZK\nFees are 0.23095919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (94.94184898612298093943521088 CZK)\nThe limits being 0.10 % (19.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06157005 BTC (49,616.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,460,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.25 % (40,315.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 179.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01312986 BTC (19,178.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 752 transactions" + } + ] + }, + { + "id": 759, + "type": "message", + "date": "2024-05-10T14:29:04", + "date_unixtime": "1715344144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004479 BTC for 65.77 CZK @ 1,468,336 CZK\nFees are 0.23098933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (76.353469196726393990757733065 CZK)\nThe limits being 0.10 % (19.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06161484 BTC (49,682.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,468,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.10 % (40,788.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,113.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01317465 BTC (19,344.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 753 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004479 BTC for 65.77 CZK @ 1,468,336 CZK\nFees are 0.23098933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (76.353469196726393990757733065 CZK)\nThe limits being 0.10 % (19.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06161484 BTC (49,682.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,468,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.10 % (40,788.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,113.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01317465 BTC (19,344.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 753 transactions" + } + ] + }, + { + "id": 760, + "type": "message", + "date": "2024-05-11T02:29:03", + "date_unixtime": "1715387343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004644 BTC for 65.76 CZK @ 1,416,108 CZK\nFees are 0.23097983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (92.04703009213660886295038854 CZK)\nThe limits being 0.10 % (18.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06166128 BTC (49,748.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.52 % (37,570.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,047.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01322109 BTC (18,722.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 754 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004644 BTC for 65.76 CZK @ 1,416,108 CZK\nFees are 0.23097983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (92.04703009213660886295038854 CZK)\nThe limits being 0.10 % (18.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06166128 BTC (49,748.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.52 % (37,570.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,047.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01322109 BTC (18,722.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 754 transactions" + } + ] + }, + { + "id": 761, + "type": "message", + "date": "2024-05-11T14:29:03", + "date_unixtime": "1715430543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004654 BTC for 65.76 CZK @ 1,412,939 CZK\nFees are 0.23095922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.59 % (110.20926387253551118571034898 CZK)\nThe limits being 0.10 % (18.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06170782 BTC (49,814.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.03 % (37,374.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 981.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01326763 BTC (18,746.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 755 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004654 BTC for 65.76 CZK @ 1,412,939 CZK\nFees are 0.23095922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.59 % (110.20926387253551118571034898 CZK)\nThe limits being 0.10 % (18.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06170782 BTC (49,814.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.03 % (37,374.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 981.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01326763 BTC (18,746.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 755 transactions" + } + ] + }, + { + "id": 762, + "type": "message", + "date": "2024-05-12T02:29:01", + "date_unixtime": "1715473741", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004629 BTC for 65.76 CZK @ 1,420,652 CZK\nFees are 0.23097259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.405445485195852106738534380 CZK)\nThe limits being 0.10 % (18.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06175411 BTC (49,880.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.88 % (37,850.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 915.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01331392 BTC (18,914.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 756 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004629 BTC for 65.76 CZK @ 1,420,652 CZK\nFees are 0.23097259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.405445485195852106738534380 CZK)\nThe limits being 0.10 % (18.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06175411 BTC (49,880.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.88 % (37,850.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 915.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01331392 BTC (18,914.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 756 transactions" + } + ] + }, + { + "id": 763, + "type": "message", + "date": "2024-05-12T14:29:00", + "date_unixtime": "1715516940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004626 BTC for 65.77 CZK @ 1,421,671 CZK\nFees are 0.23098839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.445168200532894919661857946 CZK)\nThe limits being 0.10 % (18.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06180037 BTC (49,946.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,671 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.91 % (37,913.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 849.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01336018 BTC (18,993.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 757 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004626 BTC for 65.77 CZK @ 1,421,671 CZK\nFees are 0.23098839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.445168200532894919661857946 CZK)\nThe limits being 0.10 % (18.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06180037 BTC (49,946.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,671 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.91 % (37,913.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 849.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01336018 BTC (18,993.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 757 transactions" + } + ] + }, + { + "id": 764, + "type": "message", + "date": "2024-05-13T02:29:00", + "date_unixtime": "1715560140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004597 BTC for 65.77 CZK @ 1,430,703 CZK\nFees are 0.23099870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.797433613200004032005015295 CZK)\nThe limits being 0.10 % (19.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06184634 BTC (50,012.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.92 % (38,471.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 783.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01340615 BTC (19,180.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 758 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004597 BTC for 65.77 CZK @ 1,430,703 CZK\nFees are 0.23099870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.797433613200004032005015295 CZK)\nThe limits being 0.10 % (19.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06184634 BTC (50,012.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.92 % (38,471.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 783.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01340615 BTC (19,180.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 758 transactions" + } + ] + }, + { + "id": 765, + "type": "message", + "date": "2024-05-13T14:29:04", + "date_unixtime": "1715603344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004543 BTC for 65.76 CZK @ 1,447,563 CZK\nFees are 0.23097540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (56.454969648273744952319095362 CZK)\nThe limits being 0.10 % (19.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06189177 BTC (50,078.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.90 % (39,513.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 717.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01345158 BTC (19,472.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 759 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004543 BTC for 65.76 CZK @ 1,447,563 CZK\nFees are 0.23097540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (56.454969648273744952319095362 CZK)\nThe limits being 0.10 % (19.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06189177 BTC (50,078.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.90 % (39,513.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 717.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01345158 BTC (19,472.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 759 transactions" + } + ] + }, + { + "id": 766, + "type": "message", + "date": "2024-05-14T02:29:03", + "date_unixtime": "1715646543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004529 BTC for 65.76 CZK @ 1,452,012 CZK\nFees are 0.23097132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (56.628482843498846992030432678 CZK)\nThe limits being 0.10 % (19.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06193706 BTC (50,144.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,452,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.35 % (39,788.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 651.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01349687 BTC (19,597.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 760 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004529 BTC for 65.76 CZK @ 1,452,012 CZK\nFees are 0.23097132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (56.628482843498846992030432678 CZK)\nThe limits being 0.10 % (19.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06193706 BTC (50,144.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,452,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.35 % (39,788.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 651.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01349687 BTC (19,597.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 760 transactions" + } + ] + }, + { + "id": 767, + "type": "message", + "date": "2024-05-14T14:29:03", + "date_unixtime": "1715689743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004613 BTC for 65.77 CZK @ 1,425,741 CZK\nFees are 0.23099870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.603902670590068944689684089 CZK)\nThe limits being 0.10 % (19.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06198319 BTC (50,210.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,425,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.00 % (38,161.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 585.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01354300 BTC (19,308.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 761 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004613 BTC for 65.77 CZK @ 1,425,741 CZK\nFees are 0.23099870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (55.603902670590068944689684089 CZK)\nThe limits being 0.10 % (19.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06198319 BTC (50,210.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,425,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.00 % (38,161.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 585.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01354300 BTC (19,308.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 761 transactions" + } + ] + }, + { + "id": 768, + "type": "message", + "date": "2024-05-15T02:29:03", + "date_unixtime": "1715732943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004630 BTC for 65.77 CZK @ 1,420,487 CZK\nFees are 0.23099559 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (73.865325938050516496796848182 CZK)\nThe limits being 0.10 % (19.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06202949 BTC (50,276.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.26 % (37,835.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 519.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01358930 BTC (19,303.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 762 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004630 BTC for 65.77 CZK @ 1,420,487 CZK\nFees are 0.23099559 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (73.865325938050516496796848182 CZK)\nThe limits being 0.10 % (19.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06202949 BTC (50,276.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.26 % (37,835.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 519.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01358930 BTC (19,303.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 762 transactions" + } + ] + }, + { + "id": 769, + "type": "message", + "date": "2024-05-15T14:29:04", + "date_unixtime": "1715776144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004577 BTC for 65.77 CZK @ 1,436,865 CZK\nFees are 0.23098417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (56.037724752311632902930196574 CZK)\nThe limits being 0.10 % (19.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06207526 BTC (50,342.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.17 % (38,851.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 453.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01363507 BTC (19,591.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 763 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004577 BTC for 65.77 CZK @ 1,436,865 CZK\nFees are 0.23098417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (56.037724752311632902930196574 CZK)\nThe limits being 0.10 % (19.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06207526 BTC (50,342.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.17 % (38,851.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 453.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01363507 BTC (19,591.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 763 transactions" + } + ] + }, + { + "id": 770, + "type": "message", + "date": "2024-05-16T02:29:03", + "date_unixtime": "1715819343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004409 BTC for 65.77 CZK @ 1,491,707 CZK\nFees are 0.23099844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (58.176573991031390134529147980 CZK)\nThe limits being 0.10 % (20.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06211935 BTC (50,408.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.83 % (42,255.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 387.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01367916 BTC (20,405.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 764 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004409 BTC for 65.77 CZK @ 1,491,707 CZK\nFees are 0.23099844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (58.176573991031390134529147980 CZK)\nThe limits being 0.10 % (20.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06211935 BTC (50,408.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.83 % (42,255.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 387.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01367916 BTC (20,405.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 764 transactions" + } + ] + }, + { + "id": 771, + "type": "message", + "date": "2024-05-16T14:29:04", + "date_unixtime": "1715862544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004373 BTC for 65.76 CZK @ 1,503,737 CZK\nFees are 0.23096000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (58.645739910313901345291479820 CZK)\nThe limits being 0.10 % (20.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06216308 BTC (50,474.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.20 % (43,002.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 321.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01372289 BTC (20,635.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 765 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004373 BTC for 65.76 CZK @ 1,503,737 CZK\nFees are 0.23096000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (58.645739910313901345291479820 CZK)\nThe limits being 0.10 % (20.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06216308 BTC (50,474.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.20 % (43,002.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 321.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01372289 BTC (20,635.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 765 transactions" + } + ] + }, + { + "id": 772, + "type": "message", + "date": "2024-05-17T02:29:03", + "date_unixtime": "1715905743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004412 BTC for 65.76 CZK @ 1,490,487 CZK\nFees are 0.23096657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (58.128992742310345341621640666 CZK)\nThe limits being 0.10 % (20.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06220720 BTC (50,540.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.46 % (42,178.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 255.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01376701 BTC (20,519.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 766 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004412 BTC for 65.76 CZK @ 1,490,487 CZK\nFees are 0.23096657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (58.128992742310345341621640666 CZK)\nThe limits being 0.10 % (20.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06220720 BTC (50,540.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.46 % (42,178.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 255.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01376701 BTC (20,519.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 766 transactions" + } + ] + }, + { + "id": 773, + "type": "message", + "date": "2024-05-17T14:29:04", + "date_unixtime": "1715948944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004351 BTC for 65.76 CZK @ 1,511,292 CZK\nFees are 0.23095257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (58.940376100334648083580600512 CZK)\nThe limits being 0.10 % (20.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06225071 BTC (50,606.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.90 % (43,472.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,189.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01381052 BTC (20,871.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 767 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004351 BTC for 65.76 CZK @ 1,511,292 CZK\nFees are 0.23095257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (58.940376100334648083580600512 CZK)\nThe limits being 0.10 % (20.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06225071 BTC (50,606.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.90 % (43,472.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,189.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01381052 BTC (20,871.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 767 transactions" + } + ] + }, + { + "id": 774, + "type": "message", + "date": "2024-05-18T02:29:03", + "date_unixtime": "1715992143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004317 BTC for 65.76 CZK @ 1,523,261 CZK\nFees are 0.23096274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.407196194140522071291134262 CZK)\nThe limits being 0.10 % (21.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06229388 BTC (50,672.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.26 % (44,217.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,123.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01385369 BTC (21,102.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 768 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004317 BTC for 65.76 CZK @ 1,523,261 CZK\nFees are 0.23096274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.407196194140522071291134262 CZK)\nThe limits being 0.10 % (21.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06229388 BTC (50,672.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.26 % (44,217.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,123.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01385369 BTC (21,102.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 768 transactions" + } + ] + }, + { + "id": 775, + "type": "message", + "date": "2024-05-18T14:29:03", + "date_unixtime": "1716035343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004294 BTC for 65.76 CZK @ 1,531,493 CZK\nFees are 0.23097366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.728222969722413100492013398 CZK)\nThe limits being 0.10 % (21.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06233682 BTC (50,738.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,531,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.16 % (44,730.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,057.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01389663 BTC (21,282.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 769 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004294 BTC for 65.76 CZK @ 1,531,493 CZK\nFees are 0.23097366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.728222969722413100492013398 CZK)\nThe limits being 0.10 % (21.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06233682 BTC (50,738.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,531,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.16 % (44,730.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,057.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01389663 BTC (21,282.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 769 transactions" + } + ] + }, + { + "id": 776, + "type": "message", + "date": "2024-05-19T02:29:03", + "date_unixtime": "1716078543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004319 BTC for 65.76 CZK @ 1,522,682 CZK\nFees are 0.23098184 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.384598031917231574185880790 CZK)\nThe limits being 0.10 % (21.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06238001 BTC (50,804.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.96 % (44,180.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 991.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01393982 BTC (21,225.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 770 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004319 BTC for 65.76 CZK @ 1,522,682 CZK\nFees are 0.23098184 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.384598031917231574185880790 CZK)\nThe limits being 0.10 % (21.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06238001 BTC (50,804.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.96 % (44,180.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 991.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01393982 BTC (21,225.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 770 transactions" + } + ] + }, + { + "id": 777, + "type": "message", + "date": "2024-05-19T14:29:03", + "date_unixtime": "1716121743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004319 BTC for 65.77 CZK @ 1,522,700 CZK\nFees are 0.23098458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.385301785727264137915997412 CZK)\nThe limits being 0.10 % (21.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06242320 BTC (50,870.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.85 % (44,181.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 925.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01398301 BTC (21,291.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 771 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004319 BTC for 65.77 CZK @ 1,522,700 CZK\nFees are 0.23098458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (59.385301785727264137915997412 CZK)\nThe limits being 0.10 % (21.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06242320 BTC (50,870.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.85 % (44,181.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 925.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01398301 BTC (21,291.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 771 transactions" + } + ] + }, + { + "id": 778, + "type": "message", + "date": "2024-05-20T02:29:04", + "date_unixtime": "1716164944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004359 BTC for 65.76 CZK @ 1,508,616 CZK\nFees are 0.23096757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (39.224017188749676659336278063 CZK)\nThe limits being 0.10 % (21.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06246679 BTC (50,936.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,508,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.01 % (43,302.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 859.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01402660 BTC (21,160.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 772 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004359 BTC for 65.76 CZK @ 1,508,616 CZK\nFees are 0.23096757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (39.224017188749676659336278063 CZK)\nThe limits being 0.10 % (21.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06246679 BTC (50,936.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,508,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.01 % (43,302.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 859.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01402660 BTC (21,160.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 772 transactions" + } + ] + }, + { + "id": 779, + "type": "message", + "date": "2024-05-20T14:29:03", + "date_unixtime": "1716208143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004306 BTC for 65.77 CZK @ 1,527,342 CZK\nFees are 0.23099130 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (39.710881089433614953329857342 CZK)\nThe limits being 0.10 % (21.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06250985 BTC (51,002.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,527,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.20 % (44,471.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 793.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01406966 BTC (21,489.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 773 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004306 BTC for 65.77 CZK @ 1,527,342 CZK\nFees are 0.23099130 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (39.710881089433614953329857342 CZK)\nThe limits being 0.10 % (21.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06250985 BTC (51,002.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,527,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.20 % (44,471.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 793.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01406966 BTC (21,489.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 773 transactions" + } + ] + }, + { + "id": 780, + "type": "message", + "date": "2024-05-21T02:29:03", + "date_unixtime": "1716251343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004128 BTC for 65.76 CZK @ 1,592,959 CZK\nFees are 0.23095619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (41.416924763328350772296960638 CZK)\nThe limits being 0.10 % (22.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06255113 BTC (51,068.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.11 % (48,573.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 727.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01411094 BTC (22,478.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 774 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004128 BTC for 65.76 CZK @ 1,592,959 CZK\nFees are 0.23095619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (41.416924763328350772296960638 CZK)\nThe limits being 0.10 % (22.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06255113 BTC (51,068.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.11 % (48,573.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 727.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01411094 BTC (22,478.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 774 transactions" + } + ] + }, + { + "id": 781, + "type": "message", + "date": "2024-05-21T14:29:03", + "date_unixtime": "1716294543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004058 BTC for 65.77 CZK @ 1,620,629 CZK\nFees are 0.23098362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (63.204546948911928015376443658 CZK)\nThe limits being 0.10 % (22.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06259171 BTC (51,134.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,620,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.38 % (50,303.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 661.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01415152 BTC (22,934.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 775 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004058 BTC for 65.77 CZK @ 1,620,629 CZK\nFees are 0.23098362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (63.204546948911928015376443658 CZK)\nThe limits being 0.10 % (22.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06259171 BTC (51,134.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,620,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.38 % (50,303.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 661.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01415152 BTC (22,934.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 775 transactions" + } + ] + }, + { + "id": 782, + "type": "message", + "date": "2024-05-22T02:29:03", + "date_unixtime": "1716337743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004111 BTC for 65.77 CZK @ 1,599,744 CZK\nFees are 0.23098472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (62.389996718854478796360633669 CZK)\nThe limits being 0.10 % (22.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06263282 BTC (51,200.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.69 % (48,996.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 595.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01419263 BTC (22,704.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 776 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004111 BTC for 65.77 CZK @ 1,599,744 CZK\nFees are 0.23098472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (62.389996718854478796360633669 CZK)\nThe limits being 0.10 % (22.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06263282 BTC (51,200.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.69 % (48,996.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 595.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01419263 BTC (22,704.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 776 transactions" + } + ] + }, + { + "id": 783, + "type": "message", + "date": "2024-05-22T14:29:03", + "date_unixtime": "1716380943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004110 BTC for 65.76 CZK @ 1,599,926 CZK\nFees are 0.23095487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (62.397112406576980568011958145 CZK)\nThe limits being 0.10 % (22.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06267392 BTC (51,266.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.59 % (49,007.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 529.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01423373 BTC (22,772.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 777 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004110 BTC for 65.76 CZK @ 1,599,926 CZK\nFees are 0.23095487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (62.397112406576980568011958145 CZK)\nThe limits being 0.10 % (22.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06267392 BTC (51,266.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.59 % (49,007.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 529.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01423373 BTC (22,772.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 777 transactions" + } + ] + }, + { + "id": 784, + "type": "message", + "date": "2024-05-23T02:29:03", + "date_unixtime": "1716424143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004144 BTC for 65.76 CZK @ 1,586,914 CZK\nFees are 0.23097153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (61.889631269802794466471596515 CZK)\nThe limits being 0.10 % (22.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06271536 BTC (51,332.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.88 % (48,191.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 463.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01427517 BTC (22,653.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 778 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004144 BTC for 65.76 CZK @ 1,586,914 CZK\nFees are 0.23097153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (61.889631269802794466471596515 CZK)\nThe limits being 0.10 % (22.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06271536 BTC (51,332.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.88 % (48,191.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 463.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01427517 BTC (22,653.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 778 transactions" + } + ] + }, + { + "id": 785, + "type": "message", + "date": "2024-05-23T14:29:04", + "date_unixtime": "1716467344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004119 BTC for 65.76 CZK @ 1,596,533 CZK\nFees are 0.23096969 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (145.28445987139210384436216384 CZK)\nThe limits being 0.10 % (22.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06275655 BTC (51,398.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.93 % (48,794.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 397.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01431636 BTC (22,856.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 779 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004119 BTC for 65.76 CZK @ 1,596,533 CZK\nFees are 0.23096969 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (145.28445987139210384436216384 CZK)\nThe limits being 0.10 % (22.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06275655 BTC (51,398.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.93 % (48,794.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 397.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01431636 BTC (22,856.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 779 transactions" + } + ] + }, + { + "id": 786, + "type": "message", + "date": "2024-05-24T02:29:03", + "date_unixtime": "1716510543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004238 BTC for 65.76 CZK @ 1,551,572 CZK\nFees are 0.23095015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (60.511299989912606490779205299 CZK)\nThe limits being 0.10 % (22.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06279893 BTC (51,464.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.33 % (45,972.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 331.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01435874 BTC (22,278.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 780 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004238 BTC for 65.76 CZK @ 1,551,572 CZK\nFees are 0.23095015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (60.511299989912606490779205299 CZK)\nThe limits being 0.10 % (22.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06279893 BTC (51,464.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.33 % (45,972.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 331.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01435874 BTC (22,278.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 780 transactions" + } + ] + }, + { + "id": 787, + "type": "message", + "date": "2024-05-24T14:29:03", + "date_unixtime": "1716553743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004258 BTC for 65.77 CZK @ 1,544,549 CZK\nFees are 0.23098983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (40.158282921938550910235968380 CZK)\nThe limits being 0.10 % (22.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06284151 BTC (51,530.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.36 % (45,531.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 265.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01440132 BTC (22,243.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 781 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004258 BTC for 65.77 CZK @ 1,544,549 CZK\nFees are 0.23098983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (40.158282921938550910235968380 CZK)\nThe limits being 0.10 % (22.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06284151 BTC (51,530.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.36 % (45,531.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 265.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01440132 BTC (22,243.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 781 transactions" + } + ] + }, + { + "id": 788, + "type": "message", + "date": "2024-05-25T02:29:03", + "date_unixtime": "1716596943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004210 BTC for 65.76 CZK @ 1,562,004 CZK\nFees are 0.23096681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (81.22419337828289821728463442 CZK)\nThe limits being 0.10 % (22.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06288361 BTC (51,596.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.37 % (46,628.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 199.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01444342 BTC (22,560.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 782 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004210 BTC for 65.76 CZK @ 1,562,004 CZK\nFees are 0.23096681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (81.22419337828289821728463442 CZK)\nThe limits being 0.10 % (22.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06288361 BTC (51,596.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.37 % (46,628.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 199.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01444342 BTC (22,560.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 782 transactions" + } + ] + }, + { + "id": 789, + "type": "message", + "date": "2024-05-25T14:29:03", + "date_unixtime": "1716640143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004168 BTC for 65.76 CZK @ 1,577,802 CZK\nFees are 0.23097535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (61.534277183408932459998450719 CZK)\nThe limits being 0.10 % (22.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06292529 BTC (51,662.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.18 % (47,621.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 133.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01448510 BTC (22,854.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 783 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004168 BTC for 65.76 CZK @ 1,577,802 CZK\nFees are 0.23097535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (61.534277183408932459998450719 CZK)\nThe limits being 0.10 % (22.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06292529 BTC (51,662.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.18 % (47,621.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 133.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01448510 BTC (22,854.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 783 transactions" + } + ] + }, + { + "id": 790, + "type": "message", + "date": "2024-05-26T02:29:03", + "date_unixtime": "1716683343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004169 BTC for 65.76 CZK @ 1,577,372 CZK\nFees are 0.23096779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (61.517504499184492558606642165 CZK)\nThe limits being 0.10 % (22.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06296698 BTC (51,728.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.01 % (47,594.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 67.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01452679 BTC (22,914.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 784 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004169 BTC for 65.76 CZK @ 1,577,372 CZK\nFees are 0.23096779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (61.517504499184492558606642165 CZK)\nThe limits being 0.10 % (22.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06296698 BTC (51,728.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.01 % (47,594.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 67.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01452679 BTC (22,914.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 784 transactions" + } + ] + }, + { + "id": 791, + "type": "message", + "date": "2024-05-26T14:29:03", + "date_unixtime": "1716726543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004182 BTC for 65.76 CZK @ 1,572,523 CZK\nFees are 0.23097577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (40.885594356147553386199473531 CZK)\nThe limits being 0.10 % (22.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06300880 BTC (51,794.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.30 % (47,288.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01456861 BTC (22,909.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 785 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004182 BTC for 65.76 CZK @ 1,572,523 CZK\nFees are 0.23097577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (40.885594356147553386199473531 CZK)\nThe limits being 0.10 % (22.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06300880 BTC (51,794.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.30 % (47,288.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01456861 BTC (22,909.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 785 transactions" + } + ] + }, + { + "id": 792, + "type": "message", + "date": "2024-05-27T02:29:00", + "date_unixtime": "1716769740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 793, + "type": "message", + "date": "2024-05-27T14:29:00", + "date_unixtime": "1716812940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 794, + "type": "message", + "date": "2024-05-28T02:29:00", + "date_unixtime": "1716856140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 795, + "type": "message", + "date": "2024-05-28T14:29:00", + "date_unixtime": "1716899340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 796, + "type": "message", + "date": "2024-05-29T02:29:00", + "date_unixtime": "1716942540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (1.77071002 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 797, + "type": "message", + "date": "2024-05-29T14:29:03", + "date_unixtime": "1716985743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004243 BTC for 65.76 CZK @ 1,549,747 CZK\nFees are 0.23095073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (120.88028631911806203623166196 CZK)\nThe limits being 0.10 % (22.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06305123 BTC (51,860.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.42 % (45,853.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 935.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01461104 BTC (22,643.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 786 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004243 BTC for 65.76 CZK @ 1,549,747 CZK\nFees are 0.23095073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (120.88028631911806203623166196 CZK)\nThe limits being 0.10 % (22.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06305123 BTC (51,860.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.42 % (45,853.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 935.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01461104 BTC (22,643.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 786 transactions" + } + ] + }, + { + "id": 798, + "type": "message", + "date": "2024-05-30T02:29:03", + "date_unixtime": "1717028943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004232 BTC for 65.77 CZK @ 1,554,011 CZK\nFees are 0.23098572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (222.22355239483169963728085915 CZK)\nThe limits being 0.10 % (22.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06309355 BTC (51,926.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.82 % (46,121.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 869.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01465336 BTC (22,771.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 787 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004232 BTC for 65.77 CZK @ 1,554,011 CZK\nFees are 0.23098572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (222.22355239483169963728085915 CZK)\nThe limits being 0.10 % (22.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06309355 BTC (51,926.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.82 % (46,121.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 869.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01465336 BTC (22,771.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 787 transactions" + } + ] + }, + { + "id": 799, + "type": "message", + "date": "2024-05-30T14:29:04", + "date_unixtime": "1717072144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004212 BTC for 65.76 CZK @ 1,561,293 CZK\nFees are 0.23097139 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (101.48404191810145970584435956 CZK)\nThe limits being 0.10 % (22.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06313567 BTC (51,992.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.59 % (46,581.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 803.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01469548 BTC (22,943.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 788 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004212 BTC for 65.76 CZK @ 1,561,293 CZK\nFees are 0.23097139 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (101.48404191810145970584435956 CZK)\nThe limits being 0.10 % (22.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06313567 BTC (51,992.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.59 % (46,581.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 803.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01469548 BTC (22,943.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 788 transactions" + } + ] + }, + { + "id": 800, + "type": "message", + "date": "2024-05-31T02:29:03", + "date_unixtime": "1717115343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004200 BTC for 65.76 CZK @ 1,565,628 CZK\nFees are 0.23095279 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (183.17844380952380952380952381 CZK)\nThe limits being 0.10 % (23.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06317767 BTC (52,058.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.00 % (46,854.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 737.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01473748 BTC (23,073.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 789 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004200 BTC for 65.76 CZK @ 1,565,628 CZK\nFees are 0.23095279 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (183.17844380952380952380952381 CZK)\nThe limits being 0.10 % (23.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06317767 BTC (52,058.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.00 % (46,854.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 737.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01473748 BTC (23,073.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 789 transactions" + } + ] + }, + { + "id": 801, + "type": "message", + "date": "2024-05-31T14:29:03", + "date_unixtime": "1717158543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004200 BTC for 65.76 CZK @ 1,565,774 CZK\nFees are 0.23097438 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (142.48544205779770802192326856 CZK)\nThe limits being 0.10 % (23.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06321967 BTC (52,124.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.91 % (46,863.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 671.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01477948 BTC (23,141.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 790 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004200 BTC for 65.76 CZK @ 1,565,774 CZK\nFees are 0.23097438 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (142.48544205779770802192326856 CZK)\nThe limits being 0.10 % (23.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06321967 BTC (52,124.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.91 % (46,863.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 671.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01477948 BTC (23,141.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 790 transactions" + } + ] + }, + { + "id": 802, + "type": "message", + "date": "2024-06-01T02:29:03", + "date_unixtime": "1717201743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004258 BTC for 65.77 CZK @ 1,544,572 CZK\nFees are 0.23099328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.49 % (341.35050052013818240198759484 CZK)\nThe limits being 0.10 % (22.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06326225 BTC (52,190.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.23 % (45,522.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 605.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01482206 BTC (22,893.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 791 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004258 BTC for 65.77 CZK @ 1,544,572 CZK\nFees are 0.23099328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.49 % (341.35050052013818240198759484 CZK)\nThe limits being 0.10 % (22.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06326225 BTC (52,190.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.23 % (45,522.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 605.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01482206 BTC (22,893.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 791 transactions" + } + ] + }, + { + "id": 803, + "type": "message", + "date": "2024-06-01T14:29:03", + "date_unixtime": "1717244943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004241 BTC for 65.75 CZK @ 1,550,454 CZK\nFees are 0.23094714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (120.93541332053211073198532794 CZK)\nThe limits being 0.10 % (23.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06330466 BTC (52,256.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 825,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.83 % (45,894.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 539.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01486447 BTC (23,046.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 792 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004241 BTC for 65.75 CZK @ 1,550,454 CZK\nFees are 0.23094714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (120.93541332053211073198532794 CZK)\nThe limits being 0.10 % (23.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06330466 BTC (52,256.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 825,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.83 % (45,894.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 539.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01486447 BTC (23,046.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 792 transactions" + } + ] + }, + { + "id": 804, + "type": "message", + "date": "2024-06-02T02:29:03", + "date_unixtime": "1717288143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004244 BTC for 65.77 CZK @ 1,549,646 CZK\nFees are 0.23099006 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (100.72699056952879812268746475 CZK)\nThe limits being 0.10 % (23.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06334710 BTC (52,322.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 825,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.62 % (45,843.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 473.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01490691 BTC (23,100.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 793 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004244 BTC for 65.77 CZK @ 1,549,646 CZK\nFees are 0.23099006 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (100.72699056952879812268746475 CZK)\nThe limits being 0.10 % (23.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06334710 BTC (52,322.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 825,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.62 % (45,843.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 473.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01490691 BTC (23,100.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 793 transactions" + } + ] + }, + { + "id": 805, + "type": "message", + "date": "2024-06-02T14:29:03", + "date_unixtime": "1717331343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004222 BTC for 65.76 CZK @ 1,557,613 CZK\nFees are 0.23097403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (80.99586596887209310284681020 CZK)\nThe limits being 0.10 % (23.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06338932 BTC (52,388.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 826,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.47 % (46,347.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 407.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01494913 BTC (23,284.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 794 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004222 BTC for 65.76 CZK @ 1,557,613 CZK\nFees are 0.23097403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (80.99586596887209310284681020 CZK)\nThe limits being 0.10 % (23.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06338932 BTC (52,388.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 826,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.47 % (46,347.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 407.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01494913 BTC (23,284.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 794 transactions" + } + ] + }, + { + "id": 806, + "type": "message", + "date": "2024-06-03T02:29:03", + "date_unixtime": "1717374543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004245 BTC for 65.76 CZK @ 1,549,174 CZK\nFees are 0.23097409 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (100.69629930813413359484442848 CZK)\nThe limits being 0.10 % (23.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06343177 BTC (52,454.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 826,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.34 % (45,812.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 341.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01499158 BTC (23,224.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 795 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004245 BTC for 65.76 CZK @ 1,549,174 CZK\nFees are 0.23097409 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (100.69629930813413359484442848 CZK)\nThe limits being 0.10 % (23.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06343177 BTC (52,454.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 826,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.34 % (45,812.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 341.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01499158 BTC (23,224.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 795 transactions" + } + ] + }, + { + "id": 807, + "type": "message", + "date": "2024-06-03T14:29:03", + "date_unixtime": "1717417743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004145 BTC for 65.76 CZK @ 1,586,378 CZK\nFees are 0.23094933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (82.49167117885951642111475938 CZK)\nThe limits being 0.10 % (23.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06347322 BTC (52,520.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 827,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.72 % (48,172.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 275.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01503303 BTC (23,848.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 796 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004145 BTC for 65.76 CZK @ 1,586,378 CZK\nFees are 0.23094933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (82.49167117885951642111475938 CZK)\nThe limits being 0.10 % (23.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06347322 BTC (52,520.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 827,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.72 % (48,172.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 275.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01503303 BTC (23,848.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 796 transactions" + } + ] + }, + { + "id": 808, + "type": "message", + "date": "2024-06-04T02:29:03", + "date_unixtime": "1717460943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004205 BTC for 65.77 CZK @ 1,564,000 CZK\nFees are 0.23098729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (101.65997914315354049175092883 CZK)\nThe limits being 0.10 % (23.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06351527 BTC (52,586.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 827,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.91 % (46,751.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 209.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01507508 BTC (23,577.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 797 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004205 BTC for 65.77 CZK @ 1,564,000 CZK\nFees are 0.23098729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (101.65997914315354049175092883 CZK)\nThe limits being 0.10 % (23.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06351527 BTC (52,586.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 827,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.91 % (46,751.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 209.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01507508 BTC (23,577.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 797 transactions" + } + ] + }, + { + "id": 809, + "type": "message", + "date": "2024-06-04T14:29:03", + "date_unixtime": "1717504143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004165 BTC for 65.76 CZK @ 1,578,880 CZK\nFees are 0.23096675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (102.62717771114424843180919603 CZK)\nThe limits being 0.10 % (23.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06355692 BTC (52,652.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 828,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.59 % (47,696.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 143.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01511673 BTC (23,867.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 798 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004165 BTC for 65.76 CZK @ 1,578,880 CZK\nFees are 0.23096675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (102.62717771114424843180919603 CZK)\nThe limits being 0.10 % (23.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06355692 BTC (52,652.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 828,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.59 % (47,696.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 143.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01511673 BTC (23,867.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 798 transactions" + } + ] + }, + { + "id": 810, + "type": "message", + "date": "2024-06-05T02:29:03", + "date_unixtime": "1717547343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004115 BTC for 65.76 CZK @ 1,597,978 CZK\nFees are 0.23095432 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (145.41600877293991079823291627 CZK)\nThe limits being 0.10 % (24.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06359807 BTC (52,718.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 828,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,597,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.78 % (48,910.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 77.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01515788 BTC (24,221.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 799 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004115 BTC for 65.76 CZK @ 1,597,978 CZK\nFees are 0.23095432 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (145.41600877293991079823291627 CZK)\nThe limits being 0.10 % (24.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06359807 BTC (52,718.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 828,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,597,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.78 % (48,910.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 77.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01515788 BTC (24,221.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 799 transactions" + } + ] + }, + { + "id": 811, + "type": "message", + "date": "2024-06-05T14:29:03", + "date_unixtime": "1717590543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004087 BTC for 65.76 CZK @ 1,609,067 CZK\nFees are 0.23097453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (146.42506738112227463237611350 CZK)\nThe limits being 0.10 % (24.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06363894 BTC (52,784.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 829,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.00 % (49,615.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,011.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01519875 BTC (24,455.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 800 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004087 BTC for 65.76 CZK @ 1,609,067 CZK\nFees are 0.23097453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (146.42506738112227463237611350 CZK)\nThe limits being 0.10 % (24.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06363894 BTC (52,784.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 829,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.00 % (49,615.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,011.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01519875 BTC (24,455.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 800 transactions" + } + ] + }, + { + "id": 812, + "type": "message", + "date": "2024-06-06T02:29:04", + "date_unixtime": "1717633744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004069 BTC for 65.77 CZK @ 1,616,295 CZK\nFees are 0.23099025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (252.14196333280801539659116415 CZK)\nThe limits being 0.10 % (24.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06367963 BTC (52,850.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 829,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,616,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.75 % (50,074.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 945.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01523944 BTC (24,631.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 801 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004069 BTC for 65.77 CZK @ 1,616,295 CZK\nFees are 0.23099025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (252.14196333280801539659116415 CZK)\nThe limits being 0.10 % (24.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06367963 BTC (52,850.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 829,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,616,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.75 % (50,074.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 945.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01523944 BTC (24,631.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 801 transactions" + } + ] + }, + { + "id": 813, + "type": "message", + "date": "2024-06-06T14:29:03", + "date_unixtime": "1717676943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004059 BTC for 65.76 CZK @ 1,620,002 CZK\nFees are 0.23095107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (231.66026446461774034780706551 CZK)\nThe limits being 0.10 % (24.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06372022 BTC (52,916.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 830,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,620,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.08 % (50,310.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 879.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01528003 BTC (24,753.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 802 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004059 BTC for 65.76 CZK @ 1,620,002 CZK\nFees are 0.23095107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (231.66026446461774034780706551 CZK)\nThe limits being 0.10 % (24.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06372022 BTC (52,916.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 830,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,620,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.08 % (50,310.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 879.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01528003 BTC (24,753.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 802 transactions" + } + ] + }, + { + "id": 814, + "type": "message", + "date": "2024-06-07T02:29:03", + "date_unixtime": "1717720143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004111 BTC for 65.77 CZK @ 1,599,744 CZK\nFees are 0.23098472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (187.16999015656343638908190101 CZK)\nThe limits being 0.10 % (24.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06376133 BTC (52,982.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 830,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.52 % (49,019.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 813.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01532114 BTC (24,509.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 803 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004111 BTC for 65.77 CZK @ 1,599,744 CZK\nFees are 0.23098472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (187.16999015656343638908190101 CZK)\nThe limits being 0.10 % (24.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06376133 BTC (52,982.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 830,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.52 % (49,019.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 813.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01532114 BTC (24,509.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 803 transactions" + } + ] + }, + { + "id": 815, + "type": "message", + "date": "2024-06-07T14:29:03", + "date_unixtime": "1717763343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004071 BTC for 65.76 CZK @ 1,615,364 CZK\nFees are 0.23097076 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.05 % (755.99050402441858800021589876 CZK)\nThe limits being 0.10 % (24.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06380204 BTC (53,048.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 831,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,615,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.28 % (50,015.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 747.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01536185 BTC (24,814.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 804 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004071 BTC for 65.76 CZK @ 1,615,364 CZK\nFees are 0.23097076 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.05 % (755.99050402441858800021589876 CZK)\nThe limits being 0.10 % (24.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06380204 BTC (53,048.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 831,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,615,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.28 % (50,015.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 747.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01536185 BTC (24,814.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 804 transactions" + } + ] + }, + { + "id": 816, + "type": "message", + "date": "2024-06-08T02:29:03", + "date_unixtime": "1717806543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004136 BTC for 65.76 CZK @ 1,590,044 CZK\nFees are 0.23098044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.30 % (2521.8104221698908751670892688 CZK)\nThe limits being 0.10 % (24.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06384340 BTC (53,114.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 831,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.12 % (48,399.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 681.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01540321 BTC (24,491.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 805 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004136 BTC for 65.76 CZK @ 1,590,044 CZK\nFees are 0.23098044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.30 % (2521.8104221698908751670892688 CZK)\nThe limits being 0.10 % (24.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06384340 BTC (53,114.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 831,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.12 % (48,399.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 681.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01540321 BTC (24,491.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 805 transactions" + } + ] + }, + { + "id": 817, + "type": "message", + "date": "2024-06-08T14:29:03", + "date_unixtime": "1717849743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004136 BTC for 65.76 CZK @ 1,589,886 CZK\nFees are 0.23095743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.99 % (489.68489076530017279945721890 CZK)\nThe limits being 0.10 % (24.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06388476 BTC (53,180.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 832,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.99 % (48,389.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 615.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01544457 BTC (24,555.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 806 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004136 BTC for 65.76 CZK @ 1,589,886 CZK\nFees are 0.23095743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.99 % (489.68489076530017279945721890 CZK)\nThe limits being 0.10 % (24.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06388476 BTC (53,180.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 832,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.99 % (48,389.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 615.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01544457 BTC (24,555.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 806 transactions" + } + ] + }, + { + "id": 818, + "type": "message", + "date": "2024-06-09T02:29:03", + "date_unixtime": "1717892943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004142 BTC for 65.77 CZK @ 1,587,854 CZK\nFees are 0.23099686 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (174.66393548942775611289987699 CZK)\nThe limits being 0.10 % (24.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06392618 BTC (53,246.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 832,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,587,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.63 % (48,259.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 549.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01548599 BTC (24,589.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 807 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004142 BTC for 65.77 CZK @ 1,587,854 CZK\nFees are 0.23099686 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (174.66393548942775611289987699 CZK)\nThe limits being 0.10 % (24.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06392618 BTC (53,246.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 832,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,587,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.63 % (48,259.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 549.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01548599 BTC (24,589.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 807 transactions" + } + ] + }, + { + "id": 819, + "type": "message", + "date": "2024-06-09T14:29:03", + "date_unixtime": "1717936143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004139 BTC for 65.77 CZK @ 1,588,945 CZK\nFees are 0.23098811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (192.26230500905684898698960500 CZK)\nThe limits being 0.10 % (24.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06396757 BTC (53,312.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 833,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.65 % (48,328.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 483.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01552738 BTC (24,672.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 808 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004139 BTC for 65.77 CZK @ 1,588,945 CZK\nFees are 0.23098811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (192.26230500905684898698960500 CZK)\nThe limits being 0.10 % (24.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06396757 BTC (53,312.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 833,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.65 % (48,328.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 483.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01552738 BTC (24,672.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 808 transactions" + } + ] + }, + { + "id": 820, + "type": "message", + "date": "2024-06-10T02:29:03", + "date_unixtime": "1717979343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004122 BTC for 65.75 CZK @ 1,595,205 CZK\nFees are 0.23094575 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (140.37806002910241133229233829 CZK)\nThe limits being 0.10 % (24.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06400879 BTC (53,378.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 833,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,595,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.29 % (48,729.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 417.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01556860 BTC (24,835.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 809 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004122 BTC for 65.75 CZK @ 1,595,205 CZK\nFees are 0.23094575 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (140.37806002910241133229233829 CZK)\nThe limits being 0.10 % (24.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06400879 BTC (53,378.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 833,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,595,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.29 % (48,729.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 417.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01556860 BTC (24,835.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 809 transactions" + } + ] + }, + { + "id": 821, + "type": "message", + "date": "2024-06-10T14:29:03", + "date_unixtime": "1718022543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004125 BTC for 65.77 CZK @ 1,594,304 CZK\nFees are 0.23098326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (140.29875093705364557382494603 CZK)\nThe limits being 0.10 % (24.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06405004 BTC (53,444.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 834,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,594,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.07 % (48,671.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 351.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01560985 BTC (24,886.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 810 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004125 BTC for 65.77 CZK @ 1,594,304 CZK\nFees are 0.23098326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (140.29875093705364557382494603 CZK)\nThe limits being 0.10 % (24.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06405004 BTC (53,444.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 834,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,594,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.07 % (48,671.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 351.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01560985 BTC (24,886.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 810 transactions" + } + ] + }, + { + "id": 822, + "type": "message", + "date": "2024-06-11T02:29:04", + "date_unixtime": "1718065744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004141 BTC for 65.76 CZK @ 1,588,005 CZK\nFees are 0.23096310 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (174.68058688817585685069655385 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06409145 BTC (53,510.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 834,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.20 % (48,267.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 285.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01565126 BTC (24,854.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 811 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004141 BTC for 65.76 CZK @ 1,588,005 CZK\nFees are 0.23096310 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (174.68058688817585685069655385 CZK)\nThe limits being 0.10 % (24.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06409145 BTC (53,510.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 834,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.20 % (48,267.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 285.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01565126 BTC (24,854.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 811 transactions" + } + ] + }, + { + "id": 823, + "type": "message", + "date": "2024-06-11T14:29:03", + "date_unixtime": "1718108943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004254 BTC for 65.77 CZK @ 1,545,998 CZK\nFees are 0.23098928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (153.05379635942747632932128242 CZK)\nThe limits being 0.10 % (24.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06413399 BTC (53,576.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 835,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.07 % (45,575.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 219.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01569380 BTC (24,262.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 812 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004254 BTC for 65.77 CZK @ 1,545,998 CZK\nFees are 0.23098928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (153.05379635942747632932128242 CZK)\nThe limits being 0.10 % (24.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06413399 BTC (53,576.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 835,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.07 % (45,575.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 219.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01569380 BTC (24,262.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 812 transactions" + } + ] + }, + { + "id": 824, + "type": "message", + "date": "2024-06-12T02:29:03", + "date_unixtime": "1718152143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004228 BTC for 65.77 CZK @ 1,555,489 CZK\nFees are 0.23098683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (171.10373808981714425244850214 CZK)\nThe limits being 0.10 % (24.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06417627 BTC (53,642.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 835,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,555,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.10 % (46,183.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 153.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01573608 BTC (24,477.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 813 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004228 BTC for 65.77 CZK @ 1,555,489 CZK\nFees are 0.23098683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (171.10373808981714425244850214 CZK)\nThe limits being 0.10 % (24.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06417627 BTC (53,642.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 835,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,555,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.10 % (46,183.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 153.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01573608 BTC (24,477.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 813 transactions" + } + ] + }, + { + "id": 825, + "type": "message", + "date": "2024-06-12T14:29:04", + "date_unixtime": "1718195344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004206 BTC for 65.76 CZK @ 1,563,374 CZK\nFees are 0.23094981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (137.57692295321107460076133912 CZK)\nThe limits being 0.10 % (24.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06421833 BTC (53,708.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 836,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,563,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.93 % (46,689.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,088.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01577814 BTC (24,667.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 814 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004206 BTC for 65.76 CZK @ 1,563,374 CZK\nFees are 0.23094981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (137.57692295321107460076133912 CZK)\nThe limits being 0.10 % (24.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06421833 BTC (53,708.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 836,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,563,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.93 % (46,689.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,088.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01577814 BTC (24,667.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 814 transactions" + } + ] + }, + { + "id": 826, + "type": "message", + "date": "2024-06-13T02:29:04", + "date_unixtime": "1718238544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004207 BTC for 65.76 CZK @ 1,563,140 CZK\nFees are 0.23097006 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (137.55627964638621018496114562 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06426040 BTC (53,773.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 836,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,563,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.80 % (46,673.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,022.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01582021 BTC (24,729.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 815 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004207 BTC for 65.76 CZK @ 1,563,140 CZK\nFees are 0.23097006 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (137.55627964638621018496114562 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06426040 BTC (53,773.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 836,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,563,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.80 % (46,673.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,022.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01582021 BTC (24,729.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 815 transactions" + } + ] + }, + { + "id": 827, + "type": "message", + "date": "2024-06-13T14:29:04", + "date_unixtime": "1718281744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004214 BTC for 65.76 CZK @ 1,560,465 CZK\nFees are 0.23095850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (137.32091073364723231385925246 CZK)\nThe limits being 0.10 % (24.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06430254 BTC (53,839.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 837,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,560,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.37 % (46,501.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 956.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01586235 BTC (24,752.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 816 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004214 BTC for 65.76 CZK @ 1,560,465 CZK\nFees are 0.23095850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (137.32091073364723231385925246 CZK)\nThe limits being 0.10 % (24.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06430254 BTC (53,839.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 837,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,560,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.37 % (46,501.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 956.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01586235 BTC (24,752.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 816 transactions" + } + ] + }, + { + "id": 828, + "type": "message", + "date": "2024-06-14T02:29:03", + "date_unixtime": "1718324943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004255 BTC for 65.76 CZK @ 1,545,458 CZK\nFees are 0.23096282 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (153.00030243923002745385276093 CZK)\nThe limits being 0.10 % (24.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06434509 BTC (53,905.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 837,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.47 % (45,536.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 890.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01590490 BTC (24,580.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 817 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004255 BTC for 65.76 CZK @ 1,545,458 CZK\nFees are 0.23096282 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (153.00030243923002745385276093 CZK)\nThe limits being 0.10 % (24.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06434509 BTC (53,905.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 837,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.47 % (45,536.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 890.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01590490 BTC (24,580.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 817 transactions" + } + ] + }, + { + "id": 829, + "type": "message", + "date": "2024-06-14T14:29:03", + "date_unixtime": "1718368143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004218 BTC for 65.77 CZK @ 1,559,159 CZK\nFees are 0.23098422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (154.35670621317564909729176899 CZK)\nThe limits being 0.10 % (24.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06438727 BTC (53,971.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 838,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.00 % (46,418.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 824.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01594708 BTC (24,864.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 818 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004218 BTC for 65.77 CZK @ 1,559,159 CZK\nFees are 0.23098422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (154.35670621317564909729176899 CZK)\nThe limits being 0.10 % (24.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06438727 BTC (53,971.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 838,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.00 % (46,418.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 824.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01594708 BTC (24,864.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 818 transactions" + } + ] + }, + { + "id": 830, + "type": "message", + "date": "2024-06-15T02:29:03", + "date_unixtime": "1718411343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004275 BTC for 65.77 CZK @ 1,538,396 CZK\nFees are 0.23098815 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (169.22356568851126321034274775 CZK)\nThe limits being 0.10 % (24.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06443002 BTC (54,037.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 838,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,538,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.42 % (45,080.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 758.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01598983 BTC (24,598.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 819 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004275 BTC for 65.77 CZK @ 1,538,396 CZK\nFees are 0.23098815 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (169.22356568851126321034274775 CZK)\nThe limits being 0.10 % (24.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06443002 BTC (54,037.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 838,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,538,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.42 % (45,080.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 758.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01598983 BTC (24,598.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 819 transactions" + } + ] + }, + { + "id": 831, + "type": "message", + "date": "2024-06-15T14:29:03", + "date_unixtime": "1718454543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004258 BTC for 65.76 CZK @ 1,544,446 CZK\nFees are 0.23097439 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (186.87797648507349687086273665 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06447260 BTC (54,103.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 839,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.04 % (45,470.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 692.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01603241 BTC (24,761.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 820 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004258 BTC for 65.76 CZK @ 1,544,446 CZK\nFees are 0.23097439 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (186.87797648507349687086273665 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06447260 BTC (54,103.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 839,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.04 % (45,470.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 692.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01603241 BTC (24,761.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 820 transactions" + } + ] + }, + { + "id": 832, + "type": "message", + "date": "2024-06-16T02:29:03", + "date_unixtime": "1718497743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004278 BTC for 65.76 CZK @ 1,537,169 CZK\nFees are 0.23096588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (152.17973124359272699828300807 CZK)\nThe limits being 0.10 % (24.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06451538 BTC (54,169.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 839,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,537,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.07 % (45,001.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 626.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01607519 BTC (24,710.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 821 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004278 BTC for 65.76 CZK @ 1,537,169 CZK\nFees are 0.23096588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (152.17973124359272699828300807 CZK)\nThe limits being 0.10 % (24.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06451538 BTC (54,169.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 839,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,537,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.07 % (45,001.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 626.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01607519 BTC (24,710.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 821 transactions" + } + ] + }, + { + "id": 833, + "type": "message", + "date": "2024-06-16T14:29:03", + "date_unixtime": "1718540943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004256 BTC for 65.77 CZK @ 1,545,288 CZK\nFees are 0.23099178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (118.98718980935148034510791178 CZK)\nThe limits being 0.10 % (24.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06455794 BTC (54,235.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 840,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.94 % (45,524.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 560.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01611775 BTC (24,906.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 822 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004256 BTC for 65.77 CZK @ 1,545,288 CZK\nFees are 0.23099178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (118.98718980935148034510791178 CZK)\nThe limits being 0.10 % (24.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06455794 BTC (54,235.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 840,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.94 % (45,524.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 560.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01611775 BTC (24,906.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 822 transactions" + } + ] + }, + { + "id": 834, + "type": "message", + "date": "2024-06-17T02:29:03", + "date_unixtime": "1718584143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 65.76 CZK @ 1,548,032 CZK\nFees are 0.23096696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (85.14175988677106586457755671 CZK)\nThe limits being 0.10 % (25.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06460042 BTC (54,301.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 840,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.16 % (45,701.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 494.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01616023 BTC (25,016.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 823 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 65.76 CZK @ 1,548,032 CZK\nFees are 0.23096696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (85.14175988677106586457755671 CZK)\nThe limits being 0.10 % (25.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06460042 BTC (54,301.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 840,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.16 % (45,701.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 494.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01616023 BTC (25,016.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 823 transactions" + } + ] + }, + { + "id": 835, + "type": "message", + "date": "2024-06-17T14:29:03", + "date_unixtime": "1718627343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004318 BTC for 65.77 CZK @ 1,523,130 CZK\nFees are 0.23099632 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (67.017725039711634568496136610 CZK)\nThe limits being 0.10 % (24.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06464360 BTC (54,367.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 841,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.10 % (44,092.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 428.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01620341 BTC (24,679.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 824 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004318 BTC for 65.77 CZK @ 1,523,130 CZK\nFees are 0.23099632 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (67.017725039711634568496136610 CZK)\nThe limits being 0.10 % (24.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06464360 BTC (54,367.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 841,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.10 % (44,092.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 428.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01620341 BTC (24,679.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 824 transactions" + } + ] + }, + { + "id": 836, + "type": "message", + "date": "2024-06-18T02:29:04", + "date_unixtime": "1718670544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004281 BTC for 65.76 CZK @ 1,536,088 CZK\nFees are 0.23096535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (101.38182891624234590286485039 CZK)\nThe limits being 0.10 % (24.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06468641 BTC (54,433.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 841,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,536,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.54 % (44,930.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 362.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01624622 BTC (24,955.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 825 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004281 BTC for 65.76 CZK @ 1,536,088 CZK\nFees are 0.23096535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (101.38182891624234590286485039 CZK)\nThe limits being 0.10 % (24.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06468641 BTC (54,433.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 841,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,536,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.54 % (44,930.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 362.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01624622 BTC (24,955.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 825 transactions" + } + ] + }, + { + "id": 837, + "type": "message", + "date": "2024-06-18T14:29:04", + "date_unixtime": "1718713744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004331 BTC for 65.76 CZK @ 1,518,314 CZK\nFees are 0.23095919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (83.50727805141022813595040310 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06472972 BTC (54,499.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 841,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.33 % (43,780.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 296.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01628953 BTC (24,732.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 826 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004331 BTC for 65.76 CZK @ 1,518,314 CZK\nFees are 0.23095919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (83.50727805141022813595040310 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06472972 BTC (54,499.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 841,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.33 % (43,780.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 296.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01628953 BTC (24,732.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 826 transactions" + } + ] + }, + { + "id": 838, + "type": "message", + "date": "2024-06-19T02:29:03", + "date_unixtime": "1718756943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004338 BTC for 65.77 CZK @ 1,516,041 CZK\nFees are 0.23098621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (83.38228242299944661182403772 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06477310 BTC (54,565.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 842,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.96 % (43,632.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 230.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01633291 BTC (24,761.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 827 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004338 BTC for 65.77 CZK @ 1,516,041 CZK\nFees are 0.23098621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (83.38228242299944661182403772 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06477310 BTC (54,565.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 842,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.96 % (43,632.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 230.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01633291 BTC (24,761.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 827 transactions" + } + ] + }, + { + "id": 839, + "type": "message", + "date": "2024-06-19T14:29:06", + "date_unixtime": "1718800146", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004329 BTC for 65.77 CZK @ 1,519,198 CZK\nFees are 0.23098697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (83.55590890879381163387142460 CZK)\nThe limits being 0.10 % (24.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06481639 BTC (54,631.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 842,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,519,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.24 % (43,837.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 164.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01637620 BTC (24,878.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 828 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004329 BTC for 65.77 CZK @ 1,519,198 CZK\nFees are 0.23098697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (83.55590890879381163387142460 CZK)\nThe limits being 0.10 % (24.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06481639 BTC (54,631.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 842,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,519,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.24 % (43,837.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 164.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01637620 BTC (24,878.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 828 transactions" + } + ] + }, + { + "id": 840, + "type": "message", + "date": "2024-06-20T02:29:03", + "date_unixtime": "1718843343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004353 BTC for 65.76 CZK @ 1,510,590 CZK\nFees are 0.23095144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (132.93191568998512099450682089 CZK)\nThe limits being 0.10 % (24.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06485992 BTC (54,697.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 843,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.12 % (43,278.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 98.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01641973 BTC (24,803.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 829 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004353 BTC for 65.76 CZK @ 1,510,590 CZK\nFees are 0.23095144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (132.93191568998512099450682089 CZK)\nThe limits being 0.10 % (24.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06485992 BTC (54,697.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 843,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.12 % (43,278.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 98.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01641973 BTC (24,803.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 829 transactions" + } + ] + }, + { + "id": 841, + "type": "message", + "date": "2024-06-20T14:29:04", + "date_unixtime": "1718886544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004284 BTC for 65.76 CZK @ 1,534,971 CZK\nFees are 0.23095902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (67.538703712542980985784116004 CZK)\nThe limits being 0.10 % (25.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06490276 BTC (54,763.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 843,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,534,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.92 % (44,859.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 932.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01646257 BTC (25,269.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 830 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004284 BTC for 65.76 CZK @ 1,534,971 CZK\nFees are 0.23095902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (67.538703712542980985784116004 CZK)\nThe limits being 0.10 % (25.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06490276 BTC (54,763.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 843,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,534,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.92 % (44,859.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 932.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01646257 BTC (25,269.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 830 transactions" + } + ] + }, + { + "id": 842, + "type": "message", + "date": "2024-06-21T02:29:04", + "date_unixtime": "1718929744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004346 BTC for 65.77 CZK @ 1,513,238 CZK\nFees are 0.23098419 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (116.51928985504255584056813578 CZK)\nThe limits being 0.10 % (24.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06494622 BTC (54,829.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 844,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,513,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.24 % (43,449.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 866.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01650603 BTC (24,977.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 831 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004346 BTC for 65.77 CZK @ 1,513,238 CZK\nFees are 0.23098419 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (116.51928985504255584056813578 CZK)\nThe limits being 0.10 % (24.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06494622 BTC (54,829.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 844,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,513,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.24 % (43,449.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 866.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01650603 BTC (24,977.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 831 transactions" + } + ] + }, + { + "id": 843, + "type": "message", + "date": "2024-06-21T14:29:03", + "date_unixtime": "1718972943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004398 BTC for 65.76 CZK @ 1,495,261 CZK\nFees are 0.23097108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.343608277576911913351020406 CZK)\nThe limits being 0.10 % (24.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06499020 BTC (54,895.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 844,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,495,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.02 % (42,281.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 800.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01655001 BTC (24,746.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 832 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004398 BTC for 65.76 CZK @ 1,495,261 CZK\nFees are 0.23097108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.343608277576911913351020406 CZK)\nThe limits being 0.10 % (24.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06499020 BTC (54,895.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 844,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,495,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.02 % (42,281.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 800.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01655001 BTC (24,746.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 832 transactions" + } + ] + }, + { + "id": 844, + "type": "message", + "date": "2024-06-22T02:29:03", + "date_unixtime": "1719016143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004363 BTC for 65.76 CZK @ 1,507,184 CZK\nFees are 0.23096015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (149.21126433759631799816845487 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06503383 BTC (54,961.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 845,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.34 % (43,056.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 734.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01659364 BTC (25,009.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 833 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004363 BTC for 65.76 CZK @ 1,507,184 CZK\nFees are 0.23096015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (149.21126433759631799816845487 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06503383 BTC (54,961.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 845,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.34 % (43,056.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 734.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01659364 BTC (25,009.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 833 transactions" + } + ] + }, + { + "id": 845, + "type": "message", + "date": "2024-06-22T14:29:03", + "date_unixtime": "1719059343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004356 BTC for 65.76 CZK @ 1,509,752 CZK\nFees are 0.23098239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.821811659192825112107623317 CZK)\nThe limits being 0.10 % (25.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06507739 BTC (55,027.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 845,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.55 % (43,222.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 668.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01663720 BTC (25,118.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 834 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004356 BTC for 65.76 CZK @ 1,509,752 CZK\nFees are 0.23098239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.821811659192825112107623317 CZK)\nThe limits being 0.10 % (25.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06507739 BTC (55,027.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 845,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.55 % (43,222.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 668.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01663720 BTC (25,118.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 834 transactions" + } + ] + }, + { + "id": 846, + "type": "message", + "date": "2024-06-23T02:29:03", + "date_unixtime": "1719102543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004356 BTC for 65.76 CZK @ 1,509,547 CZK\nFees are 0.23095110 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.815062885959746946294031494 CZK)\nThe limits being 0.10 % (25.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06512095 BTC (55,093.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 846,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.43 % (43,209.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 602.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01668076 BTC (25,180.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 835 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004356 BTC for 65.76 CZK @ 1,509,547 CZK\nFees are 0.23095110 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.815062885959746946294031494 CZK)\nThe limits being 0.10 % (25.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06512095 BTC (55,093.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 846,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.43 % (43,209.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 602.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01668076 BTC (25,180.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 835 transactions" + } + ] + }, + { + "id": 847, + "type": "message", + "date": "2024-06-23T14:29:03", + "date_unixtime": "1719145743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004353 BTC for 65.76 CZK @ 1,510,649 CZK\nFees are 0.23096049 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.851420234554661716384109784 CZK)\nThe limits being 0.10 % (25.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06516448 BTC (55,159.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 846,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.46 % (43,280.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 536.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01672429 BTC (25,264.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 836 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004353 BTC for 65.76 CZK @ 1,510,649 CZK\nFees are 0.23096049 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.851420234554661716384109784 CZK)\nThe limits being 0.10 % (25.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06516448 BTC (55,159.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 846,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.46 % (43,280.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 536.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01672429 BTC (25,264.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 836 transactions" + } + ] + }, + { + "id": 848, + "type": "message", + "date": "2024-06-24T02:29:03", + "date_unixtime": "1719188943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004435 BTC for 65.77 CZK @ 1,482,942 CZK\nFees are 0.23099537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (48.937094051091753833398213357 CZK)\nThe limits being 0.10 % (24.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06520883 BTC (55,225.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 846,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,482,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.10 % (41,475.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 470.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01676864 BTC (24,866.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 837 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004435 BTC for 65.77 CZK @ 1,482,942 CZK\nFees are 0.23099537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (48.937094051091753833398213357 CZK)\nThe limits being 0.10 % (24.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06520883 BTC (55,225.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 846,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,482,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.10 % (41,475.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 470.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01676864 BTC (24,866.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 837 transactions" + } + ] + }, + { + "id": 849, + "type": "message", + "date": "2024-06-24T14:29:03", + "date_unixtime": "1719232143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004530 BTC for 65.76 CZK @ 1,451,661 CZK\nFees are 0.23096634 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (63.873062268814117476250342344 CZK)\nThe limits being 0.10 % (24.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06525413 BTC (55,291.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 847,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,451,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.32 % (39,435.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 404.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01681394 BTC (24,408.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 838 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004530 BTC for 65.76 CZK @ 1,451,661 CZK\nFees are 0.23096634 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (63.873062268814117476250342344 CZK)\nThe limits being 0.10 % (24.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06525413 BTC (55,291.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 847,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,451,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.32 % (39,435.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 404.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01681394 BTC (24,408.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 838 transactions" + } + ] + }, + { + "id": 850, + "type": "message", + "date": "2024-06-25T02:29:03", + "date_unixtime": "1719275343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004595 BTC for 65.76 CZK @ 1,431,146 CZK\nFees are 0.23096955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (47.227802308676975525811997509 CZK)\nThe limits being 0.10 % (24.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06530008 BTC (55,357.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 847,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.82 % (38,096.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 338.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01685989 BTC (24,128.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 839 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004595 BTC for 65.76 CZK @ 1,431,146 CZK\nFees are 0.23096955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (47.227802308676975525811997509 CZK)\nThe limits being 0.10 % (24.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06530008 BTC (55,357.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 847,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.82 % (38,096.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 338.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01685989 BTC (24,128.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 839 transactions" + } + ] + }, + { + "id": 851, + "type": "message", + "date": "2024-06-25T14:29:03", + "date_unixtime": "1719318543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004613 BTC for 65.76 CZK @ 1,425,576 CZK\nFees are 0.23097190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (109.76932759318107413128405664 CZK)\nThe limits being 0.10 % (24.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06534621 BTC (55,423.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 848,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,425,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.08 % (37,732.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 272.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01690602 BTC (24,100.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 840 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004613 BTC for 65.76 CZK @ 1,425,576 CZK\nFees are 0.23097190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (109.76932759318107413128405664 CZK)\nThe limits being 0.10 % (24.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06534621 BTC (55,423.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 848,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,425,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.08 % (37,732.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 272.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01690602 BTC (24,100.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 840 transactions" + } + ] + }, + { + "id": 852, + "type": "message", + "date": "2024-06-26T02:29:03", + "date_unixtime": "1719361743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004553 BTC for 65.76 CZK @ 1,444,316 CZK\nFees are 0.23096457 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.662436417191706908534821731 CZK)\nThe limits being 0.10 % (24.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06539174 BTC (55,489.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 848,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.20 % (38,956.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 206.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01695155 BTC (24,483.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 841 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004553 BTC for 65.76 CZK @ 1,444,316 CZK\nFees are 0.23096457 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.662436417191706908534821731 CZK)\nThe limits being 0.10 % (24.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06539174 BTC (55,489.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 848,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.20 % (38,956.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 206.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01695155 BTC (24,483.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 841 transactions" + } + ] + }, + { + "id": 853, + "type": "message", + "date": "2024-06-26T14:29:04", + "date_unixtime": "1719404944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004571 BTC for 65.76 CZK @ 1,438,650 CZK\nFees are 0.23096802 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.475455755217709358309142679 CZK)\nThe limits being 0.10 % (24.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06543745 BTC (55,555.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 848,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.45 % (38,585.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 140.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01699726 BTC (24,453.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 842 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004571 BTC for 65.76 CZK @ 1,438,650 CZK\nFees are 0.23096802 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.475455755217709358309142679 CZK)\nThe limits being 0.10 % (24.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06543745 BTC (55,555.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 848,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.45 % (38,585.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 140.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01699726 BTC (24,453.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 842 transactions" + } + ] + }, + { + "id": 854, + "type": "message", + "date": "2024-06-27T02:29:04", + "date_unixtime": "1719448144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004597 BTC for 65.76 CZK @ 1,430,513 CZK\nFees are 0.23096795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.206927433989737246589297692 CZK)\nThe limits being 0.10 % (24.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06548342 BTC (55,621.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 849,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.41 % (38,053.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 74.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01704323 BTC (24,380.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 843 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004597 BTC for 65.76 CZK @ 1,430,513 CZK\nFees are 0.23096795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.206927433989737246589297692 CZK)\nThe limits being 0.10 % (24.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06548342 BTC (55,621.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 849,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.41 % (38,053.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 74.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01704323 BTC (24,380.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 843 transactions" + } + ] + }, + { + "id": 855, + "type": "message", + "date": "2024-06-27T14:29:03", + "date_unixtime": "1719491343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004571 BTC for 65.76 CZK @ 1,438,572 CZK\nFees are 0.23095546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.472875337107696895911345948 CZK)\nThe limits being 0.10 % (24.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06552913 BTC (55,687.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 849,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.28 % (38,580.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,008.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01708894 BTC (24,583.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 844 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004571 BTC for 65.76 CZK @ 1,438,572 CZK\nFees are 0.23095546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.472875337107696895911345948 CZK)\nThe limits being 0.10 % (24.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06552913 BTC (55,687.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 849,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.28 % (38,580.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,008.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01708894 BTC (24,583.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 844 transactions" + } + ] + }, + { + "id": 856, + "type": "message", + "date": "2024-06-28T02:29:03", + "date_unixtime": "1719534543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004542 BTC for 65.76 CZK @ 1,447,834 CZK\nFees are 0.23096774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (63.704695863903901294829611112 CZK)\nThe limits being 0.10 % (24.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06557455 BTC (55,753.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 850,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.29 % (39,187.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 942.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01713436 BTC (24,807.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 845 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004542 BTC for 65.76 CZK @ 1,447,834 CZK\nFees are 0.23096774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (63.704695863903901294829611112 CZK)\nThe limits being 0.10 % (24.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06557455 BTC (55,753.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 850,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.29 % (39,187.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 942.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01713436 BTC (24,807.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 845 transactions" + } + ] + }, + { + "id": 857, + "type": "message", + "date": "2024-06-28T14:29:03", + "date_unixtime": "1719577743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004538 BTC for 65.76 CZK @ 1,449,009 CZK\nFees are 0.23095160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.817294253936695343292745993 CZK)\nThe limits being 0.10 % (24.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06561993 BTC (55,819.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 850,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.34 % (39,264.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 876.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01717974 BTC (24,893.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 846 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004538 BTC for 65.76 CZK @ 1,449,009 CZK\nFees are 0.23095160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.817294253936695343292745993 CZK)\nThe limits being 0.10 % (24.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06561993 BTC (55,819.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 850,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.34 % (39,264.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 876.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01717974 BTC (24,893.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 846 transactions" + } + ] + }, + { + "id": 859, + "type": "message", + "date": "2024-06-29T02:29:03", + "date_unixtime": "1719620943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004581 BTC for 65.76 CZK @ 1,435,503 CZK\nFees are 0.23096700 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.371610684150985630189555938 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06566574 BTC (55,885.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 851,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,435,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.67 % (38,377.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 810.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01722555 BTC (24,727.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 847 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004581 BTC for 65.76 CZK @ 1,435,503 CZK\nFees are 0.23096700 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.371610684150985630189555938 CZK)\nThe limits being 0.10 % (24.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06566574 BTC (55,885.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 851,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,435,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.67 % (38,377.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 810.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01722555 BTC (24,727.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 847 transactions" + } + ] + }, + { + "id": 860, + "type": "message", + "date": "2024-06-29T14:29:03", + "date_unixtime": "1719664143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004585 BTC for 65.76 CZK @ 1,434,254 CZK\nFees are 0.23096752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.330390247655561043436304450 CZK)\nThe limits being 0.10 % (24.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06571159 BTC (55,951.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 851,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.44 % (38,295.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 744.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01727140 BTC (24,771.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 848 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004585 BTC for 65.76 CZK @ 1,434,254 CZK\nFees are 0.23096752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.330390247655561043436304450 CZK)\nThe limits being 0.10 % (24.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06571159 BTC (55,951.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 851,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.44 % (38,295.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 744.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01727140 BTC (24,771.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 848 transactions" + } + ] + }, + { + "id": 861, + "type": "message", + "date": "2024-06-30T02:29:03", + "date_unixtime": "1719707343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004591 BTC for 65.76 CZK @ 1,432,355 CZK\nFees are 0.23096344 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.267699461382004630493338661 CZK)\nThe limits being 0.10 % (24.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06575750 BTC (56,017.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 851,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.14 % (38,170.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 678.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01731731 BTC (24,804.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 849 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004591 BTC for 65.76 CZK @ 1,432,355 CZK\nFees are 0.23096344 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.267699461382004630493338661 CZK)\nThe limits being 0.10 % (24.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06575750 BTC (56,017.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 851,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.14 % (38,170.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 678.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01731731 BTC (24,804.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 849 transactions" + } + ] + }, + { + "id": 862, + "type": "message", + "date": "2024-06-30T14:29:03", + "date_unixtime": "1719750543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004550 BTC for 65.76 CZK @ 1,445,212 CZK\nFees are 0.23095561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.692011914124739236846860166 CZK)\nThe limits being 0.10 % (25.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06580300 BTC (56,083.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 852,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.57 % (39,015.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 612.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01736281 BTC (25,092.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 850 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004550 BTC for 65.76 CZK @ 1,445,212 CZK\nFees are 0.23095561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (47.692011914124739236846860166 CZK)\nThe limits being 0.10 % (25.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06580300 BTC (56,083.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 852,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.57 % (39,015.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 612.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01736281 BTC (25,092.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 850 transactions" + } + ] + }, + { + "id": 863, + "type": "message", + "date": "2024-07-01T02:29:05", + "date_unixtime": "1719793745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004478 BTC for 65.76 CZK @ 1,468,418 CZK\nFees are 0.23095068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (48.457798962007248858561804563 CZK)\nThe limits being 0.10 % (25.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06584778 BTC (56,149.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 852,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,468,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.20 % (40,542.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 546.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01740759 BTC (25,561.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 851 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004478 BTC for 65.76 CZK @ 1,468,418 CZK\nFees are 0.23095068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (48.457798962007248858561804563 CZK)\nThe limits being 0.10 % (25.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06584778 BTC (56,149.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 852,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,468,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.20 % (40,542.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 546.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01740759 BTC (25,561.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 851 transactions" + } + ] + }, + { + "id": 864, + "type": "message", + "date": "2024-07-01T14:29:03", + "date_unixtime": "1719836943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004467 BTC for 65.76 CZK @ 1,472,168 CZK\nFees are 0.23097176 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (64.775412695369207549712116835 CZK)\nThe limits being 0.10 % (25.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06589245 BTC (56,215.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 853,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,472,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.56 % (40,789.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 480.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01745226 BTC (25,692.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 852 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004467 BTC for 65.76 CZK @ 1,472,168 CZK\nFees are 0.23097176 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (64.775412695369207549712116835 CZK)\nThe limits being 0.10 % (25.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06589245 BTC (56,215.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 853,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,472,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.56 % (40,789.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 480.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01745226 BTC (25,692.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 852 transactions" + } + ] + }, + { + "id": 865, + "type": "message", + "date": "2024-07-02T02:29:03", + "date_unixtime": "1719880143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004446 BTC for 65.77 CZK @ 1,479,251 CZK\nFees are 0.23099191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (65.087047128123990683978096457 CZK)\nThe limits being 0.10 % (25.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06593691 BTC (56,281.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 853,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,479,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.30 % (41,255.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 414.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01749672 BTC (25,882.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 853 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004446 BTC for 65.77 CZK @ 1,479,251 CZK\nFees are 0.23099191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (65.087047128123990683978096457 CZK)\nThe limits being 0.10 % (25.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06593691 BTC (56,281.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 853,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,479,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.30 % (41,255.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 414.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01749672 BTC (25,882.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 853 transactions" + } + ] + }, + { + "id": 866, + "type": "message", + "date": "2024-07-02T14:29:03", + "date_unixtime": "1719923343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004444 BTC for 65.76 CZK @ 1,479,743 CZK\nFees are 0.23096483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (48.831528711391318504047714188 CZK)\nThe limits being 0.10 % (25.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06598135 BTC (56,347.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 853,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,479,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.27 % (41,287.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 348.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01754116 BTC (25,956.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 854 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004444 BTC for 65.76 CZK @ 1,479,743 CZK\nFees are 0.23096483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (48.831528711391318504047714188 CZK)\nThe limits being 0.10 % (25.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06598135 BTC (56,347.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 853,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,479,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.27 % (41,287.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 348.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01754116 BTC (25,956.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 854 transactions" + } + ] + }, + { + "id": 867, + "type": "message", + "date": "2024-07-03T02:29:03", + "date_unixtime": "1719966543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004509 BTC for 65.77 CZK @ 1,458,625 CZK\nFees are 0.23099855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (48.134618834080717488789237669 CZK)\nThe limits being 0.10 % (25.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06602644 BTC (56,413.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 854,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,458,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.72 % (39,894.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 282.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01758625 BTC (25,651.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 855 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004509 BTC for 65.77 CZK @ 1,458,625 CZK\nFees are 0.23099855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (48.134618834080717488789237669 CZK)\nThe limits being 0.10 % (25.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06602644 BTC (56,413.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 854,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,458,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.72 % (39,894.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 282.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01758625 BTC (25,651.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 855 transactions" + } + ] + }, + { + "id": 868, + "type": "message", + "date": "2024-07-03T14:29:03", + "date_unixtime": "1720009743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004636 BTC for 65.77 CZK @ 1,418,649 CZK\nFees are 0.23099573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (46.815432536811410279724157854 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06607280 BTC (56,479.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 854,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.96 % (37,254.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,216.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01763261 BTC (25,014.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 856 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004636 BTC for 65.77 CZK @ 1,418,649 CZK\nFees are 0.23099573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (46.815432536811410279724157854 CZK)\nThe limits being 0.10 % (25.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06607280 BTC (56,479.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 854,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.96 % (37,254.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,216.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01763261 BTC (25,014.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 856 transactions" + } + ] + }, + { + "id": 869, + "type": "message", + "date": "2024-07-04T02:29:03", + "date_unixtime": "1720052943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004636 BTC for 65.76 CZK @ 1,418,442 CZK\nFees are 0.23096194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (46.808584518249973238617384452 CZK)\nThe limits being 0.10 % (25.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06611916 BTC (56,545.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 855,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.86 % (37,240.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,150.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01767897 BTC (25,076.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 857 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004636 BTC for 65.76 CZK @ 1,418,442 CZK\nFees are 0.23096194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (46.808584518249973238617384452 CZK)\nThe limits being 0.10 % (25.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06611916 BTC (56,545.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 855,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.86 % (37,240.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,150.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01767897 BTC (25,076.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 857 transactions" + } + ] + }, + { + "id": 870, + "type": "message", + "date": "2024-07-04T14:29:03", + "date_unixtime": "1720096143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004893 BTC for 65.76 CZK @ 1,343,897 CZK\nFees are 0.23095455 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (59.131454952017010563171959656 CZK)\nThe limits being 0.10 % (23.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06616809 BTC (56,611.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 855,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,343,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.08 % (32,311.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,084.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01772790 BTC (23,824.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 858 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004893 BTC for 65.76 CZK @ 1,343,897 CZK\nFees are 0.23095455 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (59.131454952017010563171959656 CZK)\nThe limits being 0.10 % (23.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06616809 BTC (56,611.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 855,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,343,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.08 % (32,311.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,084.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01772790 BTC (23,824.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 858 transactions" + } + ] + }, + { + "id": 871, + "type": "message", + "date": "2024-07-05T02:29:03", + "date_unixtime": "1720139343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004937 BTC for 65.76 CZK @ 1,332,056 CZK\nFees are 0.23097827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (43.957857207692864320634312214 CZK)\nThe limits being 0.10 % (23.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06621746 BTC (56,677.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 855,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,332,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.63 % (31,527.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,018.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01777727 BTC (23,680.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 859 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004937 BTC for 65.76 CZK @ 1,332,056 CZK\nFees are 0.23097827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (43.957857207692864320634312214 CZK)\nThe limits being 0.10 % (23.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06621746 BTC (56,677.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 855,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,332,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.63 % (31,527.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,018.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01777727 BTC (23,680.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 859 transactions" + } + ] + }, + { + "id": 872, + "type": "message", + "date": "2024-07-05T14:29:03", + "date_unixtime": "1720182543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005056 BTC for 65.76 CZK @ 1,300,620 CZK\nFees are 0.23096330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (42.920465193421127320202077538 CZK)\nThe limits being 0.10 % (23.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06626802 BTC (56,743.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 856,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,300,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.89 % (29,445.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 952.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01782783 BTC (23,187.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 860 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005056 BTC for 65.76 CZK @ 1,300,620 CZK\nFees are 0.23096330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (42.920465193421127320202077538 CZK)\nThe limits being 0.10 % (23.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06626802 BTC (56,743.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 856,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,300,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.89 % (29,445.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 952.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01782783 BTC (23,187.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 860 transactions" + } + ] + }, + { + "id": 873, + "type": "message", + "date": "2024-07-06T02:29:03", + "date_unixtime": "1720225743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004980 BTC for 65.76 CZK @ 1,320,424 CZK\nFees are 0.23095549 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (43.574004293406811100905865615 CZK)\nThe limits being 0.10 % (23.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06631782 BTC (56,809.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 856,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,320,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.14 % (30,758.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 886.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01787763 BTC (23,606.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 861 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004980 BTC for 65.76 CZK @ 1,320,424 CZK\nFees are 0.23095549 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (43.574004293406811100905865615 CZK)\nThe limits being 0.10 % (23.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06631782 BTC (56,809.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 856,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,320,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.14 % (30,758.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 886.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01787763 BTC (23,606.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 861 transactions" + } + ] + }, + { + "id": 874, + "type": "message", + "date": "2024-07-06T14:29:03", + "date_unixtime": "1720268943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004957 BTC for 65.76 CZK @ 1,326,631 CZK\nFees are 0.23096938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.185877513029593115642557886 CZK)\nThe limits being 0.10 % (23.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06636739 BTC (56,875.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 856,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,326,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.80 % (31,169.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 820.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01792720 BTC (23,782.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 862 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004957 BTC for 65.76 CZK @ 1,326,631 CZK\nFees are 0.23096938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.185877513029593115642557886 CZK)\nThe limits being 0.10 % (23.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06636739 BTC (56,875.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 856,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,326,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.80 % (31,169.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 820.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01792720 BTC (23,782.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 862 transactions" + } + ] + }, + { + "id": 875, + "type": "message", + "date": "2024-07-07T02:29:03", + "date_unixtime": "1720312143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004849 BTC for 65.77 CZK @ 1,356,313 CZK\nFees are 0.23099224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (44.758314411829169159745386918 CZK)\nThe limits being 0.10 % (24.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06641588 BTC (56,941.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 857,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,356,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.20 % (33,139.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 754.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01797569 BTC (24,380.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 863 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004849 BTC for 65.77 CZK @ 1,356,313 CZK\nFees are 0.23099224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (44.758314411829169159745386918 CZK)\nThe limits being 0.10 % (24.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06641588 BTC (56,941.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 857,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,356,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.20 % (33,139.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 754.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01797569 BTC (24,380.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 863 transactions" + } + ] + }, + { + "id": 876, + "type": "message", + "date": "2024-07-07T14:29:04", + "date_unixtime": "1720355344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004897 BTC for 65.76 CZK @ 1,342,896 CZK\nFees are 0.23097128 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.543716776863986054933930956 CZK)\nThe limits being 0.10 % (24.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06646485 BTC (57,007.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 857,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,342,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.57 % (32,247.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 688.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01802466 BTC (24,205.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 864 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004897 BTC for 65.76 CZK @ 1,342,896 CZK\nFees are 0.23097128 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.543716776863986054933930956 CZK)\nThe limits being 0.10 % (24.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06646485 BTC (57,007.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 857,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,342,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.57 % (32,247.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 688.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01802466 BTC (24,205.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 864 transactions" + } + ] + }, + { + "id": 877, + "type": "message", + "date": "2024-07-08T02:29:03", + "date_unixtime": "1720398543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005019 BTC for 65.76 CZK @ 1,310,288 CZK\nFees are 0.23097737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (28.826340031050915340837850548 CZK)\nThe limits being 0.10 % (23.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06651504 BTC (57,073.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 858,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,310,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.70 % (30,080.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 622.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01807485 BTC (23,683.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 865 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005019 BTC for 65.76 CZK @ 1,310,288 CZK\nFees are 0.23097737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (28.826340031050915340837850548 CZK)\nThe limits being 0.10 % (23.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06651504 BTC (57,073.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 858,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,310,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.70 % (30,080.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 622.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01807485 BTC (23,683.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 865 transactions" + } + ] + }, + { + "id": 878, + "type": "message", + "date": "2024-07-08T14:29:03", + "date_unixtime": "1720441743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004924 BTC for 65.76 CZK @ 1,335,440 CZK\nFees are 0.23095520 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.379673112424952957095332866 CZK)\nThe limits being 0.10 % (24.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06656428 BTC (57,139.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 858,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,335,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.57 % (31,753.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 556.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01812409 BTC (24,203.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 866 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004924 BTC for 65.76 CZK @ 1,335,440 CZK\nFees are 0.23095520 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.379673112424952957095332866 CZK)\nThe limits being 0.10 % (24.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06656428 BTC (57,139.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 858,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,335,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.57 % (31,753.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 556.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01812409 BTC (24,203.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 866 transactions" + } + ] + }, + { + "id": 879, + "type": "message", + "date": "2024-07-09T02:29:03", + "date_unixtime": "1720484943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004977 BTC for 65.77 CZK @ 1,321,461 CZK\nFees are 0.23099756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.072140868423247186184500521 CZK)\nThe limits being 0.10 % (24.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06661405 BTC (57,205.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 858,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,321,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.88 % (30,822.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 490.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01817386 BTC (24,016.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 867 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004977 BTC for 65.77 CZK @ 1,321,461 CZK\nFees are 0.23099756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.072140868423247186184500521 CZK)\nThe limits being 0.10 % (24.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06661405 BTC (57,205.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 858,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,321,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.88 % (30,822.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 490.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01817386 BTC (24,016.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 867 transactions" + } + ] + }, + { + "id": 880, + "type": "message", + "date": "2024-07-09T14:29:03", + "date_unixtime": "1720528143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004884 BTC for 65.76 CZK @ 1,346,473 CZK\nFees are 0.23097169 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.622408332098915058556314163 CZK)\nThe limits being 0.10 % (24.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06666289 BTC (57,271.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 859,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.73 % (32,488.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 424.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01822270 BTC (24,536.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 868 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004884 BTC for 65.76 CZK @ 1,346,473 CZK\nFees are 0.23097169 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.622408332098915058556314163 CZK)\nThe limits being 0.10 % (24.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06666289 BTC (57,271.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 859,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.73 % (32,488.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 424.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01822270 BTC (24,536.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 868 transactions" + } + ] + }, + { + "id": 881, + "type": "message", + "date": "2024-07-10T02:29:03", + "date_unixtime": "1720571343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004852 BTC for 65.76 CZK @ 1,355,320 CZK\nFees are 0.23096602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.817042014121226983381741810 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06671141 BTC (57,337.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 859,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,355,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.69 % (33,077.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 358.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01827122 BTC (24,763.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 869 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004852 BTC for 65.76 CZK @ 1,355,320 CZK\nFees are 0.23096602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.817042014121226983381741810 CZK)\nThe limits being 0.10 % (24.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06671141 BTC (57,337.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 859,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,355,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.69 % (33,077.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 358.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01827122 BTC (24,763.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 869 transactions" + } + ] + }, + { + "id": 882, + "type": "message", + "date": "2024-07-10T14:29:03", + "date_unixtime": "1720614543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004764 BTC for 65.76 CZK @ 1,380,341 CZK\nFees are 0.23096366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.367507973980237932977651269 CZK)\nThe limits being 0.10 % (25.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06675905 BTC (57,403.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 859,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.53 % (34,746.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 292.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01831886 BTC (25,286.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 870 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004764 BTC for 65.76 CZK @ 1,380,341 CZK\nFees are 0.23096366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.367507973980237932977651269 CZK)\nThe limits being 0.10 % (25.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06675905 BTC (57,403.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 859,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.53 % (34,746.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 292.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01831886 BTC (25,286.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 870 transactions" + } + ] + }, + { + "id": 883, + "type": "message", + "date": "2024-07-11T02:29:03", + "date_unixtime": "1720657743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004848 BTC for 65.77 CZK @ 1,356,604 CZK\nFees are 0.23099427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (44.767941335893679054004055115 CZK)\nThe limits being 0.10 % (24.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06680753 BTC (57,469.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 860,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,356,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.70 % (33,161.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 226.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01836734 BTC (24,917.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 871 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004848 BTC for 65.77 CZK @ 1,356,604 CZK\nFees are 0.23099427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (44.767941335893679054004055115 CZK)\nThe limits being 0.10 % (24.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06680753 BTC (57,469.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 860,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,356,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.70 % (33,161.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 226.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01836734 BTC (24,917.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 871 transactions" + } + ] + }, + { + "id": 884, + "type": "message", + "date": "2024-07-11T14:29:03", + "date_unixtime": "1720700943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004763 BTC for 65.77 CZK @ 1,380,804 CZK\nFees are 0.23099266 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.377697292731789775048300924 CZK)\nThe limits being 0.10 % (25.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06685516 BTC (57,535.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 860,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.45 % (34,778.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 160.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01841497 BTC (25,427.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 872 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004763 BTC for 65.77 CZK @ 1,380,804 CZK\nFees are 0.23099266 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.377697292731789775048300924 CZK)\nThe limits being 0.10 % (25.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06685516 BTC (57,535.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 860,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.45 % (34,778.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 160.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01841497 BTC (25,427.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 872 transactions" + } + ] + }, + { + "id": 885, + "type": "message", + "date": "2024-07-12T02:29:03", + "date_unixtime": "1720744143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004885 BTC for 65.77 CZK @ 1,346,335 CZK\nFees are 0.23099525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.619364768652602278922440854 CZK)\nThe limits being 0.10 % (24.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06690401 BTC (57,601.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 860,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.38 % (32,473.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 94.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01846382 BTC (24,858.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 873 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004885 BTC for 65.77 CZK @ 1,346,335 CZK\nFees are 0.23099525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.619364768652602278922440854 CZK)\nThe limits being 0.10 % (24.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06690401 BTC (57,601.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 860,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.38 % (32,473.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 94.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01846382 BTC (24,858.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 873 transactions" + } + ] + }, + { + "id": 886, + "type": "message", + "date": "2024-07-12T14:29:03", + "date_unixtime": "1720787343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004885 BTC for 65.76 CZK @ 1,346,226 CZK\nFees are 0.23097667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.616982851524270988082142388 CZK)\nThe limits being 0.10 % (24.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06695286 BTC (57,667.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 861,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.30 % (32,466.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,028.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01851267 BTC (24,922.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 874 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004885 BTC for 65.76 CZK @ 1,346,226 CZK\nFees are 0.23097667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.616982851524270988082142388 CZK)\nThe limits being 0.10 % (24.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06695286 BTC (57,667.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 861,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.30 % (32,466.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,028.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01851267 BTC (24,922.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 874 transactions" + } + ] + }, + { + "id": 887, + "type": "message", + "date": "2024-07-13T02:29:03", + "date_unixtime": "1720830543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004872 BTC for 65.76 CZK @ 1,349,716 CZK\nFees are 0.23095914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.693755639334578564515165722 CZK)\nThe limits being 0.10 % (25.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06700158 BTC (57,733.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 861,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,349,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.64 % (32,699.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 962.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01856139 BTC (25,052.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 875 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004872 BTC for 65.76 CZK @ 1,349,716 CZK\nFees are 0.23095914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (29.693755639334578564515165722 CZK)\nThe limits being 0.10 % (25.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06700158 BTC (57,733.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 861,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,349,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.64 % (32,699.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 962.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01856139 BTC (25,052.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 875 transactions" + } + ] + }, + { + "id": 888, + "type": "message", + "date": "2024-07-13T14:29:04", + "date_unixtime": "1720873744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004805 BTC for 65.76 CZK @ 1,368,494 CZK\nFees are 0.23095196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (90.32059275076254959877680978 CZK)\nThe limits being 0.10 % (25.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06704963 BTC (57,799.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 862,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,368,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.75 % (33,957.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 896.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01860944 BTC (25,466.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 876 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004805 BTC for 65.76 CZK @ 1,368,494 CZK\nFees are 0.23095196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (90.32059275076254959877680978 CZK)\nThe limits being 0.10 % (25.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06704963 BTC (57,799.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 862,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,368,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.75 % (33,957.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 896.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01860944 BTC (25,466.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 876 transactions" + } + ] + }, + { + "id": 889, + "type": "message", + "date": "2024-07-14T02:29:03", + "date_unixtime": "1720916943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004727 BTC for 65.76 CZK @ 1,391,173 CZK\nFees are 0.23096822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.605810175492187329538070107 CZK)\nThe limits being 0.10 % (25.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06709690 BTC (57,865.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 862,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,391,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.31 % (35,477.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 830.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01865671 BTC (25,954.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 877 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004727 BTC for 65.76 CZK @ 1,391,173 CZK\nFees are 0.23096822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.605810175492187329538070107 CZK)\nThe limits being 0.10 % (25.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06709690 BTC (57,865.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 862,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,391,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.31 % (35,477.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 830.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01865671 BTC (25,954.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 877 transactions" + } + ] + }, + { + "id": 890, + "type": "message", + "date": "2024-07-14T14:29:03", + "date_unixtime": "1720960143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004686 BTC for 65.76 CZK @ 1,403,249 CZK\nFees are 0.23095242 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.871482393781389549721514605 CZK)\nThe limits being 0.10 % (26.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06714376 BTC (57,931.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 862,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.64 % (36,287.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 764.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01870357 BTC (26,245.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 878 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004686 BTC for 65.76 CZK @ 1,403,249 CZK\nFees are 0.23095242 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.871482393781389549721514605 CZK)\nThe limits being 0.10 % (26.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06714376 BTC (57,931.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 862,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.64 % (36,287.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 764.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01870357 BTC (26,245.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 878 transactions" + } + ] + }, + { + "id": 891, + "type": "message", + "date": "2024-07-15T02:29:03", + "date_unixtime": "1721003343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004606 BTC for 65.77 CZK @ 1,427,897 CZK\nFees are 0.23099702 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (31.413743964296910444360933000 CZK)\nThe limits being 0.10 % (26.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06718982 BTC (57,997.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 863,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,427,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.42 % (37,942.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 698.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01874963 BTC (26,772.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 879 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004606 BTC for 65.77 CZK @ 1,427,897 CZK\nFees are 0.23099702 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (31.413743964296910444360933000 CZK)\nThe limits being 0.10 % (26.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06718982 BTC (57,997.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 863,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,427,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.42 % (37,942.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 698.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01874963 BTC (26,772.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 879 transactions" + } + ] + }, + { + "id": 892, + "type": "message", + "date": "2024-07-15T14:29:03", + "date_unixtime": "1721046543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004475 BTC for 65.76 CZK @ 1,469,552 CZK\nFees are 0.23097417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.330143298455406078724464375 CZK)\nThe limits being 0.10 % (27.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06723457 BTC (58,063.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 863,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,469,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.17 % (40,741.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 632.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01879438 BTC (27,619.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 880 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004475 BTC for 65.76 CZK @ 1,469,552 CZK\nFees are 0.23097417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.330143298455406078724464375 CZK)\nThe limits being 0.10 % (27.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06723457 BTC (58,063.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 863,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,469,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.17 % (40,741.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 632.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01879438 BTC (27,619.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 880 transactions" + } + ] + }, + { + "id": 893, + "type": "message", + "date": "2024-07-16T02:29:03", + "date_unixtime": "1721089743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004340 BTC for 65.76 CZK @ 1,515,118 CZK\nFees are 0.23095197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.332600493663881483930666630 CZK)\nThe limits being 0.10 % (28.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06727797 BTC (58,129.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 864,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,515,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.36 % (43,804.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 566.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01883778 BTC (28,541.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 881 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004340 BTC for 65.76 CZK @ 1,515,118 CZK\nFees are 0.23095197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.332600493663881483930666630 CZK)\nThe limits being 0.10 % (28.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06727797 BTC (58,129.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 864,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,515,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.36 % (43,804.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 566.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01883778 BTC (28,541.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 881 transactions" + } + ] + }, + { + "id": 894, + "type": "message", + "date": "2024-07-16T14:29:03", + "date_unixtime": "1721132943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004394 BTC for 65.63 CZK @ 1,493,670 CZK\nFees are 0.23051548 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.860736906943131901340302116 CZK)\nThe limits being 0.10 % (28.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06732191 BTC (58,195.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 864,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.79 % (42,361.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 500.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01888172 BTC (28,203.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 882 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004394 BTC for 65.63 CZK @ 1,493,670 CZK\nFees are 0.23051548 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.860736906943131901340302116 CZK)\nThe limits being 0.10 % (28.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06732191 BTC (58,195.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 864,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.79 % (42,361.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 500.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01888172 BTC (28,203.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 882 transactions" + } + ] + }, + { + "id": 895, + "type": "message", + "date": "2024-07-17T02:29:04", + "date_unixtime": "1721176144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004321 BTC for 65.76 CZK @ 1,521,802 CZK\nFees are 0.23095522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.479639897710478034124258684 CZK)\nThe limits being 0.10 % (28.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06736512 BTC (58,261.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 864,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,521,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.96 % (44,255.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 434.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01892493 BTC (28,799.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 883 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004321 BTC for 65.76 CZK @ 1,521,802 CZK\nFees are 0.23095522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.479639897710478034124258684 CZK)\nThe limits being 0.10 % (28.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06736512 BTC (58,261.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 864,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,521,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.96 % (44,255.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 434.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01892493 BTC (28,799.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 883 transactions" + } + ] + }, + { + "id": 896, + "type": "message", + "date": "2024-07-17T14:29:03", + "date_unixtime": "1721219343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004358 BTC for 65.77 CZK @ 1,509,079 CZK\nFees are 0.23098548 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.199742326364379101780756796 CZK)\nThe limits being 0.10 % (28.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06740870 BTC (58,327.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 865,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.40 % (43,397.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 368.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01896851 BTC (28,624.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 884 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004358 BTC for 65.77 CZK @ 1,509,079 CZK\nFees are 0.23098548 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.199742326364379101780756796 CZK)\nThe limits being 0.10 % (28.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06740870 BTC (58,327.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 865,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.40 % (43,397.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 368.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01896851 BTC (28,624.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 884 transactions" + } + ] + }, + { + "id": 897, + "type": "message", + "date": "2024-07-18T02:29:03", + "date_unixtime": "1721262543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004412 BTC for 65.64 CZK @ 1,487,674 CZK\nFees are 0.23053064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.728825212842991506156376527 CZK)\nThe limits being 0.10 % (28.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06745282 BTC (58,393.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 865,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.85 % (41,954.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 302.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01901263 BTC (28,284.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 885 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004412 BTC for 65.64 CZK @ 1,487,674 CZK\nFees are 0.23053064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.728825212842991506156376527 CZK)\nThe limits being 0.10 % (28.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06745282 BTC (58,393.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 865,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.85 % (41,954.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 302.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01901263 BTC (28,284.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 885 transactions" + } + ] + }, + { + "id": 898, + "type": "message", + "date": "2024-07-18T14:29:03", + "date_unixtime": "1721305743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004367 BTC for 65.76 CZK @ 1,505,779 CZK\nFees are 0.23095632 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.127137898965710692676388308 CZK)\nThe limits being 0.10 % (28.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06749649 BTC (58,459.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 866,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,505,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.86 % (43,175.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 236.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01905630 BTC (28,694.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 886 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004367 BTC for 65.76 CZK @ 1,505,779 CZK\nFees are 0.23095632 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (33.127137898965710692676388308 CZK)\nThe limits being 0.10 % (28.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06749649 BTC (58,459.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 866,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,505,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.86 % (43,175.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 236.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01905630 BTC (28,694.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 886 transactions" + } + ] + }, + { + "id": 899, + "type": "message", + "date": "2024-07-19T02:29:05", + "date_unixtime": "1721348945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004420 BTC for 65.76 CZK @ 1,487,765 CZK\nFees are 0.23096283 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.730835051527797505112197806 CZK)\nThe limits being 0.10 % (28.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06754069 BTC (58,525.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 866,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.69 % (41,959.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 170.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01910050 BTC (28,417.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 887 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004420 BTC for 65.76 CZK @ 1,487,765 CZK\nFees are 0.23096283 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (32.730835051527797505112197806 CZK)\nThe limits being 0.10 % (28.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06754069 BTC (58,525.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 866,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.69 % (41,959.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 170.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01910050 BTC (28,417.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 887 transactions" + } + ] + }, + { + "id": 900, + "type": "message", + "date": "2024-07-19T14:29:03", + "date_unixtime": "1721392143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004395 BTC for 65.76 CZK @ 1,496,309 CZK\nFees are 0.23097540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (32.918808180016132387610371663 CZK)\nThe limits being 0.10 % (28.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06758464 BTC (58,591.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 866,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,496,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.60 % (42,536.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,104.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01914445 BTC (28,646.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 888 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004395 BTC for 65.76 CZK @ 1,496,309 CZK\nFees are 0.23097540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (32.918808180016132387610371663 CZK)\nThe limits being 0.10 % (28.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06758464 BTC (58,591.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 866,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,496,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.60 % (42,536.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,104.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01914445 BTC (28,646.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 888 transactions" + } + ] + }, + { + "id": 901, + "type": "message", + "date": "2024-07-20T02:29:03", + "date_unixtime": "1721435343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 65.77 CZK @ 1,548,185 CZK\nFees are 0.23098985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.060078342092694401984767062 CZK)\nThe limits being 0.10 % (29.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06762712 BTC (58,657.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 867,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.49 % (46,042.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,038.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01918693 BTC (29,704.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 889 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 65.77 CZK @ 1,548,185 CZK\nFees are 0.23098985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.060078342092694401984767062 CZK)\nThe limits being 0.10 % (29.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06762712 BTC (58,657.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 867,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.49 % (46,042.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,038.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01918693 BTC (29,704.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 889 transactions" + } + ] + }, + { + "id": 902, + "type": "message", + "date": "2024-07-20T14:29:03", + "date_unixtime": "1721478543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004251 BTC for 65.77 CZK @ 1,547,067 CZK\nFees are 0.23098593 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.035465174172213296745324557 CZK)\nThe limits being 0.10 % (29.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06766963 BTC (58,723.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 867,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.28 % (45,966.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 972.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01922944 BTC (29,749.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 890 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004251 BTC for 65.77 CZK @ 1,547,067 CZK\nFees are 0.23098593 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.035465174172213296745324557 CZK)\nThe limits being 0.10 % (29.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06766963 BTC (58,723.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 867,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.28 % (45,966.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 972.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01922944 BTC (29,749.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 890 transactions" + } + ] + }, + { + "id": 903, + "type": "message", + "date": "2024-07-21T02:29:03", + "date_unixtime": "1721521743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004207 BTC for 65.75 CZK @ 1,562,990 CZK\nFees are 0.23094799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.385783745481260086962093335 CZK)\nThe limits being 0.10 % (30.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06771170 BTC (58,789.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 868,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.02 % (47,043.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 906.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01927151 BTC (30,121.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 891 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004207 BTC for 65.75 CZK @ 1,562,990 CZK\nFees are 0.23094799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.385783745481260086962093335 CZK)\nThe limits being 0.10 % (30.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06771170 BTC (58,789.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 868,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.02 % (47,043.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 906.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01927151 BTC (30,121.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 891 transactions" + } + ] + }, + { + "id": 904, + "type": "message", + "date": "2024-07-21T14:29:03", + "date_unixtime": "1721564943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004221 BTC for 65.75 CZK @ 1,557,802 CZK\nFees are 0.23094742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.271650113963836829329991323 CZK)\nThe limits being 0.10 % (30.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06775391 BTC (58,855.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 868,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.33 % (46,692.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 840.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01931372 BTC (30,086.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 892 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004221 BTC for 65.75 CZK @ 1,557,802 CZK\nFees are 0.23094742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.271650113963836829329991323 CZK)\nThe limits being 0.10 % (30.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06775391 BTC (58,855.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 868,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.33 % (46,692.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 840.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01931372 BTC (30,086.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 892 transactions" + } + ] + }, + { + "id": 905, + "type": "message", + "date": "2024-07-22T02:29:04", + "date_unixtime": "1721608144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004171 BTC for 65.76 CZK @ 1,576,509 CZK\nFees are 0.23095215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.683192835146514889089338120 CZK)\nThe limits being 0.10 % (30.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06779562 BTC (58,921.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 869,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.40 % (47,959.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 774.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01935543 BTC (30,514.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 893 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004171 BTC for 65.76 CZK @ 1,576,509 CZK\nFees are 0.23095215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.683192835146514889089338120 CZK)\nThe limits being 0.10 % (30.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06779562 BTC (58,921.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 869,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.40 % (47,959.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 774.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01935543 BTC (30,514.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 893 transactions" + } + ] + }, + { + "id": 906, + "type": "message", + "date": "2024-07-22T14:29:03", + "date_unixtime": "1721651343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004183 BTC for 65.76 CZK @ 1,572,069 CZK\nFees are 0.23096428 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.585512087087972397826826761 CZK)\nThe limits being 0.10 % (30.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06783745 BTC (58,987.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 869,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.79 % (47,658.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 708.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01939726 BTC (30,493.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 894 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004183 BTC for 65.76 CZK @ 1,572,069 CZK\nFees are 0.23096428 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.585512087087972397826826761 CZK)\nThe limits being 0.10 % (30.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06783745 BTC (58,987.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 869,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.79 % (47,658.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 708.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01939726 BTC (30,493.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 894 transactions" + } + ] + }, + { + "id": 907, + "type": "message", + "date": "2024-07-23T02:29:03", + "date_unixtime": "1721694543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004177 BTC for 65.76 CZK @ 1,574,287 CZK\nFees are 0.23095846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.634319380850289488346926528 CZK)\nThe limits being 0.10 % (30.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06787922 BTC (59,053.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 869,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.96 % (47,808.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 642.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01943903 BTC (30,602.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 895 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004177 BTC for 65.76 CZK @ 1,574,287 CZK\nFees are 0.23095846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.634319380850289488346926528 CZK)\nThe limits being 0.10 % (30.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06787922 BTC (59,053.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 869,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.96 % (47,808.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 642.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01943903 BTC (30,602.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 895 transactions" + } + ] + }, + { + "id": 908, + "type": "message", + "date": "2024-07-23T14:29:03", + "date_unixtime": "1721737743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004217 BTC for 65.76 CZK @ 1,559,317 CZK\nFees are 0.23095291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.304974929222702755201471162 CZK)\nThe limits being 0.10 % (30.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06792139 BTC (59,119.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 870,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.15 % (46,791.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 576.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01948120 BTC (30,377.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 896 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004217 BTC for 65.76 CZK @ 1,559,317 CZK\nFees are 0.23095291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.304974929222702755201471162 CZK)\nThe limits being 0.10 % (30.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06792139 BTC (59,119.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 870,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.15 % (46,791.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 576.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01948120 BTC (30,377.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 896 transactions" + } + ] + }, + { + "id": 909, + "type": "message", + "date": "2024-07-24T02:29:04", + "date_unixtime": "1721780944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004253 BTC for 65.77 CZK @ 1,546,343 CZK\nFees are 0.23098649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.019541604384653712007972097 CZK)\nThe limits being 0.10 % (30.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06796392 BTC (59,185.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 870,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.57 % (45,910.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 510.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01952373 BTC (30,190.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 897 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004253 BTC for 65.77 CZK @ 1,546,343 CZK\nFees are 0.23098649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.019541604384653712007972097 CZK)\nThe limits being 0.10 % (30.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06796392 BTC (59,185.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 870,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.57 % (45,910.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 510.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01952373 BTC (30,190.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 897 transactions" + } + ] + }, + { + "id": 910, + "type": "message", + "date": "2024-07-24T14:29:04", + "date_unixtime": "1721824144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004209 BTC for 65.77 CZK @ 1,562,564 CZK\nFees are 0.23099479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.376410455541503999484815737 CZK)\nThe limits being 0.10 % (30.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06800601 BTC (59,251.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 871,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.34 % (47,012.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 444.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01956582 BTC (30,572.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 898 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004209 BTC for 65.77 CZK @ 1,562,564 CZK\nFees are 0.23099479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.376410455541503999484815737 CZK)\nThe limits being 0.10 % (30.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06800601 BTC (59,251.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 871,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.34 % (47,012.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 444.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01956582 BTC (30,572.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 898 transactions" + } + ] + }, + { + "id": 911, + "type": "message", + "date": "2024-07-25T02:29:03", + "date_unixtime": "1721867343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004266 BTC for 65.76 CZK @ 1,541,486 CZK\nFees are 0.23096479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.912686056841373990844514897 CZK)\nThe limits being 0.10 % (30.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06804867 BTC (59,317.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 871,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.84 % (45,579.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 378.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01960848 BTC (30,226.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 899 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004266 BTC for 65.76 CZK @ 1,541,486 CZK\nFees are 0.23096479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.912686056841373990844514897 CZK)\nThe limits being 0.10 % (30.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06804867 BTC (59,317.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 871,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.84 % (45,579.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 378.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01960848 BTC (30,226.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 899 transactions" + } + ] + }, + { + "id": 912, + "type": "message", + "date": "2024-07-25T14:29:03", + "date_unixtime": "1721910543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004350 BTC for 65.75 CZK @ 1,511,602 CZK\nFees are 0.23094697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.255254278989055546964933079 CZK)\nThe limits being 0.10 % (29.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06809217 BTC (59,383.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 872,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.33 % (43,545.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 312.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01965198 BTC (29,705.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 900 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004350 BTC for 65.75 CZK @ 1,511,602 CZK\nFees are 0.23094697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.255254278989055546964933079 CZK)\nThe limits being 0.10 % (29.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06809217 BTC (59,383.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 872,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.33 % (43,545.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 312.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01965198 BTC (29,705.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 900 transactions" + } + ] + }, + { + "id": 913, + "type": "message", + "date": "2024-07-26T02:29:03", + "date_unixtime": "1721953743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004246 BTC for 65.77 CZK @ 1,548,939 CZK\nFees are 0.23099352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.076663553211428394401976501 CZK)\nThe limits being 0.10 % (30.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06813463 BTC (59,449.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 872,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.52 % (46,087.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 246.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01969444 BTC (30,505.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 901 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004246 BTC for 65.77 CZK @ 1,548,939 CZK\nFees are 0.23099352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.076663553211428394401976501 CZK)\nThe limits being 0.10 % (30.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06813463 BTC (59,449.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 872,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.52 % (46,087.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 246.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01969444 BTC (30,505.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 901 transactions" + } + ] + }, + { + "id": 914, + "type": "message", + "date": "2024-07-26T14:29:03", + "date_unixtime": "1721996943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004168 BTC for 65.76 CZK @ 1,577,662 CZK\nFees are 0.23095480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.708555866846077117803618240 CZK)\nThe limits being 0.10 % (31.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06817631 BTC (59,515.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 872,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.73 % (48,044.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,181.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01973612 BTC (31,136.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 902 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004168 BTC for 65.76 CZK @ 1,577,662 CZK\nFees are 0.23095480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.708555866846077117803618240 CZK)\nThe limits being 0.10 % (31.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06817631 BTC (59,515.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 872,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.73 % (48,044.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,181.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01973612 BTC (31,136.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 902 transactions" + } + ] + }, + { + "id": 915, + "type": "message", + "date": "2024-07-27T02:29:04", + "date_unixtime": "1722040144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004144 BTC for 65.76 CZK @ 1,586,944 CZK\nFees are 0.23097591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.912761335326357747882411559 CZK)\nThe limits being 0.10 % (31.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06821775 BTC (59,580.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 873,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.70 % (48,676.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,115.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01977756 BTC (31,385.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 903 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004144 BTC for 65.76 CZK @ 1,586,944 CZK\nFees are 0.23097591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.912761335326357747882411559 CZK)\nThe limits being 0.10 % (31.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06821775 BTC (59,580.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 873,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.70 % (48,676.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,115.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01977756 BTC (31,385.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 903 transactions" + } + ] + }, + { + "id": 916, + "type": "message", + "date": "2024-07-27T14:29:03", + "date_unixtime": "1722083343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004114 BTC for 65.77 CZK @ 1,598,606 CZK\nFees are 0.23098887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (35.169324918933465491101998620 CZK)\nThe limits being 0.10 % (31.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06825889 BTC (59,646.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 873,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,598,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.94 % (49,472.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,049.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01981870 BTC (31,682.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 904 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004114 BTC for 65.77 CZK @ 1,598,606 CZK\nFees are 0.23098887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (35.169324918933465491101998620 CZK)\nThe limits being 0.10 % (31.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06825889 BTC (59,646.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 873,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,598,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.94 % (49,472.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,049.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01981870 BTC (31,682.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 904 transactions" + } + ] + }, + { + "id": 917, + "type": "message", + "date": "2024-07-28T02:29:03", + "date_unixtime": "1722126543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004140 BTC for 65.76 CZK @ 1,588,478 CZK\nFees are 0.23097599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.946505190769504800829945432 CZK)\nThe limits being 0.10 % (31.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06830029 BTC (59,712.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 874,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.69 % (48,780.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 983.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01986010 BTC (31,547.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 905 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004140 BTC for 65.76 CZK @ 1,588,478 CZK\nFees are 0.23097599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.946505190769504800829945432 CZK)\nThe limits being 0.10 % (31.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06830029 BTC (59,712.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 874,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.69 % (48,780.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 983.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01986010 BTC (31,547.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 905 transactions" + } + ] + }, + { + "id": 918, + "type": "message", + "date": "2024-07-28T14:29:03", + "date_unixtime": "1722169743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004139 BTC for 65.77 CZK @ 1,588,937 CZK\nFees are 0.23098694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.956606294013475185244974312 CZK)\nThe limits being 0.10 % (31.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06834168 BTC (59,778.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 874,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.65 % (48,811.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 917.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01990149 BTC (31,622.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 906 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004139 BTC for 65.77 CZK @ 1,588,937 CZK\nFees are 0.23098694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.956606294013475185244974312 CZK)\nThe limits being 0.10 % (31.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06834168 BTC (59,778.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 874,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.65 % (48,811.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 917.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01990149 BTC (31,622.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 906 transactions" + } + ] + }, + { + "id": 919, + "type": "message", + "date": "2024-07-29T02:29:03", + "date_unixtime": "1722212943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004083 BTC for 65.63 CZK @ 1,607,485 CZK\nFees are 0.23052159 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (35.364659881939052161422286264 CZK)\nThe limits being 0.10 % (32.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06838251 BTC (59,844.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 875,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,607,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.68 % (50,078.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 851.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01994232 BTC (32,056.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 907 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004083 BTC for 65.63 CZK @ 1,607,485 CZK\nFees are 0.23052159 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (35.364659881939052161422286264 CZK)\nThe limits being 0.10 % (32.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06838251 BTC (59,844.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 875,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,607,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.68 % (50,078.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 851.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01994232 BTC (32,056.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 907 transactions" + } + ] + }, + { + "id": 920, + "type": "message", + "date": "2024-07-29T14:29:04", + "date_unixtime": "1722256144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004029 BTC for 65.76 CZK @ 1,632,158 CZK\nFees are 0.23096432 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (35.907477289402702356099642810 CZK)\nThe limits being 0.10 % (32.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06842280 BTC (59,910.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 875,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,632,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.41 % (51,766.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 785.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01998261 BTC (32,614.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 908 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004029 BTC for 65.76 CZK @ 1,632,158 CZK\nFees are 0.23096432 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (35.907477289402702356099642810 CZK)\nThe limits being 0.10 % (32.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06842280 BTC (59,910.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 875,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,632,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.41 % (51,766.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 785.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01998261 BTC (32,614.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 908 transactions" + } + ] + }, + { + "id": 921, + "type": "message", + "date": "2024-07-30T02:29:03", + "date_unixtime": "1722299343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004211 BTC for 65.76 CZK @ 1,561,555 CZK\nFees are 0.23095525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.354201262098920697530147688 CZK)\nThe limits being 0.10 % (31.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06846491 BTC (59,976.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 876,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.26 % (46,934.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 719.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02002472 BTC (31,269.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 909 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004211 BTC for 65.76 CZK @ 1,561,555 CZK\nFees are 0.23095525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.354201262098920697530147688 CZK)\nThe limits being 0.10 % (31.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06846491 BTC (59,976.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 876,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.26 % (46,934.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 719.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02002472 BTC (31,269.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 909 transactions" + } + ] + }, + { + "id": 922, + "type": "message", + "date": "2024-07-30T14:29:03", + "date_unixtime": "1722342543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004208 BTC for 65.77 CZK @ 1,562,921 CZK\nFees are 0.23099266 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (17.192130983099077184227826183 CZK)\nThe limits being 0.10 % (31.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06850699 BTC (60,042.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 876,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.32 % (47,028.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 653.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02006680 BTC (31,362.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 910 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004208 BTC for 65.77 CZK @ 1,562,921 CZK\nFees are 0.23099266 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (17.192130983099077184227826183 CZK)\nThe limits being 0.10 % (31.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06850699 BTC (60,042.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 876,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.32 % (47,028.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 653.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02006680 BTC (31,362.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 910 transactions" + } + ] + }, + { + "id": 923, + "type": "message", + "date": "2024-07-31T02:29:04", + "date_unixtime": "1722385744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004226 BTC for 65.76 CZK @ 1,556,107 CZK\nFees are 0.23096937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.234355433691497647490762925 CZK)\nThe limits being 0.10 % (31.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06854925 BTC (60,108.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 876,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.46 % (46,561.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 587.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02010906 BTC (31,291.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 911 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004226 BTC for 65.76 CZK @ 1,556,107 CZK\nFees are 0.23096937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.234355433691497647490762925 CZK)\nThe limits being 0.10 % (31.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06854925 BTC (60,108.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 876,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.46 % (46,561.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 587.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02010906 BTC (31,291.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 911 transactions" + } + ] + }, + { + "id": 924, + "type": "message", + "date": "2024-07-31T14:29:03", + "date_unixtime": "1722428943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004221 BTC for 65.76 CZK @ 1,558,038 CZK\nFees are 0.23098234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (17.138416497954859956510894646 CZK)\nThe limits being 0.10 % (31.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06859146 BTC (60,174.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 877,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.60 % (46,693.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 521.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02015127 BTC (31,396.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 912 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004221 BTC for 65.76 CZK @ 1,558,038 CZK\nFees are 0.23098234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (17.138416497954859956510894646 CZK)\nThe limits being 0.10 % (31.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06859146 BTC (60,174.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 877,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.60 % (46,693.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 521.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02015127 BTC (31,396.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 912 transactions" + } + ] + }, + { + "id": 925, + "type": "message", + "date": "2024-08-01T02:29:03", + "date_unixtime": "1722472143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004311 BTC for 65.76 CZK @ 1,525,344 CZK\nFees are 0.23095700 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.557559533051623886104040636 CZK)\nThe limits being 0.10 % (30.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06863457 BTC (60,240.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 877,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,525,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.79 % (44,450.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 455.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02019438 BTC (30,803.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 913 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004311 BTC for 65.76 CZK @ 1,525,344 CZK\nFees are 0.23095700 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.557559533051623886104040636 CZK)\nThe limits being 0.10 % (30.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06863457 BTC (60,240.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 877,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,525,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.79 % (44,450.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 455.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02019438 BTC (30,803.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 913 transactions" + } + ] + }, + { + "id": 926, + "type": "message", + "date": "2024-08-01T14:29:03", + "date_unixtime": "1722515343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004283 BTC for 65.76 CZK @ 1,535,379 CZK\nFees are 0.23096649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (16.889164083773568136085922014 CZK)\nThe limits being 0.10 % (31.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06867740 BTC (60,306.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 878,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.85 % (45,139.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 389.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02023721 BTC (31,071.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 914 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004283 BTC for 65.76 CZK @ 1,535,379 CZK\nFees are 0.23096649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (16.889164083773568136085922014 CZK)\nThe limits being 0.10 % (31.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06867740 BTC (60,306.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 878,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.85 % (45,139.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 389.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02023721 BTC (31,071.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 914 transactions" + } + ] + }, + { + "id": 927, + "type": "message", + "date": "2024-08-02T02:29:04", + "date_unixtime": "1722558544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004282 BTC for 65.76 CZK @ 1,535,803 CZK\nFees are 0.23097633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.787657349673154701189461360 CZK)\nThe limits being 0.10 % (31.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06872022 BTC (60,372.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 878,530 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.82 % (45,167.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 323.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02028003 BTC (31,146.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 915 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004282 BTC for 65.76 CZK @ 1,535,803 CZK\nFees are 0.23097633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (33.787657349673154701189461360 CZK)\nThe limits being 0.10 % (31.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06872022 BTC (60,372.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 878,530 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.82 % (45,167.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 323.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02028003 BTC (31,146.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 915 transactions" + } + ] + }, + { + "id": 928, + "type": "message", + "date": "2024-08-02T14:29:03", + "date_unixtime": "1722601743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004347 BTC for 65.76 CZK @ 1,512,654 CZK\nFees are 0.23094825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (16.639194886908931232061146924 CZK)\nThe limits being 0.10 % (30.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06876369 BTC (60,438.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 878,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,512,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.10 % (43,576.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,257.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02032350 BTC (30,742.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 916 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004347 BTC for 65.76 CZK @ 1,512,654 CZK\nFees are 0.23094825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (16.639194886908931232061146924 CZK)\nThe limits being 0.10 % (30.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06876369 BTC (60,438.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 878,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,512,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.10 % (43,576.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,257.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02032350 BTC (30,742.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 916 transactions" + } + ] + }, + { + "id": 929, + "type": "message", + "date": "2024-08-03T02:29:04", + "date_unixtime": "1722644944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004573 BTC for 65.76 CZK @ 1,438,039 CZK\nFees are 0.23097086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (31.636850400375419031421949701 CZK)\nThe limits being 0.10 % (29.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06880942 BTC (60,504.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 879,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.54 % (38,445.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,191.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02036923 BTC (29,291.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 917 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004573 BTC for 65.76 CZK @ 1,438,039 CZK\nFees are 0.23097086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (31.636850400375419031421949701 CZK)\nThe limits being 0.10 % (29.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06880942 BTC (60,504.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 879,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.54 % (38,445.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,191.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02036923 BTC (29,291.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 917 transactions" + } + ] + }, + { + "id": 930, + "type": "message", + "date": "2024-08-03T14:29:03", + "date_unixtime": "1722688143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004540 BTC for 65.76 CZK @ 1,448,515 CZK\nFees are 0.23097458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (31.867323146081226719696919811 CZK)\nThe limits being 0.10 % (29.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06885482 BTC (60,570.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 879,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,448,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 64.66 % (39,166.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,125.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02041463 BTC (29,570.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 918 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004540 BTC for 65.76 CZK @ 1,448,515 CZK\nFees are 0.23097458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (31.867323146081226719696919811 CZK)\nThe limits being 0.10 % (29.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06885482 BTC (60,570.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 879,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,448,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 64.66 % (39,166.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,125.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02041463 BTC (29,570.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 918 transactions" + } + ] + }, + { + "id": 931, + "type": "message", + "date": "2024-08-04T02:29:03", + "date_unixtime": "1722731343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004651 BTC for 65.77 CZK @ 1,414,064 CZK\nFees are 0.23099408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (31.109409664754310247395778932 CZK)\nThe limits being 0.10 % (28.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06890133 BTC (60,636.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 880,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.68 % (36,794.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,059.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02046114 BTC (28,933.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 919 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004651 BTC for 65.77 CZK @ 1,414,064 CZK\nFees are 0.23099408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (31.109409664754310247395778932 CZK)\nThe limits being 0.10 % (28.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06890133 BTC (60,636.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 880,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.68 % (36,794.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,059.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02046114 BTC (28,933.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 919 transactions" + } + ] + }, + { + "id": 932, + "type": "message", + "date": "2024-08-04T14:29:03", + "date_unixtime": "1722774543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004619 BTC for 65.76 CZK @ 1,423,760 CZK\nFees are 0.23097779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.661361884195529977186364287 CZK)\nThe limits being 0.10 % (29.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06894752 BTC (60,702.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 880,419 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,423,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.71 % (37,462.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 993.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02050733 BTC (29,197.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 920 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004619 BTC for 65.76 CZK @ 1,423,760 CZK\nFees are 0.23097779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.661361884195529977186364287 CZK)\nThe limits being 0.10 % (29.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06894752 BTC (60,702.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 880,419 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,423,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.71 % (37,462.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 993.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02050733 BTC (29,197.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 920 transactions" + } + ] + }, + { + "id": 933, + "type": "message", + "date": "2024-08-05T02:29:05", + "date_unixtime": "1722817745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004909 BTC for 65.76 CZK @ 1,339,560 CZK\nFees are 0.23096204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.735159186887450249244775086 CZK)\nThe limits being 0.10 % (27.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06899661 BTC (60,768.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 880,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,339,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.09 % (31,656.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 927.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02055642 BTC (27,536.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 921 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004909 BTC for 65.76 CZK @ 1,339,560 CZK\nFees are 0.23096204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.735159186887450249244775086 CZK)\nThe limits being 0.10 % (27.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06899661 BTC (60,768.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 880,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,339,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.09 % (31,656.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 927.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02055642 BTC (27,536.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 921 transactions" + } + ] + }, + { + "id": 934, + "type": "message", + "date": "2024-08-05T14:29:03", + "date_unixtime": "1722860943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005631 BTC for 65.76 CZK @ 1,167,908 CZK\nFees are 0.23098284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (12.846991922871264727246149752 CZK)\nThe limits being 0.10 % (24.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06905292 BTC (60,834.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 880,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,167,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.57 % (19,812.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 961.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02133033 BTC (24,911.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 922 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005631 BTC for 65.76 CZK @ 1,167,908 CZK\nFees are 0.23098284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (12.846991922871264727246149752 CZK)\nThe limits being 0.10 % (24.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06905292 BTC (60,834.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 880,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,167,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.57 % (19,812.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 961.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02133033 BTC (24,911.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 922 transactions" + } + ] + }, + { + "id": 935, + "type": "message", + "date": "2024-08-06T02:29:03", + "date_unixtime": "1722904143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005089 BTC for 65.76 CZK @ 1,292,173 CZK\nFees are 0.23096097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.213904823587085601260199245 CZK)\nThe limits being 0.10 % (27.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06910381 BTC (60,900.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 881,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,292,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.62 % (28,393.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 895.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02138122 BTC (27,628.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 923 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005089 BTC for 65.76 CZK @ 1,292,173 CZK\nFees are 0.23096097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.213904823587085601260199245 CZK)\nThe limits being 0.10 % (27.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06910381 BTC (60,900.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 881,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,292,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.62 % (28,393.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 895.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02138122 BTC (27,628.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 923 transactions" + } + ] + }, + { + "id": 936, + "type": "message", + "date": "2024-08-06T14:29:04", + "date_unixtime": "1722947344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005095 BTC for 65.76 CZK @ 1,290,754 CZK\nFees are 0.23097925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.198290020453437502597630570 CZK)\nThe limits being 0.10 % (27.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06915476 BTC (60,966.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 881,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,290,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.41 % (28,295.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 829.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02143217 BTC (27,663.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 924 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005095 BTC for 65.76 CZK @ 1,290,754 CZK\nFees are 0.23097925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.198290020453437502597630570 CZK)\nThe limits being 0.10 % (27.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06915476 BTC (60,966.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 881,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,290,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.41 % (28,295.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 829.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02143217 BTC (27,663.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 924 transactions" + } + ] + }, + { + "id": 937, + "type": "message", + "date": "2024-08-07T02:29:03", + "date_unixtime": "1722990543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005046 BTC for 65.76 CZK @ 1,303,252 CZK\nFees are 0.23097287 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.335768666385842180193342327 CZK)\nThe limits being 0.10 % (28.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06920522 BTC (61,032.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 881,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,303,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.78 % (29,159.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 763.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02148263 BTC (27,997.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 925 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005046 BTC for 65.76 CZK @ 1,303,252 CZK\nFees are 0.23097287 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.335768666385842180193342327 CZK)\nThe limits being 0.10 % (28.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06920522 BTC (61,032.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 881,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,303,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.78 % (29,159.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 763.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02148263 BTC (27,997.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 925 transactions" + } + ] + }, + { + "id": 938, + "type": "message", + "date": "2024-08-07T14:29:03", + "date_unixtime": "1723033743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004943 BTC for 65.76 CZK @ 1,330,306 CZK\nFees are 0.23095510 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.266730443447932237169905331 CZK)\nThe limits being 0.10 % (28.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06925465 BTC (61,098.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 882,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,330,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.79 % (31,031.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 697.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02153206 BTC (28,644.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 926 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004943 BTC for 65.76 CZK @ 1,330,306 CZK\nFees are 0.23095510 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.266730443447932237169905331 CZK)\nThe limits being 0.10 % (28.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06925465 BTC (61,098.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 882,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,330,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.79 % (31,031.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 697.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02153206 BTC (28,644.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 926 transactions" + } + ] + }, + { + "id": 939, + "type": "message", + "date": "2024-08-08T02:29:04", + "date_unixtime": "1723076944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005146 BTC for 65.76 CZK @ 1,277,841 CZK\nFees are 0.23095739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.112492055497170707033737923 CZK)\nThe limits being 0.10 % (27.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06930611 BTC (61,164.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 882,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,277,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.79 % (27,397.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 631.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02158352 BTC (27,580.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 927 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005146 BTC for 65.76 CZK @ 1,277,841 CZK\nFees are 0.23095739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (28.112492055497170707033737923 CZK)\nThe limits being 0.10 % (27.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06930611 BTC (61,164.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 882,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,277,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.79 % (27,397.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 631.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02158352 BTC (27,580.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 927 transactions" + } + ] + }, + { + "id": 940, + "type": "message", + "date": "2024-08-08T14:29:04", + "date_unixtime": "1723120144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004950 BTC for 65.77 CZK @ 1,328,639 CZK\nFees are 0.23099232 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.230053293472845042351768809 CZK)\nThe limits being 0.10 % (28.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06935561 BTC (61,230.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 882,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,328,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.49 % (30,917.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 565.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02163302 BTC (28,742.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 928 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004950 BTC for 65.77 CZK @ 1,328,639 CZK\nFees are 0.23099232 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.230053293472845042351768809 CZK)\nThe limits being 0.10 % (28.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06935561 BTC (61,230.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 882,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,328,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.49 % (30,917.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 565.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02163302 BTC (28,742.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 928 transactions" + } + ] + }, + { + "id": 941, + "type": "message", + "date": "2024-08-09T02:29:04", + "date_unixtime": "1723163344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004601 BTC for 65.77 CZK @ 1,429,388 CZK\nFees are 0.23098716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (31.446539460941258951634937358 CZK)\nThe limits being 0.10 % (30.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06940162 BTC (61,296.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 883,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,429,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.84 % (37,905.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 499.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02167903 BTC (30,987.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 929 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004601 BTC for 65.77 CZK @ 1,429,388 CZK\nFees are 0.23098716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (31.446539460941258951634937358 CZK)\nThe limits being 0.10 % (30.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06940162 BTC (61,296.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 883,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,429,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.84 % (37,905.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 499.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02167903 BTC (30,987.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 929 transactions" + } + ] + }, + { + "id": 942, + "type": "message", + "date": "2024-08-09T14:29:04", + "date_unixtime": "1723206544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004685 BTC for 65.77 CZK @ 1,403,816 CZK\nFees are 0.23099633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.883943362372571134433963519 CZK)\nThe limits being 0.10 % (30.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06944847 BTC (61,362.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 883,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.88 % (36,130.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 433.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02172588 BTC (30,499.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 930 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004685 BTC for 65.77 CZK @ 1,403,816 CZK\nFees are 0.23099633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.883943362372571134433963519 CZK)\nThe limits being 0.10 % (30.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06944847 BTC (61,362.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 883,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.88 % (36,130.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 433.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02172588 BTC (30,499.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 930 transactions" + } + ] + }, + { + "id": 943, + "type": "message", + "date": "2024-08-10T02:29:03", + "date_unixtime": "1723249743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004635 BTC for 65.76 CZK @ 1,418,813 CZK\nFees are 0.23097250 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.606941645126630686878557196 CZK)\nThe limits being 0.10 % (30.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06949482 BTC (61,428.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 883,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.51 % (37,171.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 367.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02177223 BTC (30,890.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 931 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004635 BTC for 65.76 CZK @ 1,418,813 CZK\nFees are 0.23097250 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.606941645126630686878557196 CZK)\nThe limits being 0.10 % (30.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06949482 BTC (61,428.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 883,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.51 % (37,171.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 367.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02177223 BTC (30,890.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 931 transactions" + } + ] + }, + { + "id": 944, + "type": "message", + "date": "2024-08-10T14:29:03", + "date_unixtime": "1723292943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004647 BTC for 65.77 CZK @ 1,415,314 CZK\nFees are 0.23099945 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.568456006087580921047905389 CZK)\nThe limits being 0.10 % (30.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06954129 BTC (61,494.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 884,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,415,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.05 % (36,928.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 301.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02181870 BTC (30,880.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 932 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004647 BTC for 65.77 CZK @ 1,415,314 CZK\nFees are 0.23099945 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.568456006087580921047905389 CZK)\nThe limits being 0.10 % (30.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06954129 BTC (61,494.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 884,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,415,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.05 % (36,928.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 301.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02181870 BTC (30,880.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 932 transactions" + } + ] + }, + { + "id": 945, + "type": "message", + "date": "2024-08-11T02:29:03", + "date_unixtime": "1723336143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004631 BTC for 65.76 CZK @ 1,420,064 CZK\nFees are 0.23097667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.620703845329943771621178606 CZK)\nThe limits being 0.10 % (31.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06958760 BTC (61,560.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 884,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.52 % (37,258.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02186501 BTC (31,049.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 933 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004631 BTC for 65.76 CZK @ 1,420,064 CZK\nFees are 0.23097667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.620703845329943771621178606 CZK)\nThe limits being 0.10 % (31.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06958760 BTC (61,560.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 884,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.52 % (37,258.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02186501 BTC (31,049.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 933 transactions" + } + ] + }, + { + "id": 946, + "type": "message", + "date": "2024-08-11T14:29:03", + "date_unixtime": "1723379343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004672 BTC for 65.76 CZK @ 1,407,558 CZK\nFees are 0.23096944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.483136980755711175270116237 CZK)\nThe limits being 0.10 % (30.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06963432 BTC (61,626.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 885,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,407,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.05 % (36,387.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 169.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02191173 BTC (30,842.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 934 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004672 BTC for 65.76 CZK @ 1,407,558 CZK\nFees are 0.23096944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.483136980755711175270116237 CZK)\nThe limits being 0.10 % (30.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06963432 BTC (61,626.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 885,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,407,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.05 % (36,387.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 169.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02191173 BTC (30,842.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 934 transactions" + } + ] + }, + { + "id": 947, + "type": "message", + "date": "2024-08-12T02:29:03", + "date_unixtime": "1723422543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004821 BTC for 65.76 CZK @ 1,363,961 CZK\nFees are 0.23095340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.003566202588802704328668370 CZK)\nThe limits being 0.10 % (29.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06968253 BTC (61,692.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 885,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.06 % (33,351.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 103.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02195994 BTC (29,952.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 935 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004821 BTC for 65.76 CZK @ 1,363,961 CZK\nFees are 0.23095340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.003566202588802704328668370 CZK)\nThe limits being 0.10 % (29.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06968253 BTC (61,692.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 885,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.06 % (33,351.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 103.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02195994 BTC (29,952.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 935 transactions" + } + ] + }, + { + "id": 948, + "type": "message", + "date": "2024-08-12T14:29:03", + "date_unixtime": "1723465743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004754 BTC for 65.76 CZK @ 1,383,270 CZK\nFees are 0.23096779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.215965034453455815877076425 CZK)\nThe limits being 0.10 % (30.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06973007 BTC (61,758.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 885,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,383,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.18 % (34,696.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 37.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02200748 BTC (30,442.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 936 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004754 BTC for 65.76 CZK @ 1,383,270 CZK\nFees are 0.23096779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.215965034453455815877076425 CZK)\nThe limits being 0.10 % (30.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06973007 BTC (61,758.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 885,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,383,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.18 % (34,696.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 37.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02200748 BTC (30,442.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 936 transactions" + } + ] + }, + { + "id": 949, + "type": "message", + "date": "2024-08-13T02:29:00", + "date_unixtime": "1723508940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (37.98855878 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (37.98855878 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 950, + "type": "message", + "date": "2024-08-13T14:29:03", + "date_unixtime": "1723552143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004819 BTC for 65.76 CZK @ 1,364,651 CZK\nFees are 0.23097450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.022328168488522170742306473 CZK)\nThe limits being 0.10 % (30.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06977826 BTC (61,824.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 886,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,364,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.02 % (33,398.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 972.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02205567 BTC (30,098.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 937 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004819 BTC for 65.76 CZK @ 1,364,651 CZK\nFees are 0.23097450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.022328168488522170742306473 CZK)\nThe limits being 0.10 % (30.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06977826 BTC (61,824.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 886,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,364,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.02 % (33,398.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 972.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02205567 BTC (30,098.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 937 transactions" + } + ] + }, + { + "id": 951, + "type": "message", + "date": "2024-08-14T02:29:03", + "date_unixtime": "1723595343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004715 BTC for 65.77 CZK @ 1,394,895 CZK\nFees are 0.23099829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.343849838608349039232252334 CZK)\nThe limits being 0.10 % (30.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06982541 BTC (61,890.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 886,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,394,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.37 % (35,508.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 906.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02210282 BTC (30,831.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 938 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004715 BTC for 65.77 CZK @ 1,394,895 CZK\nFees are 0.23099829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.343849838608349039232252334 CZK)\nThe limits being 0.10 % (30.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06982541 BTC (61,890.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 886,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,394,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.37 % (35,508.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 906.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02210282 BTC (30,831.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 938 transactions" + } + ] + }, + { + "id": 952, + "type": "message", + "date": "2024-08-14T14:29:03", + "date_unixtime": "1723638543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004665 BTC for 65.76 CZK @ 1,409,675 CZK\nFees are 0.23097029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.506426857339077430493807579 CZK)\nThe limits being 0.10 % (31.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06987206 BTC (61,956.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 886,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,409,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.98 % (36,540.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 840.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02214947 BTC (31,223.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 939 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004665 BTC for 65.76 CZK @ 1,409,675 CZK\nFees are 0.23097029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.506426857339077430493807579 CZK)\nThe limits being 0.10 % (31.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06987206 BTC (61,956.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 886,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,409,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.98 % (36,540.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 840.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02214947 BTC (31,223.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 939 transactions" + } + ] + }, + { + "id": 953, + "type": "message", + "date": "2024-08-15T02:29:03", + "date_unixtime": "1723681743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004867 BTC for 65.77 CZK @ 1,351,326 CZK\nFees are 0.23099733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.864587829385726083630244627 CZK)\nThe limits being 0.10 % (30.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06992073 BTC (62,022.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 887,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,351,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.34 % (32,463.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 774.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02219814 BTC (29,996.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 940 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004867 BTC for 65.77 CZK @ 1,351,326 CZK\nFees are 0.23099733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.864587829385726083630244627 CZK)\nThe limits being 0.10 % (30.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06992073 BTC (62,022.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 887,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,351,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.34 % (32,463.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 774.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02219814 BTC (29,996.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 940 transactions" + } + ] + }, + { + "id": 954, + "type": "message", + "date": "2024-08-15T14:29:03", + "date_unixtime": "1723724943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004876 BTC for 65.77 CZK @ 1,348,825 CZK\nFees are 0.23099613 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.837074457201272167593897160 CZK)\nThe limits being 0.10 % (30.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06996949 BTC (62,088.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 887,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,348,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.00 % (32,288.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 708.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02224690 BTC (30,007.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 941 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004876 BTC for 65.77 CZK @ 1,348,825 CZK\nFees are 0.23099613 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.837074457201272167593897160 CZK)\nThe limits being 0.10 % (30.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06996949 BTC (62,088.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 887,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,348,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.00 % (32,288.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 708.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02224690 BTC (30,007.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 941 transactions" + } + ] + }, + { + "id": 955, + "type": "message", + "date": "2024-08-16T02:29:04", + "date_unixtime": "1723768144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004955 BTC for 65.76 CZK @ 1,327,194 CZK\nFees are 0.23097424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.198272318529948409627856488 CZK)\nThe limits being 0.10 % (29.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07001904 BTC (62,154.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 887,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.51 % (30,774.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 642.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02229645 BTC (29,591.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 942 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004955 BTC for 65.76 CZK @ 1,327,194 CZK\nFees are 0.23097424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.198272318529948409627856488 CZK)\nThe limits being 0.10 % (29.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07001904 BTC (62,154.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 887,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.51 % (30,774.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 642.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02229645 BTC (29,591.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 942 transactions" + } + ] + }, + { + "id": 956, + "type": "message", + "date": "2024-08-16T14:29:03", + "date_unixtime": "1723811343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004903 BTC for 65.76 CZK @ 1,341,314 CZK\nFees are 0.23098185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.754457145859367799078912161 CZK)\nThe limits being 0.10 % (29.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07006807 BTC (62,220.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 888,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.05 % (31,762.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 576.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02234548 BTC (29,972.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 943 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004903 BTC for 65.76 CZK @ 1,341,314 CZK\nFees are 0.23098185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.754457145859367799078912161 CZK)\nThe limits being 0.10 % (29.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07006807 BTC (62,220.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 888,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.05 % (31,762.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 576.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02234548 BTC (29,972.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 943 transactions" + } + ] + }, + { + "id": 957, + "type": "message", + "date": "2024-08-17T02:29:05", + "date_unixtime": "1723854545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004860 BTC for 65.76 CZK @ 1,353,011 CZK\nFees are 0.23095275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.883124894966383091279287924 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07011667 BTC (62,286.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 888,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,353,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.31 % (32,582.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 510.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02239408 BTC (30,299.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 944 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004860 BTC for 65.76 CZK @ 1,353,011 CZK\nFees are 0.23095275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.883124894966383091279287924 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07011667 BTC (62,286.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 888,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,353,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.31 % (32,582.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 510.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02239408 BTC (30,299.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 944 transactions" + } + ] + }, + { + "id": 958, + "type": "message", + "date": "2024-08-17T14:29:03", + "date_unixtime": "1723897743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004845 BTC for 65.76 CZK @ 1,357,303 CZK\nFees are 0.23097024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.930333213525622138819600953 CZK)\nThe limits being 0.10 % (30.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07016512 BTC (62,352.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 888,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,357,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.74 % (32,882.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 444.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02244253 BTC (30,461.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 945 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004845 BTC for 65.76 CZK @ 1,357,303 CZK\nFees are 0.23097024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.930333213525622138819600953 CZK)\nThe limits being 0.10 % (30.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07016512 BTC (62,352.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 888,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,357,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.74 % (32,882.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 444.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02244253 BTC (30,461.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 945 transactions" + } + ] + }, + { + "id": 959, + "type": "message", + "date": "2024-08-18T02:29:03", + "date_unixtime": "1723940943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004813 BTC for 65.77 CZK @ 1,366,411 CZK\nFees are 0.23098433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.030517179483277467157075728 CZK)\nThe limits being 0.10 % (30.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07021325 BTC (62,418.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 888,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,366,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.70 % (33,521.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 378.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02249066 BTC (30,731.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 946 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004813 BTC for 65.77 CZK @ 1,366,411 CZK\nFees are 0.23098433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.030517179483277467157075728 CZK)\nThe limits being 0.10 % (30.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07021325 BTC (62,418.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 888,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,366,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.70 % (33,521.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 378.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02249066 BTC (30,731.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 946 transactions" + } + ] + }, + { + "id": 960, + "type": "message", + "date": "2024-08-18T14:29:03", + "date_unixtime": "1723984143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004779 BTC for 65.77 CZK @ 1,376,191 CZK\nFees are 0.23099424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.138100532630457554241260422 CZK)\nThe limits being 0.10 % (31.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07026104 BTC (62,484.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 889,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,376,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.75 % (34,208.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 312.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02253845 BTC (31,017.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 947 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004779 BTC for 65.77 CZK @ 1,376,191 CZK\nFees are 0.23099424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.138100532630457554241260422 CZK)\nThe limits being 0.10 % (31.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07026104 BTC (62,484.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 889,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,376,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.75 % (34,208.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 312.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02253845 BTC (31,017.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 947 transactions" + } + ] + }, + { + "id": 961, + "type": "message", + "date": "2024-08-19T02:29:03", + "date_unixtime": "1724027343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004903 BTC for 65.77 CZK @ 1,341,346 CZK\nFees are 0.23098738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.754810021949487216931236288 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07031007 BTC (62,550.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 889,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.77 % (31,759.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 246.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02258748 BTC (30,297.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 948 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004903 BTC for 65.77 CZK @ 1,341,346 CZK\nFees are 0.23098738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.754810021949487216931236288 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07031007 BTC (62,550.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 889,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.77 % (31,759.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 246.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02258748 BTC (30,297.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 948 transactions" + } + ] + }, + { + "id": 962, + "type": "message", + "date": "2024-08-19T14:29:03", + "date_unixtime": "1724070543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004913 BTC for 65.76 CZK @ 1,338,476 CZK\nFees are 0.23096323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.723238563460617332517544182 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07035920 BTC (62,616.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 889,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,338,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.40 % (31,557.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 180.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02263661 BTC (30,298.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 949 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004913 BTC for 65.76 CZK @ 1,338,476 CZK\nFees are 0.23096323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.723238563460617332517544182 CZK)\nThe limits being 0.10 % (30.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07035920 BTC (62,616.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 889,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,338,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.40 % (31,557.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 180.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02263661 BTC (30,298.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 949 transactions" + } + ] + }, + { + "id": 963, + "type": "message", + "date": "2024-08-20T02:29:04", + "date_unixtime": "1724113744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004805 BTC for 65.77 CZK @ 1,368,694 CZK\nFees are 0.23098580 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.111275211888463219522514073 CZK)\nThe limits being 0.10 % (31.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07040725 BTC (62,682.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 890,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,368,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.74 % (33,683.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 114.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02268466 BTC (31,048.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 950 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004805 BTC for 65.77 CZK @ 1,368,694 CZK\nFees are 0.23098580 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.111275211888463219522514073 CZK)\nThe limits being 0.10 % (31.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07040725 BTC (62,682.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 890,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,368,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.74 % (33,683.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 114.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02268466 BTC (31,048.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 950 transactions" + } + ] + }, + { + "id": 964, + "type": "message", + "date": "2024-08-20T14:29:03", + "date_unixtime": "1724156943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004743 BTC for 65.77 CZK @ 1,386,570 CZK\nFees are 0.23098313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.504534493598779981639215308 CZK)\nThe limits being 0.10 % (31.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07045468 BTC (62,748.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 890,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,386,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.69 % (34,941.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 48.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02273209 BTC (31,519.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 951 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004743 BTC for 65.77 CZK @ 1,386,570 CZK\nFees are 0.23098313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.504534493598779981639215308 CZK)\nThe limits being 0.10 % (31.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07045468 BTC (62,748.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 890,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,386,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.69 % (34,941.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 48.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02273209 BTC (31,519.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 951 transactions" + } + ] + }, + { + "id": 965, + "type": "message", + "date": "2024-08-21T02:29:00", + "date_unixtime": "1724200140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (48.07034746 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (48.07034746 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 966, + "type": "message", + "date": "2024-08-21T14:29:03", + "date_unixtime": "1724243343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004883 BTC for 65.76 CZK @ 1,346,799 CZK\nFees are 0.23098028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.629576144358966431334278417 CZK)\nThe limits being 0.10 % (30.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07050351 BTC (62,814.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 890,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.17 % (32,139.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 982.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02278092 BTC (30,681.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 952 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004883 BTC for 65.76 CZK @ 1,346,799 CZK\nFees are 0.23098028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (29.629576144358966431334278417 CZK)\nThe limits being 0.10 % (30.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07050351 BTC (62,814.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 890,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.17 % (32,139.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 982.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02278092 BTC (30,681.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 952 transactions" + } + ] + }, + { + "id": 967, + "type": "message", + "date": "2024-08-22T02:29:09", + "date_unixtime": "1724286549", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004773 BTC for 65.76 CZK @ 1,377,824 CZK\nFees are 0.23097799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.156064174926830052494876773 CZK)\nThe limits being 0.10 % (31.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07055124 BTC (62,880.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 891,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,377,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.59 % (34,326.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 916.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02282865 BTC (31,453.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 953 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004773 BTC for 65.76 CZK @ 1,377,824 CZK\nFees are 0.23097799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.156064174926830052494876773 CZK)\nThe limits being 0.10 % (31.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07055124 BTC (62,880.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 891,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,377,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.59 % (34,326.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 916.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02282865 BTC (31,453.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 953 transactions" + } + ] + }, + { + "id": 968, + "type": "message", + "date": "2024-08-22T14:29:04", + "date_unixtime": "1724329744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004750 BTC for 65.76 CZK @ 1,384,447 CZK\nFees are 0.23096997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.228922233026512469514593659 CZK)\nThe limits being 0.10 % (31.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07059874 BTC (62,946.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 891,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,384,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.28 % (34,793.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 850.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02287615 BTC (31,670.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 954 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004750 BTC for 65.76 CZK @ 1,384,447 CZK\nFees are 0.23096997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.228922233026512469514593659 CZK)\nThe limits being 0.10 % (31.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07059874 BTC (62,946.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 891,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,384,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.28 % (34,793.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 850.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02287615 BTC (31,670.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 954 transactions" + } + ] + }, + { + "id": 969, + "type": "message", + "date": "2024-08-23T02:29:03", + "date_unixtime": "1724372943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004786 BTC for 65.77 CZK @ 1,374,135 CZK\nFees are 0.23098696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.115483327159788213047064068 CZK)\nThe limits being 0.10 % (31.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07064660 BTC (63,012.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 891,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,374,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.06 % (34,065.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 784.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02292401 BTC (31,500.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 955 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004786 BTC for 65.77 CZK @ 1,374,135 CZK\nFees are 0.23098696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.115483327159788213047064068 CZK)\nThe limits being 0.10 % (31.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07064660 BTC (63,012.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 891,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,374,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.06 % (34,065.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 784.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02292401 BTC (31,500.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 955 transactions" + } + ] + }, + { + "id": 970, + "type": "message", + "date": "2024-08-23T14:29:03", + "date_unixtime": "1724416143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004774 BTC for 65.76 CZK @ 1,377,480 CZK\nFees are 0.23096873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.152281774159106720946732519 CZK)\nThe limits being 0.10 % (31.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07069434 BTC (63,078.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 892,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,377,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.38 % (34,301.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 718.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02297175 BTC (31,643.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 956 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004774 BTC for 65.76 CZK @ 1,377,480 CZK\nFees are 0.23096873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.152281774159106720946732519 CZK)\nThe limits being 0.10 % (31.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07069434 BTC (63,078.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 892,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,377,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.38 % (34,301.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 718.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02297175 BTC (31,643.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 956 transactions" + } + ] + }, + { + "id": 971, + "type": "message", + "date": "2024-08-24T02:29:04", + "date_unixtime": "1724459344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004582 BTC for 65.76 CZK @ 1,435,174 CZK\nFees are 0.23096434 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.786908879376133771868299450 CZK)\nThe limits being 0.10 % (33.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07074016 BTC (63,144.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 892,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,435,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.78 % (38,379.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 652.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02301757 BTC (33,034.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 957 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004582 BTC for 65.76 CZK @ 1,435,174 CZK\nFees are 0.23096434 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.786908879376133771868299450 CZK)\nThe limits being 0.10 % (33.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07074016 BTC (63,144.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 892,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,435,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.78 % (38,379.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 652.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02301757 BTC (33,034.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 957 transactions" + } + ] + }, + { + "id": 972, + "type": "message", + "date": "2024-08-24T14:29:06", + "date_unixtime": "1724502546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004570 BTC for 65.77 CZK @ 1,439,076 CZK\nFees are 0.23098587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.829838565022421524663677130 CZK)\nThe limits being 0.10 % (33.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07078586 BTC (63,210.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 892,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.15 % (38,655.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 586.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02306327 BTC (33,189.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 958 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004570 BTC for 65.77 CZK @ 1,439,076 CZK\nFees are 0.23098587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.829838565022421524663677130 CZK)\nThe limits being 0.10 % (33.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07078586 BTC (63,210.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 892,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.15 % (38,655.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 586.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02306327 BTC (33,189.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 958 transactions" + } + ] + }, + { + "id": 973, + "type": "message", + "date": "2024-08-25T02:29:03", + "date_unixtime": "1724545743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004556 BTC for 65.76 CZK @ 1,443,344 CZK\nFees are 0.23096115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.876782223368342495733764134 CZK)\nThe limits being 0.10 % (33.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07083142 BTC (63,276.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 893,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.57 % (38,957.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 520.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02310883 BTC (33,353.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 959 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004556 BTC for 65.76 CZK @ 1,443,344 CZK\nFees are 0.23096115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.876782223368342495733764134 CZK)\nThe limits being 0.10 % (33.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07083142 BTC (63,276.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 893,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.57 % (38,957.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 520.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02310883 BTC (33,353.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 959 transactions" + } + ] + }, + { + "id": 974, + "type": "message", + "date": "2024-08-25T14:29:03", + "date_unixtime": "1724588943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004590 BTC for 65.76 CZK @ 1,432,678 CZK\nFees are 0.23096533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.759461670428011762751936849 CZK)\nThe limits being 0.10 % (33.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07087732 BTC (63,342.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 893,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.31 % (38,201.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 454.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02315473 BTC (33,173.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 960 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004590 BTC for 65.76 CZK @ 1,432,678 CZK\nFees are 0.23096533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.759461670428011762751936849 CZK)\nThe limits being 0.10 % (33.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07087732 BTC (63,342.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 893,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.31 % (38,201.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 454.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02315473 BTC (33,173.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 960 transactions" + } + ] + }, + { + "id": 975, + "type": "message", + "date": "2024-08-26T02:29:03", + "date_unixtime": "1724632143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004559 BTC for 65.76 CZK @ 1,442,516 CZK\nFees are 0.23098064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.867673587060335983522466279 CZK)\nThe limits being 0.10 % (33.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07092291 BTC (63,408.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 894,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.35 % (38,898.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 388.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02320032 BTC (33,466.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 961 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004559 BTC for 65.76 CZK @ 1,442,516 CZK\nFees are 0.23098064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.867673587060335983522466279 CZK)\nThe limits being 0.10 % (33.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07092291 BTC (63,408.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 894,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.35 % (38,898.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 388.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02320032 BTC (33,466.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 961 transactions" + } + ] + }, + { + "id": 976, + "type": "message", + "date": "2024-08-26T14:29:04", + "date_unixtime": "1724675344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004578 BTC for 65.76 CZK @ 1,436,412 CZK\nFees are 0.23096178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.800527724828543522746838664 CZK)\nThe limits being 0.10 % (33.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07096869 BTC (63,474.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 894,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.60 % (38,465.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 322.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02324610 BTC (33,390.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 962 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004578 BTC for 65.76 CZK @ 1,436,412 CZK\nFees are 0.23096178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.800527724828543522746838664 CZK)\nThe limits being 0.10 % (33.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07096869 BTC (63,474.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 894,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.60 % (38,465.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 322.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02324610 BTC (33,390.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 962 transactions" + } + ] + }, + { + "id": 977, + "type": "message", + "date": "2024-08-27T02:29:03", + "date_unixtime": "1724718543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004636 BTC for 65.63 CZK @ 1,415,708 CZK\nFees are 0.23051678 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (31.145576742402454222989166906 CZK)\nThe limits being 0.10 % (32.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07101505 BTC (63,540.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 894,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,415,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.22 % (36,996.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 256.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02329246 BTC (32,975.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 963 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004636 BTC for 65.63 CZK @ 1,415,708 CZK\nFees are 0.23051678 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (31.145576742402454222989166906 CZK)\nThe limits being 0.10 % (32.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07101505 BTC (63,540.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 894,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,415,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.22 % (36,996.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 256.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02329246 BTC (32,975.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 963 transactions" + } + ] + }, + { + "id": 978, + "type": "message", + "date": "2024-08-27T14:29:03", + "date_unixtime": "1724761743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004680 BTC for 65.77 CZK @ 1,405,325 CZK\nFees are 0.23099797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.458578950170131037096657426 CZK)\nThe limits being 0.10 % (32.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07106185 BTC (63,606.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 895,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,405,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.00 % (36,258.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,190.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02333926 BTC (32,799.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 964 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004680 BTC for 65.77 CZK @ 1,405,325 CZK\nFees are 0.23099797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.458578950170131037096657426 CZK)\nThe limits being 0.10 % (32.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07106185 BTC (63,606.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 895,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,405,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.00 % (36,258.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,190.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02333926 BTC (32,799.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 964 transactions" + } + ] + }, + { + "id": 979, + "type": "message", + "date": "2024-08-28T02:29:03", + "date_unixtime": "1724804943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004943 BTC for 65.76 CZK @ 1,330,442 CZK\nFees are 0.23097877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.634864947597428825128638880 CZK)\nThe limits being 0.10 % (31.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07111128 BTC (63,672.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 895,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,330,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 48.59 % (30,937.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,124.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02338869 BTC (31,117.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 965 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004943 BTC for 65.76 CZK @ 1,330,442 CZK\nFees are 0.23097877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.634864947597428825128638880 CZK)\nThe limits being 0.10 % (31.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07111128 BTC (63,672.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 895,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,330,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 48.59 % (30,937.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,124.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02338869 BTC (31,117.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 965 transactions" + } + ] + }, + { + "id": 980, + "type": "message", + "date": "2024-08-28T14:29:03", + "date_unixtime": "1724848143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004834 BTC for 65.76 CZK @ 1,360,292 CZK\nFees are 0.23095340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.963216931266013718225350701 CZK)\nThe limits being 0.10 % (31.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07115962 BTC (63,738.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 895,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.87 % (33,059.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,058.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02343703 BTC (31,881.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 966 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004834 BTC for 65.76 CZK @ 1,360,292 CZK\nFees are 0.23095340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.963216931266013718225350701 CZK)\nThe limits being 0.10 % (31.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07115962 BTC (63,738.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 895,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.87 % (33,059.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,058.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02343703 BTC (31,881.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 966 transactions" + } + ] + }, + { + "id": 981, + "type": "message", + "date": "2024-08-29T02:29:04", + "date_unixtime": "1724891344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004917 BTC for 65.77 CZK @ 1,337,570 CZK\nFees are 0.23099477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.713269790632116451480221908 CZK)\nThe limits being 0.10 % (31.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07120879 BTC (63,804.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 896,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.28 % (31,442.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 992.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02348620 BTC (31,414.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 967 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004917 BTC for 65.77 CZK @ 1,337,570 CZK\nFees are 0.23099477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.713269790632116451480221908 CZK)\nThe limits being 0.10 % (31.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07120879 BTC (63,804.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 896,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.28 % (31,442.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 992.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02348620 BTC (31,414.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 967 transactions" + } + ] + }, + { + "id": 982, + "type": "message", + "date": "2024-08-29T14:29:03", + "date_unixtime": "1724934543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004819 BTC for 65.76 CZK @ 1,364,539 CZK\nFees are 0.23095550 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.009929015823741205428230908 CZK)\nThe limits being 0.10 % (32.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07125698 BTC (63,870.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 896,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,364,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.24 % (33,362.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 926.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02353439 BTC (32,113.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 968 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004819 BTC for 65.76 CZK @ 1,364,539 CZK\nFees are 0.23095550 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.009929015823741205428230908 CZK)\nThe limits being 0.10 % (32.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07125698 BTC (63,870.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 896,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,364,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.24 % (33,362.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 926.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02353439 BTC (32,113.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 968 transactions" + } + ] + }, + { + "id": 983, + "type": "message", + "date": "2024-08-30T02:29:04", + "date_unixtime": "1724977744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004882 BTC for 65.77 CZK @ 1,347,140 CZK\nFees are 0.23099142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (29.637074776585923050560237039 CZK)\nThe limits being 0.10 % (31.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07130580 BTC (63,936.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 896,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.24 % (32,122.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 860.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02358321 BTC (31,769.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 969 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004882 BTC for 65.77 CZK @ 1,347,140 CZK\nFees are 0.23099142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (29.637074776585923050560237039 CZK)\nThe limits being 0.10 % (31.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07130580 BTC (63,936.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 896,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.24 % (32,122.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 860.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02358321 BTC (31,769.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 969 transactions" + } + ] + }, + { + "id": 984, + "type": "message", + "date": "2024-08-30T14:29:04", + "date_unixtime": "1725020944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004869 BTC for 65.77 CZK @ 1,350,725 CZK\nFees are 0.23098939 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.857971386448518703740031680 CZK)\nThe limits being 0.10 % (31.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07135449 BTC (64,002.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 896,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,350,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.59 % (32,378.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 794.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02363190 BTC (31,920.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 970 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004869 BTC for 65.77 CZK @ 1,350,725 CZK\nFees are 0.23098939 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.857971386448518703740031680 CZK)\nThe limits being 0.10 % (31.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07135449 BTC (64,002.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 896,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,350,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.59 % (32,378.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 794.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02363190 BTC (31,920.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 970 transactions" + } + ] + }, + { + "id": 985, + "type": "message", + "date": "2024-08-31T02:29:03", + "date_unixtime": "1725064143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004876 BTC for 65.76 CZK @ 1,348,611 CZK\nFees are 0.23095956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.834725619069924664821606739 CZK)\nThe limits being 0.10 % (31.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07140325 BTC (64,068.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 897,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,348,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.30 % (32,226.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 728.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02368066 BTC (31,936.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 971 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004876 BTC for 65.76 CZK @ 1,348,611 CZK\nFees are 0.23095956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.834725619069924664821606739 CZK)\nThe limits being 0.10 % (31.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07140325 BTC (64,068.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 897,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,348,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.30 % (32,226.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 728.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02368066 BTC (31,936.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 971 transactions" + } + ] + }, + { + "id": 986, + "type": "message", + "date": "2024-08-31T14:29:03", + "date_unixtime": "1725107343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004892 BTC for 65.76 CZK @ 1,344,283 CZK\nFees are 0.23097367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.787109288178211908361617413 CZK)\nThe limits being 0.10 % (31.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07145217 BTC (64,134.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 897,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,344,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.77 % (31,917.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 662.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02372958 BTC (31,899.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 972 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004892 BTC for 65.76 CZK @ 1,344,283 CZK\nFees are 0.23097367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.787109288178211908361617413 CZK)\nThe limits being 0.10 % (31.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07145217 BTC (64,134.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 897,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,344,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.77 % (31,917.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 662.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02372958 BTC (31,899.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 972 transactions" + } + ] + }, + { + "id": 987, + "type": "message", + "date": "2024-09-01T02:29:05", + "date_unixtime": "1725150545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004903 BTC for 65.76 CZK @ 1,341,267 CZK\nFees are 0.23097374 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.753938857075902300341625034 CZK)\nThe limits being 0.10 % (31.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07150120 BTC (64,200.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 897,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.38 % (31,701.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 596.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02377861 BTC (31,893.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 973 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004903 BTC for 65.76 CZK @ 1,341,267 CZK\nFees are 0.23097374 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.753938857075902300341625034 CZK)\nThe limits being 0.10 % (31.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07150120 BTC (64,200.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 897,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.38 % (31,701.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 596.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02377861 BTC (31,893.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 973 transactions" + } + ] + }, + { + "id": 988, + "type": "message", + "date": "2024-09-01T14:29:03", + "date_unixtime": "1725193743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004976 BTC for 65.76 CZK @ 1,321,615 CZK\nFees are 0.23097813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.537768654964857724651821518 CZK)\nThe limits being 0.10 % (31.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07155096 BTC (64,266.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 898,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,321,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.14 % (30,296.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 530.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02382837 BTC (31,491.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 974 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004976 BTC for 65.76 CZK @ 1,321,615 CZK\nFees are 0.23097813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.537768654964857724651821518 CZK)\nThe limits being 0.10 % (31.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07155096 BTC (64,266.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 898,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,321,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.14 % (30,296.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 530.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02382837 BTC (31,491.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 974 transactions" + } + ] + }, + { + "id": 989, + "type": "message", + "date": "2024-09-02T02:29:04", + "date_unixtime": "1725236944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005016 BTC for 65.77 CZK @ 1,311,130 CZK\nFees are 0.23098767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.422433034816737908548151645 CZK)\nThe limits being 0.10 % (31.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07160112 BTC (64,332.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 898,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,311,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.93 % (29,546.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 464.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02387853 BTC (31,307.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 975 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005016 BTC for 65.77 CZK @ 1,311,130 CZK\nFees are 0.23098767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.422433034816737908548151645 CZK)\nThe limits being 0.10 % (31.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07160112 BTC (64,332.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 898,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,311,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.93 % (29,546.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 464.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02387853 BTC (31,307.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 975 transactions" + } + ] + }, + { + "id": 990, + "type": "message", + "date": "2024-09-02T14:29:03", + "date_unixtime": "1725280143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004954 BTC for 65.76 CZK @ 1,327,451 CZK\nFees are 0.23097228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.601959174781683566540121284 CZK)\nThe limits being 0.10 % (31.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07165066 BTC (64,398.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 898,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.69 % (30,714.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 398.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02392807 BTC (31,763.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 976 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004954 BTC for 65.76 CZK @ 1,327,451 CZK\nFees are 0.23097228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.601959174781683566540121284 CZK)\nThe limits being 0.10 % (31.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07165066 BTC (64,398.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 898,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.69 % (30,714.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 398.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02392807 BTC (31,763.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 976 transactions" + } + ] + }, + { + "id": 991, + "type": "message", + "date": "2024-09-03T02:29:03", + "date_unixtime": "1725323343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004894 BTC for 65.76 CZK @ 1,343,620 CZK\nFees are 0.23095419 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.779820174750042200072529147 CZK)\nThe limits being 0.10 % (32.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07169960 BTC (64,464.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 899,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,343,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.44 % (31,872.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 332.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02397701 BTC (32,215.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 977 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004894 BTC for 65.76 CZK @ 1,343,620 CZK\nFees are 0.23095419 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.779820174750042200072529147 CZK)\nThe limits being 0.10 % (32.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07169960 BTC (64,464.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 899,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,343,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.44 % (31,872.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 332.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02397701 BTC (32,215.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 977 transactions" + } + ] + }, + { + "id": 992, + "type": "message", + "date": "2024-09-03T14:29:03", + "date_unixtime": "1725366543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004872 BTC for 65.77 CZK @ 1,349,936 CZK\nFees are 0.23099671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.849292819344118246236693740 CZK)\nThe limits being 0.10 % (32.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07174832 BTC (64,530.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 899,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,349,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.09 % (32,325.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 266.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02402573 BTC (32,433.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 978 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004872 BTC for 65.77 CZK @ 1,349,936 CZK\nFees are 0.23099671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.849292819344118246236693740 CZK)\nThe limits being 0.10 % (32.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07174832 BTC (64,530.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 899,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,349,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.09 % (32,325.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 266.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02402573 BTC (32,433.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 978 transactions" + } + ] + }, + { + "id": 993, + "type": "message", + "date": "2024-09-04T02:29:04", + "date_unixtime": "1725409744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004985 BTC for 65.77 CZK @ 1,319,288 CZK\nFees are 0.23098833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.512163023000241381843587564 CZK)\nThe limits being 0.10 % (31.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07179817 BTC (64,596.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 899,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,319,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.64 % (30,126.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 200.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02407558 BTC (31,762.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 979 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004985 BTC for 65.77 CZK @ 1,319,288 CZK\nFees are 0.23098833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.512163023000241381843587564 CZK)\nThe limits being 0.10 % (31.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07179817 BTC (64,596.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 899,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,319,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.64 % (30,126.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 200.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02407558 BTC (31,762.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 979 transactions" + } + ] + }, + { + "id": 994, + "type": "message", + "date": "2024-09-04T14:29:03", + "date_unixtime": "1725452943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005097 BTC for 65.77 CZK @ 1,290,321 CZK\nFees are 0.23099239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.193526181613323350615400542 CZK)\nThe limits being 0.10 % (31.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07184914 BTC (64,662.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 899,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,290,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.37 % (28,046.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 134.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02412655 BTC (31,130.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 980 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005097 BTC for 65.77 CZK @ 1,290,321 CZK\nFees are 0.23099239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.193526181613323350615400542 CZK)\nThe limits being 0.10 % (31.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07184914 BTC (64,662.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 899,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,290,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.37 % (28,046.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 134.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02412655 BTC (31,130.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 980 transactions" + } + ] + }, + { + "id": 995, + "type": "message", + "date": "2024-09-05T02:29:03", + "date_unixtime": "1725496143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004976 BTC for 65.76 CZK @ 1,321,598 CZK\nFees are 0.23097515 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.537581188108501274478232937 CZK)\nThe limits being 0.10 % (31.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07189890 BTC (64,728.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 900,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,321,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.80 % (30,293.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 68.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02417631 BTC (31,951.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 981 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004976 BTC for 65.76 CZK @ 1,321,598 CZK\nFees are 0.23097515 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.537581188108501274478232937 CZK)\nThe limits being 0.10 % (31.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07189890 BTC (64,728.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 900,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,321,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.80 % (30,293.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 68.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02417631 BTC (31,951.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 981 transactions" + } + ] + }, + { + "id": 996, + "type": "message", + "date": "2024-09-05T14:29:03", + "date_unixtime": "1725539343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005139 BTC for 65.76 CZK @ 1,279,668 CZK\nFees are 0.23097309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.076348986564149431067930855 CZK)\nThe limits being 0.10 % (31.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07195029 BTC (64,794.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 900,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,279,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 42.10 % (27,278.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,002.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02422770 BTC (31,003.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 982 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005139 BTC for 65.76 CZK @ 1,279,668 CZK\nFees are 0.23097309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (14.076348986564149431067930855 CZK)\nThe limits being 0.10 % (31.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07195029 BTC (64,794.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 900,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,279,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 42.10 % (27,278.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,002.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02422770 BTC (31,003.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 982 transactions" + } + ] + }, + { + "id": 997, + "type": "message", + "date": "2024-09-06T02:29:03", + "date_unixtime": "1725582543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005168 BTC for 65.76 CZK @ 1,272,507 CZK\nFees are 0.23097672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.997580237550924704709985638 CZK)\nThe limits being 0.10 % (30.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07200197 BTC (64,860.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 900,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,272,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 41.26 % (26,762.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 936.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02427938 BTC (30,895.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 983 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005168 BTC for 65.76 CZK @ 1,272,507 CZK\nFees are 0.23097672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.997580237550924704709985638 CZK)\nThe limits being 0.10 % (30.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07200197 BTC (64,860.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 900,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,272,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 41.26 % (26,762.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 936.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02427938 BTC (30,895.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 983 transactions" + } + ] + }, + { + "id": 998, + "type": "message", + "date": "2024-09-06T14:29:03", + "date_unixtime": "1725625743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005199 BTC for 65.76 CZK @ 1,264,857 CZK\nFees are 0.23096531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.913430117497012044687218509 CZK)\nThe limits being 0.10 % (30.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07205396 BTC (64,926.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 901,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,264,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 40.37 % (26,211.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 870.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02433137 BTC (30,775.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 984 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005199 BTC for 65.76 CZK @ 1,264,857 CZK\nFees are 0.23096531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.913430117497012044687218509 CZK)\nThe limits being 0.10 % (30.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07205396 BTC (64,926.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 901,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,264,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 40.37 % (26,211.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 870.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02433137 BTC (30,775.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 984 transactions" + } + ] + }, + { + "id": 999, + "type": "message", + "date": "2024-09-07T02:29:04", + "date_unixtime": "1725668944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005362 BTC for 65.77 CZK @ 1,226,582 CZK\nFees are 0.23099835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.492403828859342915238663930 CZK)\nThe limits being 0.10 % (29.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07210758 BTC (64,992.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 901,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,226,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.09 % (23,453.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 804.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02438499 BTC (29,910.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 985 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005362 BTC for 65.77 CZK @ 1,226,582 CZK\nFees are 0.23099835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.492403828859342915238663930 CZK)\nThe limits being 0.10 % (29.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07210758 BTC (64,992.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 901,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,226,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.09 % (23,453.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 804.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02438499 BTC (29,910.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 985 transactions" + } + ] + }, + { + "id": 1000, + "type": "message", + "date": "2024-09-07T14:29:03", + "date_unixtime": "1725712143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005316 BTC for 65.77 CZK @ 1,237,134 CZK\nFees are 0.23098686 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.608478284431877443245105636 CZK)\nThe limits being 0.10 % (30.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07216074 BTC (65,058.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 901,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,237,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.22 % (24,214.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 738.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02443815 BTC (30,233.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 986 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005316 BTC for 65.77 CZK @ 1,237,134 CZK\nFees are 0.23098686 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (13.608478284431877443245105636 CZK)\nThe limits being 0.10 % (30.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07216074 BTC (65,058.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 901,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,237,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.22 % (24,214.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 738.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02443815 BTC (30,233.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 986 transactions" + } + ] + }, + { + "id": 1001, + "type": "message", + "date": "2024-09-08T02:29:04", + "date_unixtime": "1725755344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005353 BTC for 65.76 CZK @ 1,228,533 CZK\nFees are 0.23097740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.513863157633133649264748795 CZK)\nThe limits being 0.10 % (30.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07221427 BTC (65,124.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 901,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,228,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.23 % (23,593.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 672.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02449168 BTC (30,088.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 987 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005353 BTC for 65.76 CZK @ 1,228,533 CZK\nFees are 0.23097740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.513863157633133649264748795 CZK)\nThe limits being 0.10 % (30.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07221427 BTC (65,124.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 901,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,228,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.23 % (23,593.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 672.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02449168 BTC (30,088.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 987 transactions" + } + ] + }, + { + "id": 1002, + "type": "message", + "date": "2024-09-08T14:29:03", + "date_unixtime": "1725798543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 65.77 CZK @ 1,235,757 CZK\nFees are 0.23099010 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.593326632060243113776715730 CZK)\nThe limits being 0.10 % (30.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07226749 BTC (65,190.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 902,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,235,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.99 % (24,114.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 606.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02454490 BTC (30,331.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 988 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 65.77 CZK @ 1,235,757 CZK\nFees are 0.23099010 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.593326632060243113776715730 CZK)\nThe limits being 0.10 % (30.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07226749 BTC (65,190.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 902,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,235,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.99 % (24,114.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 606.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02454490 BTC (30,331.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 988 transactions" + } + ] + }, + { + "id": 1003, + "type": "message", + "date": "2024-09-09T02:29:04", + "date_unixtime": "1725841744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005267 BTC for 65.77 CZK @ 1,248,643 CZK\nFees are 0.23098673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.735072884736344760303055501 CZK)\nThe limits being 0.10 % (30.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07232016 BTC (65,256.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 902,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,248,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.38 % (25,045.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 540.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02459757 BTC (30,713.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 989 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005267 BTC for 65.77 CZK @ 1,248,643 CZK\nFees are 0.23098673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.735072884736344760303055501 CZK)\nThe limits being 0.10 % (30.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07232016 BTC (65,256.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 902,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,248,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.38 % (25,045.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 540.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02459757 BTC (30,713.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 989 transactions" + } + ] + }, + { + "id": 1004, + "type": "message", + "date": "2024-09-09T14:29:03", + "date_unixtime": "1725884943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005245 BTC for 65.76 CZK @ 1,253,741 CZK\nFees are 0.23096099 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.791147233111184258337002569 CZK)\nThe limits being 0.10 % (30.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07237261 BTC (65,322.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 902,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,253,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.91 % (25,414.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 474.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02465002 BTC (30,904.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 990 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005245 BTC for 65.76 CZK @ 1,253,741 CZK\nFees are 0.23096099 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (13.791147233111184258337002569 CZK)\nThe limits being 0.10 % (30.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07237261 BTC (65,322.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 902,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,253,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.91 % (25,414.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 474.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02465002 BTC (30,904.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 990 transactions" + } + ] + }, + { + "id": 1005, + "type": "message", + "date": "2024-09-10T02:29:03", + "date_unixtime": "1725928143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005087 BTC for 65.77 CZK @ 1,292,821 CZK\nFees are 0.23098591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.221028527341252735535709546 CZK)\nThe limits being 0.10 % (31.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07242348 BTC (65,388.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 902,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,292,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.19 % (28,242.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 408.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02470089 BTC (31,933.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 991 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005087 BTC for 65.77 CZK @ 1,292,821 CZK\nFees are 0.23098591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.221028527341252735535709546 CZK)\nThe limits being 0.10 % (31.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07242348 BTC (65,388.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 902,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,292,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.19 % (28,242.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 408.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02470089 BTC (31,933.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 991 transactions" + } + ] + }, + { + "id": 1006, + "type": "message", + "date": "2024-09-10T14:29:04", + "date_unixtime": "1725971344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005034 BTC for 65.76 CZK @ 1,306,266 CZK\nFees are 0.23095657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.368928071574677346015208193 CZK)\nThe limits being 0.10 % (32.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07247382 BTC (65,454.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 903,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,306,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.64 % (29,215.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 342.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02475123 BTC (32,331.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 992 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005034 BTC for 65.76 CZK @ 1,306,266 CZK\nFees are 0.23095657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.368928071574677346015208193 CZK)\nThe limits being 0.10 % (32.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07247382 BTC (65,454.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 903,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,306,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.64 % (29,215.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 342.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02475123 BTC (32,331.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 992 transactions" + } + ] + }, + { + "id": 1007, + "type": "message", + "date": "2024-09-11T02:29:03", + "date_unixtime": "1726014543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005009 BTC for 65.76 CZK @ 1,312,929 CZK\nFees are 0.23098172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.442216199381223414197245158 CZK)\nThe limits being 0.10 % (32.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07252391 BTC (65,520.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 903,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,312,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.33 % (29,698.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 276.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02480132 BTC (32,562.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 993 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005009 BTC for 65.76 CZK @ 1,312,929 CZK\nFees are 0.23098172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.442216199381223414197245158 CZK)\nThe limits being 0.10 % (32.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07252391 BTC (65,520.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 903,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,312,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.33 % (29,698.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 276.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02480132 BTC (32,562.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 993 transactions" + } + ] + }, + { + "id": 1008, + "type": "message", + "date": "2024-09-11T14:29:03", + "date_unixtime": "1726057743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005077 BTC for 65.76 CZK @ 1,295,267 CZK\nFees are 0.23096801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.247935393740580412911712689 CZK)\nThe limits being 0.10 % (32.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07257468 BTC (65,586.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 903,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,295,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 43.33 % (28,417.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 210.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02485209 BTC (32,190.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 994 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005077 BTC for 65.76 CZK @ 1,295,267 CZK\nFees are 0.23096801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.247935393740580412911712689 CZK)\nThe limits being 0.10 % (32.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07257468 BTC (65,586.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 903,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,295,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 43.33 % (28,417.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 210.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02485209 BTC (32,190.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 994 transactions" + } + ] + }, + { + "id": 1009, + "type": "message", + "date": "2024-09-12T02:29:03", + "date_unixtime": "1726100943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004998 BTC for 65.76 CZK @ 1,315,730 CZK\nFees are 0.23096616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (28.946053530530298816088468273 CZK)\nThe limits being 0.10 % (32.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07262466 BTC (65,652.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 903,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,315,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.55 % (29,902.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 144.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02490207 BTC (32,764.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 995 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004998 BTC for 65.76 CZK @ 1,315,730 CZK\nFees are 0.23096616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (28.946053530530298816088468273 CZK)\nThe limits being 0.10 % (32.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07262466 BTC (65,652.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 903,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,315,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.55 % (29,902.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 144.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02490207 BTC (32,764.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 995 transactions" + } + ] + }, + { + "id": 1010, + "type": "message", + "date": "2024-09-12T14:29:03", + "date_unixtime": "1726144143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004945 BTC for 65.76 CZK @ 1,329,823 CZK\nFees are 0.23096463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.628050012821656054164317709 CZK)\nThe limits being 0.10 % (33.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07267411 BTC (65,718.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 904,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.06 % (30,925.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,078.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02495152 BTC (33,181.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 996 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004945 BTC for 65.76 CZK @ 1,329,823 CZK\nFees are 0.23096463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.628050012821656054164317709 CZK)\nThe limits being 0.10 % (33.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07267411 BTC (65,718.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 904,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.06 % (30,925.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,078.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02495152 BTC (33,181.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 996 transactions" + } + ] + }, + { + "id": 1011, + "type": "message", + "date": "2024-09-13T02:29:03", + "date_unixtime": "1726187343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004975 BTC for 65.76 CZK @ 1,321,806 CZK\nFees are 0.23096499 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.539863860608473358321252500 CZK)\nThe limits being 0.10 % (33.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07272386 BTC (65,784.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 904,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,321,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.12 % (30,342.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,012.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02500127 BTC (33,046.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 997 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004975 BTC for 65.76 CZK @ 1,321,806 CZK\nFees are 0.23096499 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.539863860608473358321252500 CZK)\nThe limits being 0.10 % (33.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07272386 BTC (65,784.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 904,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,321,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.12 % (30,342.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,012.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02500127 BTC (33,046.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 997 transactions" + } + ] + }, + { + "id": 1012, + "type": "message", + "date": "2024-09-13T14:29:03", + "date_unixtime": "1726230543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005004 BTC for 65.77 CZK @ 1,314,273 CZK\nFees are 0.23098742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.457003947813348723114184288 CZK)\nThe limits being 0.10 % (32.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07277390 BTC (65,850.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 904,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,314,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.25 % (29,794.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 946.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02505131 BTC (32,924.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 998 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005004 BTC for 65.77 CZK @ 1,314,273 CZK\nFees are 0.23098742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.457003947813348723114184288 CZK)\nThe limits being 0.10 % (32.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07277390 BTC (65,850.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 904,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,314,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.25 % (29,794.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 946.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02505131 BTC (32,924.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 998 transactions" + } + ] + }, + { + "id": 1013, + "type": "message", + "date": "2024-09-14T02:29:03", + "date_unixtime": "1726273743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004777 BTC for 65.76 CZK @ 1,376,593 CZK\nFees are 0.23096502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.142522521186314718664702847 CZK)\nThe limits being 0.10 % (34.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07282167 BTC (65,916.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 905,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,376,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.08 % (34,329.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 880.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02509908 BTC (34,551.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 999 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004777 BTC for 65.76 CZK @ 1,376,593 CZK\nFees are 0.23096502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.142522521186314718664702847 CZK)\nThe limits being 0.10 % (34.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07282167 BTC (65,916.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 905,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,376,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.08 % (34,329.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 880.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02509908 BTC (34,551.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 999 transactions" + } + ] + }, + { + "id": 1014, + "type": "message", + "date": "2024-09-14T14:29:03", + "date_unixtime": "1726316943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004833 BTC for 65.77 CZK @ 1,360,825 CZK\nFees are 0.23099598 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.969072484046371529565824394 CZK)\nThe limits being 0.10 % (34.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07287000 BTC (65,982.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 905,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.29 % (33,181.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 814.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02514741 BTC (34,221.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1000 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004833 BTC for 65.77 CZK @ 1,360,825 CZK\nFees are 0.23099598 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.969072484046371529565824394 CZK)\nThe limits being 0.10 % (34.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07287000 BTC (65,982.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 905,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.29 % (33,181.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 814.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02514741 BTC (34,221.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1000 transactions" + } + ] + }, + { + "id": 1015, + "type": "message", + "date": "2024-09-15T02:29:04", + "date_unixtime": "1726360144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004816 BTC for 65.76 CZK @ 1,365,391 CZK\nFees are 0.23095585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (30.038604618883740794263267932 CZK)\nThe limits being 0.10 % (34.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07291816 BTC (66,048.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 905,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,365,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.74 % (33,513.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 748.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02519557 BTC (34,401.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1001 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004816 BTC for 65.76 CZK @ 1,365,391 CZK\nFees are 0.23095585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (30.038604618883740794263267932 CZK)\nThe limits being 0.10 % (34.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07291816 BTC (66,048.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 905,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,365,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.74 % (33,513.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 748.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02519557 BTC (34,401.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1001 transactions" + } + ] + }, + { + "id": 1016, + "type": "message", + "date": "2024-09-15T14:29:03", + "date_unixtime": "1726403343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004822 BTC for 65.76 CZK @ 1,363,810 CZK\nFees are 0.23097584 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.001912092826496726409867413 CZK)\nThe limits being 0.10 % (34.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07296638 BTC (66,114.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 906,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.52 % (33,398.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 682.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02524379 BTC (34,427.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1002 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004822 BTC for 65.76 CZK @ 1,363,810 CZK\nFees are 0.23097584 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.001912092826496726409867413 CZK)\nThe limits being 0.10 % (34.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07296638 BTC (66,114.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 906,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.52 % (33,398.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 682.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02524379 BTC (34,427.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1002 transactions" + } + ] + }, + { + "id": 1017, + "type": "message", + "date": "2024-09-16T02:29:03", + "date_unixtime": "1726446543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004909 BTC for 65.76 CZK @ 1,339,527 CZK\nFees are 0.23095633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.734795282512428744251505959 CZK)\nThe limits being 0.10 % (33.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07301547 BTC (66,180.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 906,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,339,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.79 % (31,626.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 616.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02529288 BTC (33,880.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1003 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004909 BTC for 65.76 CZK @ 1,339,527 CZK\nFees are 0.23095633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.734795282512428744251505959 CZK)\nThe limits being 0.10 % (33.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07301547 BTC (66,180.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 906,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,339,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.79 % (31,626.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 616.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02529288 BTC (33,880.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1003 transactions" + } + ] + }, + { + "id": 1018, + "type": "message", + "date": "2024-09-16T14:29:03", + "date_unixtime": "1726489743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004946 BTC for 65.77 CZK @ 1,329,743 CZK\nFees are 0.23099740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.627167820432771591383252026 CZK)\nThe limits being 0.10 % (33.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07306493 BTC (66,246.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 906,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 46.66 % (30,911.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 550.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02534234 BTC (33,698.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1004 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004946 BTC for 65.77 CZK @ 1,329,743 CZK\nFees are 0.23099740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.627167820432771591383252026 CZK)\nThe limits being 0.10 % (33.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07306493 BTC (66,246.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 906,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 46.66 % (30,911.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 550.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02534234 BTC (33,698.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1004 transactions" + } + ] + }, + { + "id": 1019, + "type": "message", + "date": "2024-09-17T02:29:05", + "date_unixtime": "1726532945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004984 BTC for 65.77 CZK @ 1,319,606 CZK\nFees are 0.23099780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.515669736580075674145306836 CZK)\nThe limits being 0.10 % (33.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07311477 BTC (66,312.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 906,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,319,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 45.50 % (30,170.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 484.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02539218 BTC (33,507.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1005 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004984 BTC for 65.77 CZK @ 1,319,606 CZK\nFees are 0.23099780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.515669736580075674145306836 CZK)\nThe limits being 0.10 % (33.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07311477 BTC (66,312.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 906,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,319,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 45.50 % (30,170.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 484.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02539218 BTC (33,507.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1005 transactions" + } + ] + }, + { + "id": 1020, + "type": "message", + "date": "2024-09-17T14:29:03", + "date_unixtime": "1726576143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004900 BTC for 65.76 CZK @ 1,342,142 CZK\nFees are 0.23098303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.763565779974172030546149701 CZK)\nThe limits being 0.10 % (34.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07316377 BTC (66,378.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 907,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,342,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 47.93 % (31,818.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 418.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02544118 BTC (34,145.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1006 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004900 BTC for 65.76 CZK @ 1,342,142 CZK\nFees are 0.23098303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.763565779974172030546149701 CZK)\nThe limits being 0.10 % (34.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07316377 BTC (66,378.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 907,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,342,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 47.93 % (31,818.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 418.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02544118 BTC (34,145.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1006 transactions" + } + ] + }, + { + "id": 1021, + "type": "message", + "date": "2024-09-18T02:29:03", + "date_unixtime": "1726619343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004831 BTC for 65.76 CZK @ 1,361,171 CZK\nFees are 0.23095907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.972876938787107883739967452 CZK)\nThe limits being 0.10 % (34.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07321208 BTC (66,444.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 907,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,361,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.98 % (33,210.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 352.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02548949 BTC (34,695.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1007 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004831 BTC for 65.76 CZK @ 1,361,171 CZK\nFees are 0.23095907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.972876938787107883739967452 CZK)\nThe limits being 0.10 % (34.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07321208 BTC (66,444.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 907,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,361,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.98 % (33,210.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 352.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02548949 BTC (34,695.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1007 transactions" + } + ] + }, + { + "id": 1022, + "type": "message", + "date": "2024-09-18T14:29:03", + "date_unixtime": "1726662543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004859 BTC for 65.76 CZK @ 1,353,404 CZK\nFees are 0.23097229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.887447638554214396555870055 CZK)\nThe limits being 0.10 % (34.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07326067 BTC (66,510.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 907,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,353,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 49.08 % (32,641.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 286.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02553808 BTC (34,563.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1008 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004859 BTC for 65.76 CZK @ 1,353,404 CZK\nFees are 0.23097229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (14.887447638554214396555870055 CZK)\nThe limits being 0.10 % (34.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07326067 BTC (66,510.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 907,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,353,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 49.08 % (32,641.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 286.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02553808 BTC (34,563.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1008 transactions" + } + ] + }, + { + "id": 1023, + "type": "message", + "date": "2024-09-19T02:29:04", + "date_unixtime": "1726705744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004665 BTC for 65.76 CZK @ 1,409,675 CZK\nFees are 0.23097029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.506426857339077430493807579 CZK)\nThe limits being 0.10 % (36.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07330732 BTC (66,576.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 908,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,409,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.22 % (36,763.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 220.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02558473 BTC (36,066.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1009 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004665 BTC for 65.76 CZK @ 1,409,675 CZK\nFees are 0.23097029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.506426857339077430493807579 CZK)\nThe limits being 0.10 % (36.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07330732 BTC (66,576.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 908,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,409,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.22 % (36,763.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 220.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02558473 BTC (36,066.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1009 transactions" + } + ] + }, + { + "id": 1024, + "type": "message", + "date": "2024-09-19T14:29:05", + "date_unixtime": "1726748945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004628 BTC for 65.76 CZK @ 1,420,891 CZK\nFees are 0.23096148 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.629801453770920189018642186 CZK)\nThe limits being 0.10 % (36.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07335360 BTC (66,641.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 908,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.40 % (37,585.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 154.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02563101 BTC (36,418.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1010 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004628 BTC for 65.76 CZK @ 1,420,891 CZK\nFees are 0.23096148 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.629801453770920189018642186 CZK)\nThe limits being 0.10 % (36.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07335360 BTC (66,641.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 908,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.40 % (37,585.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 154.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02563101 BTC (36,418.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1010 transactions" + } + ] + }, + { + "id": 1025, + "type": "message", + "date": "2024-09-20T02:29:03", + "date_unixtime": "1726792143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004635 BTC for 65.76 CZK @ 1,418,703 CZK\nFees are 0.23095455 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (31.211457261827401290735930177 CZK)\nThe limits being 0.10 % (36.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07339995 BTC (66,707.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 908,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.10 % (37,424.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 88.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02567736 BTC (36,428.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1011 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004635 BTC for 65.76 CZK @ 1,418,703 CZK\nFees are 0.23095455 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (31.211457261827401290735930177 CZK)\nThe limits being 0.10 % (36.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07339995 BTC (66,707.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 908,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.10 % (37,424.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 88.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02567736 BTC (36,428.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1011 transactions" + } + ] + }, + { + "id": 1026, + "type": "message", + "date": "2024-09-20T14:29:03", + "date_unixtime": "1726835343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004601 BTC for 65.76 CZK @ 1,429,233 CZK\nFees are 0.23096205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.721560482670574744534100221 CZK)\nThe limits being 0.10 % (36.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07344596 BTC (66,773.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 909,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,429,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.20 % (38,197.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 522.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02572337 BTC (36,764.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1012 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004601 BTC for 65.76 CZK @ 1,429,233 CZK\nFees are 0.23096205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.721560482670574744534100221 CZK)\nThe limits being 0.10 % (36.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07344596 BTC (66,773.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 909,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,429,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.20 % (38,197.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 522.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02572337 BTC (36,764.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1012 transactions" + } + ] + }, + { + "id": 1027, + "type": "message", + "date": "2024-09-21T02:29:03", + "date_unixtime": "1726878543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004621 BTC for 65.76 CZK @ 1,423,100 CZK\nFees are 0.23097058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (31.308189648715968897864183862 CZK)\nThe limits being 0.10 % (36.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07349217 BTC (66,839.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 909,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,423,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.47 % (37,746.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 456.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02576958 BTC (36,672.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1013 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004621 BTC for 65.76 CZK @ 1,423,100 CZK\nFees are 0.23097058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (31.308189648715968897864183862 CZK)\nThe limits being 0.10 % (36.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07349217 BTC (66,839.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 909,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,423,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.47 % (37,746.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 456.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02576958 BTC (36,672.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1013 transactions" + } + ] + }, + { + "id": 1028, + "type": "message", + "date": "2024-09-21T14:29:03", + "date_unixtime": "1726921743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004625 BTC for 65.76 CZK @ 1,421,824 CZK\nFees are 0.23096337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.640067967519088595321779178 CZK)\nThe limits being 0.10 % (36.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07353842 BTC (66,905.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 909,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.28 % (37,652.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 390.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02581583 BTC (36,705.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1014 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004625 BTC for 65.76 CZK @ 1,421,824 CZK\nFees are 0.23096337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.640067967519088595321779178 CZK)\nThe limits being 0.10 % (36.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07353842 BTC (66,905.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 909,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.28 % (37,652.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 390.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02581583 BTC (36,705.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1014 transactions" + } + ] + }, + { + "id": 1029, + "type": "message", + "date": "2024-09-22T02:29:03", + "date_unixtime": "1726964943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004618 BTC for 65.76 CZK @ 1,424,088 CZK\nFees are 0.23098095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.664967844894536510692437879 CZK)\nThe limits being 0.10 % (36.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07358460 BTC (66,971.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 910,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,424,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.47 % (37,819.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 324.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02586201 BTC (36,829.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1015 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004618 BTC for 65.76 CZK @ 1,424,088 CZK\nFees are 0.23098095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.664967844894536510692437879 CZK)\nThe limits being 0.10 % (36.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07358460 BTC (66,971.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 910,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,424,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.47 % (37,819.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 324.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02586201 BTC (36,829.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1015 transactions" + } + ] + }, + { + "id": 1030, + "type": "message", + "date": "2024-09-22T14:29:04", + "date_unixtime": "1727008144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004642 BTC for 65.76 CZK @ 1,416,610 CZK\nFees are 0.23096224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.582714437856129140425572109 CZK)\nThe limits being 0.10 % (36.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07363102 BTC (67,037.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 910,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.59 % (37,268.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 258.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02590843 BTC (36,702.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1016 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004642 BTC for 65.76 CZK @ 1,416,610 CZK\nFees are 0.23096224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.582714437856129140425572109 CZK)\nThe limits being 0.10 % (36.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07363102 BTC (67,037.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 910,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.59 % (37,268.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 258.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02590843 BTC (36,702.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1016 transactions" + } + ] + }, + { + "id": 1031, + "type": "message", + "date": "2024-09-23T02:29:03", + "date_unixtime": "1727051343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004621 BTC for 65.76 CZK @ 1,423,114 CZK\nFees are 0.23097286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.654249209998288828313195527 CZK)\nThe limits being 0.10 % (36.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07367723 BTC (67,103.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 910,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,423,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.25 % (37,747.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 192.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02595464 BTC (36,936.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1017 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004621 BTC for 65.76 CZK @ 1,423,114 CZK\nFees are 0.23097286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.654249209998288828313195527 CZK)\nThe limits being 0.10 % (36.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07367723 BTC (67,103.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 910,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,423,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.25 % (37,747.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 192.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02595464 BTC (36,936.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1017 transactions" + } + ] + }, + { + "id": 1032, + "type": "message", + "date": "2024-09-23T14:29:03", + "date_unixtime": "1727094543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004570 BTC for 65.77 CZK @ 1,439,087 CZK\nFees are 0.23098764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.829959864980227845865510102 CZK)\nThe limits being 0.10 % (37.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07372293 BTC (67,169.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 911,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.95 % (38,923.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 126.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02600034 BTC (37,416.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1018 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004570 BTC for 65.77 CZK @ 1,439,087 CZK\nFees are 0.23098764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.829959864980227845865510102 CZK)\nThe limits being 0.10 % (37.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07372293 BTC (67,169.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 911,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.95 % (38,923.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 126.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02600034 BTC (37,416.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1018 transactions" + } + ] + }, + { + "id": 1033, + "type": "message", + "date": "2024-09-24T02:29:03", + "date_unixtime": "1727137743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004575 BTC for 65.76 CZK @ 1,437,421 CZK\nFees are 0.23097264 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.623264641514262921305485446 CZK)\nThe limits being 0.10 % (37.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07376868 BTC (67,235.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 911,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.71 % (38,800.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 60.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02604609 BTC (37,439.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1019 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004575 BTC for 65.76 CZK @ 1,437,421 CZK\nFees are 0.23097264 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.623264641514262921305485446 CZK)\nThe limits being 0.10 % (37.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07376868 BTC (67,235.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 911,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.71 % (38,800.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 60.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02604609 BTC (37,439.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1019 transactions" + } + ] + }, + { + "id": 1034, + "type": "message", + "date": "2024-09-24T14:29:04", + "date_unixtime": "1727180944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004563 BTC for 65.77 CZK @ 1,441,363 CZK\nFees are 0.23099854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.854992073218204834470979885 CZK)\nThe limits being 0.10 % (37.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07381431 BTC (67,301.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 911,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.08 % (39,091.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 994.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02609172 BTC (37,607.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1020 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004563 BTC for 65.77 CZK @ 1,441,363 CZK\nFees are 0.23099854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.854992073218204834470979885 CZK)\nThe limits being 0.10 % (37.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07381431 BTC (67,301.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 911,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.08 % (39,091.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 994.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02609172 BTC (37,607.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1020 transactions" + } + ] + }, + { + "id": 1035, + "type": "message", + "date": "2024-09-25T02:29:03", + "date_unixtime": "1727224143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004556 BTC for 65.77 CZK @ 1,443,578 CZK\nFees are 0.23099869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.879362636829043912592143476 CZK)\nThe limits being 0.10 % (37.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07385987 BTC (67,367.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 912,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.27 % (39,254.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 928.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02613728 BTC (37,731.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1021 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004556 BTC for 65.77 CZK @ 1,443,578 CZK\nFees are 0.23099869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.879362636829043912592143476 CZK)\nThe limits being 0.10 % (37.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07385987 BTC (67,367.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 912,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.27 % (39,254.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 928.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02613728 BTC (37,731.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1021 transactions" + } + ] + }, + { + "id": 1036, + "type": "message", + "date": "2024-09-25T14:29:04", + "date_unixtime": "1727267344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004574 BTC for 65.76 CZK @ 1,437,772 CZK\nFees are 0.23097852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.815491911453768391303807901 CZK)\nThe limits being 0.10 % (37.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07390561 BTC (67,433.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 912,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.58 % (38,825.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 862.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02618302 BTC (37,645.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1022 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004574 BTC for 65.76 CZK @ 1,437,772 CZK\nFees are 0.23097852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.815491911453768391303807901 CZK)\nThe limits being 0.10 % (37.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07390561 BTC (67,433.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 912,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.58 % (38,825.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 862.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02618302 BTC (37,645.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1022 transactions" + } + ] + }, + { + "id": 1037, + "type": "message", + "date": "2024-09-26T02:29:09", + "date_unixtime": "1727310549", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004582 BTC for 65.76 CZK @ 1,435,270 CZK\nFees are 0.23097982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.787967509613341519435359046 CZK)\nThe limits being 0.10 % (37.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07395143 BTC (67,499.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 912,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,435,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.25 % (38,640.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 796.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02622884 BTC (37,645.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1023 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004582 BTC for 65.76 CZK @ 1,435,270 CZK\nFees are 0.23097982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.787967509613341519435359046 CZK)\nThe limits being 0.10 % (37.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07395143 BTC (67,499.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 912,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,435,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.25 % (38,640.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 796.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02622884 BTC (37,645.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1023 transactions" + } + ] + }, + { + "id": 1038, + "type": "message", + "date": "2024-09-26T14:29:03", + "date_unixtime": "1727353743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004511 BTC for 65.76 CZK @ 1,457,812 CZK\nFees are 0.23097220 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.035929718828259813773053457 CZK)\nThe limits being 0.10 % (38.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07399654 BTC (67,565.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 913,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,457,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.66 % (40,307.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 730.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02627395 BTC (38,302.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1024 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004511 BTC for 65.76 CZK @ 1,457,812 CZK\nFees are 0.23097220 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.035929718828259813773053457 CZK)\nThe limits being 0.10 % (38.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07399654 BTC (67,565.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 913,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,457,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.66 % (40,307.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 730.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02627395 BTC (38,302.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1024 transactions" + } + ] + }, + { + "id": 1039, + "type": "message", + "date": "2024-09-27T02:29:04", + "date_unixtime": "1727396944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004470 BTC for 65.76 CZK @ 1,471,108 CZK\nFees are 0.23096036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (48.546558536397775570737318715 CZK)\nThe limits being 0.10 % (38.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07404124 BTC (67,631.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 913,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,471,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.05 % (41,290.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 664.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02631865 BTC (38,717.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1025 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004470 BTC for 65.76 CZK @ 1,471,108 CZK\nFees are 0.23096036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (48.546558536397775570737318715 CZK)\nThe limits being 0.10 % (38.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07404124 BTC (67,631.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 913,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,471,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.05 % (41,290.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 664.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02631865 BTC (38,717.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1025 transactions" + } + ] + }, + { + "id": 1040, + "type": "message", + "date": "2024-09-27T14:29:03", + "date_unixtime": "1727440143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004437 BTC for 65.76 CZK @ 1,482,127 CZK\nFees are 0.23097253 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.606798811327358976509869278 CZK)\nThe limits being 0.10 % (39.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07408561 BTC (67,697.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 913,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,482,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.20 % (42,106.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 598.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02636302 BTC (39,073.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1026 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004437 BTC for 65.76 CZK @ 1,482,127 CZK\nFees are 0.23097253 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.606798811327358976509869278 CZK)\nThe limits being 0.10 % (39.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07408561 BTC (67,697.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 913,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,482,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.20 % (42,106.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 598.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02636302 BTC (39,073.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1026 transactions" + } + ] + }, + { + "id": 1041, + "type": "message", + "date": "2024-09-28T02:29:03", + "date_unixtime": "1727483343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004423 BTC for 65.76 CZK @ 1,486,820 CZK\nFees are 0.23097274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.710037367968609978122017209 CZK)\nThe limits being 0.10 % (39.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07412984 BTC (67,763.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 914,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,486,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.65 % (42,453.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 532.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02640725 BTC (39,262.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1027 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004423 BTC for 65.76 CZK @ 1,486,820 CZK\nFees are 0.23097274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.710037367968609978122017209 CZK)\nThe limits being 0.10 % (39.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07412984 BTC (67,763.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 914,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,486,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.65 % (42,453.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 532.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02640725 BTC (39,262.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1027 transactions" + } + ] + }, + { + "id": 1042, + "type": "message", + "date": "2024-09-28T14:29:08", + "date_unixtime": "1727526548", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004429 BTC for 65.76 CZK @ 1,484,694 CZK\nFees are 0.23095530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (48.994888679416577989680057483 CZK)\nThe limits being 0.10 % (39.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07417413 BTC (67,829.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 914,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,484,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.36 % (42,296.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 466.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02645154 BTC (39,272.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1028 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004429 BTC for 65.76 CZK @ 1,484,694 CZK\nFees are 0.23095530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (48.994888679416577989680057483 CZK)\nThe limits being 0.10 % (39.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07417413 BTC (67,829.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 914,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,484,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.36 % (42,296.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 466.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02645154 BTC (39,272.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1028 transactions" + } + ] + }, + { + "id": 1043, + "type": "message", + "date": "2024-09-29T02:29:11", + "date_unixtime": "1727569751", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004413 BTC for 65.76 CZK @ 1,490,093 CZK\nFees are 0.23095785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.391023157900441588363230393 CZK)\nThe limits being 0.10 % (39.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07421826 BTC (67,895.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 914,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.88 % (42,696.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 400.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02649567 BTC (39,481.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1029 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004413 BTC for 65.76 CZK @ 1,490,093 CZK\nFees are 0.23095785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.391023157900441588363230393 CZK)\nThe limits being 0.10 % (39.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07421826 BTC (67,895.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 914,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.88 % (42,696.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 400.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02649567 BTC (39,481.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1029 transactions" + } + ] + }, + { + "id": 1044, + "type": "message", + "date": "2024-09-29T14:29:03", + "date_unixtime": "1727612943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004426 BTC for 65.77 CZK @ 1,485,975 CZK\nFees are 0.23099803 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.345722580998137787513247240 CZK)\nThe limits being 0.10 % (39.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07426252 BTC (67,961.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 915,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.37 % (42,390.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 334.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02653993 BTC (39,437.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1030 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004426 BTC for 65.77 CZK @ 1,485,975 CZK\nFees are 0.23099803 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.345722580998137787513247240 CZK)\nThe limits being 0.10 % (39.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07426252 BTC (67,961.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 915,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.37 % (42,390.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 334.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02653993 BTC (39,437.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1030 transactions" + } + ] + }, + { + "id": 1045, + "type": "message", + "date": "2024-09-30T02:29:04", + "date_unixtime": "1727656144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004456 BTC for 65.76 CZK @ 1,475,767 CZK\nFees are 0.23096625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.233441553083060276465047379 CZK)\nThe limits being 0.10 % (39.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07430708 BTC (68,027.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 915,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,475,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.20 % (41,632.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 268.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02658449 BTC (39,232.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1031 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004456 BTC for 65.76 CZK @ 1,475,767 CZK\nFees are 0.23096625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.233441553083060276465047379 CZK)\nThe limits being 0.10 % (39.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07430708 BTC (68,027.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 915,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,475,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.20 % (41,632.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 268.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02658449 BTC (39,232.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1031 transactions" + } + ] + }, + { + "id": 1046, + "type": "message", + "date": "2024-09-30T14:29:03", + "date_unixtime": "1727699343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004558 BTC for 65.77 CZK @ 1,442,876 CZK\nFees are 0.23098759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.871632426699618470062984906 CZK)\nThe limits being 0.10 % (38.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07435266 BTC (68,093.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 915,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.55 % (39,187.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 202.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02663007 BTC (38,423.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1032 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004558 BTC for 65.77 CZK @ 1,442,876 CZK\nFees are 0.23098759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.871632426699618470062984906 CZK)\nThe limits being 0.10 % (38.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07435266 BTC (68,093.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 915,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.55 % (39,187.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 202.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02663007 BTC (38,423.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1032 transactions" + } + ] + }, + { + "id": 1047, + "type": "message", + "date": "2024-10-01T02:29:03", + "date_unixtime": "1727742543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004568 BTC for 65.77 CZK @ 1,439,727 CZK\nFees are 0.23098917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.836995348373512321585484081 CZK)\nThe limits being 0.10 % (38.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07439834 BTC (68,159.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 916,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.15 % (38,953.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,136.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02667575 BTC (38,405.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1033 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004568 BTC for 65.77 CZK @ 1,439,727 CZK\nFees are 0.23098917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.836995348373512321585484081 CZK)\nThe limits being 0.10 % (38.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07439834 BTC (68,159.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 916,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.15 % (38,953.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,136.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02667575 BTC (38,405.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1033 transactions" + } + ] + }, + { + "id": 1048, + "type": "message", + "date": "2024-10-01T14:29:03", + "date_unixtime": "1727785743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004505 BTC for 65.76 CZK @ 1,459,627 CZK\nFees are 0.23095225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.055900348779272546088689586 CZK)\nThe limits being 0.10 % (39.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07444339 BTC (68,225.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 916,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.26 % (40,433.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,070.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02672080 BTC (39,002.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1034 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004505 BTC for 65.76 CZK @ 1,459,627 CZK\nFees are 0.23095225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.055900348779272546088689586 CZK)\nThe limits being 0.10 % (39.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07444339 BTC (68,225.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 916,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.26 % (40,433.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,070.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02672080 BTC (39,002.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1034 transactions" + } + ] + }, + { + "id": 1049, + "type": "message", + "date": "2024-10-02T02:29:04", + "date_unixtime": "1727828944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004704 BTC for 65.76 CZK @ 1,398,058 CZK\nFees are 0.23098194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.378641297550410298648607425 CZK)\nThe limits being 0.10 % (37.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07449043 BTC (68,291.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 916,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,398,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.50 % (35,850.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,004.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02676784 BTC (37,423.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1035 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004704 BTC for 65.76 CZK @ 1,398,058 CZK\nFees are 0.23098194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.378641297550410298648607425 CZK)\nThe limits being 0.10 % (37.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07449043 BTC (68,291.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 916,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,398,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.50 % (35,850.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,004.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02676784 BTC (37,423.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1035 transactions" + } + ] + }, + { + "id": 1050, + "type": "message", + "date": "2024-10-02T14:29:08", + "date_unixtime": "1727872148", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004697 BTC for 65.76 CZK @ 1,399,989 CZK\nFees are 0.23095674 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.399880077807299743637316231 CZK)\nThe limits being 0.10 % (37.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07453740 BTC (68,357.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 917,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,399,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.65 % (35,993.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 938.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02681481 BTC (37,540.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1036 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004697 BTC for 65.76 CZK @ 1,399,989 CZK\nFees are 0.23095674 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.399880077807299743637316231 CZK)\nThe limits being 0.10 % (37.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07453740 BTC (68,357.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 917,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,399,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.65 % (35,993.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 938.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02681481 BTC (37,540.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1036 transactions" + } + ] + }, + { + "id": 1051, + "type": "message", + "date": "2024-10-03T02:29:03", + "date_unixtime": "1727915343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004697 BTC for 65.77 CZK @ 1,400,199 CZK\nFees are 0.23099130 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.402184805172528468860160398 CZK)\nThe limits being 0.10 % (37.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07458437 BTC (68,423.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 917,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,400,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.63 % (36,009.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 872.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02686178 BTC (37,611.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1037 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004697 BTC for 65.77 CZK @ 1,400,199 CZK\nFees are 0.23099130 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.402184805172528468860160398 CZK)\nThe limits being 0.10 % (37.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07458437 BTC (68,423.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 917,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,400,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.63 % (36,009.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 872.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02686178 BTC (37,611.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1037 transactions" + } + ] + }, + { + "id": 1052, + "type": "message", + "date": "2024-10-03T14:29:03", + "date_unixtime": "1727958543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004709 BTC for 65.76 CZK @ 1,396,543 CZK\nFees are 0.23097676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.361967863803931937941138908 CZK)\nThe limits being 0.10 % (37.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07463146 BTC (68,489.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 917,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,396,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.18 % (35,736.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 806.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02690887 BTC (37,579.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1038 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004709 BTC for 65.76 CZK @ 1,396,543 CZK\nFees are 0.23097676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.361967863803931937941138908 CZK)\nThe limits being 0.10 % (37.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07463146 BTC (68,489.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 917,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,396,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.18 % (35,736.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 806.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02690887 BTC (37,579.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1038 transactions" + } + ] + }, + { + "id": 1053, + "type": "message", + "date": "2024-10-04T02:29:03", + "date_unixtime": "1728001743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004703 BTC for 65.76 CZK @ 1,398,176 CZK\nFees are 0.23095221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.379931503823371336617818922 CZK)\nThe limits being 0.10 % (37.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07467849 BTC (68,555.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 918,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,398,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.30 % (35,857.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 740.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02695590 BTC (37,689.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1039 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004703 BTC for 65.76 CZK @ 1,398,176 CZK\nFees are 0.23095221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.379931503823371336617818922 CZK)\nThe limits being 0.10 % (37.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07467849 BTC (68,555.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 918,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,398,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.30 % (35,857.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 740.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02695590 BTC (37,689.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1039 transactions" + } + ] + }, + { + "id": 1054, + "type": "message", + "date": "2024-10-04T14:29:04", + "date_unixtime": "1728044944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004629 BTC for 65.76 CZK @ 1,420,690 CZK\nFees are 0.23097862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.627584946530306597033519429 CZK)\nThe limits being 0.10 % (38.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07472478 BTC (68,621.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 918,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.70 % (37,538.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 674.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02700219 BTC (38,361.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1040 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004629 BTC for 65.76 CZK @ 1,420,690 CZK\nFees are 0.23097862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.627584946530306597033519429 CZK)\nThe limits being 0.10 % (38.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07472478 BTC (68,621.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 918,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.70 % (37,538.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 674.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02700219 BTC (38,361.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1040 transactions" + } + ] + }, + { + "id": 1055, + "type": "message", + "date": "2024-10-05T02:29:03", + "date_unixtime": "1728088143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004562 BTC for 65.77 CZK @ 1,441,583 CZK\nFees are 0.23098325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.857418101746910801235570288 CZK)\nThe limits being 0.10 % (38.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07477040 BTC (68,687.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 918,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.92 % (39,100.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 608.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02704781 BTC (38,991.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1041 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004562 BTC for 65.77 CZK @ 1,441,583 CZK\nFees are 0.23098325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.857418101746910801235570288 CZK)\nThe limits being 0.10 % (38.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07477040 BTC (68,687.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 918,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.92 % (39,100.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 608.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02704781 BTC (38,991.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1041 transactions" + } + ] + }, + { + "id": 1056, + "type": "message", + "date": "2024-10-05T14:29:06", + "date_unixtime": "1728131346", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004558 BTC for 65.76 CZK @ 1,442,818 CZK\nFees are 0.23097829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.870992835300231550258605631 CZK)\nThe limits being 0.10 % (39.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07481598 BTC (68,753.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 918,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,818 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.00 % (39,192.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 542.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02709339 BTC (39,090.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1042 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004558 BTC for 65.76 CZK @ 1,442,818 CZK\nFees are 0.23097829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.870992835300231550258605631 CZK)\nThe limits being 0.10 % (39.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07481598 BTC (68,753.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 918,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,818 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.00 % (39,192.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 542.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02709339 BTC (39,090.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1042 transactions" + } + ] + }, + { + "id": 1057, + "type": "message", + "date": "2024-10-06T02:29:06", + "date_unixtime": "1728174546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004577 BTC for 65.77 CZK @ 1,436,866 CZK\nFees are 0.23098433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.611046276637841402589298826 CZK)\nThe limits being 0.10 % (39.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07486175 BTC (68,819.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 919,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.30 % (38,746.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 476.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02713916 BTC (38,995.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1043 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004577 BTC for 65.77 CZK @ 1,436,866 CZK\nFees are 0.23098433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.611046276637841402589298826 CZK)\nThe limits being 0.10 % (39.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07486175 BTC (68,819.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 919,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.30 % (38,746.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 476.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02713916 BTC (38,995.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1043 transactions" + } + ] + }, + { + "id": 1058, + "type": "message", + "date": "2024-10-06T14:29:03", + "date_unixtime": "1728217743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004564 BTC for 65.76 CZK @ 1,440,830 CZK\nFees are 0.23096367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.849125493288826530456286433 CZK)\nThe limits being 0.10 % (39.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07490739 BTC (68,885.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 919,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.68 % (39,043.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 410.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02718480 BTC (39,168.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1044 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004564 BTC for 65.76 CZK @ 1,440,830 CZK\nFees are 0.23096367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.849125493288826530456286433 CZK)\nThe limits being 0.10 % (39.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07490739 BTC (68,885.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 919,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.68 % (39,043.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 410.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02718480 BTC (39,168.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1044 transactions" + } + ] + }, + { + "id": 1059, + "type": "message", + "date": "2024-10-07T02:29:03", + "date_unixtime": "1728260943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004516 BTC for 65.76 CZK @ 1,456,146 CZK\nFees are 0.23096394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.035204345905363115720311064 CZK)\nThe limits being 0.10 % (39.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07495255 BTC (68,951.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 919,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.29 % (40,190.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 344.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02722996 BTC (39,650.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1045 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004516 BTC for 65.76 CZK @ 1,456,146 CZK\nFees are 0.23096394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.035204345905363115720311064 CZK)\nThe limits being 0.10 % (39.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07495255 BTC (68,951.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 919,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.29 % (40,190.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 344.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02722996 BTC (39,650.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1045 transactions" + } + ] + }, + { + "id": 1060, + "type": "message", + "date": "2024-10-07T14:29:03", + "date_unixtime": "1728304143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004507 BTC for 65.77 CZK @ 1,459,267 CZK\nFees are 0.23099781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.103883021804425579917813723 CZK)\nThe limits being 0.10 % (39.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07499762 BTC (69,017.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 920,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.57 % (40,423.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 278.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02727503 BTC (39,801.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1046 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004507 BTC for 65.77 CZK @ 1,459,267 CZK\nFees are 0.23099781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.103883021804425579917813723 CZK)\nThe limits being 0.10 % (39.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07499762 BTC (69,017.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 920,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.57 % (40,423.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 278.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02727503 BTC (39,801.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1046 transactions" + } + ] + }, + { + "id": 1061, + "type": "message", + "date": "2024-10-08T02:29:04", + "date_unixtime": "1728347344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004538 BTC for 65.76 CZK @ 1,449,157 CZK\nFees are 0.23097525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (47.822190415959303302258753683 CZK)\nThe limits being 0.10 % (39.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07504300 BTC (69,083.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 920,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.42 % (39,665.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 212.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02732041 BTC (39,591.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1047 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004538 BTC for 65.76 CZK @ 1,449,157 CZK\nFees are 0.23097525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (47.822190415959303302258753683 CZK)\nThe limits being 0.10 % (39.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07504300 BTC (69,083.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 920,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.42 % (39,665.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 212.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02732041 BTC (39,591.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1047 transactions" + } + ] + }, + { + "id": 1062, + "type": "message", + "date": "2024-10-08T14:29:03", + "date_unixtime": "1728390543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004542 BTC for 65.77 CZK @ 1,447,933 CZK\nFees are 0.23098357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.927265679105956102123413495 CZK)\nThe limits being 0.10 % (39.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07508842 BTC (69,149.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 920,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.23 % (39,573.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 146.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02736583 BTC (39,623.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004542 BTC for 65.77 CZK @ 1,447,933 CZK\nFees are 0.23098357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.927265679105956102123413495 CZK)\nThe limits being 0.10 % (39.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07508842 BTC (69,149.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 920,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.23 % (39,573.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 146.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02736583 BTC (39,623.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1048 transactions" + } + ] + }, + { + "id": 1063, + "type": "message", + "date": "2024-10-09T02:29:06", + "date_unixtime": "1728433746", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004565 BTC for 65.77 CZK @ 1,440,689 CZK\nFees are 0.23099178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.695163313943366890581759024 CZK)\nThe limits being 0.10 % (39.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07513407 BTC (69,215.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 921,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.39 % (39,029.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 80.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02741148 BTC (39,491.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004565 BTC for 65.77 CZK @ 1,440,689 CZK\nFees are 0.23099178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.695163313943366890581759024 CZK)\nThe limits being 0.10 % (39.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07513407 BTC (69,215.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 921,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.39 % (39,029.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 80.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02741148 BTC (39,491.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1049 transactions" + } + ] + }, + { + "id": 1064, + "type": "message", + "date": "2024-10-09T14:29:07", + "date_unixtime": "1728476947", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004561 BTC for 65.76 CZK @ 1,441,806 CZK\nFees are 0.23096827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.719732369725037134335897588 CZK)\nThe limits being 0.10 % (39.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07517968 BTC (69,281.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 921,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.45 % (39,112.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,014.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02745709 BTC (39,587.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004561 BTC for 65.76 CZK @ 1,441,806 CZK\nFees are 0.23096827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (31.719732369725037134335897588 CZK)\nThe limits being 0.10 % (39.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07517968 BTC (69,281.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 921,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.45 % (39,112.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,014.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02745709 BTC (39,587.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1050 transactions" + } + ] + }, + { + "id": 1065, + "type": "message", + "date": "2024-10-10T02:29:04", + "date_unixtime": "1728520144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004685 BTC for 65.76 CZK @ 1,403,689 CZK\nFees are 0.23097555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (46.321746683831775551843893226 CZK)\nThe limits being 0.10 % (38.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07522653 BTC (69,347.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 921,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.27 % (36,246.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 948.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02750394 BTC (38,606.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004685 BTC for 65.76 CZK @ 1,403,689 CZK\nFees are 0.23097555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (46.321746683831775551843893226 CZK)\nThe limits being 0.10 % (38.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07522653 BTC (69,347.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 921,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.27 % (36,246.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 948.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02750394 BTC (38,606.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1051 transactions" + } + ] + }, + { + "id": 1066, + "type": "message", + "date": "2024-10-10T14:29:04", + "date_unixtime": "1728563344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004618 BTC for 65.76 CZK @ 1,424,090 CZK\nFees are 0.23098128 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (46.994969703266803519858925980 CZK)\nThe limits being 0.10 % (39.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07527271 BTC (69,413.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 922,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,424,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.43 % (37,781.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 882.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02755012 BTC (39,233.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004618 BTC for 65.76 CZK @ 1,424,090 CZK\nFees are 0.23098128 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (46.994969703266803519858925980 CZK)\nThe limits being 0.10 % (39.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07527271 BTC (69,413.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 922,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,424,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.43 % (37,781.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 882.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02755012 BTC (39,233.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1052 transactions" + } + ] + }, + { + "id": 1067, + "type": "message", + "date": "2024-10-11T02:29:03", + "date_unixtime": "1728606543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004691 BTC for 65.76 CZK @ 1,401,755 CZK\nFees are 0.23095274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (30.838620728112446343999370356 CZK)\nThe limits being 0.10 % (38.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07531962 BTC (69,479.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 922,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,401,755 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.96 % (36,100.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 816.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02759703 BTC (38,684.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004691 BTC for 65.76 CZK @ 1,401,755 CZK\nFees are 0.23095274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (30.838620728112446343999370356 CZK)\nThe limits being 0.10 % (38.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07531962 BTC (69,479.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 922,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,401,755 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.96 % (36,100.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 816.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02759703 BTC (38,684.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1053 transactions" + } + ] + }, + { + "id": 1068, + "type": "message", + "date": "2024-10-11T14:29:07", + "date_unixtime": "1728649747", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004627 BTC for 65.76 CZK @ 1,421,307 CZK\nFees are 0.23097918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (62.537511305201623580489682267 CZK)\nThe limits being 0.10 % (39.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07536589 BTC (69,545.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 922,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.03 % (37,572.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 750.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02764330 BTC (39,289.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004627 BTC for 65.76 CZK @ 1,421,307 CZK\nFees are 0.23097918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (62.537511305201623580489682267 CZK)\nThe limits being 0.10 % (39.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07536589 BTC (69,545.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 922,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.03 % (37,572.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 750.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02764330 BTC (39,289.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1054 transactions" + } + ] + }, + { + "id": 1069, + "type": "message", + "date": "2024-10-12T02:29:04", + "date_unixtime": "1728692944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004520 BTC for 65.76 CZK @ 1,454,782 CZK\nFees are 0.23095207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (224.03646866630510029057590469 CZK)\nThe limits being 0.10 % (40.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07541109 BTC (69,611.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 923,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,454,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.60 % (40,095.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 684.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02768850 BTC (40,280.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004520 BTC for 65.76 CZK @ 1,454,782 CZK\nFees are 0.23095207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (224.03646866630510029057590469 CZK)\nThe limits being 0.10 % (40.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07541109 BTC (69,611.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 923,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,454,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.60 % (40,095.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 684.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02768850 BTC (40,280.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1055 transactions" + } + ] + }, + { + "id": 1070, + "type": "message", + "date": "2024-10-12T14:29:03", + "date_unixtime": "1728736143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004502 BTC for 65.76 CZK @ 1,460,615 CZK\nFees are 0.23095459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (112.46733637864984770097196463 CZK)\nThe limits being 0.10 % (40.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07545611 BTC (69,677.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 923,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,460,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.17 % (40,534.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 618.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02773352 BTC (40,507.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004502 BTC for 65.76 CZK @ 1,460,615 CZK\nFees are 0.23095459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (112.46733637864984770097196463 CZK)\nThe limits being 0.10 % (40.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07545611 BTC (69,677.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 923,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,460,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.17 % (40,534.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 618.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02773352 BTC (40,507.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1056 transactions" + } + ] + }, + { + "id": 1071, + "type": "message", + "date": "2024-10-13T02:29:03", + "date_unixtime": "1728779343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004486 BTC for 65.76 CZK @ 1,465,967 CZK\nFees are 0.23097709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (96.75382590180911615409375256 CZK)\nThe limits being 0.10 % (40.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07550097 BTC (69,743.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 923,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,465,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.70 % (40,938.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 552.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02777838 BTC (40,722.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004486 BTC for 65.76 CZK @ 1,465,967 CZK\nFees are 0.23097709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (96.75382590180911615409375256 CZK)\nThe limits being 0.10 % (40.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07550097 BTC (69,743.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 923,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,465,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.70 % (40,938.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 552.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02777838 BTC (40,722.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1057 transactions" + } + ] + }, + { + "id": 1072, + "type": "message", + "date": "2024-10-13T14:29:06", + "date_unixtime": "1728822546", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004516 BTC for 65.76 CZK @ 1,456,217 CZK\nFees are 0.23097523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.036770238178774643045178897 CZK)\nThe limits being 0.10 % (40.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07554613 BTC (69,809.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 924,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.59 % (40,201.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 486.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02782354 BTC (40,517.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004516 BTC for 65.76 CZK @ 1,456,217 CZK\nFees are 0.23097523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (32.036770238178774643045178897 CZK)\nThe limits being 0.10 % (40.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07554613 BTC (69,809.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 924,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.59 % (40,201.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 486.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02782354 BTC (40,517.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1058 transactions" + } + ] + }, + { + "id": 1073, + "type": "message", + "date": "2024-10-14T02:29:03", + "date_unixtime": "1728865743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004514 BTC for 65.76 CZK @ 1,456,773 CZK\nFees are 0.23096114 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (64.098021309113274120993006533 CZK)\nThe limits being 0.10 % (40.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07559127 BTC (69,875.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 924,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.59 % (40,243.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 420.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02786868 BTC (40,598.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004514 BTC for 65.76 CZK @ 1,456,773 CZK\nFees are 0.23096114 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (64.098021309113274120993006533 CZK)\nThe limits being 0.10 % (40.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07559127 BTC (69,875.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 924,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.59 % (40,243.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 420.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02786868 BTC (40,598.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1059 transactions" + } + ] + }, + { + "id": 1074, + "type": "message", + "date": "2024-10-14T14:29:03", + "date_unixtime": "1728908943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004373 BTC for 65.76 CZK @ 1,503,728 CZK\nFees are 0.23095861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (49.623020639287761528909051568 CZK)\nThe limits being 0.10 % (41.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07563500 BTC (69,941.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 924,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.61 % (43,792.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 354.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02791241 BTC (41,972.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004373 BTC for 65.76 CZK @ 1,503,728 CZK\nFees are 0.23095861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (49.623020639287761528909051568 CZK)\nThe limits being 0.10 % (41.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07563500 BTC (69,941.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 924,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.61 % (43,792.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 354.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02791241 BTC (41,972.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1060 transactions" + } + ] + }, + { + "id": 1075, + "type": "message", + "date": "2024-10-15T02:29:03", + "date_unixtime": "1728952143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004301 BTC for 65.77 CZK @ 1,529,090 CZK\nFees are 0.23098719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (100.91993505594868089563764676 CZK)\nThe limits being 0.10 % (42.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07567801 BTC (70,007.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 925,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,529,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 65.29 % (45,710.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 289.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02795542 BTC (42,746.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004301 BTC for 65.77 CZK @ 1,529,090 CZK\nFees are 0.23098719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (100.91993505594868089563764676 CZK)\nThe limits being 0.10 % (42.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07567801 BTC (70,007.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 925,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,529,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 65.29 % (45,710.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 289.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02795542 BTC (42,746.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1061 transactions" + } + ] + }, + { + "id": 1076, + "type": "message", + "date": "2024-10-15T14:29:07", + "date_unixtime": "1728995347", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004325 BTC for 65.77 CZK @ 1,520,680 CZK\nFees are 0.23099861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (33.454960570258430752481920216 CZK)\nThe limits being 0.10 % (42.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07572126 BTC (70,073.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 925,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 64.32 % (45,074.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 223.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02799867 BTC (42,577.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004325 BTC for 65.77 CZK @ 1,520,680 CZK\nFees are 0.23099861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (33.454960570258430752481920216 CZK)\nThe limits being 0.10 % (42.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07572126 BTC (70,073.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 925,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 64.32 % (45,074.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 223.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02799867 BTC (42,577.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1062 transactions" + } + ] + }, + { + "id": 1077, + "type": "message", + "date": "2024-10-16T02:29:03", + "date_unixtime": "1729038543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.", + { + "type": "phone", + "text": "00004242" + }, + " BTC for 65.76 CZK @ 1,550,187 CZK\nFees are 0.23096186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (85.26030447887838111165376627 CZK)\nThe limits being 0.10 % (43.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07576368 BTC (70,139.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 925,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.45 % (47,308.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 157.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02804109 BTC (43,468.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0." + }, + { + "type": "phone", + "text": "00004242" + }, + { + "type": "plain", + "text": " BTC for 65.76 CZK @ 1,550,187 CZK\nFees are 0.23096186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (85.26030447887838111165376627 CZK)\nThe limits being 0.10 % (43.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07576368 BTC (70,139.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 925,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.45 % (47,308.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 157.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02804109 BTC (43,468.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1063 transactions" + } + ] + }, + { + "id": 1078, + "type": "message", + "date": "2024-10-16T14:29:03", + "date_unixtime": "1729081743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004165 BTC for 65.76 CZK @ 1,578,822 CZK\nFees are 0.23095824 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (52.101109919124600512850880263 CZK)\nThe limits being 0.10 % (44.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07580533 BTC (70,205.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 926,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.48 % (49,477.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,091.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02808274 BTC (44,337.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004165 BTC for 65.76 CZK @ 1,578,822 CZK\nFees are 0.23095824 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (52.101109919124600512850880263 CZK)\nThe limits being 0.10 % (44.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07580533 BTC (70,205.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 926,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.48 % (49,477.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,091.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02808274 BTC (44,337.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1064 transactions" + } + ] + }, + { + "id": 1079, + "type": "message", + "date": "2024-10-17T02:29:04", + "date_unixtime": "1729124944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004164 BTC for 65.76 CZK @ 1,579,217 CZK\nFees are 0.23096070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.84 % (816.4554457870077208157615493 CZK)\nThe limits being 0.10 % (44.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07584697 BTC (70,271.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 926,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.45 % (49,507.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,025.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02812438 BTC (44,414.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004164 BTC for 65.76 CZK @ 1,579,217 CZK\nFees are 0.23096070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.84 % (816.4554457870077208157615493 CZK)\nThe limits being 0.10 % (44.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07584697 BTC (70,271.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 926,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.45 % (49,507.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,025.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02812438 BTC (44,414.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1065 transactions" + } + ] + }, + { + "id": 1080, + "type": "message", + "date": "2024-10-17T14:29:03", + "date_unixtime": "1729168143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004211 BTC for 65.76 CZK @ 1,561,523 CZK\nFees are 0.23095050 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (68.706991011393629776191782811 CZK)\nThe limits being 0.10 % (43.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07588908 BTC (70,337.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 926,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.48 % (48,164.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 959.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02816649 BTC (43,982.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004211 BTC for 65.76 CZK @ 1,561,523 CZK\nFees are 0.23095050 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (68.706991011393629776191782811 CZK)\nThe limits being 0.10 % (43.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07588908 BTC (70,337.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 926,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.48 % (48,164.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 959.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02816649 BTC (43,982.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1066 transactions" + } + ] + }, + { + "id": 1081, + "type": "message", + "date": "2024-10-18T02:29:04", + "date_unixtime": "1729211344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004180 BTC for 65.76 CZK @ 1,573,168 CZK\nFees are 0.23096009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (69.219412424933784386227152333 CZK)\nThe limits being 0.10 % (44.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07593088 BTC (70,403.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 927,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,573,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.67 % (49,048.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 893.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02820829 BTC (44,376.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004180 BTC for 65.76 CZK @ 1,573,168 CZK\nFees are 0.23096009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (69.219412424933784386227152333 CZK)\nThe limits being 0.10 % (44.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07593088 BTC (70,403.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 927,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,573,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.67 % (49,048.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 893.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02820829 BTC (44,376.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1067 transactions" + } + ] + }, + { + "id": 1082, + "type": "message", + "date": "2024-10-18T14:29:03", + "date_unixtime": "1729254543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004163 BTC for 65.77 CZK @ 1,579,778 CZK\nFees are 0.23098717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.755113565169037841491843165 CZK)\nThe limits being 0.10 % (44.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07597251 BTC (70,469.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 927,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.31 % (49,550.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 827.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02824992 BTC (44,628.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004163 BTC for 65.77 CZK @ 1,579,778 CZK\nFees are 0.23098717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.755113565169037841491843165 CZK)\nThe limits being 0.10 % (44.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07597251 BTC (70,469.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 927,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.31 % (49,550.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 827.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02824992 BTC (44,628.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1068 transactions" + } + ] + }, + { + "id": 1083, + "type": "message", + "date": "2024-10-19T02:29:03", + "date_unixtime": "1729297743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004137 BTC for 65.76 CZK @ 1,589,601 CZK\nFees are 0.23097190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (52.456842946713334366699871696 CZK)\nThe limits being 0.10 % (44.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07601388 BTC (70,535.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 927,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.31 % (50,296.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 761.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02829129 BTC (44,971.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004137 BTC for 65.76 CZK @ 1,589,601 CZK\nFees are 0.23097190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (52.456842946713334366699871696 CZK)\nThe limits being 0.10 % (44.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07601388 BTC (70,535.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 927,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.31 % (50,296.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 761.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02829129 BTC (44,971.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1069 transactions" + } + ] + }, + { + "id": 1084, + "type": "message", + "date": "2024-10-19T14:29:03", + "date_unixtime": "1729340943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004146 BTC for 65.77 CZK @ 1,586,317 CZK\nFees are 0.23099615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.898977077575326684630806168 CZK)\nThe limits being 0.10 % (44.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07605534 BTC (70,601.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 928,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.89 % (50,046.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 695.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02833275 BTC (44,944.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004146 BTC for 65.77 CZK @ 1,586,317 CZK\nFees are 0.23099615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.898977077575326684630806168 CZK)\nThe limits being 0.10 % (44.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07605534 BTC (70,601.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 928,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.89 % (50,046.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 695.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02833275 BTC (44,944.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1070 transactions" + } + ] + }, + { + "id": 1085, + "type": "message", + "date": "2024-10-20T02:29:03", + "date_unixtime": "1729384143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004144 BTC for 65.76 CZK @ 1,586,873 CZK\nFees are 0.23096555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.911195440475709534005498131 CZK)\nThe limits being 0.10 % (45.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07609678 BTC (70,667.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 928,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.88 % (50,088.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 629.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02837419 BTC (45,026.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004144 BTC for 65.76 CZK @ 1,586,873 CZK\nFees are 0.23096555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.911195440475709534005498131 CZK)\nThe limits being 0.10 % (45.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07609678 BTC (70,667.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 928,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.88 % (50,088.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 629.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02837419 BTC (45,026.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1071 transactions" + } + ] + }, + { + "id": 1086, + "type": "message", + "date": "2024-10-20T14:29:03", + "date_unixtime": "1729427343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004135 BTC for 65.77 CZK @ 1,590,455 CZK\nFees are 0.23098429 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.990019326070964441865803424 CZK)\nThe limits being 0.10 % (45.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07613813 BTC (70,733.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 929,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.20 % (50,360.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 563.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02841554 BTC (45,193.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004135 BTC for 65.77 CZK @ 1,590,455 CZK\nFees are 0.23098429 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.990019326070964441865803424 CZK)\nThe limits being 0.10 % (45.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07613813 BTC (70,733.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 929,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.20 % (50,360.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 563.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02841554 BTC (45,193.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1072 transactions" + } + ] + }, + { + "id": 1087, + "type": "message", + "date": "2024-10-21T02:29:09", + "date_unixtime": "1729470549", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004111 BTC for 65.76 CZK @ 1,599,591 CZK\nFees are 0.23096272 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (35.191004793851536649214976966 CZK)\nThe limits being 0.10 % (45.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07617924 BTC (70,799.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 929,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.11 % (51,056.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 497.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02845665 BTC (45,519.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004111 BTC for 65.76 CZK @ 1,599,591 CZK\nFees are 0.23096272 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (35.191004793851536649214976966 CZK)\nThe limits being 0.10 % (45.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07617924 BTC (70,799.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 929,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.11 % (51,056.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 497.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02845665 BTC (45,519.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1073 transactions" + } + ] + }, + { + "id": 1088, + "type": "message", + "date": "2024-10-21T14:29:07", + "date_unixtime": "1729513747", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004132 BTC for 65.77 CZK @ 1,591,614 CZK\nFees are 0.23098489 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (35.015514686978923236243332268 CZK)\nThe limits being 0.10 % (45.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07622056 BTC (70,865.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 929,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.19 % (50,448.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 431.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02849797 BTC (45,357.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004132 BTC for 65.77 CZK @ 1,591,614 CZK\nFees are 0.23098489 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (35.015514686978923236243332268 CZK)\nThe limits being 0.10 % (45.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07622056 BTC (70,865.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 929,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.19 % (50,448.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 431.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02849797 BTC (45,357.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1074 transactions" + } + ] + }, + { + "id": 1089, + "type": "message", + "date": "2024-10-22T02:29:04", + "date_unixtime": "1729556944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004191 BTC for 65.75 CZK @ 1,568,947 CZK\nFees are 0.23094648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (69.033666837983069754546750415 CZK)\nThe limits being 0.10 % (44.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07626247 BTC (70,931.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 930,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.69 % (48,720.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 365.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02853988 BTC (44,777.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004191 BTC for 65.75 CZK @ 1,568,947 CZK\nFees are 0.23094648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (69.033666837983069754546750415 CZK)\nThe limits being 0.10 % (44.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07626247 BTC (70,931.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 930,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.69 % (48,720.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 365.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02853988 BTC (44,777.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1075 transactions" + } + ] + }, + { + "id": 1090, + "type": "message", + "date": "2024-10-22T14:29:04", + "date_unixtime": "1729600144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004190 BTC for 65.77 CZK @ 1,569,584 CZK\nFees are 0.23098506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (86.32709554744551587344057137 CZK)\nThe limits being 0.10 % (44.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07630437 BTC (70,997.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 930,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,569,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.69 % (48,768.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 299.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02858178 BTC (44,861.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004190 BTC for 65.77 CZK @ 1,569,584 CZK\nFees are 0.23098506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (86.32709554744551587344057137 CZK)\nThe limits being 0.10 % (44.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07630437 BTC (70,997.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 930,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,569,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.69 % (48,768.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 299.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02858178 BTC (44,861.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1076 transactions" + } + ] + }, + { + "id": 1091, + "type": "message", + "date": "2024-10-23T02:29:04", + "date_unixtime": "1729643344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004173 BTC for 65.76 CZK @ 1,575,910 CZK\nFees are 0.23097517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (86.67506528134037458877155453 CZK)\nThe limits being 0.10 % (45.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07634610 BTC (71,063.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 930,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.31 % (49,251.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 233.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02862351 BTC (45,108.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004173 BTC for 65.76 CZK @ 1,575,910 CZK\nFees are 0.23097517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (86.67506528134037458877155453 CZK)\nThe limits being 0.10 % (45.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07634610 BTC (71,063.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 930,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.31 % (49,251.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 233.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02862351 BTC (45,108.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1077 transactions" + } + ] + }, + { + "id": 1092, + "type": "message", + "date": "2024-10-23T14:29:03", + "date_unixtime": "1729686543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004220 BTC for 65.75 CZK @ 1,558,174 CZK\nFees are 0.23094783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (85.69958111774665448182545923 CZK)\nThe limits being 0.10 % (44.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07638830 BTC (71,129.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 931,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.34 % (47,896.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,167.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02866571 BTC (44,666.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004220 BTC for 65.75 CZK @ 1,558,174 CZK\nFees are 0.23094783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (85.69958111774665448182545923 CZK)\nThe limits being 0.10 % (44.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07638830 BTC (71,129.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 931,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.34 % (47,896.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,167.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02866571 BTC (44,666.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1078 transactions" + } + ] + }, + { + "id": 1093, + "type": "message", + "date": "2024-10-24T02:29:04", + "date_unixtime": "1729729744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004208 BTC for 65.77 CZK @ 1,562,863 CZK\nFees are 0.23098407 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (85.95745696028728348119983101 CZK)\nThe limits being 0.10 % (44.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07643038 BTC (71,195.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 931,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.78 % (48,254.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,101.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02870779 BTC (44,866.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004208 BTC for 65.77 CZK @ 1,562,863 CZK\nFees are 0.23098407 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (85.95745696028728348119983101 CZK)\nThe limits being 0.10 % (44.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07643038 BTC (71,195.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 931,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.78 % (48,254.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,101.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02870779 BTC (44,866.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1079 transactions" + } + ] + }, + { + "id": 1094, + "type": "message", + "date": "2024-10-24T14:29:06", + "date_unixtime": "1729772946", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004172 BTC for 65.77 CZK @ 1,576,375 CZK\nFees are 0.23098798 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (52.020389316204406341945090552 CZK)\nThe limits being 0.10 % (45.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07647210 BTC (71,261.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 931,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.16 % (49,287.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,035.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02874951 BTC (45,320.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004172 BTC for 65.77 CZK @ 1,576,375 CZK\nFees are 0.23098798 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (52.020389316204406341945090552 CZK)\nThe limits being 0.10 % (45.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07647210 BTC (71,261.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 931,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.16 % (49,287.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,035.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02874951 BTC (45,320.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1080 transactions" + } + ] + }, + { + "id": 1095, + "type": "message", + "date": "2024-10-25T02:29:03", + "date_unixtime": "1729816143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004139 BTC for 65.77 CZK @ 1,589,012 CZK\nFees are 0.23099787 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (314.62434361541803494485897572 CZK)\nThe limits being 0.10 % (45.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07651349 BTC (71,327.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 932,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.45 % (50,253.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 969.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02879090 BTC (45,749.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004139 BTC for 65.77 CZK @ 1,589,012 CZK\nFees are 0.23099787 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (314.62434361541803494485897572 CZK)\nThe limits being 0.10 % (45.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07651349 BTC (71,327.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 932,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.45 % (50,253.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 969.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02879090 BTC (45,749.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1081 transactions" + } + ] + }, + { + "id": 1096, + "type": "message", + "date": "2024-10-25T14:29:03", + "date_unixtime": "1729859343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004137 BTC for 65.77 CZK @ 1,589,757 CZK\nFees are 0.23099448 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (262.30985343177052903669643558 CZK)\nThe limits being 0.10 % (45.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07655486 BTC (71,393.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 932,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.47 % (50,310.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 903.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02883227 BTC (45,836.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004137 BTC for 65.77 CZK @ 1,589,757 CZK\nFees are 0.23099448 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (262.30985343177052903669643558 CZK)\nThe limits being 0.10 % (45.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07655486 BTC (71,393.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 932,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.47 % (50,310.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 903.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02883227 BTC (45,836.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1082 transactions" + } + ] + }, + { + "id": 1097, + "type": "message", + "date": "2024-10-26T02:29:04", + "date_unixtime": "1729902544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004199 BTC for 65.77 CZK @ 1,566,278 CZK\nFees are 0.23099375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (51.687185272598536700495633704 CZK)\nThe limits being 0.10 % (45.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07659685 BTC (71,459.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 932,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,566,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.89 % (48,512.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 837.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02887426 BTC (45,225.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004199 BTC for 65.77 CZK @ 1,566,278 CZK\nFees are 0.23099375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (51.687185272598536700495633704 CZK)\nThe limits being 0.10 % (45.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07659685 BTC (71,459.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 932,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,566,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.89 % (48,512.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 837.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02887426 BTC (45,225.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1083 transactions" + } + ] + }, + { + "id": 1098, + "type": "message", + "date": "2024-10-26T14:29:04", + "date_unixtime": "1729945744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004176 BTC for 65.76 CZK @ 1,574,831 CZK\nFees are 0.23098286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.323136543171695998869855888 CZK)\nThe limits being 0.10 % (45.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07663861 BTC (71,525.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 933,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.74 % (49,167.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 771.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02891602 BTC (45,537.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004176 BTC for 65.76 CZK @ 1,574,831 CZK\nFees are 0.23098286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.323136543171695998869855888 CZK)\nThe limits being 0.10 % (45.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07663861 BTC (71,525.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 933,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.74 % (49,167.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 771.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02891602 BTC (45,537.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1084 transactions" + } + ] + }, + { + "id": 1099, + "type": "message", + "date": "2024-10-27T02:29:03", + "date_unixtime": "1729988943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004171 BTC for 65.77 CZK @ 1,576,775 CZK\nFees are 0.23099121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.344529707280810617645242371 CZK)\nThe limits being 0.10 % (45.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07668032 BTC (71,591.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 933,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.89 % (49,316.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 705.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02895773 BTC (45,659.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004171 BTC for 65.77 CZK @ 1,576,775 CZK\nFees are 0.23099121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.344529707280810617645242371 CZK)\nThe limits being 0.10 % (45.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07668032 BTC (71,591.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 933,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.89 % (49,316.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 705.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02895773 BTC (45,659.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1085 transactions" + } + ] + }, + { + "id": 1100, + "type": "message", + "date": "2024-10-27T13:29:05", + "date_unixtime": "1730032145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004160 BTC for 65.75 CZK @ 1,580,628 CZK\nFees are 0.23094493 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.386908021923268560039860488 CZK)\nThe limits being 0.10 % (45.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07672192 BTC (71,657.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 933,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.23 % (49,611.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 639.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02899933 BTC (45,837.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004160 BTC for 65.75 CZK @ 1,580,628 CZK\nFees are 0.23094493 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.386908021923268560039860488 CZK)\nThe limits being 0.10 % (45.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07672192 BTC (71,657.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 933,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.23 % (49,611.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 639.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02899933 BTC (45,837.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1086 transactions" + } + ] + }, + { + "id": 1101, + "type": "message", + "date": "2024-10-28T01:29:04", + "date_unixtime": "1730075344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004117 BTC for 65.76 CZK @ 1,597,280 CZK\nFees are 0.23096568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.570084230333497562998778020 CZK)\nThe limits being 0.10 % (46.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07676309 BTC (71,723.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 934,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,597,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.95 % (50,888.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 573.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02904050 BTC (46,385.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004117 BTC for 65.76 CZK @ 1,597,280 CZK\nFees are 0.23096568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.570084230333497562998778020 CZK)\nThe limits being 0.10 % (46.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07676309 BTC (71,723.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 934,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,597,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.95 % (50,888.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 573.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02904050 BTC (46,385.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1087 transactions" + } + ] + }, + { + "id": 1102, + "type": "message", + "date": "2024-10-28T13:29:04", + "date_unixtime": "1730118544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004077 BTC for 65.63 CZK @ 1,609,802 CZK\nFees are 0.23051464 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.707818634778276033881415047 CZK)\nThe limits being 0.10 % (46.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07680386 BTC (71,789.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 934,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.22 % (51,849.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 507.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02908127 BTC (46,815.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004077 BTC for 65.63 CZK @ 1,609,802 CZK\nFees are 0.23051464 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (17.707818634778276033881415047 CZK)\nThe limits being 0.10 % (46.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07680386 BTC (71,789.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 934,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.22 % (51,849.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 507.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02908127 BTC (46,815.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1088 transactions" + } + ] + }, + { + "id": 1103, + "type": "message", + "date": "2024-10-29T01:29:03", + "date_unixtime": "1730161743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004013 BTC for 65.76 CZK @ 1,638,567 CZK\nFees are 0.23095043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.024236839390068972401727271 CZK)\nThe limits being 0.10 % (47.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07684399 BTC (71,855.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 935,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,638,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.23 % (54,058.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 441.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02912140 BTC (47,717.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004013 BTC for 65.76 CZK @ 1,638,567 CZK\nFees are 0.23095043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.024236839390068972401727271 CZK)\nThe limits being 0.10 % (47.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07684399 BTC (71,855.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 935,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,638,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.23 % (54,058.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 441.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02912140 BTC (47,717.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1089 transactions" + } + ] + }, + { + "id": 1104, + "type": "message", + "date": "2024-10-29T13:29:03", + "date_unixtime": "1730204943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003928 BTC for 65.63 CZK @ 1,670,832 CZK\nFees are 0.23050997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.379152964623816641753861485 CZK)\nThe limits being 0.10 % (48.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07688327 BTC (71,921.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 935,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,670,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.61 % (56,537.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 375.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02916068 BTC (48,722.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003928 BTC for 65.63 CZK @ 1,670,832 CZK\nFees are 0.23050997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.379152964623816641753861485 CZK)\nThe limits being 0.10 % (48.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07688327 BTC (71,921.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 935,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,670,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.61 % (56,537.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 375.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02916068 BTC (48,722.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1090 transactions" + } + ] + }, + { + "id": 1105, + "type": "message", + "date": "2024-10-30T01:29:05", + "date_unixtime": "1730248145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003901 BTC for 65.76 CZK @ 1,685,699 CZK\nFees are 0.23096248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.542690243976893484953393704 CZK)\nThe limits being 0.10 % (49.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07692228 BTC (71,987.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 935,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,685,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.13 % (57,680.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 309.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02919969 BTC (49,221.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003901 BTC for 65.76 CZK @ 1,685,699 CZK\nFees are 0.23096248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.542690243976893484953393704 CZK)\nThe limits being 0.10 % (49.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07692228 BTC (71,987.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 935,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,685,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.13 % (57,680.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 309.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02919969 BTC (49,221.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1091 transactions" + } + ] + }, + { + "id": 1106, + "type": "message", + "date": "2024-10-30T13:29:05", + "date_unixtime": "1730291345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003889 BTC for 65.76 CZK @ 1,691,003 CZK\nFees are 0.23097651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.601036237657783768638000477 CZK)\nThe limits being 0.10 % (49.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07696117 BTC (72,053.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 936,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,691,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.62 % (58,088.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 243.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02923858 BTC (49,442.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003889 BTC for 65.76 CZK @ 1,691,003 CZK\nFees are 0.23097651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.601036237657783768638000477 CZK)\nThe limits being 0.10 % (49.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07696117 BTC (72,053.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 936,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,691,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.62 % (58,088.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 243.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02923858 BTC (49,442.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1092 transactions" + } + ] + }, + { + "id": 1107, + "type": "message", + "date": "2024-10-31T01:29:04", + "date_unixtime": "1730334544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003885 BTC for 65.76 CZK @ 1,692,700 CZK\nFees are 0.23097039 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.619694604534066417474489223 CZK)\nThe limits being 0.10 % (49.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07700002 BTC (72,119.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 936,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,692,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.73 % (58,218.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 177.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02927743 BTC (49,557.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003885 BTC for 65.76 CZK @ 1,692,700 CZK\nFees are 0.23097039 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.619694604534066417474489223 CZK)\nThe limits being 0.10 % (49.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07700002 BTC (72,119.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 936,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,692,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.73 % (58,218.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 177.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02927743 BTC (49,557.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1093 transactions" + } + ] + }, + { + "id": 1108, + "type": "message", + "date": "2024-10-31T13:29:05", + "date_unixtime": "1730377745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003906 BTC for 65.77 CZK @ 1,683,692 CZK\nFees are 0.23098317 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.520613379796416587004368479 CZK)\nThe limits being 0.10 % (49.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07703908 BTC (72,185.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 936,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,683,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.69 % (57,525.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 111.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02931649 BTC (49,359.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003906 BTC for 65.77 CZK @ 1,683,692 CZK\nFees are 0.23098317 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.520613379796416587004368479 CZK)\nThe limits being 0.10 % (49.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07703908 BTC (72,185.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 936,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,683,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.69 % (57,525.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 111.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02931649 BTC (49,359.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1094 transactions" + } + ] + }, + { + "id": 1109, + "type": "message", + "date": "2024-11-01T01:29:04", + "date_unixtime": "1730420944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004005 BTC for 65.76 CZK @ 1,641,912 CZK\nFees are 0.23096060 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.061035288599763499412480787 CZK)\nThe limits being 0.10 % (48.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07707913 BTC (72,251.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 937,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,641,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.16 % (54,306.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 45.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02935654 BTC (48,200.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004005 BTC for 65.76 CZK @ 1,641,912 CZK\nFees are 0.23096060 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.061035288599763499412480787 CZK)\nThe limits being 0.10 % (48.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07707913 BTC (72,251.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 937,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,641,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.16 % (54,306.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 45.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02935654 BTC (48,200.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1095 transactions" + } + ] + }, + { + "id": 1110, + "type": "message", + "date": "2024-11-01T13:29:00", + "date_unixtime": "1730464140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1111, + "type": "message", + "date": "2024-11-02T01:29:00", + "date_unixtime": "1730507340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1112, + "type": "message", + "date": "2024-11-02T13:29:00", + "date_unixtime": "1730550540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1113, + "type": "message", + "date": "2024-11-03T01:29:00", + "date_unixtime": "1730593740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1114, + "type": "message", + "date": "2024-11-03T13:29:00", + "date_unixtime": "1730636940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1115, + "type": "message", + "date": "2024-11-04T01:29:00", + "date_unixtime": "1730680140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1116, + "type": "message", + "date": "2024-11-04T13:29:00", + "date_unixtime": "1730723340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1117, + "type": "message", + "date": "2024-11-05T01:29:00", + "date_unixtime": "1730766540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1118, + "type": "message", + "date": "2024-11-05T13:29:00", + "date_unixtime": "1730809740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1119, + "type": "message", + "date": "2024-11-06T01:29:00", + "date_unixtime": "1730852940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1120, + "type": "message", + "date": "2024-11-06T13:29:00", + "date_unixtime": "1730896140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (45.51847753 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1121, + "type": "message", + "date": "2024-11-07T01:29:03", + "date_unixtime": "1730939343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003688 BTC for 65.77 CZK @ 1,783,340 CZK\nFees are 0.23099917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.616737346618721675869813570 CZK)\nThe limits being 0.10 % (52.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07711601 BTC (72,317.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 937,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,783,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.17 % (65,206.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 979.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02939342 BTC (52,418.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003688 BTC for 65.77 CZK @ 1,783,340 CZK\nFees are 0.23099917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.616737346618721675869813570 CZK)\nThe limits being 0.10 % (52.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07711601 BTC (72,317.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 937,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,783,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.17 % (65,206.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 979.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02939342 BTC (52,418.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1096 transactions" + } + ] + }, + { + "id": 1122, + "type": "message", + "date": "2024-11-07T13:29:03", + "date_unixtime": "1730982543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003726 BTC for 65.75 CZK @ 1,764,749 CZK\nFees are 0.23094635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.412234137844436581465675289 CZK)\nThe limits being 0.10 % (51.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07715327 BTC (72,383.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 938,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,764,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.10 % (63,773.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 913.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02943068 BTC (51,937.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003726 BTC for 65.75 CZK @ 1,764,749 CZK\nFees are 0.23094635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.412234137844436581465675289 CZK)\nThe limits being 0.10 % (51.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07715327 BTC (72,383.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 938,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,764,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.10 % (63,773.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 913.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02943068 BTC (51,937.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1097 transactions" + } + ] + }, + { + "id": 1123, + "type": "message", + "date": "2024-11-08T01:29:04", + "date_unixtime": "1731025744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003678 BTC for 65.76 CZK @ 1,787,797 CZK\nFees are 0.23094859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.665765185634943277647320837 CZK)\nThe limits being 0.10 % (52.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07719005 BTC (72,449.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 938,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,787,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.48 % (65,551.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 847.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02946746 BTC (52,681.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003678 BTC for 65.76 CZK @ 1,787,797 CZK\nFees are 0.23094859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.665765185634943277647320837 CZK)\nThe limits being 0.10 % (52.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07719005 BTC (72,449.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 938,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,787,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.48 % (65,551.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 847.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02946746 BTC (52,681.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1098 transactions" + } + ] + }, + { + "id": 1124, + "type": "message", + "date": "2024-11-08T13:29:04", + "date_unixtime": "1731068944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003684 BTC for 65.76 CZK @ 1,785,147 CZK\nFees are 0.23098251 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.636619757017647787575191499 CZK)\nThe limits being 0.10 % (52.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07722689 BTC (72,515.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 938,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,785,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.11 % (65,346.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 781.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02950430 BTC (52,669.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003684 BTC for 65.76 CZK @ 1,785,147 CZK\nFees are 0.23098251 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.636619757017647787575191499 CZK)\nThe limits being 0.10 % (52.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07722689 BTC (72,515.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 938,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,785,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.11 % (65,346.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 781.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02950430 BTC (52,669.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1099 transactions" + } + ] + }, + { + "id": 1125, + "type": "message", + "date": "2024-11-09T01:29:04", + "date_unixtime": "1731112144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003634 BTC for 65.76 CZK @ 1,809,449 CZK\nFees are 0.23094928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.903935058061781014660027274 CZK)\nThe limits being 0.10 % (53.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07726323 BTC (72,581.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 939,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,809,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.62 % (67,222.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 715.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02954064 BTC (53,452.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003634 BTC for 65.76 CZK @ 1,809,449 CZK\nFees are 0.23094928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.903935058061781014660027274 CZK)\nThe limits being 0.10 % (53.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07726323 BTC (72,581.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 939,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,809,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.62 % (67,222.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 715.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02954064 BTC (53,452.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1100 transactions" + } + ] + }, + { + "id": 1126, + "type": "message", + "date": "2024-11-09T13:29:03", + "date_unixtime": "1731155343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003636 BTC for 65.75 CZK @ 1,808,363 CZK\nFees are 0.23093780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.783996620738307014557958038 CZK)\nThe limits being 0.10 % (53.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07729959 BTC (72,647.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 939,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,808,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.42 % (67,138.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 649.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02957700 BTC (53,485.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003636 BTC for 65.75 CZK @ 1,808,363 CZK\nFees are 0.23093780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.783996620738307014557958038 CZK)\nThe limits being 0.10 % (53.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07729959 BTC (72,647.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 939,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,808,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.42 % (67,138.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 649.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02957700 BTC (53,485.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1101 transactions" + } + ] + }, + { + "id": 1127, + "type": "message", + "date": "2024-11-10T01:29:03", + "date_unixtime": "1731198543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003629 BTC for 65.76 CZK @ 1,812,009 CZK\nFees are 0.23095786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (99.66049523691054854440980404 CZK)\nThe limits being 0.10 % (53.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07733588 BTC (72,713.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 940,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,812,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.72 % (67,420.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 583.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02961329 BTC (53,659.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003629 BTC for 65.76 CZK @ 1,812,009 CZK\nFees are 0.23095786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (99.66049523691054854440980404 CZK)\nThe limits being 0.10 % (53.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07733588 BTC (72,713.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 940,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,812,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.72 % (67,420.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 583.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02961329 BTC (53,659.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1102 transactions" + } + ] + }, + { + "id": 1128, + "type": "message", + "date": "2024-11-10T13:29:04", + "date_unixtime": "1731241744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003507 BTC for 65.76 CZK @ 1,875,052 CZK\nFees are 0.23095875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.625568381210388675279521390 CZK)\nThe limits being 0.10 % (55.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07737095 BTC (72,778.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 940,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,875,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.34 % (72,295.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 517.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02964836 BTC (55,592.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003507 BTC for 65.76 CZK @ 1,875,052 CZK\nFees are 0.23095875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.625568381210388675279521390 CZK)\nThe limits being 0.10 % (55.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07737095 BTC (72,778.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 940,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,875,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.34 % (72,295.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 517.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02964836 BTC (55,592.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1103 transactions" + } + ] + }, + { + "id": 1129, + "type": "message", + "date": "2024-11-11T01:29:04", + "date_unixtime": "1731284944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003456 BTC for 65.75 CZK @ 1,902,591 CZK\nFees are 0.23094290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.857004399532192880473896916 CZK)\nThe limits being 0.10 % (56.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07740551 BTC (72,844.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 941,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,902,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.17 % (74,426.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 451.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02968292 BTC (56,474.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003456 BTC for 65.75 CZK @ 1,902,591 CZK\nFees are 0.23094290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.857004399532192880473896916 CZK)\nThe limits being 0.10 % (56.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07740551 BTC (72,844.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 941,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,902,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.17 % (74,426.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 451.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02968292 BTC (56,474.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1104 transactions" + } + ] + }, + { + "id": 1130, + "type": "message", + "date": "2024-11-11T13:29:03", + "date_unixtime": "1731328143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003375 BTC for 65.75 CZK @ 1,948,265 CZK\nFees are 0.23094424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (42.861821456015058406687704146 CZK)\nThe limits being 0.10 % (57.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07743926 BTC (72,910.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 941,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,948,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.93 % (77,961.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 385.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02971667 BTC (57,895.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003375 BTC for 65.75 CZK @ 1,948,265 CZK\nFees are 0.23094424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (42.861821456015058406687704146 CZK)\nThe limits being 0.10 % (57.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07743926 BTC (72,910.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 941,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,948,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.93 % (77,961.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 385.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02971667 BTC (57,895.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1105 transactions" + } + ] + }, + { + "id": 1131, + "type": "message", + "date": "2024-11-12T01:29:03", + "date_unixtime": "1731371343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003177 BTC for 65.75 CZK @ 2,069,569 CZK\nFees are 0.23093117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (113.82629852801941708897674632 CZK)\nThe limits being 0.10 % (61.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07747103 BTC (72,976.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 941,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,069,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.70 % (87,354.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 319.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02974844 BTC (61,566.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003177 BTC for 65.75 CZK @ 2,069,569 CZK\nFees are 0.23093117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (113.82629852801941708897674632 CZK)\nThe limits being 0.10 % (61.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07747103 BTC (72,976.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 941,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,069,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.70 % (87,354.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 319.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02974844 BTC (61,566.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1106 transactions" + } + ] + }, + { + "id": 1132, + "type": "message", + "date": "2024-11-12T13:29:04", + "date_unixtime": "1731414544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003188 BTC for 65.76 CZK @ 2,062,846 CZK\nFees are 0.23097800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.382619869353123540631628697 CZK)\nThe limits being 0.10 % (61.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07750291 BTC (73,042.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 942,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,062,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.88 % (86,833.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 253.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02978032 BTC (61,432.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003188 BTC for 65.76 CZK @ 2,062,846 CZK\nFees are 0.23097800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.382619869353123540631628697 CZK)\nThe limits being 0.10 % (61.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07750291 BTC (73,042.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 942,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,062,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.88 % (86,833.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 253.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02978032 BTC (61,432.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1107 transactions" + } + ] + }, + { + "id": 1133, + "type": "message", + "date": "2024-11-13T01:29:04", + "date_unixtime": "1731457744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003259 BTC for 65.76 CZK @ 2,017,718 CZK\nFees are 0.23095656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (88.77960125140406857679618726 CZK)\nThe limits being 0.10 % (60.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07753550 BTC (73,108.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 942,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,017,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.99 % (83,335.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 187.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02981291 BTC (60,154.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003259 BTC for 65.76 CZK @ 2,017,718 CZK\nFees are 0.23095656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (88.77960125140406857679618726 CZK)\nThe limits being 0.10 % (60.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07753550 BTC (73,108.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 942,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,017,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.99 % (83,335.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 187.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02981291 BTC (60,154.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1108 transactions" + } + ] + }, + { + "id": 1134, + "type": "message", + "date": "2024-11-13T13:29:03", + "date_unixtime": "1731500943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003145 BTC for 65.75 CZK @ 2,090,635 CZK\nFees are 0.23093214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (68.990968721081936592356006759 CZK)\nThe limits being 0.10 % (62.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07756695 BTC (73,174.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 943,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,090,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.61 % (88,989.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 121.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02984436 BTC (62,393.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003145 BTC for 65.75 CZK @ 2,090,635 CZK\nFees are 0.23093214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (68.990968721081936592356006759 CZK)\nThe limits being 0.10 % (62.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07756695 BTC (73,174.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 943,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,090,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.61 % (88,989.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 121.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02984436 BTC (62,393.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1109 transactions" + } + ] + }, + { + "id": 1135, + "type": "message", + "date": "2024-11-14T01:29:04", + "date_unixtime": "1731544144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003046 BTC for 65.76 CZK @ 2,158,973 CZK\nFees are 0.23097373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (118.74352827644282437601029359 CZK)\nThe limits being 0.10 % (64.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07759741 BTC (73,240.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 943,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,158,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.74 % (94,289.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 55.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02987482 BTC (64,498.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003046 BTC for 65.76 CZK @ 2,158,973 CZK\nFees are 0.23097373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (118.74352827644282437601029359 CZK)\nThe limits being 0.10 % (64.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07759741 BTC (73,240.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 943,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,158,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.74 % (94,289.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 55.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02987482 BTC (64,498.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1110 transactions" + } + ] + }, + { + "id": 1136, + "type": "message", + "date": "2024-11-14T13:29:00", + "date_unixtime": "1731587340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (55.70732311 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (55.70732311 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1137, + "type": "message", + "date": "2024-11-15T01:29:03", + "date_unixtime": "1731630543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003100 BTC for 65.76 CZK @ 2,121,451 CZK\nFees are 0.23098303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (140.01575082308693765369593520 CZK)\nThe limits being 0.10 % (63.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07762841 BTC (73,306.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 944,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,121,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.65 % (91,377.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 989.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02990582 BTC (63,443.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003100 BTC for 65.76 CZK @ 2,121,451 CZK\nFees are 0.23098303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (140.01575082308693765369593520 CZK)\nThe limits being 0.10 % (63.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07762841 BTC (73,306.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 944,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,121,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.65 % (91,377.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 989.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02990582 BTC (63,443.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1111 transactions" + } + ] + }, + { + "id": 1138, + "type": "message", + "date": "2024-11-15T13:29:03", + "date_unixtime": "1731673743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003034 BTC for 65.75 CZK @ 2,167,194 CZK\nFees are 0.23093977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (47.678260737386188551014100616 CZK)\nThe limits being 0.10 % (64.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07765875 BTC (73,372.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 944,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,167,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.38 % (94,928.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 923.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02993616 BTC (64,877.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003034 BTC for 65.75 CZK @ 2,167,194 CZK\nFees are 0.23093977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (47.678260737386188551014100616 CZK)\nThe limits being 0.10 % (64.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07765875 BTC (73,372.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 944,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,167,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.38 % (94,928.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 923.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02993616 BTC (64,877.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1112 transactions" + } + ] + }, + { + "id": 1139, + "type": "message", + "date": "2024-11-16T01:29:03", + "date_unixtime": "1731716943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003009 BTC for 65.76 CZK @ 2,185,360 CZK\nFees are 0.23095670 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.10 % (721.16873881593883024568546480 CZK)\nThe limits being 0.10 % (65.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07768884 BTC (73,438.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 945,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,185,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.18 % (96,339.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 857.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02996625 BTC (65,487.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003009 BTC for 65.76 CZK @ 2,185,360 CZK\nFees are 0.23095670 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.10 % (721.16873881593883024568546480 CZK)\nThe limits being 0.10 % (65.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07768884 BTC (73,438.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 945,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,185,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.18 % (96,339.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 857.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02996625 BTC (65,487.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1113 transactions" + } + ] + }, + { + "id": 1140, + "type": "message", + "date": "2024-11-16T13:29:03", + "date_unixtime": "1731760143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003016 BTC for 65.75 CZK @ 2,180,109 CZK\nFees are 0.23093774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (23.981196417313937029415612994 CZK)\nThe limits being 0.10 % (65.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07771900 BTC (73,504.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 945,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,180,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.51 % (95,931.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 791.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02999641 BTC (65,395.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003016 BTC for 65.75 CZK @ 2,180,109 CZK\nFees are 0.23093774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (23.981196417313937029415612994 CZK)\nThe limits being 0.10 % (65.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07771900 BTC (73,504.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 945,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,180,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.51 % (95,931.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 791.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02999641 BTC (65,395.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1114 transactions" + } + ] + }, + { + "id": 1141, + "type": "message", + "date": "2024-11-17T01:29:03", + "date_unixtime": "1731803343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003022 BTC for 65.75 CZK @ 2,175,703 CZK\nFees are 0.23092952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (23.932730977317311316415048982 CZK)\nThe limits being 0.10 % (65.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07774922 BTC (73,570.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 946,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,175,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.93 % (95,588.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 725.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03002663 BTC (65,329.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003022 BTC for 65.75 CZK @ 2,175,703 CZK\nFees are 0.23092952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (23.932730977317311316415048982 CZK)\nThe limits being 0.10 % (65.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07774922 BTC (73,570.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 946,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,175,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.93 % (95,588.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 725.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03002663 BTC (65,329.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1115 transactions" + } + ] + }, + { + "id": 1142, + "type": "message", + "date": "2024-11-17T13:29:03", + "date_unixtime": "1731846543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003018 BTC for 65.75 CZK @ 2,178,742 CZK\nFees are 0.23094605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (23.966166065226313601533136342 CZK)\nThe limits being 0.10 % (65.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07777940 BTC (73,636.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 946,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,178,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.13 % (95,824.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 659.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03005681 BTC (65,486.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003018 BTC for 65.75 CZK @ 2,178,742 CZK\nFees are 0.23094605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (23.966166065226313601533136342 CZK)\nThe limits being 0.10 % (65.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07777940 BTC (73,636.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 946,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,178,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.13 % (95,824.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 659.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03005681 BTC (65,486.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1116 transactions" + } + ] + }, + { + "id": 1143, + "type": "message", + "date": "2024-11-18T01:29:03", + "date_unixtime": "1731889743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003052 BTC for 65.76 CZK @ 2,154,570 CZK\nFees are 0.23095673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 36.04 % (23.700273298044001956455159236 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07780992 BTC (73,702.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 947,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,154,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.46 % (93,944.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 593.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00003052 BTC (65.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003052 BTC for 65.76 CZK @ 2,154,570 CZK\nFees are 0.23095673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 36.04 % (23.700273298044001956455159236 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07780992 BTC (73,702.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 947,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,154,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.46 % (93,944.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 593.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00003052 BTC (65.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1117 transactions" + } + ] + }, + { + "id": 1144, + "type": "message", + "date": "2024-11-18T13:29:03", + "date_unixtime": "1731932943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003018 BTC for 65.75 CZK @ 2,178,596 CZK\nFees are 0.23093053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 36.24 % (47.929112126774315079461777748 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07784010 BTC (73,768.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 947,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,178,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.88 % (95,813.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 527.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00006070 BTC (132.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003018 BTC for 65.75 CZK @ 2,178,596 CZK\nFees are 0.23093053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 36.24 % (47.929112126774315079461777748 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07784010 BTC (73,768.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 947,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,178,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.88 % (95,813.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 527.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00006070 BTC (132.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1118 transactions" + } + ] + }, + { + "id": 1145, + "type": "message", + "date": "2024-11-19T01:29:03", + "date_unixtime": "1731976143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003036 BTC for 65.77 CZK @ 2,166,290 CZK\nFees are 0.23099569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 108.72 % (214.46275212842009488529277962 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07787046 BTC (73,834.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 948,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,166,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.47 % (94,855.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 461.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00009106 BTC (197.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003036 BTC for 65.77 CZK @ 2,166,290 CZK\nFees are 0.23099569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 108.72 % (214.46275212842009488529277962 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07787046 BTC (73,834.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 948,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,166,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.47 % (94,855.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 461.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00009106 BTC (197.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1119 transactions" + } + ] + }, + { + "id": 1146, + "type": "message", + "date": "2024-11-19T13:29:04", + "date_unixtime": "1732019344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002975 BTC for 65.76 CZK @ 2,210,493 CZK\nFees are 0.23097320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 45.53 % (121.57713004484304932735426009 CZK)\nThe limits being 0.10 % (0.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07790021 BTC (73,900.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 948,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,210,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.01 % (98,297.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 395.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00012081 BTC (267.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002975 BTC for 65.76 CZK @ 2,210,493 CZK\nFees are 0.23097320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 45.53 % (121.57713004484304932735426009 CZK)\nThe limits being 0.10 % (0.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07790021 BTC (73,900.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 948,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,210,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.01 % (98,297.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 395.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00012081 BTC (267.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1120 transactions" + } + ] + }, + { + "id": 1147, + "type": "message", + "date": "2024-11-20T01:29:03", + "date_unixtime": "1732062543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002986 BTC for 65.77 CZK @ 2,202,448 CZK\nFees are 0.23098349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 29.20 % (96.90772436325506407413303271 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07793007 BTC (73,966.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 949,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,202,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.05 % (97,670.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 329.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00015067 BTC (331.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002986 BTC for 65.77 CZK @ 2,202,448 CZK\nFees are 0.23098349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 29.20 % (96.90772436325506407413303271 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07793007 BTC (73,966.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 949,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,202,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.05 % (97,670.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 329.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00015067 BTC (331.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1121 transactions" + } + ] + }, + { + "id": 1148, + "type": "message", + "date": "2024-11-20T13:29:04", + "date_unixtime": "1732105744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002926 BTC for 65.76 CZK @ 2,247,599 CZK\nFees are 0.23098228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 12.23 % (49.447188681719245797603125901 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07795933 BTC (74,032.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 949,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,247,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.68 % (101,188.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 263.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00017993 BTC (404.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002926 BTC for 65.76 CZK @ 2,247,599 CZK\nFees are 0.23098228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 12.23 % (49.447188681719245797603125901 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07795933 BTC (74,032.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 949,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,247,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.68 % (101,188.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 263.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00017993 BTC (404.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1122 transactions" + } + ] + }, + { + "id": 1149, + "type": "message", + "date": "2024-11-21T01:29:04", + "date_unixtime": "1732148944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002892 BTC for 65.77 CZK @ 2,274,110 CZK\nFees are 0.23099110 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.80 % (75.045642128070425709187966599 CZK)\nThe limits being 0.10 % (0.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07798825 BTC (74,098.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 950,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,274,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.35 % (103,255.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 197.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00020885 BTC (474.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002892 BTC for 65.77 CZK @ 2,274,110 CZK\nFees are 0.23099110 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.80 % (75.045642128070425709187966599 CZK)\nThe limits being 0.10 % (0.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07798825 BTC (74,098.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 950,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,274,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.35 % (103,255.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 197.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00020885 BTC (474.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1123 transactions" + } + ] + }, + { + "id": 1150, + "type": "message", + "date": "2024-11-21T13:29:03", + "date_unixtime": "1732192143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002778 BTC for 65.75 CZK @ 2,366,679 CZK\nFees are 0.23091763 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.30 % (52.066947020919940754515423520 CZK)\nThe limits being 0.10 % (0.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07801603 BTC (74,164.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 950,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,366,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.96 % (110,474.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 131.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00023663 BTC (560.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002778 BTC for 65.75 CZK @ 2,366,679 CZK\nFees are 0.23091763 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.30 % (52.066947020919940754515423520 CZK)\nThe limits being 0.10 % (0.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07801603 BTC (74,164.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 950,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,366,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.96 % (110,474.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 131.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00023663 BTC (560.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1124 transactions" + } + ] + }, + { + "id": 1151, + "type": "message", + "date": "2024-11-22T01:29:03", + "date_unixtime": "1732235343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002762 BTC for 65.75 CZK @ 2,380,590 CZK\nFees are 0.23093709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.33 % (52.372979535420380586845389435 CZK)\nThe limits being 0.10 % (0.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07804365 BTC (74,230.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 951,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.29 % (111,559.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 65.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00026425 BTC (629.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002762 BTC for 65.75 CZK @ 2,380,590 CZK\nFees are 0.23093709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.33 % (52.372979535420380586845389435 CZK)\nThe limits being 0.10 % (0.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07804365 BTC (74,230.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 951,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.29 % (111,559.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 65.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00026425 BTC (629.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1125 transactions" + } + ] + }, + { + "id": 1152, + "type": "message", + "date": "2024-11-22T13:29:03", + "date_unixtime": "1732278543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002733 BTC for 65.75 CZK @ 2,405,954 CZK\nFees are 0.23094703 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.55 % (52.930988240754869847228808210 CZK)\nThe limits being 0.10 % (0.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07807098 BTC (74,296.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 951,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,405,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.82 % (113,538.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 999.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00029158 BTC (701.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002733 BTC for 65.75 CZK @ 2,405,954 CZK\nFees are 0.23094703 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.55 % (52.930988240754869847228808210 CZK)\nThe limits being 0.10 % (0.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07807098 BTC (74,296.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 951,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,405,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.82 % (113,538.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 999.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00029158 BTC (701.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1126 transactions" + } + ] + }, + { + "id": 1153, + "type": "message", + "date": "2024-11-23T01:29:03", + "date_unixtime": "1732321743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002730 BTC for 65.76 CZK @ 2,408,683 CZK\nFees are 0.23095516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 27.60 % (211.96408568836909644084531977 CZK)\nThe limits being 0.10 % (0.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07809828 BTC (74,362.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 952,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,408,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.97 % (113,751.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 933.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00031888 BTC (768.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002730 BTC for 65.76 CZK @ 2,408,683 CZK\nFees are 0.23095516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 27.60 % (211.96408568836909644084531977 CZK)\nThe limits being 0.10 % (0.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07809828 BTC (74,362.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 952,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,408,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.97 % (113,751.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 933.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00031888 BTC (768.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1127 transactions" + } + ] + }, + { + "id": 1154, + "type": "message", + "date": "2024-11-23T13:29:03", + "date_unixtime": "1732364943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002743 BTC for 65.75 CZK @ 2,396,907 CZK\nFees are 0.23092041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.53 % (79.097915394914736083205681317 CZK)\nThe limits being 0.10 % (0.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07812571 BTC (74,428.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 952,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,396,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.60 % (112,831.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 867.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00034631 BTC (830.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002743 BTC for 65.75 CZK @ 2,396,907 CZK\nFees are 0.23092041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.53 % (79.097915394914736083205681317 CZK)\nThe limits being 0.10 % (0.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07812571 BTC (74,428.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 952,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,396,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.60 % (112,831.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 867.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00034631 BTC (830.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1128 transactions" + } + ] + }, + { + "id": 1155, + "type": "message", + "date": "2024-11-24T01:29:03", + "date_unixtime": "1732408143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002762 BTC for 65.75 CZK @ 2,380,615 CZK\nFees are 0.23093953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.88 % (52.373530903243427150519885685 CZK)\nThe limits being 0.10 % (0.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07815333 BTC (74,494.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 953,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.75 % (111,558.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 801.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00037393 BTC (890.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002762 BTC for 65.75 CZK @ 2,380,615 CZK\nFees are 0.23093953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.88 % (52.373530903243427150519885685 CZK)\nThe limits being 0.10 % (0.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07815333 BTC (74,494.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 953,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.75 % (111,558.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 801.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00037393 BTC (890.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1129 transactions" + } + ] + }, + { + "id": 1156, + "type": "message", + "date": "2024-11-24T13:29:03", + "date_unixtime": "1732451343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002777 BTC for 65.75 CZK @ 2,367,719 CZK\nFees are 0.23093590 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.74 % (26.044908925709961120952431704 CZK)\nThe limits being 0.10 % (0.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07818110 BTC (74,560.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 953,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,367,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.27 % (110,550.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 735.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00040170 BTC (951.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002777 BTC for 65.75 CZK @ 2,367,719 CZK\nFees are 0.23093590 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.74 % (26.044908925709961120952431704 CZK)\nThe limits being 0.10 % (0.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07818110 BTC (74,560.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 953,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,367,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.27 % (110,550.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 735.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00040170 BTC (951.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1130 transactions" + } + ] + }, + { + "id": 1157, + "type": "message", + "date": "2024-11-25T01:29:03", + "date_unixtime": "1732494543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002776 BTC for 65.76 CZK @ 2,368,758 CZK\nFees are 0.23095401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.56 % (26.056333317897445396443858599 CZK)\nThe limits being 0.10 % (1.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07820886 BTC (74,626.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 954,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,368,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.25 % (110,631.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 669.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00042946 BTC (1,017.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002776 BTC for 65.76 CZK @ 2,368,758 CZK\nFees are 0.23095401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.56 % (26.056333317897445396443858599 CZK)\nThe limits being 0.10 % (1.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07820886 BTC (74,626.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 954,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,368,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.25 % (110,631.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 669.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00042946 BTC (1,017.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1131 transactions" + } + ] + }, + { + "id": 1158, + "type": "message", + "date": "2024-11-25T13:29:03", + "date_unixtime": "1732537743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002766 BTC for 65.75 CZK @ 2,377,226 CZK\nFees are 0.23094470 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.81 % (52.298963599203222560517581092 CZK)\nThe limits being 0.10 % (1.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07823652 BTC (74,692.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 954,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.00 % (111,293.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 604.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00045712 BTC (1,086.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002766 BTC for 65.75 CZK @ 2,377,226 CZK\nFees are 0.23094470 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.81 % (52.298963599203222560517581092 CZK)\nThe limits being 0.10 % (1.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07823652 BTC (74,692.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 954,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.00 % (111,293.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 604.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00045712 BTC (1,086.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1132 transactions" + } + ] + }, + { + "id": 1159, + "type": "message", + "date": "2024-11-26T01:29:03", + "date_unixtime": "1732580943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002884 BTC for 65.76 CZK @ 2,280,324 CZK\nFees are 0.23098150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.79 % (75.250685677797611273165280739 CZK)\nThe limits being 0.10 % (1.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07826536 BTC (74,758.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 955,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,280,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.73 % (103,711.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 538.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00048596 BTC (1,108.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002884 BTC for 65.76 CZK @ 2,280,324 CZK\nFees are 0.23098150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.79 % (75.250685677797611273165280739 CZK)\nThe limits being 0.10 % (1.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07826536 BTC (74,758.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 955,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,280,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.73 % (103,711.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 538.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00048596 BTC (1,108.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1133 transactions" + } + ] + }, + { + "id": 1160, + "type": "message", + "date": "2024-11-26T13:29:04", + "date_unixtime": "1732624144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002955 BTC for 65.76 CZK @ 2,225,532 CZK\nFees are 0.23098123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 19.20 % (220.32763285455221445752050564 CZK)\nThe limits being 0.10 % (1.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07829491 BTC (74,824.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 955,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,225,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.88 % (99,423.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 472.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00051551 BTC (1,147.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002955 BTC for 65.76 CZK @ 2,225,532 CZK\nFees are 0.23098123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 19.20 % (220.32763285455221445752050564 CZK)\nThe limits being 0.10 % (1.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07829491 BTC (74,824.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 955,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,225,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.88 % (99,423.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 472.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00051551 BTC (1,147.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1134 transactions" + } + ] + }, + { + "id": 1161, + "type": "message", + "date": "2024-11-27T01:29:03", + "date_unixtime": "1732667343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002949 BTC for 65.77 CZK @ 2,230,239 CZK\nFees are 0.23099983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.04 % (49.065265569151577481527437963 CZK)\nThe limits being 0.10 % (1.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07832440 BTC (74,890.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 956,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,230,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.25 % (99,791.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 406.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00054500 BTC (1,215.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002949 BTC for 65.77 CZK @ 2,230,239 CZK\nFees are 0.23099983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.04 % (49.065265569151577481527437963 CZK)\nThe limits being 0.10 % (1.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07832440 BTC (74,890.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 956,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,230,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.25 % (99,791.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 406.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00054500 BTC (1,215.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1135 transactions" + } + ] + }, + { + "id": 1162, + "type": "message", + "date": "2024-11-27T13:29:03", + "date_unixtime": "1732710543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002927 BTC for 65.75 CZK @ 2,246,463 CZK\nFees are 0.23094435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.83 % (49.422178530932647929036891550 CZK)\nThe limits being 0.10 % (1.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07835367 BTC (74,956.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 956,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,246,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.83 % (101,062.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 340.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00057427 BTC (1,290.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002927 BTC for 65.75 CZK @ 2,246,463 CZK\nFees are 0.23094435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.83 % (49.422178530932647929036891550 CZK)\nThe limits being 0.10 % (1.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07835367 BTC (74,956.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 956,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,246,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.83 % (101,062.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 340.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00057427 BTC (1,290.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1136 transactions" + } + ] + }, + { + "id": 1163, + "type": "message", + "date": "2024-11-28T01:29:03", + "date_unixtime": "1732753743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002852 BTC for 65.77 CZK @ 2,305,993 CZK\nFees are 0.23098983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.47 % (76.097755726975222066386161758 CZK)\nThe limits being 0.10 % (1.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07838219 BTC (75,022.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 957,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.93 % (105,726.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 274.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00060279 BTC (1,390.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002852 BTC for 65.77 CZK @ 2,305,993 CZK\nFees are 0.23098983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.47 % (76.097755726975222066386161758 CZK)\nThe limits being 0.10 % (1.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07838219 BTC (75,022.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 957,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.93 % (105,726.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 274.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00060279 BTC (1,390.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1137 transactions" + } + ] + }, + { + "id": 1164, + "type": "message", + "date": "2024-11-28T13:29:04", + "date_unixtime": "1732796944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002867 BTC for 65.76 CZK @ 2,293,721 CZK\nFees are 0.23096902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.48 % (50.461864245284510839199182353 CZK)\nThe limits being 0.10 % (1.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07841086 BTC (75,088.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 957,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.52 % (104,764.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 208.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00063146 BTC (1,448.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002867 BTC for 65.76 CZK @ 2,293,721 CZK\nFees are 0.23096902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.48 % (50.461864245284510839199182353 CZK)\nThe limits being 0.10 % (1.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07841086 BTC (75,088.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 957,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.52 % (104,764.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 208.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00063146 BTC (1,448.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1138 transactions" + } + ] + }, + { + "id": 1165, + "type": "message", + "date": "2024-11-29T01:29:03", + "date_unixtime": "1732840143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002862 BTC for 65.75 CZK @ 2,297,263 CZK\nFees are 0.23092223 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.00 % (75.809675823297703321393988963 CZK)\nThe limits being 0.10 % (1.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07843948 BTC (75,154.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 958,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.77 % (105,041.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 142.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00066008 BTC (1,516.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002862 BTC for 65.75 CZK @ 2,297,263 CZK\nFees are 0.23092223 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.00 % (75.809675823297703321393988963 CZK)\nThe limits being 0.10 % (1.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07843948 BTC (75,154.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 958,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.77 % (105,041.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 142.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00066008 BTC (1,516.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1139 transactions" + } + ] + }, + { + "id": 1166, + "type": "message", + "date": "2024-11-29T13:29:03", + "date_unixtime": "1732883343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002816 BTC for 65.75 CZK @ 2,334,941 CZK\nFees are 0.23093720 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.79 % (77.053037684510463378176382660 CZK)\nThe limits being 0.10 % (1.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07846764 BTC (75,220.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 958,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,334,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.57 % (107,996.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 76.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00068824 BTC (1,607.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002816 BTC for 65.75 CZK @ 2,334,941 CZK\nFees are 0.23093720 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.79 % (77.053037684510463378176382660 CZK)\nThe limits being 0.10 % (1.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07846764 BTC (75,220.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 958,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,334,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.57 % (107,996.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 76.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00068824 BTC (1,607.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1140 transactions" + } + ] + }, + { + "id": 1167, + "type": "message", + "date": "2024-11-30T01:29:03", + "date_unixtime": "1732926543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002820 BTC for 65.76 CZK @ 2,331,854 CZK\nFees are 0.23095952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.61 % (76.951177557272948934049974027 CZK)\nThe limits being 0.10 % (1.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07849584 BTC (75,286.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 959,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.13 % (107,754.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00071644 BTC (1,670.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002820 BTC for 65.76 CZK @ 2,331,854 CZK\nFees are 0.23095952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.61 % (76.951177557272948934049974027 CZK)\nThe limits being 0.10 % (1.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07849584 BTC (75,286.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 959,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.13 % (107,754.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00071644 BTC (1,670.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1141 transactions" + } + ] + }, + { + "id": 1168, + "type": "message", + "date": "2024-11-30T13:29:00", + "date_unixtime": "1732969740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1169, + "type": "message", + "date": "2024-12-01T01:29:00", + "date_unixtime": "1733012940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1170, + "type": "message", + "date": "2024-12-01T13:29:00", + "date_unixtime": "1733056140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1171, + "type": "message", + "date": "2024-12-02T01:29:00", + "date_unixtime": "1733099340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.09532389 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1172, + "type": "message", + "date": "2024-12-02T13:29:03", + "date_unixtime": "1733142543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002864 BTC for 65.75 CZK @ 2,295,895 CZK\nFees are 0.23094596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.43 % (75.764518597965778991407169878 CZK)\nThe limits being 0.10 % (1.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07852448 BTC (75,352.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 959,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.25 % (104,931.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 944.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00074508 BTC (1,710.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002864 BTC for 65.75 CZK @ 2,295,895 CZK\nFees are 0.23094596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.43 % (75.764518597965778991407169878 CZK)\nThe limits being 0.10 % (1.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07852448 BTC (75,352.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 959,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.25 % (104,931.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 944.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00074508 BTC (1,710.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1142 transactions" + } + ] + }, + { + "id": 1173, + "type": "message", + "date": "2024-12-03T01:29:04", + "date_unixtime": "1733185744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002845 BTC for 65.76 CZK @ 2,311,271 CZK\nFees are 0.23095029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.27 % (76.271933568187967771849493382 CZK)\nThe limits being 0.10 % (1.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07855293 BTC (75,418.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 960,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.73 % (106,138.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 878.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00077353 BTC (1,787.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002845 BTC for 65.76 CZK @ 2,311,271 CZK\nFees are 0.23095029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.27 % (76.271933568187967771849493382 CZK)\nThe limits being 0.10 % (1.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07855293 BTC (75,418.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 960,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.73 % (106,138.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 878.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00077353 BTC (1,787.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1143 transactions" + } + ] + }, + { + "id": 1174, + "type": "message", + "date": "2024-12-03T13:29:04", + "date_unixtime": "1733228944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002878 BTC for 65.77 CZK @ 2,285,171 CZK\nFees are 0.23099091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.11 % (75.410638172580817728637745651 CZK)\nThe limits being 0.10 % (1.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07858171 BTC (75,484.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 960,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.89 % (104,088.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 812.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00080231 BTC (1,833.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002878 BTC for 65.77 CZK @ 2,285,171 CZK\nFees are 0.23099091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.11 % (75.410638172580817728637745651 CZK)\nThe limits being 0.10 % (1.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07858171 BTC (75,484.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 960,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.89 % (104,088.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 812.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00080231 BTC (1,833.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1144 transactions" + } + ] + }, + { + "id": 1175, + "type": "message", + "date": "2024-12-04T01:29:03", + "date_unixtime": "1733272143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002857 BTC for 65.76 CZK @ 2,301,707 CZK\nFees are 0.23096474 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.65 % (50.637552847846677336358098423 CZK)\nThe limits being 0.10 % (1.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07861028 BTC (75,550.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 961,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.49 % (105,387.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 746.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00083088 BTC (1,912.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002857 BTC for 65.76 CZK @ 2,301,707 CZK\nFees are 0.23096474 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.65 % (50.637552847846677336358098423 CZK)\nThe limits being 0.10 % (1.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07861028 BTC (75,550.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 961,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.49 % (105,387.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 746.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00083088 BTC (1,912.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1145 transactions" + } + ] + }, + { + "id": 1176, + "type": "message", + "date": "2024-12-04T13:29:04", + "date_unixtime": "1733315344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002845 BTC for 65.75 CZK @ 2,311,239 CZK\nFees are 0.23094708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.56 % (50.847249960113241615680793848 CZK)\nThe limits being 0.10 % (1.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07863873 BTC (75,616.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 961,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.36 % (106,136.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 680.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00085933 BTC (1,986.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002845 BTC for 65.75 CZK @ 2,311,239 CZK\nFees are 0.23094708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.56 % (50.847249960113241615680793848 CZK)\nThe limits being 0.10 % (1.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07863873 BTC (75,616.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 961,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.36 % (106,136.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 680.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00085933 BTC (1,986.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1146 transactions" + } + ] + }, + { + "id": 1177, + "type": "message", + "date": "2024-12-05T01:29:04", + "date_unixtime": "1733358544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002786 BTC for 65.75 CZK @ 2,359,880 CZK\nFees are 0.23091724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.48 % (51.917349251775283278088785446 CZK)\nThe limits being 0.10 % (2.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07866659 BTC (75,682.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 962,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,359,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.29 % (109,961.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 614.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00088719 BTC (2,093.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002786 BTC for 65.75 CZK @ 2,359,880 CZK\nFees are 0.23091724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.48 % (51.917349251775283278088785446 CZK)\nThe limits being 0.10 % (2.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07866659 BTC (75,682.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 962,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,359,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.29 % (109,961.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 614.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00088719 BTC (2,093.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1147 transactions" + } + ] + }, + { + "id": 1178, + "type": "message", + "date": "2024-12-05T13:29:05", + "date_unixtime": "1733401745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002679 BTC for 65.75 CZK @ 2,454,399 CZK\nFees are 0.23094224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.41 % (53.996786844402188458350234798 CZK)\nThe limits being 0.10 % (2.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07869338 BTC (75,748.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 962,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,454,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.98 % (117,396.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 548.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00091398 BTC (2,243.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002679 BTC for 65.75 CZK @ 2,454,399 CZK\nFees are 0.23094224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.41 % (53.996786844402188458350234798 CZK)\nThe limits being 0.10 % (2.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07869338 BTC (75,748.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 962,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,454,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.98 % (117,396.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 548.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00091398 BTC (2,243.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1148 transactions" + } + ] + }, + { + "id": 1179, + "type": "message", + "date": "2024-12-06T01:29:03", + "date_unixtime": "1733444943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002855 BTC for 65.77 CZK @ 2,303,583 CZK\nFees are 0.23099114 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.50 % (76.018226086455723706083000218 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07872193 BTC (75,814.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 963,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.19 % (105,528.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 482.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00094253 BTC (2,171.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002855 BTC for 65.77 CZK @ 2,303,583 CZK\nFees are 0.23099114 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.50 % (76.018226086455723706083000218 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07872193 BTC (75,814.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 963,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.19 % (105,528.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 482.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00094253 BTC (2,171.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1149 transactions" + } + ] + }, + { + "id": 1180, + "type": "message", + "date": "2024-12-06T13:29:03", + "date_unixtime": "1733488143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002816 BTC for 65.76 CZK @ 2,335,303 CZK\nFees are 0.23097309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.27 % (51.376675635276532137518684605 CZK)\nThe limits being 0.10 % (2.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07875009 BTC (75,880.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 963,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,335,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.36 % (108,024.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 416.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00097069 BTC (2,266.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002816 BTC for 65.76 CZK @ 2,335,303 CZK\nFees are 0.23097309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.27 % (51.376675635276532137518684605 CZK)\nThe limits being 0.10 % (2.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07875009 BTC (75,880.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 963,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,335,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.36 % (108,024.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 416.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00097069 BTC (2,266.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1150 transactions" + } + ] + }, + { + "id": 1181, + "type": "message", + "date": "2024-12-07T01:29:03", + "date_unixtime": "1733531343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002751 BTC for 65.77 CZK @ 2,390,597 CZK\nFees are 0.23098424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.31 % (78.889695952932457228489816720 CZK)\nThe limits being 0.10 % (2.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07877760 BTC (75,946.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 964,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,390,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.97 % (112,379.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 350.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00099820 BTC (2,386.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002751 BTC for 65.77 CZK @ 2,390,597 CZK\nFees are 0.23098424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.31 % (78.889695952932457228489816720 CZK)\nThe limits being 0.10 % (2.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07877760 BTC (75,946.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 964,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,390,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.97 % (112,379.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 350.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00099820 BTC (2,386.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1151 transactions" + } + ] + }, + { + "id": 1182, + "type": "message", + "date": "2024-12-07T13:29:03", + "date_unixtime": "1733574543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002765 BTC for 65.76 CZK @ 2,378,408 CZK\nFees are 0.23097599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.22 % (78.487449330597880294196352550 CZK)\nThe limits being 0.10 % (2.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07880525 BTC (76,012.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 964,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.58 % (111,418.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 284.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00102585 BTC (2,439.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002765 BTC for 65.76 CZK @ 2,378,408 CZK\nFees are 0.23097599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.22 % (78.487449330597880294196352550 CZK)\nThe limits being 0.10 % (2.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07880525 BTC (76,012.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 964,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.58 % (111,418.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 284.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00102585 BTC (2,439.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1152 transactions" + } + ] + }, + { + "id": 1183, + "type": "message", + "date": "2024-12-08T01:31:15", + "date_unixtime": "1733617875", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002765 BTC for 65.75 CZK @ 2,377,974 CZK\nFees are 0.23093393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.13 % (78.473157813475620139637849805 CZK)\nThe limits being 0.10 % (2.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07883290 BTC (76,078.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 965,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.41 % (111,384.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 218.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00105350 BTC (2,505.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002765 BTC for 65.75 CZK @ 2,377,974 CZK\nFees are 0.23093393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.13 % (78.473157813475620139637849805 CZK)\nThe limits being 0.10 % (2.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07883290 BTC (76,078.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 965,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.41 % (111,384.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 218.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00105350 BTC (2,505.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1153 transactions" + } + ] + }, + { + "id": 1184, + "type": "message", + "date": "2024-12-08T13:29:03", + "date_unixtime": "1733660943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002766 BTC for 65.75 CZK @ 2,377,060 CZK\nFees are 0.23092863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.05 % (78.442986837824663569048460540 CZK)\nThe limits being 0.10 % (2.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07886056 BTC (76,144.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 965,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.19 % (111,311.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 152.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00108116 BTC (2,569.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002766 BTC for 65.75 CZK @ 2,377,060 CZK\nFees are 0.23092863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.05 % (78.442986837824663569048460540 CZK)\nThe limits being 0.10 % (2.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07886056 BTC (76,144.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 965,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.19 % (111,311.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 152.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00108116 BTC (2,569.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1154 transactions" + } + ] + }, + { + "id": 1185, + "type": "message", + "date": "2024-12-09T01:29:03", + "date_unixtime": "1733704143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002758 BTC for 65.76 CZK @ 2,384,511 CZK\nFees are 0.23098244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.98 % (78.688853834638952209688136481 CZK)\nThe limits being 0.10 % (2.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07888814 BTC (76,210.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 966,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.83 % (111,899.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 86.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00110874 BTC (2,643.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002758 BTC for 65.76 CZK @ 2,384,511 CZK\nFees are 0.23098244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.98 % (78.688853834638952209688136481 CZK)\nThe limits being 0.10 % (2.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07888814 BTC (76,210.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 966,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.83 % (111,899.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 86.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00110874 BTC (2,643.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1155 transactions" + } + ] + }, + { + "id": 1186, + "type": "message", + "date": "2024-12-09T13:29:04", + "date_unixtime": "1733747344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002814 BTC for 65.76 CZK @ 2,336,808 CZK\nFees are 0.23095777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.90 % (77.114669843182124823246568781 CZK)\nThe limits being 0.10 % (2.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07891628 BTC (76,276.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 966,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.77 % (108,135.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00113688 BTC (2,656.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002814 BTC for 65.76 CZK @ 2,336,808 CZK\nFees are 0.23095777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.90 % (77.114669843182124823246568781 CZK)\nThe limits being 0.10 % (2.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07891628 BTC (76,276.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 966,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.77 % (108,135.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00113688 BTC (2,656.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1156 transactions" + } + ] + }, + { + "id": 1187, + "type": "message", + "date": "2024-12-10T01:29:46", + "date_unixtime": "1733790586", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (20.27083992 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (20.27083992 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1188, + "type": "message", + "date": "2024-12-10T13:29:03", + "date_unixtime": "1733833743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002818 BTC for 65.75 CZK @ 2,333,311 CZK\nFees are 0.23093998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.89 % (51.332852725185060238066695594 CZK)\nThe limits being 0.10 % (2.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07894446 BTC (76,342.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 967,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.28 % (107,859.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 954.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00116506 BTC (2,718.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002818 BTC for 65.75 CZK @ 2,333,311 CZK\nFees are 0.23093998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.89 % (51.332852725185060238066695594 CZK)\nThe limits being 0.10 % (2.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07894446 BTC (76,342.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 967,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.28 % (107,859.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 954.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00116506 BTC (2,718.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1157 transactions" + } + ] + }, + { + "id": 1189, + "type": "message", + "date": "2024-12-11T01:29:03", + "date_unixtime": "1733876943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002851 BTC for 65.76 CZK @ 2,306,521 CZK\nFees are 0.23096174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.61 % (126.85865008248052196128003059 CZK)\nThe limits being 0.10 % (2.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07897297 BTC (76,408.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 967,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.39 % (105,744.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 888.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00119357 BTC (2,752.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002851 BTC for 65.76 CZK @ 2,306,521 CZK\nFees are 0.23096174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.61 % (126.85865008248052196128003059 CZK)\nThe limits being 0.10 % (2.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07897297 BTC (76,408.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 967,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.39 % (105,744.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 888.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00119357 BTC (2,752.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1158 transactions" + } + ] + }, + { + "id": 1190, + "type": "message", + "date": "2024-12-11T13:29:03", + "date_unixtime": "1733920143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002790 BTC for 65.75 CZK @ 2,356,774 CZK\nFees are 0.23094445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.60 % (103.69804691465176541602598789 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07900087 BTC (76,474.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 968,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,356,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.46 % (109,712.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 822.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00122147 BTC (2,878.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002790 BTC for 65.75 CZK @ 2,356,774 CZK\nFees are 0.23094445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.60 % (103.69804691465176541602598789 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07900087 BTC (76,474.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 968,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,356,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.46 % (109,712.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 822.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00122147 BTC (2,878.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1159 transactions" + } + ] + }, + { + "id": 1191, + "type": "message", + "date": "2024-12-12T01:29:04", + "date_unixtime": "1733963344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002724 BTC for 65.76 CZK @ 2,414,132 CZK\nFees are 0.23096895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.52 % (106.22182272033199513889346173 CZK)\nThe limits being 0.10 % (3.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07902811 BTC (76,540.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 968,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,414,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.26 % (114,244.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 756.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00124871 BTC (3,014.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002724 BTC for 65.76 CZK @ 2,414,132 CZK\nFees are 0.23096895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.52 % (106.22182272033199513889346173 CZK)\nThe limits being 0.10 % (3.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07902811 BTC (76,540.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 968,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,414,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.26 % (114,244.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 756.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00124871 BTC (3,014.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1160 transactions" + } + ] + }, + { + "id": 1192, + "type": "message", + "date": "2024-12-12T13:29:03", + "date_unixtime": "1734006543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002732 BTC for 65.76 CZK @ 2,406,995 CZK\nFees are 0.23096237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.59 % (79.43082169690125556161049796 CZK)\nThe limits being 0.10 % (3.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07905543 BTC (76,606.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 969,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,406,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.39 % (113,679.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 690.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00127603 BTC (3,071.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002732 BTC for 65.76 CZK @ 2,406,995 CZK\nFees are 0.23096237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.59 % (79.43082169690125556161049796 CZK)\nThe limits being 0.10 % (3.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07905543 BTC (76,606.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 969,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,406,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.39 % (113,679.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 690.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00127603 BTC (3,071.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1161 transactions" + } + ] + }, + { + "id": 1193, + "type": "message", + "date": "2024-12-13T01:29:03", + "date_unixtime": "1734049743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002737 BTC for 65.76 CZK @ 2,402,507 CZK\nFees are 0.23095372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.53 % (79.28274570861684506128440848 CZK)\nThe limits being 0.10 % (3.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07908280 BTC (76,672.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 969,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.80 % (113,324.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 624.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00130340 BTC (3,131.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002737 BTC for 65.76 CZK @ 2,402,507 CZK\nFees are 0.23095372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.53 % (79.28274570861684506128440848 CZK)\nThe limits being 0.10 % (3.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07908280 BTC (76,672.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 969,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.80 % (113,324.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 624.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00130340 BTC (3,131.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1162 transactions" + } + ] + }, + { + "id": 1194, + "type": "message", + "date": "2024-12-13T13:29:03", + "date_unixtime": "1734092943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002737 BTC for 65.77 CZK @ 2,402,914 CZK\nFees are 0.23099285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (52.864118063212807056922983659 CZK)\nThe limits being 0.10 % (3.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07911017 BTC (76,738.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 970,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.72 % (113,356.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 558.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00133077 BTC (3,197.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002737 BTC for 65.77 CZK @ 2,402,914 CZK\nFees are 0.23099285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.65 % (52.864118063212807056922983659 CZK)\nThe limits being 0.10 % (3.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07911017 BTC (76,738.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 970,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.72 % (113,356.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 558.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00133077 BTC (3,197.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1163 transactions" + } + ] + }, + { + "id": 1195, + "type": "message", + "date": "2024-12-14T01:29:03", + "date_unixtime": "1734136143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002718 BTC for 65.75 CZK @ 2,419,242 CZK\nFees are 0.23094799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.43 % (79.83498707503868909149103964 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07913735 BTC (76,804.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 970,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,419,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.27 % (114,648.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 492.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00135795 BTC (3,285.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002718 BTC for 65.75 CZK @ 2,419,242 CZK\nFees are 0.23094799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.43 % (79.83498707503868909149103964 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07913735 BTC (76,804.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 970,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,419,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.27 % (114,648.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 492.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00135795 BTC (3,285.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1164 transactions" + } + ] + }, + { + "id": 1196, + "type": "message", + "date": "2024-12-14T13:29:04", + "date_unixtime": "1734179344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002726 BTC for 65.75 CZK @ 2,411,994 CZK\nFees are 0.23093380 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (53.063868460388639760837070254 CZK)\nThe limits being 0.10 % (3.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07916461 BTC (76,870.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 971,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,411,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.40 % (114,074.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 426.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00138521 BTC (3,341.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002726 BTC for 65.75 CZK @ 2,411,994 CZK\nFees are 0.23093380 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (53.063868460388639760837070254 CZK)\nThe limits being 0.10 % (3.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07916461 BTC (76,870.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 971,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,411,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.40 % (114,074.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 426.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00138521 BTC (3,341.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1165 transactions" + } + ] + }, + { + "id": 1197, + "type": "message", + "date": "2024-12-15T01:29:04", + "date_unixtime": "1734222544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002715 BTC for 65.76 CZK @ 2,422,270 CZK\nFees are 0.23098178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (53.289930240108056424980340448 CZK)\nThe limits being 0.10 % (3.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07919176 BTC (76,936.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 971,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,422,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.33 % (114,887.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 360.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00141236 BTC (3,421.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002715 BTC for 65.76 CZK @ 2,422,270 CZK\nFees are 0.23098178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (53.289930240108056424980340448 CZK)\nThe limits being 0.10 % (3.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07919176 BTC (76,936.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 971,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,422,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.33 % (114,887.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 360.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00141236 BTC (3,421.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1166 transactions" + } + ] + }, + { + "id": 1198, + "type": "message", + "date": "2024-12-15T13:29:03", + "date_unixtime": "1734265743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002682 BTC for 65.77 CZK @ 2,452,265 CZK\nFees are 0.23099980 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.53 % (53.949832153458421252684953891 CZK)\nThe limits being 0.10 % (3.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07921858 BTC (77,002.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 972,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,452,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.28 % (117,262.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 294.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00143918 BTC (3,529.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002682 BTC for 65.77 CZK @ 2,452,265 CZK\nFees are 0.23099980 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.53 % (53.949832153458421252684953891 CZK)\nThe limits being 0.10 % (3.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07921858 BTC (77,002.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 972,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,452,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.28 % (117,262.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 294.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00143918 BTC (3,529.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1167 transactions" + } + ] + }, + { + "id": 1199, + "type": "message", + "date": "2024-12-16T01:29:04", + "date_unixtime": "1734308944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002629 BTC for 65.77 CZK @ 2,501,557 CZK\nFees are 0.23098636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (55.034245021087282377786533744 CZK)\nThe limits being 0.10 % (3.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07924487 BTC (77,068.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 972,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,501,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.22 % (121,167.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 228.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00146547 BTC (3,665.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002629 BTC for 65.77 CZK @ 2,501,557 CZK\nFees are 0.23098636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (55.034245021087282377786533744 CZK)\nThe limits being 0.10 % (3.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07924487 BTC (77,068.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 972,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,501,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.22 % (121,167.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 228.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00146547 BTC (3,665.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1168 transactions" + } + ] + }, + { + "id": 1200, + "type": "message", + "date": "2024-12-16T13:29:04", + "date_unixtime": "1734352144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002648 BTC for 65.76 CZK @ 2,483,540 CZK\nFees are 0.23098008 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.47 % (54.637876003474244976419390140 CZK)\nThe limits being 0.10 % (3.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07927135 BTC (77,134.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 973,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,483,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.24 % (119,739.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 162.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00149195 BTC (3,705.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002648 BTC for 65.76 CZK @ 2,483,540 CZK\nFees are 0.23098008 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.47 % (54.637876003474244976419390140 CZK)\nThe limits being 0.10 % (3.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07927135 BTC (77,134.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 973,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,483,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.24 % (119,739.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 162.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00149195 BTC (3,705.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1169 transactions" + } + ] + }, + { + "id": 1201, + "type": "message", + "date": "2024-12-17T01:29:03", + "date_unixtime": "1734395343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002598 BTC for 65.76 CZK @ 2,531,290 CZK\nFees are 0.23097584 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.45 % (55.688390632785251619332336821 CZK)\nThe limits being 0.10 % (3.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07929733 BTC (77,200.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 973,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,531,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.01 % (123,524.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 96.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00151793 BTC (3,842.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002598 BTC for 65.76 CZK @ 2,531,290 CZK\nFees are 0.23097584 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.45 % (55.688390632785251619332336821 CZK)\nThe limits being 0.10 % (3.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07929733 BTC (77,200.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 973,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,531,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.01 % (123,524.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 96.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00151793 BTC (3,842.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1170 transactions" + } + ] + }, + { + "id": 1202, + "type": "message", + "date": "2024-12-17T13:29:04", + "date_unixtime": "1734438544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002574 BTC for 65.75 CZK @ 2,554,397 CZK\nFees are 0.23093106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.43 % (56.196731899888850561496301406 CZK)\nThe limits being 0.10 % (3.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07932307 BTC (77,266.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 974,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,554,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.24 % (125,356.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 830.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00154367 BTC (3,943.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002574 BTC for 65.75 CZK @ 2,554,397 CZK\nFees are 0.23093106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.43 % (56.196731899888850561496301406 CZK)\nThe limits being 0.10 % (3.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07932307 BTC (77,266.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 974,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,554,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.24 % (125,356.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 830.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00154367 BTC (3,943.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1171 transactions" + } + ] + }, + { + "id": 1203, + "type": "message", + "date": "2024-12-18T01:29:03", + "date_unixtime": "1734481743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002584 BTC for 65.75 CZK @ 2,544,381 CZK\nFees are 0.23091922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.10 % (83.96457347387857668439100918 CZK)\nThe limits being 0.10 % (3.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07934891 BTC (77,332.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 974,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,544,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.07 % (124,561.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 764.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00156951 BTC (3,993.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002584 BTC for 65.75 CZK @ 2,544,381 CZK\nFees are 0.23091922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.10 % (83.96457347387857668439100918 CZK)\nThe limits being 0.10 % (3.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07934891 BTC (77,332.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 974,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,544,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.07 % (124,561.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 764.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00156951 BTC (3,993.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1172 transactions" + } + ] + }, + { + "id": 1204, + "type": "message", + "date": "2024-12-18T13:29:04", + "date_unixtime": "1734524944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002609 BTC for 65.75 CZK @ 2,520,050 CZK\nFees are 0.23092374 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.38 % (55.441090062894090690249897684 CZK)\nThe limits being 0.10 % (4.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07937500 BTC (77,398.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 975,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,520,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.44 % (122,630.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 698.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00159560 BTC (4,020.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002609 BTC for 65.75 CZK @ 2,520,050 CZK\nFees are 0.23092374 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.38 % (55.441090062894090690249897684 CZK)\nThe limits being 0.10 % (4.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07937500 BTC (77,398.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 975,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,520,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.44 % (122,630.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 698.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00159560 BTC (4,020.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1173 transactions" + } + ] + }, + { + "id": 1205, + "type": "message", + "date": "2024-12-19T01:29:04", + "date_unixtime": "1734568144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002680 BTC for 65.76 CZK @ 2,453,707 CZK\nFees are 0.23096324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.03 % (80.97232045155388974410458916 CZK)\nThe limits being 0.10 % (3.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07940180 BTC (77,464.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 975,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,453,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.51 % (117,364.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 632.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00162240 BTC (3,980.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002680 BTC for 65.76 CZK @ 2,453,707 CZK\nFees are 0.23096324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.03 % (80.97232045155388974410458916 CZK)\nThe limits being 0.10 % (3.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07940180 BTC (77,464.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 975,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,453,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.51 % (117,364.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 632.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00162240 BTC (3,980.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1174 transactions" + } + ] + }, + { + "id": 1206, + "type": "message", + "date": "2024-12-19T13:29:03", + "date_unixtime": "1734611343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002657 BTC for 65.75 CZK @ 2,474,762 CZK\nFees are 0.23094598 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (54.444764105457770216736716937 CZK)\nThe limits being 0.10 % (4.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07942837 BTC (77,530.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 976,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,474,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.54 % (119,036.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 566.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00164897 BTC (4,080.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002657 BTC for 65.75 CZK @ 2,474,762 CZK\nFees are 0.23094598 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (54.444764105457770216736716937 CZK)\nThe limits being 0.10 % (4.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07942837 BTC (77,530.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 976,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,474,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.54 % (119,036.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 566.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00164897 BTC (4,080.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1175 transactions" + } + ] + }, + { + "id": 1207, + "type": "message", + "date": "2024-12-20T01:29:04", + "date_unixtime": "1734654544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002784 BTC for 65.75 CZK @ 2,361,647 CZK\nFees are 0.23092429 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.97 % (77.934347818196656529732144390 CZK)\nThe limits being 0.10 % (3.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07945621 BTC (77,596.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 976,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,361,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.83 % (110,051.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 500.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00167681 BTC (3,960.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002784 BTC for 65.75 CZK @ 2,361,647 CZK\nFees are 0.23092429 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.97 % (77.934347818196656529732144390 CZK)\nThe limits being 0.10 % (3.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07945621 BTC (77,596.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 976,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,361,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.83 % (110,051.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 500.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00167681 BTC (3,960.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1176 transactions" + } + ] + }, + { + "id": 1208, + "type": "message", + "date": "2024-12-20T13:29:03", + "date_unixtime": "1734697743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002897 BTC for 65.77 CZK @ 2,270,245 CZK\nFees are 0.23099714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.29 % (49.945384746758798468391351705 CZK)\nThe limits being 0.10 % (3.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07948518 BTC (77,662.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 977,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,270,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.35 % (102,788.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 434.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00170578 BTC (3,872.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002897 BTC for 65.77 CZK @ 2,270,245 CZK\nFees are 0.23099714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.29 % (49.945384746758798468391351705 CZK)\nThe limits being 0.10 % (3.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07948518 BTC (77,662.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 977,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,270,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.35 % (102,788.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 434.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00170578 BTC (3,872.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1177 transactions" + } + ] + }, + { + "id": 1209, + "type": "message", + "date": "2024-12-21T01:29:04", + "date_unixtime": "1734740944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002794 BTC for 65.76 CZK @ 2,353,622 CZK\nFees are 0.23096625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.90 % (77.669524710756446923955133411 CZK)\nThe limits being 0.10 % (4.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07951312 BTC (77,728.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 977,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,353,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.77 % (109,415.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 368.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00173372 BTC (4,080.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002794 BTC for 65.76 CZK @ 2,353,622 CZK\nFees are 0.23096625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.90 % (77.669524710756446923955133411 CZK)\nThe limits being 0.10 % (4.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07951312 BTC (77,728.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 977,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,353,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.77 % (109,415.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 368.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00173372 BTC (4,080.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1178 transactions" + } + ] + }, + { + "id": 1210, + "type": "message", + "date": "2024-12-21T13:29:03", + "date_unixtime": "1734784143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002774 BTC for 65.75 CZK @ 2,370,136 CZK\nFees are 0.23092191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (52.142991996649075029035003300 CZK)\nThe limits being 0.10 % (4.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07954086 BTC (77,794.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 978,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,370,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.34 % (110,728.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 302.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00176146 BTC (4,174.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002774 BTC for 65.75 CZK @ 2,370,136 CZK\nFees are 0.23092191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.25 % (52.142991996649075029035003300 CZK)\nThe limits being 0.10 % (4.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07954086 BTC (77,794.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 978,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,370,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.34 % (110,728.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 302.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00176146 BTC (4,174.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1179 transactions" + } + ] + }, + { + "id": 1211, + "type": "message", + "date": "2024-12-22T01:29:04", + "date_unixtime": "1734827344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002795 BTC for 65.77 CZK @ 2,353,096 CZK\nFees are 0.23099725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (25.884052185508145462259551320 CZK)\nThe limits being 0.10 % (4.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07956881 BTC (77,860.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 978,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,353,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.47 % (109,372.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 236.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00178941 BTC (4,210.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002795 BTC for 65.77 CZK @ 2,353,096 CZK\nFees are 0.23099725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (25.884052185508145462259551320 CZK)\nThe limits being 0.10 % (4.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07956881 BTC (77,860.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 978,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,353,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.47 % (109,372.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 236.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00178941 BTC (4,210.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1180 transactions" + } + ] + }, + { + "id": 1212, + "type": "message", + "date": "2024-12-22T13:29:05", + "date_unixtime": "1734870545", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002798 BTC for 65.76 CZK @ 2,350,132 CZK\nFees are 0.23095397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (25.851455178497845104678300716 CZK)\nThe limits being 0.10 % (4.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07959679 BTC (77,926.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 979,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,350,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.05 % (109,136.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 170.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00181739 BTC (4,271.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002798 BTC for 65.76 CZK @ 2,350,132 CZK\nFees are 0.23095397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (25.851455178497845104678300716 CZK)\nThe limits being 0.10 % (4.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07959679 BTC (77,926.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 979,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,350,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.05 % (109,136.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 170.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00181739 BTC (4,271.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1181 transactions" + } + ] + }, + { + "id": 1213, + "type": "message", + "date": "2024-12-23T01:29:03", + "date_unixtime": "1734913743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002875 BTC for 65.76 CZK @ 2,287,410 CZK\nFees are 0.23097627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (25.161514612941660709256731874 CZK)\nThe limits being 0.10 % (4.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07962554 BTC (77,992.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 979,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.53 % (104,144.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 104.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00184614 BTC (4,222.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002875 BTC for 65.76 CZK @ 2,287,410 CZK\nFees are 0.23097627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (25.161514612941660709256731874 CZK)\nThe limits being 0.10 % (4.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07962554 BTC (77,992.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 979,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.53 % (104,144.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 104.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00184614 BTC (4,222.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1182 transactions" + } + ] + }, + { + "id": 1214, + "type": "message", + "date": "2024-12-23T13:29:04", + "date_unixtime": "1734956944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002814 BTC for 65.76 CZK @ 2,336,724 CZK\nFees are 0.23094945 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (51.407927293562793194678610648 CZK)\nThe limits being 0.10 % (4.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07965368 BTC (78,058.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 979,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.45 % (108,070.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,038.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00187428 BTC (4,379.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002814 BTC for 65.76 CZK @ 2,336,724 CZK\nFees are 0.23094945 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (51.407927293562793194678610648 CZK)\nThe limits being 0.10 % (4.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07965368 BTC (78,058.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 979,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.45 % (108,070.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,038.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00187428 BTC (4,379.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1183 transactions" + } + ] + }, + { + "id": 1215, + "type": "message", + "date": "2024-12-24T01:29:03", + "date_unixtime": "1735000143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002873 BTC for 65.75 CZK @ 2,288,616 CZK\nFees are 0.23093729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.16 % (50.349561163147917201038967164 CZK)\nThe limits being 0.10 % (4.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07968241 BTC (78,124.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 980,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.43 % (104,238.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 972.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00190301 BTC (4,355.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002873 BTC for 65.75 CZK @ 2,288,616 CZK\nFees are 0.23093729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.16 % (50.349561163147917201038967164 CZK)\nThe limits being 0.10 % (4.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07968241 BTC (78,124.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 980,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.43 % (104,238.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 972.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00190301 BTC (4,355.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1184 transactions" + } + ] + }, + { + "id": 1216, + "type": "message", + "date": "2024-12-24T13:29:03", + "date_unixtime": "1735043343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002876 BTC for 65.77 CZK @ 2,286,704 CZK\nFees are 0.23098522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (50.307480587069041387133904769 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07971117 BTC (78,190.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 980,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,286,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.12 % (104,085.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 906.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00193177 BTC (4,417.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002876 BTC for 65.77 CZK @ 2,286,704 CZK\nFees are 0.23098522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (50.307480587069041387133904769 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07971117 BTC (78,190.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 980,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,286,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.12 % (104,085.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 906.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00193177 BTC (4,417.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1185 transactions" + } + ] + }, + { + "id": 1217, + "type": "message", + "date": "2024-12-25T01:29:03", + "date_unixtime": "1735086543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002750 BTC for 65.75 CZK @ 2,390,962 CZK\nFees are 0.23093552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (52.601158584952665670154459393 CZK)\nThe limits being 0.10 % (4.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07973867 BTC (78,255.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 981,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,390,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.63 % (112,396.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 840.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00195927 BTC (4,684.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002750 BTC for 65.75 CZK @ 2,390,962 CZK\nFees are 0.23093552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (52.601158584952665670154459393 CZK)\nThe limits being 0.10 % (4.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07973867 BTC (78,255.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 981,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,390,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.63 % (112,396.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 840.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00195927 BTC (4,684.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1186 transactions" + } + ] + }, + { + "id": 1218, + "type": "message", + "date": "2024-12-25T13:29:03", + "date_unixtime": "1735129743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002761 BTC for 65.76 CZK @ 2,381,693 CZK\nFees are 0.23096042 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (26.198619913966456049245965813 CZK)\nThe limits being 0.10 % (4.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07976628 BTC (78,321.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 981,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.56 % (111,656.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 774.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00198688 BTC (4,732.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002761 BTC for 65.76 CZK @ 2,381,693 CZK\nFees are 0.23096042 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (26.198619913966456049245965813 CZK)\nThe limits being 0.10 % (4.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07976628 BTC (78,321.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 981,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.56 % (111,656.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 774.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00198688 BTC (4,732.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1187 transactions" + } + ] + }, + { + "id": 1219, + "type": "message", + "date": "2024-12-26T01:29:03", + "date_unixtime": "1735172943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002727 BTC for 65.76 CZK @ 2,411,385 CZK\nFees are 0.23096014 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (26.525229568896102365592812395 CZK)\nThe limits being 0.10 % (4.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07979355 BTC (78,387.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 982,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,411,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.46 % (114,024.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 708.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00201415 BTC (4,856.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002727 BTC for 65.76 CZK @ 2,411,385 CZK\nFees are 0.23096014 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (26.525229568896102365592812395 CZK)\nThe limits being 0.10 % (4.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07979355 BTC (78,387.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 982,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,411,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.46 % (114,024.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 708.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00201415 BTC (4,856.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1188 transactions" + } + ] + }, + { + "id": 1220, + "type": "message", + "date": "2024-12-26T13:29:03", + "date_unixtime": "1735216143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002830 BTC for 65.77 CZK @ 2,323,941 CZK\nFees are 0.23099203 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (25.563353217097050781628258692 CZK)\nThe limits being 0.10 % (4.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07982185 BTC (78,453.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 982,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,323,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.45 % (107,047.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 642.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00204245 BTC (4,746.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002830 BTC for 65.77 CZK @ 2,323,941 CZK\nFees are 0.23099203 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (25.563353217097050781628258692 CZK)\nThe limits being 0.10 % (4.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07982185 BTC (78,453.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 982,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,323,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.45 % (107,047.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 642.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00204245 BTC (4,746.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1189 transactions" + } + ] + }, + { + "id": 1221, + "type": "message", + "date": "2024-12-27T01:29:03", + "date_unixtime": "1735259343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002838 BTC for 65.75 CZK @ 2,316,700 CZK\nFees are 0.23092324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (50.967404556919000552330409459 CZK)\nThe limits being 0.10 % (4.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07985023 BTC (78,519.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,316,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.60 % (106,469.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 576.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00207083 BTC (4,797.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002838 BTC for 65.75 CZK @ 2,316,700 CZK\nFees are 0.23092324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (50.967404556919000552330409459 CZK)\nThe limits being 0.10 % (4.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07985023 BTC (78,519.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,316,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.60 % (106,469.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 576.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00207083 BTC (4,797.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1190 transactions" + } + ] + }, + { + "id": 1222, + "type": "message", + "date": "2024-12-27T13:29:04", + "date_unixtime": "1735302544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002809 BTC for 65.77 CZK @ 2,341,238 CZK\nFees are 0.23098446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (25.753620047172028551546979662 CZK)\nThe limits being 0.10 % (4.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07987832 BTC (78,585.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.97 % (108,428.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 510.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00209892 BTC (4,914.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002809 BTC for 65.77 CZK @ 2,341,238 CZK\nFees are 0.23098446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (25.753620047172028551546979662 CZK)\nThe limits being 0.10 % (4.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07987832 BTC (78,585.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.97 % (108,428.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 510.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00209892 BTC (4,914.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1191 transactions" + } + ] + }, + { + "id": 1223, + "type": "message", + "date": "2024-12-28T01:29:04", + "date_unixtime": "1735345744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002868 BTC for 65.76 CZK @ 2,293,000 CZK\nFees are 0.23097697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (25.223003416911104022948967317 CZK)\nThe limits being 0.10 % (4.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07990700 BTC (78,651.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.96 % (104,574.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 444.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00212760 BTC (4,878.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002868 BTC for 65.76 CZK @ 2,293,000 CZK\nFees are 0.23097697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (25.223003416911104022948967317 CZK)\nThe limits being 0.10 % (4.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07990700 BTC (78,651.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.96 % (104,574.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 444.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00212760 BTC (4,878.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1192 transactions" + } + ] + }, + { + "id": 1224, + "type": "message", + "date": "2024-12-28T13:29:03", + "date_unixtime": "1735388943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002864 BTC for 65.75 CZK @ 2,295,731 CZK\nFees are 0.23092952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (25.253042065758671465513162034 CZK)\nThe limits being 0.10 % (4.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07993564 BTC (78,717.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.12 % (104,792.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 378.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00215624 BTC (4,950.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002864 BTC for 65.75 CZK @ 2,295,731 CZK\nFees are 0.23092952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (25.253042065758671465513162034 CZK)\nThe limits being 0.10 % (4.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07993564 BTC (78,717.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.12 % (104,792.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 378.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00215624 BTC (4,950.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1193 transactions" + } + ] + }, + { + "id": 1225, + "type": "message", + "date": "2024-12-29T01:29:04", + "date_unixtime": "1735432144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002850 BTC for 65.75 CZK @ 2,307,023 CZK\nFees are 0.23093100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (25.377254748380667663178873941 CZK)\nThe limits being 0.10 % (5.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07996414 BTC (78,783.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,307,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.16 % (105,695.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 312.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00218474 BTC (5,040.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002850 BTC for 65.75 CZK @ 2,307,023 CZK\nFees are 0.23093100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (25.377254748380667663178873941 CZK)\nThe limits being 0.10 % (5.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07996414 BTC (78,783.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,307,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.16 % (105,695.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 312.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00218474 BTC (5,040.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1194 transactions" + } + ] + }, + { + "id": 1226, + "type": "message", + "date": "2024-12-29T13:29:03", + "date_unixtime": "1735475343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002855 BTC for 65.75 CZK @ 2,302,884 CZK\nFees are 0.23092108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (25.331722597179573768517718633 CZK)\nThe limits being 0.10 % (5.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07999269 BTC (78,849.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.63 % (105,364.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 246.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00221329 BTC (5,096.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002855 BTC for 65.75 CZK @ 2,302,884 CZK\nFees are 0.23092108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (25.331722597179573768517718633 CZK)\nThe limits being 0.10 % (5.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07999269 BTC (78,849.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.63 % (105,364.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 246.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00221329 BTC (5,096.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1195 transactions" + } + ] + }, + { + "id": 1227, + "type": "message", + "date": "2024-12-30T01:29:03", + "date_unixtime": "1735518543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002897 BTC for 65.76 CZK @ 2,269,846 CZK\nFees are 0.23095654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (24.968303466689506987882762420 CZK)\nThe limits being 0.10 % (5.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08002166 BTC (78,915.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,269,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.17 % (102,720.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 180.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00224226 BTC (5,089.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002897 BTC for 65.76 CZK @ 2,269,846 CZK\nFees are 0.23095654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (24.968303466689506987882762420 CZK)\nThe limits being 0.10 % (5.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08002166 BTC (78,915.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,269,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.17 % (102,720.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 180.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00224226 BTC (5,089.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1196 transactions" + } + ] + }, + { + "id": 1228, + "type": "message", + "date": "2024-12-30T13:29:04", + "date_unixtime": "1735561744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002889 BTC for 65.75 CZK @ 2,275,905 CZK\nFees are 0.23093356 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (25.034953097526604271688067189 CZK)\nThe limits being 0.10 % (5.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08005055 BTC (78,981.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,275,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.67 % (103,205.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,114.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00227115 BTC (5,168.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002889 BTC for 65.75 CZK @ 2,275,905 CZK\nFees are 0.23093356 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (25.034953097526604271688067189 CZK)\nThe limits being 0.10 % (5.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08005055 BTC (78,981.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,275,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.67 % (103,205.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,114.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00227115 BTC (5,168.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1197 transactions" + } + ] + }, + { + "id": 1229, + "type": "message", + "date": "2024-12-31T01:29:03", + "date_unixtime": "1735604943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002928 BTC for 65.76 CZK @ 2,246,040 CZK\nFees are 0.23097975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (24.706435702500265464317511660 CZK)\nThe limits being 0.10 % (5.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08007983 BTC (79,047.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,246,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.54 % (100,814.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,048.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00230043 BTC (5,166.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002928 BTC for 65.76 CZK @ 2,246,040 CZK\nFees are 0.23097975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (24.706435702500265464317511660 CZK)\nThe limits being 0.10 % (5.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08007983 BTC (79,047.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,246,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.54 % (100,814.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,048.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00230043 BTC (5,166.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1198 transactions" + } + ] + }, + { + "id": 1230, + "type": "message", + "date": "2024-12-31T13:29:04", + "date_unixtime": "1735648144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002859 BTC for 65.76 CZK @ 2,300,092 CZK\nFees are 0.23096425 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (25.301011276900209183910876465 CZK)\nThe limits being 0.10 % (5.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08010842 BTC (79,113.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.90 % (105,142.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 982.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00232902 BTC (5,356.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002859 BTC for 65.76 CZK @ 2,300,092 CZK\nFees are 0.23096425 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (25.301011276900209183910876465 CZK)\nThe limits being 0.10 % (5.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08010842 BTC (79,113.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.90 % (105,142.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 982.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00232902 BTC (5,356.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1199 transactions" + } + ] + }, + { + "id": 1231, + "type": "message", + "date": "2025-01-01T01:29:03", + "date_unixtime": "1735691343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002879 BTC for 65.75 CZK @ 2,283,852 CZK\nFees are 0.23093777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (25.122367329490929021782566158 CZK)\nThe limits being 0.10 % (5.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08013721 BTC (79,179.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.15 % (103,841.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 916.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00235781 BTC (5,384.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002879 BTC for 65.75 CZK @ 2,283,852 CZK\nFees are 0.23093777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (25.122367329490929021782566158 CZK)\nThe limits being 0.10 % (5.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08013721 BTC (79,179.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.15 % (103,841.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 916.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00235781 BTC (5,384.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1200 transactions" + } + ] + }, + { + "id": 1232, + "type": "message", + "date": "2025-01-01T13:29:04", + "date_unixtime": "1735734544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002870 BTC for 65.77 CZK @ 2,291,607 CZK\nFees are 0.23099758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (25.207675325906366046363858898 CZK)\nThe limits being 0.10 % (5.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08016591 BTC (79,245.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,291,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.82 % (104,462.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 850.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00238651 BTC (5,468.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002870 BTC for 65.77 CZK @ 2,291,607 CZK\nFees are 0.23099758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (25.207675325906366046363858898 CZK)\nThe limits being 0.10 % (5.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08016591 BTC (79,245.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,291,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.82 % (104,462.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 850.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00238651 BTC (5,468.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1201 transactions" + } + ] + }, + { + "id": 1233, + "type": "message", + "date": "2025-01-02T01:29:03", + "date_unixtime": "1735777743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002839 BTC for 65.76 CZK @ 2,316,341 CZK\nFees are 0.23096883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (25.479754465920879598404527444 CZK)\nThe limits being 0.10 % (5.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08019430 BTC (79,311.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,316,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.21 % (106,445.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 784.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00241490 BTC (5,593.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002839 BTC for 65.76 CZK @ 2,316,341 CZK\nFees are 0.23096883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (25.479754465920879598404527444 CZK)\nThe limits being 0.10 % (5.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08019430 BTC (79,311.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,316,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.21 % (106,445.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 784.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00241490 BTC (5,593.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1202 transactions" + } + ] + }, + { + "id": 1234, + "type": "message", + "date": "2025-01-02T13:29:03", + "date_unixtime": "1735820943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002782 BTC for 65.75 CZK @ 2,363,505 CZK\nFees are 0.23093991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (25.998549719404084267250102714 CZK)\nThe limits being 0.10 % (5.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08022212 BTC (79,377.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,363,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.86 % (110,227.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 718.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00244272 BTC (5,773.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002782 BTC for 65.75 CZK @ 2,363,505 CZK\nFees are 0.23093991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (25.998549719404084267250102714 CZK)\nThe limits being 0.10 % (5.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08022212 BTC (79,377.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,363,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.86 % (110,227.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 718.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00244272 BTC (5,773.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1203 transactions" + } + ] + }, + { + "id": 1235, + "type": "message", + "date": "2025-01-03T01:29:04", + "date_unixtime": "1735864144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002761 BTC for 65.76 CZK @ 2,381,595 CZK\nFees are 0.23095099 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (26.197550255381066665078599404 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08024973 BTC (79,443.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.58 % (111,678.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 652.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00247033 BTC (5,883.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002761 BTC for 65.76 CZK @ 2,381,595 CZK\nFees are 0.23095099 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (26.197550255381066665078599404 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08024973 BTC (79,443.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.58 % (111,678.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 652.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00247033 BTC (5,883.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1204 transactions" + } + ] + }, + { + "id": 1236, + "type": "message", + "date": "2025-01-03T13:29:04", + "date_unixtime": "1735907344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002768 BTC for 65.77 CZK @ 2,375,904 CZK\nFees are 0.23098323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (26.134947683109118086696562033 CZK)\nThe limits being 0.10 % (5.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08027741 BTC (79,509.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,375,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.88 % (111,221.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 586.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00249801 BTC (5,935.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002768 BTC for 65.77 CZK @ 2,375,904 CZK\nFees are 0.23098323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (26.134947683109118086696562033 CZK)\nThe limits being 0.10 % (5.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08027741 BTC (79,509.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,375,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.88 % (111,221.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 586.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00249801 BTC (5,935.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1205 transactions" + } + ] + }, + { + "id": 1237, + "type": "message", + "date": "2025-01-04T01:29:10", + "date_unixtime": "1735950550", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002737 BTC for 65.76 CZK @ 2,402,528 CZK\nFees are 0.23095574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (26.427813478910768830831221161 CZK)\nThe limits being 0.10 % (6.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08030478 BTC (79,575.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.45 % (113,358.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 520.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00252538 BTC (6,067.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002737 BTC for 65.76 CZK @ 2,402,528 CZK\nFees are 0.23095574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (26.427813478910768830831221161 CZK)\nThe limits being 0.10 % (6.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08030478 BTC (79,575.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.45 % (113,358.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 520.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00252538 BTC (6,067.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1206 transactions" + } + ] + }, + { + "id": 1238, + "type": "message", + "date": "2025-01-04T13:29:03", + "date_unixtime": "1735993743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002745 BTC for 65.77 CZK @ 2,395,939 CZK\nFees are 0.23099552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (26.355330353961499052042804647 CZK)\nThe limits being 0.10 % (6.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08033223 BTC (79,641.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,395,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.67 % (112,829.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 454.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00255283 BTC (6,116.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002745 BTC for 65.77 CZK @ 2,395,939 CZK\nFees are 0.23099552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (26.355330353961499052042804647 CZK)\nThe limits being 0.10 % (6.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08033223 BTC (79,641.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,395,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.67 % (112,829.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 454.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00255283 BTC (6,116.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1207 transactions" + } + ] + }, + { + "id": 1239, + "type": "message", + "date": "2025-01-05T01:29:04", + "date_unixtime": "1736036944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002733 BTC for 65.77 CZK @ 2,406,402 CZK\nFees are 0.23099004 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (26.470423370380762100303529670 CZK)\nThe limits being 0.10 % (6.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08035956 BTC (79,707.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,406,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.61 % (113,669.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 388.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00258016 BTC (6,208.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002733 BTC for 65.77 CZK @ 2,406,402 CZK\nFees are 0.23099004 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (26.470423370380762100303529670 CZK)\nThe limits being 0.10 % (6.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08035956 BTC (79,707.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,406,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.61 % (113,669.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 388.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00258016 BTC (6,208.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1208 transactions" + } + ] + }, + { + "id": 1240, + "type": "message", + "date": "2025-01-05T13:29:03", + "date_unixtime": "1736080143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002746 BTC for 65.76 CZK @ 2,394,892 CZK\nFees are 0.23097863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (26.343806714735860758285549013 CZK)\nThe limits being 0.10 % (6.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08038702 BTC (79,773.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 992,371 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,394,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.33 % (112,744.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 322.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00260762 BTC (6,244.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002746 BTC for 65.76 CZK @ 2,394,892 CZK\nFees are 0.23097863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (26.343806714735860758285549013 CZK)\nThe limits being 0.10 % (6.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08038702 BTC (79,773.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 992,371 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,394,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.33 % (112,744.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 322.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00260762 BTC (6,244.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1209 transactions" + } + ] + }, + { + "id": 1241, + "type": "message", + "date": "2025-01-06T01:29:03", + "date_unixtime": "1736123343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002722 BTC for 65.76 CZK @ 2,416,004 CZK\nFees are 0.23097830 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (26.576043846537120079720976582 CZK)\nThe limits being 0.10 % (6.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08041424 BTC (79,839.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 992,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,416,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.34 % (114,441.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 256.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00263484 BTC (6,365.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002722 BTC for 65.76 CZK @ 2,416,004 CZK\nFees are 0.23097830 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (26.576043846537120079720976582 CZK)\nThe limits being 0.10 % (6.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08041424 BTC (79,839.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 992,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,416,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.34 % (114,441.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 256.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00263484 BTC (6,365.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1210 transactions" + } + ] + }, + { + "id": 1242, + "type": "message", + "date": "2025-01-06T13:29:04", + "date_unixtime": "1736166544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002721 BTC for 65.77 CZK @ 2,417,006 CZK\nFees are 0.23098925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (26.587071250622820129546586946 CZK)\nThe limits being 0.10 % (6.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08044145 BTC (79,905.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 993,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,417,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.32 % (114,521.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 190.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00266205 BTC (6,434.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002721 BTC for 65.77 CZK @ 2,417,006 CZK\nFees are 0.23098925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (26.587071250622820129546586946 CZK)\nThe limits being 0.10 % (6.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08044145 BTC (79,905.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 993,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,417,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.32 % (114,521.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 190.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00266205 BTC (6,434.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1211 transactions" + } + ] + }, + { + "id": 1243, + "type": "message", + "date": "2025-01-07T01:29:03", + "date_unixtime": "1736209743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002639 BTC for 65.76 CZK @ 2,491,861 CZK\nFees are 0.23096635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (54.820952973044514717624351148 CZK)\nThe limits being 0.10 % (6.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08046784 BTC (79,971.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 993,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,491,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.73 % (120,543.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 124.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00268844 BTC (6,699.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002639 BTC for 65.76 CZK @ 2,491,861 CZK\nFees are 0.23096635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (54.820952973044514717624351148 CZK)\nThe limits being 0.10 % (6.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08046784 BTC (79,971.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 993,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,491,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.73 % (120,543.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 124.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00268844 BTC (6,699.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1212 transactions" + } + ] + }, + { + "id": 1244, + "type": "message", + "date": "2025-01-07T13:29:03", + "date_unixtime": "1736252943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002692 BTC for 65.76 CZK @ 2,442,640 CZK\nFees are 0.23095107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (26.869041970488135507891769594 CZK)\nThe limits being 0.10 % (6.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08049476 BTC (80,037.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 994,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,442,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.66 % (116,582.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,058.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00271536 BTC (6,632.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002692 BTC for 65.76 CZK @ 2,442,640 CZK\nFees are 0.23095107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (26.869041970488135507891769594 CZK)\nThe limits being 0.10 % (6.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08049476 BTC (80,037.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 994,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,442,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.66 % (116,582.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,058.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00271536 BTC (6,632.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1213 transactions" + } + ] + }, + { + "id": 1245, + "type": "message", + "date": "2025-01-08T01:29:03", + "date_unixtime": "1736296143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002780 BTC for 65.76 CZK @ 2,365,624 CZK\nFees are 0.23098081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (52.043723303688887455058374825 CZK)\nThe limits being 0.10 % (6.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08052256 BTC (80,103.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 994,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,365,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.80 % (110,382.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 992.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00274316 BTC (6,489.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002780 BTC for 65.76 CZK @ 2,365,624 CZK\nFees are 0.23098081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (52.043723303688887455058374825 CZK)\nThe limits being 0.10 % (6.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08052256 BTC (80,103.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 994,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,365,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.80 % (110,382.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 992.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00274316 BTC (6,489.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1214 transactions" + } + ] + }, + { + "id": 1246, + "type": "message", + "date": "2025-01-08T13:29:03", + "date_unixtime": "1736339343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002813 BTC for 65.75 CZK @ 2,337,538 CZK\nFees are 0.23094780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (51.425835802207382586117447803 CZK)\nThe limits being 0.10 % (6.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08055069 BTC (80,169.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 995,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,337,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.86 % (108,120.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 926.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00277129 BTC (6,478.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002813 BTC for 65.75 CZK @ 2,337,538 CZK\nFees are 0.23094780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (51.425835802207382586117447803 CZK)\nThe limits being 0.10 % (6.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08055069 BTC (80,169.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 995,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,337,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.86 % (108,120.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 926.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00277129 BTC (6,478.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1215 transactions" + } + ] + }, + { + "id": 1247, + "type": "message", + "date": "2025-01-09T01:29:03", + "date_unixtime": "1736382543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002834 BTC for 65.77 CZK @ 2,320,624 CZK\nFees are 0.23098833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (51.053727075911796362695280703 CZK)\nThe limits being 0.10 % (6.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08057903 BTC (80,235.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 995,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.06 % (106,757.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 860.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00279963 BTC (6,496.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002834 BTC for 65.77 CZK @ 2,320,624 CZK\nFees are 0.23098833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (51.053727075911796362695280703 CZK)\nThe limits being 0.10 % (6.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08057903 BTC (80,235.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 995,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.06 % (106,757.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 860.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00279963 BTC (6,496.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1216 transactions" + } + ] + }, + { + "id": 1248, + "type": "message", + "date": "2025-01-09T13:29:03", + "date_unixtime": "1736425743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002866 BTC for 65.75 CZK @ 2,294,091 CZK\nFees are 0.23092569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (25.235001233992262253084198327 CZK)\nThe limits being 0.10 % (6.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08060769 BTC (80,301.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 996,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.28 % (104,619.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 794.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00282829 BTC (6,488.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002866 BTC for 65.75 CZK @ 2,294,091 CZK\nFees are 0.23092569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (25.235001233992262253084198327 CZK)\nThe limits being 0.10 % (6.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08060769 BTC (80,301.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 996,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.28 % (104,619.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 794.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00282829 BTC (6,488.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1217 transactions" + } + ] + }, + { + "id": 1249, + "type": "message", + "date": "2025-01-10T01:29:05", + "date_unixtime": "1736468945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002902 BTC for 65.76 CZK @ 2,265,937 CZK\nFees are 0.23095676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (24.925307619060373462007714556 CZK)\nThe limits being 0.10 % (6.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08063671 BTC (80,367.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 996,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,265,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.35 % (102,350.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 728.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00285731 BTC (6,474.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002902 BTC for 65.76 CZK @ 2,265,937 CZK\nFees are 0.23095676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (24.925307619060373462007714556 CZK)\nThe limits being 0.10 % (6.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08063671 BTC (80,367.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 996,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,265,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.35 % (102,350.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 728.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00285731 BTC (6,474.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1218 transactions" + } + ] + }, + { + "id": 1250, + "type": "message", + "date": "2025-01-10T13:29:04", + "date_unixtime": "1736512144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002835 BTC for 65.76 CZK @ 2,319,666 CZK\nFees are 0.23097441 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (25.516321341266765614880545955 CZK)\nThe limits being 0.10 % (6.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08066506 BTC (80,433.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 997,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,319,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.63 % (106,682.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 662.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00288566 BTC (6,693.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002835 BTC for 65.76 CZK @ 2,319,666 CZK\nFees are 0.23097441 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (25.516321341266765614880545955 CZK)\nThe limits being 0.10 % (6.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08066506 BTC (80,433.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 997,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,319,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.63 % (106,682.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 662.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00288566 BTC (6,693.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1219 transactions" + } + ] + }, + { + "id": 1251, + "type": "message", + "date": "2025-01-11T01:29:03", + "date_unixtime": "1736555343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002832 BTC for 65.77 CZK @ 2,322,266 CZK\nFees are 0.23098865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (25.544926427348911577839144914 CZK)\nThe limits being 0.10 % (6.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08069338 BTC (80,499.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 997,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.79 % (106,891.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 596.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00291398 BTC (6,767.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002832 BTC for 65.77 CZK @ 2,322,266 CZK\nFees are 0.23098865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (25.544926427348911577839144914 CZK)\nThe limits being 0.10 % (6.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08069338 BTC (80,499.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 997,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.79 % (106,891.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 596.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00291398 BTC (6,767.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1220 transactions" + } + ] + }, + { + "id": 1252, + "type": "message", + "date": "2025-01-11T13:29:03", + "date_unixtime": "1736598543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002828 BTC for 65.76 CZK @ 2,325,450 CZK\nFees are 0.23097864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (25.579949460833335095200743649 CZK)\nThe limits being 0.10 % (6.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08072166 BTC (80,565.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 998,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.00 % (107,148.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 530.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00294226 BTC (6,842.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002828 BTC for 65.76 CZK @ 2,325,450 CZK\nFees are 0.23097864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (25.579949460833335095200743649 CZK)\nThe limits being 0.10 % (6.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08072166 BTC (80,565.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 998,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.00 % (107,148.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 530.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00294226 BTC (6,842.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1221 transactions" + } + ] + }, + { + "id": 1253, + "type": "message", + "date": "2025-01-12T01:33:11", + "date_unixtime": "1736641991", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002832 BTC for 65.77 CZK @ 2,322,296 CZK\nFees are 0.23099164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (25.545257246529801063509355674 CZK)\nThe limits being 0.10 % (6.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08074998 BTC (80,631.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 998,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.57 % (106,893.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 464.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00297058 BTC (6,898.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002832 BTC for 65.77 CZK @ 2,322,296 CZK\nFees are 0.23099164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (25.545257246529801063509355674 CZK)\nThe limits being 0.10 % (6.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08074998 BTC (80,631.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 998,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.57 % (106,893.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 464.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00297058 BTC (6,898.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1222 transactions" + } + ] + }, + { + "id": 1254, + "type": "message", + "date": "2025-01-12T13:29:03", + "date_unixtime": "1736684943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002832 BTC for 65.77 CZK @ 2,322,337 CZK\nFees are 0.23099573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (25.545709371366882577644909484 CZK)\nThe limits being 0.10 % (6.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08077830 BTC (80,697.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 999,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.47 % (106,896.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 398.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00299890 BTC (6,964.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002832 BTC for 65.77 CZK @ 2,322,337 CZK\nFees are 0.23099573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (25.545709371366882577644909484 CZK)\nThe limits being 0.10 % (6.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08077830 BTC (80,697.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 999,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.47 % (106,896.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 398.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00299890 BTC (6,964.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1223 transactions" + } + ] + }, + { + "id": 1255, + "type": "message", + "date": "2025-01-13T01:29:04", + "date_unixtime": "1736728144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002811 BTC for 65.75 CZK @ 2,338,935 CZK\nFees are 0.23092157 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (25.728290100620790591166420907 CZK)\nThe limits being 0.10 % (7.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08080641 BTC (80,763.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 999,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,338,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.02 % (108,237.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 333.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00302701 BTC (7,079.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002811 BTC for 65.75 CZK @ 2,338,935 CZK\nFees are 0.23092157 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (25.728290100620790591166420907 CZK)\nThe limits being 0.10 % (7.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08080641 BTC (80,763.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 999,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,338,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.02 % (108,237.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 333.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00302701 BTC (7,079.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1224 transactions" + } + ] + }, + { + "id": 1256, + "type": "message", + "date": "2025-01-13T13:29:03", + "date_unixtime": "1736771343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002918 BTC for 65.76 CZK @ 2,253,676 CZK\nFees are 0.23097348 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (24.790431439584483779014709654 CZK)\nThe limits being 0.10 % (6.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08083559 BTC (80,829.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 999,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,253,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.38 % (101,347.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 267.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00305619 BTC (6,887.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002918 BTC for 65.76 CZK @ 2,253,676 CZK\nFees are 0.23097348 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (24.790431439584483779014709654 CZK)\nThe limits being 0.10 % (6.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08083559 BTC (80,829.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 999,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,253,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.38 % (101,347.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 267.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00305619 BTC (6,887.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1225 transactions" + } + ] + }, + { + "id": 1257, + "type": "message", + "date": "2025-01-14T01:29:03", + "date_unixtime": "1736814543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002813 BTC for 65.76 CZK @ 2,337,843 CZK\nFees are 0.23097791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (51.432540464577321004638759012 CZK)\nThe limits being 0.10 % (7.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08086372 BTC (80,895.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,000,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,337,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.69 % (108,151.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 201.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00308432 BTC (7,210.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002813 BTC for 65.76 CZK @ 2,337,843 CZK\nFees are 0.23097791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (51.432540464577321004638759012 CZK)\nThe limits being 0.10 % (7.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08086372 BTC (80,895.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,000,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,337,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.69 % (108,151.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 201.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00308432 BTC (7,210.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1226 transactions" + } + ] + }, + { + "id": 1258, + "type": "message", + "date": "2025-01-14T13:29:03", + "date_unixtime": "1736857743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002764 BTC for 65.77 CZK @ 2,379,472 CZK\nFees are 0.23099581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (26.174194212441692859362708091 CZK)\nThe limits being 0.10 % (7.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08089136 BTC (80,961.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,000,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.74 % (111,517.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,135.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00311196 BTC (7,404.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002764 BTC for 65.77 CZK @ 2,379,472 CZK\nFees are 0.23099581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (26.174194212441692859362708091 CZK)\nThe limits being 0.10 % (7.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08089136 BTC (80,961.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,000,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.74 % (111,517.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,135.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00311196 BTC (7,404.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1227 transactions" + } + ] + }, + { + "id": 1259, + "type": "message", + "date": "2025-01-15T01:29:03", + "date_unixtime": "1736900943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002755 BTC for 65.75 CZK @ 2,386,468 CZK\nFees are 0.23092057 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (26.251147360644278600216845397 CZK)\nThe limits being 0.10 % (7.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08091891 BTC (81,027.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,001,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,386,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.33 % (112,082.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,069.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00313951 BTC (7,492.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002755 BTC for 65.75 CZK @ 2,386,468 CZK\nFees are 0.23092057 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (26.251147360644278600216845397 CZK)\nThe limits being 0.10 % (7.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08091891 BTC (81,027.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,001,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,386,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.33 % (112,082.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,069.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00313951 BTC (7,492.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1228 transactions" + } + ] + }, + { + "id": 1260, + "type": "message", + "date": "2025-01-15T13:29:03", + "date_unixtime": "1736944143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002772 BTC for 65.76 CZK @ 2,372,331 CZK\nFees are 0.23096917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (26.095646012764846845564334353 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08094663 BTC (81,093.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,001,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,372,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.80 % (110,938.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,003.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00316723 BTC (7,513.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002772 BTC for 65.76 CZK @ 2,372,331 CZK\nFees are 0.23096917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (26.095646012764846845564334353 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08094663 BTC (81,093.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,001,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,372,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.80 % (110,938.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,003.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00316723 BTC (7,513.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1229 transactions" + } + ] + }, + { + "id": 1261, + "type": "message", + "date": "2025-01-16T01:29:03", + "date_unixtime": "1736987343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002669 BTC for 65.77 CZK @ 2,464,110 CZK\nFees are 0.23099044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (54.210409711382958446486379724 CZK)\nThe limits being 0.10 % (7.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08097332 BTC (81,159.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,002,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,464,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.85 % (118,367.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 937.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00319392 BTC (7,870.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002669 BTC for 65.77 CZK @ 2,464,110 CZK\nFees are 0.23099044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (54.210409711382958446486379724 CZK)\nThe limits being 0.10 % (7.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08097332 BTC (81,159.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,002,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,464,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.85 % (118,367.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 937.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00319392 BTC (7,870.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1230 transactions" + } + ] + }, + { + "id": 1262, + "type": "message", + "date": "2025-01-16T13:29:04", + "date_unixtime": "1737030544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002689 BTC for 65.75 CZK @ 2,445,075 CZK\nFees are 0.23092367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (26.895827534088110727366823037 CZK)\nThe limits being 0.10 % (7.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08100021 BTC (81,225.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,002,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,445,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.83 % (116,826.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 871.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00322081 BTC (7,875.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002689 BTC for 65.75 CZK @ 2,445,075 CZK\nFees are 0.23092367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (26.895827534088110727366823037 CZK)\nThe limits being 0.10 % (7.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08100021 BTC (81,225.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,002,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,445,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.83 % (116,826.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 871.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00322081 BTC (7,875.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1231 transactions" + } + ] + }, + { + "id": 1263, + "type": "message", + "date": "2025-01-17T01:29:03", + "date_unixtime": "1737073743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002667 BTC for 65.76 CZK @ 2,465,540 CZK\nFees are 0.23095135 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (54.241881922457749582498002400 CZK)\nThe limits being 0.10 % (8.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08102688 BTC (81,291.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,003,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,465,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.75 % (118,483.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 805.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00324748 BTC (8,006.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002667 BTC for 65.76 CZK @ 2,465,540 CZK\nFees are 0.23095135 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (54.241881922457749582498002400 CZK)\nThe limits being 0.10 % (8.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08102688 BTC (81,291.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,003,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,465,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.75 % (118,483.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 805.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00324748 BTC (8,006.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1232 transactions" + } + ] + }, + { + "id": 1264, + "type": "message", + "date": "2025-01-17T13:29:04", + "date_unixtime": "1737116944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002611 BTC for 65.75 CZK @ 2,518,020 CZK\nFees are 0.23091459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (27.698214539040588884900550104 CZK)\nThe limits being 0.10 % (8.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08105299 BTC (81,357.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,003,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,518,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.86 % (122,735.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 739.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00327359 BTC (8,242.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002611 BTC for 65.75 CZK @ 2,518,020 CZK\nFees are 0.23091459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (27.698214539040588884900550104 CZK)\nThe limits being 0.10 % (8.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08105299 BTC (81,357.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,003,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,518,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.86 % (122,735.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 739.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00327359 BTC (8,242.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1233 transactions" + } + ] + }, + { + "id": 1265, + "type": "message", + "date": "2025-01-18T01:29:04", + "date_unixtime": "1737160144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002559 BTC for 65.76 CZK @ 2,569,747 CZK\nFees are 0.23096495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (28.267217561123017465443826638 CZK)\nThe limits being 0.10 % (8.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08107858 BTC (81,423.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,004,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,569,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.89 % (126,927.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 673.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00329918 BTC (8,478.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002559 BTC for 65.76 CZK @ 2,569,747 CZK\nFees are 0.23096495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (28.267217561123017465443826638 CZK)\nThe limits being 0.10 % (8.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08107858 BTC (81,423.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,004,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,569,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.89 % (126,927.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 673.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00329918 BTC (8,478.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1234 transactions" + } + ] + }, + { + "id": 1266, + "type": "message", + "date": "2025-01-18T13:29:04", + "date_unixtime": "1737203344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002571 BTC for 65.75 CZK @ 2,557,189 CZK\nFees are 0.23091402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (28.129077272331747479698147111 CZK)\nThe limits being 0.10 % (8.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08110429 BTC (81,489.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,004,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,557,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.51 % (125,909.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 607.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00332489 BTC (8,502.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002571 BTC for 65.75 CZK @ 2,557,189 CZK\nFees are 0.23091402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (28.129077272331747479698147111 CZK)\nThe limits being 0.10 % (8.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08110429 BTC (81,489.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,004,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,557,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.51 % (125,909.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 607.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00332489 BTC (8,502.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1235 transactions" + } + ] + }, + { + "id": 1267, + "type": "message", + "date": "2025-01-19T01:29:03", + "date_unixtime": "1737246543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002559 BTC for 65.76 CZK @ 2,569,838 CZK\nFees are 0.23097315 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (56.536442116523391264610596012 CZK)\nThe limits being 0.10 % (8.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08112988 BTC (81,555.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,005,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,569,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.64 % (126,935.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 541.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00335048 BTC (8,610.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002559 BTC for 65.76 CZK @ 2,569,838 CZK\nFees are 0.23097315 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (56.536442116523391264610596012 CZK)\nThe limits being 0.10 % (8.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08112988 BTC (81,555.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,005,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,569,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.64 % (126,935.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 541.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00335048 BTC (8,610.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1236 transactions" + } + ] + }, + { + "id": 1268, + "type": "message", + "date": "2025-01-19T13:29:03", + "date_unixtime": "1737289743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002551 BTC for 65.77 CZK @ 2,578,189 CZK\nFees are 0.23099929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (28.360079333075122996599319083 CZK)\nThe limits being 0.10 % (8.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08115539 BTC (81,621.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,005,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,578,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.35 % (127,612.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 475.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00337599 BTC (8,703.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002551 BTC for 65.77 CZK @ 2,578,189 CZK\nFees are 0.23099929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (28.360079333075122996599319083 CZK)\nThe limits being 0.10 % (8.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08115539 BTC (81,621.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,005,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,578,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.35 % (127,612.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 475.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00337599 BTC (8,703.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1237 transactions" + } + ] + }, + { + "id": 1269, + "type": "message", + "date": "2025-01-20T01:29:03", + "date_unixtime": "1737332943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002640 BTC for 65.75 CZK @ 2,490,580 CZK\nFees are 0.23093507 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (27.396383462049493439627968776 CZK)\nThe limits being 0.10 % (8.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08118179 BTC (81,687.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,006,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,490,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.52 % (120,502.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 409.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00340239 BTC (8,473.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002640 BTC for 65.75 CZK @ 2,490,580 CZK\nFees are 0.23093507 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (27.396383462049493439627968776 CZK)\nThe limits being 0.10 % (8.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08118179 BTC (81,687.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,006,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,490,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.52 % (120,502.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 409.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00340239 BTC (8,473.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1238 transactions" + } + ] + }, + { + "id": 1270, + "type": "message", + "date": "2025-01-20T13:29:03", + "date_unixtime": "1737376143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002516 BTC for 65.76 CZK @ 2,613,694 CZK\nFees are 0.23096748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (57.501273808759960171197311795 CZK)\nThe limits being 0.10 % (8.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08120695 BTC (81,753.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,006,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,613,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.62 % (130,496.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 343.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00342755 BTC (8,958.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002516 BTC for 65.76 CZK @ 2,613,694 CZK\nFees are 0.23096748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (57.501273808759960171197311795 CZK)\nThe limits being 0.10 % (8.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08120695 BTC (81,753.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,006,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,613,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.62 % (130,496.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 343.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00342755 BTC (8,958.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1239 transactions" + } + ] + }, + { + "id": 1271, + "type": "message", + "date": "2025-01-21T01:29:04", + "date_unixtime": "1737419344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002661 BTC for 65.76 CZK @ 2,471,353 CZK\nFees are 0.23097501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (81.55463355033032638302581326 CZK)\nThe limits being 0.10 % (8.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08123356 BTC (81,819.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,007,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,471,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.37 % (118,937.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 277.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00345416 BTC (8,536.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002661 BTC for 65.76 CZK @ 2,471,353 CZK\nFees are 0.23097501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (81.55463355033032638302581326 CZK)\nThe limits being 0.10 % (8.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08123356 BTC (81,819.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,007,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,471,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.37 % (118,937.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 277.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00345416 BTC (8,536.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1240 transactions" + } + ] + }, + { + "id": 1272, + "type": "message", + "date": "2025-01-21T13:29:04", + "date_unixtime": "1737462544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002587 BTC for 65.76 CZK @ 2,542,038 CZK\nFees are 0.23097444 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (55.924840228123099880992483015 CZK)\nThe limits being 0.10 % (8.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08125943 BTC (81,885.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,007,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,542,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.26 % (124,679.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 211.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00348003 BTC (8,846.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002587 BTC for 65.76 CZK @ 2,542,038 CZK\nFees are 0.23097444 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (55.924840228123099880992483015 CZK)\nThe limits being 0.10 % (8.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08125943 BTC (81,885.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,007,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,542,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.26 % (124,679.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 211.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00348003 BTC (8,846.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1241 transactions" + } + ] + }, + { + "id": 1273, + "type": "message", + "date": "2025-01-22T01:29:03", + "date_unixtime": "1737505743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002565 BTC for 65.75 CZK @ 2,563,244 CZK\nFees are 0.23092062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (56.391365581089966792639018796 CZK)\nThe limits being 0.10 % (8.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08128508 BTC (81,951.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,008,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,563,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.24 % (126,402.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 145.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00350568 BTC (8,985.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002565 BTC for 65.75 CZK @ 2,563,244 CZK\nFees are 0.23092062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (56.391365581089966792639018796 CZK)\nThe limits being 0.10 % (8.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08128508 BTC (81,951.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,008,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,563,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.24 % (126,402.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 145.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00350568 BTC (8,985.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1242 transactions" + } + ] + }, + { + "id": 1274, + "type": "message", + "date": "2025-01-22T13:29:04", + "date_unixtime": "1737548944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002581 BTC for 65.76 CZK @ 2,548,008 CZK\nFees are 0.23097992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (28.028088304649341408132365855 CZK)\nThe limits being 0.10 % (9.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08131089 BTC (82,017.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,008,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,548,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.61 % (125,163.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,079.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00353149 BTC (8,998.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002581 BTC for 65.76 CZK @ 2,548,008 CZK\nFees are 0.23097992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (28.028088304649341408132365855 CZK)\nThe limits being 0.10 % (9.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08131089 BTC (82,017.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,008,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,548,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.61 % (125,163.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,079.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00353149 BTC (8,998.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1243 transactions" + } + ] + }, + { + "id": 1275, + "type": "message", + "date": "2025-01-23T01:29:03", + "date_unixtime": "1737592143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002626 BTC for 65.77 CZK @ 2,504,398 CZK\nFees are 0.23098482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (27.548374172118833132019652466 CZK)\nThe limits being 0.10 % (8.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08133715 BTC (82,083.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,009,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,504,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.16 % (121,617.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,013.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00355775 BTC (8,910.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002626 BTC for 65.77 CZK @ 2,504,398 CZK\nFees are 0.23098482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (27.548374172118833132019652466 CZK)\nThe limits being 0.10 % (8.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08133715 BTC (82,083.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,009,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,504,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.16 % (121,617.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,013.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00355775 BTC (8,910.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1244 transactions" + } + ] + }, + { + "id": 1276, + "type": "message", + "date": "2025-01-23T13:29:05", + "date_unixtime": "1737635345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002666 BTC for 65.75 CZK @ 2,466,172 CZK\nFees are 0.23092389 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (27.127888225793369119559411527 CZK)\nThe limits being 0.10 % (8.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08136381 BTC (82,149.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,009,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,466,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.26 % (118,507.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 947.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00358441 BTC (8,839.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002666 BTC for 65.75 CZK @ 2,466,172 CZK\nFees are 0.23092389 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.31 % (27.127888225793369119559411527 CZK)\nThe limits being 0.10 % (8.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08136381 BTC (82,149.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,009,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,466,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.26 % (118,507.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 947.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00358441 BTC (8,839.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1245 transactions" + } + ] + }, + { + "id": 1277, + "type": "message", + "date": "2025-01-24T01:29:04", + "date_unixtime": "1737678544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002620 BTC for 65.76 CZK @ 2,509,875 CZK\nFees are 0.23096111 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.608627908807722589258206963 CZK)\nThe limits being 0.10 % (9.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08139001 BTC (82,215.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,010,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,509,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.47 % (122,063.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 881.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00361061 BTC (9,062.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002620 BTC for 65.76 CZK @ 2,509,875 CZK\nFees are 0.23096111 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.608627908807722589258206963 CZK)\nThe limits being 0.10 % (9.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08139001 BTC (82,215.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,010,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,509,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.47 % (122,063.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 881.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00361061 BTC (9,062.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1246 transactions" + } + ] + }, + { + "id": 1278, + "type": "message", + "date": "2025-01-24T13:29:03", + "date_unixtime": "1737721743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002597 BTC for 65.76 CZK @ 2,532,283 CZK\nFees are 0.23097746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.855112445677709840740312257 CZK)\nThe limits being 0.10 % (9.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08141598 BTC (82,281.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,010,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,532,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.57 % (123,886.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 815.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00363658 BTC (9,208.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002597 BTC for 65.76 CZK @ 2,532,283 CZK\nFees are 0.23097746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.855112445677709840740312257 CZK)\nThe limits being 0.10 % (9.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08141598 BTC (82,281.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,010,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,532,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.57 % (123,886.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 815.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00363658 BTC (9,208.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1247 transactions" + } + ] + }, + { + "id": 1279, + "type": "message", + "date": "2025-01-25T01:29:03", + "date_unixtime": "1737764943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002617 BTC for 65.75 CZK @ 2,512,536 CZK\nFees are 0.23094120 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (55.275789281648734587522197339 CZK)\nThe limits being 0.10 % (9.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08144215 BTC (82,347.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,011,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,512,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.49 % (122,279.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 749.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00366275 BTC (9,202.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002617 BTC for 65.75 CZK @ 2,512,536 CZK\nFees are 0.23094120 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (55.275789281648734587522197339 CZK)\nThe limits being 0.10 % (9.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08144215 BTC (82,347.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,011,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,512,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.49 % (122,279.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 749.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00366275 BTC (9,202.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1248 transactions" + } + ] + }, + { + "id": 1280, + "type": "message", + "date": "2025-01-25T13:29:04", + "date_unixtime": "1737808144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002621 BTC for 65.75 CZK @ 2,508,725 CZK\nFees are 0.23094341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.595979475878682527977717059 CZK)\nThe limits being 0.10 % (9.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08146836 BTC (82,413.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,011,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,508,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.00 % (121,968.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 683.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00368896 BTC (9,254.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002621 BTC for 65.75 CZK @ 2,508,725 CZK\nFees are 0.23094341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.595979475878682527977717059 CZK)\nThe limits being 0.10 % (9.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08146836 BTC (82,413.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,011,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,508,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.00 % (121,968.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 683.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00368896 BTC (9,254.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1249 transactions" + } + ] + }, + { + "id": 1281, + "type": "message", + "date": "2025-01-26T01:29:04", + "date_unixtime": "1737851344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002616 BTC for 65.76 CZK @ 2,513,691 CZK\nFees are 0.23095906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.650598210163510282817478275 CZK)\nThe limits being 0.10 % (9.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08149452 BTC (82,479.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,012,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,513,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.37 % (122,372.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 617.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00371512 BTC (9,338.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002616 BTC for 65.76 CZK @ 2,513,691 CZK\nFees are 0.23095906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (27.650598210163510282817478275 CZK)\nThe limits being 0.10 % (9.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08149452 BTC (82,479.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,012,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,513,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.37 % (122,372.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 617.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00371512 BTC (9,338.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1250 transactions" + } + ] + }, + { + "id": 1282, + "type": "message", + "date": "2025-01-26T13:29:03", + "date_unixtime": "1737894543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002615 BTC for 65.77 CZK @ 2,515,043 CZK\nFees are 0.23099498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.665474177663074078202391057 CZK)\nThe limits being 0.10 % (9.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08152067 BTC (82,545.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,012,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,515,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.38 % (122,482.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 551.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00374127 BTC (9,409.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002615 BTC for 65.77 CZK @ 2,515,043 CZK\nFees are 0.23099498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.665474177663074078202391057 CZK)\nThe limits being 0.10 % (9.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08152067 BTC (82,545.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,012,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,515,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.38 % (122,482.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 551.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00374127 BTC (9,409.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1251 transactions" + } + ] + }, + { + "id": 1283, + "type": "message", + "date": "2025-01-27T01:29:03", + "date_unixtime": "1737937743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002660 BTC for 65.76 CZK @ 2,472,204 CZK\nFees are 0.23096773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.194240117108915787225912315 CZK)\nThe limits being 0.10 % (9.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08154727 BTC (82,611.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,013,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,472,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.04 % (118,990.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 485.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00376787 BTC (9,314.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002660 BTC for 65.76 CZK @ 2,472,204 CZK\nFees are 0.23096773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.194240117108915787225912315 CZK)\nThe limits being 0.10 % (9.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08154727 BTC (82,611.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,013,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,472,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.04 % (118,990.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 485.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00376787 BTC (9,314.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1252 transactions" + } + ] + }, + { + "id": 1284, + "type": "message", + "date": "2025-01-27T13:29:03", + "date_unixtime": "1737980943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002760 BTC for 65.76 CZK @ 2,382,782 CZK\nFees are 0.23098240 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (26.210606701905649068838774434 CZK)\nThe limits being 0.10 % (9.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08157487 BTC (82,677.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,013,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,382,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.10 % (111,697.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 419.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00379547 BTC (9,043.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002760 BTC for 65.76 CZK @ 2,382,782 CZK\nFees are 0.23098240 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (26.210606701905649068838774434 CZK)\nThe limits being 0.10 % (9.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08157487 BTC (82,677.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,013,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,382,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.10 % (111,697.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 419.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00379547 BTC (9,043.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1253 transactions" + } + ] + }, + { + "id": 1285, + "type": "message", + "date": "2025-01-28T01:29:04", + "date_unixtime": "1738024144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002664 BTC for 65.75 CZK @ 2,468,068 CZK\nFees are 0.23092812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.148752077563363064110448266 CZK)\nThe limits being 0.10 % (9.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08160151 BTC (82,743.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,013,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,468,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.40 % (118,654.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 353.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00382211 BTC (9,433.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002664 BTC for 65.75 CZK @ 2,468,068 CZK\nFees are 0.23092812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.148752077563363064110448266 CZK)\nThe limits being 0.10 % (9.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08160151 BTC (82,743.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,013,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,468,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.40 % (118,654.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 353.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00382211 BTC (9,433.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1254 transactions" + } + ] + }, + { + "id": 1286, + "type": "message", + "date": "2025-01-28T13:29:03", + "date_unixtime": "1738067343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002647 BTC for 65.77 CZK @ 2,484,644 CZK\nFees are 0.23099547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.331079174156037548218560313 CZK)\nThe limits being 0.10 % (9.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08162798 BTC (82,809.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,014,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,484,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.92 % (120,007.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 287.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00384858 BTC (9,562.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002647 BTC for 65.77 CZK @ 2,484,644 CZK\nFees are 0.23099547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (27.331079174156037548218560313 CZK)\nThe limits being 0.10 % (9.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08162798 BTC (82,809.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,014,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,484,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.92 % (120,007.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 287.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00384858 BTC (9,562.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1255 transactions" + } + ] + }, + { + "id": 1287, + "type": "message", + "date": "2025-01-29T01:29:03", + "date_unixtime": "1738110543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002684 BTC for 65.75 CZK @ 2,449,771 CZK\nFees are 0.23093694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (26.947479898225064732452808612 CZK)\nThe limits being 0.10 % (9.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08165482 BTC (82,875.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,014,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,449,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.37 % (117,160.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 221.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00387542 BTC (9,493.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002684 BTC for 65.75 CZK @ 2,449,771 CZK\nFees are 0.23093694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (26.947479898225064732452808612 CZK)\nThe limits being 0.10 % (9.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08165482 BTC (82,875.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,014,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,449,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.37 % (117,160.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 221.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00387542 BTC (9,493.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1256 transactions" + } + ] + }, + { + "id": 1288, + "type": "message", + "date": "2025-01-29T13:29:03", + "date_unixtime": "1738153743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002645 BTC for 65.77 CZK @ 2,486,462 CZK\nFees are 0.23098987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (27.351082887022076795488003707 CZK)\nThe limits being 0.10 % (9.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08168127 BTC (82,941.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,015,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,486,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.87 % (120,156.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,155.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00390187 BTC (9,701.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002645 BTC for 65.77 CZK @ 2,486,462 CZK\nFees are 0.23098987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (27.351082887022076795488003707 CZK)\nThe limits being 0.10 % (9.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08168127 BTC (82,941.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,015,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,486,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.87 % (120,156.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,155.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00390187 BTC (9,701.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1257 transactions" + } + ] + }, + { + "id": 1289, + "type": "message", + "date": "2025-01-30T01:29:03", + "date_unixtime": "1738196943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002628 BTC for 65.77 CZK @ 2,502,517 CZK\nFees are 0.23098715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (27.527686760721038010797824055 CZK)\nThe limits being 0.10 % (9.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08170755 BTC (83,007.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,015,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,502,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.33 % (121,467.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,089.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00392815 BTC (9,830.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002628 BTC for 65.77 CZK @ 2,502,517 CZK\nFees are 0.23098715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (27.527686760721038010797824055 CZK)\nThe limits being 0.10 % (9.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08170755 BTC (83,007.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,015,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,502,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.33 % (121,467.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,089.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00392815 BTC (9,830.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1258 transactions" + } + ] + }, + { + "id": 1290, + "type": "message", + "date": "2025-01-30T13:29:03", + "date_unixtime": "1738240143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002583 BTC for 65.76 CZK @ 2,545,817 CZK\nFees are 0.23096009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (28.003982401509544314604652204 CZK)\nThe limits being 0.10 % (10.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08173338 BTC (83,073.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,016,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,545,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.48 % (125,004.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,023.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00395398 BTC (10,066.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002583 BTC for 65.76 CZK @ 2,545,817 CZK\nFees are 0.23096009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (28.003982401509544314604652204 CZK)\nThe limits being 0.10 % (10.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08173338 BTC (83,073.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,016,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,545,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.48 % (125,004.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,023.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00395398 BTC (10,066.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1259 transactions" + } + ] + }, + { + "id": 1291, + "type": "message", + "date": "2025-01-31T01:29:04", + "date_unixtime": "1738283344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002588 BTC for 65.77 CZK @ 2,541,219 CZK\nFees are 0.23098927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (27.953410725135903780354539637 CZK)\nThe limits being 0.10 % (10.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08175926 BTC (83,139.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,016,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,541,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.90 % (124,628.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 957.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00397986 BTC (10,113.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002588 BTC for 65.77 CZK @ 2,541,219 CZK\nFees are 0.23098927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (27.953410725135903780354539637 CZK)\nThe limits being 0.10 % (10.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08175926 BTC (83,139.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,016,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,541,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.90 % (124,628.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 957.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00397986 BTC (10,113.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1260 transactions" + } + ] + }, + { + "id": 1292, + "type": "message", + "date": "2025-01-31T13:29:03", + "date_unixtime": "1738326543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002578 BTC for 65.75 CZK @ 2,550,490 CZK\nFees are 0.23093619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (28.055392158863682309743670621 CZK)\nThe limits being 0.10 % (10.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08178504 BTC (83,205.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,017,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,550,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.70 % (125,386.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 891.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00400564 BTC (10,216.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002578 BTC for 65.75 CZK @ 2,550,490 CZK\nFees are 0.23093619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (28.055392158863682309743670621 CZK)\nThe limits being 0.10 % (10.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08178504 BTC (83,205.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,017,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,550,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.70 % (125,386.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 891.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00400564 BTC (10,216.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1261 transactions" + } + ] + }, + { + "id": 1293, + "type": "message", + "date": "2025-02-01T01:29:03", + "date_unixtime": "1738369743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002633 BTC for 65.75 CZK @ 2,497,163 CZK\nFees are 0.23093147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (27.468789396247202395111223896 CZK)\nThe limits being 0.10 % (10.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08181137 BTC (83,271.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,017,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,497,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.34 % (121,025.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 825.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00403197 BTC (10,068.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002633 BTC for 65.75 CZK @ 2,497,163 CZK\nFees are 0.23093147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (27.468789396247202395111223896 CZK)\nThe limits being 0.10 % (10.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08181137 BTC (83,271.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,017,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,497,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.34 % (121,025.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 825.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00403197 BTC (10,068.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1262 transactions" + } + ] + }, + { + "id": 1294, + "type": "message", + "date": "2025-02-01T13:29:03", + "date_unixtime": "1738412943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002635 BTC for 65.74 CZK @ 2,495,063 CZK\nFees are 0.23091260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (27.445698014822882718833229806 CZK)\nThe limits being 0.10 % (10.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08183772 BTC (83,337.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,018,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,495,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.02 % (120,853.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 759.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00405832 BTC (10,125.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002635 BTC for 65.74 CZK @ 2,495,063 CZK\nFees are 0.23091260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (27.445698014822882718833229806 CZK)\nThe limits being 0.10 % (10.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08183772 BTC (83,337.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,018,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,495,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.02 % (120,853.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 759.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00405832 BTC (10,125.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1263 transactions" + } + ] + }, + { + "id": 1295, + "type": "message", + "date": "2025-02-02T01:29:03", + "date_unixtime": "1738456143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002665 BTC for 65.76 CZK @ 2,467,549 CZK\nFees are 0.23096620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (27.143039878997617157958402626 CZK)\nThe limits being 0.10 % (10.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08186437 BTC (83,403.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,018,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,467,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.20 % (118,601.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 693.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00408497 BTC (10,079.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002665 BTC for 65.76 CZK @ 2,467,549 CZK\nFees are 0.23096620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (27.143039878997617157958402626 CZK)\nThe limits being 0.10 % (10.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08186437 BTC (83,403.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,018,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,467,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.20 % (118,601.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 693.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00408497 BTC (10,079.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1264 transactions" + } + ] + }, + { + "id": 1296, + "type": "message", + "date": "2025-02-02T13:29:03", + "date_unixtime": "1738499343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002723 BTC for 65.75 CZK @ 2,414,752 CZK\nFees are 0.23094341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (26.562270615460650850923713386 CZK)\nThe limits being 0.10 % (9.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08189160 BTC (83,469.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,019,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,414,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.91 % (114,278.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 627.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00411220 BTC (9,929.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002723 BTC for 65.75 CZK @ 2,414,752 CZK\nFees are 0.23094341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (26.562270615460650850923713386 CZK)\nThe limits being 0.10 % (9.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08189160 BTC (83,469.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,019,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,414,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.91 % (114,278.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 627.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00411220 BTC (9,929.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1265 transactions" + } + ] + }, + { + "id": 1297, + "type": "message", + "date": "2025-02-03T01:29:03", + "date_unixtime": "1738542543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002721 BTC for 65.76 CZK @ 2,416,778 CZK\nFees are 0.23096741 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (26.584556999784107333264115837 CZK)\nThe limits being 0.10 % (10.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08191881 BTC (83,535.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,019,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,416,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.00 % (114,444.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 561.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00413941 BTC (10,004.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002721 BTC for 65.76 CZK @ 2,416,778 CZK\nFees are 0.23096741 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (26.584556999784107333264115837 CZK)\nThe limits being 0.10 % (10.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08191881 BTC (83,535.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,019,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,416,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.00 % (114,444.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 561.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00413941 BTC (10,004.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1266 transactions" + } + ] + }, + { + "id": 1298, + "type": "message", + "date": "2025-02-03T13:29:04", + "date_unixtime": "1738585744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002786 BTC for 65.75 CZK @ 2,359,975 CZK\nFees are 0.23092656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (25.959722229197092301853777393 CZK)\nThe limits being 0.10 % (9.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08194667 BTC (83,601.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,020,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,359,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.33 % (109,790.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 495.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00416727 BTC (9,834.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002786 BTC for 65.75 CZK @ 2,359,975 CZK\nFees are 0.23092656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (25.959722229197092301853777393 CZK)\nThe limits being 0.10 % (9.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08194667 BTC (83,601.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,020,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,359,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.33 % (109,790.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 495.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00416727 BTC (9,834.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1267 transactions" + } + ] + }, + { + "id": 1299, + "type": "message", + "date": "2025-02-04T01:29:03", + "date_unixtime": "1738628943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002642 BTC for 65.76 CZK @ 2,488,954 CZK\nFees are 0.23095914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (27.378497013669416693352222557 CZK)\nThe limits being 0.10 % (10.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08197309 BTC (83,667.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,020,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,488,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.86 % (120,360.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 429.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00419369 BTC (10,437.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002642 BTC for 65.76 CZK @ 2,488,954 CZK\nFees are 0.23095914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (27.378497013669416693352222557 CZK)\nThe limits being 0.10 % (10.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08197309 BTC (83,667.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,020,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,488,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.86 % (120,360.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 429.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00419369 BTC (10,437.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1268 transactions" + } + ] + }, + { + "id": 1300, + "type": "message", + "date": "2025-02-04T13:29:04", + "date_unixtime": "1738672144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002702 BTC for 65.76 CZK @ 2,433,870 CZK\nFees are 0.23097672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (26.772574241081455468406838094 CZK)\nThe limits being 0.10 % (10.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08200011 BTC (83,733.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,021,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,433,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.35 % (115,844.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 363.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00422071 BTC (10,272.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002702 BTC for 65.76 CZK @ 2,433,870 CZK\nFees are 0.23097672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (26.772574241081455468406838094 CZK)\nThe limits being 0.10 % (10.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08200011 BTC (83,733.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,021,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,433,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.35 % (115,844.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 363.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00422071 BTC (10,272.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1269 transactions" + } + ] + }, + { + "id": 1301, + "type": "message", + "date": "2025-02-05T01:29:04", + "date_unixtime": "1738715344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002758 BTC for 65.77 CZK @ 2,384,567 CZK\nFees are 0.23098788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (26.230235480748489785388558465 CZK)\nThe limits being 0.10 % (10.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08202769 BTC (83,799.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,021,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.42 % (111,801.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 297.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00424829 BTC (10,130.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002758 BTC for 65.77 CZK @ 2,384,567 CZK\nFees are 0.23098788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (26.230235480748489785388558465 CZK)\nThe limits being 0.10 % (10.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08202769 BTC (83,799.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,021,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.42 % (111,801.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 297.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00424829 BTC (10,130.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1270 transactions" + } + ] + }, + { + "id": 1302, + "type": "message", + "date": "2025-02-05T13:29:04", + "date_unixtime": "1738758544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002743 BTC for 65.75 CZK @ 2,397,005 CZK\nFees are 0.23092988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (26.367052484368872271875268496 CZK)\nThe limits being 0.10 % (10.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08205512 BTC (83,865.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,022,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,397,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.53 % (112,821.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,231.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00427572 BTC (10,248.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002743 BTC for 65.75 CZK @ 2,397,005 CZK\nFees are 0.23092988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (26.367052484368872271875268496 CZK)\nThe limits being 0.10 % (10.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08205512 BTC (83,865.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,022,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,397,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.53 % (112,821.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,231.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00427572 BTC (10,248.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1271 transactions" + } + ] + }, + { + "id": 1303, + "type": "message", + "date": "2025-02-06T01:29:03", + "date_unixtime": "1738801743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002796 BTC for 65.75 CZK @ 2,351,615 CZK\nFees are 0.23093449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (25.867764708356232442531255056 CZK)\nThe limits being 0.10 % (10.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08208308 BTC (83,931.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,022,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,351,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.98 % (109,096.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,165.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00430368 BTC (10,120.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002796 BTC for 65.75 CZK @ 2,351,615 CZK\nFees are 0.23093449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (25.867764708356232442531255056 CZK)\nThe limits being 0.10 % (10.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08208308 BTC (83,931.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,022,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,351,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.98 % (109,096.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,165.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00430368 BTC (10,120.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1272 transactions" + } + ] + }, + { + "id": 1304, + "type": "message", + "date": "2025-02-06T13:29:03", + "date_unixtime": "1738844943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002735 BTC for 65.76 CZK @ 2,404,270 CZK\nFees are 0.23095425 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (26.446968081914396504373631959 CZK)\nThe limits being 0.10 % (10.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08211043 BTC (83,997.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,022,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,404,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.03 % (113,418.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,099.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00433103 BTC (10,412.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002735 BTC for 65.76 CZK @ 2,404,270 CZK\nFees are 0.23095425 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (26.446968081914396504373631959 CZK)\nThe limits being 0.10 % (10.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08211043 BTC (83,997.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,022,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,404,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.03 % (113,418.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,099.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00433103 BTC (10,412.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1273 transactions" + } + ] + }, + { + "id": 1305, + "type": "message", + "date": "2025-02-07T01:29:04", + "date_unixtime": "1738888144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002799 BTC for 65.76 CZK @ 2,349,337 CZK\nFees are 0.23095836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (25.842710446627229847374133370 CZK)\nThe limits being 0.10 % (10.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08213842 BTC (84,063.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,023,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,349,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.56 % (108,907.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,033.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00435902 BTC (10,240.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002799 BTC for 65.76 CZK @ 2,349,337 CZK\nFees are 0.23095836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (25.842710446627229847374133370 CZK)\nThe limits being 0.10 % (10.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08213842 BTC (84,063.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,023,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,349,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.56 % (108,907.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,033.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00435902 BTC (10,240.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1274 transactions" + } + ] + }, + { + "id": 1306, + "type": "message", + "date": "2025-02-07T13:29:03", + "date_unixtime": "1738931343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002769 BTC for 65.75 CZK @ 2,374,519 CZK\nFees are 0.23093194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (26.119707808873349200513982931 CZK)\nThe limits being 0.10 % (10.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08216611 BTC (84,128.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,023,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,374,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.91 % (110,976.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 967.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00438671 BTC (10,416.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002769 BTC for 65.75 CZK @ 2,374,519 CZK\nFees are 0.23093194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (26.119707808873349200513982931 CZK)\nThe limits being 0.10 % (10.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08216611 BTC (84,128.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,023,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,374,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.91 % (110,976.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 967.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00438671 BTC (10,416.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1275 transactions" + } + ] + }, + { + "id": 1307, + "type": "message", + "date": "2025-02-08T01:29:04", + "date_unixtime": "1738974544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002781 BTC for 65.75 CZK @ 2,364,324 CZK\nFees are 0.23093689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (26.007559109818261041407214268 CZK)\nThe limits being 0.10 % (10.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08219392 BTC (84,194.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,024,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,364,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.81 % (110,138.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 901.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00441452 BTC (10,437.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002781 BTC for 65.75 CZK @ 2,364,324 CZK\nFees are 0.23093689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (26.007559109818261041407214268 CZK)\nThe limits being 0.10 % (10.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08219392 BTC (84,194.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,024,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,364,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.81 % (110,138.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 901.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00441452 BTC (10,437.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1276 transactions" + } + ] + }, + { + "id": 1308, + "type": "message", + "date": "2025-02-08T13:29:04", + "date_unixtime": "1739017744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002801 BTC for 65.75 CZK @ 2,347,458 CZK\nFees are 0.23093848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (25.822034064992447889011095937 CZK)\nThe limits being 0.10 % (10.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08222193 BTC (84,260.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,024,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,347,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.07 % (108,751.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 835.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00444253 BTC (10,428.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002801 BTC for 65.75 CZK @ 2,347,458 CZK\nFees are 0.23093848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (25.822034064992447889011095937 CZK)\nThe limits being 0.10 % (10.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08222193 BTC (84,260.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,024,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,347,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.07 % (108,751.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 835.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00444253 BTC (10,428.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1277 transactions" + } + ] + }, + { + "id": 1309, + "type": "message", + "date": "2025-02-09T01:29:03", + "date_unixtime": "1739060943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002789 BTC for 65.75 CZK @ 2,357,511 CZK\nFees are 0.23093385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (25.932616870712277555625943832 CZK)\nThe limits being 0.10 % (10.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08224982 BTC (84,326.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,025,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,357,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.94 % (109,577.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 769.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00447042 BTC (10,539.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002789 BTC for 65.75 CZK @ 2,357,511 CZK\nFees are 0.23093385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (25.932616870712277555625943832 CZK)\nThe limits being 0.10 % (10.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08224982 BTC (84,326.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,025,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,357,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.94 % (109,577.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 769.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00447042 BTC (10,539.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1278 transactions" + } + ] + }, + { + "id": 1310, + "type": "message", + "date": "2025-02-09T13:29:03", + "date_unixtime": "1739104143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002783 BTC for 65.76 CZK @ 2,362,876 CZK\nFees are 0.23096148 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (25.991635536491843764216546435 CZK)\nThe limits being 0.10 % (10.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08227765 BTC (84,392.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,025,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,362,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.37 % (110,018.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 703.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00449825 BTC (10,628.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002783 BTC for 65.76 CZK @ 2,362,876 CZK\nFees are 0.23096148 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (25.991635536491843764216546435 CZK)\nThe limits being 0.10 % (10.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08227765 BTC (84,392.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,025,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,362,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.37 % (110,018.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 703.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00449825 BTC (10,628.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1279 transactions" + } + ] + }, + { + "id": 1311, + "type": "message", + "date": "2025-02-10T01:29:03", + "date_unixtime": "1739147343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002779 BTC for 65.76 CZK @ 2,366,357 CZK\nFees are 0.23096925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.029922683346681720132827655 CZK)\nThe limits being 0.10 % (10.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08230544 BTC (84,458.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,026,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,366,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.60 % (110,305.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 637.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00452604 BTC (10,710.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002779 BTC for 65.76 CZK @ 2,366,357 CZK\nFees are 0.23096925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.029922683346681720132827655 CZK)\nThe limits being 0.10 % (10.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08230544 BTC (84,458.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,026,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,366,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.60 % (110,305.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 637.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00452604 BTC (10,710.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1280 transactions" + } + ] + }, + { + "id": 1312, + "type": "message", + "date": "2025-02-10T13:29:04", + "date_unixtime": "1739190544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002759 BTC for 65.76 CZK @ 2,383,409 CZK\nFees are 0.23095943 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.217498829125245403321069262 CZK)\nThe limits being 0.10 % (10.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08233303 BTC (84,524.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,026,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,383,409 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.16 % (111,708.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 571.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00455363 BTC (10,853.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002759 BTC for 65.76 CZK @ 2,383,409 CZK\nFees are 0.23095943 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.217498829125245403321069262 CZK)\nThe limits being 0.10 % (10.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08233303 BTC (84,524.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,026,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,383,409 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.16 % (111,708.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 571.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00455363 BTC (10,853.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1281 transactions" + } + ] + }, + { + "id": 1313, + "type": "message", + "date": "2025-02-11T01:29:03", + "date_unixtime": "1739233743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002753 BTC for 65.75 CZK @ 2,388,360 CZK\nFees are 0.23093591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.271963178276685433166988551 CZK)\nThe limits being 0.10 % (10.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08236056 BTC (84,590.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,027,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.54 % (112,115.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 505.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00458116 BTC (10,941.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002753 BTC for 65.75 CZK @ 2,388,360 CZK\nFees are 0.23093591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.271963178276685433166988551 CZK)\nThe limits being 0.10 % (10.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08236056 BTC (84,590.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,027,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.54 % (112,115.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 505.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00458116 BTC (10,941.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1282 transactions" + } + ] + }, + { + "id": 1314, + "type": "message", + "date": "2025-02-11T13:29:03", + "date_unixtime": "1739276943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002756 BTC for 65.75 CZK @ 2,385,847 CZK\nFees are 0.23094429 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.244317476640177376280261465 CZK)\nThe limits being 0.10 % (11.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08238812 BTC (84,656.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,027,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,385,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.19 % (111,908.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 439.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00460872 BTC (10,995.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002756 BTC for 65.75 CZK @ 2,385,847 CZK\nFees are 0.23094429 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (26.244317476640177376280261465 CZK)\nThe limits being 0.10 % (11.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08238812 BTC (84,656.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,027,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,385,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.19 % (111,908.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 439.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00460872 BTC (10,995.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1283 transactions" + } + ] + }, + { + "id": 1315, + "type": "message", + "date": "2025-02-12T01:29:03", + "date_unixtime": "1739320143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002816 BTC for 65.75 CZK @ 2,335,005 CZK\nFees are 0.23094355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (25.685051651251868460388639761 CZK)\nThe limits being 0.10 % (10.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08241628 BTC (84,722.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,027,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,335,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.14 % (107,719.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 373.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00463688 BTC (10,827.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002816 BTC for 65.75 CZK @ 2,335,005 CZK\nFees are 0.23094355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (25.685051651251868460388639761 CZK)\nThe limits being 0.10 % (10.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08241628 BTC (84,722.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,027,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,335,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.14 % (107,719.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 373.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00463688 BTC (10,827.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1284 transactions" + } + ] + }, + { + "id": 1316, + "type": "message", + "date": "2025-02-12T13:29:03", + "date_unixtime": "1739363343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002815 BTC for 65.76 CZK @ 2,336,208 CZK\nFees are 0.23098047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (25.698284533086240786023341041 CZK)\nThe limits being 0.10 % (10.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08244443 BTC (84,788.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,028,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.16 % (107,818.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 307.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00466503 BTC (10,898.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002815 BTC for 65.76 CZK @ 2,336,208 CZK\nFees are 0.23098047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (25.698284533086240786023341041 CZK)\nThe limits being 0.10 % (10.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08244443 BTC (84,788.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,028,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.16 % (107,818.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 307.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00466503 BTC (10,898.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1285 transactions" + } + ] + }, + { + "id": 1317, + "type": "message", + "date": "2025-02-13T01:29:03", + "date_unixtime": "1739406543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002778 BTC for 65.75 CZK @ 2,366,821 CZK\nFees are 0.23093142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (26.035028373694230022136345684 CZK)\nThe limits being 0.10 % (11.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08247221 BTC (84,854.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,028,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,366,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.04 % (110,342.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 241.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00469281 BTC (11,107.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002778 BTC for 65.75 CZK @ 2,366,821 CZK\nFees are 0.23093142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (26.035028373694230022136345684 CZK)\nThe limits being 0.10 % (11.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08247221 BTC (84,854.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,028,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,366,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.04 % (110,342.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 241.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00469281 BTC (11,107.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1286 transactions" + } + ] + }, + { + "id": 1318, + "type": "message", + "date": "2025-02-13T13:29:03", + "date_unixtime": "1739449743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002832 BTC for 65.75 CZK @ 2,321,631 CZK\nFees are 0.23092553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.537946080314942897598518180 CZK)\nThe limits being 0.10 % (10.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08250053 BTC (84,920.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,029,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,321,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.55 % (106,615.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 175.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00472113 BTC (10,960.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002832 BTC for 65.75 CZK @ 2,321,631 CZK\nFees are 0.23092553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.537946080314942897598518180 CZK)\nThe limits being 0.10 % (10.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08250053 BTC (84,920.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,029,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,321,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.55 % (106,615.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 175.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00472113 BTC (10,960.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1287 transactions" + } + ] + }, + { + "id": 1319, + "type": "message", + "date": "2025-02-14T01:29:03", + "date_unixtime": "1739492943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002829 BTC for 65.76 CZK @ 2,324,567 CZK\nFees are 0.23097256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.570234318098038977400237380 CZK)\nThe limits being 0.10 % (11.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08252882 BTC (84,986.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,029,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.73 % (106,856.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 109.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00474942 BTC (11,040.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002829 BTC for 65.76 CZK @ 2,324,567 CZK\nFees are 0.23097256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.570234318098038977400237380 CZK)\nThe limits being 0.10 % (11.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08252882 BTC (84,986.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,029,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.73 % (106,856.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 109.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00474942 BTC (11,040.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1288 transactions" + } + ] + }, + { + "id": 1320, + "type": "message", + "date": "2025-02-14T13:29:03", + "date_unixtime": "1739536143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002828 BTC for 65.77 CZK @ 2,325,633 CZK\nFees are 0.23099686 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.581967475222858608730828240 CZK)\nThe limits being 0.10 % (11.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08255710 BTC (85,052.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,030,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.74 % (106,944.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,043.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00477770 BTC (11,111.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002828 BTC for 65.77 CZK @ 2,325,633 CZK\nFees are 0.23099686 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.581967475222858608730828240 CZK)\nThe limits being 0.10 % (11.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08255710 BTC (85,052.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,030,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.74 % (106,944.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,043.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00477770 BTC (11,111.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1289 transactions" + } + ] + }, + { + "id": 1321, + "type": "message", + "date": "2025-02-15T01:29:04", + "date_unixtime": "1739579344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002819 BTC for 65.76 CZK @ 2,332,783 CZK\nFees are 0.23096963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.660614922973565560622956226 CZK)\nThe limits being 0.10 % (11.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08258529 BTC (85,118.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,030,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,332,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.33 % (107,534.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 977.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00480589 BTC (11,211.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002819 BTC for 65.76 CZK @ 2,332,783 CZK\nFees are 0.23096963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.660614922973565560622956226 CZK)\nThe limits being 0.10 % (11.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08258529 BTC (85,118.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,030,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,332,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.33 % (107,534.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 977.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00480589 BTC (11,211.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1290 transactions" + } + ] + }, + { + "id": 1322, + "type": "message", + "date": "2025-02-15T13:29:04", + "date_unixtime": "1739622544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002818 BTC for 65.77 CZK @ 2,333,784 CZK\nFees are 0.23098672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.671620271208329399267220513 CZK)\nThe limits being 0.10 % (11.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08261347 BTC (85,184.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,031,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.33 % (107,617.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 911.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00483407 BTC (11,281.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002818 BTC for 65.77 CZK @ 2,333,784 CZK\nFees are 0.23098672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.671620271208329399267220513 CZK)\nThe limits being 0.10 % (11.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08261347 BTC (85,184.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,031,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.33 % (107,617.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 911.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00483407 BTC (11,281.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1291 transactions" + } + ] + }, + { + "id": 1323, + "type": "message", + "date": "2025-02-16T01:29:04", + "date_unixtime": "1739665744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002812 BTC for 65.76 CZK @ 2,338,620 CZK\nFees are 0.23097253 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.724816468108419961145946513 CZK)\nThe limits being 0.10 % (11.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08264159 BTC (85,250.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,031,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,338,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.70 % (108,016.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 845.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00486219 BTC (11,370.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002812 BTC for 65.76 CZK @ 2,338,620 CZK\nFees are 0.23097253 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (25.724816468108419961145946513 CZK)\nThe limits being 0.10 % (11.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08264159 BTC (85,250.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,031,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,338,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.70 % (108,016.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 845.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00486219 BTC (11,370.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1292 transactions" + } + ] + }, + { + "id": 1324, + "type": "message", + "date": "2025-02-16T13:29:04", + "date_unixtime": "1739708944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002822 BTC for 65.76 CZK @ 2,330,350 CZK\nFees are 0.23097427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.633851414097434316532815514 CZK)\nThe limits being 0.10 % (11.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08266981 BTC (85,316.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,032,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,330,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.81 % (107,332.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 779.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00489041 BTC (11,396.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002822 BTC for 65.76 CZK @ 2,330,350 CZK\nFees are 0.23097427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.633851414097434316532815514 CZK)\nThe limits being 0.10 % (11.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08266981 BTC (85,316.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,032,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,330,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.81 % (107,332.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 779.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00489041 BTC (11,396.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1293 transactions" + } + ] + }, + { + "id": 1325, + "type": "message", + "date": "2025-02-17T01:29:03", + "date_unixtime": "1739752143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002844 BTC for 65.76 CZK @ 2,312,261 CZK\nFees are 0.23096805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.434872934882622494966632258 CZK)\nThe limits being 0.10 % (11.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08269825 BTC (85,382.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,032,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,312,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.96 % (105,837.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 713.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00491885 BTC (11,373.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002844 BTC for 65.76 CZK @ 2,312,261 CZK\nFees are 0.23096805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.434872934882622494966632258 CZK)\nThe limits being 0.10 % (11.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08269825 BTC (85,382.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,032,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,312,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.96 % (105,837.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 713.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00491885 BTC (11,373.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1294 transactions" + } + ] + }, + { + "id": 1326, + "type": "message", + "date": "2025-02-17T13:29:04", + "date_unixtime": "1739795344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002851 BTC for 65.76 CZK @ 2,306,420 CZK\nFees are 0.23095160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.370616251397904598024766701 CZK)\nThe limits being 0.10 % (11.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08272676 BTC (85,448.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,032,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.29 % (105,353.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 647.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00494736 BTC (11,410.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002851 BTC for 65.76 CZK @ 2,306,420 CZK\nFees are 0.23095160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.370616251397904598024766701 CZK)\nThe limits being 0.10 % (11.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08272676 BTC (85,448.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,032,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.29 % (105,353.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 647.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00494736 BTC (11,410.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1295 transactions" + } + ] + }, + { + "id": 1327, + "type": "message", + "date": "2025-02-18T01:29:03", + "date_unixtime": "1739838543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002863 BTC for 65.75 CZK @ 2,296,519 CZK\nFees are 0.23092812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.261709606318506951133832843 CZK)\nThe limits being 0.10 % (11.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08275539 BTC (85,514.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,033,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,296,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.24 % (104,534.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 581.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00497599 BTC (11,427.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002863 BTC for 65.75 CZK @ 2,296,519 CZK\nFees are 0.23092812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.261709606318506951133832843 CZK)\nThe limits being 0.10 % (11.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08275539 BTC (85,514.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,033,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,296,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.24 % (104,534.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 581.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00497599 BTC (11,427.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1296 transactions" + } + ] + }, + { + "id": 1328, + "type": "message", + "date": "2025-02-18T13:29:03", + "date_unixtime": "1739881743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002843 BTC for 65.76 CZK @ 2,313,156 CZK\nFees are 0.23097622 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.444720404016823986255632545 CZK)\nThe limits being 0.10 % (11.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08278382 BTC (85,580.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,033,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.76 % (105,911.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 515.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00500442 BTC (11,576.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002843 BTC for 65.76 CZK @ 2,313,156 CZK\nFees are 0.23097622 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.444720404016823986255632545 CZK)\nThe limits being 0.10 % (11.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08278382 BTC (85,580.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,033,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.76 % (105,911.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 515.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00500442 BTC (11,576.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1297 transactions" + } + ] + }, + { + "id": 1329, + "type": "message", + "date": "2025-02-19T01:29:03", + "date_unixtime": "1739924943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002858 BTC for 65.76 CZK @ 2,300,875 CZK\nFees are 0.23096206 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.309623678217909813901868303 CZK)\nThe limits being 0.10 % (11.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08281240 BTC (85,646.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,034,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.47 % (104,894.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 449.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00503300 BTC (11,580.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002858 BTC for 65.76 CZK @ 2,300,875 CZK\nFees are 0.23096206 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.309623678217909813901868303 CZK)\nThe limits being 0.10 % (11.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08281240 BTC (85,646.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,034,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.47 % (104,894.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 449.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00503300 BTC (11,580.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1298 transactions" + } + ] + }, + { + "id": 1330, + "type": "message", + "date": "2025-02-19T13:29:03", + "date_unixtime": "1739968143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002827 BTC for 65.75 CZK @ 2,325,780 CZK\nFees are 0.23092971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.583577478824115595416043847 CZK)\nThe limits being 0.10 % (11.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08284067 BTC (85,712.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,034,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.78 % (106,956.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 383.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00506127 BTC (11,771.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002827 BTC for 65.75 CZK @ 2,325,780 CZK\nFees are 0.23092971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.583577478824115595416043847 CZK)\nThe limits being 0.10 % (11.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08284067 BTC (85,712.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,034,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.78 % (106,956.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 383.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00506127 BTC (11,771.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1299 transactions" + } + ] + }, + { + "id": 1331, + "type": "message", + "date": "2025-02-20T01:29:03", + "date_unixtime": "1740011343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002820 BTC for 65.75 CZK @ 2,331,677 CZK\nFees are 0.23094204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.648451695660931420877990861 CZK)\nThe limits being 0.10 % (11.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08286887 BTC (85,778.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,035,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.26 % (107,444.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 317.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00508947 BTC (11,867.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002820 BTC for 65.75 CZK @ 2,331,677 CZK\nFees are 0.23094204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (25.648451695660931420877990861 CZK)\nThe limits being 0.10 % (11.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08286887 BTC (85,778.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,035,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.26 % (107,444.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 317.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00508947 BTC (11,867.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1300 transactions" + } + ] + }, + { + "id": 1332, + "type": "message", + "date": "2025-02-20T13:29:03", + "date_unixtime": "1740054543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002800 BTC for 65.75 CZK @ 2,348,271 CZK\nFees are 0.23093598 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.830977289486796213253612356 CZK)\nThe limits being 0.10 % (12.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08289687 BTC (85,844.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,035,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,348,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.76 % (108,819.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,251.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00511747 BTC (12,017.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002800 BTC for 65.75 CZK @ 2,348,271 CZK\nFees are 0.23093598 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.830977289486796213253612356 CZK)\nThe limits being 0.10 % (12.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08289687 BTC (85,844.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,035,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,348,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.76 % (108,819.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,251.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00511747 BTC (12,017.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1301 transactions" + } + ] + }, + { + "id": 1333, + "type": "message", + "date": "2025-02-21T01:29:03", + "date_unixtime": "1740097743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002789 BTC for 65.76 CZK @ 2,357,911 CZK\nFees are 0.23097303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.937016805469133400613092613 CZK)\nThe limits being 0.10 % (12.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08292476 BTC (85,910.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,036,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,357,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.60 % (109,618.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,185.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00514536 BTC (12,132.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002789 BTC for 65.76 CZK @ 2,357,911 CZK\nFees are 0.23097303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.937016805469133400613092613 CZK)\nThe limits being 0.10 % (12.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08292476 BTC (85,910.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,036,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,357,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.60 % (109,618.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,185.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00514536 BTC (12,132.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1302 transactions" + } + ] + }, + { + "id": 1334, + "type": "message", + "date": "2025-02-21T13:29:03", + "date_unixtime": "1740140943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002774 BTC for 65.75 CZK @ 2,370,106 CZK\nFees are 0.23091898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (26.071165177466466502066128320 CZK)\nThe limits being 0.10 % (12.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08295250 BTC (85,976.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,036,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,370,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.67 % (110,629.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,119.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00517310 BTC (12,260.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002774 BTC for 65.75 CZK @ 2,370,106 CZK\nFees are 0.23091898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (26.071165177466466502066128320 CZK)\nThe limits being 0.10 % (12.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08295250 BTC (85,976.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,036,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,370,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.67 % (110,629.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,119.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00517310 BTC (12,260.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1303 transactions" + } + ] + }, + { + "id": 1335, + "type": "message", + "date": "2025-02-22T01:29:03", + "date_unixtime": "1740184143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002849 BTC for 65.64 CZK @ 2,303,897 CZK\nFees are 0.23053719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.342870951669157947184853014 CZK)\nThe limits being 0.10 % (11.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08298099 BTC (86,042.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,036,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.19 % (105,137.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,054.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00520159 BTC (11,983.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002849 BTC for 65.64 CZK @ 2,303,897 CZK\nFees are 0.23053719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.342870951669157947184853014 CZK)\nThe limits being 0.10 % (11.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08298099 BTC (86,042.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,036,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.19 % (105,137.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,054.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00520159 BTC (11,983.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1304 transactions" + } + ] + }, + { + "id": 1336, + "type": "message", + "date": "2025-02-22T13:29:03", + "date_unixtime": "1740227343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002831 BTC for 65.76 CZK @ 2,323,023 CZK\nFees are 0.23098234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.553252115652440055707531587 CZK)\nThe limits being 0.10 % (12.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08300930 BTC (86,108.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,037,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,323,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.94 % (106,724.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 988.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00522990 BTC (12,149.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002831 BTC for 65.76 CZK @ 2,323,023 CZK\nFees are 0.23098234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.553252115652440055707531587 CZK)\nThe limits being 0.10 % (12.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08300930 BTC (86,108.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,037,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,323,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.94 % (106,724.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 988.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00522990 BTC (12,149.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1305 transactions" + } + ] + }, + { + "id": 1337, + "type": "message", + "date": "2025-02-23T01:29:03", + "date_unixtime": "1740270543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002829 BTC for 65.76 CZK @ 2,324,359 CZK\nFees are 0.23095194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.567951643972149086539282888 CZK)\nThe limits being 0.10 % (12.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08303759 BTC (86,174.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,037,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.97 % (106,834.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 922.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00525819 BTC (12,221.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002829 BTC for 65.76 CZK @ 2,324,359 CZK\nFees are 0.23095194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (25.567951643972149086539282888 CZK)\nThe limits being 0.10 % (12.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08303759 BTC (86,174.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,037,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.97 % (106,834.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 922.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00525819 BTC (12,221.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1306 transactions" + } + ] + }, + { + "id": 1338, + "type": "message", + "date": "2025-02-23T13:29:03", + "date_unixtime": "1740313743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002848 BTC for 65.76 CZK @ 2,308,936 CZK\nFees are 0.23096027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (50.796590067488509318508814655 CZK)\nThe limits being 0.10 % (12.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08306607 BTC (86,240.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,038,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.39 % (105,553.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 856.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00528667 BTC (12,206.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002848 BTC for 65.76 CZK @ 2,308,936 CZK\nFees are 0.23096027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (50.796590067488509318508814655 CZK)\nThe limits being 0.10 % (12.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08306607 BTC (86,240.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,038,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.39 % (105,553.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 856.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00528667 BTC (12,206.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1307 transactions" + } + ] + }, + { + "id": 1339, + "type": "message", + "date": "2025-02-24T01:29:03", + "date_unixtime": "1740356943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002846 BTC for 65.77 CZK @ 2,310,954 CZK\nFees are 0.23099980 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (101.68197279864816081171976788 CZK)\nThe limits being 0.10 % (12.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08309453 BTC (86,306.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,038,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.50 % (105,721.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 790.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00531513 BTC (12,283.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002846 BTC for 65.77 CZK @ 2,310,954 CZK\nFees are 0.23099980 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (101.68197279864816081171976788 CZK)\nThe limits being 0.10 % (12.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08309453 BTC (86,306.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,038,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.50 % (105,721.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 790.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00531513 BTC (12,283.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1308 transactions" + } + ] + }, + { + "id": 1340, + "type": "message", + "date": "2025-02-24T13:29:04", + "date_unixtime": "1740400144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002855 BTC for 65.76 CZK @ 2,303,306 CZK\nFees are 0.23096340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (76.009095394490561493616475435 CZK)\nThe limits being 0.10 % (12.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08312308 BTC (86,372.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,039,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.67 % (105,085.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 724.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00534368 BTC (12,308.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002855 BTC for 65.76 CZK @ 2,303,306 CZK\nFees are 0.23096340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (76.009095394490561493616475435 CZK)\nThe limits being 0.10 % (12.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08312308 BTC (86,372.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,039,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.67 % (105,085.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 724.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00534368 BTC (12,308.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1309 transactions" + } + ] + }, + { + "id": 1341, + "type": "message", + "date": "2025-02-25T01:29:03", + "date_unixtime": "1740443343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002986 BTC for 65.75 CZK @ 2,201,892 CZK\nFees are 0.23092514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (48.441621758540353237880412528 CZK)\nThe limits being 0.10 % (11.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08315294 BTC (86,438.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,039,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,201,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.82 % (96,655.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 658.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00537354 BTC (11,831.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002986 BTC for 65.75 CZK @ 2,201,892 CZK\nFees are 0.23092514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (48.441621758540353237880412528 CZK)\nThe limits being 0.10 % (11.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08315294 BTC (86,438.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,039,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,201,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.82 % (96,655.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 658.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00537354 BTC (11,831.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1310 transactions" + } + ] + }, + { + "id": 1342, + "type": "message", + "date": "2025-02-25T13:29:03", + "date_unixtime": "1740486543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003083 BTC for 65.75 CZK @ 2,132,753 CZK\nFees are 0.23094019 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (46.920567804445711498564624851 CZK)\nThe limits being 0.10 % (11.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08318377 BTC (86,504.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,039,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,132,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.09 % (90,906.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 592.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00540437 BTC (11,526.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003083 BTC for 65.75 CZK @ 2,132,753 CZK\nFees are 0.23094019 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (46.920567804445711498564624851 CZK)\nThe limits being 0.10 % (11.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08318377 BTC (86,504.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,039,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,132,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.09 % (90,906.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 592.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00540437 BTC (11,526.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1311 transactions" + } + ] + }, + { + "id": 1343, + "type": "message", + "date": "2025-02-26T01:29:03", + "date_unixtime": "1740529743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003127 BTC for 65.76 CZK @ 2,102,994 CZK\nFees are 0.23096776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (69.398806239880915675850863519 CZK)\nThe limits being 0.10 % (11.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08321504 BTC (86,570.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,040,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,102,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.15 % (88,430.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 526.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00543564 BTC (11,431.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003127 BTC for 65.76 CZK @ 2,102,994 CZK\nFees are 0.23096776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (69.398806239880915675850863519 CZK)\nThe limits being 0.10 % (11.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08321504 BTC (86,570.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,040,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,102,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.15 % (88,430.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 526.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00543564 BTC (11,431.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1312 transactions" + } + ] + }, + { + "id": 1344, + "type": "message", + "date": "2025-02-26T13:29:03", + "date_unixtime": "1740572943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003123 BTC for 65.76 CZK @ 2,105,559 CZK\nFees are 0.23095359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (46.322287023276361744461148708 CZK)\nThe limits being 0.10 % (11.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08324627 BTC (86,636.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,040,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,105,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.32 % (88,643.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 460.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00546687 BTC (11,510.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003123 BTC for 65.76 CZK @ 2,105,559 CZK\nFees are 0.23095359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (46.322287023276361744461148708 CZK)\nThe limits being 0.10 % (11.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08324627 BTC (86,636.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,040,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,105,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.32 % (88,643.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 460.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00546687 BTC (11,510.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1313 transactions" + } + ] + }, + { + "id": 1345, + "type": "message", + "date": "2025-02-27T01:29:03", + "date_unixtime": "1740616143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003273 BTC for 65.77 CZK @ 2,009,426 CZK\nFees are 0.23099541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (44.207363248489742059224124061 CZK)\nThe limits being 0.10 % (11.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08327900 BTC (86,702.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,041,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,009,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.01 % (80,640.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 394.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00549960 BTC (11,051.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003273 BTC for 65.77 CZK @ 2,009,426 CZK\nFees are 0.23099541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (44.207363248489742059224124061 CZK)\nThe limits being 0.10 % (11.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08327900 BTC (86,702.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,041,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,009,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.01 % (80,640.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 394.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00549960 BTC (11,051.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1314 transactions" + } + ] + }, + { + "id": 1346, + "type": "message", + "date": "2025-02-27T13:29:03", + "date_unixtime": "1740659343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003177 BTC for 65.76 CZK @ 2,069,937 CZK\nFees are 0.23097223 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (45.538613527504223100796566754 CZK)\nThe limits being 0.10 % (11.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08331077 BTC (86,768.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,041,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,069,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.75 % (85,679.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 328.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00553137 BTC (11,449.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003177 BTC for 65.76 CZK @ 2,069,937 CZK\nFees are 0.23097223 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (45.538613527504223100796566754 CZK)\nThe limits being 0.10 % (11.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08331077 BTC (86,768.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,041,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,069,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.75 % (85,679.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 328.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00553137 BTC (11,449.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1315 transactions" + } + ] + }, + { + "id": 1347, + "type": "message", + "date": "2025-02-28T01:29:03", + "date_unixtime": "1740702543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003226 BTC for 65.75 CZK @ 2,038,280 CZK\nFees are 0.23094773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (22.421083396271759319752224931 CZK)\nThe limits being 0.10 % (11.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08334303 BTC (86,834.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,041,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,038,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.63 % (83,042.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 262.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00556363 BTC (11,340.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003226 BTC for 65.75 CZK @ 2,038,280 CZK\nFees are 0.23094773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (22.421083396271759319752224931 CZK)\nThe limits being 0.10 % (11.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08334303 BTC (86,834.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,041,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,038,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.63 % (83,042.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 262.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00556363 BTC (11,340.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1316 transactions" + } + ] + }, + { + "id": 1348, + "type": "message", + "date": "2025-02-28T13:29:03", + "date_unixtime": "1740745743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003390 BTC for 65.77 CZK @ 1,940,007 CZK\nFees are 0.23098748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (21.340078002213491717043445287 CZK)\nThe limits being 0.10 % (10.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08337693 BTC (86,900.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,042,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,940,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.13 % (74,851.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,178.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00562899 BTC (10,920.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003390 BTC for 65.77 CZK @ 1,940,007 CZK\nFees are 0.23098748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (21.340078002213491717043445287 CZK)\nThe limits being 0.10 % (10.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08337693 BTC (86,900.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,042,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,940,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.13 % (74,851.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,178.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00562899 BTC (10,920.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1317 transactions" + } + ] + }, + { + "id": 1349, + "type": "message", + "date": "2025-03-01T01:29:03", + "date_unixtime": "1740788943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003214 BTC for 65.76 CZK @ 2,046,065 CZK\nFees are 0.23096738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.506711189740699090209779152 CZK)\nThe limits being 0.10 % (11.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08340907 BTC (86,966.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,042,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,046,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.24 % (83,694.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,112.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00566113 BTC (11,583.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003214 BTC for 65.76 CZK @ 2,046,065 CZK\nFees are 0.23096738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.506711189740699090209779152 CZK)\nThe limits being 0.10 % (11.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08340907 BTC (86,966.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,042,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,046,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.24 % (83,694.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,112.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00566113 BTC (11,583.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1318 transactions" + } + ] + }, + { + "id": 1350, + "type": "message", + "date": "2025-03-01T13:29:03", + "date_unixtime": "1740832143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003204 BTC for 65.77 CZK @ 2,052,647 CZK\nFees are 0.23098948 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (45.158234250037478065223652298 CZK)\nThe limits being 0.10 % (11.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08344111 BTC (87,032.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,043,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,052,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.79 % (84,242.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,046.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00569317 BTC (11,686.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003204 BTC for 65.77 CZK @ 2,052,647 CZK\nFees are 0.23098948 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (45.158234250037478065223652298 CZK)\nThe limits being 0.10 % (11.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08344111 BTC (87,032.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,043,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,052,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.79 % (84,242.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,046.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00569317 BTC (11,686.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1319 transactions" + } + ] + }, + { + "id": 1351, + "type": "message", + "date": "2025-03-02T01:29:04", + "date_unixtime": "1740875344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003153 BTC for 65.76 CZK @ 2,085,676 CZK\nFees are 0.23097036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.942437006474800930646953866 CZK)\nThe limits being 0.10 % (11.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08347264 BTC (87,098.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,043,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,085,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.89 % (86,998.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,980.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00572470 BTC (11,939.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003153 BTC for 65.76 CZK @ 2,085,676 CZK\nFees are 0.23097036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.942437006474800930646953866 CZK)\nThe limits being 0.10 % (11.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08347264 BTC (87,098.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,043,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,085,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.89 % (86,998.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,980.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00572470 BTC (11,939.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1320 transactions" + } + ] + }, + { + "id": 1352, + "type": "message", + "date": "2025-03-02T13:29:03", + "date_unixtime": "1740918543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003152 BTC for 65.76 CZK @ 2,086,413 CZK\nFees are 0.23097868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.950542150695914552872054409 CZK)\nThe limits being 0.10 % (12.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08350416 BTC (87,164.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,043,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,086,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.88 % (87,059.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,914.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00575622 BTC (12,009.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003152 BTC for 65.76 CZK @ 2,086,413 CZK\nFees are 0.23097868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.950542150695914552872054409 CZK)\nThe limits being 0.10 % (12.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08350416 BTC (87,164.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,043,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,086,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.88 % (87,059.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,914.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00575622 BTC (12,009.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1321 transactions" + } + ] + }, + { + "id": 1353, + "type": "message", + "date": "2025-03-03T01:29:03", + "date_unixtime": "1740961743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002900 BTC for 65.76 CZK @ 2,267,562 CZK\nFees are 0.23096310 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (24.943183038331357490163737264 CZK)\nThe limits being 0.10 % (13.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08353316 BTC (87,230.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,044,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,267,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.15 % (102,186.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,848.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00578522 BTC (13,118.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002900 BTC for 65.76 CZK @ 2,267,562 CZK\nFees are 0.23096310 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (24.943183038331357490163737264 CZK)\nThe limits being 0.10 % (13.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08353316 BTC (87,230.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,044,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,267,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.15 % (102,186.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,848.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00578522 BTC (13,118.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1322 transactions" + } + ] + }, + { + "id": 1354, + "type": "message", + "date": "2025-03-03T13:29:03", + "date_unixtime": "1741004943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002933 BTC for 65.76 CZK @ 2,242,235 CZK\nFees are 0.23098227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (24.664586702762628787650995127 CZK)\nThe limits being 0.10 % (13.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08356249 BTC (87,296.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,044,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,242,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.63 % (100,070.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,782.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00581455 BTC (13,037.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002933 BTC for 65.76 CZK @ 2,242,235 CZK\nFees are 0.23098227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (24.664586702762628787650995127 CZK)\nThe limits being 0.10 % (13.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08356249 BTC (87,296.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,044,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,242,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.63 % (100,070.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,782.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00581455 BTC (13,037.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1323 transactions" + } + ] + }, + { + "id": 1355, + "type": "message", + "date": "2025-03-04T01:29:04", + "date_unixtime": "1741048144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003181 BTC for 65.63 CZK @ 2,063,147 CZK\nFees are 0.23050447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.694622099608302722928098089 CZK)\nThe limits being 0.10 % (12.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08359430 BTC (87,362.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,045,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,063,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.42 % (85,105.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,716.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00584636 BTC (12,061.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003181 BTC for 65.63 CZK @ 2,063,147 CZK\nFees are 0.23050447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.694622099608302722928098089 CZK)\nThe limits being 0.10 % (12.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08359430 BTC (87,362.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,045,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,063,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.42 % (85,105.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,716.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00584636 BTC (12,061.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1324 transactions" + } + ] + }, + { + "id": 1356, + "type": "message", + "date": "2025-03-04T13:29:04", + "date_unixtime": "1741091344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003305 BTC for 65.76 CZK @ 1,989,587 CZK\nFees are 0.23095102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (21.885460324567493349675530499 CZK)\nThe limits being 0.10 % (11.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08362735 BTC (87,428.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,045,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,989,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.31 % (78,955.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,650.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00587941 BTC (11,697.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003305 BTC for 65.76 CZK @ 1,989,587 CZK\nFees are 0.23095102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (21.885460324567493349675530499 CZK)\nThe limits being 0.10 % (11.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08362735 BTC (87,428.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,045,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,989,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.31 % (78,955.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,650.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00587941 BTC (11,697.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1325 transactions" + } + ] + }, + { + "id": 1357, + "type": "message", + "date": "2025-03-05T01:29:03", + "date_unixtime": "1741134543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003189 BTC for 65.76 CZK @ 2,062,117 CZK\nFees are 0.23096871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.683281985299804400496662434 CZK)\nThe limits being 0.10 % (12.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08365924 BTC (87,494.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,045,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,062,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.17 % (85,020.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,584.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00591130 BTC (12,189.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003189 BTC for 65.76 CZK @ 2,062,117 CZK\nFees are 0.23096871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (22.683281985299804400496662434 CZK)\nThe limits being 0.10 % (12.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08365924 BTC (87,494.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,045,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,062,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.17 % (85,020.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,584.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00591130 BTC (12,189.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1326 transactions" + } + ] + }, + { + "id": 1358, + "type": "message", + "date": "2025-03-05T13:29:03", + "date_unixtime": "1741177743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003092 BTC for 65.75 CZK @ 2,126,427 CZK\nFees are 0.23092740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (23.390700984780951018137682406 CZK)\nThe limits being 0.10 % (12.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08369016 BTC (87,560.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,046,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,126,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.24 % (90,400.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,518.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00594222 BTC (12,635.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003092 BTC for 65.75 CZK @ 2,126,427 CZK\nFees are 0.23092740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (23.390700984780951018137682406 CZK)\nThe limits being 0.10 % (12.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08369016 BTC (87,560.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,046,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,126,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.24 % (90,400.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,518.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00594222 BTC (12,635.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1327 transactions" + } + ] + }, + { + "id": 1359, + "type": "message", + "date": "2025-03-06T01:29:03", + "date_unixtime": "1741220943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003131 BTC for 65.62 CZK @ 2,095,808 CZK\nFees are 0.23047293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (23.053885017259139482587055176 CZK)\nThe limits being 0.10 % (12.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08372147 BTC (87,625.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,046,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,095,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.24 % (87,838.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,452.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597353 BTC (12,519.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003131 BTC for 65.62 CZK @ 2,095,808 CZK\nFees are 0.23047293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (23.053885017259139482587055176 CZK)\nThe limits being 0.10 % (12.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08372147 BTC (87,625.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,046,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,095,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.24 % (87,838.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,452.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597353 BTC (12,519.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1328 transactions" + } + ] + }, + { + "id": 1360, + "type": "message", + "date": "2025-03-06T13:29:03", + "date_unixtime": "1741264143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003110 BTC for 65.76 CZK @ 2,114,361 CZK\nFees are 0.23095375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (23.257975146793297414034801026 CZK)\nThe limits being 0.10 % (12.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08375257 BTC (87,691.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,047,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,114,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.94 % (89,391.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,386.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00600463 BTC (12,695.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003110 BTC for 65.76 CZK @ 2,114,361 CZK\nFees are 0.23095375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (23.257975146793297414034801026 CZK)\nThe limits being 0.10 % (12.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08375257 BTC (87,691.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,047,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,114,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.94 % (89,391.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,386.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00600463 BTC (12,695.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1329 transactions" + } + ] + }, + { + "id": 1361, + "type": "message", + "date": "2025-03-07T01:29:04", + "date_unixtime": "1741307344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003243 BTC for 65.76 CZK @ 2,027,744 CZK\nFees are 0.23096460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (22.305179726645915982313521546 CZK)\nThe limits being 0.10 % (12.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08378500 BTC (87,757.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,047,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,027,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.59 % (82,136.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,320.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00603706 BTC (12,241.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003243 BTC for 65.76 CZK @ 2,027,744 CZK\nFees are 0.23096460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (22.305179726645915982313521546 CZK)\nThe limits being 0.10 % (12.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08378500 BTC (87,757.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,047,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,027,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.59 % (82,136.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,320.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00603706 BTC (12,241.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1330 transactions" + } + ] + }, + { + "id": 1362, + "type": "message", + "date": "2025-03-07T13:29:04", + "date_unixtime": "1741350544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003179 BTC for 65.77 CZK @ 2,068,778 CZK\nFees are 0.23098823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (22.756559084725950522651687951 CZK)\nThe limits being 0.10 % (12.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08381679 BTC (87,823.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,047,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,068,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.44 % (85,574.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,254.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00606885 BTC (12,555.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003179 BTC for 65.77 CZK @ 2,068,778 CZK\nFees are 0.23098823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (22.756559084725950522651687951 CZK)\nThe limits being 0.10 % (12.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08381679 BTC (87,823.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,047,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,068,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.44 % (85,574.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,254.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00606885 BTC (12,555.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1331 transactions" + } + ] + }, + { + "id": 1363, + "type": "message", + "date": "2025-03-08T01:29:04", + "date_unixtime": "1741393744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003280 BTC for 65.76 CZK @ 2,004,956 CZK\nFees are 0.23097460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (22.054521457824443715289170829 CZK)\nThe limits being 0.10 % (12.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08384959 BTC (87,889.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,048,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,004,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.28 % (80,224.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,188.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00610165 BTC (12,233.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003280 BTC for 65.76 CZK @ 2,004,956 CZK\nFees are 0.23097460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (22.054521457824443715289170829 CZK)\nThe limits being 0.10 % (12.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08384959 BTC (87,889.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,048,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,004,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.28 % (80,224.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,188.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00610165 BTC (12,233.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1332 transactions" + } + ] + }, + { + "id": 1364, + "type": "message", + "date": "2025-03-08T13:29:03", + "date_unixtime": "1741436943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003302 BTC for 65.75 CZK @ 1,991,300 CZK\nFees are 0.23093996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.904295132994543326099415220 CZK)\nThe limits being 0.10 % (12.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08388261 BTC (87,955.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,048,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,991,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.91 % (79,079.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,122.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00613467 BTC (12,215.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003302 BTC for 65.75 CZK @ 1,991,300 CZK\nFees are 0.23093996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.904295132994543326099415220 CZK)\nThe limits being 0.10 % (12.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08388261 BTC (87,955.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,048,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,991,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.91 % (79,079.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,122.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00613467 BTC (12,215.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1333 transactions" + } + ] + }, + { + "id": 1365, + "type": "message", + "date": "2025-03-09T01:29:03", + "date_unixtime": "1741480143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003296 BTC for 65.75 CZK @ 1,994,957 CZK\nFees are 0.23094368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.944523102394048016408589354 CZK)\nThe limits being 0.10 % (12.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08391557 BTC (88,021.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,048,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,994,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.19 % (79,386.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,056.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00616763 BTC (12,304.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003296 BTC for 65.75 CZK @ 1,994,957 CZK\nFees are 0.23094368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.944523102394048016408589354 CZK)\nThe limits being 0.10 % (12.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08391557 BTC (88,021.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,048,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,994,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.19 % (79,386.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,056.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00616763 BTC (12,304.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1334 transactions" + } + ] + }, + { + "id": 1366, + "type": "message", + "date": "2025-03-09T13:29:03", + "date_unixtime": "1741523343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003362 BTC for 65.77 CZK @ 1,956,175 CZK\nFees are 0.23098875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.517924487375684212928752934 CZK)\nThe limits being 0.10 % (12.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08394919 BTC (88,087.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,049,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,956,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.43 % (76,131.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 990.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00620125 BTC (12,130.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003362 BTC for 65.77 CZK @ 1,956,175 CZK\nFees are 0.23098875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.517924487375684212928752934 CZK)\nThe limits being 0.10 % (12.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08394919 BTC (88,087.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,049,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,956,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.43 % (76,131.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 990.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00620125 BTC (12,130.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1335 transactions" + } + ] + }, + { + "id": 1367, + "type": "message", + "date": "2025-03-10T01:29:03", + "date_unixtime": "1741566543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003533 BTC for 65.75 CZK @ 1,861,068 CZK\nFees are 0.23093581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (20.471747120853971191404666177 CZK)\nThe limits being 0.10 % (11.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08398452 BTC (88,153.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,049,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,861,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.30 % (68,147.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 924.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00623658 BTC (11,606.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003533 BTC for 65.75 CZK @ 1,861,068 CZK\nFees are 0.23093581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (20.471747120853971191404666177 CZK)\nThe limits being 0.10 % (11.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08398452 BTC (88,153.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,049,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,861,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.30 % (68,147.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 924.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00623658 BTC (11,606.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1336 transactions" + } + ] + }, + { + "id": 1368, + "type": "message", + "date": "2025-03-10T13:29:03", + "date_unixtime": "1741609743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003435 BTC for 65.76 CZK @ 1,914,419 CZK\nFees are 0.23096653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.058603513031899269587013140 CZK)\nThe limits being 0.10 % (12.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08401887 BTC (88,219.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,050,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,914,419 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.33 % (72,627.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 858.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00627093 BTC (12,005.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003435 BTC for 65.76 CZK @ 1,914,419 CZK\nFees are 0.23096653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (21.058603513031899269587013140 CZK)\nThe limits being 0.10 % (12.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08401887 BTC (88,219.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,050,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,914,419 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.33 % (72,627.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 858.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00627093 BTC (12,005.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1337 transactions" + } + ] + }, + { + "id": 1369, + "type": "message", + "date": "2025-03-11T01:29:03", + "date_unixtime": "1741652943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003650 BTC for 65.77 CZK @ 1,801,829 CZK\nFees are 0.23098926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (19.820115758134201527530356083 CZK)\nThe limits being 0.10 % (11.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08405537 BTC (88,285.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,050,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,801,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.55 % (63,167.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 792.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00630743 BTC (11,364.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003650 BTC for 65.77 CZK @ 1,801,829 CZK\nFees are 0.23098926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (19.820115758134201527530356083 CZK)\nThe limits being 0.10 % (11.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08405537 BTC (88,285.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,050,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,801,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.55 % (63,167.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 792.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00630743 BTC (11,364.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1338 transactions" + } + ] + }, + { + "id": 1370, + "type": "message", + "date": "2025-03-11T13:29:04", + "date_unixtime": "1741696144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003503 BTC for 65.75 CZK @ 1,876,993 CZK\nFees are 0.23093424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (20.646928464618767229341893723 CZK)\nThe limits being 0.10 % (11.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08409040 BTC (88,351.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,050,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,876,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.65 % (69,485.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 726.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00634246 BTC (11,904.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003503 BTC for 65.75 CZK @ 1,876,993 CZK\nFees are 0.23093424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (20.646928464618767229341893723 CZK)\nThe limits being 0.10 % (11.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08409040 BTC (88,351.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,050,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,876,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.65 % (69,485.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 726.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00634246 BTC (11,904.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1339 transactions" + } + ] + }, + { + "id": 1371, + "type": "message", + "date": "2025-03-12T01:29:04", + "date_unixtime": "1741739344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003448 BTC for 65.75 CZK @ 1,907,039 CZK\nFees are 0.23094698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (20.977430790955553474671596049 CZK)\nThe limits being 0.10 % (12.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08412488 BTC (88,417.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,051,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.44 % (72,011.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 660.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00637694 BTC (12,161.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003448 BTC for 65.75 CZK @ 1,907,039 CZK\nFees are 0.23094698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (20.977430790955553474671596049 CZK)\nThe limits being 0.10 % (12.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08412488 BTC (88,417.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,051,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.44 % (72,011.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 660.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00637694 BTC (12,161.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1340 transactions" + } + ] + }, + { + "id": 1372, + "type": "message", + "date": "2025-03-12T13:29:03", + "date_unixtime": "1741782543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003436 BTC for 65.77 CZK @ 1,914,056 CZK\nFees are 0.23098997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.054611592836016897784413459 CZK)\nThe limits being 0.10 % (12.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08415924 BTC (88,483.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,051,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,914,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.05 % (72,601.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 594.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00641130 BTC (12,271.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003436 BTC for 65.77 CZK @ 1,914,056 CZK\nFees are 0.23098997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.054611592836016897784413459 CZK)\nThe limits being 0.10 % (12.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08415924 BTC (88,483.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,051,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,914,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.05 % (72,601.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 594.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00641130 BTC (12,271.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1341 transactions" + } + ] + }, + { + "id": 1373, + "type": "message", + "date": "2025-03-13T01:29:03", + "date_unixtime": "1741825743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003402 BTC for 65.77 CZK @ 1,933,195 CZK\nFees are 0.23099120 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.265146791930770228948826081 CZK)\nThe limits being 0.10 % (12.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08419326 BTC (88,549.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,051,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,933,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.81 % (74,212.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 528.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00644532 BTC (12,460.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003402 BTC for 65.77 CZK @ 1,933,195 CZK\nFees are 0.23099120 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.265146791930770228948826081 CZK)\nThe limits being 0.10 % (12.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08419326 BTC (88,549.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,051,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,933,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.81 % (74,212.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 528.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00644532 BTC (12,460.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1342 transactions" + } + ] + }, + { + "id": 1374, + "type": "message", + "date": "2025-03-13T13:29:03", + "date_unixtime": "1741868943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003405 BTC for 65.75 CZK @ 1,931,025 CZK\nFees are 0.23093533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.241272461802194521816812961 CZK)\nThe limits being 0.10 % (12.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08422731 BTC (88,615.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,052,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,931,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.54 % (74,029.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 462.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00647937 BTC (12,511.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003405 BTC for 65.75 CZK @ 1,931,025 CZK\nFees are 0.23093533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.241272461802194521816812961 CZK)\nThe limits being 0.10 % (12.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08422731 BTC (88,615.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,052,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,931,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.54 % (74,029.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 462.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00647937 BTC (12,511.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1343 transactions" + } + ] + }, + { + "id": 1375, + "type": "message", + "date": "2025-03-14T01:29:03", + "date_unixtime": "1741912143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003495 BTC for 65.77 CZK @ 1,881,775 CZK\nFees are 0.23099383 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (20.699529181769386546229826509 CZK)\nThe limits being 0.10 % (12.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08426226 BTC (88,681.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,052,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,881,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.80 % (69,880.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 396.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00651432 BTC (12,258.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003495 BTC for 65.77 CZK @ 1,881,775 CZK\nFees are 0.23099383 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (20.699529181769386546229826509 CZK)\nThe limits being 0.10 % (12.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08426226 BTC (88,681.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,052,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,881,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.80 % (69,880.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 396.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00651432 BTC (12,258.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1344 transactions" + } + ] + }, + { + "id": 1376, + "type": "message", + "date": "2025-03-14T13:29:03", + "date_unixtime": "1741955343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003423 BTC for 65.77 CZK @ 1,921,332 CZK\nFees are 0.23099079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.134648490144267194529925279 CZK)\nThe limits being 0.10 % (12.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08429649 BTC (88,747.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,052,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,921,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.50 % (73,213.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,530.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00654855 BTC (12,581.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003423 BTC for 65.77 CZK @ 1,921,332 CZK\nFees are 0.23099079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.134648490144267194529925279 CZK)\nThe limits being 0.10 % (12.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08429649 BTC (88,747.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,052,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,921,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.50 % (73,213.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,530.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00654855 BTC (12,581.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1345 transactions" + } + ] + }, + { + "id": 1377, + "type": "message", + "date": "2025-03-15T01:29:03", + "date_unixtime": "1741998543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003383 BTC for 65.76 CZK @ 1,943,756 CZK\nFees are 0.23095600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.381320517120023753693288388 CZK)\nThe limits being 0.10 % (12.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08433032 BTC (88,813.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,053,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,943,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.56 % (75,103.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,464.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00658238 BTC (12,794.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003383 BTC for 65.76 CZK @ 1,943,756 CZK\nFees are 0.23095600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.381320517120023753693288388 CZK)\nThe limits being 0.10 % (12.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08433032 BTC (88,813.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,053,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,943,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.56 % (75,103.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,464.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00658238 BTC (12,794.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1346 transactions" + } + ] + }, + { + "id": 1378, + "type": "message", + "date": "2025-03-15T13:29:03", + "date_unixtime": "1742041743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003387 BTC for 65.77 CZK @ 1,941,707 CZK\nFees are 0.23098532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.358780480305938368353220180 CZK)\nThe limits being 0.10 % (12.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08436419 BTC (88,879.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,053,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,941,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.31 % (74,930.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,398.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00661625 BTC (12,846.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003387 BTC for 65.77 CZK @ 1,941,707 CZK\nFees are 0.23098532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.358780480305938368353220180 CZK)\nThe limits being 0.10 % (12.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08436419 BTC (88,879.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,053,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,941,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.31 % (74,930.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,398.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00661625 BTC (12,846.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1347 transactions" + } + ] + }, + { + "id": 1379, + "type": "message", + "date": "2025-03-16T01:29:03", + "date_unixtime": "1742084943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003381 BTC for 65.77 CZK @ 1,945,200 CZK\nFees are 0.23099089 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.397199953961784449487426954 CZK)\nThe limits being 0.10 % (12.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08439800 BTC (88,945.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,053,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,945,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.57 % (75,225.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,332.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00665006 BTC (12,935.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003381 BTC for 65.77 CZK @ 1,945,200 CZK\nFees are 0.23099089 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (21.397199953961784449487426954 CZK)\nThe limits being 0.10 % (12.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08439800 BTC (88,945.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,053,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,945,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.57 % (75,225.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,332.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00665006 BTC (12,935.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1348 transactions" + } + ] + }, + { + "id": 1380, + "type": "message", + "date": "2025-03-16T13:29:03", + "date_unixtime": "1742128143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003444 BTC for 65.77 CZK @ 1,909,559 CZK\nFees are 0.23098392 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.005153684519975671676426352 CZK)\nThe limits being 0.10 % (12.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08443244 BTC (89,011.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,054,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,909,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.13 % (72,216.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,266.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00668450 BTC (12,764.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003444 BTC for 65.77 CZK @ 1,909,559 CZK\nFees are 0.23098392 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.005153684519975671676426352 CZK)\nThe limits being 0.10 % (12.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08443244 BTC (89,011.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,054,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,909,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.13 % (72,216.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,266.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00668450 BTC (12,764.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1349 transactions" + } + ] + }, + { + "id": 1381, + "type": "message", + "date": "2025-03-17T01:29:03", + "date_unixtime": "1742171343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003445 BTC for 65.76 CZK @ 1,908,743 CZK\nFees are 0.23095225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (20.996177379172894867962132536 CZK)\nThe limits being 0.10 % (12.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08446689 BTC (89,077.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,054,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,908,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.99 % (72,147.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,200.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00671895 BTC (12,824.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003445 BTC for 65.76 CZK @ 1,908,743 CZK\nFees are 0.23095225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (20.996177379172894867962132536 CZK)\nThe limits being 0.10 % (12.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08446689 BTC (89,077.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,054,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,908,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.99 % (72,147.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,200.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00671895 BTC (12,824.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1350 transactions" + } + ] + }, + { + "id": 1382, + "type": "message", + "date": "2025-03-17T13:29:04", + "date_unixtime": "1742214544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003427 BTC for 65.76 CZK @ 1,918,831 CZK\nFees are 0.23095978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.107146145188659068806303703 CZK)\nThe limits being 0.10 % (12.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08450116 BTC (89,143.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,054,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.89 % (72,999.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,134.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00675322 BTC (12,958.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003427 BTC for 65.76 CZK @ 1,918,831 CZK\nFees are 0.23095978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.107146145188659068806303703 CZK)\nThe limits being 0.10 % (12.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08450116 BTC (89,143.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,054,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.89 % (72,999.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,134.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00675322 BTC (12,958.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1351 transactions" + } + ] + }, + { + "id": 1383, + "type": "message", + "date": "2025-03-18T01:29:03", + "date_unixtime": "1742257743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003404 BTC for 65.76 CZK @ 1,931,751 CZK\nFees are 0.23095428 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.249256300363533742360024286 CZK)\nThe limits being 0.10 % (13.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08453520 BTC (89,209.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,055,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,931,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.05 % (74,091.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,068.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00678726 BTC (13,111.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003404 BTC for 65.76 CZK @ 1,931,751 CZK\nFees are 0.23095428 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.249256300363533742360024286 CZK)\nThe limits being 0.10 % (13.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08453520 BTC (89,209.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,055,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,931,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.05 % (74,091.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,068.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00678726 BTC (13,111.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1352 transactions" + } + ] + }, + { + "id": 1384, + "type": "message", + "date": "2025-03-18T13:29:03", + "date_unixtime": "1742300943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003455 BTC for 65.77 CZK @ 1,903,572 CZK\nFees are 0.23099505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (20.939287001716856414993254434 CZK)\nThe limits being 0.10 % (12.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08456975 BTC (89,275.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,055,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,903,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.32 % (71,708.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,002.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00682181 BTC (12,985.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003455 BTC for 65.77 CZK @ 1,903,572 CZK\nFees are 0.23099505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (20.939287001716856414993254434 CZK)\nThe limits being 0.10 % (12.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08456975 BTC (89,275.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,055,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,903,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.32 % (71,708.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,002.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00682181 BTC (12,985.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1353 transactions" + } + ] + }, + { + "id": 1385, + "type": "message", + "date": "2025-03-19T01:29:03", + "date_unixtime": "1742344143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003455 BTC for 65.76 CZK @ 1,903,398 CZK\nFees are 0.23097401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (20.937379258557422393547331085 CZK)\nThe limits being 0.10 % (13.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08460430 BTC (89,341.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,055,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,903,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.25 % (71,693.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 936.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00685636 BTC (13,050.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003455 BTC for 65.76 CZK @ 1,903,398 CZK\nFees are 0.23097401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (20.937379258557422393547331085 CZK)\nThe limits being 0.10 % (13.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08460430 BTC (89,341.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,055,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,903,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.25 % (71,693.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 936.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00685636 BTC (13,050.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1354 transactions" + } + ] + }, + { + "id": 1386, + "type": "message", + "date": "2025-03-19T13:29:03", + "date_unixtime": "1742387343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003417 BTC for 65.76 CZK @ 1,924,566 CZK\nFees are 0.23097403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.170222897645772719100356828 CZK)\nThe limits being 0.10 % (13.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08463847 BTC (89,407.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,056,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,924,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.19 % (73,484.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 870.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00689053 BTC (13,261.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003417 BTC for 65.76 CZK @ 1,924,566 CZK\nFees are 0.23097403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.170222897645772719100356828 CZK)\nThe limits being 0.10 % (13.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08463847 BTC (89,407.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,056,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,924,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.19 % (73,484.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 870.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00689053 BTC (13,261.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1355 transactions" + } + ] + }, + { + "id": 1387, + "type": "message", + "date": "2025-03-20T01:29:03", + "date_unixtime": "1742430543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003295 BTC for 65.75 CZK @ 1,995,581 CZK\nFees are 0.23094589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.951393176084009457036941268 CZK)\nThe limits being 0.10 % (13.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08467142 BTC (89,473.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,056,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,995,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.85 % (79,494.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 804.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00692348 BTC (13,816.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003295 BTC for 65.75 CZK @ 1,995,581 CZK\nFees are 0.23094589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.951393176084009457036941268 CZK)\nThe limits being 0.10 % (13.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08467142 BTC (89,473.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,056,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,995,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.85 % (79,494.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 804.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00692348 BTC (13,816.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1356 transactions" + } + ] + }, + { + "id": 1388, + "type": "message", + "date": "2025-03-20T13:29:03", + "date_unixtime": "1742473743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003322 BTC for 65.75 CZK @ 1,979,289 CZK\nFees are 0.23093736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.772175801911851565877046232 CZK)\nThe limits being 0.10 % (13.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08470464 BTC (89,539.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,057,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,979,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.24 % (78,115.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 738.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00695670 BTC (13,769.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003322 BTC for 65.75 CZK @ 1,979,289 CZK\nFees are 0.23093736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.772175801911851565877046232 CZK)\nThe limits being 0.10 % (13.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08470464 BTC (89,539.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,057,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,979,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.24 % (78,115.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 738.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00695670 BTC (13,769.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1357 transactions" + } + ] + }, + { + "id": 1389, + "type": "message", + "date": "2025-03-21T01:29:03", + "date_unixtime": "1742516943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003372 BTC for 65.77 CZK @ 1,950,433 CZK\nFees are 0.23099577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.454763005636854638657935659 CZK)\nThe limits being 0.10 % (13.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08473836 BTC (89,605.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,057,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,950,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.45 % (75,670.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 672.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00699042 BTC (13,634.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003372 BTC for 65.77 CZK @ 1,950,433 CZK\nFees are 0.23099577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.454763005636854638657935659 CZK)\nThe limits being 0.10 % (13.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08473836 BTC (89,605.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,057,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,950,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.45 % (75,670.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 672.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00699042 BTC (13,634.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1358 transactions" + } + ] + }, + { + "id": 1390, + "type": "message", + "date": "2025-03-21T13:29:03", + "date_unixtime": "1742560143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003380 BTC for 65.76 CZK @ 1,945,444 CZK\nFees are 0.23095149 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.399879613659882718178682304 CZK)\nThe limits being 0.10 % (13.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08477216 BTC (89,671.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,057,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,945,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.91 % (75,247.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 606.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00702422 BTC (13,665.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003380 BTC for 65.76 CZK @ 1,945,444 CZK\nFees are 0.23095149 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.399879613659882718178682304 CZK)\nThe limits being 0.10 % (13.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08477216 BTC (89,671.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,057,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,945,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.91 % (75,247.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 606.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00702422 BTC (13,665.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1359 transactions" + } + ] + }, + { + "id": 1391, + "type": "message", + "date": "2025-03-22T01:29:03", + "date_unixtime": "1742603343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003372 BTC for 65.77 CZK @ 1,950,354 CZK\nFees are 0.23098639 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.453891838529559353650124918 CZK)\nThe limits being 0.10 % (13.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08480588 BTC (89,737.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,058,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,950,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.32 % (75,663.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 540.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00705794 BTC (13,765.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003372 BTC for 65.77 CZK @ 1,950,354 CZK\nFees are 0.23098639 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.453891838529559353650124918 CZK)\nThe limits being 0.10 % (13.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08480588 BTC (89,737.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,058,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,950,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.32 % (75,663.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 540.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00705794 BTC (13,765.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1360 transactions" + } + ] + }, + { + "id": 1392, + "type": "message", + "date": "2025-03-22T13:29:04", + "date_unixtime": "1742646544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003363 BTC for 65.75 CZK @ 1,955,152 CZK\nFees are 0.23093659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.506668996010247215329160901 CZK)\nThe limits being 0.10 % (13.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08483951 BTC (89,803.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,058,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,955,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.71 % (76,070.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 474.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00709157 BTC (13,865.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003363 BTC for 65.75 CZK @ 1,955,152 CZK\nFees are 0.23093659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (21.506668996010247215329160901 CZK)\nThe limits being 0.10 % (13.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08483951 BTC (89,803.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,058,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,955,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.71 % (76,070.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 474.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00709157 BTC (13,865.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1361 transactions" + } + ] + }, + { + "id": 1393, + "type": "message", + "date": "2025-03-23T01:29:03", + "date_unixtime": "1742689743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003379 BTC for 65.76 CZK @ 1,946,089 CZK\nFees are 0.23095978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.93 % (128.44188757519737444543387873 CZK)\nThe limits being 0.10 % (13.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08487330 BTC (89,869.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,058,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.79 % (75,301.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 408.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00712536 BTC (13,866.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003379 BTC for 65.76 CZK @ 1,946,089 CZK\nFees are 0.23095978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.93 % (128.44188757519737444543387873 CZK)\nThe limits being 0.10 % (13.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08487330 BTC (89,869.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,058,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.79 % (75,301.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 408.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00712536 BTC (13,866.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1362 transactions" + } + ] + }, + { + "id": 1394, + "type": "message", + "date": "2025-03-23T13:29:03", + "date_unixtime": "1742732943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003350 BTC for 65.76 CZK @ 1,963,127 CZK\nFees are 0.23098221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (21.594391993396247462240367668 CZK)\nThe limits being 0.10 % (14.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08490680 BTC (89,935.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,059,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,963,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.34 % (76,747.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 342.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00715886 BTC (14,053.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003350 BTC for 65.76 CZK @ 1,963,127 CZK\nFees are 0.23098221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (21.594391993396247462240367668 CZK)\nThe limits being 0.10 % (14.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08490680 BTC (89,935.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,059,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,963,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.34 % (76,747.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 342.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00715886 BTC (14,053.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1363 transactions" + } + ] + }, + { + "id": 1395, + "type": "message", + "date": "2025-03-24T01:29:04", + "date_unixtime": "1742776144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003302 BTC for 65.77 CZK @ 1,991,774 CZK\nFees are 0.23099495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (21.909511094874782597673738523 CZK)\nThe limits being 0.10 % (14.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08493982 BTC (90,001.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,059,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,991,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.98 % (79,179.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 276.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00719188 BTC (14,324.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003302 BTC for 65.77 CZK @ 1,991,774 CZK\nFees are 0.23099495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (21.909511094874782597673738523 CZK)\nThe limits being 0.10 % (14.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08493982 BTC (90,001.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,059,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,991,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.98 % (79,179.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 276.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00719188 BTC (14,324.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1364 transactions" + } + ] + }, + { + "id": 1396, + "type": "message", + "date": "2025-03-24T13:29:03", + "date_unixtime": "1742819343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003252 BTC for 65.77 CZK @ 2,022,438 CZK\nFees are 0.23099956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.246817331529070148698497448 CZK)\nThe limits being 0.10 % (14.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08497234 BTC (90,067.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,059,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,022,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.80 % (81,783.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 210.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00722440 BTC (14,610.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003252 BTC for 65.77 CZK @ 2,022,438 CZK\nFees are 0.23099956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.246817331529070148698497448 CZK)\nThe limits being 0.10 % (14.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08497234 BTC (90,067.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,059,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,022,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.80 % (81,783.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 210.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00722440 BTC (14,610.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1365 transactions" + } + ] + }, + { + "id": 1397, + "type": "message", + "date": "2025-03-25T01:29:04", + "date_unixtime": "1742862544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003244 BTC for 65.77 CZK @ 2,027,299 CZK\nFees are 0.23098516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.300289213400447386060010678 CZK)\nThe limits being 0.10 % (14.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08500478 BTC (90,133.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,060,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,027,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.19 % (82,196.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,144.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00725684 BTC (14,711.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003244 BTC for 65.77 CZK @ 2,027,299 CZK\nFees are 0.23098516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.300289213400447386060010678 CZK)\nThe limits being 0.10 % (14.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08500478 BTC (90,133.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,060,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,027,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.19 % (82,196.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,144.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00725684 BTC (14,711.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1366 transactions" + } + ] + }, + { + "id": 1398, + "type": "message", + "date": "2025-03-25T13:29:05", + "date_unixtime": "1742905745", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003263 BTC for 65.76 CZK @ 2,015,446 CZK\nFees are 0.23097957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.169901185873958460741373931 CZK)\nThe limits being 0.10 % (14.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08503741 BTC (90,199.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,060,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,015,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.01 % (81,188.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,078.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00728947 BTC (14,691.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003263 BTC for 65.76 CZK @ 2,015,446 CZK\nFees are 0.23097957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.169901185873958460741373931 CZK)\nThe limits being 0.10 % (14.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08503741 BTC (90,199.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,060,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,015,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.01 % (81,188.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,078.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00728947 BTC (14,691.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1367 transactions" + } + ] + }, + { + "id": 1399, + "type": "message", + "date": "2025-03-26T01:29:03", + "date_unixtime": "1742948943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003247 BTC for 65.75 CZK @ 2,025,034 CZK\nFees are 0.23094051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (178.20302646435044329755004389 CZK)\nThe limits being 0.10 % (14.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08506988 BTC (90,265.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,061,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,025,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.85 % (82,003.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,012.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00732194 BTC (14,827.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003247 BTC for 65.75 CZK @ 2,025,034 CZK\nFees are 0.23094051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (178.20302646435044329755004389 CZK)\nThe limits being 0.10 % (14.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08506988 BTC (90,265.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,061,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,025,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.85 % (82,003.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,012.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00732194 BTC (14,827.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1368 transactions" + } + ] + }, + { + "id": 1400, + "type": "message", + "date": "2025-03-26T13:29:03", + "date_unixtime": "1742992143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003227 BTC for 65.77 CZK @ 2,038,066 CZK\nFees are 0.23099500 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.418723532402627370673050274 CZK)\nThe limits being 0.10 % (14.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08510215 BTC (90,331.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,061,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,038,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.01 % (83,112.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,946.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00735421 BTC (14,988.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003227 BTC for 65.77 CZK @ 2,038,066 CZK\nFees are 0.23099500 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.418723532402627370673050274 CZK)\nThe limits being 0.10 % (14.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08510215 BTC (90,331.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,061,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,038,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.01 % (83,112.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,946.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00735421 BTC (14,988.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1369 transactions" + } + ] + }, + { + "id": 1401, + "type": "message", + "date": "2025-03-27T01:29:03", + "date_unixtime": "1743035343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003249 BTC for 65.76 CZK @ 2,024,029 CZK\nFees are 0.23096801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.264317819917147478439190135 CZK)\nThe limits being 0.10 % (14.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08513464 BTC (90,397.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,061,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,024,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.62 % (81,917.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,881.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00738670 BTC (14,950.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003249 BTC for 65.76 CZK @ 2,024,029 CZK\nFees are 0.23096801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.264317819917147478439190135 CZK)\nThe limits being 0.10 % (14.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08513464 BTC (90,397.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,061,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,024,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.62 % (81,917.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,881.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00738670 BTC (14,950.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1370 transactions" + } + ] + }, + { + "id": 1402, + "type": "message", + "date": "2025-03-27T13:29:04", + "date_unixtime": "1743078544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003252 BTC for 65.75 CZK @ 2,021,976 CZK\nFees are 0.23094678 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.241733698353425985679886694 CZK)\nThe limits being 0.10 % (15.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08516716 BTC (90,463.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,062,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,021,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.36 % (81,742.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,815.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00741922 BTC (15,001.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003252 BTC for 65.75 CZK @ 2,021,976 CZK\nFees are 0.23094678 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (22.241733698353425985679886694 CZK)\nThe limits being 0.10 % (15.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08516716 BTC (90,463.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,062,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,021,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.36 % (81,742.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,815.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00741922 BTC (15,001.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1371 transactions" + } + ] + }, + { + "id": 1403, + "type": "message", + "date": "2025-03-28T01:29:03", + "date_unixtime": "1743121743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003257 BTC for 65.77 CZK @ 2,019,293 CZK\nFees are 0.23099498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (22.212224364555189780196698721 CZK)\nThe limits being 0.10 % (16.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08519973 BTC (90,529.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,062,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,019,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.04 % (81,513.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,749.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00803413 BTC (16,223.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003257 BTC for 65.77 CZK @ 2,019,293 CZK\nFees are 0.23099498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (22.212224364555189780196698721 CZK)\nThe limits being 0.10 % (16.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08519973 BTC (90,529.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,062,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,019,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.04 % (81,513.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,749.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00803413 BTC (16,223.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1372 transactions" + } + ] + }, + { + "id": 1404, + "type": "message", + "date": "2025-03-28T13:29:04", + "date_unixtime": "1743164944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003313 BTC for 65.75 CZK @ 1,984,674 CZK\nFees are 0.23093835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (21.831415017857059603190824268 CZK)\nThe limits being 0.10 % (16.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08523286 BTC (90,595.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,062,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,984,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.72 % (78,563.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,683.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00806726 BTC (16,010.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003313 BTC for 65.75 CZK @ 1,984,674 CZK\nFees are 0.23093835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (21.831415017857059603190824268 CZK)\nThe limits being 0.10 % (16.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08523286 BTC (90,595.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,062,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,984,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.72 % (78,563.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,683.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00806726 BTC (16,010.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1373 transactions" + } + ] + }, + { + "id": 1405, + "type": "message", + "date": "2025-03-29T01:29:03", + "date_unixtime": "1743208143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003370 BTC for 65.75 CZK @ 1,951,120 CZK\nFees are 0.23094004 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (21.462316775262841183454348948 CZK)\nThe limits being 0.10 % (15.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08526656 BTC (90,661.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,063,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,951,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.50 % (75,703.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,617.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00810096 BTC (15,805.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003370 BTC for 65.75 CZK @ 1,951,120 CZK\nFees are 0.23094004 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (21.462316775262841183454348948 CZK)\nThe limits being 0.10 % (15.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08526656 BTC (90,661.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,063,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,951,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.50 % (75,703.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,617.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00810096 BTC (15,805.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1374 transactions" + } + ] + }, + { + "id": 1406, + "type": "message", + "date": "2025-03-29T13:29:05", + "date_unixtime": "1743251345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003452 BTC for 65.75 CZK @ 1,904,727 CZK\nFees are 0.23093462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (20.952001596093856900616093960 CZK)\nThe limits being 0.10 % (15.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08530108 BTC (90,727.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,063,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,904,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.08 % (71,747.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,551.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00813548 BTC (15,495.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003452 BTC for 65.75 CZK @ 1,904,727 CZK\nFees are 0.23093462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (20.952001596093856900616093960 CZK)\nThe limits being 0.10 % (15.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08530108 BTC (90,727.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,063,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,904,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.08 % (71,747.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,551.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00813548 BTC (15,495.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1375 transactions" + } + ] + }, + { + "id": 1407, + "type": "message", + "date": "2025-03-30T01:29:04", + "date_unixtime": "1743294544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003448 BTC for 65.77 CZK @ 1,907,403 CZK\nFees are 0.23099105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.981433739452519430253971888 CZK)\nThe limits being 0.10 % (15.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08533556 BTC (90,793.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,063,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.27 % (71,975.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,485.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00816996 BTC (15,583.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003448 BTC for 65.77 CZK @ 1,907,403 CZK\nFees are 0.23099105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.981433739452519430253971888 CZK)\nThe limits being 0.10 % (15.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08533556 BTC (90,793.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,063,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.27 % (71,975.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,485.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00816996 BTC (15,583.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1376 transactions" + } + ] + }, + { + "id": 1408, + "type": "message", + "date": "2025-03-30T14:29:03", + "date_unixtime": "1743337743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003422 BTC for 65.77 CZK @ 1,921,900 CZK\nFees are 0.23099163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.140901030496127376508345862 CZK)\nThe limits being 0.10 % (15.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08536978 BTC (90,859.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,064,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,921,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.58 % (73,212.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,419.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00820418 BTC (15,767.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003422 BTC for 65.77 CZK @ 1,921,900 CZK\nFees are 0.23099163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.140901030496127376508345862 CZK)\nThe limits being 0.10 % (15.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08536978 BTC (90,859.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,064,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,921,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.58 % (73,212.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,419.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00820418 BTC (15,767.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1377 transactions" + } + ] + }, + { + "id": 1409, + "type": "message", + "date": "2025-03-31T02:29:03", + "date_unixtime": "1743380943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003465 BTC for 65.76 CZK @ 1,897,727 CZK\nFees are 0.23095236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.874997233492300756874747906 CZK)\nThe limits being 0.10 % (15.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08540443 BTC (90,925.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,064,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,897,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.25 % (71,148.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,353.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00823883 BTC (15,635.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003465 BTC for 65.76 CZK @ 1,897,727 CZK\nFees are 0.23095236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.874997233492300756874747906 CZK)\nThe limits being 0.10 % (15.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08540443 BTC (90,925.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,064,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,897,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.25 % (71,148.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,353.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00823883 BTC (15,635.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1378 transactions" + } + ] + }, + { + "id": 1410, + "type": "message", + "date": "2025-03-31T14:29:03", + "date_unixtime": "1743424143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003454 BTC for 65.75 CZK @ 1,903,627 CZK\nFees are 0.23093488 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.939893506485263361673632732 CZK)\nThe limits being 0.10 % (15.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08543897 BTC (90,991.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,064,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,903,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.75 % (71,652.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,287.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00827337 BTC (15,749.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003454 BTC for 65.75 CZK @ 1,903,627 CZK\nFees are 0.23093488 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.939893506485263361673632732 CZK)\nThe limits being 0.10 % (15.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08543897 BTC (90,991.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,064,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,903,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.75 % (71,652.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,287.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00827337 BTC (15,749.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1379 transactions" + } + ] + }, + { + "id": 1411, + "type": "message", + "date": "2025-04-01T02:29:28", + "date_unixtime": "1743467368", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nMicrosoft.Azure.Cosmos.CosmosException : Response status code does not indicate success: RequestTimeout (408); Substatus: 0; ActivityId: 108c8570-1952-45b6-928d-3dcd5b8aa8e0; Reason: (Message: {\"Errors\":[\"The requested operation exceeded maximum alloted time. Learn more: ", + { + "type": "link", + "text": "https://aka.ms/cosmosdb-tsg-service-request-timeout" + }, + "\"]}\nActivityId: 108c8570-1952-45b6-928d-3dcd5b8aa8e0, Request URI: /apps/df06b34d-9971-4df1-a686-fe5c3105df01/services/c08a75b6-2ae5-48db-8ea9-f9f352ebc1b8/partitions/de8e005b-40e0-46a5-9ef6-af13cd9a082b/replicas/133695186084043832p/, RequestStats: Microsoft.Azure.Cosmos.Tracing.TraceData.ClientSideRequestStatisticsTraceDatum, SDK: Windows/10.0.20348 cosmos-netstandard-sdk/3.24.1);\n at Microsoft.Azure.Documents.StoreResult.ToResponse(RequestChargeTracker requestChargeTracker)\n at Microsoft.Azure.Documents.ConsistencyWriter.WritePrivateAsync(DocumentServiceRequest request, TimeoutHelper timeout, Boolean forceRefresh)\n at Microsoft.Azure.Documents.BackoffRetryUtility`1.ExecuteRetryAsync(Func`1 callbackMethod, Func`3 callShouldRetry, Func`1 inBackoffAlternateCallbackMethod, TimeSpan minBackoffForInBackoffCallback, CancellationToken cancellationToken, Action`1 preRetryCallback)\n at Microsoft.Azure.Documents.ShouldRetryResult.ThrowIfDoneTrying(ExceptionDispatchInfo capturedException)\n at Microsoft.Azure.Documents.BackoffRetryUtility`1.ExecuteRetryAsync(Func`1 callbackMethod, Func`3 callShouldRetry, Func`1 inBackoffAlternateCallbackMethod, TimeSpan minBackoffForInBackoffCallback, CancellationToken cancellationToken, Action`1 preRetryCallback)\n at Microsoft.Azure.Documents.ConsistencyWriter.WriteAsync(DocumentServiceRequest entity, TimeoutHelper timeout, Boolean forceRefresh, CancellationToken cancellationToken)\n at Microsoft.Azure.Documents.ReplicatedRe" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nMicrosoft.Azure.Cosmos.CosmosException : Response status code does not indicate success: RequestTimeout (408); Substatus: 0; ActivityId: 108c8570-1952-45b6-928d-3dcd5b8aa8e0; Reason: (Message: {\"Errors\":[\"The requested operation exceeded maximum alloted time. Learn more: " + }, + { + "type": "link", + "text": "https://aka.ms/cosmosdb-tsg-service-request-timeout" + }, + { + "type": "plain", + "text": "\"]}\nActivityId: 108c8570-1952-45b6-928d-3dcd5b8aa8e0, Request URI: /apps/df06b34d-9971-4df1-a686-fe5c3105df01/services/c08a75b6-2ae5-48db-8ea9-f9f352ebc1b8/partitions/de8e005b-40e0-46a5-9ef6-af13cd9a082b/replicas/133695186084043832p/, RequestStats: Microsoft.Azure.Cosmos.Tracing.TraceData.ClientSideRequestStatisticsTraceDatum, SDK: Windows/10.0.20348 cosmos-netstandard-sdk/3.24.1);\n at Microsoft.Azure.Documents.StoreResult.ToResponse(RequestChargeTracker requestChargeTracker)\n at Microsoft.Azure.Documents.ConsistencyWriter.WritePrivateAsync(DocumentServiceRequest request, TimeoutHelper timeout, Boolean forceRefresh)\n at Microsoft.Azure.Documents.BackoffRetryUtility`1.ExecuteRetryAsync(Func`1 callbackMethod, Func`3 callShouldRetry, Func`1 inBackoffAlternateCallbackMethod, TimeSpan minBackoffForInBackoffCallback, CancellationToken cancellationToken, Action`1 preRetryCallback)\n at Microsoft.Azure.Documents.ShouldRetryResult.ThrowIfDoneTrying(ExceptionDispatchInfo capturedException)\n at Microsoft.Azure.Documents.BackoffRetryUtility`1.ExecuteRetryAsync(Func`1 callbackMethod, Func`3 callShouldRetry, Func`1 inBackoffAlternateCallbackMethod, TimeSpan minBackoffForInBackoffCallback, CancellationToken cancellationToken, Action`1 preRetryCallback)\n at Microsoft.Azure.Documents.ConsistencyWriter.WriteAsync(DocumentServiceRequest entity, TimeoutHelper timeout, Boolean forceRefresh, CancellationToken cancellationToken)\n at Microsoft.Azure.Documents.ReplicatedRe" + } + ] + }, + { + "id": 1412, + "type": "message", + "date": "2025-04-01T14:29:03", + "date_unixtime": "1743510543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003370 BTC for 65.75 CZK @ 1,951,057 CZK\nFees are 0.23093256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.461622048350062614676525336 CZK)\nThe limits being 0.10 % (16.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08550709 BTC (91,123.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,065,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,951,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.08 % (75,705.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,155.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00834149 BTC (16,274.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003370 BTC for 65.75 CZK @ 1,951,057 CZK\nFees are 0.23093256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.461622048350062614676525336 CZK)\nThe limits being 0.10 % (16.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08550709 BTC (91,123.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,065,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,951,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.08 % (75,705.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,155.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00834149 BTC (16,274.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1381 transactions" + } + ] + }, + { + "id": 1413, + "type": "message", + "date": "2025-04-02T02:29:03", + "date_unixtime": "1743553743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003330 BTC for 65.75 CZK @ 1,974,621 CZK\nFees are 0.23094759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.720832208890504854630415168 CZK)\nThe limits being 0.10 % (16.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08554039 BTC (91,189.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,066,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,974,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.23 % (77,720.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,089.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00837479 BTC (16,537.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003330 BTC for 65.75 CZK @ 1,974,621 CZK\nFees are 0.23094759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.720832208890504854630415168 CZK)\nThe limits being 0.10 % (16.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08554039 BTC (91,189.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,066,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,974,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.23 % (77,720.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,089.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00837479 BTC (16,537.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1382 transactions" + } + ] + }, + { + "id": 1414, + "type": "message", + "date": "2025-04-02T14:29:03", + "date_unixtime": "1743596943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003350 BTC for 65.76 CZK @ 1,963,125 CZK\nFees are 0.23098197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.594369939242501989306085418 CZK)\nThe limits being 0.10 % (16.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08557389 BTC (91,255.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,066,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,963,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.09 % (76,736.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,023.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00840829 BTC (16,506.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003350 BTC for 65.76 CZK @ 1,963,125 CZK\nFees are 0.23098197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.594369939242501989306085418 CZK)\nThe limits being 0.10 % (16.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08557389 BTC (91,255.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,066,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,963,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.09 % (76,736.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,023.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00840829 BTC (16,506.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1383 transactions" + } + ] + }, + { + "id": 1415, + "type": "message", + "date": "2025-04-03T02:29:05", + "date_unixtime": "1743640145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003442 BTC for 65.75 CZK @ 1,910,309 CZK\nFees are 0.23094043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.013402183004458248541493500 CZK)\nThe limits being 0.10 % (16.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08560831 BTC (91,321.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,066,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,910,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.08 % (72,216.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,957.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00844271 BTC (16,128.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003442 BTC for 65.75 CZK @ 1,910,309 CZK\nFees are 0.23094043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.013402183004458248541493500 CZK)\nThe limits being 0.10 % (16.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08560831 BTC (91,321.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,066,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,910,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.08 % (72,216.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,957.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00844271 BTC (16,128.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1384 transactions" + } + ] + }, + { + "id": 1416, + "type": "message", + "date": "2025-04-03T14:29:03", + "date_unixtime": "1743683343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003516 BTC for 65.75 CZK @ 1,870,062 CZK\nFees are 0.23093532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.570684989907337968985683215 CZK)\nThe limits being 0.10 % (15.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08564347 BTC (91,387.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,067,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,870,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.25 % (68,771.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,891.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00847787 BTC (15,854.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003516 BTC for 65.75 CZK @ 1,870,062 CZK\nFees are 0.23093532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.570684989907337968985683215 CZK)\nThe limits being 0.10 % (15.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08564347 BTC (91,387.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,067,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,870,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.25 % (68,771.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,891.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00847787 BTC (15,854.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1385 transactions" + } + ] + }, + { + "id": 1417, + "type": "message", + "date": "2025-04-04T02:29:03", + "date_unixtime": "1743726543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003469 BTC for 65.76 CZK @ 1,895,564 CZK\nFees are 0.23095538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.851200096577516311818982366 CZK)\nThe limits being 0.10 % (16.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08567816 BTC (91,453.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,067,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,895,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.59 % (70,955.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,825.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00851256 BTC (16,136.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003469 BTC for 65.76 CZK @ 1,895,564 CZK\nFees are 0.23095538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.851200096577516311818982366 CZK)\nThe limits being 0.10 % (16.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08567816 BTC (91,453.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,067,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,895,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.59 % (70,955.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,825.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00851256 BTC (16,136.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1386 transactions" + } + ] + }, + { + "id": 1418, + "type": "message", + "date": "2025-04-04T14:29:03", + "date_unixtime": "1743769743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003502 BTC for 65.76 CZK @ 1,877,900 CZK\nFees are 0.23097978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.656897235176596361620678282 CZK)\nThe limits being 0.10 % (16.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08571318 BTC (91,519.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,067,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,877,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.88 % (69,441.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,759.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00854758 BTC (16,051.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003502 BTC for 65.76 CZK @ 1,877,900 CZK\nFees are 0.23097978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.656897235176596361620678282 CZK)\nThe limits being 0.10 % (16.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08571318 BTC (91,519.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,067,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,877,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.88 % (69,441.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,759.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00854758 BTC (16,051.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1387 transactions" + } + ] + }, + { + "id": 1419, + "type": "message", + "date": "2025-04-05T02:29:03", + "date_unixtime": "1743812943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003397 BTC for 65.76 CZK @ 1,935,693 CZK\nFees are 0.23094977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.292627082221350970748685165 CZK)\nThe limits being 0.10 % (16.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08574715 BTC (91,585.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,068,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,935,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.23 % (74,394.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,693.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00858155 BTC (16,611.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003397 BTC for 65.76 CZK @ 1,935,693 CZK\nFees are 0.23094977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.292627082221350970748685165 CZK)\nThe limits being 0.10 % (16.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08574715 BTC (91,585.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,068,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,935,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.23 % (74,394.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,693.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00858155 BTC (16,611.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1388 transactions" + } + ] + }, + { + "id": 1420, + "type": "message", + "date": "2025-04-05T14:29:03", + "date_unixtime": "1743856143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003401 BTC for 65.75 CZK @ 1,933,305 CZK\nFees are 0.23093647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.266359805368068566837591511 CZK)\nThe limits being 0.10 % (16.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08578116 BTC (91,651.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,068,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,933,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.95 % (74,189.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,627.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00861556 BTC (16,656.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003401 BTC for 65.75 CZK @ 1,933,305 CZK\nFees are 0.23093647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.266359805368068566837591511 CZK)\nThe limits being 0.10 % (16.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08578116 BTC (91,651.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,068,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,933,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.95 % (74,189.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,627.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00861556 BTC (16,656.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1389 transactions" + } + ] + }, + { + "id": 1421, + "type": "message", + "date": "2025-04-06T02:29:04", + "date_unixtime": "1743899344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003408 BTC for 65.75 CZK @ 1,929,375 CZK\nFees are 0.23094129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.223121352554790627171098339 CZK)\nThe limits being 0.10 % (16.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08581524 BTC (91,717.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,068,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,929,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.52 % (73,852.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,561.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00864964 BTC (16,688.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003408 BTC for 65.75 CZK @ 1,929,375 CZK\nFees are 0.23094129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.223121352554790627171098339 CZK)\nThe limits being 0.10 % (16.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08581524 BTC (91,717.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,068,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,929,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.52 % (73,852.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,561.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00864964 BTC (16,688.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1390 transactions" + } + ] + }, + { + "id": 1422, + "type": "message", + "date": "2025-04-06T14:29:03", + "date_unixtime": "1743942543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003428 BTC for 65.75 CZK @ 1,918,144 CZK\nFees are 0.23094437 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.099581346849620261407128724 CZK)\nThe limits being 0.10 % (16.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08584952 BTC (91,783.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,069,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.41 % (72,888.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,495.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00868392 BTC (16,657.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003428 BTC for 65.75 CZK @ 1,918,144 CZK\nFees are 0.23094437 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (21.099581346849620261407128724 CZK)\nThe limits being 0.10 % (16.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08584952 BTC (91,783.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,069,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.41 % (72,888.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,495.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00868392 BTC (16,657.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1391 transactions" + } + ] + }, + { + "id": 1423, + "type": "message", + "date": "2025-04-07T02:29:03", + "date_unixtime": "1743985743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003641 BTC for 65.77 CZK @ 1,806,343 CZK\nFees are 0.23099698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.869772159977841903789907530 CZK)\nThe limits being 0.10 % (15.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08588593 BTC (91,849.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,069,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,806,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.91 % (63,290.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,429.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00872033 BTC (15,751.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003641 BTC for 65.77 CZK @ 1,806,343 CZK\nFees are 0.23099698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.869772159977841903789907530 CZK)\nThe limits being 0.10 % (15.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08588593 BTC (91,849.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,069,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,806,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.91 % (63,290.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,429.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00872033 BTC (15,751.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1392 transactions" + } + ] + }, + { + "id": 1424, + "type": "message", + "date": "2025-04-07T14:29:04", + "date_unixtime": "1744028944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003679 BTC for 65.76 CZK @ 1,787,480 CZK\nFees are 0.23097045 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.662280523739079571052823679 CZK)\nThe limits being 0.10 % (15.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08592272 BTC (91,915.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,069,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,787,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.09 % (61,669.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,363.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00875712 BTC (15,653.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003679 BTC for 65.76 CZK @ 1,787,480 CZK\nFees are 0.23097045 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.662280523739079571052823679 CZK)\nThe limits being 0.10 % (15.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08592272 BTC (91,915.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,069,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,787,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.09 % (61,669.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,363.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00875712 BTC (15,653.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1393 transactions" + } + ] + }, + { + "id": 1425, + "type": "message", + "date": "2025-04-08T02:29:03", + "date_unixtime": "1744072143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003573 BTC for 65.77 CZK @ 1,840,674 CZK\nFees are 0.23099117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.247416639299535309595815709 CZK)\nThe limits being 0.10 % (16.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08595845 BTC (91,981.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,070,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,840,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.01 % (66,240.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,297.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00879285 BTC (16,184.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003573 BTC for 65.77 CZK @ 1,840,674 CZK\nFees are 0.23099117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (20.247416639299535309595815709 CZK)\nThe limits being 0.10 % (16.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08595845 BTC (91,981.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,070,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,840,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.01 % (66,240.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,297.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00879285 BTC (16,184.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1394 transactions" + } + ] + }, + { + "id": 1426, + "type": "message", + "date": "2025-04-08T14:29:04", + "date_unixtime": "1744115344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003567 BTC for 65.76 CZK @ 1,843,444 CZK\nFees are 0.23095029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.277885359470057769491668424 CZK)\nThe limits being 0.10 % (16.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08599412 BTC (92,047.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,070,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,843,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.22 % (66,478.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,231.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882852 BTC (16,274.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003567 BTC for 65.76 CZK @ 1,843,444 CZK\nFees are 0.23095029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.277885359470057769491668424 CZK)\nThe limits being 0.10 % (16.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08599412 BTC (92,047.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,070,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,843,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.22 % (66,478.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,231.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882852 BTC (16,274.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1395 transactions" + } + ] + }, + { + "id": 1427, + "type": "message", + "date": "2025-04-09T02:29:03", + "date_unixtime": "1744158543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003731 BTC for 65.77 CZK @ 1,762,733 CZK\nFees are 0.23099208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.390058026336928229086164118 CZK)\nThe limits being 0.10 % (15.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08603143 BTC (92,113.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,070,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,762,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 64.63 % (59,537.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,165.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00886583 BTC (15,628.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003731 BTC for 65.77 CZK @ 1,762,733 CZK\nFees are 0.23099208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.390058026336928229086164118 CZK)\nThe limits being 0.10 % (15.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08603143 BTC (92,113.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,070,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,762,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 64.63 % (59,537.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,165.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00886583 BTC (15,628.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1396 transactions" + } + ] + }, + { + "id": 1428, + "type": "message", + "date": "2025-04-09T14:29:04", + "date_unixtime": "1744201744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003771 BTC for 65.63 CZK @ 1,740,512 CZK\nFees are 0.23052547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.145629675610304269186724745 CZK)\nThe limits being 0.10 % (15.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08606914 BTC (92,179.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,070,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,740,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.51 % (57,625.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,099.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00890354 BTC (15,496.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003771 BTC for 65.63 CZK @ 1,740,512 CZK\nFees are 0.23052547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.145629675610304269186724745 CZK)\nThe limits being 0.10 % (15.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08606914 BTC (92,179.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,070,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,740,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.51 % (57,625.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,099.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00890354 BTC (15,496.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1397 transactions" + } + ] + }, + { + "id": 1429, + "type": "message", + "date": "2025-04-10T02:29:04", + "date_unixtime": "1744244944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003477 BTC for 65.76 CZK @ 1,891,363 CZK\nFees are 0.23097504 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.804995272943891089269237279 CZK)\nThe limits being 0.10 % (16.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08610391 BTC (92,245.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,071,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,891,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.54 % (70,608.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,033.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00893831 BTC (16,905.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003477 BTC for 65.76 CZK @ 1,891,363 CZK\nFees are 0.23097504 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.804995272943891089269237279 CZK)\nThe limits being 0.10 % (16.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08610391 BTC (92,245.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,071,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,891,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.54 % (70,608.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,033.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00893831 BTC (16,905.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1398 transactions" + } + ] + }, + { + "id": 1430, + "type": "message", + "date": "2025-04-10T14:29:06", + "date_unixtime": "1744288146", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 65.76 CZK @ 1,859,069 CZK\nFees are 0.23094894 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.449758477221159360389611762 CZK)\nThe limits being 0.10 % (16.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08613928 BTC (92,311.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,071,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.48 % (67,827.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,967.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00897368 BTC (16,682.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 65.76 CZK @ 1,859,069 CZK\nFees are 0.23094894 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.449758477221159360389611762 CZK)\nThe limits being 0.10 % (16.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08613928 BTC (92,311.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,071,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.48 % (67,827.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,967.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00897368 BTC (16,682.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1399 transactions" + } + ] + }, + { + "id": 1431, + "type": "message", + "date": "2025-04-11T02:29:03", + "date_unixtime": "1744331343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003687 BTC for 65.76 CZK @ 1,783,689 CZK\nFees are 0.23098172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.620574883216580319843390552 CZK)\nThe limits being 0.10 % (16.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08617615 BTC (92,377.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,071,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,783,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 66.40 % (61,334.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,901.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00901055 BTC (16,072.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003687 BTC for 65.76 CZK @ 1,783,689 CZK\nFees are 0.23098172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.620574883216580319843390552 CZK)\nThe limits being 0.10 % (16.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08617615 BTC (92,377.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,071,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,783,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 66.40 % (61,334.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,901.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00901055 BTC (16,072.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1400 transactions" + } + ] + }, + { + "id": 1432, + "type": "message", + "date": "2025-04-11T14:29:03", + "date_unixtime": "1744374543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 65.77 CZK @ 1,829,985 CZK\nFees are 0.23099945 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.129831430560650411373215448 CZK)\nThe limits being 0.10 % (16.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08621209 BTC (92,443.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,072,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,829,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.66 % (65,323.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,835.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00904649 BTC (16,554.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 65.77 CZK @ 1,829,985 CZK\nFees are 0.23099945 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.129831430560650411373215448 CZK)\nThe limits being 0.10 % (16.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08621209 BTC (92,443.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,072,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,829,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.66 % (65,323.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,835.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00904649 BTC (16,554.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1401 transactions" + } + ] + }, + { + "id": 1433, + "type": "message", + "date": "2025-04-12T02:29:03", + "date_unixtime": "1744417743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003550 BTC for 65.76 CZK @ 1,852,265 CZK\nFees are 0.23094944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.374915485940054878348316105 CZK)\nThe limits being 0.10 % (16.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08624759 BTC (92,509.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,072,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,852,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.69 % (67,244.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,769.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00908199 BTC (16,822.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003550 BTC for 65.76 CZK @ 1,852,265 CZK\nFees are 0.23094944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.374915485940054878348316105 CZK)\nThe limits being 0.10 % (16.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08624759 BTC (92,509.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,072,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,852,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.69 % (67,244.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,769.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00908199 BTC (16,822.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1402 transactions" + } + ] + }, + { + "id": 1434, + "type": "message", + "date": "2025-04-12T14:29:03", + "date_unixtime": "1744460943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003535 BTC for 65.77 CZK @ 1,860,471 CZK\nFees are 0.23099248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.465185817390195137386896921 CZK)\nThe limits being 0.10 % (16.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08628294 BTC (92,575.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,072,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,860,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.40 % (67,951.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,703.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00911734 BTC (16,962.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003535 BTC for 65.77 CZK @ 1,860,471 CZK\nFees are 0.23099248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.465185817390195137386896921 CZK)\nThe limits being 0.10 % (16.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08628294 BTC (92,575.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,072,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,860,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.40 % (67,951.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,703.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00911734 BTC (16,962.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1403 transactions" + } + ] + }, + { + "id": 1435, + "type": "message", + "date": "2025-04-13T02:29:03", + "date_unixtime": "1744504143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003476 BTC for 65.76 CZK @ 1,891,774 CZK\nFees are 0.23095879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.809516508675332538646383229 CZK)\nThe limits being 0.10 % (17.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08631770 BTC (92,641.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,073,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,891,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.26 % (70,652.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,637.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00915210 BTC (17,313.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003476 BTC for 65.76 CZK @ 1,891,774 CZK\nFees are 0.23095879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.809516508675332538646383229 CZK)\nThe limits being 0.10 % (17.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08631770 BTC (92,641.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,073,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,891,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.26 % (70,652.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,637.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00915210 BTC (17,313.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1404 transactions" + } + ] + }, + { + "id": 1436, + "type": "message", + "date": "2025-04-13T14:29:03", + "date_unixtime": "1744547343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003514 BTC for 65.77 CZK @ 1,871,542 CZK\nFees are 0.23098658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.586961438323863064362948235 CZK)\nThe limits being 0.10 % (17.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08635284 BTC (92,707.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,073,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.33 % (68,905.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,571.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00918724 BTC (17,194.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003514 BTC for 65.77 CZK @ 1,871,542 CZK\nFees are 0.23098658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.586961438323863064362948235 CZK)\nThe limits being 0.10 % (17.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08635284 BTC (92,707.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,073,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.33 % (68,905.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,571.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00918724 BTC (17,194.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1405 transactions" + } + ] + }, + { + "id": 1437, + "type": "message", + "date": "2025-04-14T02:29:03", + "date_unixtime": "1744590543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003502 BTC for 65.75 CZK @ 1,877,575 CZK\nFees are 0.23093983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.653324359032364451433119433 CZK)\nThe limits being 0.10 % (17.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08638786 BTC (92,773.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,073,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,877,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.83 % (69,426.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,505.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00922226 BTC (17,315.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003502 BTC for 65.75 CZK @ 1,877,575 CZK\nFees are 0.23093983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.653324359032364451433119433 CZK)\nThe limits being 0.10 % (17.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08638786 BTC (92,773.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,073,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,877,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.83 % (69,426.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,505.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00922226 BTC (17,315.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1406 transactions" + } + ] + }, + { + "id": 1438, + "type": "message", + "date": "2025-04-14T14:29:03", + "date_unixtime": "1744633743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003494 BTC for 65.76 CZK @ 1,882,180 CZK\nFees are 0.23097744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.703984250315652514425041833 CZK)\nThe limits being 0.10 % (17.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08642280 BTC (92,839.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,074,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,882,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.21 % (69,824.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,439.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00925720 BTC (17,423.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003494 BTC for 65.76 CZK @ 1,882,180 CZK\nFees are 0.23097744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.703984250315652514425041833 CZK)\nThe limits being 0.10 % (17.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08642280 BTC (92,839.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,074,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,882,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.21 % (69,824.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,439.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00925720 BTC (17,423.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1407 transactions" + } + ] + }, + { + "id": 1439, + "type": "message", + "date": "2025-04-15T02:29:03", + "date_unixtime": "1744676943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003493 BTC for 65.76 CZK @ 1,882,579 CZK\nFees are 0.23096028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.708373159444378114903021218 CZK)\nThe limits being 0.10 % (17.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08645773 BTC (92,905.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,074,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,882,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.19 % (69,858.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,373.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00929213 BTC (17,493.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003493 BTC for 65.76 CZK @ 1,882,579 CZK\nFees are 0.23096028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.708373159444378114903021218 CZK)\nThe limits being 0.10 % (17.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08645773 BTC (92,905.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,074,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,882,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.19 % (69,858.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,373.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00929213 BTC (17,493.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1408 transactions" + } + ] + }, + { + "id": 1440, + "type": "message", + "date": "2025-04-15T14:29:07", + "date_unixtime": "1744720147", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003461 BTC for 65.75 CZK @ 1,899,793 CZK\nFees are 0.23093690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.897724715014352395912198090 CZK)\nThe limits being 0.10 % (17.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08649234 BTC (92,971.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,074,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,899,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.74 % (71,346.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,307.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00932674 BTC (17,718.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003461 BTC for 65.75 CZK @ 1,899,793 CZK\nFees are 0.23093690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.897724715014352395912198090 CZK)\nThe limits being 0.10 % (17.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08649234 BTC (92,971.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,074,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,899,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.74 % (71,346.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,307.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00932674 BTC (17,718.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1409 transactions" + } + ] + }, + { + "id": 1441, + "type": "message", + "date": "2025-04-16T02:29:03", + "date_unixtime": "1744763343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003530 BTC for 65.76 CZK @ 1,863,008 CZK\nFees are 0.23098022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.493085149850876041503463091 CZK)\nThe limits being 0.10 % (17.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08652764 BTC (93,037.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,075,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,863,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.27 % (68,164.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,241.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00936204 BTC (17,441.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003530 BTC for 65.76 CZK @ 1,863,008 CZK\nFees are 0.23098022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.493085149850876041503463091 CZK)\nThe limits being 0.10 % (17.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08652764 BTC (93,037.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,075,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,863,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.27 % (68,164.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,241.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00936204 BTC (17,441.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1410 transactions" + } + ] + }, + { + "id": 1442, + "type": "message", + "date": "2025-04-16T14:29:03", + "date_unixtime": "1744806543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 65.76 CZK @ 1,859,231 CZK\nFees are 0.23096912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.451544916794611565204566038 CZK)\nThe limits being 0.10 % (17.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08656301 BTC (93,103.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,075,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.86 % (67,837.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,175.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00939741 BTC (17,471.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 65.76 CZK @ 1,859,231 CZK\nFees are 0.23096912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.451544916794611565204566038 CZK)\nThe limits being 0.10 % (17.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08656301 BTC (93,103.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,075,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.86 % (67,837.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,175.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00939741 BTC (17,471.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1411 transactions" + } + ] + }, + { + "id": 1443, + "type": "message", + "date": "2025-04-17T02:29:03", + "date_unixtime": "1744849743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003546 BTC for 65.76 CZK @ 1,854,604 CZK\nFees are 0.23098050 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.400642419608077875208906448 CZK)\nThe limits being 0.10 % (17.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08659847 BTC (93,169.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,075,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,854,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.38 % (67,436.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,109.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00943287 BTC (17,494.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003546 BTC for 65.76 CZK @ 1,854,604 CZK\nFees are 0.23098050 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (20.400642419608077875208906448 CZK)\nThe limits being 0.10 % (17.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08659847 BTC (93,169.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,075,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,854,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.38 % (67,436.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,109.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00943287 BTC (17,494.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1412 transactions" + } + ] + }, + { + "id": 1444, + "type": "message", + "date": "2025-04-17T14:29:03", + "date_unixtime": "1744892943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003513 BTC for 65.76 CZK @ 1,871,867 CZK\nFees are 0.23096092 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 31.31 % (20.590534317477783068114431826 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08663360 BTC (93,235.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,076,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.93 % (68,931.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,049.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00003513 BTC (65.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003513 BTC for 65.76 CZK @ 1,871,867 CZK\nFees are 0.23096092 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 31.31 % (20.590534317477783068114431826 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08663360 BTC (93,235.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,076,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.93 % (68,931.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,049.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00003513 BTC (65.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1413 transactions" + } + ] + }, + { + "id": 1445, + "type": "message", + "date": "2025-04-18T02:29:04", + "date_unixtime": "1744936144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003504 BTC for 65.77 CZK @ 1,876,985 CZK\nFees are 0.23099918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.68 % (20.646840242939665508619375565 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08666864 BTC (93,301.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,076,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,876,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.36 % (69,374.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 983.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00007017 BTC (131.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003504 BTC for 65.77 CZK @ 1,876,985 CZK\nFees are 0.23099918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.68 % (20.646840242939665508619375565 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08666864 BTC (93,301.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,076,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,876,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.36 % (69,374.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 983.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00007017 BTC (131.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1414 transactions" + } + ] + }, + { + "id": 1446, + "type": "message", + "date": "2025-04-18T14:29:03", + "date_unixtime": "1744979343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003516 BTC for 65.76 CZK @ 1,870,305 CZK\nFees are 0.23096528 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.44 % (20.573353624090427530945445208 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08670380 BTC (93,367.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,076,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,870,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.68 % (68,795.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 917.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00010533 BTC (197.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003516 BTC for 65.76 CZK @ 1,870,305 CZK\nFees are 0.23096528 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.44 % (20.573353624090427530945445208 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08670380 BTC (93,367.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,076,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,870,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.68 % (68,795.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 917.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00010533 BTC (197.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1415 transactions" + } + ] + }, + { + "id": 1447, + "type": "message", + "date": "2025-04-19T02:29:03", + "date_unixtime": "1745022543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003522 BTC for 65.76 CZK @ 1,867,171 CZK\nFees are 0.23097176 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.83 % (20.538881958856664932248770416 CZK)\nThe limits being 0.10 % (0.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08673902 BTC (93,433.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,077,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,867,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.34 % (68,523.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 851.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00014055 BTC (262.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003522 BTC for 65.76 CZK @ 1,867,171 CZK\nFees are 0.23097176 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.83 % (20.538881958856664932248770416 CZK)\nThe limits being 0.10 % (0.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08673902 BTC (93,433.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,077,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,867,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.34 % (68,523.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 851.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00014055 BTC (262.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1416 transactions" + } + ] + }, + { + "id": 1448, + "type": "message", + "date": "2025-04-19T14:29:04", + "date_unixtime": "1745065744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 65.76 CZK @ 1,887,522 CZK\nFees are 0.23096997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.27 % (20.762738261377944130102620164 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08677386 BTC (93,499.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,077,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,887,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.18 % (70,288.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 785.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00017539 BTC (331.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 65.76 CZK @ 1,887,522 CZK\nFees are 0.23096997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.27 % (20.762738261377944130102620164 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08677386 BTC (93,499.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,077,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,887,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.18 % (70,288.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 785.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00017539 BTC (331.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1417 transactions" + } + ] + }, + { + "id": 1449, + "type": "message", + "date": "2025-04-20T02:29:03", + "date_unixtime": "1745108943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003500 BTC for 65.76 CZK @ 1,878,885 CZK\nFees are 0.23096901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.23 % (20.667737175884404583956153463 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08680886 BTC (93,564.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,077,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,878,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.32 % (69,538.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 719.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00021039 BTC (395.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003500 BTC for 65.76 CZK @ 1,878,885 CZK\nFees are 0.23096901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.23 % (20.667737175884404583956153463 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08680886 BTC (93,564.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,077,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,878,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.32 % (69,538.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 719.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00021039 BTC (395.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1418 transactions" + } + ] + }, + { + "id": 1450, + "type": "message", + "date": "2025-04-20T14:29:03", + "date_unixtime": "1745152143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003531 BTC for 65.77 CZK @ 1,862,623 CZK\nFees are 0.23099791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.48 % (20.488850624061889306430608137 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08684417 BTC (93,630.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,078,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,862,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.76 % (68,126.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 653.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00024570 BTC (457.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003531 BTC for 65.77 CZK @ 1,862,623 CZK\nFees are 0.23099791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.48 % (20.488850624061889306430608137 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08684417 BTC (93,630.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,078,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,862,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.76 % (68,126.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 653.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00024570 BTC (457.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1419 transactions" + } + ] + }, + { + "id": 1451, + "type": "message", + "date": "2025-04-21T02:29:03", + "date_unixtime": "1745195343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003490 BTC for 65.75 CZK @ 1,884,031 CZK\nFees are 0.23093986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.92 % (20.724340840867850774438462516 CZK)\nThe limits being 0.10 % (0.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08687907 BTC (93,696.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,078,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,884,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.69 % (69,985.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 587.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00028060 BTC (528.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003490 BTC for 65.75 CZK @ 1,884,031 CZK\nFees are 0.23093986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.92 % (20.724340840867850774438462516 CZK)\nThe limits being 0.10 % (0.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08687907 BTC (93,696.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,078,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,884,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.69 % (69,985.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 587.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00028060 BTC (528.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1420 transactions" + } + ] + }, + { + "id": 1452, + "type": "message", + "date": "2025-04-21T14:29:03", + "date_unixtime": "1745238543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003459 BTC for 65.75 CZK @ 1,900,892 CZK\nFees are 0.23093694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.49 % (20.909810748244111783951313508 CZK)\nThe limits being 0.10 % (0.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08691366 BTC (93,762.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,078,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,900,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.20 % (71,450.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 521.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00031519 BTC (599.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003459 BTC for 65.75 CZK @ 1,900,892 CZK\nFees are 0.23093694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.49 % (20.909810748244111783951313508 CZK)\nThe limits being 0.10 % (0.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08691366 BTC (93,762.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,078,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,900,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.20 % (71,450.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 521.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00031519 BTC (599.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1421 transactions" + } + ] + }, + { + "id": 1453, + "type": "message", + "date": "2025-04-22T02:29:02", + "date_unixtime": "1745281742", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003445 BTC for 65.64 CZK @ 1,905,298 CZK\nFees are 0.23053535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.15 % (20.958276387939743553585672208 CZK)\nThe limits being 0.10 % (0.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08694811 BTC (93,828.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,079,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,905,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.56 % (71,833.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 455.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00034964 BTC (666.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003445 BTC for 65.64 CZK @ 1,905,298 CZK\nFees are 0.23053535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.15 % (20.958276387939743553585672208 CZK)\nThe limits being 0.10 % (0.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08694811 BTC (93,828.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,079,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,905,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.56 % (71,833.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 455.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00034964 BTC (666.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1422 transactions" + } + ] + }, + { + "id": 1454, + "type": "message", + "date": "2025-04-22T14:29:04", + "date_unixtime": "1745324944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003387 BTC for 65.77 CZK @ 1,941,824 CZK\nFees are 0.23099916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.87 % (21.360059658040672232365345443 CZK)\nThe limits being 0.10 % (0.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08698198 BTC (93,894.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,079,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,941,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.89 % (75,008.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 389.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00038351 BTC (744.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003387 BTC for 65.77 CZK @ 1,941,824 CZK\nFees are 0.23099916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.87 % (21.360059658040672232365345443 CZK)\nThe limits being 0.10 % (0.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08698198 BTC (93,894.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,079,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,941,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.89 % (75,008.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 389.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00038351 BTC (744.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1423 transactions" + } + ] + }, + { + "id": 1455, + "type": "message", + "date": "2025-04-23T02:29:03", + "date_unixtime": "1745368143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003188 BTC for 65.76 CZK @ 2,062,587 CZK\nFees are 0.23094893 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.65 % (22.688453837541002976408167399 CZK)\nThe limits being 0.10 % (0.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08701386 BTC (93,960.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,079,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,062,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.01 % (85,512.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 323.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00041539 BTC (856.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003188 BTC for 65.76 CZK @ 2,062,587 CZK\nFees are 0.23094893 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.65 % (22.688453837541002976408167399 CZK)\nThe limits being 0.10 % (0.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08701386 BTC (93,960.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,079,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,062,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.01 % (85,512.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 323.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00041539 BTC (856.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1424 transactions" + } + ] + }, + { + "id": 1456, + "type": "message", + "date": "2025-04-23T14:29:04", + "date_unixtime": "1745411344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003194 BTC for 65.76 CZK @ 2,058,895 CZK\nFees are 0.23096939 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.46 % (22.647839906289165129311030679 CZK)\nThe limits being 0.10 % (0.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08704580 BTC (94,026.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,080,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,058,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.60 % (85,191.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 257.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00044733 BTC (921.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003194 BTC for 65.76 CZK @ 2,058,895 CZK\nFees are 0.23096939 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.46 % (22.647839906289165129311030679 CZK)\nThe limits being 0.10 % (0.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08704580 BTC (94,026.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,080,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,058,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.60 % (85,191.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 257.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00044733 BTC (921.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1425 transactions" + } + ] + }, + { + "id": 1457, + "type": "message", + "date": "2025-04-24T02:29:03", + "date_unixtime": "1745454543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003184 BTC for 65.75 CZK @ 2,065,123 CZK\nFees are 0.23094279 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 13.77 % (136.29811901810998189752950102 CZK)\nThe limits being 0.10 % (0.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08707764 BTC (94,092.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,080,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,065,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.12 % (85,733.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,191.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00047917 BTC (989.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003184 BTC for 65.75 CZK @ 2,065,123 CZK\nFees are 0.23094279 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 13.77 % (136.29811901810998189752950102 CZK)\nThe limits being 0.10 % (0.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08707764 BTC (94,092.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,080,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,065,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.12 % (85,733.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,191.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00047917 BTC (989.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1426 transactions" + } + ] + }, + { + "id": 1458, + "type": "message", + "date": "2025-04-24T14:29:04", + "date_unixtime": "1745497744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003227 BTC for 65.75 CZK @ 2,037,487 CZK\nFees are 0.23092944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.15 % (22.412360719817175368083415514 CZK)\nThe limits being 0.10 % (1.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08710991 BTC (94,158.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,080,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,037,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.50 % (83,326.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,125.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00051144 BTC (1,042.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003227 BTC for 65.75 CZK @ 2,037,487 CZK\nFees are 0.23092944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.15 % (22.412360719817175368083415514 CZK)\nThe limits being 0.10 % (1.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08710991 BTC (94,158.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,080,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,037,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.50 % (83,326.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,125.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00051144 BTC (1,042.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1427 transactions" + } + ] + }, + { + "id": 1459, + "type": "message", + "date": "2025-04-25T02:29:04", + "date_unixtime": "1745540944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003187 BTC for 65.77 CZK @ 2,063,632 CZK\nFees are 0.23099352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.02 % (22.699955418351427362249072082 CZK)\nThe limits being 0.10 % (1.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08714178 BTC (94,224.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,081,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,063,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.85 % (85,603.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,559.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00054331 BTC (1,121.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003187 BTC for 65.77 CZK @ 2,063,632 CZK\nFees are 0.23099352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.02 % (22.699955418351427362249072082 CZK)\nThe limits being 0.10 % (1.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08714178 BTC (94,224.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,081,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,063,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.85 % (85,603.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,559.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00054331 BTC (1,121.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1428 transactions" + } + ] + }, + { + "id": 1460, + "type": "message", + "date": "2025-04-25T14:29:04", + "date_unixtime": "1745584144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003156 BTC for 65.77 CZK @ 2,083,853 CZK\nFees are 0.23098799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.91 % (22.922378157437561689978610983 CZK)\nThe limits being 0.10 % (1.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08717334 BTC (94,290.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,081,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,083,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.66 % (87,365.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,493.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00057487 BTC (1,197.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003156 BTC for 65.77 CZK @ 2,083,853 CZK\nFees are 0.23098799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.91 % (22.922378157437561689978610983 CZK)\nThe limits being 0.10 % (1.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08717334 BTC (94,290.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,081,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,083,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.66 % (87,365.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,493.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00057487 BTC (1,197.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1429 transactions" + } + ] + }, + { + "id": 1461, + "type": "message", + "date": "2025-04-26T02:29:03", + "date_unixtime": "1745627343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003149 BTC for 65.76 CZK @ 2,088,280 CZK\nFees are 0.23096529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.81 % (22.971075175279661863060108926 CZK)\nThe limits being 0.10 % (1.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08720483 BTC (94,356.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,082,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,088,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.00 % (87,751.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,427.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00060636 BTC (1,266.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003149 BTC for 65.76 CZK @ 2,088,280 CZK\nFees are 0.23096529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.81 % (22.971075175279661863060108926 CZK)\nThe limits being 0.10 % (1.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08720483 BTC (94,356.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,082,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,088,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.00 % (87,751.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,427.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00060636 BTC (1,266.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1430 transactions" + } + ] + }, + { + "id": 1462, + "type": "message", + "date": "2025-04-26T14:29:03", + "date_unixtime": "1745670543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003172 BTC for 65.76 CZK @ 2,073,152 CZK\nFees are 0.23096690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.72 % (22.804671649227703039362232188 CZK)\nThe limits being 0.10 % (1.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08723655 BTC (94,422.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,082,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,073,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.54 % (86,431.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,361.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00063808 BTC (1,322.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003172 BTC for 65.76 CZK @ 2,073,152 CZK\nFees are 0.23096690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.72 % (22.804671649227703039362232188 CZK)\nThe limits being 0.10 % (1.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08723655 BTC (94,422.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,082,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,073,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.54 % (86,431.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,361.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00063808 BTC (1,322.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1431 transactions" + } + ] + }, + { + "id": 1463, + "type": "message", + "date": "2025-04-27T02:29:03", + "date_unixtime": "1745713743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003154 BTC for 65.77 CZK @ 2,085,173 CZK\nFees are 0.23098787 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.64 % (22.936901249242110444768611066 CZK)\nThe limits being 0.10 % (1.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08726809 BTC (94,488.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,082,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,085,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.58 % (87,480.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,295.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00066962 BTC (1,396.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003154 BTC for 65.77 CZK @ 2,085,173 CZK\nFees are 0.23098787 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.64 % (22.936901249242110444768611066 CZK)\nThe limits being 0.10 % (1.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08726809 BTC (94,488.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,082,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,085,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.58 % (87,480.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,295.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00066962 BTC (1,396.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1432 transactions" + } + ] + }, + { + "id": 1464, + "type": "message", + "date": "2025-04-27T14:29:04", + "date_unixtime": "1745756944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003178 BTC for 65.76 CZK @ 2,069,107 CZK\nFees are 0.23095228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (22.760176071603384378714775191 CZK)\nThe limits being 0.10 % (1.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08729987 BTC (94,554.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,083,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,069,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.04 % (86,078.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,229.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00070140 BTC (1,451.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003178 BTC for 65.76 CZK @ 2,069,107 CZK\nFees are 0.23095228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (22.760176071603384378714775191 CZK)\nThe limits being 0.10 % (1.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08729987 BTC (94,554.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,083,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,069,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.04 % (86,078.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,229.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00070140 BTC (1,451.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1433 transactions" + } + ] + }, + { + "id": 1465, + "type": "message", + "date": "2025-04-28T02:29:03", + "date_unixtime": "1745800143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003194 BTC for 65.63 CZK @ 2,054,772 CZK\nFees are 0.23050696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (22.602495221951722509101675756 CZK)\nThe limits being 0.10 % (1.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08733181 BTC (94,620.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,083,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,054,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.65 % (84,826.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,163.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00073334 BTC (1,506.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003194 BTC for 65.63 CZK @ 2,054,772 CZK\nFees are 0.23050696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.50 % (22.602495221951722509101675756 CZK)\nThe limits being 0.10 % (1.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08733181 BTC (94,620.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,083,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,054,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.65 % (84,826.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,163.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00073334 BTC (1,506.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1434 transactions" + } + ] + }, + { + "id": 1466, + "type": "message", + "date": "2025-04-28T14:29:04", + "date_unixtime": "1745843344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003134 BTC for 65.77 CZK @ 2,098,438 CZK\nFees are 0.23098326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (23.082815861460001672512511252 CZK)\nThe limits being 0.10 % (1.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08736315 BTC (94,686.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,083,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,098,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.61 % (88,639.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,097.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00076468 BTC (1,604.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003134 BTC for 65.77 CZK @ 2,098,438 CZK\nFees are 0.23098326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.44 % (23.082815861460001672512511252 CZK)\nThe limits being 0.10 % (1.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08736315 BTC (94,686.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,083,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,098,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.61 % (88,639.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,097.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00076468 BTC (1,604.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1435 transactions" + } + ] + }, + { + "id": 1467, + "type": "message", + "date": "2025-04-29T02:29:03", + "date_unixtime": "1745886543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003158 BTC for 65.76 CZK @ 2,082,426 CZK\nFees are 0.23097614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.38 % (22.906686164605009761591238771 CZK)\nThe limits being 0.10 % (1.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08739473 BTC (94,752.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,084,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,082,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.07 % (87,240.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,031.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00079626 BTC (1,658.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003158 BTC for 65.76 CZK @ 2,082,426 CZK\nFees are 0.23097614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.38 % (22.906686164605009761591238771 CZK)\nThe limits being 0.10 % (1.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08739473 BTC (94,752.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,084,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,082,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.07 % (87,240.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,031.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00079626 BTC (1,658.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1436 transactions" + } + ] + }, + { + "id": 1468, + "type": "message", + "date": "2025-04-29T14:29:03", + "date_unixtime": "1745929743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003155 BTC for 65.75 CZK @ 2,084,009 CZK\nFees are 0.23093213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (22.924098432348902454720680471 CZK)\nThe limits being 0.10 % (1.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08742628 BTC (94,818.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,084,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,084,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.15 % (87,378.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,965.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00082781 BTC (1,725.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003155 BTC for 65.75 CZK @ 2,084,009 CZK\nFees are 0.23093213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (22.924098432348902454720680471 CZK)\nThe limits being 0.10 % (1.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08742628 BTC (94,818.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,084,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,084,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.15 % (87,378.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,965.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00082781 BTC (1,725.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1437 transactions" + } + ] + }, + { + "id": 1469, + "type": "message", + "date": "2025-04-30T02:29:05", + "date_unixtime": "1745972945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003174 BTC for 65.76 CZK @ 2,071,740 CZK\nFees are 0.23095517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.28 % (22.789145064109265962326564020 CZK)\nThe limits being 0.10 % (1.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08745802 BTC (94,884.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,084,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,071,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.96 % (86,305.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,899.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00085955 BTC (1,780.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003174 BTC for 65.76 CZK @ 2,071,740 CZK\nFees are 0.23095517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.28 % (22.789145064109265962326564020 CZK)\nThe limits being 0.10 % (1.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08745802 BTC (94,884.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,084,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,071,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.96 % (86,305.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,899.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00085955 BTC (1,780.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1438 transactions" + } + ] + }, + { + "id": 1470, + "type": "message", + "date": "2025-04-30T14:29:03", + "date_unixtime": "1746016143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003153 BTC for 65.75 CZK @ 2,085,329 CZK\nFees are 0.23093195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.23 % (22.938621526844436479932036161 CZK)\nThe limits being 0.10 % (1.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08748955 BTC (94,950.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,085,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,085,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.15 % (87,494.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,833.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00089108 BTC (1,858.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003153 BTC for 65.75 CZK @ 2,085,329 CZK\nFees are 0.23093195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.23 % (22.938621526844436479932036161 CZK)\nThe limits being 0.10 % (1.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08748955 BTC (94,950.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,085,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,085,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.15 % (87,494.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,833.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00089108 BTC (1,858.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1439 transactions" + } + ] + }, + { + "id": 1471, + "type": "message", + "date": "2025-05-01T02:29:05", + "date_unixtime": "1746059345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003161 BTC for 65.76 CZK @ 2,080,501 CZK\nFees are 0.23098187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (22.885513545993010543452235429 CZK)\nThe limits being 0.10 % (1.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08752116 BTC (95,016.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,085,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,080,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.64 % (87,071.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,767.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00092269 BTC (1,919.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003161 BTC for 65.76 CZK @ 2,080,501 CZK\nFees are 0.23098187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (22.885513545993010543452235429 CZK)\nThe limits being 0.10 % (1.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08752116 BTC (95,016.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,085,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,080,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.64 % (87,071.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,767.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00092269 BTC (1,919.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1440 transactions" + } + ] + }, + { + "id": 1472, + "type": "message", + "date": "2025-05-01T14:29:03", + "date_unixtime": "1746102543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003098 BTC for 65.75 CZK @ 2,122,462 CZK\nFees are 0.23094399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (23.347076574146716318578969733 CZK)\nThe limits being 0.10 % (2.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08755214 BTC (95,082.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,086,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,122,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.44 % (90,743.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,701.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00095367 BTC (2,024.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003098 BTC for 65.75 CZK @ 2,122,462 CZK\nFees are 0.23094399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (23.347076574146716318578969733 CZK)\nThe limits being 0.10 % (2.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08755214 BTC (95,082.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,086,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,122,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.44 % (90,743.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,701.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00095367 BTC (2,024.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1441 transactions" + } + ] + }, + { + "id": 1473, + "type": "message", + "date": "2025-05-02T02:29:04", + "date_unixtime": "1746145744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003076 BTC for 65.76 CZK @ 2,137,712 CZK\nFees are 0.23095163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (23.514836470921346159702419944 CZK)\nThe limits being 0.10 % (2.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08758290 BTC (95,148.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,086,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,137,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.77 % (92,078.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,635.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00098443 BTC (2,104.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003076 BTC for 65.76 CZK @ 2,137,712 CZK\nFees are 0.23095163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (23.514836470921346159702419944 CZK)\nThe limits being 0.10 % (2.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08758290 BTC (95,148.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,086,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,137,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.77 % (92,078.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,635.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00098443 BTC (2,104.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1442 transactions" + } + ] + }, + { + "id": 1474, + "type": "message", + "date": "2025-05-02T14:29:04", + "date_unixtime": "1746188944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003080 BTC for 65.75 CZK @ 2,134,718 CZK\nFees are 0.23092803 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (23.481897615488646878781407929 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08761370 BTC (95,214.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,086,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,134,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.43 % (91,816.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,569.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00101523 BTC (2,167.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003080 BTC for 65.75 CZK @ 2,134,718 CZK\nFees are 0.23092803 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.08 % (23.481897615488646878781407929 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08761370 BTC (95,214.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,086,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,134,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.43 % (91,816.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,569.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00101523 BTC (2,167.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1443 transactions" + } + ] + }, + { + "id": 1475, + "type": "message", + "date": "2025-05-03T02:29:03", + "date_unixtime": "1746232143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003076 BTC for 65.63 CZK @ 2,133,561 CZK\nFees are 0.23050307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (23.469165830192505683942352612 CZK)\nThe limits being 0.10 % (2.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08764446 BTC (95,280.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,087,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,133,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.26 % (91,714.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,504.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00104599 BTC (2,231.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003076 BTC for 65.63 CZK @ 2,133,561 CZK\nFees are 0.23050307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.05 % (23.469165830192505683942352612 CZK)\nThe limits being 0.10 % (2.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08764446 BTC (95,280.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,087,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,133,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.26 % (91,714.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,504.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00104599 BTC (2,231.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1444 transactions" + } + ] + }, + { + "id": 1476, + "type": "message", + "date": "2025-05-03T14:29:03", + "date_unixtime": "1746275343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003096 BTC for 65.76 CZK @ 2,123,956 CZK\nFees are 0.23095743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (23.363518431613384163180805167 CZK)\nThe limits being 0.10 % (2.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08767542 BTC (95,346.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,087,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,123,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.31 % (90,872.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,438.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00107695 BTC (2,287.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003096 BTC for 65.76 CZK @ 2,123,956 CZK\nFees are 0.23095743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (23.363518431613384163180805167 CZK)\nThe limits being 0.10 % (2.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08767542 BTC (95,346.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,087,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,123,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.31 % (90,872.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,438.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00107695 BTC (2,287.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1445 transactions" + } + ] + }, + { + "id": 1477, + "type": "message", + "date": "2025-05-04T02:29:03", + "date_unixtime": "1746318543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003101 BTC for 65.75 CZK @ 2,120,330 CZK\nFees are 0.23093549 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (23.323632313025018690629234313 CZK)\nThe limits being 0.10 % (2.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08770643 BTC (95,412.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,087,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,120,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.91 % (90,554.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,372.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00110796 BTC (2,349.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003101 BTC for 65.75 CZK @ 2,120,330 CZK\nFees are 0.23093549 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (23.323632313025018690629234313 CZK)\nThe limits being 0.10 % (2.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08770643 BTC (95,412.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,087,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,120,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.91 % (90,554.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,372.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00110796 BTC (2,349.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1446 transactions" + } + ] + }, + { + "id": 1478, + "type": "message", + "date": "2025-05-04T14:29:03", + "date_unixtime": "1746361743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003111 BTC for 65.75 CZK @ 2,113,489 CZK\nFees are 0.23093272 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (23.248381304457221966767871434 CZK)\nThe limits being 0.10 % (2.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08773754 BTC (95,478.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,088,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,113,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.21 % (89,954.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,306.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00113907 BTC (2,407.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003111 BTC for 65.75 CZK @ 2,113,489 CZK\nFees are 0.23093272 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (23.248381304457221966767871434 CZK)\nThe limits being 0.10 % (2.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08773754 BTC (95,478.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,088,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,113,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.21 % (89,954.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,306.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00113907 BTC (2,407.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1447 transactions" + } + ] + }, + { + "id": 1479, + "type": "message", + "date": "2025-05-05T02:29:06", + "date_unixtime": "1746404946", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003148 BTC for 65.75 CZK @ 2,088,711 CZK\nFees are 0.23093961 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (22.975816957991375800960931530 CZK)\nThe limits being 0.10 % (2.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08776902 BTC (95,544.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,088,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,088,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.87 % (87,779.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,240.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00117055 BTC (2,444.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003148 BTC for 65.75 CZK @ 2,088,711 CZK\nFees are 0.23093961 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (22.975816957991375800960931530 CZK)\nThe limits being 0.10 % (2.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08776902 BTC (95,544.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,088,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,088,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.87 % (87,779.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,240.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00117055 BTC (2,444.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1448 transactions" + } + ] + }, + { + "id": 1480, + "type": "message", + "date": "2025-05-05T14:29:03", + "date_unixtime": "1746448143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003170 BTC for 65.75 CZK @ 2,074,235 CZK\nFees are 0.23094181 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (22.816581243565501816198510261 CZK)\nThe limits being 0.10 % (2.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08780072 BTC (95,610.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,088,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,074,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.48 % (86,509.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,174.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00120225 BTC (2,493.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003170 BTC for 65.75 CZK @ 2,074,235 CZK\nFees are 0.23094181 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (22.816581243565501816198510261 CZK)\nThe limits being 0.10 % (2.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08780072 BTC (95,610.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,088,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,074,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.48 % (86,509.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,174.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00120225 BTC (2,493.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1449 transactions" + } + ] + }, + { + "id": 1481, + "type": "message", + "date": "2025-05-06T02:29:03", + "date_unixtime": "1746491343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003138 BTC for 65.62 CZK @ 2,091,279 CZK\nFees are 0.23048912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (23.004074210943660222998980941 CZK)\nThe limits being 0.10 % (2.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08783210 BTC (95,676.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,089,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,091,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.98 % (88,005.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,108.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00123363 BTC (2,579.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003138 BTC for 65.62 CZK @ 2,091,279 CZK\nFees are 0.23048912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (23.004074210943660222998980941 CZK)\nThe limits being 0.10 % (2.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08783210 BTC (95,676.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,089,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,091,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.98 % (88,005.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,108.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00123363 BTC (2,579.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1450 transactions" + } + ] + }, + { + "id": 1482, + "type": "message", + "date": "2025-05-06T14:29:04", + "date_unixtime": "1746534544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003172 BTC for 65.77 CZK @ 2,073,375 CZK\nFees are 0.23099169 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (22.807119732575330605176962598 CZK)\nThe limits being 0.10 % (2.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08786382 BTC (95,742.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,089,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,073,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.28 % (86,432.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,042.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00126535 BTC (2,623.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003172 BTC for 65.77 CZK @ 2,073,375 CZK\nFees are 0.23099169 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (22.807119732575330605176962598 CZK)\nThe limits being 0.10 % (2.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08786382 BTC (95,742.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,089,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,073,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.28 % (86,432.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,042.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00126535 BTC (2,623.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1451 transactions" + } + ] + }, + { + "id": 1483, + "type": "message", + "date": "2025-05-07T02:29:03", + "date_unixtime": "1746577743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003065 BTC for 65.76 CZK @ 2,145,365 CZK\nFees are 0.23094958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.85 % (23.599019674207159119265279515 CZK)\nThe limits being 0.10 % (2.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08789447 BTC (95,808.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,090,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,145,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.82 % (92,757.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,976.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00129600 BTC (2,780.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003065 BTC for 65.76 CZK @ 2,145,365 CZK\nFees are 0.23094958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.85 % (23.599019674207159119265279515 CZK)\nThe limits being 0.10 % (2.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08789447 BTC (95,808.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,090,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,145,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.82 % (92,757.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,976.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00129600 BTC (2,780.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1452 transactions" + } + ] + }, + { + "id": 1484, + "type": "message", + "date": "2025-05-07T14:29:04", + "date_unixtime": "1746620944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003087 BTC for 65.76 CZK @ 2,130,292 CZK\nFees are 0.23097298 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (23.433211627460674164557511618 CZK)\nThe limits being 0.10 % (2.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08792534 BTC (95,874.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,090,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,130,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.37 % (91,432.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,910.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00132687 BTC (2,826.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003087 BTC for 65.76 CZK @ 2,130,292 CZK\nFees are 0.23097298 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (23.433211627460674164557511618 CZK)\nThe limits being 0.10 % (2.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08792534 BTC (95,874.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,090,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,130,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.37 % (91,432.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,910.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00132687 BTC (2,826.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1453 transactions" + } + ] + }, + { + "id": 1485, + "type": "message", + "date": "2025-05-08T02:29:03", + "date_unixtime": "1746664143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003074 BTC for 65.76 CZK @ 2,139,220 CZK\nFees are 0.23096425 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.81 % (23.531421686750893667868381290 CZK)\nThe limits being 0.10 % (2.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08795608 BTC (95,940.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,090,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,139,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.12 % (92,217.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,844.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00135761 BTC (2,904.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003074 BTC for 65.76 CZK @ 2,139,220 CZK\nFees are 0.23096425 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.81 % (23.531421686750893667868381290 CZK)\nThe limits being 0.10 % (2.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08795608 BTC (95,940.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,090,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,139,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.12 % (92,217.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,844.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00135761 BTC (2,904.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1454 transactions" + } + ] + }, + { + "id": 1486, + "type": "message", + "date": "2025-05-08T14:29:03", + "date_unixtime": "1746707343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002993 BTC for 65.75 CZK @ 2,196,808 CZK\nFees are 0.23093209 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (24.164890914542169563227667413 CZK)\nThe limits being 0.10 % (3.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08798601 BTC (96,006.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,091,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,196,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.33 % (97,282.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,778.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00138754 BTC (3,048.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002993 BTC for 65.75 CZK @ 2,196,808 CZK\nFees are 0.23093209 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.79 % (24.164890914542169563227667413 CZK)\nThe limits being 0.10 % (3.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08798601 BTC (96,006.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,091,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,196,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.33 % (97,282.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,778.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00138754 BTC (3,048.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1455 transactions" + } + ] + }, + { + "id": 1487, + "type": "message", + "date": "2025-05-09T02:29:03", + "date_unixtime": "1746750543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002890 BTC for 65.77 CZK @ 2,275,639 CZK\nFees are 0.23098653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (25.032030833949688202019575086 CZK)\nThe limits being 0.10 % (3.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08801491 BTC (96,072.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,091,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,275,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.48 % (104,218.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,712.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00141644 BTC (3,223.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002890 BTC for 65.77 CZK @ 2,275,639 CZK\nFees are 0.23098653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.78 % (25.032030833949688202019575086 CZK)\nThe limits being 0.10 % (3.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08801491 BTC (96,072.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,091,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,275,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.48 % (104,218.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,712.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00141644 BTC (3,223.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1456 transactions" + } + ] + }, + { + "id": 1488, + "type": "message", + "date": "2025-05-09T14:29:03", + "date_unixtime": "1746793743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002873 BTC for 65.76 CZK @ 2,288,958 CZK\nFees are 0.23097178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (25.178540925764349663057128106 CZK)\nThe limits being 0.10 % (3.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08804364 BTC (96,138.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,091,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.62 % (105,390.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,646.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00144517 BTC (3,307.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002873 BTC for 65.76 CZK @ 2,288,958 CZK\nFees are 0.23097178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (25.178540925764349663057128106 CZK)\nThe limits being 0.10 % (3.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08804364 BTC (96,138.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,091,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.62 % (105,390.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,646.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00144517 BTC (3,307.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1457 transactions" + } + ] + }, + { + "id": 1489, + "type": "message", + "date": "2025-05-10T02:29:03", + "date_unixtime": "1746836943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002881 BTC for 65.77 CZK @ 2,282,856 CZK\nFees are 0.23099747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (25.111417116800673519114892393 CZK)\nThe limits being 0.10 % (3.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08807245 BTC (96,204.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,092,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,282,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.99 % (104,852.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,580.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00147398 BTC (3,364.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002881 BTC for 65.77 CZK @ 2,282,856 CZK\nFees are 0.23099747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (25.111417116800673519114892393 CZK)\nThe limits being 0.10 % (3.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08807245 BTC (96,204.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,092,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,282,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.99 % (104,852.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,580.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00147398 BTC (3,364.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1458 transactions" + } + ] + }, + { + "id": 1490, + "type": "message", + "date": "2025-05-10T14:29:03", + "date_unixtime": "1746880143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002861 BTC for 65.75 CZK @ 2,298,206 CZK\nFees are 0.23093634 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (25.280268728795597791511603829 CZK)\nThe limits being 0.10 % (3.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08810106 BTC (96,270.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,092,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,298,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.32 % (106,204.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,514.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00150259 BTC (3,453.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002861 BTC for 65.75 CZK @ 2,298,206 CZK\nFees are 0.23093634 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.73 % (25.280268728795597791511603829 CZK)\nThe limits being 0.10 % (3.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08810106 BTC (96,270.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,092,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,298,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.32 % (106,204.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,514.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00150259 BTC (3,453.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1459 transactions" + } + ] + }, + { + "id": 1491, + "type": "message", + "date": "2025-05-11T02:29:03", + "date_unixtime": "1746923343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002846 BTC for 65.76 CZK @ 2,310,504 CZK\nFees are 0.23095481 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (25.415541895705158438788204740 CZK)\nThe limits being 0.10 % (3.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08812952 BTC (96,335.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,093,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.37 % (107,287.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,448.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00153105 BTC (3,537.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002846 BTC for 65.76 CZK @ 2,310,504 CZK\nFees are 0.23095481 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (25.415541895705158438788204740 CZK)\nThe limits being 0.10 % (3.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08812952 BTC (96,335.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,093,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.37 % (107,287.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,448.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00153105 BTC (3,537.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1460 transactions" + } + ] + }, + { + "id": 1492, + "type": "message", + "date": "2025-05-11T14:29:03", + "date_unixtime": "1746966543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002832 BTC for 65.75 CZK @ 2,321,674 CZK\nFees are 0.23092972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (25.538409228716441606918159324 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08815784 BTC (96,401.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,093,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,321,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.31 % (108,271.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,382.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00155937 BTC (3,620.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002832 BTC for 65.75 CZK @ 2,321,674 CZK\nFees are 0.23092972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (25.538409228716441606918159324 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08815784 BTC (96,401.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,093,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,321,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.31 % (108,271.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,382.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00155937 BTC (3,620.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1461 transactions" + } + ] + }, + { + "id": 1493, + "type": "message", + "date": "2025-05-12T02:29:03", + "date_unixtime": "1747009743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002837 BTC for 65.75 CZK @ 2,317,758 CZK\nFees are 0.23094726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (25.495336191500351519066418751 CZK)\nThe limits being 0.10 % (3.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08818621 BTC (96,467.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,093,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.88 % (107,926.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,316.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00158774 BTC (3,680.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002837 BTC for 65.75 CZK @ 2,317,758 CZK\nFees are 0.23094726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (25.495336191500351519066418751 CZK)\nThe limits being 0.10 % (3.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08818621 BTC (96,467.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,093,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.88 % (107,926.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,316.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00158774 BTC (3,680.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1462 transactions" + } + ] + }, + { + "id": 1494, + "type": "message", + "date": "2025-05-12T14:29:03", + "date_unixtime": "1747052943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002813 BTC for 65.76 CZK @ 2,337,892 CZK\nFees are 0.23098276 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (25.716810575003130706232416900 CZK)\nThe limits being 0.10 % (3.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08821434 BTC (96,533.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,094,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,337,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.64 % (109,701.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 950.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00161587 BTC (3,777.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002813 BTC for 65.76 CZK @ 2,337,892 CZK\nFees are 0.23098276 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.68 % (25.716810575003130706232416900 CZK)\nThe limits being 0.10 % (3.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08821434 BTC (96,533.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,094,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,337,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.64 % (109,701.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 950.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00161587 BTC (3,777.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1463 transactions" + } + ] + }, + { + "id": 1495, + "type": "message", + "date": "2025-05-13T02:29:03", + "date_unixtime": "1747096143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002847 BTC for 65.77 CZK @ 2,309,982 CZK\nFees are 0.23098373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.01 % (76.229389844711056087676273190 CZK)\nThe limits being 0.10 % (3.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08824281 BTC (96,599.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,094,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.01 % (107,239.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 884.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00164434 BTC (3,798.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002847 BTC for 65.77 CZK @ 2,309,982 CZK\nFees are 0.23098373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.01 % (76.229389844711056087676273190 CZK)\nThe limits being 0.10 % (3.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08824281 BTC (96,599.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,094,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.01 % (107,239.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 884.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00164434 BTC (3,798.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1464 transactions" + } + ] + }, + { + "id": 1496, + "type": "message", + "date": "2025-05-13T14:29:05", + "date_unixtime": "1747139345", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002824 BTC for 65.76 CZK @ 2,328,675 CZK\nFees are 0.23097182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (25.615424620767822536137682417 CZK)\nThe limits being 0.10 % (3.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08827105 BTC (96,665.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,095,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.64 % (108,888.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 818.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00167258 BTC (3,894.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002824 BTC for 65.76 CZK @ 2,328,675 CZK\nFees are 0.23097182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (25.615424620767822536137682417 CZK)\nThe limits being 0.10 % (3.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08827105 BTC (96,665.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,095,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.64 % (108,888.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 818.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00167258 BTC (3,894.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1465 transactions" + } + ] + }, + { + "id": 1497, + "type": "message", + "date": "2025-05-14T02:29:04", + "date_unixtime": "1747182544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002838 BTC for 65.76 CZK @ 2,317,066 CZK\nFees are 0.23095972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (25.487727280101041702877139315 CZK)\nThe limits being 0.10 % (3.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08829943 BTC (96,731.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,095,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.51 % (107,863.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 752.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00170096 BTC (3,941.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002838 BTC for 65.76 CZK @ 2,317,066 CZK\nFees are 0.23095972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (25.487727280101041702877139315 CZK)\nThe limits being 0.10 % (3.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08829943 BTC (96,731.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,095,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.51 % (107,863.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 752.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00170096 BTC (3,941.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1466 transactions" + } + ] + }, + { + "id": 1498, + "type": "message", + "date": "2025-05-14T14:29:06", + "date_unixtime": "1747225746", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002843 BTC for 65.76 CZK @ 2,313,035 CZK\nFees are 0.23096411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (25.443386088191856115274344928 CZK)\nThe limits being 0.10 % (4.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08832786 BTC (96,797.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,095,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.06 % (107,507.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 686.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00172939 BTC (4,000.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002843 BTC for 65.76 CZK @ 2,313,035 CZK\nFees are 0.23096411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (25.443386088191856115274344928 CZK)\nThe limits being 0.10 % (4.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08832786 BTC (96,797.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,095,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.06 % (107,507.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 686.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00172939 BTC (4,000.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1467 transactions" + } + ] + }, + { + "id": 1499, + "type": "message", + "date": "2025-05-15T02:29:04", + "date_unixtime": "1747268944", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002841 BTC for 65.77 CZK @ 2,314,961 CZK\nFees are 0.23099379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (25.464569731739685476053804644 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08835627 BTC (96,863.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,096,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.16 % (107,677.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 620.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00175780 BTC (4,069.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002841 BTC for 65.77 CZK @ 2,314,961 CZK\nFees are 0.23099379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (25.464569731739685476053804644 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08835627 BTC (96,863.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,096,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.16 % (107,677.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 620.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00175780 BTC (4,069.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1468 transactions" + } + ] + }, + { + "id": 1500, + "type": "message", + "date": "2025-05-15T14:29:03", + "date_unixtime": "1747312143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002879 BTC for 65.75 CZK @ 2,283,789 CZK\nFees are 0.23093148 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (25.121683630391926278172281004 CZK)\nThe limits being 0.10 % (4.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08838506 BTC (96,929.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,096,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.25 % (104,922.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 554.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00178659 BTC (4,080.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002879 BTC for 65.75 CZK @ 2,283,789 CZK\nFees are 0.23093148 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.62 % (25.121683630391926278172281004 CZK)\nThe limits being 0.10 % (4.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08838506 BTC (96,929.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,096,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.25 % (104,922.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 554.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00178659 BTC (4,080.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1469 transactions" + } + ] + }, + { + "id": 1501, + "type": "message", + "date": "2025-05-16T02:29:03", + "date_unixtime": "1747355343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002843 BTC for 65.76 CZK @ 2,313,189 CZK\nFees are 0.23097953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (25.445084308683238633127353594 CZK)\nThe limits being 0.10 % (4.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08841349 BTC (96,995.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,097,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.85 % (107,521.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 488.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00181502 BTC (4,198.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002843 BTC for 65.76 CZK @ 2,313,189 CZK\nFees are 0.23097953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (25.445084308683238633127353594 CZK)\nThe limits being 0.10 % (4.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08841349 BTC (96,995.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,097,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.85 % (107,521.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 488.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00181502 BTC (4,198.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1470 transactions" + } + ] + }, + { + "id": 1502, + "type": "message", + "date": "2025-05-16T14:29:03", + "date_unixtime": "1747398543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002847 BTC for 65.76 CZK @ 2,309,734 CZK\nFees are 0.23095897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (25.407072847072478499470329435 CZK)\nThe limits being 0.10 % (4.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08844196 BTC (97,061.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,097,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.46 % (107,215.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 422.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00184349 BTC (4,257.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002847 BTC for 65.76 CZK @ 2,309,734 CZK\nFees are 0.23095897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (25.407072847072478499470329435 CZK)\nThe limits being 0.10 % (4.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08844196 BTC (97,061.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,097,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.46 % (107,215.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 422.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00184349 BTC (4,257.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1471 transactions" + } + ] + }, + { + "id": 1503, + "type": "message", + "date": "2025-05-17T02:29:03", + "date_unixtime": "1747441743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002846 BTC for 65.76 CZK @ 2,310,731 CZK\nFees are 0.23097755 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.70 % (203.34436092369608688634053476 CZK)\nThe limits being 0.10 % (4.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08847042 BTC (97,127.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,097,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.48 % (107,303.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 356.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00187195 BTC (4,325.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002846 BTC for 65.76 CZK @ 2,310,731 CZK\nFees are 0.23097755 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.70 % (203.34436092369608688634053476 CZK)\nThe limits being 0.10 % (4.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08847042 BTC (97,127.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,097,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.48 % (107,303.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 356.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00187195 BTC (4,325.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1472 transactions" + } + ] + }, + { + "id": 1504, + "type": "message", + "date": "2025-05-17T14:29:03", + "date_unixtime": "1747484943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002858 BTC for 65.76 CZK @ 2,300,952 CZK\nFees are 0.23096981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (25.310472786813681854586623514 CZK)\nThe limits being 0.10 % (4.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08849900 BTC (97,193.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,098,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.51 % (106,438.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 290.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00190053 BTC (4,373.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002858 BTC for 65.76 CZK @ 2,300,952 CZK\nFees are 0.23096981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (25.310472786813681854586623514 CZK)\nThe limits being 0.10 % (4.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08849900 BTC (97,193.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,098,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.51 % (106,438.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 290.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00190053 BTC (4,373.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1473 transactions" + } + ] + }, + { + "id": 1505, + "type": "message", + "date": "2025-05-18T02:29:03", + "date_unixtime": "1747528143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002854 BTC for 65.76 CZK @ 2,304,125 CZK\nFees are 0.23096460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (25.345374521340689506838189672 CZK)\nThe limits being 0.10 % (4.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08852754 BTC (97,259.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,098,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.73 % (106,718.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 224.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00192907 BTC (4,444.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002854 BTC for 65.76 CZK @ 2,304,125 CZK\nFees are 0.23096460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (25.345374521340689506838189672 CZK)\nThe limits being 0.10 % (4.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08852754 BTC (97,259.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,098,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.73 % (106,718.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 224.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00192907 BTC (4,444.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1474 transactions" + } + ] + }, + { + "id": 1506, + "type": "message", + "date": "2025-05-18T14:29:03", + "date_unixtime": "1747571343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002833 BTC for 65.77 CZK @ 2,321,434 CZK\nFees are 0.23098742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (25.535773679520196783900189787 CZK)\nThe limits being 0.10 % (4.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08855587 BTC (97,325.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,099,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,321,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.23 % (108,250.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 158.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00195740 BTC (4,543.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002833 BTC for 65.77 CZK @ 2,321,434 CZK\nFees are 0.23098742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (25.535773679520196783900189787 CZK)\nThe limits being 0.10 % (4.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08855587 BTC (97,325.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,099,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,321,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.23 % (108,250.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 158.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00195740 BTC (4,543.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1475 transactions" + } + ] + }, + { + "id": 1507, + "type": "message", + "date": "2025-05-19T02:29:03", + "date_unixtime": "1747614543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002775 BTC for 65.75 CZK @ 2,369,287 CZK\nFees are 0.23092240 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (26.062155787356863590047446550 CZK)\nThe limits being 0.10 % (4.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08858362 BTC (97,391.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,099,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.50 % (112,488.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 92.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00198515 BTC (4,703.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002775 BTC for 65.75 CZK @ 2,369,287 CZK\nFees are 0.23092240 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (26.062155787356863590047446550 CZK)\nThe limits being 0.10 % (4.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08858362 BTC (97,391.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,099,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.50 % (112,488.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 92.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00198515 BTC (4,703.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1476 transactions" + } + ] + }, + { + "id": 1508, + "type": "message", + "date": "2025-05-19T14:29:04", + "date_unixtime": "1747657744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002895 BTC for 65.77 CZK @ 2,271,798 CZK\nFees are 0.23099556 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (24.989773822708602791783163075 CZK)\nThe limits being 0.10 % (4.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08861257 BTC (97,457.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,099,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,271,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.56 % (103,852.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00201410 BTC (4,575.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002895 BTC for 65.77 CZK @ 2,271,798 CZK\nFees are 0.23099556 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (24.989773822708602791783163075 CZK)\nThe limits being 0.10 % (4.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08861257 BTC (97,457.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,099,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,271,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.56 % (103,852.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00201410 BTC (4,575.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1477 transactions" + } + ] + }, + { + "id": 1509, + "type": "message", + "date": "2025-05-20T02:29:00", + "date_unixtime": "1747700940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1510, + "type": "message", + "date": "2025-05-20T14:29:00", + "date_unixtime": "1747744140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1511, + "type": "message", + "date": "2025-05-21T02:29:00", + "date_unixtime": "1747787340", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1512, + "type": "message", + "date": "2025-05-21T14:29:00", + "date_unixtime": "1747830540", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1513, + "type": "message", + "date": "2025-05-22T02:29:00", + "date_unixtime": "1747873740", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1514, + "type": "message", + "date": "2025-05-22T14:29:00", + "date_unixtime": "1747916940", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1515, + "type": "message", + "date": "2025-05-23T02:29:00", + "date_unixtime": "1747960140", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (26.54738046 CZK) should be strictly superior than the bot configuration chunk size (66 CZK)" + } + ] + }, + { + "id": 1516, + "type": "message", + "date": "2025-05-23T14:29:03", + "date_unixtime": "1748003343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002763 BTC for 65.76 CZK @ 2,380,185 CZK\nFees are 0.23098140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (26.182034698317019638648011006 CZK)\nThe limits being 0.10 % (4.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08864020 BTC (97,523.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,100,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.34 % (113,456.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,960.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00204173 BTC (4,859.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002763 BTC for 65.76 CZK @ 2,380,185 CZK\nFees are 0.23098140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.54 % (26.182034698317019638648011006 CZK)\nThe limits being 0.10 % (4.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08864020 BTC (97,523.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,100,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.34 % (113,456.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,960.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00204173 BTC (4,859.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1478 transactions" + } + ] + }, + { + "id": 1517, + "type": "message", + "date": "2025-05-24T02:29:03", + "date_unixtime": "1748046543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002798 BTC for 65.77 CZK @ 2,350,552 CZK\nFees are 0.23099525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (25.856075660135914577748430886 CZK)\nThe limits being 0.10 % (4.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08866818 BTC (97,589.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,100,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,350,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.57 % (110,829.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,894.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00206971 BTC (4,864.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002798 BTC for 65.77 CZK @ 2,350,552 CZK\nFees are 0.23099525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.53 % (25.856075660135914577748430886 CZK)\nThe limits being 0.10 % (4.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08866818 BTC (97,589.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,100,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,350,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.57 % (110,829.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,894.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00206971 BTC (4,864.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1479 transactions" + } + ] + }, + { + "id": 1518, + "type": "message", + "date": "2025-05-24T14:29:03", + "date_unixtime": "1748089743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002757 BTC for 65.76 CZK @ 2,385,198 CZK\nFees are 0.23096528 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (26.237182742880874501811667868 CZK)\nThe limits being 0.10 % (5.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08869575 BTC (97,655.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,101,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,385,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.64 % (113,901.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,828.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00209728 BTC (5,002.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002757 BTC for 65.76 CZK @ 2,385,198 CZK\nFees are 0.23096528 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (26.237182742880874501811667868 CZK)\nThe limits being 0.10 % (5.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08869575 BTC (97,655.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,101,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,385,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.64 % (113,901.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,828.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00209728 BTC (5,002.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1480 transactions" + } + ] + }, + { + "id": 1519, + "type": "message", + "date": "2025-05-25T02:29:03", + "date_unixtime": "1748132943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002777 BTC for 65.76 CZK @ 2,368,100 CZK\nFees are 0.23097306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (26.049099340999336316410747476 CZK)\nThe limits being 0.10 % (5.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08872352 BTC (97,721.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,101,419 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,368,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.00 % (112,384.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,762.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00212505 BTC (5,032.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002777 BTC for 65.76 CZK @ 2,368,100 CZK\nFees are 0.23097306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (26.049099340999336316410747476 CZK)\nThe limits being 0.10 % (5.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08872352 BTC (97,721.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,101,419 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,368,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.00 % (112,384.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,762.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00212505 BTC (5,032.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1481 transactions" + } + ] + }, + { + "id": 1520, + "type": "message", + "date": "2025-05-25T14:29:04", + "date_unixtime": "1748176144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002795 BTC for 65.76 CZK @ 2,352,656 CZK\nFees are 0.23095405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (25.879211155232179322282565583 CZK)\nThe limits being 0.10 % (5.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08875147 BTC (97,787.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,101,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,352,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.53 % (111,013.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,696.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00215300 BTC (5,065.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002795 BTC for 65.76 CZK @ 2,352,656 CZK\nFees are 0.23095405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (25.879211155232179322282565583 CZK)\nThe limits being 0.10 % (5.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08875147 BTC (97,787.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,101,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,352,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.53 % (111,013.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,696.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00215300 BTC (5,065.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1482 transactions" + } + ] + }, + { + "id": 1521, + "type": "message", + "date": "2025-05-26T02:29:04", + "date_unixtime": "1748219344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002764 BTC for 65.75 CZK @ 2,378,720 CZK\nFees are 0.23092282 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (26.165923659377417821993500317 CZK)\nThe limits being 0.10 % (5.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08877911 BTC (97,853.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,102,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.81 % (113,326.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,630.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00218064 BTC (5,187.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002764 BTC for 65.75 CZK @ 2,378,720 CZK\nFees are 0.23092282 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (26.165923659377417821993500317 CZK)\nThe limits being 0.10 % (5.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08877911 BTC (97,853.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,102,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.81 % (113,326.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,630.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00218064 BTC (5,187.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1483 transactions" + } + ] + }, + { + "id": 1522, + "type": "message", + "date": "2025-05-26T14:29:03", + "date_unixtime": "1748262543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002738 BTC for 65.76 CZK @ 2,401,918 CZK\nFees are 0.23098142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (26.421097791040343458232198991 CZK)\nThe limits being 0.10 % (5.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08880649 BTC (97,919.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,102,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,401,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.84 % (115,386.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,564.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00220802 BTC (5,303.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002738 BTC for 65.76 CZK @ 2,401,918 CZK\nFees are 0.23098142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (26.421097791040343458232198991 CZK)\nThe limits being 0.10 % (5.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08880649 BTC (97,919.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,102,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,401,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.84 % (115,386.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,564.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00220802 BTC (5,303.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1484 transactions" + } + ] + }, + { + "id": 1523, + "type": "message", + "date": "2025-05-27T02:29:03", + "date_unixtime": "1748305743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002749 BTC for 65.77 CZK @ 2,392,480 CZK\nFees are 0.23099809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (26.317274779088033642890117401 CZK)\nThe limits being 0.10 % (5.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08883398 BTC (97,985.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,103,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,392,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.90 % (114,547.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,498.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00223551 BTC (5,348.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002749 BTC for 65.77 CZK @ 2,392,480 CZK\nFees are 0.23099809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (26.317274779088033642890117401 CZK)\nThe limits being 0.10 % (5.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08883398 BTC (97,985.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,103,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,392,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.90 % (114,547.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,498.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00223551 BTC (5,348.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1485 transactions" + } + ] + }, + { + "id": 1524, + "type": "message", + "date": "2025-05-27T14:29:05", + "date_unixtime": "1748348945", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002729 BTC for 65.76 CZK @ 2,409,697 CZK\nFees are 0.23096781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (26.506670446767205217794881710 CZK)\nThe limits being 0.10 % (5.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08886127 BTC (98,051.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,103,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,409,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.38 % (116,077.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,432.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00226280 BTC (5,452.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002729 BTC for 65.76 CZK @ 2,409,697 CZK\nFees are 0.23096781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (26.506670446767205217794881710 CZK)\nThe limits being 0.10 % (5.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08886127 BTC (98,051.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,103,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,409,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.38 % (116,077.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,432.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00226280 BTC (5,452.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1486 transactions" + } + ] + }, + { + "id": 1525, + "type": "message", + "date": "2025-05-28T02:29:03", + "date_unixtime": "1748392143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002740 BTC for 65.76 CZK @ 2,399,822 CZK\nFees are 0.23094841 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (52.796078975410879440207449110 CZK)\nThe limits being 0.10 % (5.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08888867 BTC (98,117.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,103,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,399,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.41 % (115,199.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,066.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00229020 BTC (5,496.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002740 BTC for 65.76 CZK @ 2,399,822 CZK\nFees are 0.23094841 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (52.796078975410879440207449110 CZK)\nThe limits being 0.10 % (5.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08888867 BTC (98,117.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,103,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,399,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.41 % (115,199.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,066.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00229020 BTC (5,496.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1487 transactions" + } + ] + }, + { + "id": 1526, + "type": "message", + "date": "2025-05-28T14:29:03", + "date_unixtime": "1748435343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002729 BTC for 65.75 CZK @ 2,409,345 CZK\nFees are 0.23093408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (26.502799825016984343730618176 CZK)\nThe limits being 0.10 % (5.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08891596 BTC (98,183.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,104,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,409,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.19 % (116,045.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,000.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00231749 BTC (5,583.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002729 BTC for 65.75 CZK @ 2,409,345 CZK\nFees are 0.23093408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (26.502799825016984343730618176 CZK)\nThe limits being 0.10 % (5.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08891596 BTC (98,183.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,104,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,409,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.19 % (116,045.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,000.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00231749 BTC (5,583.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1488 transactions" + } + ] + }, + { + "id": 1527, + "type": "message", + "date": "2025-05-29T02:29:03", + "date_unixtime": "1748478543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002739 BTC for 65.75 CZK @ 2,400,491 CZK\nFees are 0.23092854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (52.810811589156826608876962760 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08894335 BTC (98,249.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,104,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,400,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.31 % (115,258.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,934.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00234488 BTC (5,628.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002739 BTC for 65.75 CZK @ 2,400,491 CZK\nFees are 0.23092854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (52.810811589156826608876962760 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08894335 BTC (98,249.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,104,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,400,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.31 % (115,258.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,934.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00234488 BTC (5,628.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1489 transactions" + } + ] + }, + { + "id": 1528, + "type": "message", + "date": "2025-05-29T14:29:03", + "date_unixtime": "1748521743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002741 BTC for 65.76 CZK @ 2,399,044 CZK\nFees are 0.23095780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (26.389482221927740322225003440 CZK)\nThe limits being 0.10 % (5.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08897076 BTC (98,315.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,105,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,399,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.10 % (115,129.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,868.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00237229 BTC (5,691.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002741 BTC for 65.76 CZK @ 2,399,044 CZK\nFees are 0.23095780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (26.389482221927740322225003440 CZK)\nThe limits being 0.10 % (5.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08897076 BTC (98,315.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,105,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,399,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.10 % (115,129.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,868.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00237229 BTC (5,691.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1490 transactions" + } + ] + }, + { + "id": 1529, + "type": "message", + "date": "2025-05-30T02:29:03", + "date_unixtime": "1748564943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002823 BTC for 65.77 CZK @ 2,329,702 CZK\nFees are 0.23099181 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (25.626716681836738259873651571 CZK)\nThe limits being 0.10 % (5.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08899899 BTC (98,381.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,105,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.75 % (108,959.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,802.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00240052 BTC (5,592.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002823 BTC for 65.77 CZK @ 2,329,702 CZK\nFees are 0.23099181 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (25.626716681836738259873651571 CZK)\nThe limits being 0.10 % (5.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08899899 BTC (98,381.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,105,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.75 % (108,959.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,802.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00240052 BTC (5,592.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1491 transactions" + } + ] + }, + { + "id": 1530, + "type": "message", + "date": "2025-05-30T14:29:03", + "date_unixtime": "1748608143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002832 BTC for 65.76 CZK @ 2,321,947 CZK\nFees are 0.23095694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (25.541419710744034298035970149 CZK)\nThe limits being 0.10 % (5.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08902731 BTC (98,447.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,105,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,321,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.98 % (108,269.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,736.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00242884 BTC (5,639.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002832 BTC for 65.76 CZK @ 2,321,947 CZK\nFees are 0.23095694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (25.541419710744034298035970149 CZK)\nThe limits being 0.10 % (5.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08902731 BTC (98,447.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,105,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,321,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.98 % (108,269.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,736.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00242884 BTC (5,639.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1492 transactions" + } + ] + }, + { + "id": 1531, + "type": "message", + "date": "2025-05-31T02:29:04", + "date_unixtime": "1748651344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002873 BTC for 65.76 CZK @ 2,288,980 CZK\nFees are 0.23097401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (25.178783527753801479021128799 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08905604 BTC (98,513.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,106,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.92 % (105,333.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,670.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00245757 BTC (5,625.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002873 BTC for 65.76 CZK @ 2,288,980 CZK\nFees are 0.23097401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.45 % (25.178783527753801479021128799 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08905604 BTC (98,513.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,106,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.92 % (105,333.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,670.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00245757 BTC (5,625.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1493 transactions" + } + ] + }, + { + "id": 1532, + "type": "message", + "date": "2025-05-31T14:29:04", + "date_unixtime": "1748694544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002881 BTC for 65.75 CZK @ 2,282,180 CZK\nFees are 0.23092910 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (25.103984645548978436631110793 CZK)\nThe limits being 0.10 % (5.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08908485 BTC (98,579.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,106,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,282,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.24 % (104,728.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,604.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00248638 BTC (5,674.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002881 BTC for 65.75 CZK @ 2,282,180 CZK\nFees are 0.23092910 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (25.103984645548978436631110793 CZK)\nThe limits being 0.10 % (5.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08908485 BTC (98,579.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,106,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,282,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.24 % (104,728.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,604.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00248638 BTC (5,674.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1494 transactions" + } + ] + }, + { + "id": 1533, + "type": "message", + "date": "2025-06-01T02:29:03", + "date_unixtime": "1748737743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002857 BTC for 65.76 CZK @ 2,301,611 CZK\nFees are 0.23095509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (25.317717791719182371674637544 CZK)\nThe limits being 0.10 % (5.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08911342 BTC (98,645.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,106,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.92 % (106,458.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,538.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00251495 BTC (5,788.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002857 BTC for 65.76 CZK @ 2,301,611 CZK\nFees are 0.23095509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (25.317717791719182371674637544 CZK)\nThe limits being 0.10 % (5.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08911342 BTC (98,645.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,106,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.92 % (106,458.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,538.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00251495 BTC (5,788.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1495 transactions" + } + ] + }, + { + "id": 1534, + "type": "message", + "date": "2025-06-01T14:29:03", + "date_unixtime": "1748780943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002863 BTC for 65.75 CZK @ 2,296,524 CZK\nFees are 0.23092863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (25.261764743760094994101155909 CZK)\nThe limits being 0.10 % (5.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08914205 BTC (98,711.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,107,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,296,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.39 % (106,005.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,472.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00254358 BTC (5,841.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002863 BTC for 65.75 CZK @ 2,296,524 CZK\nFees are 0.23092863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (25.261764743760094994101155909 CZK)\nThe limits being 0.10 % (5.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08914205 BTC (98,711.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,107,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,296,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.39 % (106,005.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,472.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00254358 BTC (5,841.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1496 transactions" + } + ] + }, + { + "id": 1535, + "type": "message", + "date": "2025-06-02T02:29:04", + "date_unixtime": "1748824144", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002831 BTC for 65.75 CZK @ 2,322,451 CZK\nFees are 0.23092553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (25.546966495401031043414457030 CZK)\nThe limits being 0.10 % (5.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08917036 BTC (98,777.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,107,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.66 % (108,316.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,406.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00257189 BTC (5,973.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002831 BTC for 65.75 CZK @ 2,322,451 CZK\nFees are 0.23092553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (25.546966495401031043414457030 CZK)\nThe limits being 0.10 % (5.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08917036 BTC (98,777.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,107,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.66 % (108,316.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,406.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00257189 BTC (5,973.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1497 transactions" + } + ] + }, + { + "id": 1536, + "type": "message", + "date": "2025-06-02T14:29:55", + "date_unixtime": "1748867395", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002888 BTC for 65.75 CZK @ 2,276,623 CZK\nFees are 0.23092644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (25.042848717508112189055756376 CZK)\nThe limits being 0.10 % (5.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08919924 BTC (98,843.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,108,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,276,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.45 % (104,229.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,340.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00260077 BTC (5,920.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002888 BTC for 65.75 CZK @ 2,276,623 CZK\nFees are 0.23092644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (25.042848717508112189055756376 CZK)\nThe limits being 0.10 % (5.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08919924 BTC (98,843.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,108,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,276,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.45 % (104,229.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,340.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00260077 BTC (5,920.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1498 transactions" + } + ] + }, + { + "id": 1537, + "type": "message", + "date": "2025-06-03T02:29:03", + "date_unixtime": "1748910543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002849 BTC for 65.76 CZK @ 2,308,031 CZK\nFees are 0.23095079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (25.388337286678093852981745359 CZK)\nThe limits being 0.10 % (6.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08922773 BTC (98,909.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,108,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.21 % (107,030.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,274.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00262926 BTC (6,068.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002849 BTC for 65.76 CZK @ 2,308,031 CZK\nFees are 0.23095079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (25.388337286678093852981745359 CZK)\nThe limits being 0.10 % (6.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08922773 BTC (98,909.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,108,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.21 % (107,030.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,274.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00262926 BTC (6,068.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1499 transactions" + } + ] + }, + { + "id": 1538, + "type": "message", + "date": "2025-06-03T14:29:03", + "date_unixtime": "1748953743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002852 BTC for 65.76 CZK @ 2,305,623 CZK\nFees are 0.23095277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (25.361849464811448849084305911 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08925625 BTC (98,975.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,108,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.92 % (106,815.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,208.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00265778 BTC (6,127.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002852 BTC for 65.76 CZK @ 2,305,623 CZK\nFees are 0.23095277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (25.361849464811448849084305911 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08925625 BTC (98,975.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,108,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.92 % (106,815.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,208.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00265778 BTC (6,127.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1500 transactions" + } + ] + }, + { + "id": 1539, + "type": "message", + "date": "2025-06-04T02:29:03", + "date_unixtime": "1748996943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002847 BTC for 65.75 CZK @ 2,309,449 CZK\nFees are 0.23093050 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (25.403941065421008906480987076 CZK)\nThe limits being 0.10 % (6.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08928472 BTC (99,041.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,109,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.19 % (107,157.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,142.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00268625 BTC (6,203.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002847 BTC for 65.75 CZK @ 2,309,449 CZK\nFees are 0.23093050 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (25.403941065421008906480987076 CZK)\nThe limits being 0.10 % (6.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08928472 BTC (99,041.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,109,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.19 % (107,157.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,142.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00268625 BTC (6,203.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1501 transactions" + } + ] + }, + { + "id": 1540, + "type": "message", + "date": "2025-06-04T14:29:05", + "date_unixtime": "1749040145", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002869 BTC for 65.76 CZK @ 2,292,192 CZK\nFees are 0.23097609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (25.214115331786638018243224350 CZK)\nThe limits being 0.10 % (6.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08931341 BTC (99,107.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,109,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,292,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.57 % (105,616.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,076.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00271494 BTC (6,223.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002869 BTC for 65.76 CZK @ 2,292,192 CZK\nFees are 0.23097609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (25.214115331786638018243224350 CZK)\nThe limits being 0.10 % (6.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08931341 BTC (99,107.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,109,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,292,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.57 % (105,616.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,076.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00271494 BTC (6,223.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1502 transactions" + } + ] + }, + { + "id": 1541, + "type": "message", + "date": "2025-06-05T02:29:03", + "date_unixtime": "1749083343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002879 BTC for 65.62 CZK @ 2,279,143 CZK\nFees are 0.23046165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (25.070573344804126855069431356 CZK)\nThe limits being 0.10 % (6.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08934220 BTC (99,173.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,110,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,279,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.32 % (104,450.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,011.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00274373 BTC (6,253.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002879 BTC for 65.62 CZK @ 2,279,143 CZK\nFees are 0.23046165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (25.070573344804126855069431356 CZK)\nThe limits being 0.10 % (6.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08934220 BTC (99,173.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,110,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,279,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.32 % (104,450.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,011.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00274373 BTC (6,253.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1503 transactions" + } + ] + }, + { + "id": 1542, + "type": "message", + "date": "2025-06-05T14:29:03", + "date_unixtime": "1749126543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002867 BTC for 65.76 CZK @ 2,293,700 CZK\nFees are 0.23096690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (25.230700548081714000996512207 CZK)\nThe limits being 0.10 % (6.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08937087 BTC (99,239.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,110,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.56 % (105,750.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,945.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00277240 BTC (6,359.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002867 BTC for 65.76 CZK @ 2,293,700 CZK\nFees are 0.23096690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (25.230700548081714000996512207 CZK)\nThe limits being 0.10 % (6.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08937087 BTC (99,239.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,110,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.56 % (105,750.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,945.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00277240 BTC (6,359.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1504 transactions" + } + ] + }, + { + "id": 1543, + "type": "message", + "date": "2025-06-06T02:29:03", + "date_unixtime": "1749169743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002985 BTC for 65.76 CZK @ 2,203,036 CZK\nFees are 0.23096773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (24.233393148102245157025786632 CZK)\nThe limits being 0.10 % (6.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08940072 BTC (99,305.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,110,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,203,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.33 % (97,647.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,879.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00280225 BTC (6,173.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002985 BTC for 65.76 CZK @ 2,203,036 CZK\nFees are 0.23096773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (24.233393148102245157025786632 CZK)\nThe limits being 0.10 % (6.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08940072 BTC (99,305.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,110,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,203,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.33 % (97,647.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,879.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00280225 BTC (6,173.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1505 transactions" + } + ] + }, + { + "id": 1544, + "type": "message", + "date": "2025-06-06T14:29:03", + "date_unixtime": "1749212943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002911 BTC for 65.75 CZK @ 2,258,714 CZK\nFees are 0.23093454 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 37.79 % (24.845855172646338981548092497 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08942983 BTC (99,371.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,111,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,258,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.27 % (102,625.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,813.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00002911 BTC (65.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002911 BTC for 65.75 CZK @ 2,258,714 CZK\nFees are 0.23093454 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 37.79 % (24.845855172646338981548092497 CZK)\nThe limits being 0.10 % (0.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08942983 BTC (99,371.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,111,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,258,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.27 % (102,625.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,813.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00002911 BTC (65.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1506 transactions" + } + ] + }, + { + "id": 1545, + "type": "message", + "date": "2025-06-07T02:29:03", + "date_unixtime": "1749256143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002891 BTC for 65.75 CZK @ 2,274,297 CZK\nFees are 0.23093016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 18.96 % (25.017265141358410557858977494 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08945874 BTC (99,437.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,111,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,274,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.61 % (104,018.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,747.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00005802 BTC (131.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002891 BTC for 65.75 CZK @ 2,274,297 CZK\nFees are 0.23093016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 18.96 % (25.017265141358410557858977494 CZK)\nThe limits being 0.10 % (0.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08945874 BTC (99,437.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,111,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,274,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.61 % (104,018.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,747.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00005802 BTC (131.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1507 transactions" + } + ] + }, + { + "id": 1546, + "type": "message", + "date": "2025-06-07T14:29:04", + "date_unixtime": "1749299344", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002864 BTC for 65.75 CZK @ 2,295,705 CZK\nFees are 0.23092690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 12.69 % (25.252755356253114100647732935 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08948738 BTC (99,503.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,111,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.46 % (105,933.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,681.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00008666 BTC (198.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002864 BTC for 65.75 CZK @ 2,295,705 CZK\nFees are 0.23092690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 12.69 % (25.252755356253114100647732935 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08948738 BTC (99,503.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,111,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.46 % (105,933.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,681.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00008666 BTC (198.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1508 transactions" + } + ] + }, + { + "id": 1547, + "type": "message", + "date": "2025-06-08T02:29:03", + "date_unixtime": "1749342543", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002856 BTC for 65.77 CZK @ 2,302,782 CZK\nFees are 0.23099170 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.55 % (25.330597801601956178585036406 CZK)\nThe limits being 0.10 % (0.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08951594 BTC (99,569.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,112,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.03 % (106,566.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,615.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00011522 BTC (265.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002856 BTC for 65.77 CZK @ 2,302,782 CZK\nFees are 0.23099170 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.55 % (25.330597801601956178585036406 CZK)\nThe limits being 0.10 % (0.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08951594 BTC (99,569.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,112,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.03 % (106,566.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,615.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00011522 BTC (265.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1509 transactions" + } + ] + }, + { + "id": 1548, + "type": "message", + "date": "2025-06-08T14:29:03", + "date_unixtime": "1749385743", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002854 BTC for 65.77 CZK @ 2,304,313 CZK\nFees are 0.23098349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.65 % (25.347447672110472491339875956 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08954448 BTC (99,635.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,112,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.09 % (106,703.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,549.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00014376 BTC (331.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002854 BTC for 65.77 CZK @ 2,304,313 CZK\nFees are 0.23098349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.65 % (25.347447672110472491339875956 CZK)\nThe limits being 0.10 % (0.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08954448 BTC (99,635.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,112,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.09 % (106,703.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,549.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00014376 BTC (331.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1510 transactions" + } + ] + }, + { + "id": 1549, + "type": "message", + "date": "2025-06-09T02:29:03", + "date_unixtime": "1749428943", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002851 BTC for 65.76 CZK @ 2,306,562 CZK\nFees are 0.23096585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.39 % (25.372182142578142408270457118 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08957299 BTC (99,701.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,113,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.22 % (106,904.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,483.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00017227 BTC (397.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002851 BTC for 65.76 CZK @ 2,306,562 CZK\nFees are 0.23096585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.39 % (25.372182142578142408270457118 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08957299 BTC (99,701.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,113,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.22 % (106,904.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,483.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00017227 BTC (397.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1511 transactions" + } + ] + }, + { + "id": 1550, + "type": "message", + "date": "2025-06-09T14:29:03", + "date_unixtime": "1749472143", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002809 BTC for 65.77 CZK @ 2,341,353 CZK\nFees are 0.23099583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.49 % (25.754888197822395556456638149 CZK)\nThe limits being 0.10 % (0.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08960108 BTC (99,767.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,113,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.28 % (110,020.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,417.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00020036 BTC (469.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002809 BTC for 65.77 CZK @ 2,341,353 CZK\nFees are 0.23099583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.49 % (25.754888197822395556456638149 CZK)\nThe limits being 0.10 % (0.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08960108 BTC (99,767.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,113,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.28 % (110,020.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,417.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00020036 BTC (469.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1512 transactions" + } + ] + }, + { + "id": 1551, + "type": "message", + "date": "2025-06-10T02:29:03", + "date_unixtime": "1749515343", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002754 BTC for 65.76 CZK @ 2,387,791 CZK\nFees are 0.23096472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.83 % (26.265699613082605940935122134 CZK)\nThe limits being 0.10 % (0.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08962862 BTC (99,833.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,113,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.37 % (114,181.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,351.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00022790 BTC (544.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002754 BTC for 65.76 CZK @ 2,387,791 CZK\nFees are 0.23096472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.83 % (26.265699613082605940935122134 CZK)\nThe limits being 0.10 % (0.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08962862 BTC (99,833.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,113,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.37 % (114,181.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,351.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00022790 BTC (544.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1513 transactions" + } + ] + }, + { + "id": 1552, + "type": "message", + "date": "2025-06-10T14:29:04", + "date_unixtime": "1749558544", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002761 BTC for 65.76 CZK @ 2,381,674 CZK\nFees are 0.23095857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.31 % (26.198410392312166381807101440 CZK)\nThe limits being 0.10 % (0.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08965623 BTC (99,899.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,114,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.75 % (113,632.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,285.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00025551 BTC (608.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002761 BTC for 65.76 CZK @ 2,381,674 CZK\nFees are 0.23095857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.31 % (26.198410392312166381807101440 CZK)\nThe limits being 0.10 % (0.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08965623 BTC (99,899.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,114,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.75 % (113,632.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,285.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00025551 BTC (608.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1514 transactions" + } + ] + }, + { + "id": 1553, + "type": "message", + "date": "2025-06-11T02:29:04", + "date_unixtime": "1749601744", + "from": "DCAinvest", + "from_id": "channel1892925603", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#nehasvit" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00002757 BTC for 65.64 CZK @ 2,380,760 CZK\nFees are 0.23053546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.89 % (26.188356009678855236270441919 CZK)\nThe limits being 0.10 % (0.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08968380 BTC (99,965.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 1,114,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.59 % (113,550.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,219.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00028308 BTC (673.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.98 CZK over 1515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#nehasvit" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00002757 BTC for 65.64 CZK @ 2,380,760 CZK\nFees are 0.23053546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.89 % (26.188356009678855236270441919 CZK)\nThe limits being 0.10 % (0.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08968380 BTC (99,965.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 1,114,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.59 % (113,550.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,219.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00028308 BTC (673.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.98 CZK over 1515 transactions" + } + ] + } + ] +} \ No newline at end of file diff --git a/archive/telegram-accbot-converter/output/result_vitek_accbot_import_2025-06-11T11-47-07.json b/archive/telegram-accbot-converter/output/result_vitek_accbot_import_2025-06-11T11-47-07.json new file mode 100644 index 0000000..f59d013 --- /dev/null +++ b/archive/telegram-accbot-converter/output/result_vitek_accbot_import_2025-06-11T11-47-07.json @@ -0,0 +1,27276 @@ +{ + "exportDate": "2025-06-11T11:47:07.802Z", + "version": "1.0.0", + "transactions": [ + { + "id": "8tkw1ffcncmp618l2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-29T19:53:27", + "amountCrypto": 0.00009575, + "pricePerUnit": 624445, + "totalCost": 59.79, + "fee": 0.20999957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-29T19:53:27" + }, + { + "id": "0oraoazer5sj9a4buj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-30T02:29:04", + "amountCrypto": 0.00010511, + "pricePerUnit": 625696, + "totalCost": 65.77, + "fee": 0.23098982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-30T02:29:04" + }, + { + "id": "bkahofri83ujpnp1oz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-30T14:29:05", + "amountCrypto": 0.00010502, + "pricePerUnit": 626215, + "totalCost": 65.77, + "fee": 0.23098347, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-30T14:29:05" + }, + { + "id": "c4gv1y9m7yfw3emgw3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-01T02:29:04", + "amountCrypto": 0.00010457, + "pricePerUnit": 628948, + "totalCost": 65.77, + "fee": 0.23099749, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-01T02:29:04" + }, + { + "id": "qabch74muew1fha92l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-01T14:29:03", + "amountCrypto": 0.00010713, + "pricePerUnit": 613919, + "totalCost": 65.77, + "fee": 0.23099767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-01T14:29:03" + }, + { + "id": "6l7or4wn06jxqni9t6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-02T02:29:03", + "amountCrypto": 0.00010834, + "pricePerUnit": 607065, + "totalCost": 65.77, + "fee": 0.23099865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-02T02:29:03" + }, + { + "id": "rdu4dm7wwqgw5sivnj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-02T14:29:04", + "amountCrypto": 0.0001086, + "pricePerUnit": 605571, + "totalCost": 65.77, + "fee": 0.23098316, + "status": "completed", + "orderId": null, + "exchangeOrderId": "8", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-02T14:29:04" + }, + { + "id": "z9opbt3rb477f6zwho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T02:29:04", + "amountCrypto": 0.00010692, + "pricePerUnit": 615084, + "totalCost": 65.76, + "fee": 0.23098235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "9", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T02:29:04" + }, + { + "id": "28q2kcc36c19qdbuic", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T14:29:03", + "amountCrypto": 0.00010737, + "pricePerUnit": 612541, + "totalCost": 65.77, + "fee": 0.23099551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "10", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T14:29:03" + }, + { + "id": "syzol21scdkklmvxai", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T02:29:04", + "amountCrypto": 0.00010631, + "pricePerUnit": 618604, + "totalCost": 65.76, + "fee": 0.23097888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "11", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T02:29:04" + }, + { + "id": "rmlnwgu9g2oo06q92t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T14:29:03", + "amountCrypto": 0.00010583, + "pricePerUnit": 621444, + "totalCost": 65.77, + "fee": 0.23099162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "12", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T14:29:03" + }, + { + "id": "wfb1i3kmkzxzy4qn2y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T02:29:04", + "amountCrypto": 0.00010678, + "pricePerUnit": 615919, + "totalCost": 65.77, + "fee": 0.23099306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "13", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T02:29:04" + }, + { + "id": "8tzhkiksho5x7pjvr8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T14:29:03", + "amountCrypto": 0.00010582, + "pricePerUnit": 621488, + "totalCost": 65.77, + "fee": 0.23098614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "14", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T14:29:03" + }, + { + "id": "bdfrn8cg12pit7bxf5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T02:29:03", + "amountCrypto": 0.00010462, + "pricePerUnit": 628644, + "totalCost": 65.77, + "fee": 0.23099624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "15", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T02:29:03" + }, + { + "id": "1ncwjiz9eapwj5uawx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T14:29:03", + "amountCrypto": 0.0001054, + "pricePerUnit": 623977, + "totalCost": 65.77, + "fee": 0.23099076, + "status": "completed", + "orderId": null, + "exchangeOrderId": "16", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T14:29:03" + }, + { + "id": "d2glbqcdt9vz8d0izu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T02:29:04", + "amountCrypto": 0.00010681, + "pricePerUnit": 615762, + "totalCost": 65.77, + "fee": 0.23099906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "17", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T02:29:04" + }, + { + "id": "8e0frfl1v2a2xo78zu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T14:29:03", + "amountCrypto": 0.00010664, + "pricePerUnit": 616708, + "totalCost": 65.77, + "fee": 0.23098572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "18", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T14:29:03" + }, + { + "id": "wpaq8dhr2c4z0nhntk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T02:29:03", + "amountCrypto": 0.00010748, + "pricePerUnit": 611870, + "totalCost": 65.76, + "fee": 0.23097886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "19", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T02:29:03" + }, + { + "id": "n6ax95huuzn5kssnm1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T14:29:03", + "amountCrypto": 0.00011061, + "pricePerUnit": 594564, + "totalCost": 65.76, + "fee": 0.23098215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "20", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T14:29:03" + }, + { + "id": "ag9j1s4oluh4ont3kt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T02:29:03", + "amountCrypto": 0.00011123, + "pricePerUnit": 591287, + "totalCost": 65.77, + "fee": 0.23099665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "21", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T02:29:03" + }, + { + "id": "9diwh50exjj33tgidr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T14:29:03", + "amountCrypto": 0.0001107, + "pricePerUnit": 594084, + "totalCost": 65.77, + "fee": 0.23098347, + "status": "completed", + "orderId": null, + "exchangeOrderId": "22", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T14:29:03" + }, + { + "id": "08331eqydro120pggz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T02:29:03", + "amountCrypto": 0.00011091, + "pricePerUnit": 592955, + "totalCost": 65.76, + "fee": 0.23098185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "23", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T02:29:03" + }, + { + "id": "4ega2t4w6rtd572elx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T14:29:04", + "amountCrypto": 0.00011069, + "pricePerUnit": 594152, + "totalCost": 65.77, + "fee": 0.23098904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "24", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T14:29:04" + }, + { + "id": "eiq43kujie31j2e001", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T02:29:04", + "amountCrypto": 0.00011159, + "pricePerUnit": 589383, + "totalCost": 65.77, + "fee": 0.23099804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "25", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T02:29:04" + }, + { + "id": "pvhkkk5n7tyfe9e1y0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T14:29:04", + "amountCrypto": 0.00011103, + "pricePerUnit": 592316, + "totalCost": 65.76, + "fee": 0.23098258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "26", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T14:29:04" + }, + { + "id": "fmshrcxvo4j0bpjvbc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T02:29:03", + "amountCrypto": 0.00011291, + "pricePerUnit": 582477, + "totalCost": 65.77, + "fee": 0.23099182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "27", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T02:29:03" + }, + { + "id": "7zhwj6r0bg0xadp9d4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T14:29:03", + "amountCrypto": 0.00011472, + "pricePerUnit": 573300, + "totalCost": 65.77, + "fee": 0.23099709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "28", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T14:29:03" + }, + { + "id": "mjzfbhgqesq4nxcbis", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T02:29:04", + "amountCrypto": 0.0001126, + "pricePerUnit": 584059, + "totalCost": 65.77, + "fee": 0.23098327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "29", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T02:29:04" + }, + { + "id": "vj97v0o0qi5dhn5iu0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T14:29:05", + "amountCrypto": 0.00011214, + "pricePerUnit": 586476, + "totalCost": 65.77, + "fee": 0.23099162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "30", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T14:29:05" + }, + { + "id": "k0pyhpffr86insce03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T02:29:04", + "amountCrypto": 0.00011216, + "pricePerUnit": 586356, + "totalCost": 65.77, + "fee": 0.23098554, + "status": "completed", + "orderId": null, + "exchangeOrderId": "31", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T02:29:04" + }, + { + "id": "e2owsnwjbs0segar8h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T14:29:03", + "amountCrypto": 0.00011248, + "pricePerUnit": 584705, + "totalCost": 65.77, + "fee": 0.23099232, + "status": "completed", + "orderId": null, + "exchangeOrderId": "32", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T14:29:03" + }, + { + "id": "0d7wnt90989vu3jluv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T02:29:03", + "amountCrypto": 0.00011245, + "pricePerUnit": 584843, + "totalCost": 65.77, + "fee": 0.23098521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "33", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T02:29:03" + }, + { + "id": "d4v1fi6wjk71n2nc3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T14:29:04", + "amountCrypto": 0.00011079, + "pricePerUnit": 593597, + "totalCost": 65.76, + "fee": 0.23098176, + "status": "completed", + "orderId": null, + "exchangeOrderId": "34", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T14:29:04" + }, + { + "id": "kspsd8io97w8yfwnuc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T02:29:03", + "amountCrypto": 0.00011058, + "pricePerUnit": 594750, + "totalCost": 65.77, + "fee": 0.23099174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "35", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T02:29:03" + }, + { + "id": "tryz4ihhtmbcwe85a2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T14:29:04", + "amountCrypto": 0.00011145, + "pricePerUnit": 590094, + "totalCost": 65.77, + "fee": 0.23098655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "36", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T14:29:04" + }, + { + "id": "22li0yb6xoqz3ohz2o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-17T02:29:03", + "amountCrypto": 0.00011156, + "pricePerUnit": 589495, + "totalCost": 65.76, + "fee": 0.23097983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "37", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-17T02:29:03" + }, + { + "id": "67q0t42rqb80mvrb44", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-17T14:29:03", + "amountCrypto": 0.00011273, + "pricePerUnit": 583390, + "totalCost": 65.77, + "fee": 0.23098507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "38", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-17T14:29:03" + }, + { + "id": "tc0uhpiax7abidpnr1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-18T02:29:03", + "amountCrypto": 0.00010976, + "pricePerUnit": 599184, + "totalCost": 65.77, + "fee": 0.23098816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "39", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-18T02:29:03" + }, + { + "id": "658u0akzq212z5jrov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-18T14:29:04", + "amountCrypto": 0.0001097, + "pricePerUnit": 599529, + "totalCost": 65.77, + "fee": 0.23099482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "40", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-18T14:29:04" + }, + { + "id": "j0zdccj8n2to38lypy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-19T02:29:03", + "amountCrypto": 0.00011125, + "pricePerUnit": 591143, + "totalCost": 65.76, + "fee": 0.23098192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "41", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-19T02:29:03" + }, + { + "id": "wj3z30g6nv1whe6ik3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-19T14:29:05", + "amountCrypto": 0.00011101, + "pricePerUnit": 592444, + "totalCost": 65.77, + "fee": 0.23099088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "42", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-19T14:29:05" + }, + { + "id": "ulouox8w739kcmg627", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-20T02:29:03", + "amountCrypto": 0.00011106, + "pricePerUnit": 592161, + "totalCost": 65.77, + "fee": 0.23098453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "43", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-20T02:29:03" + }, + { + "id": "j3cl5uv9e7el7ibp9f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-20T14:29:03", + "amountCrypto": 0.00011079, + "pricePerUnit": 593601, + "totalCost": 65.77, + "fee": 0.23098331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "44", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-20T14:29:03" + }, + { + "id": "egq4c0zdcm9x0wg3ol", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-21T02:29:03", + "amountCrypto": 0.00011021, + "pricePerUnit": 596725, + "totalCost": 65.77, + "fee": 0.23098334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "45", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-21T02:29:03" + }, + { + "id": "zw05avje4nwnwk7d36", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-21T14:29:04", + "amountCrypto": 0.00011103, + "pricePerUnit": 592338, + "totalCost": 65.77, + "fee": 0.23099116, + "status": "completed", + "orderId": null, + "exchangeOrderId": "46", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-21T14:29:04" + }, + { + "id": "k8517uwza3a6t7txfk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-22T02:29:03", + "amountCrypto": 0.00011176, + "pricePerUnit": 588452, + "totalCost": 65.77, + "fee": 0.23098451, + "status": "completed", + "orderId": null, + "exchangeOrderId": "47", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-22T02:29:03" + }, + { + "id": "057fjr1qulpfi31t91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-22T14:29:04", + "amountCrypto": 0.00011173, + "pricePerUnit": 588626, + "totalCost": 65.77, + "fee": 0.23099079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "48", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-22T14:29:04" + }, + { + "id": "txzsh4fjku1vi1ytcp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T02:29:03", + "amountCrypto": 0.00011137, + "pricePerUnit": 590501, + "totalCost": 65.76, + "fee": 0.23097995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "49", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T02:29:03" + }, + { + "id": "qafps0q90r997iwc4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T14:29:05", + "amountCrypto": 0.00010921, + "pricePerUnit": 602196, + "totalCost": 65.77, + "fee": 0.23098602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "50", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T14:29:05" + }, + { + "id": "9l6g5uk498hk1bd76q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T02:29:03", + "amountCrypto": 0.00010966, + "pricePerUnit": 599715, + "totalCost": 65.76, + "fee": 0.23098239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "51", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T02:29:03" + }, + { + "id": "fj35zn9cp84val7v4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T14:29:03", + "amountCrypto": 0.00011166, + "pricePerUnit": 588971, + "totalCost": 65.76, + "fee": 0.23098137, + "status": "completed", + "orderId": null, + "exchangeOrderId": "52", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T14:29:03" + }, + { + "id": "oex4d0p2pv5annnahs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T02:29:04", + "amountCrypto": 0.00011318, + "pricePerUnit": 581065, + "totalCost": 65.76, + "fee": 0.2309829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "53", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T02:29:04" + }, + { + "id": "y4s2cs775x19tg5ha6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T14:29:03", + "amountCrypto": 0.00011285, + "pricePerUnit": 582779, + "totalCost": 65.77, + "fee": 0.23098878, + "status": "completed", + "orderId": null, + "exchangeOrderId": "54", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T14:29:03" + }, + { + "id": "8gbqqfhoiml5f7xd3a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T02:29:05", + "amountCrypto": 0.0001124, + "pricePerUnit": 585096, + "totalCost": 65.76, + "fee": 0.23098239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "55", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T02:29:05" + }, + { + "id": "vsrnrcdvgw0yayon49", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T14:29:04", + "amountCrypto": 0.00011281, + "pricePerUnit": 582967, + "totalCost": 65.76, + "fee": 0.23098139, + "status": "completed", + "orderId": null, + "exchangeOrderId": "56", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T14:29:04" + }, + { + "id": "akiyg66067o4sw7b0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T02:29:05", + "amountCrypto": 0.00011169, + "pricePerUnit": 588858, + "totalCost": 65.77, + "fee": 0.2309991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "57", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T02:29:05" + }, + { + "id": "3jubkepz5x2255c54y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T14:29:04", + "amountCrypto": 0.00011143, + "pricePerUnit": 590199, + "totalCost": 65.77, + "fee": 0.23098619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "58", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T14:29:04" + }, + { + "id": "jiahub2uc7aol02vei", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T02:29:04", + "amountCrypto": 0.00011098, + "pricePerUnit": 592594, + "totalCost": 65.77, + "fee": 0.23098692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "59", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T02:29:04" + }, + { + "id": "9fh26osdjfxyrmm3ab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T14:29:03", + "amountCrypto": 0.00010965, + "pricePerUnit": 599781, + "totalCost": 65.77, + "fee": 0.23098659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "60", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T14:29:03" + }, + { + "id": "lpgp4b486blruvga7x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T02:29:03", + "amountCrypto": 0.00010546, + "pricePerUnit": 623617, + "totalCost": 65.77, + "fee": 0.23098891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "61", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T02:29:03" + }, + { + "id": "5e5ngbg7tw5sftiksu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T14:29:04", + "amountCrypto": 0.00010702, + "pricePerUnit": 614500, + "totalCost": 65.76, + "fee": 0.23097887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "62", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T14:29:04" + }, + { + "id": "085dzlag4ovi07zy75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T02:29:03", + "amountCrypto": 0.00010781, + "pricePerUnit": 610000, + "totalCost": 65.76, + "fee": 0.23097996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "63", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T02:29:03" + }, + { + "id": "vb4dtqqciqocg46qgv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T14:29:03", + "amountCrypto": 0.00010716, + "pricePerUnit": 613741, + "totalCost": 65.77, + "fee": 0.23099536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "64", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T14:29:03" + }, + { + "id": "wj1wgef5vymy3aq77t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T02:29:03", + "amountCrypto": 0.00010783, + "pricePerUnit": 609906, + "totalCost": 65.77, + "fee": 0.23098721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "65", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T02:29:03" + }, + { + "id": "y2irecyjexjxuc1zeu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T14:29:05", + "amountCrypto": 0.00010928, + "pricePerUnit": 601811, + "totalCost": 65.77, + "fee": 0.2309863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "66", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T14:29:05" + }, + { + "id": "r2a5bizbof3kmggr20", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T02:29:04", + "amountCrypto": 0.00010865, + "pricePerUnit": 605285, + "totalCost": 65.76, + "fee": 0.23098037, + "status": "completed", + "orderId": null, + "exchangeOrderId": "67", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T02:29:04" + }, + { + "id": "h695lokpki77jy72bo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T14:29:03", + "amountCrypto": 0.00011035, + "pricePerUnit": 595958, + "totalCost": 65.76, + "fee": 0.23097949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "68", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T14:29:03" + }, + { + "id": "lr3j4qikdm357mvfhm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T02:29:04", + "amountCrypto": 0.00011175, + "pricePerUnit": 588528, + "totalCost": 65.77, + "fee": 0.23099367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "69", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T02:29:04" + }, + { + "id": "7vsh7ohy6q6jizqitc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T14:29:04", + "amountCrypto": 0.00010991, + "pricePerUnit": 598365, + "totalCost": 65.77, + "fee": 0.23098768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "70", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T14:29:04" + }, + { + "id": "9tsrypgps442q575j3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T02:29:05", + "amountCrypto": 0.00010926, + "pricePerUnit": 601927, + "totalCost": 65.77, + "fee": 0.23098854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "71", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T02:29:05" + }, + { + "id": "eyijvzt5ai5n5sl2u8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T14:29:05", + "amountCrypto": 0.00010961, + "pricePerUnit": 600005, + "totalCost": 65.77, + "fee": 0.23098856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "72", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T14:29:05" + }, + { + "id": "gehlm1ly8b6kxzdn9x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T02:29:04", + "amountCrypto": 0.00011017, + "pricePerUnit": 596973, + "totalCost": 65.77, + "fee": 0.23099547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "73", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T02:29:04" + }, + { + "id": "aaqdmhn71vwrwxkrkg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T14:29:03", + "amountCrypto": 0.00010944, + "pricePerUnit": 600947, + "totalCost": 65.77, + "fee": 0.23099239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "74", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T14:29:03" + }, + { + "id": "qbpi4h1m2ovb54t4es", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T02:29:05", + "amountCrypto": 0.0001095, + "pricePerUnit": 600628, + "totalCost": 65.77, + "fee": 0.23099635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "75", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T02:29:05" + }, + { + "id": "cuh2z22h1fq40x4p2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T14:29:04", + "amountCrypto": 0.0001112, + "pricePerUnit": 591421, + "totalCost": 65.77, + "fee": 0.23098669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "76", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T14:29:04" + }, + { + "id": "m3zueah4mzb9fmh6kj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T02:29:05", + "amountCrypto": 0.00011604, + "pricePerUnit": 566773, + "totalCost": 65.77, + "fee": 0.23099485, + "status": "completed", + "orderId": null, + "exchangeOrderId": "77", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T02:29:05" + }, + { + "id": "h828uu7j0kg0i0psqy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T14:29:07", + "amountCrypto": 0.00011678, + "pricePerUnit": 563162, + "totalCost": 65.77, + "fee": 0.23098684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "78", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T14:29:07" + }, + { + "id": "cieisthrjs5qtgf1e1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-07T02:29:03", + "amountCrypto": 0.00011026, + "pricePerUnit": 596495, + "totalCost": 65.77, + "fee": 0.23099906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "79", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-07T02:29:03" + }, + { + "id": "oqovf2n09q6r864f73", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-07T14:29:05", + "amountCrypto": 0.00011115, + "pricePerUnit": 591679, + "totalCost": 65.77, + "fee": 0.23098355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "80", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-07T14:29:05" + }, + { + "id": "35h746gnap8xp2chb5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T02:29:03", + "amountCrypto": 0.00011298, + "pricePerUnit": 582089, + "totalCost": 65.76, + "fee": 0.23098115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "81", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T02:29:03" + }, + { + "id": "l4n4ipv6903oyl6k5o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T14:29:03", + "amountCrypto": 0.00011318, + "pricePerUnit": 581088, + "totalCost": 65.77, + "fee": 0.23099204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "82", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T14:29:03" + }, + { + "id": "ib4h4vol13tg2sjkob", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T02:29:04", + "amountCrypto": 0.00011346, + "pricePerUnit": 579666, + "totalCost": 65.77, + "fee": 0.23099683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "83", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T02:29:04" + }, + { + "id": "swr09tm0q3dn2pgma3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T14:29:04", + "amountCrypto": 0.00011263, + "pricePerUnit": 583930, + "totalCost": 65.77, + "fee": 0.23099378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "84", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T14:29:04" + }, + { + "id": "47xvwfxdj1y7yny2wd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T02:29:04", + "amountCrypto": 0.00011288, + "pricePerUnit": 582612, + "totalCost": 65.77, + "fee": 0.23098397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "85", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T02:29:04" + }, + { + "id": "y81yi72f4wq035aq89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T14:29:04", + "amountCrypto": 0.00011619, + "pricePerUnit": 566030, + "totalCost": 65.77, + "fee": 0.23099024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "86", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T14:29:04" + }, + { + "id": "432kfo8vkgwy8zchtt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T02:29:03", + "amountCrypto": 0.00011526, + "pricePerUnit": 570618, + "totalCost": 65.77, + "fee": 0.23099868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "87", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T02:29:03" + }, + { + "id": "w2k26ahenubpbah6ih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T14:29:05", + "amountCrypto": 0.0001155, + "pricePerUnit": 569410, + "totalCost": 65.77, + "fee": 0.23098964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "88", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T14:29:05" + }, + { + "id": "s29rqwp0n59nt6l204", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T02:29:03", + "amountCrypto": 0.00011526, + "pricePerUnit": 570617, + "totalCost": 65.77, + "fee": 0.23099828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "89", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T02:29:03" + }, + { + "id": "r5zji9usyrukbf67bi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T14:29:03", + "amountCrypto": 0.00011536, + "pricePerUnit": 570093, + "totalCost": 65.77, + "fee": 0.23098638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "90", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T14:29:03" + }, + { + "id": "88j24i4arfojblnx02", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T02:29:04", + "amountCrypto": 0.00011492, + "pricePerUnit": 572281, + "totalCost": 65.77, + "fee": 0.2309885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "91", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T02:29:04" + }, + { + "id": "bstrasy92hzh5m1gkr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T14:29:04", + "amountCrypto": 0.00011395, + "pricePerUnit": 577159, + "totalCost": 65.77, + "fee": 0.23099109, + "status": "completed", + "orderId": null, + "exchangeOrderId": "92", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T14:29:04" + }, + { + "id": "gkycch1uyihx1g6qm9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T02:29:03", + "amountCrypto": 0.00011494, + "pricePerUnit": 572174, + "totalCost": 65.77, + "fee": 0.23098551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "93", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T02:29:03" + }, + { + "id": "97iylssj8iqwfxwk7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T14:29:04", + "amountCrypto": 0.00011503, + "pricePerUnit": 571746, + "totalCost": 65.77, + "fee": 0.23099346, + "status": "completed", + "orderId": null, + "exchangeOrderId": "94", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T14:29:04" + }, + { + "id": "5mvn374e1ej2hwjd5s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T02:29:06", + "amountCrypto": 0.00011651, + "pricePerUnit": 564468, + "totalCost": 65.77, + "fee": 0.23098722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "95", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T02:29:06" + }, + { + "id": "hkvf3fyh3l4ieraxk0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T14:29:04", + "amountCrypto": 0.00011834, + "pricePerUnit": 555752, + "totalCost": 65.77, + "fee": 0.23099258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "96", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T14:29:04" + }, + { + "id": "vejsfattimz96a55vo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T02:29:03", + "amountCrypto": 0.00011853, + "pricePerUnit": 554857, + "totalCost": 65.77, + "fee": 0.23099085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "97", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T02:29:03" + }, + { + "id": "79697dixb1ojyzqg2a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T14:29:03", + "amountCrypto": 0.00011793, + "pricePerUnit": 557684, + "totalCost": 65.77, + "fee": 0.23099251, + "status": "completed", + "orderId": null, + "exchangeOrderId": "98", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T14:29:03" + }, + { + "id": "fg4fq1ja91yj4xp3jt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T02:29:05", + "amountCrypto": 0.00011469, + "pricePerUnit": 573414, + "totalCost": 65.76, + "fee": 0.2309826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "99", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T02:29:05" + }, + { + "id": "f757fg7ouj4mmq9tp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T14:29:04", + "amountCrypto": 0.00011372, + "pricePerUnit": 578337, + "totalCost": 65.77, + "fee": 0.23099536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T14:29:04" + }, + { + "id": "rda5vw0z9xpahhw26z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T02:29:04", + "amountCrypto": 0.00011405, + "pricePerUnit": 576625, + "totalCost": 65.76, + "fee": 0.23097989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T02:29:04" + }, + { + "id": "5bhy7hg5vrypqzyibb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T14:29:04", + "amountCrypto": 0.00011389, + "pricePerUnit": 577449, + "totalCost": 65.77, + "fee": 0.23098546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T14:29:04" + }, + { + "id": "nmbfr8ebduf3mycp5q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T02:29:03", + "amountCrypto": 0.00011449, + "pricePerUnit": 574426, + "totalCost": 65.77, + "fee": 0.23098675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T02:29:03" + }, + { + "id": "knizhazrm1pn5uaw3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T14:29:07", + "amountCrypto": 0.00011389, + "pricePerUnit": 577435, + "totalCost": 65.76, + "fee": 0.23097988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T14:29:07" + }, + { + "id": "5atqqebfpmo0q8o58o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T02:29:03", + "amountCrypto": 0.00011225, + "pricePerUnit": 585890, + "totalCost": 65.77, + "fee": 0.23098717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T02:29:03" + }, + { + "id": "o4rvi1lxg070y9tthx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T14:29:04", + "amountCrypto": 0.00011259, + "pricePerUnit": 584125, + "totalCost": 65.77, + "fee": 0.23098886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T14:29:04" + }, + { + "id": "mnm72y1ioix9ossm67", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T02:29:04", + "amountCrypto": 0.00010694, + "pricePerUnit": 615000, + "totalCost": 65.77, + "fee": 0.23099401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T02:29:04" + }, + { + "id": "f620l7vxblimev8jay", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T14:29:03", + "amountCrypto": 0.00010493, + "pricePerUnit": 626739, + "totalCost": 65.76, + "fee": 0.23097864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T14:29:03" + }, + { + "id": "qhi0mcldrwtqtnoyl8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T02:29:03", + "amountCrypto": 0.00010188, + "pricePerUnit": 645520, + "totalCost": 65.77, + "fee": 0.23098515, + "status": "completed", + "orderId": null, + "exchangeOrderId": "109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T02:29:03" + }, + { + "id": "7m40a33awhpbmw5bpb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T14:29:04", + "amountCrypto": 0.00010163, + "pricePerUnit": 647114, + "totalCost": 65.77, + "fee": 0.23098732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T14:29:04" + }, + { + "id": "h0h4ggx0vf2n0nqlr3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-23T02:29:04", + "amountCrypto": 0.00010139, + "pricePerUnit": 648649, + "totalCost": 65.77, + "fee": 0.23098833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-23T02:29:04" + }, + { + "id": "003gc0xggocu2jhju3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-23T14:29:04", + "amountCrypto": 0.0001006, + "pricePerUnit": 653760, + "totalCost": 65.77, + "fee": 0.23099456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-23T14:29:04" + }, + { + "id": "vnbc5cffx80in2pxrg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-24T02:29:04", + "amountCrypto": 0.00009968, + "pricePerUnit": 659761, + "totalCost": 65.76, + "fee": 0.23098304, + "status": "completed", + "orderId": null, + "exchangeOrderId": "113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-24T02:29:04" + }, + { + "id": "h4tqachxhcmkv7aokn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-24T14:29:03", + "amountCrypto": 0.00009954, + "pricePerUnit": 660697, + "totalCost": 65.77, + "fee": 0.23098586, + "status": "completed", + "orderId": null, + "exchangeOrderId": "114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-24T14:29:03" + }, + { + "id": "ivm6el2wc8pl7la27j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-25T02:29:05", + "amountCrypto": 0.00009926, + "pricePerUnit": 662586, + "totalCost": 65.77, + "fee": 0.23099466, + "status": "completed", + "orderId": null, + "exchangeOrderId": "115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-25T02:29:05" + }, + { + "id": "c2hn2f5az7yh02sqp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-25T14:29:04", + "amountCrypto": 0.00009881, + "pricePerUnit": 665569, + "totalCost": 65.76, + "fee": 0.23098267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-25T14:29:04" + }, + { + "id": "ld8093i5zcz6raj2n5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-26T02:29:03", + "amountCrypto": 0.00009925, + "pricePerUnit": 662632, + "totalCost": 65.77, + "fee": 0.23098743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-26T02:29:03" + }, + { + "id": "aetv5kmav1tz3fcao9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-26T14:29:03", + "amountCrypto": 0.00010024, + "pricePerUnit": 656081, + "totalCost": 65.77, + "fee": 0.23098509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-26T14:29:03" + }, + { + "id": "2nl48e7b860za9vh7u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-27T02:29:03", + "amountCrypto": 0.00010044, + "pricePerUnit": 654802, + "totalCost": 65.77, + "fee": 0.23099476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-27T02:29:03" + }, + { + "id": "az6rf5pxeuozwbi297", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-27T14:29:04", + "amountCrypto": 0.00009942, + "pricePerUnit": 661494, + "totalCost": 65.77, + "fee": 0.2309857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-27T14:29:04" + }, + { + "id": "kllke8tdpv8m85v937", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T02:29:05", + "amountCrypto": 0.0000997, + "pricePerUnit": 659648, + "totalCost": 65.77, + "fee": 0.23098981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T02:29:05" + }, + { + "id": "k5b2bzu54vpnuo491g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T14:29:03", + "amountCrypto": 0.00010014, + "pricePerUnit": 656736, + "totalCost": 65.77, + "fee": 0.23098503, + "status": "completed", + "orderId": null, + "exchangeOrderId": "122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T14:29:03" + }, + { + "id": "5bknspofzw2slhnofk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T02:29:04", + "amountCrypto": 0.00010042, + "pricePerUnit": 654945, + "totalCost": 65.77, + "fee": 0.2309992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T02:29:04" + }, + { + "id": "rzb50oiowwb9q3woc6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T14:29:04", + "amountCrypto": 0.0000991, + "pricePerUnit": 663666, + "totalCost": 65.77, + "fee": 0.23099823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T14:29:04" + }, + { + "id": "pbixwyp5zy3tlsyj25", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T02:29:05", + "amountCrypto": 0.00009912, + "pricePerUnit": 663510, + "totalCost": 65.77, + "fee": 0.23099054, + "status": "completed", + "orderId": null, + "exchangeOrderId": "125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T02:29:05" + }, + { + "id": "2qmr5cky1845k1lpmo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T14:29:04", + "amountCrypto": 0.00009781, + "pricePerUnit": 672400, + "totalCost": 65.77, + "fee": 0.23099171, + "status": "completed", + "orderId": null, + "exchangeOrderId": "126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T14:29:04" + }, + { + "id": "9yab79kvh8h579lvr5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T02:29:05", + "amountCrypto": 0.00009932, + "pricePerUnit": 662137, + "totalCost": 65.76, + "fee": 0.23097767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T02:29:05" + }, + { + "id": "o9h6p4pxq8ocw1dy37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T14:29:04", + "amountCrypto": 0.00009905, + "pricePerUnit": 663669, + "totalCost": 65.74, + "fee": 0.23088278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T14:29:04" + }, + { + "id": "fiu2ghaeqc09c6hlpv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T02:29:04", + "amountCrypto": 0.00009899, + "pricePerUnit": 664362, + "totalCost": 65.77, + "fee": 0.2309838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T02:29:04" + }, + { + "id": "gzw22a2fny3x9bdq60", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T14:29:04", + "amountCrypto": 0.00009909, + "pricePerUnit": 663692, + "totalCost": 65.77, + "fee": 0.23098397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T14:29:04" + }, + { + "id": "58pwby1xnr8lmdul3s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T02:29:04", + "amountCrypto": 0.00009876, + "pricePerUnit": 665912, + "totalCost": 65.77, + "fee": 0.23098477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T02:29:04" + }, + { + "id": "uebrcidb1ejf495tw7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T14:29:04", + "amountCrypto": 0.00009897, + "pricePerUnit": 664500, + "totalCost": 65.77, + "fee": 0.23098511, + "status": "completed", + "orderId": null, + "exchangeOrderId": "132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T14:29:04" + }, + { + "id": "7k04jzn61l36c8sus1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T02:29:04", + "amountCrypto": 0.00009714, + "pricePerUnit": 676994, + "totalCost": 65.76, + "fee": 0.23097679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T02:29:04" + }, + { + "id": "r8ocxwpis7jok989bd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T14:29:04", + "amountCrypto": 0.00009737, + "pricePerUnit": 675451, + "totalCost": 65.77, + "fee": 0.23099599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T14:29:04" + }, + { + "id": "tmkoxk3nzw1gn01u9c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-05T02:29:04", + "amountCrypto": 0.00009784, + "pricePerUnit": 672215, + "totalCost": 65.77, + "fee": 0.23099898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-05T02:29:04" + }, + { + "id": "xwkx22iyup6614spgq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-05T14:29:04", + "amountCrypto": 0.000099, + "pricePerUnit": 664335, + "totalCost": 65.77, + "fee": 0.23099775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-05T14:29:04" + }, + { + "id": "axkr7acokstt8225d4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T02:29:04", + "amountCrypto": 0.00009833, + "pricePerUnit": 668865, + "totalCost": 65.77, + "fee": 0.23099891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T02:29:04" + }, + { + "id": "f0yuxvhoxyfrdv145u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T14:29:05", + "amountCrypto": 0.0000979, + "pricePerUnit": 671759, + "totalCost": 65.77, + "fee": 0.23098385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T14:29:05" + }, + { + "id": "nhe2yod24b1gqlt89a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T02:29:03", + "amountCrypto": 0.00010026, + "pricePerUnit": 655956, + "totalCost": 65.77, + "fee": 0.23098716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T02:29:03" + }, + { + "id": "7b3v1134bn9r6ar5e3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T14:29:03", + "amountCrypto": 0.0000995, + "pricePerUnit": 660998, + "totalCost": 65.77, + "fee": 0.23099823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T14:29:03" + }, + { + "id": "ucawvfqsek4z78rrd3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T02:29:03", + "amountCrypto": 0.0000999, + "pricePerUnit": 658333, + "totalCost": 65.77, + "fee": 0.23099178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T02:29:03" + }, + { + "id": "8f52efseiqatekafs9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T14:29:03", + "amountCrypto": 0.00010019, + "pricePerUnit": 656437, + "totalCost": 65.77, + "fee": 0.23099514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T14:29:03" + }, + { + "id": "mkkvpcump2aj7s4330", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T02:29:03", + "amountCrypto": 0.0001, + "pricePerUnit": 657642, + "totalCost": 65.76, + "fee": 0.23098031, + "status": "completed", + "orderId": null, + "exchangeOrderId": "143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T02:29:03" + }, + { + "id": "qnl4rpi5gvsbw51my6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T14:29:04", + "amountCrypto": 0.00009982, + "pricePerUnit": 658860, + "totalCost": 65.77, + "fee": 0.23099157, + "status": "completed", + "orderId": null, + "exchangeOrderId": "144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T14:29:04" + }, + { + "id": "inhxhd2000v3kv9blo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T02:29:04", + "amountCrypto": 0.00010056, + "pricePerUnit": 653984, + "totalCost": 65.76, + "fee": 0.23098183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T02:29:04" + }, + { + "id": "p2hdo921vwnr8bfvnb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T14:29:19", + "amountCrypto": 0.00010015, + "pricePerUnit": 656699, + "totalCost": 65.77, + "fee": 0.23099508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T14:29:19" + }, + { + "id": "gwll1josyeg1abyjzl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T02:29:04", + "amountCrypto": 0.00009991, + "pricePerUnit": 658279, + "totalCost": 65.77, + "fee": 0.23099596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T02:29:04" + }, + { + "id": "crq539nm2dekkchn2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T14:29:04", + "amountCrypto": 0.00009968, + "pricePerUnit": 659787, + "totalCost": 65.77, + "fee": 0.23099214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T14:29:04" + }, + { + "id": "hdfe80tq162wj81fqv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T02:29:04", + "amountCrypto": 0.00009938, + "pricePerUnit": 661784, + "totalCost": 65.77, + "fee": 0.23099399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T02:29:04" + }, + { + "id": "yjlzolq9pekpm1d5b0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T14:29:03", + "amountCrypto": 0.00009868, + "pricePerUnit": 666490, + "totalCost": 65.77, + "fee": 0.23099799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T14:29:03" + }, + { + "id": "dz0wngef5tbgnadyrw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T02:29:05", + "amountCrypto": 0.00010108, + "pricePerUnit": 650667, + "totalCost": 65.77, + "fee": 0.23099865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T02:29:05" + }, + { + "id": "z76jkw6ms6iz864flq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T14:29:03", + "amountCrypto": 0.00010111, + "pricePerUnit": 650423, + "totalCost": 65.76, + "fee": 0.23098056, + "status": "completed", + "orderId": null, + "exchangeOrderId": "152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T14:29:03" + }, + { + "id": "mj0on5qbb12hjo3opf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T02:29:04", + "amountCrypto": 0.00009873, + "pricePerUnit": 666133, + "totalCost": 65.77, + "fee": 0.23099124, + "status": "completed", + "orderId": null, + "exchangeOrderId": "153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T02:29:04" + }, + { + "id": "mk8qzvaxe325onpuhl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T14:29:05", + "amountCrypto": 0.00009948, + "pricePerUnit": 661125, + "totalCost": 65.77, + "fee": 0.23099617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T14:29:05" + }, + { + "id": "ie7pdey30a6ozt3by8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T02:29:04", + "amountCrypto": 0.00010239, + "pricePerUnit": 642290, + "totalCost": 65.76, + "fee": 0.23097987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T02:29:04" + }, + { + "id": "b7c93l9f6vlfyx74n3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T14:29:05", + "amountCrypto": 0.00010208, + "pricePerUnit": 644256, + "totalCost": 65.77, + "fee": 0.23098541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T14:29:05" + }, + { + "id": "qg999k89nv8xaco96k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T02:29:04", + "amountCrypto": 0.00010229, + "pricePerUnit": 642937, + "totalCost": 65.77, + "fee": 0.23098672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T02:29:04" + }, + { + "id": "jaqbyul31fovkszipq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T14:29:05", + "amountCrypto": 0.00010248, + "pricePerUnit": 641757, + "totalCost": 65.77, + "fee": 0.23099105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T14:29:05" + }, + { + "id": "pd06qfppnupccvclt3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T02:29:05", + "amountCrypto": 0.00010261, + "pricePerUnit": 640926, + "totalCost": 65.77, + "fee": 0.23098459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T02:29:05" + }, + { + "id": "5nnp553f2ycmkyy58g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T14:29:03", + "amountCrypto": 0.00010306, + "pricePerUnit": 638136, + "totalCost": 65.77, + "fee": 0.23098767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T14:29:03" + }, + { + "id": "i6p95dx6yh8j1dpww2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T02:29:04", + "amountCrypto": 0.00010294, + "pricePerUnit": 638884, + "totalCost": 65.77, + "fee": 0.23098916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T02:29:04" + }, + { + "id": "dk7fm2xjqhssn8c29p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T14:29:03", + "amountCrypto": 0.00010391, + "pricePerUnit": 632915, + "totalCost": 65.77, + "fee": 0.23098733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T14:29:03" + }, + { + "id": "5z547fd5ougq3am26p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T02:29:04", + "amountCrypto": 0.00010345, + "pricePerUnit": 635761, + "totalCost": 65.77, + "fee": 0.23099884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T02:29:04" + }, + { + "id": "emfdw5xrkc8k8yt2y3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T14:29:03", + "amountCrypto": 0.00010279, + "pricePerUnit": 639835, + "totalCost": 65.77, + "fee": 0.2309959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T14:29:03" + }, + { + "id": "t1mz2p9h412efwl2yn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T02:29:05", + "amountCrypto": 0.00010278, + "pricePerUnit": 639904, + "totalCost": 65.77, + "fee": 0.23099834, + "status": "completed", + "orderId": null, + "exchangeOrderId": "165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T02:29:05" + }, + { + "id": "zvozfog0hjh6nl0f8g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T14:29:03", + "amountCrypto": 0.00010139, + "pricePerUnit": 648676, + "totalCost": 65.77, + "fee": 0.23099808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T14:29:03" + }, + { + "id": "pmiyiilxja1cap6fyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-21T02:29:04", + "amountCrypto": 0.00010239, + "pricePerUnit": 642318, + "totalCost": 65.77, + "fee": 0.23098994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-21T02:29:04" + }, + { + "id": "2u0tjxy7wrvrgo983j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-21T14:29:03", + "amountCrypto": 0.00010203, + "pricePerUnit": 644604, + "totalCost": 65.77, + "fee": 0.23099698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-21T14:29:03" + }, + { + "id": "p9zctgfjt9shcqpl2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-22T02:29:05", + "amountCrypto": 0.00010171, + "pricePerUnit": 646614, + "totalCost": 65.77, + "fee": 0.23099056, + "status": "completed", + "orderId": null, + "exchangeOrderId": "169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-22T02:29:05" + }, + { + "id": "q7uv3ujtlwek7d64g6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-22T14:29:04", + "amountCrypto": 0.00010162, + "pricePerUnit": 647184, + "totalCost": 65.77, + "fee": 0.23098958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-22T14:29:04" + }, + { + "id": "gu0bu1phyjulyxz1yy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-23T02:29:05", + "amountCrypto": 0.00010188, + "pricePerUnit": 645556, + "totalCost": 65.77, + "fee": 0.23099803, + "status": "completed", + "orderId": null, + "exchangeOrderId": "171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-23T02:29:05" + }, + { + "id": "5qhdu9jzr25oklptt4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-23T14:29:04", + "amountCrypto": 0.00010156, + "pricePerUnit": 647539, + "totalCost": 65.76, + "fee": 0.23097982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-23T14:29:04" + }, + { + "id": "iqfjpoigyil0ux0cm3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-24T02:29:06", + "amountCrypto": 0.00010108, + "pricePerUnit": 650652, + "totalCost": 65.77, + "fee": 0.23099332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-24T02:29:06" + }, + { + "id": "hsmwb2999p0sqfcrso", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-24T14:29:04", + "amountCrypto": 0.00010343, + "pricePerUnit": 635861, + "totalCost": 65.77, + "fee": 0.23099051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-24T14:29:04" + }, + { + "id": "v5omwoc8op25fy3jpu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T02:29:03", + "amountCrypto": 0.00010324, + "pricePerUnit": 637000, + "totalCost": 65.76, + "fee": 0.23097919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T02:29:03" + }, + { + "id": "ptxiholnbzdeez34e0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T14:29:03", + "amountCrypto": 0.00010381, + "pricePerUnit": 633549, + "totalCost": 65.77, + "fee": 0.23099619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T14:29:03" + }, + { + "id": "uy620mq4qub98cy6b4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T02:29:04", + "amountCrypto": 0.00010333, + "pricePerUnit": 636500, + "totalCost": 65.77, + "fee": 0.23099908, + "status": "completed", + "orderId": null, + "exchangeOrderId": "177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T02:29:04" + }, + { + "id": "156aa7i4vxe0bil630", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T14:29:05", + "amountCrypto": 0.00010341, + "pricePerUnit": 635949, + "totalCost": 65.76, + "fee": 0.2309778, + "status": "completed", + "orderId": null, + "exchangeOrderId": "178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T14:29:05" + }, + { + "id": "42wl4ufrr6xoayekje", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T02:29:04", + "amountCrypto": 0.00010343, + "pricePerUnit": 635854, + "totalCost": 65.77, + "fee": 0.23098797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T02:29:04" + }, + { + "id": "z8cibu95a0yii7s0gg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T14:29:06", + "amountCrypto": 0.00010304, + "pricePerUnit": 638293, + "totalCost": 65.77, + "fee": 0.23099967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T14:29:06" + }, + { + "id": "vdr2o5j07jmv3akhkq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T02:29:04", + "amountCrypto": 0.00010257, + "pricePerUnit": 641218, + "totalCost": 65.77, + "fee": 0.23099974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T02:29:04" + }, + { + "id": "2fsdxwcv7p8w8v7m2z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T14:29:05", + "amountCrypto": 0.00010292, + "pricePerUnit": 638996, + "totalCost": 65.77, + "fee": 0.23098477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T14:29:05" + }, + { + "id": "xzcv7a0fgiu76edrs9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T02:29:06", + "amountCrypto": 0.00010294, + "pricePerUnit": 638873, + "totalCost": 65.77, + "fee": 0.23098518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T02:29:06" + }, + { + "id": "ucm3a2xl80efx8lc07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T14:29:04", + "amountCrypto": 0.00010305, + "pricePerUnit": 638175, + "totalCost": 65.76, + "fee": 0.23097938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T14:29:04" + }, + { + "id": "b4bf2x0xxxmgj30rnq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T02:29:04", + "amountCrypto": 0.00010275, + "pricePerUnit": 640052, + "totalCost": 65.77, + "fee": 0.23098433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T02:29:04" + }, + { + "id": "l3m4lqn8oyo31w42bq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T14:29:05", + "amountCrypto": 0.00010292, + "pricePerUnit": 638994, + "totalCost": 65.77, + "fee": 0.23098404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T14:29:05" + }, + { + "id": "sclxdwkun0riy7f406", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T02:29:04", + "amountCrypto": 0.0001029, + "pricePerUnit": 639136, + "totalCost": 65.77, + "fee": 0.23099048, + "status": "completed", + "orderId": null, + "exchangeOrderId": "187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T02:29:04" + }, + { + "id": "gi2zw0o4b0ezmrtvhn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T14:29:04", + "amountCrypto": 0.00010306, + "pricePerUnit": 638133, + "totalCost": 65.77, + "fee": 0.23098659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T14:29:04" + }, + { + "id": "5mq1ldinolp13ro6qn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-01T02:29:04", + "amountCrypto": 0.00010342, + "pricePerUnit": 635944, + "totalCost": 65.77, + "fee": 0.23099832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-01T02:29:04" + }, + { + "id": "eesh08iulqcag27ycu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-01T14:29:04", + "amountCrypto": 0.00010422, + "pricePerUnit": 631010, + "totalCost": 65.76, + "fee": 0.23097912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-01T14:29:04" + }, + { + "id": "0p6axeslm16ms0c8a3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T02:29:04", + "amountCrypto": 0.00010156, + "pricePerUnit": 647584, + "totalCost": 65.77, + "fee": 0.23099587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T02:29:04" + }, + { + "id": "fklwt2fjwsa3dypu91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T14:29:03", + "amountCrypto": 0.00010209, + "pricePerUnit": 644177, + "totalCost": 65.76, + "fee": 0.23097971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T14:29:03" + }, + { + "id": "xt29jjj6enaa9ddbxq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T02:29:04", + "amountCrypto": 0.00010287, + "pricePerUnit": 639296, + "totalCost": 65.76, + "fee": 0.23098094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T02:29:04" + }, + { + "id": "09yoc3dof7fe620tt0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T14:29:04", + "amountCrypto": 0.00010287, + "pricePerUnit": 639337, + "totalCost": 65.77, + "fee": 0.23099576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T14:29:04" + }, + { + "id": "eynsn8r8q5kuosfgoi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T02:29:05", + "amountCrypto": 0.0001022, + "pricePerUnit": 643500, + "totalCost": 65.77, + "fee": 0.23098558, + "status": "completed", + "orderId": null, + "exchangeOrderId": "195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T02:29:05" + }, + { + "id": "k2wa4hk5hhs5prfdlt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T14:29:04", + "amountCrypto": 0.00010209, + "pricePerUnit": 643881, + "totalCost": 65.73, + "fee": 0.23087359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T14:29:04" + }, + { + "id": "5ce50gbnra7ofiwdtc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T02:29:04", + "amountCrypto": 0.00010269, + "pricePerUnit": 640422, + "totalCost": 65.76, + "fee": 0.23098289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T02:29:04" + }, + { + "id": "f9kih5hbbkx7fwwgcg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T14:29:03", + "amountCrypto": 0.00010266, + "pricePerUnit": 640628, + "totalCost": 65.77, + "fee": 0.23098969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T14:29:03" + }, + { + "id": "bqbn2gurihoocpn0f8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T02:29:03", + "amountCrypto": 0.00010248, + "pricePerUnit": 641747, + "totalCost": 65.77, + "fee": 0.23098745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T02:29:03" + }, + { + "id": "uku2iusnr98e98scqt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T14:29:04", + "amountCrypto": 0.00010251, + "pricePerUnit": 641534, + "totalCost": 65.76, + "fee": 0.23097838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T14:29:04" + }, + { + "id": "7x18dkcwcqzvo8zald", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T02:29:03", + "amountCrypto": 0.00010253, + "pricePerUnit": 641439, + "totalCost": 65.77, + "fee": 0.23098923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T02:29:03" + }, + { + "id": "knmeq2r7umxm7bxl6o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T14:29:04", + "amountCrypto": 0.00010275, + "pricePerUnit": 640088, + "totalCost": 65.77, + "fee": 0.23099732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T14:29:04" + }, + { + "id": "9rkiksb5daufabtz7s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T02:29:04", + "amountCrypto": 0.00010222, + "pricePerUnit": 643407, + "totalCost": 65.77, + "fee": 0.23099739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T02:29:04" + }, + { + "id": "u34290w2b5tfbqggpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T14:29:04", + "amountCrypto": 0.00010094, + "pricePerUnit": 651572, + "totalCost": 65.77, + "fee": 0.23099955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T14:29:04" + }, + { + "id": "8ze8j7rkzs1efffkep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T02:29:03", + "amountCrypto": 0.00009981, + "pricePerUnit": 658908, + "totalCost": 65.77, + "fee": 0.23098525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T02:29:03" + }, + { + "id": "gl7nd704hybyn6l344", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T14:29:03", + "amountCrypto": 0.00009956, + "pricePerUnit": 660578, + "totalCost": 65.77, + "fee": 0.23099066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T14:29:03" + }, + { + "id": "cffy4pmohqaezw9u6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T02:29:03", + "amountCrypto": 0.00010041, + "pricePerUnit": 654964, + "totalCost": 65.76, + "fee": 0.23098289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T02:29:03" + }, + { + "id": "guxnmeesi21clt22m9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T14:29:05", + "amountCrypto": 0.00010124, + "pricePerUnit": 649628, + "totalCost": 65.77, + "fee": 0.23099485, + "status": "completed", + "orderId": null, + "exchangeOrderId": "208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T14:29:05" + }, + { + "id": "5zd086nzl7vrk8nr26", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T02:29:05", + "amountCrypto": 0.00010121, + "pricePerUnit": 649797, + "totalCost": 65.77, + "fee": 0.23098643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T02:29:05" + }, + { + "id": "rt5er785ipub95o5nn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T14:29:04", + "amountCrypto": 0.00010211, + "pricePerUnit": 644107, + "totalCost": 65.77, + "fee": 0.23099986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T14:29:04" + }, + { + "id": "sp4sp4gg75xw7pj33e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T02:29:04", + "amountCrypto": 0.00010164, + "pricePerUnit": 647061, + "totalCost": 65.77, + "fee": 0.23099113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T02:29:04" + }, + { + "id": "hnphavukxakvgd2okc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T14:29:05", + "amountCrypto": 0.00010155, + "pricePerUnit": 647626, + "totalCost": 65.77, + "fee": 0.23098811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T14:29:05" + }, + { + "id": "eja4sxfdjy4yi4ps21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T02:29:04", + "amountCrypto": 0.00010149, + "pricePerUnit": 648021, + "totalCost": 65.77, + "fee": 0.23099243, + "status": "completed", + "orderId": null, + "exchangeOrderId": "213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T02:29:04" + }, + { + "id": "4vtjrc4xz2jlvym1xu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T14:29:03", + "amountCrypto": 0.00010161, + "pricePerUnit": 647222, + "totalCost": 65.76, + "fee": 0.23098041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T14:29:03" + }, + { + "id": "bnwf66qem7u6k5hiha", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T02:29:04", + "amountCrypto": 0.00010186, + "pricePerUnit": 645641, + "totalCost": 65.76, + "fee": 0.23098309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T02:29:04" + }, + { + "id": "niqnl3hv8u4x437kyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T14:29:06", + "amountCrypto": 0.0001018, + "pricePerUnit": 646010, + "totalCost": 65.76, + "fee": 0.23097897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T14:29:06" + }, + { + "id": "dubio81ev3eso2pfnb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T02:29:06", + "amountCrypto": 0.00010121, + "pricePerUnit": 649794, + "totalCost": 65.77, + "fee": 0.23098541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T02:29:06" + }, + { + "id": "ja1ib0be9iqd1lv6sw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T14:29:05", + "amountCrypto": 0.00010109, + "pricePerUnit": 650558, + "totalCost": 65.76, + "fee": 0.2309828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T14:29:05" + }, + { + "id": "8w62j533r2wgksa0vt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T02:29:04", + "amountCrypto": 0.0001015, + "pricePerUnit": 647972, + "totalCost": 65.77, + "fee": 0.23099773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T02:29:04" + }, + { + "id": "ao6r3ahse0hmh9blge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T14:29:04", + "amountCrypto": 0.00010224, + "pricePerUnit": 643251, + "totalCost": 65.77, + "fee": 0.23098657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T14:29:04" + }, + { + "id": "a0aydoi1bcc8dqp1hj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T02:29:05", + "amountCrypto": 0.00010294, + "pricePerUnit": 638890, + "totalCost": 65.77, + "fee": 0.23099133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T02:29:05" + }, + { + "id": "8tmb6i3p50r4nkfkhb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T14:29:03", + "amountCrypto": 0.00010418, + "pricePerUnit": 631273, + "totalCost": 65.77, + "fee": 0.23098671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T14:29:03" + }, + { + "id": "ugpz38bgaa7v3ypzhx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T02:29:04", + "amountCrypto": 0.0001106, + "pricePerUnit": 594630, + "totalCost": 65.77, + "fee": 0.23098691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T02:29:04" + }, + { + "id": "5z46b3jitq41qzexz6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T14:29:04", + "amountCrypto": 0.00011206, + "pricePerUnit": 586876, + "totalCost": 65.77, + "fee": 0.23098426, + "status": "completed", + "orderId": null, + "exchangeOrderId": "224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T14:29:04" + }, + { + "id": "vkfp2o62f6f723bf5v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T02:29:04", + "amountCrypto": 0.00011387, + "pricePerUnit": 577548, + "totalCost": 65.77, + "fee": 0.23098449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T02:29:04" + }, + { + "id": "nkqs0bl3dab2otvbst", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T14:29:04", + "amountCrypto": 0.00011444, + "pricePerUnit": 574685, + "totalCost": 65.77, + "fee": 0.23098998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T14:29:04" + }, + { + "id": "pyvae9gcgdoboitpeh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T02:29:04", + "amountCrypto": 0.00011342, + "pricePerUnit": 579846, + "totalCost": 65.77, + "fee": 0.2309871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T02:29:04" + }, + { + "id": "hmv73tb3mgmxvpdcv3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T14:29:03", + "amountCrypto": 0.00011318, + "pricePerUnit": 581105, + "totalCost": 65.77, + "fee": 0.2309988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T14:29:03" + }, + { + "id": "drh5oc0n1m9af51f6c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T02:29:05", + "amountCrypto": 0.00011337, + "pricePerUnit": 580103, + "totalCost": 65.77, + "fee": 0.23098761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T02:29:05" + }, + { + "id": "rebkgj25uk8jr07kkl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T14:29:03", + "amountCrypto": 0.00011418, + "pricePerUnit": 576005, + "totalCost": 65.77, + "fee": 0.23099454, + "status": "completed", + "orderId": null, + "exchangeOrderId": "230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T14:29:03" + }, + { + "id": "6viej2pw6z2ccsp9t5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T02:29:05", + "amountCrypto": 0.00011387, + "pricePerUnit": 577556, + "totalCost": 65.77, + "fee": 0.23098769, + "status": "completed", + "orderId": null, + "exchangeOrderId": "231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T02:29:05" + }, + { + "id": "cz15trdsfh4bl7rff9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T14:29:04", + "amountCrypto": 0.00011399, + "pricePerUnit": 576967, + "totalCost": 65.77, + "fee": 0.2309953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T14:29:04" + }, + { + "id": "owt1llik825o74d1ow", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T02:29:06", + "amountCrypto": 0.0001133, + "pricePerUnit": 580483, + "totalCost": 65.77, + "fee": 0.2309962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T02:29:06" + }, + { + "id": "fq08qa9y3mbvd5gfho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T14:29:03", + "amountCrypto": 0.00011347, + "pricePerUnit": 579597, + "totalCost": 65.77, + "fee": 0.23098969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T14:29:03" + }, + { + "id": "czh71r697ntwg7ypur", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T02:29:04", + "amountCrypto": 0.00011185, + "pricePerUnit": 587998, + "totalCost": 65.77, + "fee": 0.23099217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T02:29:04" + }, + { + "id": "jn8qyexmd9ldzumwyb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T14:29:04", + "amountCrypto": 0.00011154, + "pricePerUnit": 589634, + "totalCost": 65.77, + "fee": 0.23099287, + "status": "completed", + "orderId": null, + "exchangeOrderId": "236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T14:29:04" + }, + { + "id": "978jveopqpnzyrd14l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T02:29:04", + "amountCrypto": 0.0001121, + "pricePerUnit": 586703, + "totalCost": 65.77, + "fee": 0.2309986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T02:29:04" + }, + { + "id": "7ri2jowr0quu3ze59r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T14:29:05", + "amountCrypto": 0.0001127, + "pricePerUnit": 583562, + "totalCost": 65.77, + "fee": 0.23099168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T14:29:05" + }, + { + "id": "a5emc34yei2rmu6wox", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T02:29:04", + "amountCrypto": 0.00011263, + "pricePerUnit": 583945, + "totalCost": 65.77, + "fee": 0.23099972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T02:29:04" + }, + { + "id": "8p40h0884p8p4pjwrt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T14:29:17", + "amountCrypto": 0.0001128, + "pricePerUnit": 583043, + "totalCost": 65.77, + "fee": 0.23099103, + "status": "completed", + "orderId": null, + "exchangeOrderId": "240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T14:29:17" + }, + { + "id": "jw8pnc1fs82ahcg7bl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T02:29:04", + "amountCrypto": 0.00011269, + "pricePerUnit": 583601, + "totalCost": 65.77, + "fee": 0.23098662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T02:29:04" + }, + { + "id": "coizvxsx8cl8q9pnmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T14:29:04", + "amountCrypto": 0.00011257, + "pricePerUnit": 584229, + "totalCost": 65.77, + "fee": 0.23098895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T14:29:04" + }, + { + "id": "6g36oeuryymgnpujks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T02:29:04", + "amountCrypto": 0.00011268, + "pricePerUnit": 583648, + "totalCost": 65.77, + "fee": 0.23098473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T02:29:04" + }, + { + "id": "mj3pift5806ilthspj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T14:29:03", + "amountCrypto": 0.00011219, + "pricePerUnit": 586189, + "totalCost": 65.76, + "fee": 0.23098152, + "status": "completed", + "orderId": null, + "exchangeOrderId": "244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T14:29:03" + }, + { + "id": "88zv28idoa9pc3btel", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T02:29:03", + "amountCrypto": 0.0001128, + "pricePerUnit": 583019, + "totalCost": 65.76, + "fee": 0.23098152, + "status": "completed", + "orderId": null, + "exchangeOrderId": "245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T02:29:03" + }, + { + "id": "184c8oppp5v65acz0l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T14:29:04", + "amountCrypto": 0.00011308, + "pricePerUnit": 581595, + "totalCost": 65.77, + "fee": 0.23098931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T14:29:04" + }, + { + "id": "rmtzih48mn9iv0lozz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T02:29:04", + "amountCrypto": 0.00010702, + "pricePerUnit": 614549, + "totalCost": 65.77, + "fee": 0.23099729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T02:29:04" + }, + { + "id": "kux6lqptazoemugj7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T14:29:04", + "amountCrypto": 0.00010835, + "pricePerUnit": 606966, + "totalCost": 65.76, + "fee": 0.2309823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T14:29:04" + }, + { + "id": "0zmu6yqgs1cqpfm4wr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T02:29:04", + "amountCrypto": 0.00010919, + "pricePerUnit": 602305, + "totalCost": 65.77, + "fee": 0.23098552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T02:29:04" + }, + { + "id": "u22w28sprl8te94uvc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T14:29:04", + "amountCrypto": 0.00010897, + "pricePerUnit": 603546, + "totalCost": 65.77, + "fee": 0.23099509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T14:29:04" + }, + { + "id": "bpc33m07ue14nddfa1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T02:29:04", + "amountCrypto": 0.00011356, + "pricePerUnit": 579126, + "totalCost": 65.77, + "fee": 0.23098505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T02:29:04" + }, + { + "id": "5fxo24kxenrfkjqlef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T14:29:04", + "amountCrypto": 0.00011307, + "pricePerUnit": 581631, + "totalCost": 65.77, + "fee": 0.23098318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T14:29:04" + }, + { + "id": "98ys2egu5z193d2zi9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T02:29:04", + "amountCrypto": 0.0001137, + "pricePerUnit": 578432, + "totalCost": 65.77, + "fee": 0.23099275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T02:29:04" + }, + { + "id": "rxtlptjpt4a2e2syel", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T14:29:04", + "amountCrypto": 0.00011362, + "pricePerUnit": 578831, + "totalCost": 65.77, + "fee": 0.23098937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T14:29:04" + }, + { + "id": "915ugsqc0iixbcxvuv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T02:29:03", + "amountCrypto": 0.00011342, + "pricePerUnit": 579845, + "totalCost": 65.77, + "fee": 0.2309867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T02:29:03" + }, + { + "id": "7e4mq008u9euih500w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T14:29:03", + "amountCrypto": 0.00011316, + "pricePerUnit": 581196, + "totalCost": 65.77, + "fee": 0.23099415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T14:29:03" + }, + { + "id": "65op027zgdokc9bvhd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T02:29:04", + "amountCrypto": 0.0001131, + "pricePerUnit": 581488, + "totalCost": 65.77, + "fee": 0.23098766, + "status": "completed", + "orderId": null, + "exchangeOrderId": "257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T02:29:04" + }, + { + "id": "2yzvunm2dbq7rtwmau", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T14:29:05", + "amountCrypto": 0.00011357, + "pricePerUnit": 579064, + "totalCost": 65.76, + "fee": 0.23098066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T14:29:05" + }, + { + "id": "1ll9f9l8y46se9w8hg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T02:29:05", + "amountCrypto": 0.00011372, + "pricePerUnit": 578304, + "totalCost": 65.76, + "fee": 0.23098218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T02:29:05" + }, + { + "id": "pnpn7zdk1klepagtji", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T14:29:03", + "amountCrypto": 0.00011327, + "pricePerUnit": 580636, + "totalCost": 65.77, + "fee": 0.2309959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T14:29:03" + }, + { + "id": "p21eo9ajtfkqikqqpx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T02:29:03", + "amountCrypto": 0.00011248, + "pricePerUnit": 584680, + "totalCost": 65.76, + "fee": 0.23098244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T02:29:03" + }, + { + "id": "qz4ia26587lgvez1ej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T14:29:04", + "amountCrypto": 0.00011245, + "pricePerUnit": 584830, + "totalCost": 65.76, + "fee": 0.23098008, + "status": "completed", + "orderId": null, + "exchangeOrderId": "262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T14:29:04" + }, + { + "id": "j8uejzm6cscw6qj9z9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T02:29:04", + "amountCrypto": 0.00011204, + "pricePerUnit": 587019, + "totalCost": 65.77, + "fee": 0.23099931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T02:29:04" + }, + { + "id": "cy6esn3k2kizx55ioh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T14:29:04", + "amountCrypto": 0.00011141, + "pricePerUnit": 590321, + "totalCost": 65.77, + "fee": 0.23099247, + "status": "completed", + "orderId": null, + "exchangeOrderId": "264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T14:29:04" + }, + { + "id": "bf5l7i8zsgtbunxrrk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T02:29:03", + "amountCrypto": 0.00010962, + "pricePerUnit": 599942, + "totalCost": 65.77, + "fee": 0.23098538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T02:29:03" + }, + { + "id": "xzzqsjwfnjjfl7ernx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T14:29:06", + "amountCrypto": 0.00011059, + "pricePerUnit": 594711, + "totalCost": 65.77, + "fee": 0.23099748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T14:29:06" + }, + { + "id": "bwgnnuw5e798etcjzm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T02:29:05", + "amountCrypto": 0.00011059, + "pricePerUnit": 594710, + "totalCost": 65.77, + "fee": 0.2309971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T02:29:05" + }, + { + "id": "oqcwar6f98r9eh4zzg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T14:29:03", + "amountCrypto": 0.00011047, + "pricePerUnit": 595342, + "totalCost": 65.77, + "fee": 0.23099166, + "status": "completed", + "orderId": null, + "exchangeOrderId": "268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T14:29:03" + }, + { + "id": "dt5ozrlfc7cxope2vh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T02:29:03", + "amountCrypto": 0.00011072, + "pricePerUnit": 594007, + "totalCost": 65.77, + "fee": 0.23099526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T02:29:03" + }, + { + "id": "93z938iz6dv3nimy77", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T14:29:05", + "amountCrypto": 0.00011059, + "pricePerUnit": 594677, + "totalCost": 65.77, + "fee": 0.23098428, + "status": "completed", + "orderId": null, + "exchangeOrderId": "270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T14:29:05" + }, + { + "id": "jx94e5qugbaczomcc3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T02:29:04", + "amountCrypto": 0.00011149, + "pricePerUnit": 589885, + "totalCost": 65.77, + "fee": 0.23098761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T02:29:04" + }, + { + "id": "0jifioxeahrytt5d2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T14:29:04", + "amountCrypto": 0.00011158, + "pricePerUnit": 589432, + "totalCost": 65.77, + "fee": 0.23099655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T14:29:04" + }, + { + "id": "kjtdrey5lq7sol2p28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T02:29:03", + "amountCrypto": 0.00011419, + "pricePerUnit": 575937, + "totalCost": 65.77, + "fee": 0.2309875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T02:29:03" + }, + { + "id": "xxg26ohkwzkcgegnqz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T14:29:03", + "amountCrypto": 0.0001094, + "pricePerUnit": 601145, + "totalCost": 65.77, + "fee": 0.23098404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T14:29:03" + }, + { + "id": "s54cih3pr5vdkrr7fw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T02:29:03", + "amountCrypto": 0.00011091, + "pricePerUnit": 592991, + "totalCost": 65.77, + "fee": 0.23099588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T02:29:03" + }, + { + "id": "pjrmpp63k203czsuyl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T14:29:04", + "amountCrypto": 0.00010981, + "pricePerUnit": 598941, + "totalCost": 65.77, + "fee": 0.23099967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T14:29:04" + }, + { + "id": "mtu7yx4i3ccis38h97", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T02:29:03", + "amountCrypto": 0.00010993, + "pricePerUnit": 598283, + "totalCost": 65.77, + "fee": 0.23099805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T02:29:03" + }, + { + "id": "4ttswguzrzg4qu8i9q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T14:29:03", + "amountCrypto": 0.00010859, + "pricePerUnit": 605647, + "totalCost": 65.77, + "fee": 0.23099088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T14:29:03" + }, + { + "id": "iu54zty5s2ezb7s9ld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T02:29:03", + "amountCrypto": 0.00010715, + "pricePerUnit": 613770, + "totalCost": 65.77, + "fee": 0.23098472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T02:29:03" + }, + { + "id": "u5xu5tz3lbnawml0lu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T14:29:04", + "amountCrypto": 0.00010747, + "pricePerUnit": 611981, + "totalCost": 65.77, + "fee": 0.23099927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T14:29:04" + }, + { + "id": "urm610bkszp7a07mdl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T02:29:05", + "amountCrypto": 0.00010622, + "pricePerUnit": 619176, + "totalCost": 65.77, + "fee": 0.23099673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T02:29:05" + }, + { + "id": "fvpvse1uk3vj4wd1iq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T14:29:03", + "amountCrypto": 0.00010733, + "pricePerUnit": 612748, + "totalCost": 65.77, + "fee": 0.23098749, + "status": "completed", + "orderId": null, + "exchangeOrderId": "282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T14:29:03" + }, + { + "id": "ldu7oxnnh28guqnnjz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T02:29:03", + "amountCrypto": 0.0001074, + "pricePerUnit": 612359, + "totalCost": 65.77, + "fee": 0.2309914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T02:29:03" + }, + { + "id": "tg12uq4jpmvd5ljgqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T14:29:04", + "amountCrypto": 0.00010715, + "pricePerUnit": 613807, + "totalCost": 65.77, + "fee": 0.23099865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T14:29:04" + }, + { + "id": "r86rrcdoupwibp4lz3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T02:29:03", + "amountCrypto": 0.00010749, + "pricePerUnit": 611814, + "totalCost": 65.76, + "fee": 0.23097921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T02:29:03" + }, + { + "id": "bn9b0tydr2n6rbrls2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T14:29:03", + "amountCrypto": 0.0001054, + "pricePerUnit": 624000, + "totalCost": 65.77, + "fee": 0.23099928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T14:29:03" + }, + { + "id": "lrod5d232ruwcnv9gb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T02:29:04", + "amountCrypto": 0.00010776, + "pricePerUnit": 610285, + "totalCost": 65.76, + "fee": 0.2309807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T02:29:04" + }, + { + "id": "xjii9k1mxw8rexgpvb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T14:29:03", + "amountCrypto": 0.00010557, + "pricePerUnit": 622948, + "totalCost": 65.76, + "fee": 0.23098179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T14:29:03" + }, + { + "id": "y6q4qahwdc9cr4dcqt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T02:29:04", + "amountCrypto": 0.00010539, + "pricePerUnit": 624007, + "totalCost": 65.76, + "fee": 0.23097995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T02:29:04" + }, + { + "id": "04thq05j2ryn2frbj0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T14:29:04", + "amountCrypto": 0.00010621, + "pricePerUnit": 619205, + "totalCost": 65.77, + "fee": 0.23098582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T14:29:04" + }, + { + "id": "yrj58oj9ofnejyc3wq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T02:29:04", + "amountCrypto": 0.0001057, + "pricePerUnit": 622195, + "totalCost": 65.77, + "fee": 0.23098667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T02:29:04" + }, + { + "id": "9c4e5wv9jhqveutsw5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T14:29:03", + "amountCrypto": 0.00010699, + "pricePerUnit": 614696, + "totalCost": 65.77, + "fee": 0.23098778, + "status": "completed", + "orderId": null, + "exchangeOrderId": "292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T14:29:03" + }, + { + "id": "89os3i1ncgshsxj9fz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T02:29:04", + "amountCrypto": 0.00010796, + "pricePerUnit": 609149, + "totalCost": 65.76, + "fee": 0.23097865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T02:29:04" + }, + { + "id": "jw0bf1u0nmnev8tdjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T14:29:03", + "amountCrypto": 0.00010752, + "pricePerUnit": 611674, + "totalCost": 65.77, + "fee": 0.23099081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T14:29:03" + }, + { + "id": "bu4fjf9k5yfcrhhso3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T02:29:03", + "amountCrypto": 0.00010743, + "pricePerUnit": 612173, + "totalCost": 65.77, + "fee": 0.23098574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T02:29:03" + }, + { + "id": "sbbloty7zkd6yimi62", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T14:29:04", + "amountCrypto": 0.00010749, + "pricePerUnit": 611828, + "totalCost": 65.77, + "fee": 0.2309845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T14:29:04" + }, + { + "id": "r5xsk4khpw3t9wadgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T02:29:07", + "amountCrypto": 0.00010744, + "pricePerUnit": 612105, + "totalCost": 65.76, + "fee": 0.23098158, + "status": "completed", + "orderId": null, + "exchangeOrderId": "297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T02:29:07" + }, + { + "id": "40xlk2i4pm30boh2mm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T14:29:05", + "amountCrypto": 0.00010732, + "pricePerUnit": 612803, + "totalCost": 65.77, + "fee": 0.2309867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T14:29:05" + }, + { + "id": "nayk9axj9wtqagneex", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T02:29:03", + "amountCrypto": 0.00010919, + "pricePerUnit": 602330, + "totalCost": 65.77, + "fee": 0.23099511, + "status": "completed", + "orderId": null, + "exchangeOrderId": "299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T02:29:03" + }, + { + "id": "oyvxouhckcaa7w9kvm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T14:29:04", + "amountCrypto": 0.00010977, + "pricePerUnit": 599110, + "totalCost": 65.76, + "fee": 0.23098068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T14:29:04" + }, + { + "id": "o1r3loknos8ul2mtbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T02:29:04", + "amountCrypto": 0.00010795, + "pricePerUnit": 609225, + "totalCost": 65.77, + "fee": 0.23098607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T02:29:04" + }, + { + "id": "hpgagxukn7v4ypjm3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T14:29:03", + "amountCrypto": 0.00010883, + "pricePerUnit": 604328, + "totalCost": 65.77, + "fee": 0.23099723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T14:29:03" + }, + { + "id": "q63u67duswa1fe7ocl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T02:29:05", + "amountCrypto": 0.00010842, + "pricePerUnit": 606575, + "totalCost": 65.76, + "fee": 0.23098263, + "status": "completed", + "orderId": null, + "exchangeOrderId": "303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T02:29:05" + }, + { + "id": "r0v4trwvpjr805c1vk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T14:29:04", + "amountCrypto": 0.00010579, + "pricePerUnit": 621687, + "totalCost": 65.77, + "fee": 0.2309946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T14:29:04" + }, + { + "id": "vcc01wazbmiqw5bxhj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T02:29:03", + "amountCrypto": 0.000107, + "pricePerUnit": 614670, + "totalCost": 65.77, + "fee": 0.23099959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T02:29:03" + }, + { + "id": "mc4vi9of3vbh4e8vnr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T14:29:03", + "amountCrypto": 0.00010662, + "pricePerUnit": 616856, + "totalCost": 65.77, + "fee": 0.23099783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T14:29:03" + }, + { + "id": "qlzmg0g501g3su7e5s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T02:29:03", + "amountCrypto": 0.00010535, + "pricePerUnit": 624282, + "totalCost": 65.77, + "fee": 0.23099404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T02:29:03" + }, + { + "id": "buc6mlfikz6ubz7ssj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T14:29:05", + "amountCrypto": 0.00010629, + "pricePerUnit": 618752, + "totalCost": 65.77, + "fee": 0.23099067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T14:29:05" + }, + { + "id": "6sjanpvoxfyr2izgdq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T02:29:04", + "amountCrypto": 0.00010579, + "pricePerUnit": 621687, + "totalCost": 65.77, + "fee": 0.2309946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T02:29:04" + }, + { + "id": "rdlmopq7a5bhbay0fp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T14:29:03", + "amountCrypto": 0.00010547, + "pricePerUnit": 623532, + "totalCost": 65.76, + "fee": 0.23097933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T14:29:03" + }, + { + "id": "hs76nuimodf85kfg3e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-01T02:29:04", + "amountCrypto": 0.00010543, + "pricePerUnit": 623766, + "totalCost": 65.76, + "fee": 0.23097838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-01T02:29:04" + }, + { + "id": "vwpcwtekwq9qsljy4b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-01T14:29:03", + "amountCrypto": 0.00010463, + "pricePerUnit": 628592, + "totalCost": 65.77, + "fee": 0.23099921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "312", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-01T14:29:03" + }, + { + "id": "cpvwshla2r7540b465", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-02T02:29:04", + "amountCrypto": 0.00010178, + "pricePerUnit": 646137, + "totalCost": 65.76, + "fee": 0.23097899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "313", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-02T02:29:04" + }, + { + "id": "1xjf7aym3rm5merqax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-02T14:29:04", + "amountCrypto": 0.00010056, + "pricePerUnit": 654000, + "totalCost": 65.77, + "fee": 0.23098748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-02T14:29:04" + }, + { + "id": "kbe9bk6gudkct4vtun", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-03T02:29:03", + "amountCrypto": 0.00010296, + "pricePerUnit": 638737, + "totalCost": 65.76, + "fee": 0.23098088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-03T02:29:03" + }, + { + "id": "fl4lr3ep004gt4aoqm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-03T14:29:04", + "amountCrypto": 0.00010251, + "pricePerUnit": 641576, + "totalCost": 65.77, + "fee": 0.2309935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-03T14:29:04" + }, + { + "id": "svlxs27az4ilrr6y3w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-04T02:29:03", + "amountCrypto": 0.00010289, + "pricePerUnit": 639174, + "totalCost": 65.76, + "fee": 0.23098176, + "status": "completed", + "orderId": null, + "exchangeOrderId": "317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-04T02:29:03" + }, + { + "id": "7h7r6v1e0dsufkwqjz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-04T14:29:05", + "amountCrypto": 0.00010244, + "pricePerUnit": 642000, + "totalCost": 65.77, + "fee": 0.23098832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-04T14:29:05" + }, + { + "id": "aidyma8grhzj48t9ez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-05T02:29:04", + "amountCrypto": 0.00010206, + "pricePerUnit": 644372, + "totalCost": 65.76, + "fee": 0.23098174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-05T02:29:04" + }, + { + "id": "wb0ix216gjyu5q1trz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-05T14:29:03", + "amountCrypto": 0.00010231, + "pricePerUnit": 642803, + "totalCost": 65.77, + "fee": 0.23098374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-05T14:29:03" + }, + { + "id": "74c7j5e4j75rg645z6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-06T02:29:03", + "amountCrypto": 0.00010351, + "pricePerUnit": 635341, + "totalCost": 65.76, + "fee": 0.23098012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-06T02:29:03" + }, + { + "id": "w1bcxjw8ycy656pevc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-06T14:29:03", + "amountCrypto": 0.00010273, + "pricePerUnit": 640198, + "totalCost": 65.77, + "fee": 0.23099204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-06T14:29:03" + }, + { + "id": "qt2y7efq73cbbmibgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-07T02:29:04", + "amountCrypto": 0.00010209, + "pricePerUnit": 644215, + "totalCost": 65.77, + "fee": 0.23099334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-07T02:29:04" + }, + { + "id": "ngiz49fsvvsw2grwl8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-07T14:29:04", + "amountCrypto": 0.0001019, + "pricePerUnit": 645429, + "totalCost": 65.77, + "fee": 0.23099793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-07T14:29:04" + }, + { + "id": "lplt2lpmb26f6i43zz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-08T02:29:03", + "amountCrypto": 0.00010192, + "pricePerUnit": 645282, + "totalCost": 65.77, + "fee": 0.23099064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-08T02:29:03" + }, + { + "id": "e65fnpvfzgkpu97d1v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-08T14:29:03", + "amountCrypto": 0.00010245, + "pricePerUnit": 641915, + "totalCost": 65.76, + "fee": 0.23098028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-08T14:29:03" + }, + { + "id": "uv9unlg0yine03xug9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-09T02:29:03", + "amountCrypto": 0.00010226, + "pricePerUnit": 643160, + "totalCost": 65.77, + "fee": 0.23099907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-09T02:29:03" + }, + { + "id": "3vqpj0wrs26hbgswmn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-09T14:29:04", + "amountCrypto": 0.00010324, + "pricePerUnit": 637030, + "totalCost": 65.77, + "fee": 0.23099007, + "status": "completed", + "orderId": null, + "exchangeOrderId": "328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-09T14:29:04" + }, + { + "id": "vlpvdyx0mhpxwwe0zt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-10T02:29:03", + "amountCrypto": 0.0001033, + "pricePerUnit": 636649, + "totalCost": 65.77, + "fee": 0.23098608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-10T02:29:03" + }, + { + "id": "6dn8lqhbkmrb157irb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-10T14:29:03", + "amountCrypto": 0.00010333, + "pricePerUnit": 636495, + "totalCost": 65.77, + "fee": 0.23099727, + "status": "completed", + "orderId": null, + "exchangeOrderId": "330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-10T14:29:03" + }, + { + "id": "wu8qe5wotgtyx0zl2x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-11T02:29:04", + "amountCrypto": 0.00010391, + "pricePerUnit": 632893, + "totalCost": 65.76, + "fee": 0.2309793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-11T02:29:04" + }, + { + "id": "z0iefpf71gxesc1ozo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-11T14:29:03", + "amountCrypto": 0.00010461, + "pricePerUnit": 628666, + "totalCost": 65.76, + "fee": 0.23098224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-11T14:29:03" + }, + { + "id": "f4h9ztk1rbyeshym6x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-12T02:29:03", + "amountCrypto": 0.00010611, + "pricePerUnit": 619806, + "totalCost": 65.77, + "fee": 0.2309923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-12T02:29:03" + }, + { + "id": "lp97n3o0g2vdti4fie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-12T14:29:03", + "amountCrypto": 0.00010601, + "pricePerUnit": 620375, + "totalCost": 65.77, + "fee": 0.23098647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-12T14:29:03" + }, + { + "id": "y3gyw6xd5xv5rd5lm0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T02:29:04", + "amountCrypto": 0.00010503, + "pricePerUnit": 626148, + "totalCost": 65.76, + "fee": 0.23098075, + "status": "completed", + "orderId": null, + "exchangeOrderId": "335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T02:29:04" + }, + { + "id": "5rbmx3c73bfapltuhz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T14:29:03", + "amountCrypto": 0.0001047, + "pricePerUnit": 628167, + "totalCost": 65.77, + "fee": 0.23099747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T14:29:03" + }, + { + "id": "1lsn298pqra4qv108x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T02:29:03", + "amountCrypto": 0.0001043, + "pricePerUnit": 630538, + "totalCost": 65.77, + "fee": 0.23098352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T02:29:03" + }, + { + "id": "otopjq54xpsc6iwu5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T14:29:04", + "amountCrypto": 0.00010441, + "pricePerUnit": 629918, + "totalCost": 65.77, + "fee": 0.23099976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T14:29:04" + }, + { + "id": "o8houn7juw70ni9mye", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T02:29:03", + "amountCrypto": 0.00010445, + "pricePerUnit": 629632, + "totalCost": 65.77, + "fee": 0.23098334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T02:29:03" + }, + { + "id": "wkcmrgz527yjtezh7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T14:29:03", + "amountCrypto": 0.00010445, + "pricePerUnit": 629655, + "totalCost": 65.77, + "fee": 0.23099178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T14:29:03" + }, + { + "id": "yble1bpg8o0m61wij0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T02:29:03", + "amountCrypto": 0.00010316, + "pricePerUnit": 637494, + "totalCost": 65.76, + "fee": 0.23097919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T02:29:03" + }, + { + "id": "8l18xr3mzagw6euvb7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T14:29:04", + "amountCrypto": 0.00010135, + "pricePerUnit": 648900, + "totalCost": 65.77, + "fee": 0.23098669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T14:29:04" + }, + { + "id": "qy2umtt5y0rdyxwcyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T02:29:04", + "amountCrypto": 0.00009949, + "pricePerUnit": 661052, + "totalCost": 65.77, + "fee": 0.23099388, + "status": "completed", + "orderId": null, + "exchangeOrderId": "343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T02:29:04" + }, + { + "id": "jdx76kxc44xhejuzum", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T14:29:03", + "amountCrypto": 0.00009952, + "pricePerUnit": 660849, + "totalCost": 65.77, + "fee": 0.23099258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T14:29:03" + }, + { + "id": "g0p25hw6beehsxs11m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T02:29:03", + "amountCrypto": 0.00009947, + "pricePerUnit": 661175, + "totalCost": 65.77, + "fee": 0.23099042, + "status": "completed", + "orderId": null, + "exchangeOrderId": "345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T02:29:03" + }, + { + "id": "cyldff8afk5uhiki6j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T14:29:04", + "amountCrypto": 0.00009951, + "pricePerUnit": 660928, + "totalCost": 65.77, + "fee": 0.23099698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T14:29:04" + }, + { + "id": "w8lsscvs7roixvgpe5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T02:29:04", + "amountCrypto": 0.00009939, + "pricePerUnit": 661696, + "totalCost": 65.77, + "fee": 0.23098651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T02:29:04" + }, + { + "id": "mhqyfnzxblkvqz8jrq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T14:29:03", + "amountCrypto": 0.00009911, + "pricePerUnit": 663546, + "totalCost": 65.76, + "fee": 0.23097976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T14:29:03" + }, + { + "id": "y763b3t6omqwqvrg68", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T02:29:03", + "amountCrypto": 0.00009847, + "pricePerUnit": 667905, + "totalCost": 65.77, + "fee": 0.23099578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T02:29:03" + }, + { + "id": "f5i9o04fy643clu32a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T14:29:03", + "amountCrypto": 0.00009523, + "pricePerUnit": 690609, + "totalCost": 65.77, + "fee": 0.23098907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T14:29:03" + }, + { + "id": "q00kbl2grq4opld9tz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T02:29:03", + "amountCrypto": 0.00009549, + "pricePerUnit": 688712, + "totalCost": 65.77, + "fee": 0.2309835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T02:29:03" + }, + { + "id": "3jcd5qqrvdzjkjvtrj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T14:29:03", + "amountCrypto": 0.00009519, + "pricePerUnit": 690924, + "totalCost": 65.77, + "fee": 0.23099737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T14:29:03" + }, + { + "id": "vcmcuv1p7vhidz9xfa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T02:29:03", + "amountCrypto": 0.00009463, + "pricePerUnit": 694995, + "totalCost": 65.77, + "fee": 0.23099147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T02:29:03" + }, + { + "id": "heoi3wo7bztae8mlym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T14:29:03", + "amountCrypto": 0.00009462, + "pricePerUnit": 695079, + "totalCost": 65.77, + "fee": 0.23099498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T14:29:03" + }, + { + "id": "x4oagltpij6w2bccxv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T02:29:03", + "amountCrypto": 0.00009473, + "pricePerUnit": 694266, + "totalCost": 65.77, + "fee": 0.23099302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T02:29:03" + }, + { + "id": "f3zlg4z8drl9teltqt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T14:29:04", + "amountCrypto": 0.0000926, + "pricePerUnit": 710214, + "totalCost": 65.77, + "fee": 0.23098599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T14:29:04" + }, + { + "id": "mjfte7qupw2sman5ff", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T02:29:03", + "amountCrypto": 0.00008697, + "pricePerUnit": 756180, + "totalCost": 65.76, + "fee": 0.23098303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T02:29:03" + }, + { + "id": "2fxo68yzpn4fnbkbd6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T14:29:04", + "amountCrypto": 0.000082, + "pricePerUnit": 802024, + "totalCost": 65.77, + "fee": 0.23098652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T14:29:04" + }, + { + "id": "2b39x3za4mg1nvmylz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T02:29:05", + "amountCrypto": 0.00008357, + "pricePerUnit": 786993, + "totalCost": 65.77, + "fee": 0.23099719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T02:29:05" + }, + { + "id": "rb9qx0fo7b2vv1myb7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T14:29:07", + "amountCrypto": 0.00008177, + "pricePerUnit": 804325, + "totalCost": 65.77, + "fee": 0.23099947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T14:29:07" + }, + { + "id": "7o33sbbk6hrmbk9quj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T02:29:04", + "amountCrypto": 0.00008137, + "pricePerUnit": 808263, + "totalCost": 65.77, + "fee": 0.23099492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T02:29:04" + }, + { + "id": "758yicu1k5us8jc2gz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T14:29:03", + "amountCrypto": 0.0000816, + "pricePerUnit": 805999, + "totalCost": 65.77, + "fee": 0.23099899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T14:29:03" + }, + { + "id": "6tigy768h9o7tvdvkt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T02:29:04", + "amountCrypto": 0.00008244, + "pricePerUnit": 797762, + "totalCost": 65.77, + "fee": 0.2309919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T02:29:04" + }, + { + "id": "py9wekvy31qgq6lo4d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T14:29:04", + "amountCrypto": 0.00008249, + "pricePerUnit": 797263, + "totalCost": 65.77, + "fee": 0.23098742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T14:29:04" + }, + { + "id": "sf7x5l4jabc5wjj2im", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T02:29:05", + "amountCrypto": 0.00008307, + "pricePerUnit": 791733, + "totalCost": 65.77, + "fee": 0.23099808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T02:29:05" + }, + { + "id": "mkz3wllsg5ktsj4i1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T14:29:04", + "amountCrypto": 0.00008221, + "pricePerUnit": 799953, + "totalCost": 65.76, + "fee": 0.23098009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T14:29:04" + }, + { + "id": "3blyadbk03vtnfstpx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T02:29:04", + "amountCrypto": 0.00008276, + "pricePerUnit": 794653, + "totalCost": 65.77, + "fee": 0.23098482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T02:29:04" + }, + { + "id": "szaqfracg1himgfw6w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T13:29:04", + "amountCrypto": 0.00008217, + "pricePerUnit": 800389, + "totalCost": 65.77, + "fee": 0.23099353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T13:29:04" + }, + { + "id": "ct8w21qe8i6oo74se7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T01:29:04", + "amountCrypto": 0.00008149, + "pricePerUnit": 807000, + "totalCost": 65.76, + "fee": 0.23097409, + "status": "completed", + "orderId": null, + "exchangeOrderId": "369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T01:29:04" + }, + { + "id": "rtr4r0hyrf4ohrkf1u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T13:29:05", + "amountCrypto": 0.00008139, + "pricePerUnit": 808058, + "totalCost": 65.77, + "fee": 0.2309931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T13:29:05" + }, + { + "id": "8dj2i995kwa6p8otx6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T01:29:03", + "amountCrypto": 0.0000822, + "pricePerUnit": 800058, + "totalCost": 65.76, + "fee": 0.2309823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T01:29:03" + }, + { + "id": "7rbvpum6j5zjmvrgfz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T13:29:05", + "amountCrypto": 0.00008281, + "pricePerUnit": 794213, + "totalCost": 65.77, + "fee": 0.23099639, + "status": "completed", + "orderId": null, + "exchangeOrderId": "372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T13:29:05" + }, + { + "id": "hlyfa15xbeqfxmfjl7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T01:29:04", + "amountCrypto": 0.00008184, + "pricePerUnit": 803586, + "totalCost": 65.77, + "fee": 0.2309848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T01:29:04" + }, + { + "id": "z5l3eyacmsi2nppitg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T13:29:03", + "amountCrypto": 0.00008162, + "pricePerUnit": 805747, + "totalCost": 65.77, + "fee": 0.23098337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T13:29:03" + }, + { + "id": "trth31vewvjaru6tvz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T01:29:04", + "amountCrypto": 0.00007936, + "pricePerUnit": 828725, + "totalCost": 65.77, + "fee": 0.23099231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T01:29:04" + }, + { + "id": "txbdi1r29cvp537eai", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T13:29:06", + "amountCrypto": 0.0000803, + "pricePerUnit": 818994, + "totalCost": 65.77, + "fee": 0.23098389, + "status": "completed", + "orderId": null, + "exchangeOrderId": "376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T13:29:06" + }, + { + "id": "smx10sb41tfs8nawb5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T01:29:03", + "amountCrypto": 0.00008187, + "pricePerUnit": 803281, + "totalCost": 65.76, + "fee": 0.23098177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T01:29:03" + }, + { + "id": "giswx7jvhw3oeuyai6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T13:29:04", + "amountCrypto": 0.00008343, + "pricePerUnit": 788288, + "totalCost": 65.77, + "fee": 0.23098968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T13:29:04" + }, + { + "id": "yaqn8impey6w6kpdjs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T01:29:03", + "amountCrypto": 0.00008315, + "pricePerUnit": 790963, + "totalCost": 65.77, + "fee": 0.23099567, + "status": "completed", + "orderId": null, + "exchangeOrderId": "379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T01:29:03" + }, + { + "id": "i7d7vsby88xiexo4z5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T13:29:04", + "amountCrypto": 0.000083, + "pricePerUnit": 792358, + "totalCost": 65.77, + "fee": 0.23098563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T13:29:04" + }, + { + "id": "jdnwrhix9zxp9we7ub", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T01:29:06", + "amountCrypto": 0.00008235, + "pricePerUnit": 798619, + "totalCost": 65.77, + "fee": 0.2309876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T01:29:06" + }, + { + "id": "qod5bigb7wg2fycqac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T13:29:04", + "amountCrypto": 0.00008202, + "pricePerUnit": 801822, + "totalCost": 65.77, + "fee": 0.23098467, + "status": "completed", + "orderId": null, + "exchangeOrderId": "382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T13:29:04" + }, + { + "id": "fu9p910mlfkslqhn7u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T01:29:05", + "amountCrypto": 0.00008221, + "pricePerUnit": 799989, + "totalCost": 65.77, + "fee": 0.23099048, + "status": "completed", + "orderId": null, + "exchangeOrderId": "383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T01:29:05" + }, + { + "id": "y9yrr3islv5gtabjha", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T13:29:04", + "amountCrypto": 0.0000821, + "pricePerUnit": 801060, + "totalCost": 65.77, + "fee": 0.23099024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T13:29:04" + }, + { + "id": "qupqhl2ku4ycpfd84k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T01:29:05", + "amountCrypto": 0.00008195, + "pricePerUnit": 802504, + "totalCost": 65.77, + "fee": 0.23098383, + "status": "completed", + "orderId": null, + "exchangeOrderId": "385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T01:29:05" + }, + { + "id": "1xgm61p0aczbrf0n43", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T13:29:04", + "amountCrypto": 0.00008208, + "pricePerUnit": 801225, + "totalCost": 65.76, + "fee": 0.23098153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T13:29:04" + }, + { + "id": "zt2tow3huhfcx30rtp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T01:29:04", + "amountCrypto": 0.00008081, + "pricePerUnit": 813873, + "totalCost": 65.77, + "fee": 0.23099744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T01:29:04" + }, + { + "id": "dsfmmwmmgm5w6t52th", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T13:29:05", + "amountCrypto": 0.00008042, + "pricePerUnit": 817801, + "totalCost": 65.77, + "fee": 0.2309921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T13:29:05" + }, + { + "id": "2o9jiauujppf1ob7i1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T01:29:05", + "amountCrypto": 0.00007999, + "pricePerUnit": 822132, + "totalCost": 65.76, + "fee": 0.23097377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T01:29:05" + }, + { + "id": "nhvzcyd7zkaz4g1re7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T13:29:03", + "amountCrypto": 0.00007747, + "pricePerUnit": 848910, + "totalCost": 65.77, + "fee": 0.23098332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T13:29:03" + }, + { + "id": "spuyywlejokie3lgj5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T01:29:03", + "amountCrypto": 0.00007788, + "pricePerUnit": 844399, + "totalCost": 65.76, + "fee": 0.23097186, + "status": "completed", + "orderId": null, + "exchangeOrderId": "391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T01:29:03" + }, + { + "id": "05y2s21nljuq84w7jf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T13:29:04", + "amountCrypto": 0.00007733, + "pricePerUnit": 850403, + "totalCost": 65.76, + "fee": 0.2309714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T13:29:04" + }, + { + "id": "okm9x97pe67302206b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T01:29:03", + "amountCrypto": 0.00007629, + "pricePerUnit": 861999, + "totalCost": 65.76, + "fee": 0.23097225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T01:29:03" + }, + { + "id": "hwg3vvci25sl5ramii", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T13:29:05", + "amountCrypto": 0.00007706, + "pricePerUnit": 853385, + "totalCost": 65.76, + "fee": 0.23097205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T13:29:05" + }, + { + "id": "75c03tfhwc8dce0bka", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-12T01:29:03", + "amountCrypto": 0.00007712, + "pricePerUnit": 852728, + "totalCost": 65.76, + "fee": 0.23097393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-12T01:29:03" + }, + { + "id": "2njjjpg7vk9ioex6fz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-12T13:29:03", + "amountCrypto": 0.00007702, + "pricePerUnit": 853867, + "totalCost": 65.76, + "fee": 0.23098255, + "status": "completed", + "orderId": null, + "exchangeOrderId": "396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-12T13:29:03" + }, + { + "id": "u9chg7okre21d93lql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-13T01:29:03", + "amountCrypto": 0.00007703, + "pricePerUnit": 853811, + "totalCost": 65.77, + "fee": 0.23099739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-13T01:29:03" + }, + { + "id": "mxstnrcbsz7jz8v84d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-13T13:29:03", + "amountCrypto": 0.00007708, + "pricePerUnit": 853201, + "totalCost": 65.76, + "fee": 0.23098218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-13T13:29:03" + }, + { + "id": "r9qtiy19brx7kt3ca6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T01:29:05", + "amountCrypto": 0.00007751, + "pricePerUnit": 848473, + "totalCost": 65.77, + "fee": 0.23098362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T01:29:05" + }, + { + "id": "gac6sgl1rx55l6mfmh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T13:29:05", + "amountCrypto": 0.0000778, + "pricePerUnit": 845323, + "totalCost": 65.77, + "fee": 0.23098709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T13:29:05" + }, + { + "id": "icno6kn0z55m5tgrtt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T01:29:04", + "amountCrypto": 0.00008074, + "pricePerUnit": 814496, + "totalCost": 65.76, + "fee": 0.23097401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T01:29:04" + }, + { + "id": "5abs9gupw9zk6lycfy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T13:29:05", + "amountCrypto": 0.00007907, + "pricePerUnit": 831733, + "totalCost": 65.77, + "fee": 0.23098357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T13:29:05" + }, + { + "id": "nohtal1froex6xydk3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T01:29:05", + "amountCrypto": 0.00007674, + "pricePerUnit": 856965, + "totalCost": 65.76, + "fee": 0.23097783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "403", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T01:29:05" + }, + { + "id": "ahxc2gpckppun7gadz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T13:29:05", + "amountCrypto": 0.00007786, + "pricePerUnit": 844629, + "totalCost": 65.76, + "fee": 0.23097544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T13:29:05" + }, + { + "id": "gtmp7n6ej6ehfjjvir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T01:29:04", + "amountCrypto": 0.00008023, + "pricePerUnit": 819740, + "totalCost": 65.77, + "fee": 0.23099275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T01:29:04" + }, + { + "id": "y0oitpauqxwj5h6rak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T13:29:04", + "amountCrypto": 0.00007997, + "pricePerUnit": 822363, + "totalCost": 65.76, + "fee": 0.23098091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T13:29:04" + }, + { + "id": "kojvwj2uxs5tebgb41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T01:29:03", + "amountCrypto": 0.00008002, + "pricePerUnit": 821844, + "totalCost": 65.76, + "fee": 0.23097946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T01:29:03" + }, + { + "id": "ojo85q4b6qxarxn7lo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T13:29:04", + "amountCrypto": 0.00008013, + "pricePerUnit": 820777, + "totalCost": 65.77, + "fee": 0.23099668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T13:29:04" + }, + { + "id": "6dljuanry12lxmyely", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T01:29:04", + "amountCrypto": 0.00007977, + "pricePerUnit": 824437, + "totalCost": 65.77, + "fee": 0.23098431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T01:29:04" + }, + { + "id": "rcs2g4d6s6vboluol0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T13:29:03", + "amountCrypto": 0.00008016, + "pricePerUnit": 820387, + "totalCost": 65.76, + "fee": 0.23097336, + "status": "completed", + "orderId": null, + "exchangeOrderId": "410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T13:29:03" + }, + { + "id": "1wcwoy3hg48hqd84o4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T01:29:04", + "amountCrypto": 0.00007845, + "pricePerUnit": 838299, + "totalCost": 65.76, + "fee": 0.23098156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "411", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T01:29:04" + }, + { + "id": "ium0iuuhe62xdjt5v1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T13:29:07", + "amountCrypto": 0.00007866, + "pricePerUnit": 836037, + "totalCost": 65.76, + "fee": 0.23097494, + "status": "completed", + "orderId": null, + "exchangeOrderId": "412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T13:29:07" + }, + { + "id": "va50t2xr2602z6mcfg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T01:29:04", + "amountCrypto": 0.00007818, + "pricePerUnit": 841254, + "totalCost": 65.77, + "fee": 0.23099801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T01:29:04" + }, + { + "id": "mko0eki2jokal50pla", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T13:29:03", + "amountCrypto": 0.00007879, + "pricePerUnit": 834653, + "totalCost": 65.76, + "fee": 0.23097367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T13:29:03" + }, + { + "id": "b5k9evg2tkazs9w8la", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T01:29:04", + "amountCrypto": 0.00008094, + "pricePerUnit": 812489, + "totalCost": 65.76, + "fee": 0.2309756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T01:29:04" + }, + { + "id": "1dp36ylkrqh06x6x9y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T13:29:05", + "amountCrypto": 0.00008001, + "pricePerUnit": 821973, + "totalCost": 65.77, + "fee": 0.23098684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T13:29:05" + }, + { + "id": "b6a1nvhhjhxweff5j4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T01:29:04", + "amountCrypto": 0.00007805, + "pricePerUnit": 842628, + "totalCost": 65.77, + "fee": 0.23099055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T01:29:04" + }, + { + "id": "ieae35uessbhdwwmo5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T13:29:05", + "amountCrypto": 0.00007829, + "pricePerUnit": 840020, + "totalCost": 65.77, + "fee": 0.2309837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T13:29:05" + }, + { + "id": "3oos2vsl0qsr6p59un", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T01:29:04", + "amountCrypto": 0.00007852, + "pricePerUnit": 837588, + "totalCost": 65.77, + "fee": 0.23099158, + "status": "completed", + "orderId": null, + "exchangeOrderId": "419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T01:29:04" + }, + { + "id": "fzr4fddbadqk1uccsx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T13:29:12", + "amountCrypto": 0.00007743, + "pricePerUnit": 849347, + "totalCost": 65.76, + "fee": 0.2309829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T13:29:12" + }, + { + "id": "iczac2b24lyn4zmuuy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T01:29:03", + "amountCrypto": 0.00007799, + "pricePerUnit": 843246, + "totalCost": 65.76, + "fee": 0.23098226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T01:29:03" + }, + { + "id": "40je5h7vallkyo9cf6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T13:29:03", + "amountCrypto": 0.00007816, + "pricePerUnit": 841395, + "totalCost": 65.76, + "fee": 0.23097762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T13:29:03" + }, + { + "id": "biadqrxldvp2vrs8ph", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T01:29:04", + "amountCrypto": 0.00007797, + "pricePerUnit": 843518, + "totalCost": 65.77, + "fee": 0.23099765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T01:29:04" + }, + { + "id": "m7742yq3m0tg8yupql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T13:29:04", + "amountCrypto": 0.00007833, + "pricePerUnit": 839562, + "totalCost": 65.76, + "fee": 0.23097572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T13:29:04" + }, + { + "id": "7sbmfwf9ez4pddv52f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T01:29:03", + "amountCrypto": 0.00007839, + "pricePerUnit": 838955, + "totalCost": 65.77, + "fee": 0.23098552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T01:29:03" + }, + { + "id": "f05xwjbm3rpxye3h4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T13:29:03", + "amountCrypto": 0.00007959, + "pricePerUnit": 826311, + "totalCost": 65.77, + "fee": 0.23098696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T13:29:03" + }, + { + "id": "8iapbxguw0q27uwdjb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T01:29:06", + "amountCrypto": 0.00007931, + "pricePerUnit": 829256, + "totalCost": 65.77, + "fee": 0.23099469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T01:29:06" + }, + { + "id": "xdmkpnrs7rjkr196os", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T13:29:04", + "amountCrypto": 0.00007936, + "pricePerUnit": 828744, + "totalCost": 65.77, + "fee": 0.23099761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T13:29:04" + }, + { + "id": "d6s0b8s354nuwaz4os", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T01:29:04", + "amountCrypto": 0.00007886, + "pricePerUnit": 833999, + "totalCost": 65.77, + "fee": 0.23099774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T01:29:04" + }, + { + "id": "84ozg58dbnz47ath8d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T13:29:03", + "amountCrypto": 0.00007788, + "pricePerUnit": 844500, + "totalCost": 65.77, + "fee": 0.23099949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T13:29:03" + }, + { + "id": "ip6ziktbuvr10029mw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T01:29:04", + "amountCrypto": 0.00007848, + "pricePerUnit": 837951, + "totalCost": 65.76, + "fee": 0.23097397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T01:29:04" + }, + { + "id": "jwrrdpjcv892jlcxg5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T13:29:05", + "amountCrypto": 0.00007802, + "pricePerUnit": 842911, + "totalCost": 65.76, + "fee": 0.23097931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T13:29:05" + }, + { + "id": "owwyj7lhmdyzv0l056", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T01:29:04", + "amountCrypto": 0.00007814, + "pricePerUnit": 841637, + "totalCost": 65.77, + "fee": 0.23098493, + "status": "completed", + "orderId": null, + "exchangeOrderId": "433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T01:29:04" + }, + { + "id": "9o6ftxzuxo2l53ol99", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T13:29:07", + "amountCrypto": 0.00007632, + "pricePerUnit": 861683, + "totalCost": 65.76, + "fee": 0.23097837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T13:29:07" + }, + { + "id": "aiq66ovicdq5bfkj42", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T01:29:05", + "amountCrypto": 0.00007607, + "pricePerUnit": 864521, + "totalCost": 65.76, + "fee": 0.23098, + "status": "completed", + "orderId": null, + "exchangeOrderId": "435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T01:29:05" + }, + { + "id": "h5oi716j2lr2sa6ggg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T13:29:04", + "amountCrypto": 0.00007603, + "pricePerUnit": 865000, + "totalCost": 65.77, + "fee": 0.23098646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T13:29:04" + }, + { + "id": "wcwuv9bdo51cy7cwq9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T01:29:04", + "amountCrypto": 0.00007541, + "pricePerUnit": 872096, + "totalCost": 65.76, + "fee": 0.23098228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T01:29:04" + }, + { + "id": "3czec81yptiawdn2cx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T13:29:03", + "amountCrypto": 0.00007465, + "pricePerUnit": 881028, + "totalCost": 65.77, + "fee": 0.23099626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T13:29:03" + }, + { + "id": "5fmraxtxrd68n8uvog", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T01:29:04", + "amountCrypto": 0.00007363, + "pricePerUnit": 893215, + "totalCost": 65.77, + "fee": 0.23099162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T01:29:04" + }, + { + "id": "j5iis9add5uzm08jhr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T13:29:05", + "amountCrypto": 0.00007019, + "pricePerUnit": 936938, + "totalCost": 65.76, + "fee": 0.23097848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T13:29:05" + }, + { + "id": "ac7u0tl0ifrfvifgf8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T01:29:04", + "amountCrypto": 0.00006988, + "pricePerUnit": 941057, + "totalCost": 65.76, + "fee": 0.23096929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T01:29:04" + }, + { + "id": "f5k8yxawhyrg6huvho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T13:29:04", + "amountCrypto": 0.00006995, + "pricePerUnit": 940218, + "totalCost": 65.77, + "fee": 0.23099453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T13:29:04" + }, + { + "id": "1vhz8debl3g75e8vrv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T01:29:06", + "amountCrypto": 0.00006628, + "pricePerUnit": 992199, + "totalCost": 65.76, + "fee": 0.23097592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T01:29:06" + }, + { + "id": "u4avoxdyeo6ne07wpg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T13:29:06", + "amountCrypto": 0.00006624, + "pricePerUnit": 992781, + "totalCost": 65.76, + "fee": 0.23097193, + "status": "completed", + "orderId": null, + "exchangeOrderId": "444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T13:29:06" + }, + { + "id": "71a497ki35bmko0t8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T01:29:05", + "amountCrypto": 0.00006638, + "pricePerUnit": 990676, + "totalCost": 65.76, + "fee": 0.23096933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T01:29:05" + }, + { + "id": "vo2yfxpeq4g6wpphgr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T13:29:03", + "amountCrypto": 0.00006732, + "pricePerUnit": 976882, + "totalCost": 65.76, + "fee": 0.23097854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T13:29:03" + }, + { + "id": "2gic0aalgi4wj0by6y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T01:29:04", + "amountCrypto": 0.0000672, + "pricePerUnit": 978703, + "totalCost": 65.77, + "fee": 0.23099661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T01:29:04" + }, + { + "id": "3gho9xgek7js1y6qjl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T13:29:05", + "amountCrypto": 0.0000667, + "pricePerUnit": 986016, + "totalCost": 65.77, + "fee": 0.23099108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T13:29:05" + }, + { + "id": "jedpz0e34src3ll0tx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T01:29:04", + "amountCrypto": 0.00006554, + "pricePerUnit": 1003370, + "totalCost": 65.76, + "fee": 0.23096861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T01:29:04" + }, + { + "id": "1vahzwp7asadwpoc7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T13:29:03", + "amountCrypto": 0.00006622, + "pricePerUnit": 993167, + "totalCost": 65.77, + "fee": 0.23099197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T13:29:03" + }, + { + "id": "vv391kyw5gmhli6dzv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T01:29:03", + "amountCrypto": 0.00006632, + "pricePerUnit": 991680, + "totalCost": 65.77, + "fee": 0.23099442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T01:29:03" + }, + { + "id": "2j8b55sfokliagoeak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T13:29:03", + "amountCrypto": 0.00006631, + "pricePerUnit": 991745, + "totalCost": 65.76, + "fee": 0.23097473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T13:29:03" + }, + { + "id": "7ueeh7a136konbc2ga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T01:29:05", + "amountCrypto": 0.00006639, + "pricePerUnit": 990535, + "totalCost": 65.76, + "fee": 0.23097125, + "status": "completed", + "orderId": null, + "exchangeOrderId": "453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T01:29:05" + }, + { + "id": "bce8vw1yk3nn7mxh9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T13:29:03", + "amountCrypto": 0.0000688, + "pricePerUnit": 955841, + "totalCost": 65.76, + "fee": 0.2309721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T13:29:03" + }, + { + "id": "bov7x55lx2d5c8etge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T01:29:05", + "amountCrypto": 0.00006955, + "pricePerUnit": 945595, + "totalCost": 65.77, + "fee": 0.2309871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T01:29:05" + }, + { + "id": "2c13zhu1eur8e9bqgs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T13:29:04", + "amountCrypto": 0.00006968, + "pricePerUnit": 943826, + "totalCost": 65.77, + "fee": 0.23098592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T13:29:04" + }, + { + "id": "3q6j1vftnw12ss5g6t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-13T01:29:04", + "amountCrypto": 0.00007007, + "pricePerUnit": 938593, + "totalCost": 65.77, + "fee": 0.23099089, + "status": "completed", + "orderId": null, + "exchangeOrderId": "457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-13T01:29:04" + }, + { + "id": "kk8h68ns4wzwfcq9ia", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-13T13:29:03", + "amountCrypto": 0.00007027, + "pricePerUnit": 935826, + "totalCost": 65.76, + "fee": 0.23096729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "458", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-13T13:29:03" + }, + { + "id": "g79bmfitzsbkw0017g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T01:29:09", + "amountCrypto": 0.00006844, + "pricePerUnit": 960973, + "totalCost": 65.77, + "fee": 0.23099714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "459", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T01:29:09" + }, + { + "id": "9byc64vbrxc06sgwe5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T13:29:05", + "amountCrypto": 0.00006812, + "pricePerUnit": 965378, + "totalCost": 65.76, + "fee": 0.230971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "460", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T13:29:05" + }, + { + "id": "txckhcsw1usshphtp4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T01:29:03", + "amountCrypto": 0.00006859, + "pricePerUnit": 958848, + "totalCost": 65.77, + "fee": 0.2309915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T01:29:03" + }, + { + "id": "z2u191ykrbeobeps25", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T13:29:03", + "amountCrypto": 0.00006881, + "pricePerUnit": 955697, + "totalCost": 65.76, + "fee": 0.23097087, + "status": "completed", + "orderId": null, + "exchangeOrderId": "462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T13:29:03" + }, + { + "id": "ihwd00l4mkazyo46rh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T01:29:04", + "amountCrypto": 0.00006934, + "pricePerUnit": 948408, + "totalCost": 65.76, + "fee": 0.23097473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T01:29:04" + }, + { + "id": "etovkc9shoatlyu3dq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T13:29:03", + "amountCrypto": 0.00006901, + "pricePerUnit": 952999, + "totalCost": 65.77, + "fee": 0.23098825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T13:29:03" + }, + { + "id": "r97sgiz7agjx8t0e4p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T01:29:03", + "amountCrypto": 0.00006879, + "pricePerUnit": 955998, + "totalCost": 65.76, + "fee": 0.23097646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T01:29:03" + }, + { + "id": "xm21wm6qvk2oi9tsgl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T13:29:05", + "amountCrypto": 0.00006904, + "pricePerUnit": 952549, + "totalCost": 65.76, + "fee": 0.23097955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T13:29:05" + }, + { + "id": "q5g0s7hq7y18amf2b8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T01:29:05", + "amountCrypto": 0.00007038, + "pricePerUnit": 934422, + "totalCost": 65.76, + "fee": 0.23098179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T01:29:05" + }, + { + "id": "4lcrr380jtyeddq7h9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T13:29:10", + "amountCrypto": 0.00007073, + "pricePerUnit": 929774, + "totalCost": 65.76, + "fee": 0.2309758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T13:29:10" + }, + { + "id": "0k17vjpw6bs9tulxi2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T01:29:05", + "amountCrypto": 0.00006885, + "pricePerUnit": 955188, + "totalCost": 65.76, + "fee": 0.23098205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T01:29:05" + }, + { + "id": "b1n57ddop3mj82ftt3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T13:29:04", + "amountCrypto": 0.00006821, + "pricePerUnit": 964146, + "totalCost": 65.76, + "fee": 0.23098101, + "status": "completed", + "orderId": null, + "exchangeOrderId": "470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T13:29:04" + }, + { + "id": "alrbu92h5ky0dx3r12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T01:29:07", + "amountCrypto": 0.00006946, + "pricePerUnit": 946750, + "totalCost": 65.76, + "fee": 0.23096997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T01:29:07" + }, + { + "id": "rzer3zexggx4a6rrar", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T13:29:03", + "amountCrypto": 0.00006834, + "pricePerUnit": 962362, + "totalCost": 65.77, + "fee": 0.23099302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T13:29:03" + }, + { + "id": "viiby8dof2a2qfpdqf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T01:29:03", + "amountCrypto": 0.00006741, + "pricePerUnit": 975540, + "totalCost": 65.76, + "fee": 0.2309696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T01:29:03" + }, + { + "id": "j0a3gu1p44h3z2hbev", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T13:29:06", + "amountCrypto": 0.00006682, + "pricePerUnit": 984169, + "totalCost": 65.76, + "fee": 0.23097319, + "status": "completed", + "orderId": null, + "exchangeOrderId": "474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T13:29:06" + }, + { + "id": "xkaajt4xcacskigjfg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T01:29:04", + "amountCrypto": 0.00006696, + "pricePerUnit": 982138, + "totalCost": 65.76, + "fee": 0.23097947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T01:29:04" + }, + { + "id": "d65pgfqpn0zt1ow3ro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T13:29:03", + "amountCrypto": 0.00006775, + "pricePerUnit": 970640, + "totalCost": 65.76, + "fee": 0.23096858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T13:29:03" + }, + { + "id": "5lyqug0uihk2z461ch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T01:29:04", + "amountCrypto": 0.00006682, + "pricePerUnit": 984145, + "totalCost": 65.76, + "fee": 0.23096756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T01:29:04" + }, + { + "id": "44mcf8uocr888m3zf8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T13:29:03", + "amountCrypto": 0.0000674, + "pricePerUnit": 975730, + "totalCost": 65.76, + "fee": 0.23098032, + "status": "completed", + "orderId": null, + "exchangeOrderId": "478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T13:29:03" + }, + { + "id": "83fvfz49jo044s0rhb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T01:29:04", + "amountCrypto": 0.00006714, + "pricePerUnit": 979461, + "totalCost": 65.76, + "fee": 0.23096911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T01:29:04" + }, + { + "id": "w44zvj7ombjhm3r5eb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T13:29:03", + "amountCrypto": 0.00006732, + "pricePerUnit": 976931, + "totalCost": 65.77, + "fee": 0.23099013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T13:29:03" + }, + { + "id": "jui2otv3x6wzch9wnk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T01:29:04", + "amountCrypto": 0.00006835, + "pricePerUnit": 962115, + "totalCost": 65.76, + "fee": 0.23096753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T01:29:04" + }, + { + "id": "27xldj77vjibwk14qj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T13:29:03", + "amountCrypto": 0.00006797, + "pricePerUnit": 967619, + "totalCost": 65.77, + "fee": 0.23099739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T13:29:03" + }, + { + "id": "nriky8ivtymdjow4ft", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T01:29:04", + "amountCrypto": 0.00006751, + "pricePerUnit": 974114, + "totalCost": 65.76, + "fee": 0.23097412, + "status": "completed", + "orderId": null, + "exchangeOrderId": "483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T01:29:04" + }, + { + "id": "av8v99vy6cnszamupr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T13:29:04", + "amountCrypto": 0.00006877, + "pricePerUnit": 956322, + "totalCost": 65.77, + "fee": 0.23098756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T13:29:04" + }, + { + "id": "d88chrkbn7318dtfgd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T01:29:04", + "amountCrypto": 0.00006939, + "pricePerUnit": 947726, + "totalCost": 65.76, + "fee": 0.23097507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T01:29:04" + }, + { + "id": "ghl05no896ob01eyax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T13:29:04", + "amountCrypto": 0.00006857, + "pricePerUnit": 959123, + "totalCost": 65.77, + "fee": 0.23099037, + "status": "completed", + "orderId": null, + "exchangeOrderId": "486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T13:29:04" + }, + { + "id": "gt0nkhof9lkps7h4y0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T01:29:04", + "amountCrypto": 0.00006765, + "pricePerUnit": 972189, + "totalCost": 65.77, + "fee": 0.23099572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T01:29:04" + }, + { + "id": "ff8dm9c2nnl92fxkzz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T13:29:04", + "amountCrypto": 0.00006852, + "pricePerUnit": 959820, + "totalCost": 65.77, + "fee": 0.23098968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T13:29:04" + }, + { + "id": "g1z4ncs5745kn3ak3v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T01:29:05", + "amountCrypto": 0.00006878, + "pricePerUnit": 956100, + "totalCost": 65.76, + "fee": 0.23096752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T01:29:05" + }, + { + "id": "4zqs8fg6dj56dcz18x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T13:29:04", + "amountCrypto": 0.00006847, + "pricePerUnit": 960547, + "totalCost": 65.77, + "fee": 0.23099595, + "status": "completed", + "orderId": null, + "exchangeOrderId": "490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T13:29:04" + }, + { + "id": "ehtxp5s9gdhe34fkl5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T01:29:04", + "amountCrypto": 0.00006949, + "pricePerUnit": 946417, + "totalCost": 65.77, + "fee": 0.23098845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T01:29:04" + }, + { + "id": "2z6fuhdnecy763onbd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T13:29:04", + "amountCrypto": 0.00006957, + "pricePerUnit": 945255, + "totalCost": 65.76, + "fee": 0.23097044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T13:29:04" + }, + { + "id": "1y8zv7qz1nibs4v6ky", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T01:29:03", + "amountCrypto": 0.00006899, + "pricePerUnit": 953251, + "totalCost": 65.76, + "fee": 0.23098237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T01:29:03" + }, + { + "id": "u84wikz163au9qmb6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T13:29:03", + "amountCrypto": 0.00006858, + "pricePerUnit": 958997, + "totalCost": 65.77, + "fee": 0.23099371, + "status": "completed", + "orderId": null, + "exchangeOrderId": "494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T13:29:03" + }, + { + "id": "wig5r0nvbymix2l3nd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T01:29:04", + "amountCrypto": 0.00006881, + "pricePerUnit": 955718, + "totalCost": 65.76, + "fee": 0.23097594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "495", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T01:29:04" + }, + { + "id": "vi80go1ua2abtdml3b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T13:29:04", + "amountCrypto": 0.00006864, + "pricePerUnit": 958162, + "totalCost": 65.77, + "fee": 0.2309945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T13:29:04" + }, + { + "id": "5xn9xnbnq5dn7rbxuf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T01:29:05", + "amountCrypto": 0.00006557, + "pricePerUnit": 1003000, + "totalCost": 65.77, + "fee": 0.23098913, + "status": "completed", + "orderId": null, + "exchangeOrderId": "497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T01:29:05" + }, + { + "id": "7stt2iyq23girw8znd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T13:29:03", + "amountCrypto": 0.00006404, + "pricePerUnit": 1026899, + "totalCost": 65.76, + "fee": 0.23097473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T13:29:03" + }, + { + "id": "c8djueiwaz7c4sjpgp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T01:29:05", + "amountCrypto": 0.00006477, + "pricePerUnit": 1015298, + "totalCost": 65.76, + "fee": 0.23096855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T01:29:05" + }, + { + "id": "04v7v5vjft6silki5m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T13:29:03", + "amountCrypto": 0.00006848, + "pricePerUnit": 960381, + "totalCost": 65.77, + "fee": 0.23098976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T13:29:03" + }, + { + "id": "1z7ooym66ppi5il0ei", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T01:29:03", + "amountCrypto": 0.00006742, + "pricePerUnit": 975462, + "totalCost": 65.77, + "fee": 0.2309854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T01:29:03" + }, + { + "id": "g0g7as77ucisyefdz2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T13:29:07", + "amountCrypto": 0.00006725, + "pricePerUnit": 977965, + "totalCost": 65.77, + "fee": 0.23099417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T13:29:07" + }, + { + "id": "p2k6edkoys7nhchg03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T01:29:03", + "amountCrypto": 0.0000656, + "pricePerUnit": 1002495, + "totalCost": 65.76, + "fee": 0.23097846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T01:29:03" + }, + { + "id": "pui43im83oehiozjo4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T13:29:03", + "amountCrypto": 0.00006593, + "pricePerUnit": 997485, + "totalCost": 65.76, + "fee": 0.23098026, + "status": "completed", + "orderId": null, + "exchangeOrderId": "504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T13:29:03" + }, + { + "id": "mk50l9a3ct5h9349zm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T01:29:03", + "amountCrypto": 0.0000659, + "pricePerUnit": 997972, + "totalCost": 65.77, + "fee": 0.23098788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T01:29:03" + }, + { + "id": "92lugvy58ks1idk0nx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T13:29:03", + "amountCrypto": 0.00006653, + "pricePerUnit": 988490, + "totalCost": 65.76, + "fee": 0.23098045, + "status": "completed", + "orderId": null, + "exchangeOrderId": "506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T13:29:03" + }, + { + "id": "hh4mahyh1ul2w9oawx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T01:29:03", + "amountCrypto": 0.00006616, + "pricePerUnit": 994069, + "totalCost": 65.77, + "fee": 0.23099227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T01:29:03" + }, + { + "id": "aw1qc2ui72eimwyfqo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T13:29:03", + "amountCrypto": 0.00006598, + "pricePerUnit": 996687, + "totalCost": 65.76, + "fee": 0.23097051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T13:29:03" + }, + { + "id": "qfhr6wzf2oin2n5do1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T01:29:10", + "amountCrypto": 0.00006639, + "pricePerUnit": 990658, + "totalCost": 65.77, + "fee": 0.23099993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "509", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T01:29:10" + }, + { + "id": "bns9uez27rf6h1z3oz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T13:29:05", + "amountCrypto": 0.00006535, + "pricePerUnit": 1006348, + "totalCost": 65.76, + "fee": 0.23098257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "510", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T13:29:05" + }, + { + "id": "1ky15tgfmpan46mtj0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T01:29:04", + "amountCrypto": 0.00006245, + "pricePerUnit": 1053136, + "totalCost": 65.77, + "fee": 0.23099486, + "status": "completed", + "orderId": null, + "exchangeOrderId": "511", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T01:29:04" + }, + { + "id": "876zbkc68e4y8728kh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T13:29:07", + "amountCrypto": 0.00006256, + "pricePerUnit": 1051247, + "totalCost": 65.77, + "fee": 0.23098668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "512", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T13:29:07" + }, + { + "id": "ei4kwzksrao2gyg5m4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T01:29:05", + "amountCrypto": 0.0000633, + "pricePerUnit": 1038872, + "totalCost": 65.76, + "fee": 0.23096766, + "status": "completed", + "orderId": null, + "exchangeOrderId": "513", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T01:29:05" + }, + { + "id": "3puldgfj20hqdctgm5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T13:29:03", + "amountCrypto": 0.00006458, + "pricePerUnit": 1018390, + "totalCost": 65.77, + "fee": 0.23099235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "514", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T13:29:03" + }, + { + "id": "ftz8mnw5tccjkrrbsr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T01:29:05", + "amountCrypto": 0.00006297, + "pricePerUnit": 1044308, + "totalCost": 65.76, + "fee": 0.23096582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "515", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T01:29:05" + }, + { + "id": "vibf9aq9jrqcuwy342", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T13:29:04", + "amountCrypto": 0.00006174, + "pricePerUnit": 1065191, + "totalCost": 65.76, + "fee": 0.23098274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "516", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T13:29:04" + }, + { + "id": "ukevslqal2e93rlc0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T01:29:03", + "amountCrypto": 0.00006289, + "pricePerUnit": 1045764, + "totalCost": 65.77, + "fee": 0.230994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "517", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T01:29:03" + }, + { + "id": "rcx4wtt1k3exvcoi7r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T13:29:03", + "amountCrypto": 0.00006274, + "pricePerUnit": 1048178, + "totalCost": 65.76, + "fee": 0.230975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "518", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T13:29:03" + }, + { + "id": "zp0ujhdufyh7mxatpy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-13T01:29:04", + "amountCrypto": 0.00006763, + "pricePerUnit": 972362, + "totalCost": 65.76, + "fee": 0.23096852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "519", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-13T01:29:04" + }, + { + "id": "u8wf64azyim4xqbci3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-13T13:29:04", + "amountCrypto": 0.00006797, + "pricePerUnit": 967620, + "totalCost": 65.77, + "fee": 0.23099763, + "status": "completed", + "orderId": null, + "exchangeOrderId": "520", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-13T13:29:04" + }, + { + "id": "qxx3v3w8uc2wkg4xp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-14T01:29:05", + "amountCrypto": 0.00006776, + "pricePerUnit": 970566, + "totalCost": 65.77, + "fee": 0.23098506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "521", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-14T01:29:05" + }, + { + "id": "jityzoguxtetvuv0em", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-14T13:29:05", + "amountCrypto": 0.00006785, + "pricePerUnit": 969285, + "totalCost": 65.77, + "fee": 0.23098659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "522", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-14T13:29:05" + }, + { + "id": "7tnavh751z9e16sj5z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T01:29:04", + "amountCrypto": 0.00006899, + "pricePerUnit": 953252, + "totalCost": 65.76, + "fee": 0.23098261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "523", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T01:29:04" + }, + { + "id": "8uebdblq66tydu2vkj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T13:29:03", + "amountCrypto": 0.00006804, + "pricePerUnit": 966521, + "totalCost": 65.76, + "fee": 0.2309729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "524", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T13:29:03" + }, + { + "id": "r9icgc5p5kstp8ndfi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T01:29:03", + "amountCrypto": 0.00006805, + "pricePerUnit": 966443, + "totalCost": 65.77, + "fee": 0.2309882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "525", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T01:29:03" + }, + { + "id": "8kb5zhgafpbddcb0kl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T13:29:04", + "amountCrypto": 0.00006729, + "pricePerUnit": 977323, + "totalCost": 65.76, + "fee": 0.23097984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "526", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T13:29:04" + }, + { + "id": "rb05ewo8sqc1cd0v8s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T01:29:03", + "amountCrypto": 0.00006688, + "pricePerUnit": 983354, + "totalCost": 65.77, + "fee": 0.23098915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "527", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T01:29:03" + }, + { + "id": "fhhkazzgb7yu025pb3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T13:29:03", + "amountCrypto": 0.00006751, + "pricePerUnit": 974199, + "totalCost": 65.77, + "fee": 0.23099427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "528", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T13:29:03" + }, + { + "id": "aehfncr8r43352gp93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T01:29:04", + "amountCrypto": 0.00006759, + "pricePerUnit": 973035, + "totalCost": 65.77, + "fee": 0.23099168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "529", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T01:29:04" + }, + { + "id": "rq78qnrjaf4q3atrvv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T13:29:03", + "amountCrypto": 0.00006796, + "pricePerUnit": 967717, + "totalCost": 65.77, + "fee": 0.2309868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "530", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T13:29:03" + }, + { + "id": "wwru538su78de8mt1w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T01:29:04", + "amountCrypto": 0.00006979, + "pricePerUnit": 942330, + "totalCost": 65.77, + "fee": 0.23098386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "531", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T01:29:04" + }, + { + "id": "6mhxergrst3gi7gk95", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T13:29:04", + "amountCrypto": 0.0000697, + "pricePerUnit": 943545, + "totalCost": 65.77, + "fee": 0.23098343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "532", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T13:29:04" + }, + { + "id": "xjnb7fhgodyol7qxbv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T01:29:04", + "amountCrypto": 0.00006924, + "pricePerUnit": 949798, + "totalCost": 65.76, + "fee": 0.23097966, + "status": "completed", + "orderId": null, + "exchangeOrderId": "533", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T01:29:04" + }, + { + "id": "gvbjac0kxh8awkx7kw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T13:29:03", + "amountCrypto": 0.00006934, + "pricePerUnit": 948510, + "totalCost": 65.77, + "fee": 0.23099957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "534", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T13:29:03" + }, + { + "id": "lcba2jnmam2y6l7zby", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T01:29:00", + "amountCrypto": 0.0000691, + "pricePerUnit": 951718, + "totalCost": 65.76, + "fee": 0.2309786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "535", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T01:29:00" + }, + { + "id": "i62h6xzjsb1fb3knst", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T01:29:00", + "amountCrypto": 0.00006936, + "pricePerUnit": 948219, + "totalCost": 65.77, + "fee": 0.23099531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "537", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T01:29:00" + }, + { + "id": "j967oe0etux42y2r03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T13:29:00", + "amountCrypto": 0.0000708, + "pricePerUnit": 928925, + "totalCost": 65.77, + "fee": 0.23099327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "538", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T13:29:00" + }, + { + "id": "iwom4um5i2ol01hxu5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T01:29:01", + "amountCrypto": 0.00007254, + "pricePerUnit": 906575, + "totalCost": 65.76, + "fee": 0.23097592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "539", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T01:29:01" + }, + { + "id": "xwwmjn7d7dv0zg1m28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T13:29:03", + "amountCrypto": 0.00007386, + "pricePerUnit": 890405, + "totalCost": 65.77, + "fee": 0.23098422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "540", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T13:29:03" + }, + { + "id": "aq8g60f1m5xzwrudna", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T01:29:00", + "amountCrypto": 0.00007189, + "pricePerUnit": 914852, + "totalCost": 65.77, + "fee": 0.23099615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "541", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T01:29:00" + }, + { + "id": "6u9cfhrruq1a4bthku", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T13:29:00", + "amountCrypto": 0.00007153, + "pricePerUnit": 919382, + "totalCost": 65.76, + "fee": 0.23097748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "542", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T13:29:00" + }, + { + "id": "kmuaymoiyes190v37u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T01:29:00", + "amountCrypto": 0.00007173, + "pricePerUnit": 916855, + "totalCost": 65.77, + "fee": 0.23098667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "543", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T01:29:00" + }, + { + "id": "j979zt1fsbbl3vapf4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T13:29:00", + "amountCrypto": 0.000072, + "pricePerUnit": 913431, + "totalCost": 65.77, + "fee": 0.23099026, + "status": "completed", + "orderId": null, + "exchangeOrderId": "544", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T13:29:00" + }, + { + "id": "p8p6r01swe65yoc6pt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T01:29:00", + "amountCrypto": 0.0000719, + "pricePerUnit": 914635, + "totalCost": 65.76, + "fee": 0.23097349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "545", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T01:29:00" + }, + { + "id": "dwmzdh2yrz3dag59a3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T13:29:03", + "amountCrypto": 0.00006959, + "pricePerUnit": 944979, + "totalCost": 65.76, + "fee": 0.23096938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T13:29:03" + }, + { + "id": "rcb1izzaldft66g91z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T01:29:03", + "amountCrypto": 0.00006871, + "pricePerUnit": 957197, + "totalCost": 65.77, + "fee": 0.23099719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T01:29:03" + }, + { + "id": "3nfrx2tej81q9k6y1y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T13:29:00", + "amountCrypto": 0.00006882, + "pricePerUnit": 955568, + "totalCost": 65.76, + "fee": 0.23097325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T13:29:00" + }, + { + "id": "aenuif8rp3jueiufs9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T01:29:00", + "amountCrypto": 0.00006841, + "pricePerUnit": 961390, + "totalCost": 65.77, + "fee": 0.23099608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T01:29:00" + }, + { + "id": "woq2d6p4e1zemzi8bt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T13:29:00", + "amountCrypto": 0.00006758, + "pricePerUnit": 973123, + "totalCost": 65.76, + "fee": 0.23097839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T13:29:00" + }, + { + "id": "fmyxoows5a04yfsgua", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T01:29:01", + "amountCrypto": 0.00006843, + "pricePerUnit": 961006, + "totalCost": 65.76, + "fee": 0.23097132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T01:29:01" + }, + { + "id": "hj63mm243m87wxrtsq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T13:29:00", + "amountCrypto": 0.00006798, + "pricePerUnit": 967391, + "totalCost": 65.76, + "fee": 0.23097694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T13:29:00" + }, + { + "id": "j4dj6s1dkutrnkaflf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T01:29:00", + "amountCrypto": 0.00006623, + "pricePerUnit": 993000, + "totalCost": 65.77, + "fee": 0.230988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T01:29:00" + }, + { + "id": "evvqx8jdr72xv97fq0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T13:29:00", + "amountCrypto": 0.0000657, + "pricePerUnit": 1000970, + "totalCost": 65.76, + "fee": 0.23097866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "554", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T13:29:00" + }, + { + "id": "6r6q9t0hkndy4leqbx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T01:29:03", + "amountCrypto": 0.00006677, + "pricePerUnit": 984930, + "totalCost": 65.76, + "fee": 0.23097882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "555", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T01:29:03" + }, + { + "id": "u7sux7i78alcssrj3k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T13:29:03", + "amountCrypto": 0.00006696, + "pricePerUnit": 982209, + "totalCost": 65.77, + "fee": 0.23099617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "556", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T13:29:03" + }, + { + "id": "kh6maaomqbt2rgyzyh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T01:29:01", + "amountCrypto": 0.00006736, + "pricePerUnit": 976295, + "totalCost": 65.76, + "fee": 0.23097691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "557", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T01:29:01" + }, + { + "id": "oefkqsi57apjt7c4a4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T13:29:01", + "amountCrypto": 0.00006779, + "pricePerUnit": 970167, + "totalCost": 65.77, + "fee": 0.23099233, + "status": "completed", + "orderId": null, + "exchangeOrderId": "558", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T13:29:01" + }, + { + "id": "1qxj08oop047p4eanc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T01:29:03", + "amountCrypto": 0.00006632, + "pricePerUnit": 991601, + "totalCost": 65.76, + "fee": 0.23097602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "559", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T01:29:03" + }, + { + "id": "pof9hvfa43d7ypmi1e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T13:29:00", + "amountCrypto": 0.00006647, + "pricePerUnit": 989460, + "totalCost": 65.77, + "fee": 0.2309986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "560", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T13:29:00" + }, + { + "id": "5drxsy2p0zh51sxxr1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T01:29:01", + "amountCrypto": 0.00006566, + "pricePerUnit": 1001584, + "totalCost": 65.76, + "fee": 0.23097963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "561", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T01:29:01" + }, + { + "id": "dbjqr0vyif6paiwzbi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T13:29:04", + "amountCrypto": 0.00006617, + "pricePerUnit": 993821, + "totalCost": 65.76, + "fee": 0.23096955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "562", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T13:29:04" + }, + { + "id": "8pvocf4496f51aooo9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T01:29:01", + "amountCrypto": 0.00006633, + "pricePerUnit": 991469, + "totalCost": 65.76, + "fee": 0.2309801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "563", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T01:29:01" + }, + { + "id": "q59ycn9zfg60j1a0qu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T13:29:01", + "amountCrypto": 0.00006611, + "pricePerUnit": 994838, + "totalCost": 65.77, + "fee": 0.23099626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "564", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T13:29:01" + }, + { + "id": "h0nye16h0tzem5mv13", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T01:29:01", + "amountCrypto": 0.00006678, + "pricePerUnit": 984757, + "totalCost": 65.76, + "fee": 0.23097284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "565", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T01:29:01" + }, + { + "id": "dc9mwjq1d9fbew7oil", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T13:29:01", + "amountCrypto": 0.00006554, + "pricePerUnit": 1003490, + "totalCost": 65.77, + "fee": 0.23099624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "566", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T13:29:01" + }, + { + "id": "deqi3zfg9519lbbutg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T01:29:01", + "amountCrypto": 0.00006643, + "pricePerUnit": 989993, + "totalCost": 65.77, + "fee": 0.23098395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "567", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T01:29:01" + }, + { + "id": "19snzsyth51rkc6cyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T13:29:03", + "amountCrypto": 0.00006606, + "pricePerUnit": 995463, + "totalCost": 65.76, + "fee": 0.23096656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "568", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T13:29:03" + }, + { + "id": "at9ph07lfd6oezoz8s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T01:29:01", + "amountCrypto": 0.0000656, + "pricePerUnit": 1002483, + "totalCost": 65.76, + "fee": 0.23097569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "569", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T01:29:01" + }, + { + "id": "2lyn2uo4e37yaezge9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T13:29:06", + "amountCrypto": 0.00006592, + "pricePerUnit": 997609, + "totalCost": 65.76, + "fee": 0.23097394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "570", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T13:29:06" + }, + { + "id": "23zgkllmyli31bq5vt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T01:29:01", + "amountCrypto": 0.00006364, + "pricePerUnit": 1033354, + "totalCost": 65.76, + "fee": 0.23097486, + "status": "completed", + "orderId": null, + "exchangeOrderId": "571", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T01:29:01" + }, + { + "id": "ledkrxc0ookklyf1g4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T13:29:04", + "amountCrypto": 0.00006323, + "pricePerUnit": 1040111, + "totalCost": 65.77, + "fee": 0.2309874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "572", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T13:29:04" + }, + { + "id": "mrqon7cndtjxtb8bmf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T01:29:01", + "amountCrypto": 0.00006194, + "pricePerUnit": 1061683, + "totalCost": 65.76, + "fee": 0.23096783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "573", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T01:29:01" + }, + { + "id": "t7yjydtl5fj4u4zdxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T13:29:01", + "amountCrypto": 0.00005964, + "pricePerUnit": 1102596, + "totalCost": 65.76, + "fee": 0.23096143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "574", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T13:29:01" + }, + { + "id": "my6kv68588hs8kltsl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T01:29:01", + "amountCrypto": 0.00005961, + "pricePerUnit": 1103311, + "totalCost": 65.77, + "fee": 0.23099495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "575", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T01:29:01" + }, + { + "id": "i46njbrgg89o40aigw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T13:29:01", + "amountCrypto": 0.00005961, + "pricePerUnit": 1103207, + "totalCost": 65.76, + "fee": 0.23097318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "576", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T13:29:01" + }, + { + "id": "nky2qam14dwtr2k3pr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T01:29:01", + "amountCrypto": 0.00005907, + "pricePerUnit": 1113239, + "totalCost": 65.76, + "fee": 0.23096215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "577", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T01:29:01" + }, + { + "id": "at9cx9vk2mrrtaqfbt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T13:29:01", + "amountCrypto": 0.00005833, + "pricePerUnit": 1127398, + "totalCost": 65.76, + "fee": 0.23096951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "578", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T13:29:01" + }, + { + "id": "tkeco5klmx6x9y36dy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T01:29:03", + "amountCrypto": 0.00005818, + "pricePerUnit": 1130329, + "totalCost": 65.76, + "fee": 0.23097449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "579", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T01:29:03" + }, + { + "id": "f2vuwph3trw2mpq6jg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T13:29:01", + "amountCrypto": 0.00005859, + "pricePerUnit": 1122388, + "totalCost": 65.76, + "fee": 0.23096806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "580", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T13:29:01" + }, + { + "id": "0t1g9gpzhu1ocjx4be", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T01:29:01", + "amountCrypto": 0.00005613, + "pricePerUnit": 1171710, + "totalCost": 65.77, + "fee": 0.23099395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "581", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T01:29:01" + }, + { + "id": "f67mf55xsnhh9b1hw1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-14T13:29:03", + "amountCrypto": 0.00005376, + "pricePerUnit": 1223238, + "totalCost": 65.76, + "fee": 0.23097004, + "status": "completed", + "orderId": null, + "exchangeOrderId": "584", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-14T13:29:03" + }, + { + "id": "h69q6c1qlup9kwhpqo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T01:29:01", + "amountCrypto": 0.00005334, + "pricePerUnit": 1232844, + "totalCost": 65.76, + "fee": 0.23096521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "585", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T01:29:01" + }, + { + "id": "nm7ohvj0c13v75gjg1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T13:29:04", + "amountCrypto": 0.00005328, + "pricePerUnit": 1234370, + "totalCost": 65.77, + "fee": 0.23099097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "586", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T13:29:04" + }, + { + "id": "7vehjvhzsd0umjb0ab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T01:29:21", + "amountCrypto": 0.00005383, + "pricePerUnit": 1221594, + "totalCost": 65.76, + "fee": 0.23095996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "587", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T01:29:21" + }, + { + "id": "u4voka2imytakwmiwx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T13:29:04", + "amountCrypto": 0.00005347, + "pricePerUnit": 1230000, + "totalCost": 65.77, + "fee": 0.23099401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "588", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T13:29:04" + }, + { + "id": "y28lxt2uayufek5fu4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T01:29:04", + "amountCrypto": 0.00005349, + "pricePerUnit": 1229353, + "totalCost": 65.76, + "fee": 0.23095886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "589", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T01:29:04" + }, + { + "id": "yzpn1ci0mwpe3em558", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T13:29:03", + "amountCrypto": 0.00005405, + "pricePerUnit": 1216762, + "totalCost": 65.77, + "fee": 0.23098658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "590", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T13:29:03" + }, + { + "id": "cs99pdntp9wbi0qi7e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T01:29:03", + "amountCrypto": 0.00005402, + "pricePerUnit": 1217329, + "totalCost": 65.76, + "fee": 0.23096596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "591", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T01:29:03" + }, + { + "id": "rx2ax7pog33wzfveh6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T13:29:03", + "amountCrypto": 0.00005375, + "pricePerUnit": 1223489, + "totalCost": 65.76, + "fee": 0.23097446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "592", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T13:29:03" + }, + { + "id": "swupelzbiqi2zhqt9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T01:29:04", + "amountCrypto": 0.00005348, + "pricePerUnit": 1229769, + "totalCost": 65.77, + "fee": 0.23099382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "593", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T01:29:04" + }, + { + "id": "3yccgps10hnsyyy4a3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T13:29:03", + "amountCrypto": 0.00005326, + "pricePerUnit": 1234664, + "totalCost": 65.76, + "fee": 0.23095925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "594", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T13:29:03" + }, + { + "id": "ao33wh6l7ejxx45fe2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T01:29:03", + "amountCrypto": 0.0000537, + "pricePerUnit": 1224723, + "totalCost": 65.77, + "fee": 0.23099234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "595", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T01:29:03" + }, + { + "id": "ld7i97kfn5us4youbz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T13:29:04", + "amountCrypto": 0.00005336, + "pricePerUnit": 1232451, + "totalCost": 65.76, + "fee": 0.23097815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "596", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T13:29:04" + }, + { + "id": "ze853i8e7je3kiywwj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T01:29:03", + "amountCrypto": 0.00005344, + "pricePerUnit": 1230538, + "totalCost": 65.76, + "fee": 0.23096539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T01:29:03" + }, + { + "id": "cwa9svsu6md41uwnta", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T13:29:05", + "amountCrypto": 0.00005454, + "pricePerUnit": 1205881, + "totalCost": 65.77, + "fee": 0.23099629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "598", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T13:29:05" + }, + { + "id": "wb60s63eo5qp8qc07u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T01:29:04", + "amountCrypto": 0.00005438, + "pricePerUnit": 1209314, + "totalCost": 65.76, + "fee": 0.23097432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T01:29:04" + }, + { + "id": "d4lrg7tlvzqqlt0stf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T13:29:03", + "amountCrypto": 0.00005455, + "pricePerUnit": 1205520, + "totalCost": 65.76, + "fee": 0.23096948, + "status": "completed", + "orderId": null, + "exchangeOrderId": "600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T13:29:03" + }, + { + "id": "jui0mpqr9zzn8mwi3n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T01:29:03", + "amountCrypto": 0.00005462, + "pricePerUnit": 1204027, + "totalCost": 65.76, + "fee": 0.23097945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T01:29:03" + }, + { + "id": "0iezowu5ygbmoun41w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T13:29:05", + "amountCrypto": 0.00005511, + "pricePerUnit": 1193331, + "totalCost": 65.76, + "fee": 0.23098126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T13:29:05" + }, + { + "id": "84jqt9v36v39h1sbbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T01:29:03", + "amountCrypto": 0.00005514, + "pricePerUnit": 1192632, + "totalCost": 65.76, + "fee": 0.23097163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T01:29:03" + }, + { + "id": "2y7laf78oiyw0cyg1g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T13:29:03", + "amountCrypto": 0.00005495, + "pricePerUnit": 1196821, + "totalCost": 65.77, + "fee": 0.23098422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T13:29:03" + }, + { + "id": "pr2pm4n751miarsi0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T01:29:03", + "amountCrypto": 0.00005452, + "pricePerUnit": 1206312, + "totalCost": 65.77, + "fee": 0.23099412, + "status": "completed", + "orderId": null, + "exchangeOrderId": "605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T01:29:03" + }, + { + "id": "7hbcp1lmke3st3cti4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T13:29:03", + "amountCrypto": 0.0000544, + "pricePerUnit": 1208952, + "totalCost": 65.77, + "fee": 0.23099011, + "status": "completed", + "orderId": null, + "exchangeOrderId": "606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T13:29:03" + }, + { + "id": "0v6j1x2a1r7n1g7dge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T01:29:05", + "amountCrypto": 0.00005425, + "pricePerUnit": 1212157, + "totalCost": 65.76, + "fee": 0.23096386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T01:29:05" + }, + { + "id": "1cps2126usm6wnfes5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T13:29:04", + "amountCrypto": 0.0000551, + "pricePerUnit": 1193607, + "totalCost": 65.77, + "fee": 0.23099276, + "status": "completed", + "orderId": null, + "exchangeOrderId": "608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T13:29:04" + }, + { + "id": "pzkg1veu2hwvnit7gi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T01:29:04", + "amountCrypto": 0.00005161, + "pricePerUnit": 1274353, + "totalCost": 65.77, + "fee": 0.23099843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T01:29:04" + }, + { + "id": "d05wh1v0hq6lf8u2vw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T13:29:04", + "amountCrypto": 0.00004968, + "pricePerUnit": 1323730, + "totalCost": 65.76, + "fee": 0.23097577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T13:29:04" + }, + { + "id": "zkj9pw69m3pi7uqduz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T01:29:03", + "amountCrypto": 0.00004939, + "pricePerUnit": 1331478, + "totalCost": 65.76, + "fee": 0.23097153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T01:29:03" + }, + { + "id": "n2y1k7rgzjse2epqxb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T13:29:04", + "amountCrypto": 0.00004751, + "pricePerUnit": 1384114, + "totalCost": 65.76, + "fee": 0.23096295, + "status": "completed", + "orderId": null, + "exchangeOrderId": "612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T13:29:04" + }, + { + "id": "9lxua1wpfhkfq4kpgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T01:29:09", + "amountCrypto": 0.00004744, + "pricePerUnit": 1386142, + "totalCost": 65.76, + "fee": 0.23096056, + "status": "completed", + "orderId": null, + "exchangeOrderId": "613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T01:29:09" + }, + { + "id": "8oqmv8vsoykyadhjlo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T13:29:04", + "amountCrypto": 0.00004533, + "pricePerUnit": 1450798, + "totalCost": 65.76, + "fee": 0.23098197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T13:29:04" + }, + { + "id": "1fl5k7uhm3yyh1vh8n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T01:29:03", + "amountCrypto": 0.0000457, + "pricePerUnit": 1439028, + "totalCost": 65.76, + "fee": 0.23097813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T01:29:03" + }, + { + "id": "smt79y6odzbimzhski", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T13:29:03", + "amountCrypto": 0.00004536, + "pricePerUnit": 1449948, + "totalCost": 65.77, + "fee": 0.23099942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T13:29:03" + }, + { + "id": "5939oir1cmdo3lei3n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T01:29:05", + "amountCrypto": 0.00004523, + "pricePerUnit": 1454048, + "totalCost": 65.77, + "fee": 0.23098871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T01:29:05" + }, + { + "id": "ah95bs2lay3bpw5nza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T13:29:03", + "amountCrypto": 0.00004539, + "pricePerUnit": 1448686, + "totalCost": 65.76, + "fee": 0.23095101, + "status": "completed", + "orderId": null, + "exchangeOrderId": "618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T13:29:03" + }, + { + "id": "r525vyeu1rrqldgzri", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T01:29:03", + "amountCrypto": 0.00004553, + "pricePerUnit": 1444378, + "totalCost": 65.76, + "fee": 0.23097445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T01:29:03" + }, + { + "id": "sv57tx6mp0x92x4dgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T13:29:04", + "amountCrypto": 0.00004546, + "pricePerUnit": 1446476, + "totalCost": 65.76, + "fee": 0.23095432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T13:29:04" + }, + { + "id": "9fqzja7v9rz1d6j4ge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T01:29:03", + "amountCrypto": 0.00004509, + "pricePerUnit": 1458495, + "totalCost": 65.76, + "fee": 0.23097799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T01:29:03" + }, + { + "id": "yb5e4ad6jey7j88uga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T13:29:03", + "amountCrypto": 0.00004339, + "pricePerUnit": 1515529, + "totalCost": 65.76, + "fee": 0.23096136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T13:29:03" + }, + { + "id": "r3778wvgwi5d3kyfbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T01:29:03", + "amountCrypto": 0.00004165, + "pricePerUnit": 1578736, + "totalCost": 65.75, + "fee": 0.23094573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T01:29:03" + }, + { + "id": "nfgbt30cyys46vryv7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T13:29:03", + "amountCrypto": 0.00004213, + "pricePerUnit": 1560850, + "totalCost": 65.76, + "fee": 0.23096068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T13:29:03" + }, + { + "id": "4no6c9rko6y5nnki3h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T01:29:03", + "amountCrypto": 0.00004406, + "pricePerUnit": 1492705, + "totalCost": 65.77, + "fee": 0.2309957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T01:29:03" + }, + { + "id": "w1f9e76u3iljeizwwq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T13:29:03", + "amountCrypto": 0.00004225, + "pricePerUnit": 1556546, + "totalCost": 65.76, + "fee": 0.23097985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T13:29:03" + }, + { + "id": "rqwvw9utw085hx75ft", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T01:29:03", + "amountCrypto": 0.00004308, + "pricePerUnit": 1526609, + "totalCost": 65.77, + "fee": 0.23098774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T01:29:03" + }, + { + "id": "r2sshw3zi9v1ql7953", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T13:29:03", + "amountCrypto": 0.00004234, + "pricePerUnit": 1553327, + "totalCost": 65.77, + "fee": 0.23099318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T13:29:03" + }, + { + "id": "kx8dqprtq17apo7cnw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T01:29:03", + "amountCrypto": 0.00004255, + "pricePerUnit": 1545552, + "totalCost": 65.76, + "fee": 0.23097693, + "status": "completed", + "orderId": null, + "exchangeOrderId": "629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T01:29:03" + }, + { + "id": "dwdftpm25ikfh94t9t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T13:29:04", + "amountCrypto": 0.00004232, + "pricePerUnit": 1554054, + "totalCost": 65.77, + "fee": 0.23099213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T13:29:04" + }, + { + "id": "wsvn9jx38h0zaz675r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T01:29:04", + "amountCrypto": 0.00004169, + "pricePerUnit": 1577566, + "totalCost": 65.77, + "fee": 0.23099621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T01:29:04" + }, + { + "id": "thesmx1w316n98b0ob", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T13:29:04", + "amountCrypto": 0.00004166, + "pricePerUnit": 1578366, + "totalCost": 65.75, + "fee": 0.23094704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T13:29:04" + }, + { + "id": "ofh1rvykbpyim26me4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T01:29:03", + "amountCrypto": 0.0000416, + "pricePerUnit": 1581000, + "totalCost": 65.77, + "fee": 0.23099928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T01:29:03" + }, + { + "id": "0fp5aynnz71m8fu7ll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T13:29:03", + "amountCrypto": 0.00004075, + "pricePerUnit": 1613722, + "totalCost": 65.76, + "fee": 0.23096265, + "status": "completed", + "orderId": null, + "exchangeOrderId": "634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T13:29:03" + }, + { + "id": "w1cnl7pyh6dvqg8q56", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T01:29:03", + "amountCrypto": 0.00004152, + "pricePerUnit": 1583835, + "totalCost": 65.76, + "fee": 0.23096847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T01:29:03" + }, + { + "id": "v0r1xvmw9j29jmfz0t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T13:29:03", + "amountCrypto": 0.00003971, + "pricePerUnit": 1656076, + "totalCost": 65.76, + "fee": 0.23097532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T13:29:03" + }, + { + "id": "ghl84cxgy8u8vxdl9x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T01:29:04", + "amountCrypto": 0.00003942, + "pricePerUnit": 1668050, + "totalCost": 65.75, + "fee": 0.23094635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "637", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T01:29:04" + }, + { + "id": "0a6nbilrvsv3fcf7g1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T13:29:04", + "amountCrypto": 0.00003975, + "pricePerUnit": 1654583, + "totalCost": 65.77, + "fee": 0.23099954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "638", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T13:29:04" + }, + { + "id": "tmw956z3c2xym33924", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T01:29:03", + "amountCrypto": 0.00003982, + "pricePerUnit": 1651521, + "totalCost": 65.76, + "fee": 0.23097809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "639", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T01:29:03" + }, + { + "id": "yrtc1ulnmdd3uzljz6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T13:29:04", + "amountCrypto": 0.00003901, + "pricePerUnit": 1685956, + "totalCost": 65.77, + "fee": 0.23099767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "640", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T13:29:04" + }, + { + "id": "emedwc0vp1glnx4azk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T01:29:03", + "amountCrypto": 0.00003909, + "pricePerUnit": 1682481, + "totalCost": 65.77, + "fee": 0.2309943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "641", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T01:29:03" + }, + { + "id": "rhjljku6ilf4n9xh4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T13:29:03", + "amountCrypto": 0.00003931, + "pricePerUnit": 1672740, + "totalCost": 65.76, + "fee": 0.23094944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "642", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T13:29:03" + }, + { + "id": "116y0bt26mbg9e1f42", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T01:29:03", + "amountCrypto": 0.00003953, + "pricePerUnit": 1663427, + "totalCost": 65.76, + "fee": 0.23094894, + "status": "completed", + "orderId": null, + "exchangeOrderId": "643", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T01:29:03" + }, + { + "id": "ihx22ojstsybfk2icu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T13:29:03", + "amountCrypto": 0.00004193, + "pricePerUnit": 1568262, + "totalCost": 65.76, + "fee": 0.23095582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "644", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T13:29:03" + }, + { + "id": "jl1sa8ok3tu0fparki", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T01:29:03", + "amountCrypto": 0.00004067, + "pricePerUnit": 1616866, + "totalCost": 65.76, + "fee": 0.23095833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "645", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T01:29:03" + }, + { + "id": "pgftxb286ttxjy249p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T13:29:03", + "amountCrypto": 0.00004162, + "pricePerUnit": 1580170, + "totalCost": 65.77, + "fee": 0.23098901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "646", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T13:29:03" + }, + { + "id": "efg9404uf1egmog6at", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T01:29:03", + "amountCrypto": 0.00004299, + "pricePerUnit": 1529876, + "totalCost": 65.77, + "fee": 0.23099847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "647", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T01:29:03" + }, + { + "id": "o03vr5pbgmwv4x30hg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T13:29:03", + "amountCrypto": 0.00004237, + "pricePerUnit": 1551985, + "totalCost": 65.76, + "fee": 0.23095715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "648", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T13:29:03" + }, + { + "id": "itbatbkj20y284cop0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T01:29:03", + "amountCrypto": 0.00004185, + "pricePerUnit": 1571483, + "totalCost": 65.77, + "fee": 0.23098861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "649", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T01:29:03" + }, + { + "id": "27kbklrco88p3tzgh7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T13:29:04", + "amountCrypto": 0.00004162, + "pricePerUnit": 1579948, + "totalCost": 65.76, + "fee": 0.23095655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T13:29:04" + }, + { + "id": "li4m3liq1ou77oqo0q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T01:29:03", + "amountCrypto": 0.00004173, + "pricePerUnit": 1575982, + "totalCost": 65.77, + "fee": 0.23098568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T01:29:03" + }, + { + "id": "5ho20x07cvl7w85wp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T13:29:03", + "amountCrypto": 0.00004473, + "pricePerUnit": 1470261, + "totalCost": 65.76, + "fee": 0.23098233, + "status": "completed", + "orderId": null, + "exchangeOrderId": "652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T13:29:03" + }, + { + "id": "oucelva7ytyu75zo27", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T01:29:04", + "amountCrypto": 0.00004496, + "pricePerUnit": 1462851, + "totalCost": 65.77, + "fee": 0.23099991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T01:29:04" + }, + { + "id": "ildq7xmtfoxladzjd4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T13:29:03", + "amountCrypto": 0.00004396, + "pricePerUnit": 1495906, + "totalCost": 65.76, + "fee": 0.23096566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T13:29:03" + }, + { + "id": "3ffumxtzd4lpi08vnv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T01:29:03", + "amountCrypto": 0.00004212, + "pricePerUnit": 1561331, + "totalCost": 65.76, + "fee": 0.23097702, + "status": "completed", + "orderId": null, + "exchangeOrderId": "655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T01:29:03" + }, + { + "id": "6bfurjeald7efgbfst", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T13:29:03", + "amountCrypto": 0.00004216, + "pricePerUnit": 1559777, + "totalCost": 65.76, + "fee": 0.23096626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T13:29:03" + }, + { + "id": "ru1lcd2qetlglna2cy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T01:29:04", + "amountCrypto": 0.00004283, + "pricePerUnit": 1535535, + "totalCost": 65.77, + "fee": 0.23099002, + "status": "completed", + "orderId": null, + "exchangeOrderId": "657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T01:29:04" + }, + { + "id": "etph0os31ti6vxqqpr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T13:29:03", + "amountCrypto": 0.00004361, + "pricePerUnit": 1507838, + "totalCost": 65.76, + "fee": 0.23095437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T13:29:03" + }, + { + "id": "hql70j7i7kkqhg9im9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T01:29:05", + "amountCrypto": 0.00004401, + "pricePerUnit": 1494175, + "totalCost": 65.76, + "fee": 0.23096079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T01:29:05" + }, + { + "id": "gp7wpcqeumv035pdwg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T13:29:01", + "amountCrypto": 0.0000432, + "pricePerUnit": 1522161, + "totalCost": 65.76, + "fee": 0.23095627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T13:29:01" + }, + { + "id": "wsfv3dd941ekf8ly3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T01:29:01", + "amountCrypto": 0.00004346, + "pricePerUnit": 1513005, + "totalCost": 65.76, + "fee": 0.23094869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T01:29:01" + }, + { + "id": "rk45cye1ofwdsicj5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T13:29:01", + "amountCrypto": 0.00004269, + "pricePerUnit": 1540499, + "totalCost": 65.76, + "fee": 0.23097927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T13:29:01" + }, + { + "id": "fgu8vknkoievk0dmlv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T01:29:01", + "amountCrypto": 0.00004187, + "pricePerUnit": 1570669, + "totalCost": 65.76, + "fee": 0.2309793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T01:29:01" + }, + { + "id": "qrek6qe7e2y1pyk4bj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T13:29:02", + "amountCrypto": 0.00004194, + "pricePerUnit": 1567827, + "totalCost": 65.75, + "fee": 0.23094682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T13:29:02" + }, + { + "id": "l3k7bewg9bsyvnf3nr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T01:29:02", + "amountCrypto": 0.00004035, + "pricePerUnit": 1629950, + "totalCost": 65.77, + "fee": 0.23099535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T01:29:02" + }, + { + "id": "9stvm6k22clnu1xsg4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T13:29:01", + "amountCrypto": 0.00003992, + "pricePerUnit": 1647401, + "totalCost": 65.76, + "fee": 0.23098048, + "status": "completed", + "orderId": null, + "exchangeOrderId": "666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T13:29:01" + }, + { + "id": "ndqfnwafcqy4a7mlgt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T01:29:15", + "amountCrypto": 0.00004042, + "pricePerUnit": 1626840, + "totalCost": 65.76, + "fee": 0.23095458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T01:29:15" + }, + { + "id": "taovqg6s0wls1ned6j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T13:29:03", + "amountCrypto": 0.00004012, + "pricePerUnit": 1638988, + "totalCost": 65.76, + "fee": 0.23095221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T13:29:03" + }, + { + "id": "z69ful2bvte8cd4ur8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T01:29:03", + "amountCrypto": 0.0000403, + "pricePerUnit": 1631785, + "totalCost": 65.76, + "fee": 0.23096885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T01:29:03" + }, + { + "id": "6cpt2wk4s65vuwg8c0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T13:29:04", + "amountCrypto": 0.00003981, + "pricePerUnit": 1651789, + "totalCost": 65.76, + "fee": 0.23095755, + "status": "completed", + "orderId": null, + "exchangeOrderId": "670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T13:29:04" + }, + { + "id": "hxhh2xgpq7ze8ig0rx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T01:29:03", + "amountCrypto": 0.00003971, + "pricePerUnit": 1655928, + "totalCost": 65.76, + "fee": 0.23095468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T01:29:03" + }, + { + "id": "o9lun8i5pkwt856pku", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T13:29:04", + "amountCrypto": 0.00004008, + "pricePerUnit": 1640732, + "totalCost": 65.76, + "fee": 0.23096745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T13:29:04" + }, + { + "id": "knxfj3369f9m613xgu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T01:29:03", + "amountCrypto": 0.00004028, + "pricePerUnit": 1632791, + "totalCost": 65.77, + "fee": 0.23099654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T01:29:03" + }, + { + "id": "h3q13cll3nhkdrttz4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T13:29:05", + "amountCrypto": 0.0000401, + "pricePerUnit": 1639780, + "totalCost": 65.76, + "fee": 0.23094862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T13:29:05" + }, + { + "id": "m2fmiagedml0oulz7o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T01:29:03", + "amountCrypto": 0.00004031, + "pricePerUnit": 1631383, + "totalCost": 65.76, + "fee": 0.23096924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T01:29:03" + }, + { + "id": "sdri5m845bwc3fa384", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T14:29:03", + "amountCrypto": 0.00003992, + "pricePerUnit": 1647152, + "totalCost": 65.75, + "fee": 0.23094557, + "status": "completed", + "orderId": null, + "exchangeOrderId": "676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T14:29:03" + }, + { + "id": "jsl03ay31m7xwnffjc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T02:29:04", + "amountCrypto": 0.00003962, + "pricePerUnit": 1659676, + "totalCost": 65.76, + "fee": 0.23095279, + "status": "completed", + "orderId": null, + "exchangeOrderId": "677", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T02:29:04" + }, + { + "id": "yy37oekfnlebpfll6o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T14:29:04", + "amountCrypto": 0.00004025, + "pricePerUnit": 1633926, + "totalCost": 65.77, + "fee": 0.23098495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T14:29:04" + }, + { + "id": "r62qd9l3x4rodud21n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T02:29:03", + "amountCrypto": 0.00004024, + "pricePerUnit": 1634405, + "totalCost": 65.77, + "fee": 0.23099526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "679", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T02:29:03" + }, + { + "id": "zedjdojjt97urkednt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T14:29:05", + "amountCrypto": 0.00004238, + "pricePerUnit": 1551608, + "totalCost": 65.76, + "fee": 0.23095554, + "status": "completed", + "orderId": null, + "exchangeOrderId": "680", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T14:29:05" + }, + { + "id": "83yrwouvm8fhylb1q9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T02:29:04", + "amountCrypto": 0.00004291, + "pricePerUnit": 1532481, + "totalCost": 65.76, + "fee": 0.2309612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "681", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T02:29:04" + }, + { + "id": "2ebrkt3e3vu664qape", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T14:29:03", + "amountCrypto": 0.00004233, + "pricePerUnit": 1553584, + "totalCost": 65.76, + "fee": 0.23097684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "682", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T14:29:03" + }, + { + "id": "7pomgmomlvzoh3od1c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T02:29:03", + "amountCrypto": 0.00004246, + "pricePerUnit": 1548707, + "totalCost": 65.76, + "fee": 0.23095888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "683", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T02:29:03" + }, + { + "id": "as83d3pe1e3w46rzfs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T14:29:03", + "amountCrypto": 0.00004243, + "pricePerUnit": 1550024, + "totalCost": 65.77, + "fee": 0.23099197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "684", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T14:29:03" + }, + { + "id": "e7ueeifhjqtu1ebadr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T02:29:02", + "amountCrypto": 0.0000412, + "pricePerUnit": 1596334, + "totalCost": 65.77, + "fee": 0.23099703, + "status": "completed", + "orderId": null, + "exchangeOrderId": "685", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T02:29:02" + }, + { + "id": "9mlh3oxy8iwilz6irg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T14:29:03", + "amountCrypto": 0.00004225, + "pricePerUnit": 1556345, + "totalCost": 65.76, + "fee": 0.23095002, + "status": "completed", + "orderId": null, + "exchangeOrderId": "686", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T14:29:03" + }, + { + "id": "gcla0l1frny28s7xg5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T02:29:03", + "amountCrypto": 0.00004146, + "pricePerUnit": 1586238, + "totalCost": 65.77, + "fee": 0.23098462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "687", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T02:29:03" + }, + { + "id": "ombxv2kg6jntax2ieu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T14:29:03", + "amountCrypto": 0.00004151, + "pricePerUnit": 1584406, + "totalCost": 65.77, + "fee": 0.23099609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "688", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T14:29:03" + }, + { + "id": "0erut4iakvqud5e6yq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T02:29:03", + "amountCrypto": 0.00004086, + "pricePerUnit": 1609266, + "totalCost": 65.75, + "fee": 0.23094662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "689", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T02:29:03" + }, + { + "id": "v5nqznug9cok95vp4u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T14:29:03", + "amountCrypto": 0.00004066, + "pricePerUnit": 1617376, + "totalCost": 65.76, + "fee": 0.23097437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "690", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T14:29:03" + }, + { + "id": "2rhgra1i9afmbdl78o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T02:29:03", + "amountCrypto": 0.00004062, + "pricePerUnit": 1618878, + "totalCost": 65.76, + "fee": 0.23096143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "691", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T02:29:03" + }, + { + "id": "fpyw4cfmh24emzq8x1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T14:29:03", + "amountCrypto": 0.0000393, + "pricePerUnit": 1673158, + "totalCost": 65.76, + "fee": 0.23094838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "692", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T14:29:03" + }, + { + "id": "jscglnoxvfmc07j10a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T02:29:03", + "amountCrypto": 0.0000399, + "pricePerUnit": 1648184, + "totalCost": 65.76, + "fee": 0.23097447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "693", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T02:29:03" + }, + { + "id": "gud6urnub91gp1im4y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T14:29:03", + "amountCrypto": 0.0000399, + "pricePerUnit": 1648117, + "totalCost": 65.76, + "fee": 0.23096506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "694", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T14:29:03" + }, + { + "id": "a1h03z84j1snogv1n2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T02:29:03", + "amountCrypto": 0.0000405, + "pricePerUnit": 1623801, + "totalCost": 65.76, + "fee": 0.23097944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "695", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T02:29:03" + }, + { + "id": "20ak4w6jf29n8czulq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T14:29:03", + "amountCrypto": 0.00004087, + "pricePerUnit": 1608877, + "totalCost": 65.75, + "fee": 0.23094734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "696", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T14:29:03" + }, + { + "id": "rytxlquv09a6neofmd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T02:29:03", + "amountCrypto": 0.00003965, + "pricePerUnit": 1658421, + "totalCost": 65.76, + "fee": 0.23095294, + "status": "completed", + "orderId": null, + "exchangeOrderId": "697", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T02:29:03" + }, + { + "id": "hmh93f1yo2au4rjx7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T14:29:03", + "amountCrypto": 0.00003971, + "pricePerUnit": 1655933, + "totalCost": 65.76, + "fee": 0.23095539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "698", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T14:29:03" + }, + { + "id": "s427vq7elttn8b64dh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T02:29:03", + "amountCrypto": 0.00003968, + "pricePerUnit": 1657201, + "totalCost": 65.76, + "fee": 0.23095765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "699", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T02:29:03" + }, + { + "id": "qbhbu7umngdbui61vp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T14:29:03", + "amountCrypto": 0.00003907, + "pricePerUnit": 1683030, + "totalCost": 65.76, + "fee": 0.23095151, + "status": "completed", + "orderId": null, + "exchangeOrderId": "700", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T14:29:03" + }, + { + "id": "81kzklz2nbpyvey2kw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T02:29:03", + "amountCrypto": 0.00004097, + "pricePerUnit": 1605053, + "totalCost": 65.76, + "fee": 0.23096208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "701", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T02:29:03" + }, + { + "id": "ckmtrik2j8aemr53v4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T14:29:03", + "amountCrypto": 0.00004081, + "pricePerUnit": 1611477, + "totalCost": 65.76, + "fee": 0.23098088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "702", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T14:29:03" + }, + { + "id": "2mlkrc0qnxegpe4yu7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-14T02:29:03", + "amountCrypto": 0.00004257, + "pricePerUnit": 1544709, + "totalCost": 65.76, + "fee": 0.23095942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "703", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-14T02:29:03" + }, + { + "id": "1cgrit841ki0qrh8ci", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-14T14:29:03", + "amountCrypto": 0.00004203, + "pricePerUnit": 1564827, + "totalCost": 65.77, + "fee": 0.23099952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "704", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-14T14:29:03" + }, + { + "id": "5wg3wgc095ch0xfxlk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-15T02:29:03", + "amountCrypto": 0.00004185, + "pricePerUnit": 1571211, + "totalCost": 65.76, + "fee": 0.23094857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "705", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-15T02:29:03" + }, + { + "id": "yztk4znid1kg7m2neb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-15T14:29:03", + "amountCrypto": 0.00004167, + "pricePerUnit": 1578278, + "totalCost": 65.77, + "fee": 0.23098962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "706", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-15T14:29:03" + }, + { + "id": "fcuq7g1xyz4g53vhsh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T02:29:03", + "amountCrypto": 0.00004319, + "pricePerUnit": 1522471, + "totalCost": 65.76, + "fee": 0.23094991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "707", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T02:29:03" + }, + { + "id": "lt5mvsdct5kbhv57z5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T14:29:03", + "amountCrypto": 0.00004364, + "pricePerUnit": 1506934, + "totalCost": 65.76, + "fee": 0.23097467, + "status": "completed", + "orderId": null, + "exchangeOrderId": "708", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T14:29:03" + }, + { + "id": "j7keixwkj6eivbmb3r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T02:29:03", + "amountCrypto": 0.00004325, + "pricePerUnit": 1520502, + "totalCost": 65.76, + "fee": 0.23097151, + "status": "completed", + "orderId": null, + "exchangeOrderId": "709", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T02:29:03" + }, + { + "id": "lvvgoau47icndnjily", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T14:29:03", + "amountCrypto": 0.00004396, + "pricePerUnit": 1496100, + "totalCost": 65.77, + "fee": 0.2309956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "710", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T14:29:03" + }, + { + "id": "kyiuy0i3und36y85er", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T02:29:03", + "amountCrypto": 0.00004516, + "pricePerUnit": 1456251, + "totalCost": 65.76, + "fee": 0.23098063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "711", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T02:29:03" + }, + { + "id": "3hkrtfj2t9m19pos74", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T14:29:04", + "amountCrypto": 0.00004428, + "pricePerUnit": 1485288, + "totalCost": 65.77, + "fee": 0.23099561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "712", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T14:29:04" + }, + { + "id": "s02j4reagryepcjd4u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T02:29:03", + "amountCrypto": 0.0000436, + "pricePerUnit": 1508258, + "totalCost": 65.76, + "fee": 0.23096576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "713", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T02:29:03" + }, + { + "id": "javqyc52f8p6ppy1kr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T14:29:03", + "amountCrypto": 0.00004224, + "pricePerUnit": 1556826, + "totalCost": 65.76, + "fee": 0.2309667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "714", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T14:29:03" + }, + { + "id": "xe7d3mgf4bvbosyfa2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T02:29:03", + "amountCrypto": 0.00004312, + "pricePerUnit": 1525207, + "totalCost": 65.77, + "fee": 0.23098993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "715", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T02:29:03" + }, + { + "id": "id0lzecddtacyee1hp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T14:29:04", + "amountCrypto": 0.00004333, + "pricePerUnit": 1517720, + "totalCost": 65.76, + "fee": 0.23097537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "716", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T14:29:04" + }, + { + "id": "ennh5lr0iygmwe4sa1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T02:29:03", + "amountCrypto": 0.00004251, + "pricePerUnit": 1546936, + "totalCost": 65.76, + "fee": 0.23096648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "717", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T02:29:03" + }, + { + "id": "bxcatyrob1vu2qmmyj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T14:29:03", + "amountCrypto": 0.00004229, + "pricePerUnit": 1555091, + "totalCost": 65.76, + "fee": 0.23098234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "718", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T14:29:03" + }, + { + "id": "lhsqsmlxalkj752vnt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T02:29:03", + "amountCrypto": 0.00004247, + "pricePerUnit": 1548430, + "totalCost": 65.76, + "fee": 0.23097196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "719", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T02:29:03" + }, + { + "id": "mju2w18v1p1ek4bucb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T14:29:02", + "amountCrypto": 0.00004186, + "pricePerUnit": 1571053, + "totalCost": 65.76, + "fee": 0.23098062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "720", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T14:29:02" + }, + { + "id": "s24il9rp01pcfe2o46", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T02:29:03", + "amountCrypto": 0.00004132, + "pricePerUnit": 1591634, + "totalCost": 65.77, + "fee": 0.2309878, + "status": "completed", + "orderId": null, + "exchangeOrderId": "721", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T02:29:03" + }, + { + "id": "06sjg6av1kfwgkfhyv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T14:29:03", + "amountCrypto": 0.00004185, + "pricePerUnit": 1571260, + "totalCost": 65.76, + "fee": 0.23095579, + "status": "completed", + "orderId": null, + "exchangeOrderId": "722", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T14:29:03" + }, + { + "id": "pwm6b0kit51de20u7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T02:29:03", + "amountCrypto": 0.00004171, + "pricePerUnit": 1576508, + "totalCost": 65.76, + "fee": 0.230952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "723", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T02:29:03" + }, + { + "id": "ivj7b2fnry9f7ss8k5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T14:29:04", + "amountCrypto": 0.00004155, + "pricePerUnit": 1582673, + "totalCost": 65.76, + "fee": 0.23096579, + "status": "completed", + "orderId": null, + "exchangeOrderId": "724", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T14:29:04" + }, + { + "id": "3pa0mjwf65lomythsz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T02:29:03", + "amountCrypto": 0.00004304, + "pricePerUnit": 1528063, + "totalCost": 65.77, + "fee": 0.23099312, + "status": "completed", + "orderId": null, + "exchangeOrderId": "725", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T02:29:03" + }, + { + "id": "ffflekjlvmue1i2ssv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T14:29:03", + "amountCrypto": 0.00004348, + "pricePerUnit": 1512588, + "totalCost": 65.77, + "fee": 0.23099128, + "status": "completed", + "orderId": null, + "exchangeOrderId": "726", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T14:29:03" + }, + { + "id": "tr5hp20kcmor77vdqf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T02:29:04", + "amountCrypto": 0.00004337, + "pricePerUnit": 1516436, + "totalCost": 65.77, + "fee": 0.23099313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "727", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T02:29:04" + }, + { + "id": "ndaj6q8tvf11tzz0z5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T14:29:04", + "amountCrypto": 0.00004332, + "pricePerUnit": 1517956, + "totalCost": 65.76, + "fee": 0.23095806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "728", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T14:29:04" + }, + { + "id": "ulwe5umpgfvaxurkcv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T02:29:03", + "amountCrypto": 0.00004364, + "pricePerUnit": 1507031, + "totalCost": 65.77, + "fee": 0.23098958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "729", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T02:29:03" + }, + { + "id": "ejeulurs0bju8qmb1m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T14:29:03", + "amountCrypto": 0.00004403, + "pricePerUnit": 1493705, + "totalCost": 65.77, + "fee": 0.23099306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "730", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T14:29:03" + }, + { + "id": "untpd88yql5e7ftyw1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T02:29:02", + "amountCrypto": 0.00004369, + "pricePerUnit": 1505148, + "totalCost": 65.76, + "fee": 0.23096533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "731", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T02:29:02" + }, + { + "id": "906wmydyc7j9hpo0q0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T14:29:03", + "amountCrypto": 0.00004377, + "pricePerUnit": 1502614, + "totalCost": 65.77, + "fee": 0.23099865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "732", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T14:29:03" + }, + { + "id": "0d40q9mnwl8wnwu7xz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T02:29:03", + "amountCrypto": 0.00004399, + "pricePerUnit": 1495063, + "totalCost": 65.77, + "fee": 0.23099309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "733", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T02:29:03" + }, + { + "id": "w4t4pczj51j1j0g7eq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T14:29:03", + "amountCrypto": 0.00004476, + "pricePerUnit": 1469235, + "totalCost": 65.76, + "fee": 0.23097598, + "status": "completed", + "orderId": null, + "exchangeOrderId": "734", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T14:29:03" + }, + { + "id": "hsisbwal7fhkwpf51p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T02:29:03", + "amountCrypto": 0.00004381, + "pricePerUnit": 1501114, + "totalCost": 65.76, + "fee": 0.23097898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "735", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T02:29:03" + }, + { + "id": "13wxn52z8hp2vcu73s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T14:29:03", + "amountCrypto": 0.00004552, + "pricePerUnit": 1444792, + "totalCost": 65.77, + "fee": 0.23098998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "736", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T14:29:03" + }, + { + "id": "8m5ciyyucdyy23sf7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T02:29:04", + "amountCrypto": 0.00004585, + "pricePerUnit": 1434146, + "totalCost": 65.76, + "fee": 0.23095008, + "status": "completed", + "orderId": null, + "exchangeOrderId": "737", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T02:29:04" + }, + { + "id": "7f7shy4c2y3dm4zdnx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T14:29:03", + "amountCrypto": 0.00004785, + "pricePerUnit": 1374466, + "totalCost": 65.77, + "fee": 0.2309943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "738", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T14:29:03" + }, + { + "id": "h8ij1e2iwn81ym6p9a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T02:39:33", + "amountCrypto": 0.00004797, + "pricePerUnit": 1370853, + "totalCost": 65.76, + "fee": 0.23096487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "739", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T02:39:33" + }, + { + "id": "m5v1xs3svy9mpfknxa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T02:39:33", + "amountCrypto": 0.00004797, + "pricePerUnit": 1370853, + "totalCost": 65.76, + "fee": 0.23096487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "740", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T02:39:33" + }, + { + "id": "36xuijnqtgoepjk4ju", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T02:39:33", + "amountCrypto": 0.00004797, + "pricePerUnit": 1370853, + "totalCost": 65.76, + "fee": 0.23096487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "741", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T02:39:33" + }, + { + "id": "zqbmsnmeakt4vk64bu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T02:39:33", + "amountCrypto": 0.00004797, + "pricePerUnit": 1370853, + "totalCost": 65.76, + "fee": 0.23096487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "742", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T02:39:33" + }, + { + "id": "qpt3zyyb6lbu2itp17", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T14:29:03", + "amountCrypto": 0.00004743, + "pricePerUnit": 1386636, + "totalCost": 65.77, + "fee": 0.23099415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "743", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T14:29:03" + }, + { + "id": "2dz1i7d1kmdk6rm3ym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T02:29:02", + "amountCrypto": 0.00004763, + "pricePerUnit": 1380688, + "totalCost": 65.76, + "fee": 0.2309732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "744", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T02:29:02" + }, + { + "id": "splb25wwowqrp0hcex", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T14:29:04", + "amountCrypto": 0.00004752, + "pricePerUnit": 1383869, + "totalCost": 65.76, + "fee": 0.23097068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "745", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T14:29:04" + }, + { + "id": "3y9c55wqms499h9vlj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T02:29:03", + "amountCrypto": 0.0000447, + "pricePerUnit": 1471280, + "totalCost": 65.77, + "fee": 0.23098743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "746", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T02:29:03" + }, + { + "id": "twvsdpep21r0skcnp7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T14:29:03", + "amountCrypto": 0.00004394, + "pricePerUnit": 1496794, + "totalCost": 65.77, + "fee": 0.23099757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "747", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T14:29:03" + }, + { + "id": "c22m3olq6h9qg84fis", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T02:29:04", + "amountCrypto": 0.00004388, + "pricePerUnit": 1498682, + "totalCost": 65.76, + "fee": 0.23097322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "748", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T02:29:04" + }, + { + "id": "9xgxlxccplbiis0xvm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T14:29:03", + "amountCrypto": 0.00004406, + "pricePerUnit": 1492483, + "totalCost": 65.76, + "fee": 0.23096134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "749", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T14:29:03" + }, + { + "id": "nlrt373wmdulo4kssk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T02:29:03", + "amountCrypto": 0.00004396, + "pricePerUnit": 1496080, + "totalCost": 65.77, + "fee": 0.23099251, + "status": "completed", + "orderId": null, + "exchangeOrderId": "750", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T02:29:03" + }, + { + "id": "ir1omukwqa1js7nr7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T14:29:03", + "amountCrypto": 0.00004421, + "pricePerUnit": 1487465, + "totalCost": 65.76, + "fee": 0.23096854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "751", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T14:29:03" + }, + { + "id": "ot6hkr53qscexihqwr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T02:29:04", + "amountCrypto": 0.00004461, + "pricePerUnit": 1474286, + "totalCost": 65.77, + "fee": 0.23099326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "752", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T02:29:04" + }, + { + "id": "fumwmpxxytspkyjo7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T14:29:03", + "amountCrypto": 0.00004442, + "pricePerUnit": 1480503, + "totalCost": 65.76, + "fee": 0.23097944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "753", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T14:29:03" + }, + { + "id": "3zrgq68lsm06v6vzjq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T02:29:03", + "amountCrypto": 0.00004506, + "pricePerUnit": 1459488, + "totalCost": 65.76, + "fee": 0.23098146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "754", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T02:29:03" + }, + { + "id": "48l5jwh5d1mzs4vs8w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T14:29:03", + "amountCrypto": 0.00004507, + "pricePerUnit": 1458994, + "totalCost": 65.76, + "fee": 0.23095449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "755", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T14:29:03" + }, + { + "id": "hkjqabzrz6u9tjuf0j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T02:29:04", + "amountCrypto": 0.00004588, + "pricePerUnit": 1433361, + "totalCost": 65.76, + "fee": 0.23097471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "756", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T02:29:04" + }, + { + "id": "st3mjjjknnpsgpg2ga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T14:29:03", + "amountCrypto": 0.00004598, + "pricePerUnit": 1430100, + "totalCost": 65.76, + "fee": 0.23095149, + "status": "completed", + "orderId": null, + "exchangeOrderId": "757", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T14:29:03" + }, + { + "id": "asopb56zwyay4j4bs2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T02:29:03", + "amountCrypto": 0.00004502, + "pricePerUnit": 1460644, + "totalCost": 65.76, + "fee": 0.23095919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "758", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T02:29:03" + }, + { + "id": "a24mnqzrj8ajg4hc4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T14:29:04", + "amountCrypto": 0.00004479, + "pricePerUnit": 1468336, + "totalCost": 65.77, + "fee": 0.23098933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "759", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T14:29:04" + }, + { + "id": "9w9l3x7uuvtwxi5bwt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T02:29:03", + "amountCrypto": 0.00004644, + "pricePerUnit": 1416108, + "totalCost": 65.76, + "fee": 0.23097983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "760", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T02:29:03" + }, + { + "id": "0eyixetk9jwyngnfi8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T14:29:03", + "amountCrypto": 0.00004654, + "pricePerUnit": 1412939, + "totalCost": 65.76, + "fee": 0.23095922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "761", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T14:29:03" + }, + { + "id": "xnwgne9qx5qazxyq7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T02:29:01", + "amountCrypto": 0.00004629, + "pricePerUnit": 1420652, + "totalCost": 65.76, + "fee": 0.23097259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "762", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T02:29:01" + }, + { + "id": "xesr3s9di1ireirtbq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T14:29:00", + "amountCrypto": 0.00004626, + "pricePerUnit": 1421671, + "totalCost": 65.77, + "fee": 0.23098839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "763", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T14:29:00" + }, + { + "id": "by573v48cybc1ckb8q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T02:29:00", + "amountCrypto": 0.00004597, + "pricePerUnit": 1430703, + "totalCost": 65.77, + "fee": 0.2309987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "764", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T02:29:00" + }, + { + "id": "6abmbcql9u6cjki6b1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T14:29:04", + "amountCrypto": 0.00004543, + "pricePerUnit": 1447563, + "totalCost": 65.76, + "fee": 0.2309754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "765", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T14:29:04" + }, + { + "id": "pgv43e83yi1jhrkay1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T02:29:03", + "amountCrypto": 0.00004529, + "pricePerUnit": 1452012, + "totalCost": 65.76, + "fee": 0.23097132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "766", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T02:29:03" + }, + { + "id": "mfkad2hbmfqpzshp09", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T14:29:03", + "amountCrypto": 0.00004613, + "pricePerUnit": 1425741, + "totalCost": 65.77, + "fee": 0.2309987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "767", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T14:29:03" + }, + { + "id": "mf8mpmb34g52pbrlyj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T02:29:03", + "amountCrypto": 0.0000463, + "pricePerUnit": 1420487, + "totalCost": 65.77, + "fee": 0.23099559, + "status": "completed", + "orderId": null, + "exchangeOrderId": "768", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T02:29:03" + }, + { + "id": "p0dr5ngea3q0z2xqa2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T14:29:04", + "amountCrypto": 0.00004577, + "pricePerUnit": 1436865, + "totalCost": 65.77, + "fee": 0.23098417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T14:29:04" + }, + { + "id": "ypuulih2hfte9mij28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T02:29:03", + "amountCrypto": 0.00004409, + "pricePerUnit": 1491707, + "totalCost": 65.77, + "fee": 0.23099844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T02:29:03" + }, + { + "id": "3b4h0h5avaxd724xkz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T14:29:04", + "amountCrypto": 0.00004373, + "pricePerUnit": 1503737, + "totalCost": 65.76, + "fee": 0.23096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T14:29:04" + }, + { + "id": "l50oaufkwdo1bgwuve", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T02:29:03", + "amountCrypto": 0.00004412, + "pricePerUnit": 1490487, + "totalCost": 65.76, + "fee": 0.23096657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T02:29:03" + }, + { + "id": "s56v84xmlod5zg0a5w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T14:29:04", + "amountCrypto": 0.00004351, + "pricePerUnit": 1511292, + "totalCost": 65.76, + "fee": 0.23095257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T14:29:04" + }, + { + "id": "0a3j245vbvwi5a1yek", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T02:29:03", + "amountCrypto": 0.00004317, + "pricePerUnit": 1523261, + "totalCost": 65.76, + "fee": 0.23096274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T02:29:03" + }, + { + "id": "snldr5ebvpl5a37c30", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T14:29:03", + "amountCrypto": 0.00004294, + "pricePerUnit": 1531493, + "totalCost": 65.76, + "fee": 0.23097366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T14:29:03" + }, + { + "id": "rh9yubrdw6vamrqjo4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T02:29:03", + "amountCrypto": 0.00004319, + "pricePerUnit": 1522682, + "totalCost": 65.76, + "fee": 0.23098184, + "status": "completed", + "orderId": null, + "exchangeOrderId": "776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T02:29:03" + }, + { + "id": "4whka9zqr8vh4yb2du", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T14:29:03", + "amountCrypto": 0.00004319, + "pricePerUnit": 1522700, + "totalCost": 65.77, + "fee": 0.23098458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T14:29:03" + }, + { + "id": "1hvovuwp8lz2pu2w5g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T02:29:04", + "amountCrypto": 0.00004359, + "pricePerUnit": 1508616, + "totalCost": 65.76, + "fee": 0.23096757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T02:29:04" + }, + { + "id": "eubcb5dfgb1flabcd8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T14:29:03", + "amountCrypto": 0.00004306, + "pricePerUnit": 1527342, + "totalCost": 65.77, + "fee": 0.2309913, + "status": "completed", + "orderId": null, + "exchangeOrderId": "779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T14:29:03" + }, + { + "id": "9zqd3ashehvr4812cl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T02:29:03", + "amountCrypto": 0.00004128, + "pricePerUnit": 1592959, + "totalCost": 65.76, + "fee": 0.23095619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T02:29:03" + }, + { + "id": "mttqjim86yc4giiaqw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T14:29:03", + "amountCrypto": 0.00004058, + "pricePerUnit": 1620629, + "totalCost": 65.77, + "fee": 0.23098362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T14:29:03" + }, + { + "id": "uxziwfu03upc2vyuik", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T02:29:03", + "amountCrypto": 0.00004111, + "pricePerUnit": 1599744, + "totalCost": 65.77, + "fee": 0.23098472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T02:29:03" + }, + { + "id": "vuj6b7zmbpxb4c5tp6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T14:29:03", + "amountCrypto": 0.0000411, + "pricePerUnit": 1599926, + "totalCost": 65.76, + "fee": 0.23095487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T14:29:03" + }, + { + "id": "ie7xe6ay6fbqvzasee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-23T02:29:03", + "amountCrypto": 0.00004144, + "pricePerUnit": 1586914, + "totalCost": 65.76, + "fee": 0.23097153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-23T02:29:03" + }, + { + "id": "u41wni6vq6x8m3nb0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-23T14:29:04", + "amountCrypto": 0.00004119, + "pricePerUnit": 1596533, + "totalCost": 65.76, + "fee": 0.23096969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-23T14:29:04" + }, + { + "id": "8e67agj71zfb302gs1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T02:29:03", + "amountCrypto": 0.00004238, + "pricePerUnit": 1551572, + "totalCost": 65.76, + "fee": 0.23095015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T02:29:03" + }, + { + "id": "fkp2kj4i2y04y9ogvj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T14:29:03", + "amountCrypto": 0.00004258, + "pricePerUnit": 1544549, + "totalCost": 65.77, + "fee": 0.23098983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T14:29:03" + }, + { + "id": "ksi6xz54dtwnp6ua2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T02:29:03", + "amountCrypto": 0.0000421, + "pricePerUnit": 1562004, + "totalCost": 65.76, + "fee": 0.23096681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T02:29:03" + }, + { + "id": "rxgu7ec1nll95n9jt9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T14:29:03", + "amountCrypto": 0.00004168, + "pricePerUnit": 1577802, + "totalCost": 65.76, + "fee": 0.23097535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T14:29:03" + }, + { + "id": "i2rid28ipbkntz3xzr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T02:29:03", + "amountCrypto": 0.00004169, + "pricePerUnit": 1577372, + "totalCost": 65.76, + "fee": 0.23096779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T02:29:03" + }, + { + "id": "1bs5b78b6vrrel5kz4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T14:29:03", + "amountCrypto": 0.00004182, + "pricePerUnit": 1572523, + "totalCost": 65.76, + "fee": 0.23097577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T14:29:03" + }, + { + "id": "e2olrk6wcyvykeceou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T14:29:03", + "amountCrypto": 0.00004243, + "pricePerUnit": 1549747, + "totalCost": 65.76, + "fee": 0.23095073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T14:29:03" + }, + { + "id": "qnen6t03oxv7mh8cr0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T02:29:03", + "amountCrypto": 0.00004232, + "pricePerUnit": 1554011, + "totalCost": 65.77, + "fee": 0.23098572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T02:29:03" + }, + { + "id": "ux91q7ehowxtv566ld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T14:29:04", + "amountCrypto": 0.00004212, + "pricePerUnit": 1561293, + "totalCost": 65.76, + "fee": 0.23097139, + "status": "completed", + "orderId": null, + "exchangeOrderId": "799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T14:29:04" + }, + { + "id": "gdyhorwt8d3tmxgtn5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T02:29:03", + "amountCrypto": 0.000042, + "pricePerUnit": 1565628, + "totalCost": 65.76, + "fee": 0.23095279, + "status": "completed", + "orderId": null, + "exchangeOrderId": "800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T02:29:03" + }, + { + "id": "dahg0wxrohfku6a91g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T14:29:03", + "amountCrypto": 0.000042, + "pricePerUnit": 1565774, + "totalCost": 65.76, + "fee": 0.23097438, + "status": "completed", + "orderId": null, + "exchangeOrderId": "801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T14:29:03" + }, + { + "id": "ttjv52amomqzgq849r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T02:29:03", + "amountCrypto": 0.00004258, + "pricePerUnit": 1544572, + "totalCost": 65.77, + "fee": 0.23099328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T02:29:03" + }, + { + "id": "88nek4zmf00plm4juy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T14:29:03", + "amountCrypto": 0.00004241, + "pricePerUnit": 1550454, + "totalCost": 65.75, + "fee": 0.23094714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T14:29:03" + }, + { + "id": "qd2bdzxia9stdozhbc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T02:29:03", + "amountCrypto": 0.00004244, + "pricePerUnit": 1549646, + "totalCost": 65.77, + "fee": 0.23099006, + "status": "completed", + "orderId": null, + "exchangeOrderId": "804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T02:29:03" + }, + { + "id": "pdxkegimfslpncz4yz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T14:29:03", + "amountCrypto": 0.00004222, + "pricePerUnit": 1557613, + "totalCost": 65.76, + "fee": 0.23097403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T14:29:03" + }, + { + "id": "hjt151vlfp9gu4zvol", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T02:29:03", + "amountCrypto": 0.00004245, + "pricePerUnit": 1549174, + "totalCost": 65.76, + "fee": 0.23097409, + "status": "completed", + "orderId": null, + "exchangeOrderId": "806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T02:29:03" + }, + { + "id": "2vl9xzatyfseobiox1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T14:29:03", + "amountCrypto": 0.00004145, + "pricePerUnit": 1586378, + "totalCost": 65.76, + "fee": 0.23094933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T14:29:03" + }, + { + "id": "ljmgiirfqv3jknakdr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T02:29:03", + "amountCrypto": 0.00004205, + "pricePerUnit": 1564000, + "totalCost": 65.77, + "fee": 0.23098729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T02:29:03" + }, + { + "id": "hd1fcv74z1rutinkus", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T14:29:03", + "amountCrypto": 0.00004165, + "pricePerUnit": 1578880, + "totalCost": 65.76, + "fee": 0.23096675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T14:29:03" + }, + { + "id": "h203vgn04k2ewuxw41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T02:29:03", + "amountCrypto": 0.00004115, + "pricePerUnit": 1597978, + "totalCost": 65.76, + "fee": 0.23095432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T02:29:03" + }, + { + "id": "4pgy25okn4yhvnz88k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T14:29:03", + "amountCrypto": 0.00004087, + "pricePerUnit": 1609067, + "totalCost": 65.76, + "fee": 0.23097453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T14:29:03" + }, + { + "id": "6acp9qfbktf100asxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T02:29:04", + "amountCrypto": 0.00004069, + "pricePerUnit": 1616295, + "totalCost": 65.77, + "fee": 0.23099025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T02:29:04" + }, + { + "id": "sg8s7ab9qvvgslxslu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T14:29:03", + "amountCrypto": 0.00004059, + "pricePerUnit": 1620002, + "totalCost": 65.76, + "fee": 0.23095107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T14:29:03" + }, + { + "id": "9hk8midfo12srrcjon", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T02:29:03", + "amountCrypto": 0.00004111, + "pricePerUnit": 1599744, + "totalCost": 65.77, + "fee": 0.23098472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T02:29:03" + }, + { + "id": "wy28mxq0drz7lxr6jd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T14:29:03", + "amountCrypto": 0.00004071, + "pricePerUnit": 1615364, + "totalCost": 65.76, + "fee": 0.23097076, + "status": "completed", + "orderId": null, + "exchangeOrderId": "815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T14:29:03" + }, + { + "id": "0dws9bbjbrjn2bxy9i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T02:29:03", + "amountCrypto": 0.00004136, + "pricePerUnit": 1590044, + "totalCost": 65.76, + "fee": 0.23098044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T02:29:03" + }, + { + "id": "u94u7oarllvsbsclga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T14:29:03", + "amountCrypto": 0.00004136, + "pricePerUnit": 1589886, + "totalCost": 65.76, + "fee": 0.23095743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T14:29:03" + }, + { + "id": "loaoys07dg39c1tpec", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T02:29:03", + "amountCrypto": 0.00004142, + "pricePerUnit": 1587854, + "totalCost": 65.77, + "fee": 0.23099686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T02:29:03" + }, + { + "id": "rybwhycdxlzt5kntp0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T14:29:03", + "amountCrypto": 0.00004139, + "pricePerUnit": 1588945, + "totalCost": 65.77, + "fee": 0.23098811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T14:29:03" + }, + { + "id": "1nax8jlv7mxc6r22w4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T02:29:03", + "amountCrypto": 0.00004122, + "pricePerUnit": 1595205, + "totalCost": 65.75, + "fee": 0.23094575, + "status": "completed", + "orderId": null, + "exchangeOrderId": "820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T02:29:03" + }, + { + "id": "7krgfaffmk6xmzwnoz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T14:29:03", + "amountCrypto": 0.00004125, + "pricePerUnit": 1594304, + "totalCost": 65.77, + "fee": 0.23098326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T14:29:03" + }, + { + "id": "ochya6w83vaz62hjti", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T02:29:04", + "amountCrypto": 0.00004141, + "pricePerUnit": 1588005, + "totalCost": 65.76, + "fee": 0.2309631, + "status": "completed", + "orderId": null, + "exchangeOrderId": "822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T02:29:04" + }, + { + "id": "zhqjrln26rjy6cmnhl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T14:29:03", + "amountCrypto": 0.00004254, + "pricePerUnit": 1545998, + "totalCost": 65.77, + "fee": 0.23098928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T14:29:03" + }, + { + "id": "ez2uf0zizp7kku2mog", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T02:29:03", + "amountCrypto": 0.00004228, + "pricePerUnit": 1555489, + "totalCost": 65.77, + "fee": 0.23098683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T02:29:03" + }, + { + "id": "8i4n7e380l2cewih4a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T14:29:04", + "amountCrypto": 0.00004206, + "pricePerUnit": 1563374, + "totalCost": 65.76, + "fee": 0.23094981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T14:29:04" + }, + { + "id": "12emam9zkm6l30k27a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T02:29:04", + "amountCrypto": 0.00004207, + "pricePerUnit": 1563140, + "totalCost": 65.76, + "fee": 0.23097006, + "status": "completed", + "orderId": null, + "exchangeOrderId": "826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T02:29:04" + }, + { + "id": "o73487tlr4wnj45ozp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T14:29:04", + "amountCrypto": 0.00004214, + "pricePerUnit": 1560465, + "totalCost": 65.76, + "fee": 0.2309585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T14:29:04" + }, + { + "id": "a4h2pnl0ukryjf5bte", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T02:29:03", + "amountCrypto": 0.00004255, + "pricePerUnit": 1545458, + "totalCost": 65.76, + "fee": 0.23096282, + "status": "completed", + "orderId": null, + "exchangeOrderId": "828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T02:29:03" + }, + { + "id": "91s5k7yl1rob1tp8bu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T14:29:03", + "amountCrypto": 0.00004218, + "pricePerUnit": 1559159, + "totalCost": 65.77, + "fee": 0.23098422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T14:29:03" + }, + { + "id": "ojhawhv7yuphuif6hb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T02:29:03", + "amountCrypto": 0.00004275, + "pricePerUnit": 1538396, + "totalCost": 65.77, + "fee": 0.23098815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T02:29:03" + }, + { + "id": "ktasctii6hu65759xe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T14:29:03", + "amountCrypto": 0.00004258, + "pricePerUnit": 1544446, + "totalCost": 65.76, + "fee": 0.23097439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T14:29:03" + }, + { + "id": "fm60bwib6jz38ve2in", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T02:29:03", + "amountCrypto": 0.00004278, + "pricePerUnit": 1537169, + "totalCost": 65.76, + "fee": 0.23096588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T02:29:03" + }, + { + "id": "b619oi34tiasdtrwga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T14:29:03", + "amountCrypto": 0.00004256, + "pricePerUnit": 1545288, + "totalCost": 65.77, + "fee": 0.23099178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T14:29:03" + }, + { + "id": "wawn1lams2vf7mngy9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T02:29:03", + "amountCrypto": 0.00004248, + "pricePerUnit": 1548032, + "totalCost": 65.76, + "fee": 0.23096696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T02:29:03" + }, + { + "id": "be4o47d1vaybq70fr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T14:29:03", + "amountCrypto": 0.00004318, + "pricePerUnit": 1523130, + "totalCost": 65.77, + "fee": 0.23099632, + "status": "completed", + "orderId": null, + "exchangeOrderId": "835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T14:29:03" + }, + { + "id": "espg6au8pgqvfokxqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T02:29:04", + "amountCrypto": 0.00004281, + "pricePerUnit": 1536088, + "totalCost": 65.76, + "fee": 0.23096535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T02:29:04" + }, + { + "id": "bo0vm0h4qzt1umzdwp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T14:29:04", + "amountCrypto": 0.00004331, + "pricePerUnit": 1518314, + "totalCost": 65.76, + "fee": 0.23095919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T14:29:04" + }, + { + "id": "jdp5thjbdqg2po5jnp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T02:29:03", + "amountCrypto": 0.00004338, + "pricePerUnit": 1516041, + "totalCost": 65.77, + "fee": 0.23098621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T02:29:03" + }, + { + "id": "z0v69l2ouqgw4cb995", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T14:29:06", + "amountCrypto": 0.00004329, + "pricePerUnit": 1519198, + "totalCost": 65.77, + "fee": 0.23098697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T14:29:06" + }, + { + "id": "q8kkubf65brajblt5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T02:29:03", + "amountCrypto": 0.00004353, + "pricePerUnit": 1510590, + "totalCost": 65.76, + "fee": 0.23095144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T02:29:03" + }, + { + "id": "larp0uwc3nl19ey58x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T14:29:04", + "amountCrypto": 0.00004284, + "pricePerUnit": 1534971, + "totalCost": 65.76, + "fee": 0.23095902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T14:29:04" + }, + { + "id": "jb1nkfp6i4c0kzutb1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T02:29:04", + "amountCrypto": 0.00004346, + "pricePerUnit": 1513238, + "totalCost": 65.77, + "fee": 0.23098419, + "status": "completed", + "orderId": null, + "exchangeOrderId": "842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T02:29:04" + }, + { + "id": "c6bthehr3b1fzjxtvy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T14:29:03", + "amountCrypto": 0.00004398, + "pricePerUnit": 1495261, + "totalCost": 65.76, + "fee": 0.23097108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T14:29:03" + }, + { + "id": "ahhnt77ddwf0fas9h3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T02:29:03", + "amountCrypto": 0.00004363, + "pricePerUnit": 1507184, + "totalCost": 65.76, + "fee": 0.23096015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T02:29:03" + }, + { + "id": "ytvkzffh1lovoxr8xa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T14:29:03", + "amountCrypto": 0.00004356, + "pricePerUnit": 1509752, + "totalCost": 65.76, + "fee": 0.23098239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T14:29:03" + }, + { + "id": "m1snqfgwvoqp4mqoqf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T02:29:03", + "amountCrypto": 0.00004356, + "pricePerUnit": 1509547, + "totalCost": 65.76, + "fee": 0.2309511, + "status": "completed", + "orderId": null, + "exchangeOrderId": "846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T02:29:03" + }, + { + "id": "rkl83pe1xyguwvnf1e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T14:29:03", + "amountCrypto": 0.00004353, + "pricePerUnit": 1510649, + "totalCost": 65.76, + "fee": 0.23096049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T14:29:03" + }, + { + "id": "ffs1tbzxxae5u00ua6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T02:29:03", + "amountCrypto": 0.00004435, + "pricePerUnit": 1482942, + "totalCost": 65.77, + "fee": 0.23099537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T02:29:03" + }, + { + "id": "frqls6l2k2x80dq4wo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T14:29:03", + "amountCrypto": 0.0000453, + "pricePerUnit": 1451661, + "totalCost": 65.76, + "fee": 0.23096634, + "status": "completed", + "orderId": null, + "exchangeOrderId": "849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T14:29:03" + }, + { + "id": "tsm2lp628uydzm8sk5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T02:29:03", + "amountCrypto": 0.00004595, + "pricePerUnit": 1431146, + "totalCost": 65.76, + "fee": 0.23096955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T02:29:03" + }, + { + "id": "t00j4m50w4wew7a7t9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T14:29:03", + "amountCrypto": 0.00004613, + "pricePerUnit": 1425576, + "totalCost": 65.76, + "fee": 0.2309719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T14:29:03" + }, + { + "id": "1w8haywla7et8m1ejs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T02:29:03", + "amountCrypto": 0.00004553, + "pricePerUnit": 1444316, + "totalCost": 65.76, + "fee": 0.23096457, + "status": "completed", + "orderId": null, + "exchangeOrderId": "852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T02:29:03" + }, + { + "id": "t2u1hiytuwfbiy1gm9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T14:29:04", + "amountCrypto": 0.00004571, + "pricePerUnit": 1438650, + "totalCost": 65.76, + "fee": 0.23096802, + "status": "completed", + "orderId": null, + "exchangeOrderId": "853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T14:29:04" + }, + { + "id": "6b4fr6wedrqfikfoac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T02:29:04", + "amountCrypto": 0.00004597, + "pricePerUnit": 1430513, + "totalCost": 65.76, + "fee": 0.23096795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T02:29:04" + }, + { + "id": "yf39wjfnndp0cfb67o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T14:29:03", + "amountCrypto": 0.00004571, + "pricePerUnit": 1438572, + "totalCost": 65.76, + "fee": 0.23095546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T14:29:03" + }, + { + "id": "w1blqs3favboo9uhgv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T02:29:03", + "amountCrypto": 0.00004542, + "pricePerUnit": 1447834, + "totalCost": 65.76, + "fee": 0.23096774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T02:29:03" + }, + { + "id": "7tppvj9vb7vx35ao8p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T14:29:03", + "amountCrypto": 0.00004538, + "pricePerUnit": 1449009, + "totalCost": 65.76, + "fee": 0.2309516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T14:29:03" + }, + { + "id": "5rhr48wc7t35nornyj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T02:29:03", + "amountCrypto": 0.00004581, + "pricePerUnit": 1435503, + "totalCost": 65.76, + "fee": 0.230967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T02:29:03" + }, + { + "id": "fvjm3lc3em9pcejsag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T14:29:03", + "amountCrypto": 0.00004585, + "pricePerUnit": 1434254, + "totalCost": 65.76, + "fee": 0.23096752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "860", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T14:29:03" + }, + { + "id": "hfpcqhs83981nwwcpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T02:29:03", + "amountCrypto": 0.00004591, + "pricePerUnit": 1432355, + "totalCost": 65.76, + "fee": 0.23096344, + "status": "completed", + "orderId": null, + "exchangeOrderId": "861", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T02:29:03" + }, + { + "id": "y20vojs7b47qwfwnx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T14:29:03", + "amountCrypto": 0.0000455, + "pricePerUnit": 1445212, + "totalCost": 65.76, + "fee": 0.23095561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "862", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T14:29:03" + }, + { + "id": "sih4qr02s2cra713is", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T02:29:05", + "amountCrypto": 0.00004478, + "pricePerUnit": 1468418, + "totalCost": 65.76, + "fee": 0.23095068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "863", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T02:29:05" + }, + { + "id": "2oyk29zjihgpe94f28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T14:29:03", + "amountCrypto": 0.00004467, + "pricePerUnit": 1472168, + "totalCost": 65.76, + "fee": 0.23097176, + "status": "completed", + "orderId": null, + "exchangeOrderId": "864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T14:29:03" + }, + { + "id": "ws82j91a6n26f9eqzi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T02:29:03", + "amountCrypto": 0.00004446, + "pricePerUnit": 1479251, + "totalCost": 65.77, + "fee": 0.23099191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T02:29:03" + }, + { + "id": "o1elt4fc2gqai7lnmz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T14:29:03", + "amountCrypto": 0.00004444, + "pricePerUnit": 1479743, + "totalCost": 65.76, + "fee": 0.23096483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T14:29:03" + }, + { + "id": "mw4o3mppl6zwo00sf0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T02:29:03", + "amountCrypto": 0.00004509, + "pricePerUnit": 1458625, + "totalCost": 65.77, + "fee": 0.23099855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T02:29:03" + }, + { + "id": "l8njf977yewux2pynr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T14:29:03", + "amountCrypto": 0.00004636, + "pricePerUnit": 1418649, + "totalCost": 65.77, + "fee": 0.23099573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T14:29:03" + }, + { + "id": "efy9rpmpau7m06neuj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T02:29:03", + "amountCrypto": 0.00004636, + "pricePerUnit": 1418442, + "totalCost": 65.76, + "fee": 0.23096194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T02:29:03" + }, + { + "id": "7m2dxdprq6e4t5mb76", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T14:29:03", + "amountCrypto": 0.00004893, + "pricePerUnit": 1343897, + "totalCost": 65.76, + "fee": 0.23095455, + "status": "completed", + "orderId": null, + "exchangeOrderId": "870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T14:29:03" + }, + { + "id": "5k21p6tle5rrdihtxl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T02:29:03", + "amountCrypto": 0.00004937, + "pricePerUnit": 1332056, + "totalCost": 65.76, + "fee": 0.23097827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T02:29:03" + }, + { + "id": "h93tzek1g7zfidyrwr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T14:29:03", + "amountCrypto": 0.00005056, + "pricePerUnit": 1300620, + "totalCost": 65.76, + "fee": 0.2309633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T14:29:03" + }, + { + "id": "dzudfivzu6i0zvdoyv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T02:29:03", + "amountCrypto": 0.0000498, + "pricePerUnit": 1320424, + "totalCost": 65.76, + "fee": 0.23095549, + "status": "completed", + "orderId": null, + "exchangeOrderId": "873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T02:29:03" + }, + { + "id": "0cke5iug57rq0a7ckn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T14:29:03", + "amountCrypto": 0.00004957, + "pricePerUnit": 1326631, + "totalCost": 65.76, + "fee": 0.23096938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T14:29:03" + }, + { + "id": "xl8p2x8eup727lot18", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T02:29:03", + "amountCrypto": 0.00004849, + "pricePerUnit": 1356313, + "totalCost": 65.77, + "fee": 0.23099224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T02:29:03" + }, + { + "id": "g3xb3v8eomxrc1bdvs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T14:29:04", + "amountCrypto": 0.00004897, + "pricePerUnit": 1342896, + "totalCost": 65.76, + "fee": 0.23097128, + "status": "completed", + "orderId": null, + "exchangeOrderId": "876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T14:29:04" + }, + { + "id": "hadyeaxlaurkmpy9gx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T02:29:03", + "amountCrypto": 0.00005019, + "pricePerUnit": 1310288, + "totalCost": 65.76, + "fee": 0.23097737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T02:29:03" + }, + { + "id": "q8830szar8r9pwlfgi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T14:29:03", + "amountCrypto": 0.00004924, + "pricePerUnit": 1335440, + "totalCost": 65.76, + "fee": 0.2309552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T14:29:03" + }, + { + "id": "304rp6yun2zci5qwnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T02:29:03", + "amountCrypto": 0.00004977, + "pricePerUnit": 1321461, + "totalCost": 65.77, + "fee": 0.23099756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T02:29:03" + }, + { + "id": "hjhi1j3hfd6ss7vj3k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T14:29:03", + "amountCrypto": 0.00004884, + "pricePerUnit": 1346473, + "totalCost": 65.76, + "fee": 0.23097169, + "status": "completed", + "orderId": null, + "exchangeOrderId": "880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T14:29:03" + }, + { + "id": "clr6z50x4rzpf8bf7a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T02:29:03", + "amountCrypto": 0.00004852, + "pricePerUnit": 1355320, + "totalCost": 65.76, + "fee": 0.23096602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T02:29:03" + }, + { + "id": "t3s4k1e3csasvdc0ck", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T14:29:03", + "amountCrypto": 0.00004764, + "pricePerUnit": 1380341, + "totalCost": 65.76, + "fee": 0.23096366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T14:29:03" + }, + { + "id": "uond5iwuer5xdp0fyi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T02:29:03", + "amountCrypto": 0.00004848, + "pricePerUnit": 1356604, + "totalCost": 65.77, + "fee": 0.23099427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T02:29:03" + }, + { + "id": "ga2n43dwph2hqwovy3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T14:29:03", + "amountCrypto": 0.00004763, + "pricePerUnit": 1380804, + "totalCost": 65.77, + "fee": 0.23099266, + "status": "completed", + "orderId": null, + "exchangeOrderId": "884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T14:29:03" + }, + { + "id": "bs4be5vfrgdskuqvdv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T02:29:03", + "amountCrypto": 0.00004885, + "pricePerUnit": 1346335, + "totalCost": 65.77, + "fee": 0.23099525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T02:29:03" + }, + { + "id": "mslg3sqycmwtv0vvr5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T14:29:03", + "amountCrypto": 0.00004885, + "pricePerUnit": 1346226, + "totalCost": 65.76, + "fee": 0.23097667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T14:29:03" + }, + { + "id": "3ijyryffnismr9bdcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T02:29:03", + "amountCrypto": 0.00004872, + "pricePerUnit": 1349716, + "totalCost": 65.76, + "fee": 0.23095914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T02:29:03" + }, + { + "id": "mcrlfjxeae5h7txy5a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T14:29:04", + "amountCrypto": 0.00004805, + "pricePerUnit": 1368494, + "totalCost": 65.76, + "fee": 0.23095196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T14:29:04" + }, + { + "id": "h7rkl5krkox4f51z8p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T02:29:03", + "amountCrypto": 0.00004727, + "pricePerUnit": 1391173, + "totalCost": 65.76, + "fee": 0.23096822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T02:29:03" + }, + { + "id": "sxgxmcyruyy10zt2ms", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T14:29:03", + "amountCrypto": 0.00004686, + "pricePerUnit": 1403249, + "totalCost": 65.76, + "fee": 0.23095242, + "status": "completed", + "orderId": null, + "exchangeOrderId": "890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T14:29:03" + }, + { + "id": "uxl4agj9pgr1veatg4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T02:29:03", + "amountCrypto": 0.00004606, + "pricePerUnit": 1427897, + "totalCost": 65.77, + "fee": 0.23099702, + "status": "completed", + "orderId": null, + "exchangeOrderId": "891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T02:29:03" + }, + { + "id": "cxmizirt9jslugodyy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T14:29:03", + "amountCrypto": 0.00004475, + "pricePerUnit": 1469552, + "totalCost": 65.76, + "fee": 0.23097417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T14:29:03" + }, + { + "id": "ejdsuhubdjerlgs3uc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T02:29:03", + "amountCrypto": 0.0000434, + "pricePerUnit": 1515118, + "totalCost": 65.76, + "fee": 0.23095197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T02:29:03" + }, + { + "id": "7k7972qtg0f45o1nsg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T14:29:03", + "amountCrypto": 0.00004394, + "pricePerUnit": 1493670, + "totalCost": 65.63, + "fee": 0.23051548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T14:29:03" + }, + { + "id": "rogmmboid89jiupe2r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T02:29:04", + "amountCrypto": 0.00004321, + "pricePerUnit": 1521802, + "totalCost": 65.76, + "fee": 0.23095522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T02:29:04" + }, + { + "id": "1yu12b3y8wbysljgdw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T14:29:03", + "amountCrypto": 0.00004358, + "pricePerUnit": 1509079, + "totalCost": 65.77, + "fee": 0.23098548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T14:29:03" + }, + { + "id": "nawhet21rpo6tsfixc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T02:29:03", + "amountCrypto": 0.00004412, + "pricePerUnit": 1487674, + "totalCost": 65.64, + "fee": 0.23053064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T02:29:03" + }, + { + "id": "qwbq5x96t1hwik5xb2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T14:29:03", + "amountCrypto": 0.00004367, + "pricePerUnit": 1505779, + "totalCost": 65.76, + "fee": 0.23095632, + "status": "completed", + "orderId": null, + "exchangeOrderId": "898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T14:29:03" + }, + { + "id": "wskf0t8agdw9pf3wgr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T02:29:05", + "amountCrypto": 0.0000442, + "pricePerUnit": 1487765, + "totalCost": 65.76, + "fee": 0.23096283, + "status": "completed", + "orderId": null, + "exchangeOrderId": "899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T02:29:05" + }, + { + "id": "ssu988fb9kdm6e8kiu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T14:29:03", + "amountCrypto": 0.00004395, + "pricePerUnit": 1496309, + "totalCost": 65.76, + "fee": 0.2309754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T14:29:03" + }, + { + "id": "ke363ncojtjuz5pr8r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T02:29:03", + "amountCrypto": 0.00004248, + "pricePerUnit": 1548185, + "totalCost": 65.77, + "fee": 0.23098985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T02:29:03" + }, + { + "id": "qfm6elsj2f6ry275w6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T14:29:03", + "amountCrypto": 0.00004251, + "pricePerUnit": 1547067, + "totalCost": 65.77, + "fee": 0.23098593, + "status": "completed", + "orderId": null, + "exchangeOrderId": "902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T14:29:03" + }, + { + "id": "gb37hqe6kerw57kkz1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T02:29:03", + "amountCrypto": 0.00004207, + "pricePerUnit": 1562990, + "totalCost": 65.75, + "fee": 0.23094799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T02:29:03" + }, + { + "id": "ej4aqd0bk4pu5qm3s3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T14:29:03", + "amountCrypto": 0.00004221, + "pricePerUnit": 1557802, + "totalCost": 65.75, + "fee": 0.23094742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T14:29:03" + }, + { + "id": "9kq5reor0ppil4i8gh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T02:29:04", + "amountCrypto": 0.00004171, + "pricePerUnit": 1576509, + "totalCost": 65.76, + "fee": 0.23095215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T02:29:04" + }, + { + "id": "y8egnfjuqh3n1684pa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T14:29:03", + "amountCrypto": 0.00004183, + "pricePerUnit": 1572069, + "totalCost": 65.76, + "fee": 0.23096428, + "status": "completed", + "orderId": null, + "exchangeOrderId": "906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T14:29:03" + }, + { + "id": "ld91z772vdh8e43te3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-23T02:29:03", + "amountCrypto": 0.00004177, + "pricePerUnit": 1574287, + "totalCost": 65.76, + "fee": 0.23095846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-23T02:29:03" + }, + { + "id": "iapats7x6iyj9gkcbv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-23T14:29:03", + "amountCrypto": 0.00004217, + "pricePerUnit": 1559317, + "totalCost": 65.76, + "fee": 0.23095291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-23T14:29:03" + }, + { + "id": "ldxtcvadtvc7hziva1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T02:29:04", + "amountCrypto": 0.00004253, + "pricePerUnit": 1546343, + "totalCost": 65.77, + "fee": 0.23098649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T02:29:04" + }, + { + "id": "qvnwxqw76505ps1s8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T14:29:04", + "amountCrypto": 0.00004209, + "pricePerUnit": 1562564, + "totalCost": 65.77, + "fee": 0.23099479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T14:29:04" + }, + { + "id": "bi0zb5snr36xow7dmx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T02:29:03", + "amountCrypto": 0.00004266, + "pricePerUnit": 1541486, + "totalCost": 65.76, + "fee": 0.23096479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T02:29:03" + }, + { + "id": "9isv2349t93t8rmakl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T14:29:03", + "amountCrypto": 0.0000435, + "pricePerUnit": 1511602, + "totalCost": 65.75, + "fee": 0.23094697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T14:29:03" + }, + { + "id": "zohqw4hmlco4rw1zf3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T02:29:03", + "amountCrypto": 0.00004246, + "pricePerUnit": 1548939, + "totalCost": 65.77, + "fee": 0.23099352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T02:29:03" + }, + { + "id": "r7r2sdc45h8d13q8ps", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T14:29:03", + "amountCrypto": 0.00004168, + "pricePerUnit": 1577662, + "totalCost": 65.76, + "fee": 0.2309548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T14:29:03" + }, + { + "id": "iyhnl30m3cgicn2qhz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T02:29:04", + "amountCrypto": 0.00004144, + "pricePerUnit": 1586944, + "totalCost": 65.76, + "fee": 0.23097591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T02:29:04" + }, + { + "id": "mo2x6cqec93xiifhu2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T14:29:03", + "amountCrypto": 0.00004114, + "pricePerUnit": 1598606, + "totalCost": 65.77, + "fee": 0.23098887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T14:29:03" + }, + { + "id": "v1g9037cq46q8kmf41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T02:29:03", + "amountCrypto": 0.0000414, + "pricePerUnit": 1588478, + "totalCost": 65.76, + "fee": 0.23097599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T02:29:03" + }, + { + "id": "3m3gbbmyw967pd72qz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T14:29:03", + "amountCrypto": 0.00004139, + "pricePerUnit": 1588937, + "totalCost": 65.77, + "fee": 0.23098694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T14:29:03" + }, + { + "id": "8tx96t626afat0nwvz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T02:29:03", + "amountCrypto": 0.00004083, + "pricePerUnit": 1607485, + "totalCost": 65.63, + "fee": 0.23052159, + "status": "completed", + "orderId": null, + "exchangeOrderId": "919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T02:29:03" + }, + { + "id": "zl4fk7llwmvpnzou8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T14:29:04", + "amountCrypto": 0.00004029, + "pricePerUnit": 1632158, + "totalCost": 65.76, + "fee": 0.23096432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T14:29:04" + }, + { + "id": "4owlqrfxl79segogym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T02:29:03", + "amountCrypto": 0.00004211, + "pricePerUnit": 1561555, + "totalCost": 65.76, + "fee": 0.23095525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T02:29:03" + }, + { + "id": "p8ql0krgprrtiy49kc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T14:29:03", + "amountCrypto": 0.00004208, + "pricePerUnit": 1562921, + "totalCost": 65.77, + "fee": 0.23099266, + "status": "completed", + "orderId": null, + "exchangeOrderId": "922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T14:29:03" + }, + { + "id": "1rk99afjqj0muoe0l7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T02:29:04", + "amountCrypto": 0.00004226, + "pricePerUnit": 1556107, + "totalCost": 65.76, + "fee": 0.23096937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T02:29:04" + }, + { + "id": "axuens3b4idaojca59", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T14:29:03", + "amountCrypto": 0.00004221, + "pricePerUnit": 1558038, + "totalCost": 65.76, + "fee": 0.23098234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T14:29:03" + }, + { + "id": "52x3pumbkyytfmlbps", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T02:29:03", + "amountCrypto": 0.00004311, + "pricePerUnit": 1525344, + "totalCost": 65.76, + "fee": 0.230957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T02:29:03" + }, + { + "id": "st6p10b2zjrm6lddrg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T14:29:03", + "amountCrypto": 0.00004283, + "pricePerUnit": 1535379, + "totalCost": 65.76, + "fee": 0.23096649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T14:29:03" + }, + { + "id": "pbrg7b0xw0v9goqnto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T02:29:04", + "amountCrypto": 0.00004282, + "pricePerUnit": 1535803, + "totalCost": 65.76, + "fee": 0.23097633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T02:29:04" + }, + { + "id": "cw0dprxlikdmbb2eqo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T14:29:03", + "amountCrypto": 0.00004347, + "pricePerUnit": 1512654, + "totalCost": 65.76, + "fee": 0.23094825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T14:29:03" + }, + { + "id": "gi00devgejerbmu09e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T02:29:04", + "amountCrypto": 0.00004573, + "pricePerUnit": 1438039, + "totalCost": 65.76, + "fee": 0.23097086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T02:29:04" + }, + { + "id": "y8gt5hkm4klv12j0k0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T14:29:03", + "amountCrypto": 0.0000454, + "pricePerUnit": 1448515, + "totalCost": 65.76, + "fee": 0.23097458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T14:29:03" + }, + { + "id": "davaucki577pa6c7fh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T02:29:03", + "amountCrypto": 0.00004651, + "pricePerUnit": 1414064, + "totalCost": 65.77, + "fee": 0.23099408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T02:29:03" + }, + { + "id": "t0c6my8adg53my7hj9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T14:29:03", + "amountCrypto": 0.00004619, + "pricePerUnit": 1423760, + "totalCost": 65.76, + "fee": 0.23097779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T14:29:03" + }, + { + "id": "t25qabkyv7shsiuf9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T02:29:05", + "amountCrypto": 0.00004909, + "pricePerUnit": 1339560, + "totalCost": 65.76, + "fee": 0.23096204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T02:29:05" + }, + { + "id": "wxsve69jdclak6s8r5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T14:29:03", + "amountCrypto": 0.00005631, + "pricePerUnit": 1167908, + "totalCost": 65.76, + "fee": 0.23098284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T14:29:03" + }, + { + "id": "a2s5g4d6zgsef8l46k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T02:29:03", + "amountCrypto": 0.00005089, + "pricePerUnit": 1292173, + "totalCost": 65.76, + "fee": 0.23096097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T02:29:03" + }, + { + "id": "oy2tvsvakymofvg9u1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T14:29:04", + "amountCrypto": 0.00005095, + "pricePerUnit": 1290754, + "totalCost": 65.76, + "fee": 0.23097925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T14:29:04" + }, + { + "id": "i3gsghqlr9mnnuyon8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T02:29:03", + "amountCrypto": 0.00005046, + "pricePerUnit": 1303252, + "totalCost": 65.76, + "fee": 0.23097287, + "status": "completed", + "orderId": null, + "exchangeOrderId": "937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T02:29:03" + }, + { + "id": "95u2oamhfqqt4xcdd2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T14:29:03", + "amountCrypto": 0.00004943, + "pricePerUnit": 1330306, + "totalCost": 65.76, + "fee": 0.2309551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T14:29:03" + }, + { + "id": "dy4ia0yye1bfrffzby", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T02:29:04", + "amountCrypto": 0.00005146, + "pricePerUnit": 1277841, + "totalCost": 65.76, + "fee": 0.23095739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T02:29:04" + }, + { + "id": "awbwx02h7me7jxfp7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T14:29:04", + "amountCrypto": 0.0000495, + "pricePerUnit": 1328639, + "totalCost": 65.77, + "fee": 0.23099232, + "status": "completed", + "orderId": null, + "exchangeOrderId": "940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T14:29:04" + }, + { + "id": "3l73g39qvd0xuy0y4d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T02:29:04", + "amountCrypto": 0.00004601, + "pricePerUnit": 1429388, + "totalCost": 65.77, + "fee": 0.23098716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T02:29:04" + }, + { + "id": "c93zvdh8rumpy7mvbb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T14:29:04", + "amountCrypto": 0.00004685, + "pricePerUnit": 1403816, + "totalCost": 65.77, + "fee": 0.23099633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T14:29:04" + }, + { + "id": "u06v0u3ed6qdrunag1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T02:29:03", + "amountCrypto": 0.00004635, + "pricePerUnit": 1418813, + "totalCost": 65.76, + "fee": 0.2309725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T02:29:03" + }, + { + "id": "kjjrivgg0p35yg068k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T14:29:03", + "amountCrypto": 0.00004647, + "pricePerUnit": 1415314, + "totalCost": 65.77, + "fee": 0.23099945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T14:29:03" + }, + { + "id": "diqzvyqmj7yq9zllls", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T02:29:03", + "amountCrypto": 0.00004631, + "pricePerUnit": 1420064, + "totalCost": 65.76, + "fee": 0.23097667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T02:29:03" + }, + { + "id": "5kjpkgswarz5zij2d5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T14:29:03", + "amountCrypto": 0.00004672, + "pricePerUnit": 1407558, + "totalCost": 65.76, + "fee": 0.23096944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T14:29:03" + }, + { + "id": "29tfjk68i6793xolqt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T02:29:03", + "amountCrypto": 0.00004821, + "pricePerUnit": 1363961, + "totalCost": 65.76, + "fee": 0.2309534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T02:29:03" + }, + { + "id": "ad9ek4swheepxzlgbp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T14:29:03", + "amountCrypto": 0.00004754, + "pricePerUnit": 1383270, + "totalCost": 65.76, + "fee": 0.23096779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T14:29:03" + }, + { + "id": "wcbcjzpa8xj2m5vzl9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T14:29:03", + "amountCrypto": 0.00004819, + "pricePerUnit": 1364651, + "totalCost": 65.76, + "fee": 0.2309745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T14:29:03" + }, + { + "id": "lptfqq5yihntuvbrmm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T02:29:03", + "amountCrypto": 0.00004715, + "pricePerUnit": 1394895, + "totalCost": 65.77, + "fee": 0.23099829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T02:29:03" + }, + { + "id": "d8douk627f910khvvd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T14:29:03", + "amountCrypto": 0.00004665, + "pricePerUnit": 1409675, + "totalCost": 65.76, + "fee": 0.23097029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T14:29:03" + }, + { + "id": "h6izhcxyghay83omfa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T02:29:03", + "amountCrypto": 0.00004867, + "pricePerUnit": 1351326, + "totalCost": 65.77, + "fee": 0.23099733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T02:29:03" + }, + { + "id": "wsoi21xp4596e4w2jb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T14:29:03", + "amountCrypto": 0.00004876, + "pricePerUnit": 1348825, + "totalCost": 65.77, + "fee": 0.23099613, + "status": "completed", + "orderId": null, + "exchangeOrderId": "954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T14:29:03" + }, + { + "id": "8kzgz8tihku7ph61cj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T02:29:04", + "amountCrypto": 0.00004955, + "pricePerUnit": 1327194, + "totalCost": 65.76, + "fee": 0.23097424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T02:29:04" + }, + { + "id": "hfvgf8e1zhtgfmu98v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T14:29:03", + "amountCrypto": 0.00004903, + "pricePerUnit": 1341314, + "totalCost": 65.76, + "fee": 0.23098185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T14:29:03" + }, + { + "id": "5d6axl22ujrb6zaqys", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T02:29:05", + "amountCrypto": 0.0000486, + "pricePerUnit": 1353011, + "totalCost": 65.76, + "fee": 0.23095275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T02:29:05" + }, + { + "id": "ntzb1g5zsntk5bpbqg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T14:29:03", + "amountCrypto": 0.00004845, + "pricePerUnit": 1357303, + "totalCost": 65.76, + "fee": 0.23097024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T14:29:03" + }, + { + "id": "vqlhv6gixbpndfi61g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T02:29:03", + "amountCrypto": 0.00004813, + "pricePerUnit": 1366411, + "totalCost": 65.77, + "fee": 0.23098433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T02:29:03" + }, + { + "id": "oxx27beuu7vrw7o783", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T14:29:03", + "amountCrypto": 0.00004779, + "pricePerUnit": 1376191, + "totalCost": 65.77, + "fee": 0.23099424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T14:29:03" + }, + { + "id": "khgdwyoktbv0ianznc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T02:29:03", + "amountCrypto": 0.00004903, + "pricePerUnit": 1341346, + "totalCost": 65.77, + "fee": 0.23098738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T02:29:03" + }, + { + "id": "3gorbu17bz9sbau45a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T14:29:03", + "amountCrypto": 0.00004913, + "pricePerUnit": 1338476, + "totalCost": 65.76, + "fee": 0.23096323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T14:29:03" + }, + { + "id": "k5xzu3abb855220se8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T02:29:04", + "amountCrypto": 0.00004805, + "pricePerUnit": 1368694, + "totalCost": 65.77, + "fee": 0.2309858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T02:29:04" + }, + { + "id": "6r9ryocp7541icdf79", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T14:29:03", + "amountCrypto": 0.00004743, + "pricePerUnit": 1386570, + "totalCost": 65.77, + "fee": 0.23098313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T14:29:03" + }, + { + "id": "1lcuitl7unh2na61gi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T14:29:03", + "amountCrypto": 0.00004883, + "pricePerUnit": 1346799, + "totalCost": 65.76, + "fee": 0.23098028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T14:29:03" + }, + { + "id": "4n06fuy41o56j1vvyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T02:29:09", + "amountCrypto": 0.00004773, + "pricePerUnit": 1377824, + "totalCost": 65.76, + "fee": 0.23097799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T02:29:09" + }, + { + "id": "60w51mhw85f2nglm91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T14:29:04", + "amountCrypto": 0.0000475, + "pricePerUnit": 1384447, + "totalCost": 65.76, + "fee": 0.23096997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T14:29:04" + }, + { + "id": "3u7mzozza13jyubmqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T02:29:03", + "amountCrypto": 0.00004786, + "pricePerUnit": 1374135, + "totalCost": 65.77, + "fee": 0.23098696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T02:29:03" + }, + { + "id": "mvy78ocepw6ri6n9xc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T14:29:03", + "amountCrypto": 0.00004774, + "pricePerUnit": 1377480, + "totalCost": 65.76, + "fee": 0.23096873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T14:29:03" + }, + { + "id": "5ax6tgfq5sec82ii82", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T02:29:04", + "amountCrypto": 0.00004582, + "pricePerUnit": 1435174, + "totalCost": 65.76, + "fee": 0.23096434, + "status": "completed", + "orderId": null, + "exchangeOrderId": "971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T02:29:04" + }, + { + "id": "0m6cga7zfp5warrftz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T14:29:06", + "amountCrypto": 0.0000457, + "pricePerUnit": 1439076, + "totalCost": 65.77, + "fee": 0.23098587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T14:29:06" + }, + { + "id": "nosv3ilm2k8u11q3np", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T02:29:03", + "amountCrypto": 0.00004556, + "pricePerUnit": 1443344, + "totalCost": 65.76, + "fee": 0.23096115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T02:29:03" + }, + { + "id": "uiwp3uplnmp78n8ztb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T14:29:03", + "amountCrypto": 0.0000459, + "pricePerUnit": 1432678, + "totalCost": 65.76, + "fee": 0.23096533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T14:29:03" + }, + { + "id": "lmz7hdvz7vawry15re", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T02:29:03", + "amountCrypto": 0.00004559, + "pricePerUnit": 1442516, + "totalCost": 65.76, + "fee": 0.23098064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T02:29:03" + }, + { + "id": "4o4zv6p4r6ffak1dn7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T14:29:04", + "amountCrypto": 0.00004578, + "pricePerUnit": 1436412, + "totalCost": 65.76, + "fee": 0.23096178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T14:29:04" + }, + { + "id": "7hxhzyjo2kpkapwhuv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T02:29:03", + "amountCrypto": 0.00004636, + "pricePerUnit": 1415708, + "totalCost": 65.63, + "fee": 0.23051678, + "status": "completed", + "orderId": null, + "exchangeOrderId": "977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T02:29:03" + }, + { + "id": "3vtj2b127b2pjoktoo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T14:29:03", + "amountCrypto": 0.0000468, + "pricePerUnit": 1405325, + "totalCost": 65.77, + "fee": 0.23099797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T14:29:03" + }, + { + "id": "d1etyawos8tctn9594", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T02:29:03", + "amountCrypto": 0.00004943, + "pricePerUnit": 1330442, + "totalCost": 65.76, + "fee": 0.23097877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T02:29:03" + }, + { + "id": "hfj0vjh3em7kggg7j5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T14:29:03", + "amountCrypto": 0.00004834, + "pricePerUnit": 1360292, + "totalCost": 65.76, + "fee": 0.2309534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T14:29:03" + }, + { + "id": "sswb4bkoflwbrlin1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T02:29:04", + "amountCrypto": 0.00004917, + "pricePerUnit": 1337570, + "totalCost": 65.77, + "fee": 0.23099477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T02:29:04" + }, + { + "id": "ts4p6o11yahq1psh07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T14:29:03", + "amountCrypto": 0.00004819, + "pricePerUnit": 1364539, + "totalCost": 65.76, + "fee": 0.2309555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T14:29:03" + }, + { + "id": "s6vmjdf7ym7etaw63g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T02:29:04", + "amountCrypto": 0.00004882, + "pricePerUnit": 1347140, + "totalCost": 65.77, + "fee": 0.23099142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T02:29:04" + }, + { + "id": "rfxw6ramr209lolts9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T14:29:04", + "amountCrypto": 0.00004869, + "pricePerUnit": 1350725, + "totalCost": 65.77, + "fee": 0.23098939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T14:29:04" + }, + { + "id": "9d8369fpj25zoxx8wa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T02:29:03", + "amountCrypto": 0.00004876, + "pricePerUnit": 1348611, + "totalCost": 65.76, + "fee": 0.23095956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T02:29:03" + }, + { + "id": "229wdvx4eb8wox16hy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T14:29:03", + "amountCrypto": 0.00004892, + "pricePerUnit": 1344283, + "totalCost": 65.76, + "fee": 0.23097367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T14:29:03" + }, + { + "id": "12plpvyifv6gjz3rqq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T02:29:05", + "amountCrypto": 0.00004903, + "pricePerUnit": 1341267, + "totalCost": 65.76, + "fee": 0.23097374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T02:29:05" + }, + { + "id": "iemz9h9ih0rwnsqtkr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T14:29:03", + "amountCrypto": 0.00004976, + "pricePerUnit": 1321615, + "totalCost": 65.76, + "fee": 0.23097813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T14:29:03" + }, + { + "id": "2cn7pgzmo7ceswjzsc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T02:29:04", + "amountCrypto": 0.00005016, + "pricePerUnit": 1311130, + "totalCost": 65.77, + "fee": 0.23098767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T02:29:04" + }, + { + "id": "d6ak10d9exy6cb3usj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T14:29:03", + "amountCrypto": 0.00004954, + "pricePerUnit": 1327451, + "totalCost": 65.76, + "fee": 0.23097228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T14:29:03" + }, + { + "id": "jy860w6ccbo35s19fy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T02:29:03", + "amountCrypto": 0.00004894, + "pricePerUnit": 1343620, + "totalCost": 65.76, + "fee": 0.23095419, + "status": "completed", + "orderId": null, + "exchangeOrderId": "991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T02:29:03" + }, + { + "id": "yruwjmeo1xh8b2ey1q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T14:29:03", + "amountCrypto": 0.00004872, + "pricePerUnit": 1349936, + "totalCost": 65.77, + "fee": 0.23099671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T14:29:03" + }, + { + "id": "n71r74eb2y3xrux8ce", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T02:29:04", + "amountCrypto": 0.00004985, + "pricePerUnit": 1319288, + "totalCost": 65.77, + "fee": 0.23098833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T02:29:04" + }, + { + "id": "mut8ypjtldl6igl8iz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T14:29:03", + "amountCrypto": 0.00005097, + "pricePerUnit": 1290321, + "totalCost": 65.77, + "fee": 0.23099239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T14:29:03" + }, + { + "id": "siuxe02cadken2xlqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T02:29:03", + "amountCrypto": 0.00004976, + "pricePerUnit": 1321598, + "totalCost": 65.76, + "fee": 0.23097515, + "status": "completed", + "orderId": null, + "exchangeOrderId": "995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T02:29:03" + }, + { + "id": "kkhvxtrncab0es99yt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T14:29:03", + "amountCrypto": 0.00005139, + "pricePerUnit": 1279668, + "totalCost": 65.76, + "fee": 0.23097309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T14:29:03" + }, + { + "id": "idgeu6xoeshpjl9nq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T02:29:03", + "amountCrypto": 0.00005168, + "pricePerUnit": 1272507, + "totalCost": 65.76, + "fee": 0.23097672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T02:29:03" + }, + { + "id": "0fbxqy1nc1a0r6o095", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T14:29:03", + "amountCrypto": 0.00005199, + "pricePerUnit": 1264857, + "totalCost": 65.76, + "fee": 0.23096531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T14:29:03" + }, + { + "id": "iats8k4yp9e2bzlgkz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T02:29:04", + "amountCrypto": 0.00005362, + "pricePerUnit": 1226582, + "totalCost": 65.77, + "fee": 0.23099835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T02:29:04" + }, + { + "id": "xhdcj0yyzwlgv3qor1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T14:29:03", + "amountCrypto": 0.00005316, + "pricePerUnit": 1237134, + "totalCost": 65.77, + "fee": 0.23098686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T14:29:03" + }, + { + "id": "iuooc1xvbucwcr9y03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T02:29:04", + "amountCrypto": 0.00005353, + "pricePerUnit": 1228533, + "totalCost": 65.76, + "fee": 0.2309774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T02:29:04" + }, + { + "id": "gr058mpjeatqhthbyu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T14:29:03", + "amountCrypto": 0.00005322, + "pricePerUnit": 1235757, + "totalCost": 65.77, + "fee": 0.2309901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T14:29:03" + }, + { + "id": "asu5kipcl6fsheyk6m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T02:29:04", + "amountCrypto": 0.00005267, + "pricePerUnit": 1248643, + "totalCost": 65.77, + "fee": 0.23098673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T02:29:04" + }, + { + "id": "x2pu006ebciy7e9p7s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T14:29:03", + "amountCrypto": 0.00005245, + "pricePerUnit": 1253741, + "totalCost": 65.76, + "fee": 0.23096099, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T14:29:03" + }, + { + "id": "cndr41i0y5z3sw9a9u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T02:29:03", + "amountCrypto": 0.00005087, + "pricePerUnit": 1292821, + "totalCost": 65.77, + "fee": 0.23098591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T02:29:03" + }, + { + "id": "fhk1dq6dosuddteo03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T14:29:04", + "amountCrypto": 0.00005034, + "pricePerUnit": 1306266, + "totalCost": 65.76, + "fee": 0.23095657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T14:29:04" + }, + { + "id": "tbzsjotskctyu41si3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T02:29:03", + "amountCrypto": 0.00005009, + "pricePerUnit": 1312929, + "totalCost": 65.76, + "fee": 0.23098172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T02:29:03" + }, + { + "id": "hykpp4d51p7sjplwni", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T14:29:03", + "amountCrypto": 0.00005077, + "pricePerUnit": 1295267, + "totalCost": 65.76, + "fee": 0.23096801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T14:29:03" + }, + { + "id": "xq0uzo1k64ga7j9p0f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T02:29:03", + "amountCrypto": 0.00004998, + "pricePerUnit": 1315730, + "totalCost": 65.76, + "fee": 0.23096616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T02:29:03" + }, + { + "id": "4dpq095ekednu7ixj4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T14:29:03", + "amountCrypto": 0.00004945, + "pricePerUnit": 1329823, + "totalCost": 65.76, + "fee": 0.23096463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T14:29:03" + }, + { + "id": "1mvghv3wvabetlz28u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T02:29:03", + "amountCrypto": 0.00004975, + "pricePerUnit": 1321806, + "totalCost": 65.76, + "fee": 0.23096499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T02:29:03" + }, + { + "id": "fl990l3kgp43k026sk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T14:29:03", + "amountCrypto": 0.00005004, + "pricePerUnit": 1314273, + "totalCost": 65.77, + "fee": 0.23098742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T14:29:03" + }, + { + "id": "yc0ozhprbs21n5lmxz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T02:29:03", + "amountCrypto": 0.00004777, + "pricePerUnit": 1376593, + "totalCost": 65.76, + "fee": 0.23096502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T02:29:03" + }, + { + "id": "cm3d3305yuttqnsez7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T14:29:03", + "amountCrypto": 0.00004833, + "pricePerUnit": 1360825, + "totalCost": 65.77, + "fee": 0.23099598, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T14:29:03" + }, + { + "id": "gqkzfwuf3moya0c2cz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T02:29:04", + "amountCrypto": 0.00004816, + "pricePerUnit": 1365391, + "totalCost": 65.76, + "fee": 0.23095585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T02:29:04" + }, + { + "id": "p0iawj841rbbvtrjqz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T14:29:03", + "amountCrypto": 0.00004822, + "pricePerUnit": 1363810, + "totalCost": 65.76, + "fee": 0.23097584, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T14:29:03" + }, + { + "id": "97u121dpszmymr1vjq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T02:29:03", + "amountCrypto": 0.00004909, + "pricePerUnit": 1339527, + "totalCost": 65.76, + "fee": 0.23095633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T02:29:03" + }, + { + "id": "h7cm3joif94v0usxzh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T14:29:03", + "amountCrypto": 0.00004946, + "pricePerUnit": 1329743, + "totalCost": 65.77, + "fee": 0.2309974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T14:29:03" + }, + { + "id": "omvx3dc7kjhdohwmuu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T02:29:05", + "amountCrypto": 0.00004984, + "pricePerUnit": 1319606, + "totalCost": 65.77, + "fee": 0.2309978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T02:29:05" + }, + { + "id": "4ao5ayg2s536avyg5a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T14:29:03", + "amountCrypto": 0.000049, + "pricePerUnit": 1342142, + "totalCost": 65.76, + "fee": 0.23098303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T14:29:03" + }, + { + "id": "rwn8t07d45coap74sk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T02:29:03", + "amountCrypto": 0.00004831, + "pricePerUnit": 1361171, + "totalCost": 65.76, + "fee": 0.23095907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T02:29:03" + }, + { + "id": "znx56lqq6zi19gxhpk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T14:29:03", + "amountCrypto": 0.00004859, + "pricePerUnit": 1353404, + "totalCost": 65.76, + "fee": 0.23097229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T14:29:03" + }, + { + "id": "r3a8ceut9io74l630v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T02:29:04", + "amountCrypto": 0.00004665, + "pricePerUnit": 1409675, + "totalCost": 65.76, + "fee": 0.23097029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T02:29:04" + }, + { + "id": "2zrsu0rc8tlcji8y5o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T14:29:05", + "amountCrypto": 0.00004628, + "pricePerUnit": 1420891, + "totalCost": 65.76, + "fee": 0.23096148, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T14:29:05" + }, + { + "id": "fixrxus7boadm1tpgk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T02:29:03", + "amountCrypto": 0.00004635, + "pricePerUnit": 1418703, + "totalCost": 65.76, + "fee": 0.23095455, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T02:29:03" + }, + { + "id": "akz2hybp2nq6utqqyu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T14:29:03", + "amountCrypto": 0.00004601, + "pricePerUnit": 1429233, + "totalCost": 65.76, + "fee": 0.23096205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T14:29:03" + }, + { + "id": "4fu5wk3r63wukvb3lx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T02:29:03", + "amountCrypto": 0.00004621, + "pricePerUnit": 1423100, + "totalCost": 65.76, + "fee": 0.23097058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T02:29:03" + }, + { + "id": "ahgcv2r1cosjvgnp5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T14:29:03", + "amountCrypto": 0.00004625, + "pricePerUnit": 1421824, + "totalCost": 65.76, + "fee": 0.23096337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T14:29:03" + }, + { + "id": "ktf9bfbt99vm7y2ut1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T02:29:03", + "amountCrypto": 0.00004618, + "pricePerUnit": 1424088, + "totalCost": 65.76, + "fee": 0.23098095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T02:29:03" + }, + { + "id": "54xrghdmcwlfk2ffsx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T14:29:04", + "amountCrypto": 0.00004642, + "pricePerUnit": 1416610, + "totalCost": 65.76, + "fee": 0.23096224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T14:29:04" + }, + { + "id": "bbozzmciw4er9ky91d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T02:29:03", + "amountCrypto": 0.00004621, + "pricePerUnit": 1423114, + "totalCost": 65.76, + "fee": 0.23097286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T02:29:03" + }, + { + "id": "1r9byggem74g4j8veh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T14:29:03", + "amountCrypto": 0.0000457, + "pricePerUnit": 1439087, + "totalCost": 65.77, + "fee": 0.23098764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T14:29:03" + }, + { + "id": "hokuvdki7x9qybmp3f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T02:29:03", + "amountCrypto": 0.00004575, + "pricePerUnit": 1437421, + "totalCost": 65.76, + "fee": 0.23097264, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T02:29:03" + }, + { + "id": "ztse2xj3clb11yovzk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T14:29:04", + "amountCrypto": 0.00004563, + "pricePerUnit": 1441363, + "totalCost": 65.77, + "fee": 0.23099854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T14:29:04" + }, + { + "id": "t45ob10pwgdcrjctiz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T02:29:03", + "amountCrypto": 0.00004556, + "pricePerUnit": 1443578, + "totalCost": 65.77, + "fee": 0.23099869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T02:29:03" + }, + { + "id": "xfzu8g72wfgalvyuh9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T14:29:04", + "amountCrypto": 0.00004574, + "pricePerUnit": 1437772, + "totalCost": 65.76, + "fee": 0.23097852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T14:29:04" + }, + { + "id": "tfdd475x2n3kv0nmxp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T02:29:09", + "amountCrypto": 0.00004582, + "pricePerUnit": 1435270, + "totalCost": 65.76, + "fee": 0.23097982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T02:29:09" + }, + { + "id": "lfzos50lr2mmgwjwfq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T14:29:03", + "amountCrypto": 0.00004511, + "pricePerUnit": 1457812, + "totalCost": 65.76, + "fee": 0.2309722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T14:29:03" + }, + { + "id": "1e5syzz2hk3ve3ge3c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T02:29:04", + "amountCrypto": 0.0000447, + "pricePerUnit": 1471108, + "totalCost": 65.76, + "fee": 0.23096036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T02:29:04" + }, + { + "id": "gz2vr2vfn42dpm0dfo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T14:29:03", + "amountCrypto": 0.00004437, + "pricePerUnit": 1482127, + "totalCost": 65.76, + "fee": 0.23097253, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T14:29:03" + }, + { + "id": "s0dp7lq6sj9mt2ph4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T02:29:03", + "amountCrypto": 0.00004423, + "pricePerUnit": 1486820, + "totalCost": 65.76, + "fee": 0.23097274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T02:29:03" + }, + { + "id": "mqj1un9d3pzmgpotwz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T14:29:08", + "amountCrypto": 0.00004429, + "pricePerUnit": 1484694, + "totalCost": 65.76, + "fee": 0.2309553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T14:29:08" + }, + { + "id": "tpzfwol4wrsgviims4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T02:29:11", + "amountCrypto": 0.00004413, + "pricePerUnit": 1490093, + "totalCost": 65.76, + "fee": 0.23095785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T02:29:11" + }, + { + "id": "5x35zjfw3s4gr7rmxm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T14:29:03", + "amountCrypto": 0.00004426, + "pricePerUnit": 1485975, + "totalCost": 65.77, + "fee": 0.23099803, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T14:29:03" + }, + { + "id": "co8bpfvcf0xx9slylv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T02:29:04", + "amountCrypto": 0.00004456, + "pricePerUnit": 1475767, + "totalCost": 65.76, + "fee": 0.23096625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T02:29:04" + }, + { + "id": "4cpmf7a7hvidzgdw5p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T14:29:03", + "amountCrypto": 0.00004558, + "pricePerUnit": 1442876, + "totalCost": 65.77, + "fee": 0.23098759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T14:29:03" + }, + { + "id": "f7vvwnfqkvjgj5lobi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T02:29:03", + "amountCrypto": 0.00004568, + "pricePerUnit": 1439727, + "totalCost": 65.77, + "fee": 0.23098917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T02:29:03" + }, + { + "id": "bmepmagzfbuvgnbkks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T14:29:03", + "amountCrypto": 0.00004505, + "pricePerUnit": 1459627, + "totalCost": 65.76, + "fee": 0.23095225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T14:29:03" + }, + { + "id": "upu90jwoua3g6k9c5w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T02:29:04", + "amountCrypto": 0.00004704, + "pricePerUnit": 1398058, + "totalCost": 65.76, + "fee": 0.23098194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T02:29:04" + }, + { + "id": "jtw8veo59j7tb4kwsf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T14:29:08", + "amountCrypto": 0.00004697, + "pricePerUnit": 1399989, + "totalCost": 65.76, + "fee": 0.23095674, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T14:29:08" + }, + { + "id": "upbmrvj7xj3to4kdop", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T02:29:03", + "amountCrypto": 0.00004697, + "pricePerUnit": 1400199, + "totalCost": 65.77, + "fee": 0.2309913, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T02:29:03" + }, + { + "id": "73p6xeqaa1aktizppf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T14:29:03", + "amountCrypto": 0.00004709, + "pricePerUnit": 1396543, + "totalCost": 65.76, + "fee": 0.23097676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T14:29:03" + }, + { + "id": "0e08xnyw9ikqrsuxob", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T02:29:03", + "amountCrypto": 0.00004703, + "pricePerUnit": 1398176, + "totalCost": 65.76, + "fee": 0.23095221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T02:29:03" + }, + { + "id": "ojuydj6z1scfq8ycud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T14:29:04", + "amountCrypto": 0.00004629, + "pricePerUnit": 1420690, + "totalCost": 65.76, + "fee": 0.23097862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T14:29:04" + }, + { + "id": "tre79o5jp1mnqzqxyq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T02:29:03", + "amountCrypto": 0.00004562, + "pricePerUnit": 1441583, + "totalCost": 65.77, + "fee": 0.23098325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T02:29:03" + }, + { + "id": "n2kgzh0cirxrmt56a0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T14:29:06", + "amountCrypto": 0.00004558, + "pricePerUnit": 1442818, + "totalCost": 65.76, + "fee": 0.23097829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T14:29:06" + }, + { + "id": "y1nkugm97thxrlv6wv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T02:29:06", + "amountCrypto": 0.00004577, + "pricePerUnit": 1436866, + "totalCost": 65.77, + "fee": 0.23098433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T02:29:06" + }, + { + "id": "z4emgejx5l10rct94t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T14:29:03", + "amountCrypto": 0.00004564, + "pricePerUnit": 1440830, + "totalCost": 65.76, + "fee": 0.23096367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T14:29:03" + }, + { + "id": "1n996dnhbkf2s30toe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T02:29:03", + "amountCrypto": 0.00004516, + "pricePerUnit": 1456146, + "totalCost": 65.76, + "fee": 0.23096394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T02:29:03" + }, + { + "id": "4qo5hpkidats6mnbsx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T14:29:03", + "amountCrypto": 0.00004507, + "pricePerUnit": 1459267, + "totalCost": 65.77, + "fee": 0.23099781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T14:29:03" + }, + { + "id": "3xh7i067mnjncznr0i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T02:29:04", + "amountCrypto": 0.00004538, + "pricePerUnit": 1449157, + "totalCost": 65.76, + "fee": 0.23097525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T02:29:04" + }, + { + "id": "2kvz64rbiy14mm0vg8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T14:29:03", + "amountCrypto": 0.00004542, + "pricePerUnit": 1447933, + "totalCost": 65.77, + "fee": 0.23098357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T14:29:03" + }, + { + "id": "c7tg93cv3kdvjyi46p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T02:29:06", + "amountCrypto": 0.00004565, + "pricePerUnit": 1440689, + "totalCost": 65.77, + "fee": 0.23099178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T02:29:06" + }, + { + "id": "4tvsjikfu8ojszz206", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T14:29:07", + "amountCrypto": 0.00004561, + "pricePerUnit": 1441806, + "totalCost": 65.76, + "fee": 0.23096827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T14:29:07" + }, + { + "id": "9hyaoivnd1lpfyy9uj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T02:29:04", + "amountCrypto": 0.00004685, + "pricePerUnit": 1403689, + "totalCost": 65.76, + "fee": 0.23097555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T02:29:04" + }, + { + "id": "xjvupe7r5stvxjfec1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T14:29:04", + "amountCrypto": 0.00004618, + "pricePerUnit": 1424090, + "totalCost": 65.76, + "fee": 0.23098128, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T14:29:04" + }, + { + "id": "9hvrjlmtprv0divios", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T02:29:03", + "amountCrypto": 0.00004691, + "pricePerUnit": 1401755, + "totalCost": 65.76, + "fee": 0.23095274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T02:29:03" + }, + { + "id": "m2dwfj3ma8oiintdbn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T14:29:07", + "amountCrypto": 0.00004627, + "pricePerUnit": 1421307, + "totalCost": 65.76, + "fee": 0.23097918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T14:29:07" + }, + { + "id": "ge3fvgb90zzay7mevy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T02:29:04", + "amountCrypto": 0.0000452, + "pricePerUnit": 1454782, + "totalCost": 65.76, + "fee": 0.23095207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T02:29:04" + }, + { + "id": "9vtsx8mzames196wv3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T14:29:03", + "amountCrypto": 0.00004502, + "pricePerUnit": 1460615, + "totalCost": 65.76, + "fee": 0.23095459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T14:29:03" + }, + { + "id": "8hyfs2upyt8jihb84f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T02:29:03", + "amountCrypto": 0.00004486, + "pricePerUnit": 1465967, + "totalCost": 65.76, + "fee": 0.23097709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T02:29:03" + }, + { + "id": "kyudox2ttwpqx0n54g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T14:29:06", + "amountCrypto": 0.00004516, + "pricePerUnit": 1456217, + "totalCost": 65.76, + "fee": 0.23097523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T14:29:06" + }, + { + "id": "ln6mq946z7q2bwz0b3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T02:29:03", + "amountCrypto": 0.00004514, + "pricePerUnit": 1456773, + "totalCost": 65.76, + "fee": 0.23096114, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T02:29:03" + }, + { + "id": "3nga5qlk0bjf0ukdn8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T14:29:03", + "amountCrypto": 0.00004373, + "pricePerUnit": 1503728, + "totalCost": 65.76, + "fee": 0.23095861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T14:29:03" + }, + { + "id": "32mndecevgndye3ypt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T02:29:03", + "amountCrypto": 0.00004301, + "pricePerUnit": 1529090, + "totalCost": 65.77, + "fee": 0.23098719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T02:29:03" + }, + { + "id": "0t3mrrk6mek8m9xq1w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T14:29:07", + "amountCrypto": 0.00004325, + "pricePerUnit": 1520680, + "totalCost": 65.77, + "fee": 0.23099861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T14:29:07" + }, + { + "id": "ih7b7o4yzvq45fthmw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T14:29:03", + "amountCrypto": 0.00004165, + "pricePerUnit": 1578822, + "totalCost": 65.76, + "fee": 0.23095824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T14:29:03" + }, + { + "id": "zd375e01aahqy3dmo3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T02:29:04", + "amountCrypto": 0.00004164, + "pricePerUnit": 1579217, + "totalCost": 65.76, + "fee": 0.2309607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T02:29:04" + }, + { + "id": "rzeiw52sfbhpuurums", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T14:29:03", + "amountCrypto": 0.00004211, + "pricePerUnit": 1561523, + "totalCost": 65.76, + "fee": 0.2309505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T14:29:03" + }, + { + "id": "12jds2ogzp3zo0g3fk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T02:29:04", + "amountCrypto": 0.0000418, + "pricePerUnit": 1573168, + "totalCost": 65.76, + "fee": 0.23096009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T02:29:04" + }, + { + "id": "vl8hsqabzqalvr3q0s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T14:29:03", + "amountCrypto": 0.00004163, + "pricePerUnit": 1579778, + "totalCost": 65.77, + "fee": 0.23098717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T14:29:03" + }, + { + "id": "8o3rsqee0vjs9pzv8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T02:29:03", + "amountCrypto": 0.00004137, + "pricePerUnit": 1589601, + "totalCost": 65.76, + "fee": 0.2309719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T02:29:03" + }, + { + "id": "86pp0f0y3yqb1f86r9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T14:29:03", + "amountCrypto": 0.00004146, + "pricePerUnit": 1586317, + "totalCost": 65.77, + "fee": 0.23099615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T14:29:03" + }, + { + "id": "pb6dgabk37v31opzw5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T02:29:03", + "amountCrypto": 0.00004144, + "pricePerUnit": 1586873, + "totalCost": 65.76, + "fee": 0.23096555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T02:29:03" + }, + { + "id": "vfxz4l7h0biiuwjqso", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T14:29:03", + "amountCrypto": 0.00004135, + "pricePerUnit": 1590455, + "totalCost": 65.77, + "fee": 0.23098429, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T14:29:03" + }, + { + "id": "6wtuyv595q6fr9inag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T02:29:09", + "amountCrypto": 0.00004111, + "pricePerUnit": 1599591, + "totalCost": 65.76, + "fee": 0.23096272, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T02:29:09" + }, + { + "id": "tp7ybxmigt5yc589rp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T14:29:07", + "amountCrypto": 0.00004132, + "pricePerUnit": 1591614, + "totalCost": 65.77, + "fee": 0.23098489, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T14:29:07" + }, + { + "id": "5pjz1618vm2akgitcc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T02:29:04", + "amountCrypto": 0.00004191, + "pricePerUnit": 1568947, + "totalCost": 65.75, + "fee": 0.23094648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T02:29:04" + }, + { + "id": "lrrkr9kfrzphhfn96i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T14:29:04", + "amountCrypto": 0.0000419, + "pricePerUnit": 1569584, + "totalCost": 65.77, + "fee": 0.23098506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T14:29:04" + }, + { + "id": "bqs23hnuicv2bi4ivv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T02:29:04", + "amountCrypto": 0.00004173, + "pricePerUnit": 1575910, + "totalCost": 65.76, + "fee": 0.23097517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T02:29:04" + }, + { + "id": "grfq20cn1przvuvsi3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T14:29:03", + "amountCrypto": 0.0000422, + "pricePerUnit": 1558174, + "totalCost": 65.75, + "fee": 0.23094783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1092", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T14:29:03" + }, + { + "id": "ys1w2mt4gj7iqn2a5z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T02:29:04", + "amountCrypto": 0.00004208, + "pricePerUnit": 1562863, + "totalCost": 65.77, + "fee": 0.23098407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1093", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T02:29:04" + }, + { + "id": "ss3j9a9o2ofitpmhdl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T14:29:06", + "amountCrypto": 0.00004172, + "pricePerUnit": 1576375, + "totalCost": 65.77, + "fee": 0.23098798, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1094", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T14:29:06" + }, + { + "id": "atc6itgk5jlsbhe97h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T02:29:03", + "amountCrypto": 0.00004139, + "pricePerUnit": 1589012, + "totalCost": 65.77, + "fee": 0.23099787, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1095", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T02:29:03" + }, + { + "id": "nzgvw3qey2uz5d68n1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T14:29:03", + "amountCrypto": 0.00004137, + "pricePerUnit": 1589757, + "totalCost": 65.77, + "fee": 0.23099448, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T14:29:03" + }, + { + "id": "smclu90i9ppzjvxsed", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T02:29:04", + "amountCrypto": 0.00004199, + "pricePerUnit": 1566278, + "totalCost": 65.77, + "fee": 0.23099375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T02:29:04" + }, + { + "id": "j0dpcqltrnhwtsuvns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T14:29:04", + "amountCrypto": 0.00004176, + "pricePerUnit": 1574831, + "totalCost": 65.76, + "fee": 0.23098286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T14:29:04" + }, + { + "id": "zuphipxbn2wwwh0ukk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T02:29:03", + "amountCrypto": 0.00004171, + "pricePerUnit": 1576775, + "totalCost": 65.77, + "fee": 0.23099121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T02:29:03" + }, + { + "id": "igiwqqxvdsna2pwk5l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T13:29:05", + "amountCrypto": 0.0000416, + "pricePerUnit": 1580628, + "totalCost": 65.75, + "fee": 0.23094493, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T13:29:05" + }, + { + "id": "ir4oezp20avdpm9mq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T01:29:04", + "amountCrypto": 0.00004117, + "pricePerUnit": 1597280, + "totalCost": 65.76, + "fee": 0.23096568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T01:29:04" + }, + { + "id": "954t3znawclaei7wyp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T13:29:04", + "amountCrypto": 0.00004077, + "pricePerUnit": 1609802, + "totalCost": 65.63, + "fee": 0.23051464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T13:29:04" + }, + { + "id": "5yra7owsfw7b0gys1k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T01:29:03", + "amountCrypto": 0.00004013, + "pricePerUnit": 1638567, + "totalCost": 65.76, + "fee": 0.23095043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T01:29:03" + }, + { + "id": "iw0bywgr6g4bomk055", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T13:29:03", + "amountCrypto": 0.00003928, + "pricePerUnit": 1670832, + "totalCost": 65.63, + "fee": 0.23050997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T13:29:03" + }, + { + "id": "tm9pu5ij17f9wh4i17", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T01:29:05", + "amountCrypto": 0.00003901, + "pricePerUnit": 1685699, + "totalCost": 65.76, + "fee": 0.23096248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T01:29:05" + }, + { + "id": "zsft0fesu1t7te6z6r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T13:29:05", + "amountCrypto": 0.00003889, + "pricePerUnit": 1691003, + "totalCost": 65.76, + "fee": 0.23097651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T13:29:05" + }, + { + "id": "lixq0ze7p5tv1vi6uq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T01:29:04", + "amountCrypto": 0.00003885, + "pricePerUnit": 1692700, + "totalCost": 65.76, + "fee": 0.23097039, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T01:29:04" + }, + { + "id": "svxli7w8ncbkaksfzi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T13:29:05", + "amountCrypto": 0.00003906, + "pricePerUnit": 1683692, + "totalCost": 65.77, + "fee": 0.23098317, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T13:29:05" + }, + { + "id": "t8aj5ctmnrmeacicxs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T01:29:04", + "amountCrypto": 0.00004005, + "pricePerUnit": 1641912, + "totalCost": 65.76, + "fee": 0.2309606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T01:29:04" + }, + { + "id": "a8rybuobd5d2450w3o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T01:29:03", + "amountCrypto": 0.00003688, + "pricePerUnit": 1783340, + "totalCost": 65.77, + "fee": 0.23099917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T01:29:03" + }, + { + "id": "9hwq8djbhw5g3qxrtz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T13:29:03", + "amountCrypto": 0.00003726, + "pricePerUnit": 1764749, + "totalCost": 65.75, + "fee": 0.23094635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T13:29:03" + }, + { + "id": "a25ete4yn0rukky6ou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T01:29:04", + "amountCrypto": 0.00003678, + "pricePerUnit": 1787797, + "totalCost": 65.76, + "fee": 0.23094859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T01:29:04" + }, + { + "id": "q52wzdy4tna89n4rqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T13:29:04", + "amountCrypto": 0.00003684, + "pricePerUnit": 1785147, + "totalCost": 65.76, + "fee": 0.23098251, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T13:29:04" + }, + { + "id": "x4tfwlhvjdhppc46f9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T01:29:04", + "amountCrypto": 0.00003634, + "pricePerUnit": 1809449, + "totalCost": 65.76, + "fee": 0.23094928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T01:29:04" + }, + { + "id": "jf7v023iocncxu2kgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T13:29:03", + "amountCrypto": 0.00003636, + "pricePerUnit": 1808363, + "totalCost": 65.75, + "fee": 0.2309378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T13:29:03" + }, + { + "id": "19l7s4d4qzlbc541c0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T01:29:03", + "amountCrypto": 0.00003629, + "pricePerUnit": 1812009, + "totalCost": 65.76, + "fee": 0.23095786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T01:29:03" + }, + { + "id": "wbd5gicwkzfs5o4yx4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T13:29:04", + "amountCrypto": 0.00003507, + "pricePerUnit": 1875052, + "totalCost": 65.76, + "fee": 0.23095875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T13:29:04" + }, + { + "id": "fv9pevxzr8za02hbou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T01:29:04", + "amountCrypto": 0.00003456, + "pricePerUnit": 1902591, + "totalCost": 65.75, + "fee": 0.2309429, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T01:29:04" + }, + { + "id": "3k93gwl823wuaho7eu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T13:29:03", + "amountCrypto": 0.00003375, + "pricePerUnit": 1948265, + "totalCost": 65.75, + "fee": 0.23094424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T13:29:03" + }, + { + "id": "v8rjsd26pzsghlbas7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T01:29:03", + "amountCrypto": 0.00003177, + "pricePerUnit": 2069569, + "totalCost": 65.75, + "fee": 0.23093117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T01:29:03" + }, + { + "id": "uznk36p63dopz7e521", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T13:29:04", + "amountCrypto": 0.00003188, + "pricePerUnit": 2062846, + "totalCost": 65.76, + "fee": 0.230978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T13:29:04" + }, + { + "id": "g0sk8rz4furzcy42v3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T01:29:04", + "amountCrypto": 0.00003259, + "pricePerUnit": 2017718, + "totalCost": 65.76, + "fee": 0.23095656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T01:29:04" + }, + { + "id": "40fzdjej68kftt0kfm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T13:29:03", + "amountCrypto": 0.00003145, + "pricePerUnit": 2090635, + "totalCost": 65.75, + "fee": 0.23093214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T13:29:03" + }, + { + "id": "exnsbot1kyol5hynjj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T01:29:04", + "amountCrypto": 0.00003046, + "pricePerUnit": 2158973, + "totalCost": 65.76, + "fee": 0.23097373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T01:29:04" + }, + { + "id": "wjgoziv41tnz88g0h2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T01:29:03", + "amountCrypto": 0.000031, + "pricePerUnit": 2121451, + "totalCost": 65.76, + "fee": 0.23098303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T01:29:03" + }, + { + "id": "xznadkclol083yiq75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T13:29:03", + "amountCrypto": 0.00003034, + "pricePerUnit": 2167194, + "totalCost": 65.75, + "fee": 0.23093977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T13:29:03" + }, + { + "id": "ym9uhukzewslvekqt8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T01:29:03", + "amountCrypto": 0.00003009, + "pricePerUnit": 2185360, + "totalCost": 65.76, + "fee": 0.2309567, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T01:29:03" + }, + { + "id": "kyuzcbxbr1awexol98", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T13:29:03", + "amountCrypto": 0.00003016, + "pricePerUnit": 2180109, + "totalCost": 65.75, + "fee": 0.23093774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T13:29:03" + }, + { + "id": "a1d75qxrxzo7kfvcxn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T01:29:03", + "amountCrypto": 0.00003022, + "pricePerUnit": 2175703, + "totalCost": 65.75, + "fee": 0.23092952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T01:29:03" + }, + { + "id": "zh3jz522i7qwbkxdoq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T13:29:03", + "amountCrypto": 0.00003018, + "pricePerUnit": 2178742, + "totalCost": 65.75, + "fee": 0.23094605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T13:29:03" + }, + { + "id": "w1h1e3c46pozzz4vir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T01:29:03", + "amountCrypto": 0.00003052, + "pricePerUnit": 2154570, + "totalCost": 65.76, + "fee": 0.23095673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T01:29:03" + }, + { + "id": "q1hkg5dozm0gmuc1vm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T13:29:03", + "amountCrypto": 0.00003018, + "pricePerUnit": 2178596, + "totalCost": 65.75, + "fee": 0.23093053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T13:29:03" + }, + { + "id": "62u0ap36rsx0kldcsy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T01:29:03", + "amountCrypto": 0.00003036, + "pricePerUnit": 2166290, + "totalCost": 65.77, + "fee": 0.23099569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T01:29:03" + }, + { + "id": "ub8l4mj5aa1na1njgg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T13:29:04", + "amountCrypto": 0.00002975, + "pricePerUnit": 2210493, + "totalCost": 65.76, + "fee": 0.2309732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T13:29:04" + }, + { + "id": "k1hs231dvq4p3fx38z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T01:29:03", + "amountCrypto": 0.00002986, + "pricePerUnit": 2202448, + "totalCost": 65.77, + "fee": 0.23098349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T01:29:03" + }, + { + "id": "ifl4ruhff065hfvwso", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T13:29:04", + "amountCrypto": 0.00002926, + "pricePerUnit": 2247599, + "totalCost": 65.76, + "fee": 0.23098228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T13:29:04" + }, + { + "id": "vypu6i7dqxeqhb9fdv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T01:29:04", + "amountCrypto": 0.00002892, + "pricePerUnit": 2274110, + "totalCost": 65.77, + "fee": 0.2309911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T01:29:04" + }, + { + "id": "jrmm698drel587pwgp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T13:29:03", + "amountCrypto": 0.00002778, + "pricePerUnit": 2366679, + "totalCost": 65.75, + "fee": 0.23091763, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T13:29:03" + }, + { + "id": "zjte4b95i1t1vnrx9o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T01:29:03", + "amountCrypto": 0.00002762, + "pricePerUnit": 2380590, + "totalCost": 65.75, + "fee": 0.23093709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T01:29:03" + }, + { + "id": "1snqihefofr77xb5ey", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T13:29:03", + "amountCrypto": 0.00002733, + "pricePerUnit": 2405954, + "totalCost": 65.75, + "fee": 0.23094703, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T13:29:03" + }, + { + "id": "cf6utto7r5koq39reu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T01:29:03", + "amountCrypto": 0.0000273, + "pricePerUnit": 2408683, + "totalCost": 65.76, + "fee": 0.23095516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T01:29:03" + }, + { + "id": "dmklevgraytwl0lstp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T13:29:03", + "amountCrypto": 0.00002743, + "pricePerUnit": 2396907, + "totalCost": 65.75, + "fee": 0.23092041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T13:29:03" + }, + { + "id": "8ldxuq8s3bg27xgf1a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T01:29:03", + "amountCrypto": 0.00002762, + "pricePerUnit": 2380615, + "totalCost": 65.75, + "fee": 0.23093953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T01:29:03" + }, + { + "id": "aimw12ouebcfsuaqsi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T13:29:03", + "amountCrypto": 0.00002777, + "pricePerUnit": 2367719, + "totalCost": 65.75, + "fee": 0.2309359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T13:29:03" + }, + { + "id": "si0c8wlklsht756hix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T01:29:03", + "amountCrypto": 0.00002776, + "pricePerUnit": 2368758, + "totalCost": 65.76, + "fee": 0.23095401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T01:29:03" + }, + { + "id": "7886apcyvul5sl1pt9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T13:29:03", + "amountCrypto": 0.00002766, + "pricePerUnit": 2377226, + "totalCost": 65.75, + "fee": 0.2309447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T13:29:03" + }, + { + "id": "c9i9j4phnu2dzzof95", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T01:29:03", + "amountCrypto": 0.00002884, + "pricePerUnit": 2280324, + "totalCost": 65.76, + "fee": 0.2309815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T01:29:03" + }, + { + "id": "yn2xhgnjbtdkd3phhe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T13:29:04", + "amountCrypto": 0.00002955, + "pricePerUnit": 2225532, + "totalCost": 65.76, + "fee": 0.23098123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T13:29:04" + }, + { + "id": "hielmubirsyf3x8it4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T01:29:03", + "amountCrypto": 0.00002949, + "pricePerUnit": 2230239, + "totalCost": 65.77, + "fee": 0.23099983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T01:29:03" + }, + { + "id": "bpxbgtcmbbagmqac96", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T13:29:03", + "amountCrypto": 0.00002927, + "pricePerUnit": 2246463, + "totalCost": 65.75, + "fee": 0.23094435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T13:29:03" + }, + { + "id": "8exalkergllnng7dm7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T01:29:03", + "amountCrypto": 0.00002852, + "pricePerUnit": 2305993, + "totalCost": 65.77, + "fee": 0.23098983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T01:29:03" + }, + { + "id": "zlmw6lpoyhkyt3mlgm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T13:29:04", + "amountCrypto": 0.00002867, + "pricePerUnit": 2293721, + "totalCost": 65.76, + "fee": 0.23096902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T13:29:04" + }, + { + "id": "d4a7cxe92puexkin4u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T01:29:03", + "amountCrypto": 0.00002862, + "pricePerUnit": 2297263, + "totalCost": 65.75, + "fee": 0.23092223, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T01:29:03" + }, + { + "id": "l5x3s2poxlud97saig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T13:29:03", + "amountCrypto": 0.00002816, + "pricePerUnit": 2334941, + "totalCost": 65.75, + "fee": 0.2309372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T13:29:03" + }, + { + "id": "1efbufr84shr3ld5x2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T01:29:03", + "amountCrypto": 0.0000282, + "pricePerUnit": 2331854, + "totalCost": 65.76, + "fee": 0.23095952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T01:29:03" + }, + { + "id": "4zvk6cpp8a45jspt4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T13:29:03", + "amountCrypto": 0.00002864, + "pricePerUnit": 2295895, + "totalCost": 65.75, + "fee": 0.23094596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T13:29:03" + }, + { + "id": "y3zz6qfgf7xm1en6i8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T01:29:04", + "amountCrypto": 0.00002845, + "pricePerUnit": 2311271, + "totalCost": 65.76, + "fee": 0.23095029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T01:29:04" + }, + { + "id": "wrz1aarq2xm60q16hz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T13:29:04", + "amountCrypto": 0.00002878, + "pricePerUnit": 2285171, + "totalCost": 65.77, + "fee": 0.23099091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T13:29:04" + }, + { + "id": "ap1wq2ksobzhc74cqp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T01:29:03", + "amountCrypto": 0.00002857, + "pricePerUnit": 2301707, + "totalCost": 65.76, + "fee": 0.23096474, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T01:29:03" + }, + { + "id": "387am4910mwfbstqcw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T13:29:04", + "amountCrypto": 0.00002845, + "pricePerUnit": 2311239, + "totalCost": 65.75, + "fee": 0.23094708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T13:29:04" + }, + { + "id": "57nymod4qnpdkr1o3c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T01:29:04", + "amountCrypto": 0.00002786, + "pricePerUnit": 2359880, + "totalCost": 65.75, + "fee": 0.23091724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T01:29:04" + }, + { + "id": "ymtxqj2hdvv0t4me7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T13:29:05", + "amountCrypto": 0.00002679, + "pricePerUnit": 2454399, + "totalCost": 65.75, + "fee": 0.23094224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T13:29:05" + }, + { + "id": "2laos2481judgpk1av", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T01:29:03", + "amountCrypto": 0.00002855, + "pricePerUnit": 2303583, + "totalCost": 65.77, + "fee": 0.23099114, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T01:29:03" + }, + { + "id": "23viwm582n5vinujs2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T13:29:03", + "amountCrypto": 0.00002816, + "pricePerUnit": 2335303, + "totalCost": 65.76, + "fee": 0.23097309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T13:29:03" + }, + { + "id": "84hy4e4eadoqvin3a9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T01:29:03", + "amountCrypto": 0.00002751, + "pricePerUnit": 2390597, + "totalCost": 65.77, + "fee": 0.23098424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T01:29:03" + }, + { + "id": "5vnrrqqvs9nsducv2h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T13:29:03", + "amountCrypto": 0.00002765, + "pricePerUnit": 2378408, + "totalCost": 65.76, + "fee": 0.23097599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T13:29:03" + }, + { + "id": "9t1c1eisyh025qet3e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T01:31:15", + "amountCrypto": 0.00002765, + "pricePerUnit": 2377974, + "totalCost": 65.75, + "fee": 0.23093393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T01:31:15" + }, + { + "id": "22krhd9s04vpjy9h4s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T13:29:03", + "amountCrypto": 0.00002766, + "pricePerUnit": 2377060, + "totalCost": 65.75, + "fee": 0.23092863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T13:29:03" + }, + { + "id": "9e7jrtb5y42331i84g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T01:29:03", + "amountCrypto": 0.00002758, + "pricePerUnit": 2384511, + "totalCost": 65.76, + "fee": 0.23098244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T01:29:03" + }, + { + "id": "wk3l5mwxxo2g6fvp95", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T13:29:04", + "amountCrypto": 0.00002814, + "pricePerUnit": 2336808, + "totalCost": 65.76, + "fee": 0.23095777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T13:29:04" + }, + { + "id": "xehougufqm272p0unu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T13:29:03", + "amountCrypto": 0.00002818, + "pricePerUnit": 2333311, + "totalCost": 65.75, + "fee": 0.23093998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T13:29:03" + }, + { + "id": "ckj4ym6k8gv5z7hgeo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T01:29:03", + "amountCrypto": 0.00002851, + "pricePerUnit": 2306521, + "totalCost": 65.76, + "fee": 0.23096174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T01:29:03" + }, + { + "id": "esxhik9m8u79spcnwp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T13:29:03", + "amountCrypto": 0.0000279, + "pricePerUnit": 2356774, + "totalCost": 65.75, + "fee": 0.23094445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T13:29:03" + }, + { + "id": "jmbqj7fqpq153b89vs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T01:29:04", + "amountCrypto": 0.00002724, + "pricePerUnit": 2414132, + "totalCost": 65.76, + "fee": 0.23096895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T01:29:04" + }, + { + "id": "p6v2gyrtnwrt1asi38", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T13:29:03", + "amountCrypto": 0.00002732, + "pricePerUnit": 2406995, + "totalCost": 65.76, + "fee": 0.23096237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T13:29:03" + }, + { + "id": "u2sna1ioy5xavyl42z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T01:29:03", + "amountCrypto": 0.00002737, + "pricePerUnit": 2402507, + "totalCost": 65.76, + "fee": 0.23095372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T01:29:03" + }, + { + "id": "9b6d6e665rs0jdwkq4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T13:29:03", + "amountCrypto": 0.00002737, + "pricePerUnit": 2402914, + "totalCost": 65.77, + "fee": 0.23099285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T13:29:03" + }, + { + "id": "7y8f8xvtcndnloi05e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T01:29:03", + "amountCrypto": 0.00002718, + "pricePerUnit": 2419242, + "totalCost": 65.75, + "fee": 0.23094799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T01:29:03" + }, + { + "id": "ite10qwu09bn1qdabj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T13:29:04", + "amountCrypto": 0.00002726, + "pricePerUnit": 2411994, + "totalCost": 65.75, + "fee": 0.2309338, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T13:29:04" + }, + { + "id": "l4zh3o0tsnwa5dhiv1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T01:29:04", + "amountCrypto": 0.00002715, + "pricePerUnit": 2422270, + "totalCost": 65.76, + "fee": 0.23098178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T01:29:04" + }, + { + "id": "i226h0qtj40ku9eu93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T13:29:03", + "amountCrypto": 0.00002682, + "pricePerUnit": 2452265, + "totalCost": 65.77, + "fee": 0.2309998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T13:29:03" + }, + { + "id": "dipc9cehabxkan2xya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T01:29:04", + "amountCrypto": 0.00002629, + "pricePerUnit": 2501557, + "totalCost": 65.77, + "fee": 0.23098636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T01:29:04" + }, + { + "id": "cukaqk41gu1wuvz91m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T13:29:04", + "amountCrypto": 0.00002648, + "pricePerUnit": 2483540, + "totalCost": 65.76, + "fee": 0.23098008, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T13:29:04" + }, + { + "id": "4jgl7y2ll54iumgprj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T01:29:03", + "amountCrypto": 0.00002598, + "pricePerUnit": 2531290, + "totalCost": 65.76, + "fee": 0.23097584, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T01:29:03" + }, + { + "id": "3qjq458kue8x28wiya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T13:29:04", + "amountCrypto": 0.00002574, + "pricePerUnit": 2554397, + "totalCost": 65.75, + "fee": 0.23093106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T13:29:04" + }, + { + "id": "hcjbgnczopt4xufn0q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T01:29:03", + "amountCrypto": 0.00002584, + "pricePerUnit": 2544381, + "totalCost": 65.75, + "fee": 0.23091922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T01:29:03" + }, + { + "id": "djbxao3q2xfegrtpxz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T13:29:04", + "amountCrypto": 0.00002609, + "pricePerUnit": 2520050, + "totalCost": 65.75, + "fee": 0.23092374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T13:29:04" + }, + { + "id": "puvyqjng04l3lzdez7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T01:29:04", + "amountCrypto": 0.0000268, + "pricePerUnit": 2453707, + "totalCost": 65.76, + "fee": 0.23096324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T01:29:04" + }, + { + "id": "ov2d6ix5n6zxtml37s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T13:29:03", + "amountCrypto": 0.00002657, + "pricePerUnit": 2474762, + "totalCost": 65.75, + "fee": 0.23094598, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T13:29:03" + }, + { + "id": "e9t5l4mbx4et9z075d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T01:29:04", + "amountCrypto": 0.00002784, + "pricePerUnit": 2361647, + "totalCost": 65.75, + "fee": 0.23092429, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T01:29:04" + }, + { + "id": "l3xm2unpbhw09gg4vz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T13:29:03", + "amountCrypto": 0.00002897, + "pricePerUnit": 2270245, + "totalCost": 65.77, + "fee": 0.23099714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T13:29:03" + }, + { + "id": "4su1x9ptl4ovljrkys", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-21T01:29:04", + "amountCrypto": 0.00002794, + "pricePerUnit": 2353622, + "totalCost": 65.76, + "fee": 0.23096625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-21T01:29:04" + }, + { + "id": "sqte5iie2b83d8ykn5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-21T13:29:03", + "amountCrypto": 0.00002774, + "pricePerUnit": 2370136, + "totalCost": 65.75, + "fee": 0.23092191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-21T13:29:03" + }, + { + "id": "5udc50uertj1s8auz5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-22T01:29:04", + "amountCrypto": 0.00002795, + "pricePerUnit": 2353096, + "totalCost": 65.77, + "fee": 0.23099725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-22T01:29:04" + }, + { + "id": "wczekracz4kslkjttc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-22T13:29:05", + "amountCrypto": 0.00002798, + "pricePerUnit": 2350132, + "totalCost": 65.76, + "fee": 0.23095397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-22T13:29:05" + }, + { + "id": "de6a0pvayjx0p40bxx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T01:29:03", + "amountCrypto": 0.00002875, + "pricePerUnit": 2287410, + "totalCost": 65.76, + "fee": 0.23097627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T01:29:03" + }, + { + "id": "rhqgvn9n754z8in88i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T13:29:04", + "amountCrypto": 0.00002814, + "pricePerUnit": 2336724, + "totalCost": 65.76, + "fee": 0.23094945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T13:29:04" + }, + { + "id": "opvg22l0qfoac74ff4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T01:29:03", + "amountCrypto": 0.00002873, + "pricePerUnit": 2288616, + "totalCost": 65.75, + "fee": 0.23093729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T01:29:03" + }, + { + "id": "a1opkmhgbucapho1ti", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T13:29:03", + "amountCrypto": 0.00002876, + "pricePerUnit": 2286704, + "totalCost": 65.77, + "fee": 0.23098522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T13:29:03" + }, + { + "id": "jcdzq9flly4sp6enj9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T01:29:03", + "amountCrypto": 0.0000275, + "pricePerUnit": 2390962, + "totalCost": 65.75, + "fee": 0.23093552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T01:29:03" + }, + { + "id": "xj48w0d0xr0d9uczln", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T13:29:03", + "amountCrypto": 0.00002761, + "pricePerUnit": 2381693, + "totalCost": 65.76, + "fee": 0.23096042, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T13:29:03" + }, + { + "id": "vdsavxg6loqls5ttz7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T01:29:03", + "amountCrypto": 0.00002727, + "pricePerUnit": 2411385, + "totalCost": 65.76, + "fee": 0.23096014, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T01:29:03" + }, + { + "id": "a76pw0dhwbfa8b6ps2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T13:29:03", + "amountCrypto": 0.0000283, + "pricePerUnit": 2323941, + "totalCost": 65.77, + "fee": 0.23099203, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T13:29:03" + }, + { + "id": "cmwx0xzms1bxmqu4l4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T01:29:03", + "amountCrypto": 0.00002838, + "pricePerUnit": 2316700, + "totalCost": 65.75, + "fee": 0.23092324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T01:29:03" + }, + { + "id": "waf9a32mehnpasv6b0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T13:29:04", + "amountCrypto": 0.00002809, + "pricePerUnit": 2341238, + "totalCost": 65.77, + "fee": 0.23098446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T13:29:04" + }, + { + "id": "4e100kyl8hugvbexpl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T01:29:04", + "amountCrypto": 0.00002868, + "pricePerUnit": 2293000, + "totalCost": 65.76, + "fee": 0.23097697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T01:29:04" + }, + { + "id": "a0ihpm1g56fuh38ago", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T13:29:03", + "amountCrypto": 0.00002864, + "pricePerUnit": 2295731, + "totalCost": 65.75, + "fee": 0.23092952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T13:29:03" + }, + { + "id": "9ncf245ftfrtvwegci", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T01:29:04", + "amountCrypto": 0.0000285, + "pricePerUnit": 2307023, + "totalCost": 65.75, + "fee": 0.230931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T01:29:04" + }, + { + "id": "csc2ewiou6q1pmqai1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T13:29:03", + "amountCrypto": 0.00002855, + "pricePerUnit": 2302884, + "totalCost": 65.75, + "fee": 0.23092108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T13:29:03" + }, + { + "id": "n67uy4g47pp1vmwrkd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T01:29:03", + "amountCrypto": 0.00002897, + "pricePerUnit": 2269846, + "totalCost": 65.76, + "fee": 0.23095654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T01:29:03" + }, + { + "id": "4s3ira5wlefkzjas3c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T13:29:04", + "amountCrypto": 0.00002889, + "pricePerUnit": 2275905, + "totalCost": 65.75, + "fee": 0.23093356, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T13:29:04" + }, + { + "id": "yg8j8u7ceg7xlp73b1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T01:29:03", + "amountCrypto": 0.00002928, + "pricePerUnit": 2246040, + "totalCost": 65.76, + "fee": 0.23097975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T01:29:03" + }, + { + "id": "4w2f7sy5be0wq6bmp6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T13:29:04", + "amountCrypto": 0.00002859, + "pricePerUnit": 2300092, + "totalCost": 65.76, + "fee": 0.23096425, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T13:29:04" + }, + { + "id": "xzf75331lfpvtatwe1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T01:29:03", + "amountCrypto": 0.00002879, + "pricePerUnit": 2283852, + "totalCost": 65.75, + "fee": 0.23093777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T01:29:03" + }, + { + "id": "3e1kwgumxvo3rw914r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T13:29:04", + "amountCrypto": 0.0000287, + "pricePerUnit": 2291607, + "totalCost": 65.77, + "fee": 0.23099758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T13:29:04" + }, + { + "id": "j1ux4980gajhear61g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T01:29:03", + "amountCrypto": 0.00002839, + "pricePerUnit": 2316341, + "totalCost": 65.76, + "fee": 0.23096883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T01:29:03" + }, + { + "id": "s9f8nhrohql1t4ll9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T13:29:03", + "amountCrypto": 0.00002782, + "pricePerUnit": 2363505, + "totalCost": 65.75, + "fee": 0.23093991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T13:29:03" + }, + { + "id": "2jjusnz8p8dncr7hsc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T01:29:04", + "amountCrypto": 0.00002761, + "pricePerUnit": 2381595, + "totalCost": 65.76, + "fee": 0.23095099, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T01:29:04" + }, + { + "id": "dov75mq6yc8pkq4hbo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T13:29:04", + "amountCrypto": 0.00002768, + "pricePerUnit": 2375904, + "totalCost": 65.77, + "fee": 0.23098323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T13:29:04" + }, + { + "id": "6egimtyegh0pc7h8nr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T01:29:10", + "amountCrypto": 0.00002737, + "pricePerUnit": 2402528, + "totalCost": 65.76, + "fee": 0.23095574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T01:29:10" + }, + { + "id": "1gki63ql74tbjkve35", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T13:29:03", + "amountCrypto": 0.00002745, + "pricePerUnit": 2395939, + "totalCost": 65.77, + "fee": 0.23099552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T13:29:03" + }, + { + "id": "60wvd7bsfoeijopwn7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T01:29:04", + "amountCrypto": 0.00002733, + "pricePerUnit": 2406402, + "totalCost": 65.77, + "fee": 0.23099004, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T01:29:04" + }, + { + "id": "4tec5p9xevdr8b7cry", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T13:29:03", + "amountCrypto": 0.00002746, + "pricePerUnit": 2394892, + "totalCost": 65.76, + "fee": 0.23097863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T13:29:03" + }, + { + "id": "eq3d5gqw4caaigdcgg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T01:29:03", + "amountCrypto": 0.00002722, + "pricePerUnit": 2416004, + "totalCost": 65.76, + "fee": 0.2309783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T01:29:03" + }, + { + "id": "fiyjr07g21ni4o81g5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T13:29:04", + "amountCrypto": 0.00002721, + "pricePerUnit": 2417006, + "totalCost": 65.77, + "fee": 0.23098925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T13:29:04" + }, + { + "id": "1bsrz1pljsmbzctw0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T01:29:03", + "amountCrypto": 0.00002639, + "pricePerUnit": 2491861, + "totalCost": 65.76, + "fee": 0.23096635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T01:29:03" + }, + { + "id": "a47brsr8iwckyaw6o8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T13:29:03", + "amountCrypto": 0.00002692, + "pricePerUnit": 2442640, + "totalCost": 65.76, + "fee": 0.23095107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T13:29:03" + }, + { + "id": "5p74a8eyz3anj3aqgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T01:29:03", + "amountCrypto": 0.0000278, + "pricePerUnit": 2365624, + "totalCost": 65.76, + "fee": 0.23098081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T01:29:03" + }, + { + "id": "mz1rtq0gabxmqmkno1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T13:29:03", + "amountCrypto": 0.00002813, + "pricePerUnit": 2337538, + "totalCost": 65.75, + "fee": 0.2309478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T13:29:03" + }, + { + "id": "mxbe2cf0fxm6823hj5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T01:29:03", + "amountCrypto": 0.00002834, + "pricePerUnit": 2320624, + "totalCost": 65.77, + "fee": 0.23098833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T01:29:03" + }, + { + "id": "k77ae96mh5ni2lsonc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T13:29:03", + "amountCrypto": 0.00002866, + "pricePerUnit": 2294091, + "totalCost": 65.75, + "fee": 0.23092569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T13:29:03" + }, + { + "id": "v0e9l5xxhv341rhqvr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T01:29:05", + "amountCrypto": 0.00002902, + "pricePerUnit": 2265937, + "totalCost": 65.76, + "fee": 0.23095676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T01:29:05" + }, + { + "id": "ns9qhvzzknaeeg7kia", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T13:29:04", + "amountCrypto": 0.00002835, + "pricePerUnit": 2319666, + "totalCost": 65.76, + "fee": 0.23097441, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T13:29:04" + }, + { + "id": "1wubqohp4u8bpcj4ch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T01:29:03", + "amountCrypto": 0.00002832, + "pricePerUnit": 2322266, + "totalCost": 65.77, + "fee": 0.23098865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T01:29:03" + }, + { + "id": "9fgv00x1nqpoh56lk3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T13:29:03", + "amountCrypto": 0.00002828, + "pricePerUnit": 2325450, + "totalCost": 65.76, + "fee": 0.23097864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T13:29:03" + }, + { + "id": "9na27dzi3eoi06ctl5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T01:33:11", + "amountCrypto": 0.00002832, + "pricePerUnit": 2322296, + "totalCost": 65.77, + "fee": 0.23099164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T01:33:11" + }, + { + "id": "28tv5itodeqdlq3dee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T13:29:03", + "amountCrypto": 0.00002832, + "pricePerUnit": 2322337, + "totalCost": 65.77, + "fee": 0.23099573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T13:29:03" + }, + { + "id": "vrxy5duid69bkimnr7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T01:29:04", + "amountCrypto": 0.00002811, + "pricePerUnit": 2338935, + "totalCost": 65.75, + "fee": 0.23092157, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T01:29:04" + }, + { + "id": "sdtxl7tjoxeio4dwpr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T13:29:03", + "amountCrypto": 0.00002918, + "pricePerUnit": 2253676, + "totalCost": 65.76, + "fee": 0.23097348, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T13:29:03" + }, + { + "id": "dx0f1woktuva3nc7yu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T01:29:03", + "amountCrypto": 0.00002813, + "pricePerUnit": 2337843, + "totalCost": 65.76, + "fee": 0.23097791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T01:29:03" + }, + { + "id": "gaj0j87dmri1t3khjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T13:29:03", + "amountCrypto": 0.00002764, + "pricePerUnit": 2379472, + "totalCost": 65.77, + "fee": 0.23099581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T13:29:03" + }, + { + "id": "aj66asf6bz4zltc1r6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T01:29:03", + "amountCrypto": 0.00002755, + "pricePerUnit": 2386468, + "totalCost": 65.75, + "fee": 0.23092057, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T01:29:03" + }, + { + "id": "ginj12xy6jhkf1m3qw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T13:29:03", + "amountCrypto": 0.00002772, + "pricePerUnit": 2372331, + "totalCost": 65.76, + "fee": 0.23096917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T13:29:03" + }, + { + "id": "u85i2ukldtl2vuimr7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T01:29:03", + "amountCrypto": 0.00002669, + "pricePerUnit": 2464110, + "totalCost": 65.77, + "fee": 0.23099044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T01:29:03" + }, + { + "id": "ybk0mnmo5s7t0gwmxg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T13:29:04", + "amountCrypto": 0.00002689, + "pricePerUnit": 2445075, + "totalCost": 65.75, + "fee": 0.23092367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T13:29:04" + }, + { + "id": "sbjkpj9531upnph1jz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T01:29:03", + "amountCrypto": 0.00002667, + "pricePerUnit": 2465540, + "totalCost": 65.76, + "fee": 0.23095135, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T01:29:03" + }, + { + "id": "dbr7yjgl0equ7jhbsz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T13:29:04", + "amountCrypto": 0.00002611, + "pricePerUnit": 2518020, + "totalCost": 65.75, + "fee": 0.23091459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T13:29:04" + }, + { + "id": "9djhzr18zbj2z2caog", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T01:29:04", + "amountCrypto": 0.00002559, + "pricePerUnit": 2569747, + "totalCost": 65.76, + "fee": 0.23096495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T01:29:04" + }, + { + "id": "b6mjut5uykd767d198", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T13:29:04", + "amountCrypto": 0.00002571, + "pricePerUnit": 2557189, + "totalCost": 65.75, + "fee": 0.23091402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T13:29:04" + }, + { + "id": "8s02vkpjphqawemi9b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T01:29:03", + "amountCrypto": 0.00002559, + "pricePerUnit": 2569838, + "totalCost": 65.76, + "fee": 0.23097315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T01:29:03" + }, + { + "id": "q4rzrw82kuiyq65zln", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T13:29:03", + "amountCrypto": 0.00002551, + "pricePerUnit": 2578189, + "totalCost": 65.77, + "fee": 0.23099929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T13:29:03" + }, + { + "id": "mtn9btoas03frd6les", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T01:29:03", + "amountCrypto": 0.0000264, + "pricePerUnit": 2490580, + "totalCost": 65.75, + "fee": 0.23093507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T01:29:03" + }, + { + "id": "33jtmlsexei804cmmk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T13:29:03", + "amountCrypto": 0.00002516, + "pricePerUnit": 2613694, + "totalCost": 65.76, + "fee": 0.23096748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T13:29:03" + }, + { + "id": "1dz4mzriwljwjk3r8o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T01:29:04", + "amountCrypto": 0.00002661, + "pricePerUnit": 2471353, + "totalCost": 65.76, + "fee": 0.23097501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T01:29:04" + }, + { + "id": "ora9x8uiu2w5468nr0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T13:29:04", + "amountCrypto": 0.00002587, + "pricePerUnit": 2542038, + "totalCost": 65.76, + "fee": 0.23097444, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T13:29:04" + }, + { + "id": "qivtj3v2c6ykwvgy4x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T01:29:03", + "amountCrypto": 0.00002565, + "pricePerUnit": 2563244, + "totalCost": 65.75, + "fee": 0.23092062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T01:29:03" + }, + { + "id": "936kpgnxhgjmursu1g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T13:29:04", + "amountCrypto": 0.00002581, + "pricePerUnit": 2548008, + "totalCost": 65.76, + "fee": 0.23097992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T13:29:04" + }, + { + "id": "scuxnag6fjln2yqaiu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T01:29:03", + "amountCrypto": 0.00002626, + "pricePerUnit": 2504398, + "totalCost": 65.77, + "fee": 0.23098482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T01:29:03" + }, + { + "id": "jbt24vfxus8qhg5v95", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T13:29:05", + "amountCrypto": 0.00002666, + "pricePerUnit": 2466172, + "totalCost": 65.75, + "fee": 0.23092389, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T13:29:05" + }, + { + "id": "9ulk0grhz6ykkqucui", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T01:29:04", + "amountCrypto": 0.0000262, + "pricePerUnit": 2509875, + "totalCost": 65.76, + "fee": 0.23096111, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T01:29:04" + }, + { + "id": "63rg6hk5q25gj7adi4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T13:29:03", + "amountCrypto": 0.00002597, + "pricePerUnit": 2532283, + "totalCost": 65.76, + "fee": 0.23097746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T13:29:03" + }, + { + "id": "55a5lrlmgug61ybw6m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T01:29:03", + "amountCrypto": 0.00002617, + "pricePerUnit": 2512536, + "totalCost": 65.75, + "fee": 0.2309412, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T01:29:03" + }, + { + "id": "pb32sglrt8nyvkiu7u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T13:29:04", + "amountCrypto": 0.00002621, + "pricePerUnit": 2508725, + "totalCost": 65.75, + "fee": 0.23094341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T13:29:04" + }, + { + "id": "c480xi306drcauh72k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T01:29:04", + "amountCrypto": 0.00002616, + "pricePerUnit": 2513691, + "totalCost": 65.76, + "fee": 0.23095906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T01:29:04" + }, + { + "id": "qppli5k1shl5saqhfj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T13:29:03", + "amountCrypto": 0.00002615, + "pricePerUnit": 2515043, + "totalCost": 65.77, + "fee": 0.23099498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T13:29:03" + }, + { + "id": "698vqo9c8of0hh9tuy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T01:29:03", + "amountCrypto": 0.0000266, + "pricePerUnit": 2472204, + "totalCost": 65.76, + "fee": 0.23096773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T01:29:03" + }, + { + "id": "oe9wae14bh1oseyu1k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T13:29:03", + "amountCrypto": 0.0000276, + "pricePerUnit": 2382782, + "totalCost": 65.76, + "fee": 0.2309824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T13:29:03" + }, + { + "id": "2zphycu93ea67tym31", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T01:29:04", + "amountCrypto": 0.00002664, + "pricePerUnit": 2468068, + "totalCost": 65.75, + "fee": 0.23092812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T01:29:04" + }, + { + "id": "kukyou7hk8nki0z63l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T13:29:03", + "amountCrypto": 0.00002647, + "pricePerUnit": 2484644, + "totalCost": 65.77, + "fee": 0.23099547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T13:29:03" + }, + { + "id": "waguaebheb2bfrzv4h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T01:29:03", + "amountCrypto": 0.00002684, + "pricePerUnit": 2449771, + "totalCost": 65.75, + "fee": 0.23093694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T01:29:03" + }, + { + "id": "hc89li49ec8mxm770g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T13:29:03", + "amountCrypto": 0.00002645, + "pricePerUnit": 2486462, + "totalCost": 65.77, + "fee": 0.23098987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T13:29:03" + }, + { + "id": "ws7yktj0gmpf4qi2c9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T01:29:03", + "amountCrypto": 0.00002628, + "pricePerUnit": 2502517, + "totalCost": 65.77, + "fee": 0.23098715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T01:29:03" + }, + { + "id": "3qh1emn9s8lhqwq0ub", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T13:29:03", + "amountCrypto": 0.00002583, + "pricePerUnit": 2545817, + "totalCost": 65.76, + "fee": 0.23096009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T13:29:03" + }, + { + "id": "n2v7630pwhgb4hwuih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T01:29:04", + "amountCrypto": 0.00002588, + "pricePerUnit": 2541219, + "totalCost": 65.77, + "fee": 0.23098927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T01:29:04" + }, + { + "id": "s1q80igztsdmwkfike", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T13:29:03", + "amountCrypto": 0.00002578, + "pricePerUnit": 2550490, + "totalCost": 65.75, + "fee": 0.23093619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T13:29:03" + }, + { + "id": "lnpxc46pxzctrpkk4l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T01:29:03", + "amountCrypto": 0.00002633, + "pricePerUnit": 2497163, + "totalCost": 65.75, + "fee": 0.23093147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T01:29:03" + }, + { + "id": "r382wmt38ydy14iio7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T13:29:03", + "amountCrypto": 0.00002635, + "pricePerUnit": 2495063, + "totalCost": 65.74, + "fee": 0.2309126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T13:29:03" + }, + { + "id": "h1pff7aaz5ypvxt7bc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T01:29:03", + "amountCrypto": 0.00002665, + "pricePerUnit": 2467549, + "totalCost": 65.76, + "fee": 0.2309662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T01:29:03" + }, + { + "id": "pinc5ehqiu8as0fgor", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T13:29:03", + "amountCrypto": 0.00002723, + "pricePerUnit": 2414752, + "totalCost": 65.75, + "fee": 0.23094341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T13:29:03" + }, + { + "id": "ch3b27t3fbdiebmsqh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T01:29:03", + "amountCrypto": 0.00002721, + "pricePerUnit": 2416778, + "totalCost": 65.76, + "fee": 0.23096741, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T01:29:03" + }, + { + "id": "n7lk12g7jigtklttip", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T13:29:04", + "amountCrypto": 0.00002786, + "pricePerUnit": 2359975, + "totalCost": 65.75, + "fee": 0.23092656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T13:29:04" + }, + { + "id": "n5u8qnpv5ymu7lafus", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T01:29:03", + "amountCrypto": 0.00002642, + "pricePerUnit": 2488954, + "totalCost": 65.76, + "fee": 0.23095914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T01:29:03" + }, + { + "id": "3izo0khd2196zvbncl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T13:29:04", + "amountCrypto": 0.00002702, + "pricePerUnit": 2433870, + "totalCost": 65.76, + "fee": 0.23097672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T13:29:04" + }, + { + "id": "9fijmr69d0lyem56br", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T01:29:04", + "amountCrypto": 0.00002758, + "pricePerUnit": 2384567, + "totalCost": 65.77, + "fee": 0.23098788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T01:29:04" + }, + { + "id": "kgddk4xsttyxd9clw1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T13:29:04", + "amountCrypto": 0.00002743, + "pricePerUnit": 2397005, + "totalCost": 65.75, + "fee": 0.23092988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T13:29:04" + }, + { + "id": "a2musa3ypow5ekv6ya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T01:29:03", + "amountCrypto": 0.00002796, + "pricePerUnit": 2351615, + "totalCost": 65.75, + "fee": 0.23093449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T01:29:03" + }, + { + "id": "vuiunwuamxi438t677", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T13:29:03", + "amountCrypto": 0.00002735, + "pricePerUnit": 2404270, + "totalCost": 65.76, + "fee": 0.23095425, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T13:29:03" + }, + { + "id": "m91jdyowl89kbd1319", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T01:29:04", + "amountCrypto": 0.00002799, + "pricePerUnit": 2349337, + "totalCost": 65.76, + "fee": 0.23095836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T01:29:04" + }, + { + "id": "egaqyhg1uwpeudf4a4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T13:29:03", + "amountCrypto": 0.00002769, + "pricePerUnit": 2374519, + "totalCost": 65.75, + "fee": 0.23093194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T13:29:03" + }, + { + "id": "y0m97bh2d69m2nlonk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T01:29:04", + "amountCrypto": 0.00002781, + "pricePerUnit": 2364324, + "totalCost": 65.75, + "fee": 0.23093689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T01:29:04" + }, + { + "id": "jy73m6m82clrduurmz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T13:29:04", + "amountCrypto": 0.00002801, + "pricePerUnit": 2347458, + "totalCost": 65.75, + "fee": 0.23093848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T13:29:04" + }, + { + "id": "f35vikkpmt7926apq2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T01:29:03", + "amountCrypto": 0.00002789, + "pricePerUnit": 2357511, + "totalCost": 65.75, + "fee": 0.23093385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T01:29:03" + }, + { + "id": "pvhu4vex2445p91twy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T13:29:03", + "amountCrypto": 0.00002783, + "pricePerUnit": 2362876, + "totalCost": 65.76, + "fee": 0.23096148, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T13:29:03" + }, + { + "id": "8tbh7vjsjasyjmotra", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T01:29:03", + "amountCrypto": 0.00002779, + "pricePerUnit": 2366357, + "totalCost": 65.76, + "fee": 0.23096925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T01:29:03" + }, + { + "id": "skroa8rse7uz0ifdai", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T13:29:04", + "amountCrypto": 0.00002759, + "pricePerUnit": 2383409, + "totalCost": 65.76, + "fee": 0.23095943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1312", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T13:29:04" + }, + { + "id": "gdiiodzvisertq5a37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T01:29:03", + "amountCrypto": 0.00002753, + "pricePerUnit": 2388360, + "totalCost": 65.75, + "fee": 0.23093591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1313", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T01:29:03" + }, + { + "id": "5k2gj0p2zrir9p9z2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T13:29:03", + "amountCrypto": 0.00002756, + "pricePerUnit": 2385847, + "totalCost": 65.75, + "fee": 0.23094429, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T13:29:03" + }, + { + "id": "nso07l7e4272mb1tl4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T01:29:03", + "amountCrypto": 0.00002816, + "pricePerUnit": 2335005, + "totalCost": 65.75, + "fee": 0.23094355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T01:29:03" + }, + { + "id": "7ihuhyl54csgn30b5l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T13:29:03", + "amountCrypto": 0.00002815, + "pricePerUnit": 2336208, + "totalCost": 65.76, + "fee": 0.23098047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T13:29:03" + }, + { + "id": "us5k4vjhhhdvyjv9nv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T01:29:03", + "amountCrypto": 0.00002778, + "pricePerUnit": 2366821, + "totalCost": 65.75, + "fee": 0.23093142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T01:29:03" + }, + { + "id": "rjk0hxycm2awf13zco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T13:29:03", + "amountCrypto": 0.00002832, + "pricePerUnit": 2321631, + "totalCost": 65.75, + "fee": 0.23092553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T13:29:03" + }, + { + "id": "ep3djy54l71sec9xjn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T01:29:03", + "amountCrypto": 0.00002829, + "pricePerUnit": 2324567, + "totalCost": 65.76, + "fee": 0.23097256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T01:29:03" + }, + { + "id": "r23nof9bv2qgad4piu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T13:29:03", + "amountCrypto": 0.00002828, + "pricePerUnit": 2325633, + "totalCost": 65.77, + "fee": 0.23099686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T13:29:03" + }, + { + "id": "1tefxdba0cqy1h3lnn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T01:29:04", + "amountCrypto": 0.00002819, + "pricePerUnit": 2332783, + "totalCost": 65.76, + "fee": 0.23096963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T01:29:04" + }, + { + "id": "xtnd2ksa01to4sgovd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T13:29:04", + "amountCrypto": 0.00002818, + "pricePerUnit": 2333784, + "totalCost": 65.77, + "fee": 0.23098672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T13:29:04" + }, + { + "id": "bqxxk343kief6t26iw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T01:29:04", + "amountCrypto": 0.00002812, + "pricePerUnit": 2338620, + "totalCost": 65.76, + "fee": 0.23097253, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T01:29:04" + }, + { + "id": "xy25m0c4h85mogw606", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T13:29:04", + "amountCrypto": 0.00002822, + "pricePerUnit": 2330350, + "totalCost": 65.76, + "fee": 0.23097427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T13:29:04" + }, + { + "id": "jg0bltc21m55us22r3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T01:29:03", + "amountCrypto": 0.00002844, + "pricePerUnit": 2312261, + "totalCost": 65.76, + "fee": 0.23096805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T01:29:03" + }, + { + "id": "5w7nedy16x9uoujkkb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T13:29:04", + "amountCrypto": 0.00002851, + "pricePerUnit": 2306420, + "totalCost": 65.76, + "fee": 0.2309516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T13:29:04" + }, + { + "id": "95v1y40e1ymo0b3dsk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T01:29:03", + "amountCrypto": 0.00002863, + "pricePerUnit": 2296519, + "totalCost": 65.75, + "fee": 0.23092812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T01:29:03" + }, + { + "id": "cs7ie8sayxn15bcjts", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T13:29:03", + "amountCrypto": 0.00002843, + "pricePerUnit": 2313156, + "totalCost": 65.76, + "fee": 0.23097622, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T13:29:03" + }, + { + "id": "pubszq4ec62rypvdva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T01:29:03", + "amountCrypto": 0.00002858, + "pricePerUnit": 2300875, + "totalCost": 65.76, + "fee": 0.23096206, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T01:29:03" + }, + { + "id": "diboox2gv997fdvt1g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T13:29:03", + "amountCrypto": 0.00002827, + "pricePerUnit": 2325780, + "totalCost": 65.75, + "fee": 0.23092971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T13:29:03" + }, + { + "id": "cw3kcpbpeeggr3w7f4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T01:29:03", + "amountCrypto": 0.0000282, + "pricePerUnit": 2331677, + "totalCost": 65.75, + "fee": 0.23094204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T01:29:03" + }, + { + "id": "b4x9wrz3lvsrbbzj2o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T13:29:03", + "amountCrypto": 0.000028, + "pricePerUnit": 2348271, + "totalCost": 65.75, + "fee": 0.23093598, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T13:29:03" + }, + { + "id": "2qknioqux6qn068ju4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T01:29:03", + "amountCrypto": 0.00002789, + "pricePerUnit": 2357911, + "totalCost": 65.76, + "fee": 0.23097303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T01:29:03" + }, + { + "id": "7qibj5fniz56lignyx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T13:29:03", + "amountCrypto": 0.00002774, + "pricePerUnit": 2370106, + "totalCost": 65.75, + "fee": 0.23091898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T13:29:03" + }, + { + "id": "bvjokuc17xmc85p3y6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T01:29:03", + "amountCrypto": 0.00002849, + "pricePerUnit": 2303897, + "totalCost": 65.64, + "fee": 0.23053719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T01:29:03" + }, + { + "id": "uh5975c6ig1vu6b6s8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T13:29:03", + "amountCrypto": 0.00002831, + "pricePerUnit": 2323023, + "totalCost": 65.76, + "fee": 0.23098234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T13:29:03" + }, + { + "id": "f9rrccjy60xr2lreg9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T01:29:03", + "amountCrypto": 0.00002829, + "pricePerUnit": 2324359, + "totalCost": 65.76, + "fee": 0.23095194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T01:29:03" + }, + { + "id": "v4jhps0wqday32k0dl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T13:29:03", + "amountCrypto": 0.00002848, + "pricePerUnit": 2308936, + "totalCost": 65.76, + "fee": 0.23096027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T13:29:03" + }, + { + "id": "wgs4f3z5psn4466z2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T01:29:03", + "amountCrypto": 0.00002846, + "pricePerUnit": 2310954, + "totalCost": 65.77, + "fee": 0.2309998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T01:29:03" + }, + { + "id": "i9hch5n2ks7x57qjl1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T13:29:04", + "amountCrypto": 0.00002855, + "pricePerUnit": 2303306, + "totalCost": 65.76, + "fee": 0.2309634, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T13:29:04" + }, + { + "id": "vufcvkh0uv5sc9mp97", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T01:29:03", + "amountCrypto": 0.00002986, + "pricePerUnit": 2201892, + "totalCost": 65.75, + "fee": 0.23092514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T01:29:03" + }, + { + "id": "4utxhbe7v79h68vuqs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T13:29:03", + "amountCrypto": 0.00003083, + "pricePerUnit": 2132753, + "totalCost": 65.75, + "fee": 0.23094019, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T13:29:03" + }, + { + "id": "lychn8v6f0akk7xojf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T01:29:03", + "amountCrypto": 0.00003127, + "pricePerUnit": 2102994, + "totalCost": 65.76, + "fee": 0.23096776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T01:29:03" + }, + { + "id": "7enpjeut9rziplbgco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T13:29:03", + "amountCrypto": 0.00003123, + "pricePerUnit": 2105559, + "totalCost": 65.76, + "fee": 0.23095359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T13:29:03" + }, + { + "id": "u3314gjl540hzu58x6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T01:29:03", + "amountCrypto": 0.00003273, + "pricePerUnit": 2009426, + "totalCost": 65.77, + "fee": 0.23099541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T01:29:03" + }, + { + "id": "mj6t6ff240mhxhduw1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T13:29:03", + "amountCrypto": 0.00003177, + "pricePerUnit": 2069937, + "totalCost": 65.76, + "fee": 0.23097223, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T13:29:03" + }, + { + "id": "3j6fiz5qiyxpfa0wmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T01:29:03", + "amountCrypto": 0.00003226, + "pricePerUnit": 2038280, + "totalCost": 65.75, + "fee": 0.23094773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T01:29:03" + }, + { + "id": "0axuy128jhsjvtwh4p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T13:29:03", + "amountCrypto": 0.0000339, + "pricePerUnit": 1940007, + "totalCost": 65.77, + "fee": 0.23098748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T13:29:03" + }, + { + "id": "4zcr1xemjtxqvq14f4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T01:29:03", + "amountCrypto": 0.00003214, + "pricePerUnit": 2046065, + "totalCost": 65.76, + "fee": 0.23096738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T01:29:03" + }, + { + "id": "hil4tyn3g0u8svoa3s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T13:29:03", + "amountCrypto": 0.00003204, + "pricePerUnit": 2052647, + "totalCost": 65.77, + "fee": 0.23098948, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T13:29:03" + }, + { + "id": "uceruh5f4cby4vfwfo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T01:29:04", + "amountCrypto": 0.00003153, + "pricePerUnit": 2085676, + "totalCost": 65.76, + "fee": 0.23097036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T01:29:04" + }, + { + "id": "itvyomag56k7vdjuqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T13:29:03", + "amountCrypto": 0.00003152, + "pricePerUnit": 2086413, + "totalCost": 65.76, + "fee": 0.23097868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T13:29:03" + }, + { + "id": "rkt8owiu1x1c9qal37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T01:29:03", + "amountCrypto": 0.000029, + "pricePerUnit": 2267562, + "totalCost": 65.76, + "fee": 0.2309631, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T01:29:03" + }, + { + "id": "ykm0vwtv6tja67ot02", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T13:29:03", + "amountCrypto": 0.00002933, + "pricePerUnit": 2242235, + "totalCost": 65.76, + "fee": 0.23098227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T13:29:03" + }, + { + "id": "cfzd0qjw8y7ktolxsu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T01:29:04", + "amountCrypto": 0.00003181, + "pricePerUnit": 2063147, + "totalCost": 65.63, + "fee": 0.23050447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T01:29:04" + }, + { + "id": "eidym8fjp7j9um8941", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T13:29:04", + "amountCrypto": 0.00003305, + "pricePerUnit": 1989587, + "totalCost": 65.76, + "fee": 0.23095102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T13:29:04" + }, + { + "id": "kqvpflm84x3kw9f6rx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T01:29:03", + "amountCrypto": 0.00003189, + "pricePerUnit": 2062117, + "totalCost": 65.76, + "fee": 0.23096871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T01:29:03" + }, + { + "id": "56m58c30lrs6f1vaym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T13:29:03", + "amountCrypto": 0.00003092, + "pricePerUnit": 2126427, + "totalCost": 65.75, + "fee": 0.2309274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T13:29:03" + }, + { + "id": "v4yvuuheryikwuueqh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T01:29:03", + "amountCrypto": 0.00003131, + "pricePerUnit": 2095808, + "totalCost": 65.62, + "fee": 0.23047293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T01:29:03" + }, + { + "id": "nw6o8rcnary2a3afmx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T13:29:03", + "amountCrypto": 0.0000311, + "pricePerUnit": 2114361, + "totalCost": 65.76, + "fee": 0.23095375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T13:29:03" + }, + { + "id": "cim7bhv5qcsb2yp8ep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T01:29:04", + "amountCrypto": 0.00003243, + "pricePerUnit": 2027744, + "totalCost": 65.76, + "fee": 0.2309646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T01:29:04" + }, + { + "id": "bxguyexv0uobuq7t4q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T13:29:04", + "amountCrypto": 0.00003179, + "pricePerUnit": 2068778, + "totalCost": 65.77, + "fee": 0.23098823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T13:29:04" + }, + { + "id": "5kgo25n7c2o2yn41to", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T01:29:04", + "amountCrypto": 0.0000328, + "pricePerUnit": 2004956, + "totalCost": 65.76, + "fee": 0.2309746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T01:29:04" + }, + { + "id": "j865ofu2c6as3w65wy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T13:29:03", + "amountCrypto": 0.00003302, + "pricePerUnit": 1991300, + "totalCost": 65.75, + "fee": 0.23093996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T13:29:03" + }, + { + "id": "bxf41mrpjva3ltx0ia", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T01:29:03", + "amountCrypto": 0.00003296, + "pricePerUnit": 1994957, + "totalCost": 65.75, + "fee": 0.23094368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T01:29:03" + }, + { + "id": "a099gouanv6alhfjg2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T13:29:03", + "amountCrypto": 0.00003362, + "pricePerUnit": 1956175, + "totalCost": 65.77, + "fee": 0.23098875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T13:29:03" + }, + { + "id": "zgan90rp23m0lnnspf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T01:29:03", + "amountCrypto": 0.00003533, + "pricePerUnit": 1861068, + "totalCost": 65.75, + "fee": 0.23093581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T01:29:03" + }, + { + "id": "ie2b6s0pilx65fkl8f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T13:29:03", + "amountCrypto": 0.00003435, + "pricePerUnit": 1914419, + "totalCost": 65.76, + "fee": 0.23096653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T13:29:03" + }, + { + "id": "mk048upbmuy8tu5nzb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T01:29:03", + "amountCrypto": 0.0000365, + "pricePerUnit": 1801829, + "totalCost": 65.77, + "fee": 0.23098926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T01:29:03" + }, + { + "id": "mr5f0c5nr157xz04a3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T13:29:04", + "amountCrypto": 0.00003503, + "pricePerUnit": 1876993, + "totalCost": 65.75, + "fee": 0.23093424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T13:29:04" + }, + { + "id": "3uozpuj39dw3ye9ul2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T01:29:04", + "amountCrypto": 0.00003448, + "pricePerUnit": 1907039, + "totalCost": 65.75, + "fee": 0.23094698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T01:29:04" + }, + { + "id": "apqlb0qz7yne34qqg7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T13:29:03", + "amountCrypto": 0.00003436, + "pricePerUnit": 1914056, + "totalCost": 65.77, + "fee": 0.23098997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T13:29:03" + }, + { + "id": "q7rokpjli650vzslow", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T01:29:03", + "amountCrypto": 0.00003402, + "pricePerUnit": 1933195, + "totalCost": 65.77, + "fee": 0.2309912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T01:29:03" + }, + { + "id": "1j6hxjdrityr2pgsmp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T13:29:03", + "amountCrypto": 0.00003405, + "pricePerUnit": 1931025, + "totalCost": 65.75, + "fee": 0.23093533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T13:29:03" + }, + { + "id": "nnjt5n71x2jfz0s6ir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T01:29:03", + "amountCrypto": 0.00003495, + "pricePerUnit": 1881775, + "totalCost": 65.77, + "fee": 0.23099383, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T01:29:03" + }, + { + "id": "ohmqdx6ckt572r3yx4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T13:29:03", + "amountCrypto": 0.00003423, + "pricePerUnit": 1921332, + "totalCost": 65.77, + "fee": 0.23099079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T13:29:03" + }, + { + "id": "86ws4ah21fvm4mxdom", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T01:29:03", + "amountCrypto": 0.00003383, + "pricePerUnit": 1943756, + "totalCost": 65.76, + "fee": 0.230956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T01:29:03" + }, + { + "id": "up39a1j23m0iqdznwu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T13:29:03", + "amountCrypto": 0.00003387, + "pricePerUnit": 1941707, + "totalCost": 65.77, + "fee": 0.23098532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T13:29:03" + }, + { + "id": "r0xwewsdkd5z0rf0t1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T01:29:03", + "amountCrypto": 0.00003381, + "pricePerUnit": 1945200, + "totalCost": 65.77, + "fee": 0.23099089, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T01:29:03" + }, + { + "id": "55gi75szhqzaqzlygq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T13:29:03", + "amountCrypto": 0.00003444, + "pricePerUnit": 1909559, + "totalCost": 65.77, + "fee": 0.23098392, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T13:29:03" + }, + { + "id": "i6smjz6fkasczpchkn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T01:29:03", + "amountCrypto": 0.00003445, + "pricePerUnit": 1908743, + "totalCost": 65.76, + "fee": 0.23095225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T01:29:03" + }, + { + "id": "3ne4ajxs3yd55bxazf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T13:29:04", + "amountCrypto": 0.00003427, + "pricePerUnit": 1918831, + "totalCost": 65.76, + "fee": 0.23095978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T13:29:04" + }, + { + "id": "ycb1c08wn1ry706qqk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T01:29:03", + "amountCrypto": 0.00003404, + "pricePerUnit": 1931751, + "totalCost": 65.76, + "fee": 0.23095428, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T01:29:03" + }, + { + "id": "jc4n0q5vc8ugp9n5xo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T13:29:03", + "amountCrypto": 0.00003455, + "pricePerUnit": 1903572, + "totalCost": 65.77, + "fee": 0.23099505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T13:29:03" + }, + { + "id": "3ia4mg4f3orhc1irr0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T01:29:03", + "amountCrypto": 0.00003455, + "pricePerUnit": 1903398, + "totalCost": 65.76, + "fee": 0.23097401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T01:29:03" + }, + { + "id": "8t8uji411z44eanj95", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T13:29:03", + "amountCrypto": 0.00003417, + "pricePerUnit": 1924566, + "totalCost": 65.76, + "fee": 0.23097403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T13:29:03" + }, + { + "id": "qfxu14eef03i3pzggd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T01:29:03", + "amountCrypto": 0.00003295, + "pricePerUnit": 1995581, + "totalCost": 65.75, + "fee": 0.23094589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T01:29:03" + }, + { + "id": "yep1tcff19oqo9hl03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T13:29:03", + "amountCrypto": 0.00003322, + "pricePerUnit": 1979289, + "totalCost": 65.75, + "fee": 0.23093736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T13:29:03" + }, + { + "id": "g7kj2id6h7c6j2ypu8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T01:29:03", + "amountCrypto": 0.00003372, + "pricePerUnit": 1950433, + "totalCost": 65.77, + "fee": 0.23099577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T01:29:03" + }, + { + "id": "jf8j72yvkjcguuwnt4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T13:29:03", + "amountCrypto": 0.0000338, + "pricePerUnit": 1945444, + "totalCost": 65.76, + "fee": 0.23095149, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T13:29:03" + }, + { + "id": "cp8k96esjweb9dohf2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T01:29:03", + "amountCrypto": 0.00003372, + "pricePerUnit": 1950354, + "totalCost": 65.77, + "fee": 0.23098639, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T01:29:03" + }, + { + "id": "fajpxor8qzy2iubuhp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T13:29:04", + "amountCrypto": 0.00003363, + "pricePerUnit": 1955152, + "totalCost": 65.75, + "fee": 0.23093659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T13:29:04" + }, + { + "id": "le9kkjvung8yjmhkuf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T01:29:03", + "amountCrypto": 0.00003379, + "pricePerUnit": 1946089, + "totalCost": 65.76, + "fee": 0.23095978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T01:29:03" + }, + { + "id": "wilsglyc7fma7nh0hk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T13:29:03", + "amountCrypto": 0.0000335, + "pricePerUnit": 1963127, + "totalCost": 65.76, + "fee": 0.23098221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T13:29:03" + }, + { + "id": "8pfrqqc1ztfgncdj9b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T01:29:04", + "amountCrypto": 0.00003302, + "pricePerUnit": 1991774, + "totalCost": 65.77, + "fee": 0.23099495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T01:29:04" + }, + { + "id": "vnjwggoh0zdll2661t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T13:29:03", + "amountCrypto": 0.00003252, + "pricePerUnit": 2022438, + "totalCost": 65.77, + "fee": 0.23099956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T13:29:03" + }, + { + "id": "m18anwi8k7dgzkgojk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T01:29:04", + "amountCrypto": 0.00003244, + "pricePerUnit": 2027299, + "totalCost": 65.77, + "fee": 0.23098516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T01:29:04" + }, + { + "id": "r7to3uiui44cfsl50l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T13:29:05", + "amountCrypto": 0.00003263, + "pricePerUnit": 2015446, + "totalCost": 65.76, + "fee": 0.23097957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T13:29:05" + }, + { + "id": "4kb6jusy3lpckypu6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T01:29:03", + "amountCrypto": 0.00003247, + "pricePerUnit": 2025034, + "totalCost": 65.75, + "fee": 0.23094051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T01:29:03" + }, + { + "id": "ewrvsw6k8z6bmzroyb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T13:29:03", + "amountCrypto": 0.00003227, + "pricePerUnit": 2038066, + "totalCost": 65.77, + "fee": 0.230995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T13:29:03" + }, + { + "id": "t2rn3prl9d6hashiih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T01:29:03", + "amountCrypto": 0.00003249, + "pricePerUnit": 2024029, + "totalCost": 65.76, + "fee": 0.23096801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T01:29:03" + }, + { + "id": "9z8m5caffpxm7mup61", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T13:29:04", + "amountCrypto": 0.00003252, + "pricePerUnit": 2021976, + "totalCost": 65.75, + "fee": 0.23094678, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T13:29:04" + }, + { + "id": "z7k4o0i4j0sqfhm1by", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T01:29:03", + "amountCrypto": 0.00003257, + "pricePerUnit": 2019293, + "totalCost": 65.77, + "fee": 0.23099498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1403", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T01:29:03" + }, + { + "id": "4ekg6yd2d6izcmk6qb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T13:29:04", + "amountCrypto": 0.00003313, + "pricePerUnit": 1984674, + "totalCost": 65.75, + "fee": 0.23093835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T13:29:04" + }, + { + "id": "tszkznoaf5edw13m5t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T01:29:03", + "amountCrypto": 0.0000337, + "pricePerUnit": 1951120, + "totalCost": 65.75, + "fee": 0.23094004, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T01:29:03" + }, + { + "id": "83vpdfyokttd7psmpd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T13:29:05", + "amountCrypto": 0.00003452, + "pricePerUnit": 1904727, + "totalCost": 65.75, + "fee": 0.23093462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T13:29:05" + }, + { + "id": "9ro4psv6durykv58fe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T01:29:04", + "amountCrypto": 0.00003448, + "pricePerUnit": 1907403, + "totalCost": 65.77, + "fee": 0.23099105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T01:29:04" + }, + { + "id": "v1q2g4l29ph478kpv5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T14:29:03", + "amountCrypto": 0.00003422, + "pricePerUnit": 1921900, + "totalCost": 65.77, + "fee": 0.23099163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T14:29:03" + }, + { + "id": "006vajxvqenzw334c1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T02:29:03", + "amountCrypto": 0.00003465, + "pricePerUnit": 1897727, + "totalCost": 65.76, + "fee": 0.23095236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T02:29:03" + }, + { + "id": "ff730kv77iipebj5uw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T14:29:03", + "amountCrypto": 0.00003454, + "pricePerUnit": 1903627, + "totalCost": 65.75, + "fee": 0.23093488, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T14:29:03" + }, + { + "id": "xkse20f062wycny2uf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T14:29:03", + "amountCrypto": 0.0000337, + "pricePerUnit": 1951057, + "totalCost": 65.75, + "fee": 0.23093256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T14:29:03" + }, + { + "id": "7j3mzd36ubslh1fthq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T02:29:03", + "amountCrypto": 0.0000333, + "pricePerUnit": 1974621, + "totalCost": 65.75, + "fee": 0.23094759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T02:29:03" + }, + { + "id": "d7xgcy46x29y24ew7f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T14:29:03", + "amountCrypto": 0.0000335, + "pricePerUnit": 1963125, + "totalCost": 65.76, + "fee": 0.23098197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T14:29:03" + }, + { + "id": "wb87ewzad7a8kfw2dx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T02:29:05", + "amountCrypto": 0.00003442, + "pricePerUnit": 1910309, + "totalCost": 65.75, + "fee": 0.23094043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T02:29:05" + }, + { + "id": "zk9snh3wi3r63yng0k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T14:29:03", + "amountCrypto": 0.00003516, + "pricePerUnit": 1870062, + "totalCost": 65.75, + "fee": 0.23093532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T14:29:03" + }, + { + "id": "5gj73rkb3pj8rm98hi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T02:29:03", + "amountCrypto": 0.00003469, + "pricePerUnit": 1895564, + "totalCost": 65.76, + "fee": 0.23095538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T02:29:03" + }, + { + "id": "gzso174wa2daxc0inp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T14:29:03", + "amountCrypto": 0.00003502, + "pricePerUnit": 1877900, + "totalCost": 65.76, + "fee": 0.23097978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T14:29:03" + }, + { + "id": "by94k9h9sftoowqe4n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T02:29:03", + "amountCrypto": 0.00003397, + "pricePerUnit": 1935693, + "totalCost": 65.76, + "fee": 0.23094977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T02:29:03" + }, + { + "id": "b8ujudrk8bua9ntg14", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T14:29:03", + "amountCrypto": 0.00003401, + "pricePerUnit": 1933305, + "totalCost": 65.75, + "fee": 0.23093647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T14:29:03" + }, + { + "id": "lhh2u7f1h2hdeq7odb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T02:29:04", + "amountCrypto": 0.00003408, + "pricePerUnit": 1929375, + "totalCost": 65.75, + "fee": 0.23094129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T02:29:04" + }, + { + "id": "ggtcbn283br2x21l6j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T14:29:03", + "amountCrypto": 0.00003428, + "pricePerUnit": 1918144, + "totalCost": 65.75, + "fee": 0.23094437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T14:29:03" + }, + { + "id": "lnptz5jltqiwwkvtfz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T02:29:03", + "amountCrypto": 0.00003641, + "pricePerUnit": 1806343, + "totalCost": 65.77, + "fee": 0.23099698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T02:29:03" + }, + { + "id": "lvfgesb3dr2s1g4seu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T14:29:04", + "amountCrypto": 0.00003679, + "pricePerUnit": 1787480, + "totalCost": 65.76, + "fee": 0.23097045, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T14:29:04" + }, + { + "id": "vfuv2i0diic1zocted", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T02:29:03", + "amountCrypto": 0.00003573, + "pricePerUnit": 1840674, + "totalCost": 65.77, + "fee": 0.23099117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T02:29:03" + }, + { + "id": "0oq3hntt8kzmmb1gmg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T14:29:04", + "amountCrypto": 0.00003567, + "pricePerUnit": 1843444, + "totalCost": 65.76, + "fee": 0.23095029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T14:29:04" + }, + { + "id": "wmwd6sqff8rfzpso3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T02:29:03", + "amountCrypto": 0.00003731, + "pricePerUnit": 1762733, + "totalCost": 65.77, + "fee": 0.23099208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T02:29:03" + }, + { + "id": "kc9db5hvva8uibbh4b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T14:29:04", + "amountCrypto": 0.00003771, + "pricePerUnit": 1740512, + "totalCost": 65.63, + "fee": 0.23052547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T14:29:04" + }, + { + "id": "gvfes8i6mpymb71pi4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T02:29:04", + "amountCrypto": 0.00003477, + "pricePerUnit": 1891363, + "totalCost": 65.76, + "fee": 0.23097504, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T02:29:04" + }, + { + "id": "ssimksrvaqy5f0said", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T14:29:06", + "amountCrypto": 0.00003537, + "pricePerUnit": 1859069, + "totalCost": 65.76, + "fee": 0.23094894, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T14:29:06" + }, + { + "id": "3jo65vzrztku8j3pxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T02:29:03", + "amountCrypto": 0.00003687, + "pricePerUnit": 1783689, + "totalCost": 65.76, + "fee": 0.23098172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T02:29:03" + }, + { + "id": "jagbmask1k9nmygjmd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T14:29:03", + "amountCrypto": 0.00003594, + "pricePerUnit": 1829985, + "totalCost": 65.77, + "fee": 0.23099945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T14:29:03" + }, + { + "id": "qjzh05qcsydlqvn27j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T02:29:03", + "amountCrypto": 0.0000355, + "pricePerUnit": 1852265, + "totalCost": 65.76, + "fee": 0.23094944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T02:29:03" + }, + { + "id": "lzcdvpn0gs1xx82c91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T14:29:03", + "amountCrypto": 0.00003535, + "pricePerUnit": 1860471, + "totalCost": 65.77, + "fee": 0.23099248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T14:29:03" + }, + { + "id": "galsctbfw94k6u3ulg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T02:29:03", + "amountCrypto": 0.00003476, + "pricePerUnit": 1891774, + "totalCost": 65.76, + "fee": 0.23095879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T02:29:03" + }, + { + "id": "4lk95cie0tm4lf79k5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T14:29:03", + "amountCrypto": 0.00003514, + "pricePerUnit": 1871542, + "totalCost": 65.77, + "fee": 0.23098658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T14:29:03" + }, + { + "id": "sf19zom32qtgly75j9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T02:29:03", + "amountCrypto": 0.00003502, + "pricePerUnit": 1877575, + "totalCost": 65.75, + "fee": 0.23093983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T02:29:03" + }, + { + "id": "vz2a7m9xlk9btiqppx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T14:29:03", + "amountCrypto": 0.00003494, + "pricePerUnit": 1882180, + "totalCost": 65.76, + "fee": 0.23097744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T14:29:03" + }, + { + "id": "qa0o6eqglx1xcy9c9x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T02:29:03", + "amountCrypto": 0.00003493, + "pricePerUnit": 1882579, + "totalCost": 65.76, + "fee": 0.23096028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T02:29:03" + }, + { + "id": "io0mphehbazcgtn3af", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T14:29:07", + "amountCrypto": 0.00003461, + "pricePerUnit": 1899793, + "totalCost": 65.75, + "fee": 0.2309369, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T14:29:07" + }, + { + "id": "m1d9dpdxv6owf25rja", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T02:29:03", + "amountCrypto": 0.0000353, + "pricePerUnit": 1863008, + "totalCost": 65.76, + "fee": 0.23098022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T02:29:03" + }, + { + "id": "ffinpv8plgej03sh03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T14:29:03", + "amountCrypto": 0.00003537, + "pricePerUnit": 1859231, + "totalCost": 65.76, + "fee": 0.23096912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T14:29:03" + }, + { + "id": "z8mt1yc7ja2c9jj831", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T02:29:03", + "amountCrypto": 0.00003546, + "pricePerUnit": 1854604, + "totalCost": 65.76, + "fee": 0.2309805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T02:29:03" + }, + { + "id": "19xotktljii2vosvz9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T14:29:03", + "amountCrypto": 0.00003513, + "pricePerUnit": 1871867, + "totalCost": 65.76, + "fee": 0.23096092, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T14:29:03" + }, + { + "id": "lnu7khooymdi1sub3y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T02:29:04", + "amountCrypto": 0.00003504, + "pricePerUnit": 1876985, + "totalCost": 65.77, + "fee": 0.23099918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T02:29:04" + }, + { + "id": "y2c2fu0lo88ahuba3x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T14:29:03", + "amountCrypto": 0.00003516, + "pricePerUnit": 1870305, + "totalCost": 65.76, + "fee": 0.23096528, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T14:29:03" + }, + { + "id": "4q7fcgb8t4c6icxqie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T02:29:03", + "amountCrypto": 0.00003522, + "pricePerUnit": 1867171, + "totalCost": 65.76, + "fee": 0.23097176, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T02:29:03" + }, + { + "id": "tig7azn6dzfgdkzt9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T14:29:04", + "amountCrypto": 0.00003484, + "pricePerUnit": 1887522, + "totalCost": 65.76, + "fee": 0.23096997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T14:29:04" + }, + { + "id": "h2mb3zkwvh2hz5admx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T02:29:03", + "amountCrypto": 0.000035, + "pricePerUnit": 1878885, + "totalCost": 65.76, + "fee": 0.23096901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T02:29:03" + }, + { + "id": "6mz1pipc22q5bwq8j4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T14:29:03", + "amountCrypto": 0.00003531, + "pricePerUnit": 1862623, + "totalCost": 65.77, + "fee": 0.23099791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T14:29:03" + }, + { + "id": "kpevk5qjkjzxmc64m1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T02:29:03", + "amountCrypto": 0.0000349, + "pricePerUnit": 1884031, + "totalCost": 65.75, + "fee": 0.23093986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T02:29:03" + }, + { + "id": "g64h52copkqnfv5ewo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T14:29:03", + "amountCrypto": 0.00003459, + "pricePerUnit": 1900892, + "totalCost": 65.75, + "fee": 0.23093694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T14:29:03" + }, + { + "id": "n13p33e88501mm3i35", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T02:29:02", + "amountCrypto": 0.00003445, + "pricePerUnit": 1905298, + "totalCost": 65.64, + "fee": 0.23053535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T02:29:02" + }, + { + "id": "9w90zvqkofevtv6hmb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T14:29:04", + "amountCrypto": 0.00003387, + "pricePerUnit": 1941824, + "totalCost": 65.77, + "fee": 0.23099916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T14:29:04" + }, + { + "id": "clu623kfw17ay38h80", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T02:29:03", + "amountCrypto": 0.00003188, + "pricePerUnit": 2062587, + "totalCost": 65.76, + "fee": 0.23094893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T02:29:03" + }, + { + "id": "1pvqauvmgj3rgaep0n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T14:29:04", + "amountCrypto": 0.00003194, + "pricePerUnit": 2058895, + "totalCost": 65.76, + "fee": 0.23096939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T14:29:04" + }, + { + "id": "wgqcx11mo1xpnrqgtl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T02:29:03", + "amountCrypto": 0.00003184, + "pricePerUnit": 2065123, + "totalCost": 65.75, + "fee": 0.23094279, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T02:29:03" + }, + { + "id": "6xj1qohedsu6rv7pgc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T14:29:04", + "amountCrypto": 0.00003227, + "pricePerUnit": 2037487, + "totalCost": 65.75, + "fee": 0.23092944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1458", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T14:29:04" + }, + { + "id": "dofwb2i39minsxp7nv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T02:29:04", + "amountCrypto": 0.00003187, + "pricePerUnit": 2063632, + "totalCost": 65.77, + "fee": 0.23099352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1459", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T02:29:04" + }, + { + "id": "mvohtq2xqyyaoh51hj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T14:29:04", + "amountCrypto": 0.00003156, + "pricePerUnit": 2083853, + "totalCost": 65.77, + "fee": 0.23098799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1460", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T14:29:04" + }, + { + "id": "zxcbzyte4uqbwsos0a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T02:29:03", + "amountCrypto": 0.00003149, + "pricePerUnit": 2088280, + "totalCost": 65.76, + "fee": 0.23096529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T02:29:03" + }, + { + "id": "3bdq4sqfxq2olr81v6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T14:29:03", + "amountCrypto": 0.00003172, + "pricePerUnit": 2073152, + "totalCost": 65.76, + "fee": 0.2309669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T14:29:03" + }, + { + "id": "g2td00eox45jl2b5yl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T02:29:03", + "amountCrypto": 0.00003154, + "pricePerUnit": 2085173, + "totalCost": 65.77, + "fee": 0.23098787, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T02:29:03" + }, + { + "id": "fkuja39gy4p0ixy9ck", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T14:29:04", + "amountCrypto": 0.00003178, + "pricePerUnit": 2069107, + "totalCost": 65.76, + "fee": 0.23095228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T14:29:04" + }, + { + "id": "xfh5rhctrewz2p2hml", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T02:29:03", + "amountCrypto": 0.00003194, + "pricePerUnit": 2054772, + "totalCost": 65.63, + "fee": 0.23050696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T02:29:03" + }, + { + "id": "6dio0lzc6drmptat64", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T14:29:04", + "amountCrypto": 0.00003134, + "pricePerUnit": 2098438, + "totalCost": 65.77, + "fee": 0.23098326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T14:29:04" + }, + { + "id": "him07orvt9onh8v5kg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T02:29:03", + "amountCrypto": 0.00003158, + "pricePerUnit": 2082426, + "totalCost": 65.76, + "fee": 0.23097614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T02:29:03" + }, + { + "id": "0jg3rygb59in84hwwf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T14:29:03", + "amountCrypto": 0.00003155, + "pricePerUnit": 2084009, + "totalCost": 65.75, + "fee": 0.23093213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T14:29:03" + }, + { + "id": "xnuxn5dalxl2ubq1b3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T02:29:05", + "amountCrypto": 0.00003174, + "pricePerUnit": 2071740, + "totalCost": 65.76, + "fee": 0.23095517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T02:29:05" + }, + { + "id": "7h9a1wuqb6s5eqrwnb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T14:29:03", + "amountCrypto": 0.00003153, + "pricePerUnit": 2085329, + "totalCost": 65.75, + "fee": 0.23093195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T14:29:03" + }, + { + "id": "sfmcs2c9yo5kutimto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T02:29:05", + "amountCrypto": 0.00003161, + "pricePerUnit": 2080501, + "totalCost": 65.76, + "fee": 0.23098187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T02:29:05" + }, + { + "id": "hle9tl7sb7j25tquly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T14:29:03", + "amountCrypto": 0.00003098, + "pricePerUnit": 2122462, + "totalCost": 65.75, + "fee": 0.23094399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T14:29:03" + }, + { + "id": "bzviob9b4ab6b77g1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T02:29:04", + "amountCrypto": 0.00003076, + "pricePerUnit": 2137712, + "totalCost": 65.76, + "fee": 0.23095163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T02:29:04" + }, + { + "id": "q1r42g90qxwt2o7aef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T14:29:04", + "amountCrypto": 0.0000308, + "pricePerUnit": 2134718, + "totalCost": 65.75, + "fee": 0.23092803, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T14:29:04" + }, + { + "id": "xuqzo3jklhusefajr8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T02:29:03", + "amountCrypto": 0.00003076, + "pricePerUnit": 2133561, + "totalCost": 65.63, + "fee": 0.23050307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T02:29:03" + }, + { + "id": "t7isa5d4v941jlbbes", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T14:29:03", + "amountCrypto": 0.00003096, + "pricePerUnit": 2123956, + "totalCost": 65.76, + "fee": 0.23095743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T14:29:03" + }, + { + "id": "r50tw3ymxasc1doovx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T02:29:03", + "amountCrypto": 0.00003101, + "pricePerUnit": 2120330, + "totalCost": 65.75, + "fee": 0.23093549, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T02:29:03" + }, + { + "id": "h88ntufdttvgxwnq89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T14:29:03", + "amountCrypto": 0.00003111, + "pricePerUnit": 2113489, + "totalCost": 65.75, + "fee": 0.23093272, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T14:29:03" + }, + { + "id": "zb5s7zo3z9jbnh4lh8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T02:29:06", + "amountCrypto": 0.00003148, + "pricePerUnit": 2088711, + "totalCost": 65.75, + "fee": 0.23093961, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T02:29:06" + }, + { + "id": "x7drmey6li3ximpt6e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T14:29:03", + "amountCrypto": 0.0000317, + "pricePerUnit": 2074235, + "totalCost": 65.75, + "fee": 0.23094181, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T14:29:03" + }, + { + "id": "zvmj22bjqmoijams07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T02:29:03", + "amountCrypto": 0.00003138, + "pricePerUnit": 2091279, + "totalCost": 65.62, + "fee": 0.23048912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T02:29:03" + }, + { + "id": "xkf0wm690bi3eya83l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T14:29:04", + "amountCrypto": 0.00003172, + "pricePerUnit": 2073375, + "totalCost": 65.77, + "fee": 0.23099169, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T14:29:04" + }, + { + "id": "rwg5kligjvaxug492k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T02:29:03", + "amountCrypto": 0.00003065, + "pricePerUnit": 2145365, + "totalCost": 65.76, + "fee": 0.23094958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T02:29:03" + }, + { + "id": "96zc44qx7kfib3c0nc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T14:29:04", + "amountCrypto": 0.00003087, + "pricePerUnit": 2130292, + "totalCost": 65.76, + "fee": 0.23097298, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T14:29:04" + }, + { + "id": "axswoxa26q7fzu8cfq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T02:29:03", + "amountCrypto": 0.00003074, + "pricePerUnit": 2139220, + "totalCost": 65.76, + "fee": 0.23096425, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T02:29:03" + }, + { + "id": "dinwc4omkmin00a0z4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T14:29:03", + "amountCrypto": 0.00002993, + "pricePerUnit": 2196808, + "totalCost": 65.75, + "fee": 0.23093209, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T14:29:03" + }, + { + "id": "hariumhbtzo8g3z1rc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T02:29:03", + "amountCrypto": 0.0000289, + "pricePerUnit": 2275639, + "totalCost": 65.77, + "fee": 0.23098653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T02:29:03" + }, + { + "id": "1fe9zz22utcvjrjrol", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T14:29:03", + "amountCrypto": 0.00002873, + "pricePerUnit": 2288958, + "totalCost": 65.76, + "fee": 0.23097178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T14:29:03" + }, + { + "id": "z4146kan8id2avww6c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T02:29:03", + "amountCrypto": 0.00002881, + "pricePerUnit": 2282856, + "totalCost": 65.77, + "fee": 0.23099747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T02:29:03" + }, + { + "id": "zrmg2dydrmj1oxgzee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T14:29:03", + "amountCrypto": 0.00002861, + "pricePerUnit": 2298206, + "totalCost": 65.75, + "fee": 0.23093634, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T14:29:03" + }, + { + "id": "x5o4lo9c9wxpejr8wn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T02:29:03", + "amountCrypto": 0.00002846, + "pricePerUnit": 2310504, + "totalCost": 65.76, + "fee": 0.23095481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T02:29:03" + }, + { + "id": "8gxxgpivgrvwd0j6ac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T14:29:03", + "amountCrypto": 0.00002832, + "pricePerUnit": 2321674, + "totalCost": 65.75, + "fee": 0.23092972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T14:29:03" + }, + { + "id": "c79ewyi5nrc4sh6yxn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T02:29:03", + "amountCrypto": 0.00002837, + "pricePerUnit": 2317758, + "totalCost": 65.75, + "fee": 0.23094726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T02:29:03" + }, + { + "id": "ajkl7h80mhbpy7r2jq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T14:29:03", + "amountCrypto": 0.00002813, + "pricePerUnit": 2337892, + "totalCost": 65.76, + "fee": 0.23098276, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T14:29:03" + }, + { + "id": "gq8y1d37atixjnht6h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T02:29:03", + "amountCrypto": 0.00002847, + "pricePerUnit": 2309982, + "totalCost": 65.77, + "fee": 0.23098373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1495", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T02:29:03" + }, + { + "id": "b93eqgnla8q8qaas9t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T14:29:05", + "amountCrypto": 0.00002824, + "pricePerUnit": 2328675, + "totalCost": 65.76, + "fee": 0.23097182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T14:29:05" + }, + { + "id": "zrbk0ph1nwpq53d38r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T02:29:04", + "amountCrypto": 0.00002838, + "pricePerUnit": 2317066, + "totalCost": 65.76, + "fee": 0.23095972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T02:29:04" + }, + { + "id": "kxqcwsmcbqmilp6cf9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T14:29:06", + "amountCrypto": 0.00002843, + "pricePerUnit": 2313035, + "totalCost": 65.76, + "fee": 0.23096411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T14:29:06" + }, + { + "id": "irnp83xe8r8r7kt16z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T02:29:04", + "amountCrypto": 0.00002841, + "pricePerUnit": 2314961, + "totalCost": 65.77, + "fee": 0.23099379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T02:29:04" + }, + { + "id": "7qx0klx6d214b36hg1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T14:29:03", + "amountCrypto": 0.00002879, + "pricePerUnit": 2283789, + "totalCost": 65.75, + "fee": 0.23093148, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T14:29:03" + }, + { + "id": "54ffjchwpvqa2gjq7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T02:29:03", + "amountCrypto": 0.00002843, + "pricePerUnit": 2313189, + "totalCost": 65.76, + "fee": 0.23097953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T02:29:03" + }, + { + "id": "pee60edzk0fcxyp93e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T14:29:03", + "amountCrypto": 0.00002847, + "pricePerUnit": 2309734, + "totalCost": 65.76, + "fee": 0.23095897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T14:29:03" + }, + { + "id": "387fb7wsiebq5h0ms9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T02:29:03", + "amountCrypto": 0.00002846, + "pricePerUnit": 2310731, + "totalCost": 65.76, + "fee": 0.23097755, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T02:29:03" + }, + { + "id": "jutmm8naetuhu056if", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T14:29:03", + "amountCrypto": 0.00002858, + "pricePerUnit": 2300952, + "totalCost": 65.76, + "fee": 0.23096981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T14:29:03" + }, + { + "id": "ffebk2i90z5syw8478", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T02:29:03", + "amountCrypto": 0.00002854, + "pricePerUnit": 2304125, + "totalCost": 65.76, + "fee": 0.2309646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T02:29:03" + }, + { + "id": "91n633cbk8kjxyfl9i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T14:29:03", + "amountCrypto": 0.00002833, + "pricePerUnit": 2321434, + "totalCost": 65.77, + "fee": 0.23098742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T14:29:03" + }, + { + "id": "8aei8u08jm6ctne1qq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T02:29:03", + "amountCrypto": 0.00002775, + "pricePerUnit": 2369287, + "totalCost": 65.75, + "fee": 0.2309224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T02:29:03" + }, + { + "id": "gwieh4lklxlw3llnfv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T14:29:04", + "amountCrypto": 0.00002895, + "pricePerUnit": 2271798, + "totalCost": 65.77, + "fee": 0.23099556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T14:29:04" + }, + { + "id": "8p3pocqrazsi42fdyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T14:29:03", + "amountCrypto": 0.00002763, + "pricePerUnit": 2380185, + "totalCost": 65.76, + "fee": 0.2309814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1516", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T14:29:03" + }, + { + "id": "u9bardz9oclegdaldt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T02:29:03", + "amountCrypto": 0.00002798, + "pricePerUnit": 2350552, + "totalCost": 65.77, + "fee": 0.23099525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1517", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T02:29:03" + }, + { + "id": "4ce5ppba2u1l1cyp3p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T14:29:03", + "amountCrypto": 0.00002757, + "pricePerUnit": 2385198, + "totalCost": 65.76, + "fee": 0.23096528, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1518", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T14:29:03" + }, + { + "id": "4w8ufl3sg21hd0aa3q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T02:29:03", + "amountCrypto": 0.00002777, + "pricePerUnit": 2368100, + "totalCost": 65.76, + "fee": 0.23097306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1519", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T02:29:03" + }, + { + "id": "2iinmd1ryu3e41ly6r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T14:29:04", + "amountCrypto": 0.00002795, + "pricePerUnit": 2352656, + "totalCost": 65.76, + "fee": 0.23095405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1520", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T14:29:04" + }, + { + "id": "9g0o9tc9orpz6k4681", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T02:29:04", + "amountCrypto": 0.00002764, + "pricePerUnit": 2378720, + "totalCost": 65.75, + "fee": 0.23092282, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1521", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T02:29:04" + }, + { + "id": "wostbrdvhyc3lt0n7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T14:29:03", + "amountCrypto": 0.00002738, + "pricePerUnit": 2401918, + "totalCost": 65.76, + "fee": 0.23098142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1522", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T14:29:03" + }, + { + "id": "ctlfypqwoo6ow6m367", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T02:29:03", + "amountCrypto": 0.00002749, + "pricePerUnit": 2392480, + "totalCost": 65.77, + "fee": 0.23099809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1523", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T02:29:03" + }, + { + "id": "ya68hr2fwgthkd8ivb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T14:29:05", + "amountCrypto": 0.00002729, + "pricePerUnit": 2409697, + "totalCost": 65.76, + "fee": 0.23096781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1524", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T14:29:05" + }, + { + "id": "p0d1fmx9m5o74x67ig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T02:29:03", + "amountCrypto": 0.0000274, + "pricePerUnit": 2399822, + "totalCost": 65.76, + "fee": 0.23094841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1525", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T02:29:03" + }, + { + "id": "2rthe247om4qgue0yu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T14:29:03", + "amountCrypto": 0.00002729, + "pricePerUnit": 2409345, + "totalCost": 65.75, + "fee": 0.23093408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1526", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T14:29:03" + }, + { + "id": "73pv3k48p4ecf1xfyi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T02:29:03", + "amountCrypto": 0.00002739, + "pricePerUnit": 2400491, + "totalCost": 65.75, + "fee": 0.23092854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1527", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T02:29:03" + }, + { + "id": "2q7q52t64is4goxv6n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T14:29:03", + "amountCrypto": 0.00002741, + "pricePerUnit": 2399044, + "totalCost": 65.76, + "fee": 0.2309578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1528", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T14:29:03" + }, + { + "id": "9fwnp0a9bgud9otq0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T02:29:03", + "amountCrypto": 0.00002823, + "pricePerUnit": 2329702, + "totalCost": 65.77, + "fee": 0.23099181, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1529", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T02:29:03" + }, + { + "id": "skiy73l2wdqvy8xi7i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T14:29:03", + "amountCrypto": 0.00002832, + "pricePerUnit": 2321947, + "totalCost": 65.76, + "fee": 0.23095694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1530", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T14:29:03" + }, + { + "id": "g3rfdkv7u9t3lyy2af", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T02:29:04", + "amountCrypto": 0.00002873, + "pricePerUnit": 2288980, + "totalCost": 65.76, + "fee": 0.23097401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1531", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T02:29:04" + }, + { + "id": "w2a8u44e97aq6rodcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T14:29:04", + "amountCrypto": 0.00002881, + "pricePerUnit": 2282180, + "totalCost": 65.75, + "fee": 0.2309291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1532", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T14:29:04" + }, + { + "id": "5qxasw29neiuhpfkl4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T02:29:03", + "amountCrypto": 0.00002857, + "pricePerUnit": 2301611, + "totalCost": 65.76, + "fee": 0.23095509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1533", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T02:29:03" + }, + { + "id": "7oww3ud768j2yj75ne", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T14:29:03", + "amountCrypto": 0.00002863, + "pricePerUnit": 2296524, + "totalCost": 65.75, + "fee": 0.23092863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1534", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T14:29:03" + }, + { + "id": "hcbsolkl006w1b8si5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T02:29:04", + "amountCrypto": 0.00002831, + "pricePerUnit": 2322451, + "totalCost": 65.75, + "fee": 0.23092553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1535", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T02:29:04" + }, + { + "id": "jk4y3uu23uewfwyjtq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T14:29:55", + "amountCrypto": 0.00002888, + "pricePerUnit": 2276623, + "totalCost": 65.75, + "fee": 0.23092644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1536", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T14:29:55" + }, + { + "id": "9u2zi01dhkt9mv5q7h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T02:29:03", + "amountCrypto": 0.00002849, + "pricePerUnit": 2308031, + "totalCost": 65.76, + "fee": 0.23095079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1537", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T02:29:03" + }, + { + "id": "wohvzgm3h4pxxhxoai", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T14:29:03", + "amountCrypto": 0.00002852, + "pricePerUnit": 2305623, + "totalCost": 65.76, + "fee": 0.23095277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1538", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T14:29:03" + }, + { + "id": "58wvpbx81jav3mr64e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T02:29:03", + "amountCrypto": 0.00002847, + "pricePerUnit": 2309449, + "totalCost": 65.75, + "fee": 0.2309305, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1539", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T02:29:03" + }, + { + "id": "3erqo672i4nhlkrjvd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T14:29:05", + "amountCrypto": 0.00002869, + "pricePerUnit": 2292192, + "totalCost": 65.76, + "fee": 0.23097609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1540", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T14:29:05" + }, + { + "id": "vzs6sewetfrwgjqk6p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T02:29:03", + "amountCrypto": 0.00002879, + "pricePerUnit": 2279143, + "totalCost": 65.62, + "fee": 0.23046165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1541", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T02:29:03" + }, + { + "id": "ox0bx26j25hahrpqox", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T14:29:03", + "amountCrypto": 0.00002867, + "pricePerUnit": 2293700, + "totalCost": 65.76, + "fee": 0.2309669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1542", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T14:29:03" + }, + { + "id": "dyiyzrdhr3f79doaqh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T02:29:03", + "amountCrypto": 0.00002985, + "pricePerUnit": 2203036, + "totalCost": 65.76, + "fee": 0.23096773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1543", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T02:29:03" + }, + { + "id": "6jthzaq9vutb2cccpr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T14:29:03", + "amountCrypto": 0.00002911, + "pricePerUnit": 2258714, + "totalCost": 65.75, + "fee": 0.23093454, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1544", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T14:29:03" + }, + { + "id": "m66e3gh7mnlxm3irvf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T02:29:03", + "amountCrypto": 0.00002891, + "pricePerUnit": 2274297, + "totalCost": 65.75, + "fee": 0.23093016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1545", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T02:29:03" + }, + { + "id": "66kfwm64yi9ft3dfwb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T14:29:04", + "amountCrypto": 0.00002864, + "pricePerUnit": 2295705, + "totalCost": 65.75, + "fee": 0.2309269, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T14:29:04" + }, + { + "id": "a4poev5ajp443foc7p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T02:29:03", + "amountCrypto": 0.00002856, + "pricePerUnit": 2302782, + "totalCost": 65.77, + "fee": 0.2309917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T02:29:03" + }, + { + "id": "sw1xsn7igqp7z3d45b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T14:29:03", + "amountCrypto": 0.00002854, + "pricePerUnit": 2304313, + "totalCost": 65.77, + "fee": 0.23098349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T14:29:03" + }, + { + "id": "ppczvcongg6mraw0bp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T02:29:03", + "amountCrypto": 0.00002851, + "pricePerUnit": 2306562, + "totalCost": 65.76, + "fee": 0.23096585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T02:29:03" + }, + { + "id": "6sh60cmivhdyl87tpg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T14:29:03", + "amountCrypto": 0.00002809, + "pricePerUnit": 2341353, + "totalCost": 65.77, + "fee": 0.23099583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T14:29:03" + }, + { + "id": "89nm5csxwf183j42hf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T02:29:03", + "amountCrypto": 0.00002754, + "pricePerUnit": 2387791, + "totalCost": 65.76, + "fee": 0.23096472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T02:29:03" + }, + { + "id": "p1824vx9ft09igtet8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T14:29:04", + "amountCrypto": 0.00002761, + "pricePerUnit": 2381674, + "totalCost": 65.76, + "fee": 0.23095857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T14:29:04" + }, + { + "id": "xqw7318u4adi5kmqmp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-11T02:29:04", + "amountCrypto": 0.00002757, + "pricePerUnit": 2380760, + "totalCost": 65.64, + "fee": 0.23053546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-11T02:29:04" + } + ] +} \ No newline at end of file diff --git a/telegram-accbot-converter/package-lock.json b/archive/telegram-accbot-converter/package-lock.json similarity index 100% rename from telegram-accbot-converter/package-lock.json rename to archive/telegram-accbot-converter/package-lock.json diff --git a/telegram-accbot-converter/package.json b/archive/telegram-accbot-converter/package.json similarity index 100% rename from telegram-accbot-converter/package.json rename to archive/telegram-accbot-converter/package.json diff --git a/archive/telegram-accbot-converter/result.json b/archive/telegram-accbot-converter/result.json new file mode 100644 index 0000000..5b6a3fa --- /dev/null +++ b/archive/telegram-accbot-converter/result.json @@ -0,0 +1,1516236 @@ +{ + "name": "hnizdja2_autoinvestchannel", + "type": "public_channel", + "id": 1448997223, + "messages": [ + { + "id": 1, + "type": "service", + "date": "2021-05-23T13:38:49", + "date_unixtime": "1621769929", + "actor": "hnizdja2_autoinvestchannel", + "actor_id": "channel1448997223", + "action": "create_channel", + "title": "hnizdja2_autoinvestchannel", + "text": "", + "text_entities": [] + }, + { + "id": 2, + "type": "message", + "date": "2021-05-26T15:38:35", + "date_unixtime": "1622036315", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "462933905" + }, + " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 78,957.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23774300 BTC ~ 9,311.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06775800 BTC ~ 2,653.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,022.22 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,072.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 265.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "462933905" + }, + { + "type": "plain", + "text": " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 78,957.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23774300 BTC ~ 9,311.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06775800 BTC ~ 2,653.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,022.22 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,072.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 265.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%" + } + ] + }, + { + "id": 3, + "type": "message", + "date": "2021-05-26T17:15:05", + "date_unixtime": "1622042105", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "462923812" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 79,257.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,511.49 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06802300 BTC ~ 2,639.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 907.23 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,072.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 266.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "462923812" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 79,257.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,511.49 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06802300 BTC ~ 2,639.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 907.23 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,072.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 266.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%" + } + ] + }, + { + "id": 4, + "type": "message", + "date": "2021-05-26T19:00:22", + "date_unixtime": "1622048422", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "462914246" + }, + " / Amount: 0.00116800 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 79,557.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 9,685.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06829100 BTC ~ 2,618.60 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 760.85 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,072.21 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 267.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.21%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "462914246" + }, + { + "type": "plain", + "text": " / Amount: 0.00116800 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 79,557.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 9,685.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06829100 BTC ~ 2,618.60 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 760.85 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,072.21 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 267.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.21%" + } + ] + }, + { + "id": 5, + "type": "message", + "date": "2021-05-26T21:27:02", + "date_unixtime": "1622057222", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "462650287" + }, + " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 79,857.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 9,907.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06856100 BTC ~ 2,611.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 675.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,072.21 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 268.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "462650287" + }, + { + "type": "plain", + "text": " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 79,857.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 9,907.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06856100 BTC ~ 2,611.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 675.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,072.21 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 268.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.88%" + } + ] + }, + { + "id": 6, + "type": "message", + "date": "2021-05-27T03:56:27", + "date_unixtime": "1622080587", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "462605452" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,157.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,088.45 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06883400 BTC ~ 2,593.49 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 538.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,790.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,072.22 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 269.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.97%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "462605452" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,157.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,088.45 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06883400 BTC ~ 2,593.49 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 538.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,790.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,072.22 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 269.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.97%" + } + ] + }, + { + "id": 7, + "type": "message", + "date": "2021-05-27T05:12:34", + "date_unixtime": "1622085154", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "463422899" + }, + " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,457.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,275.68 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06911000 BTC ~ 2,578.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 410.19 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,511.24 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,051.05 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 270.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "463422899" + }, + { + "type": "plain", + "text": " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,457.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,275.68 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06911000 BTC ~ 2,578.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 410.19 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,511.24 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,051.05 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 270.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 8, + "type": "message", + "date": "2021-05-27T10:29:42", + "date_unixtime": "1622104182", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "464350059" + }, + " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,757.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,312.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,959.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06938900 BTC ~ 2,684.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 701.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 900.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,801.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,762.34 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 226.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.20%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "464350059" + }, + { + "type": "plain", + "text": " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,757.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,312.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,959.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06938900 BTC ~ 2,684.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 701.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 900.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,801.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,762.34 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 226.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.20%" + } + ] + }, + { + "id": 9, + "type": "message", + "date": "2021-05-27T10:32:08", + "date_unixtime": "1622104328", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "464252149" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,757.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,612.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,772.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06938900 BTC ~ 2,713.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 702.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,043.38 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,102.39 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,762.34 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 227.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "464252149" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,757.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,612.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,772.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06938900 BTC ~ 2,713.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 702.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,043.38 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,102.39 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,762.34 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 227.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%" + } + ] + }, + { + "id": 10, + "type": "message", + "date": "2021-05-27T12:15:57", + "date_unixtime": "1622110557", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "463874661" + }, + " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,757.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 67,912.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,597.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06938900 BTC ~ 2,746.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 703.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,202.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,403.58 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,762.34 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 228.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "463874661" + }, + { + "type": "plain", + "text": " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,757.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 67,912.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,597.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06938900 BTC ~ 2,746.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 703.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,202.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,403.58 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,762.34 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 228.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 11, + "type": "message", + "date": "2021-05-27T14:01:51", + "date_unixtime": "1622116911", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "463693004" + }, + " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,757.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,212.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 10,383.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06938900 BTC ~ 2,769.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 704.80 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,313.66 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,704.79 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,762.31 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 229.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "463693004" + }, + { + "type": "plain", + "text": " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,757.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,212.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 10,383.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06938900 BTC ~ 2,769.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 704.80 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,313.66 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,704.79 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,762.31 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 229.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.07%" + } + ] + }, + { + "id": 12, + "type": "message", + "date": "2021-05-27T15:27:17", + "date_unixtime": "1622122037", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "463554615" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,757.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,512.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,189.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06938900 BTC ~ 2,799.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 706.01 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,449.55 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,995.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 230.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "463554615" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,757.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,512.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,189.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06938900 BTC ~ 2,799.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 706.01 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,449.55 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,995.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 230.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 13, + "type": "message", + "date": "2021-05-27T18:54:30", + "date_unixtime": "1622134470", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "464952865" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 80,757.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,812.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,515.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06938900 BTC ~ 2,693.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 707.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 971.10 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,995.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.34 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 231.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.97%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "464952865" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 80,757.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,812.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,515.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06938900 BTC ~ 2,693.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 707.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 971.10 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,995.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.34 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 231.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.97%" + } + ] + }, + { + "id": 14, + "type": "message", + "date": "2021-05-27T23:01:17", + "date_unixtime": "1622149277", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "464866446" + }, + " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 81,057.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,812.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 9,686.85 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06965700 BTC ~ 2,671.24 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 707.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 820.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,695.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.35 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 231.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.20%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "464866446" + }, + { + "type": "plain", + "text": " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 81,057.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,812.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 9,686.85 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06965700 BTC ~ 2,671.24 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 707.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 820.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,695.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.35 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 231.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.20%" + } + ] + }, + { + "id": 15, + "type": "message", + "date": "2021-05-27T23:06:58", + "date_unixtime": "1622149618", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "464768030" + }, + " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 81,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,812.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 9,949.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.06992700 BTC ~ 2,674.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 707.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 785.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,395.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.35 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 273.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 231.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.59%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.44%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "464768030" + }, + { + "type": "plain", + "text": " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 81,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,812.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 9,949.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.06992700 BTC ~ 2,674.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 707.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 785.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,395.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.35 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 273.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 231.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.59%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.44%" + } + ] + }, + { + "id": 16, + "type": "message", + "date": "2021-05-27T23:07:05", + "date_unixtime": "1622149625", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "464669376" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 81,657.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,812.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,251.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07020000 BTC ~ 2,687.58 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 707.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 800.92 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,095.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.35 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 274.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 231.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.34%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "464669376" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 81,657.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,812.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,251.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07020000 BTC ~ 2,687.58 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 707.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 800.92 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,095.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.35 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 274.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 231.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.34%" + } + ] + }, + { + "id": 17, + "type": "message", + "date": "2021-05-27T23:35:53", + "date_unixtime": "1622151353", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "465436397" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 81,957.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 68,812.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,790.34 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07047600 BTC ~ 2,760.79 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 707.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,113.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,097.19 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.33 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 231.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "465436397" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 81,957.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 68,812.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,790.34 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07047600 BTC ~ 2,760.79 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 707.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,113.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,097.19 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.33 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 231.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%" + } + ] + }, + { + "id": 18, + "type": "message", + "date": "2021-05-28T06:32:38", + "date_unixtime": "1622176358", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "465460353" + }, + " / Amount: 0.00131600 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 81,957.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,063.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07047600 BTC ~ 2,648.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 708.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 575.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,097.18 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 232.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "465460353" + }, + { + "type": "plain", + "text": " / Amount: 0.00131600 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 81,957.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,063.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07047600 BTC ~ 2,648.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 708.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 575.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,097.18 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 232.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.23%" + } + ] + }, + { + "id": 19, + "type": "message", + "date": "2021-05-28T06:47:44", + "date_unixtime": "1622177264", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "464664928" + }, + " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 82,257.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,288.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07075200 BTC ~ 2,642.59 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 708.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 494.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,797.19 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,772.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 276.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 232.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.21%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.84%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "464664928" + }, + { + "type": "plain", + "text": " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 82,257.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,288.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07075200 BTC ~ 2,642.59 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 708.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 494.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,797.19 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,772.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 276.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 232.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.21%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.84%" + } + ] + }, + { + "id": 20, + "type": "message", + "date": "2021-05-28T07:44:27", + "date_unixtime": "1622180667", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "465186708" + }, + " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 82,557.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,478.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07103100 BTC ~ 2,628.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 708.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 370.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,518.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,751.09 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 277.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 232.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.31%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.79%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "465186708" + }, + { + "type": "plain", + "text": " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 82,557.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,478.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07103100 BTC ~ 2,628.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 708.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 370.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,518.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,751.09 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 277.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 232.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.31%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.79%" + } + ] + }, + { + "id": 21, + "type": "message", + "date": "2021-05-28T08:34:25", + "date_unixtime": "1622183665", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "465428186" + }, + " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 82,857.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29106600 BTC ~ 10,631.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07131200 BTC ~ 2,604.63 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 708.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 199.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,500.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,469.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 278.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 232.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.10%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "465428186" + }, + { + "type": "plain", + "text": " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 82,857.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29106600 BTC ~ 10,631.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07131200 BTC ~ 2,604.63 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 708.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 199.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,500.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,469.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 278.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 232.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.10%" + } + ] + }, + { + "id": 22, + "type": "message", + "date": "2021-05-28T13:53:38", + "date_unixtime": "1622202818", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "466015583" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,057.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,358.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07246600 BTC ~ 2,546.50 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 708.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -330.98 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,248.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 282.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 232.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.97%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "466015583" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,057.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,358.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07246600 BTC ~ 2,546.50 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 708.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -330.98 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,248.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 282.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 232.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.97%" + } + ] + }, + { + "id": 23, + "type": "message", + "date": "2021-05-28T14:13:49", + "date_unixtime": "1622204029", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466551888" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,044.09 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07276200 BTC ~ 2,643.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 708.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 151.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 283.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 232.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.42%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.53%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466551888" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,044.09 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07276200 BTC ~ 2,643.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 708.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 151.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 283.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 232.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.42%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.53%" + } + ] + }, + { + "id": 24, + "type": "message", + "date": "2021-05-28T15:02:19", + "date_unixtime": "1622206939", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466336156" + }, + " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,914.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07276200 BTC ~ 2,682.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 709.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 361.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.56 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 283.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 233.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466336156" + }, + { + "type": "plain", + "text": " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,914.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07276200 BTC ~ 2,682.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 709.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 361.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.56 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 283.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 233.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.07%" + } + ] + }, + { + "id": 25, + "type": "message", + "date": "2021-05-28T15:04:08", + "date_unixtime": "1622207048", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466311514" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 69,712.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,703.63 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07276200 BTC ~ 2,702.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 710.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 472.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.77 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 283.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 234.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.54%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466311514" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 69,712.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,703.63 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07276200 BTC ~ 2,702.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 710.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 472.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.77 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 283.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 234.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.54%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.30%" + } + ] + }, + { + "id": 26, + "type": "message", + "date": "2021-05-28T19:00:53", + "date_unixtime": "1622221253", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "466666381" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,012.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,007.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07276200 BTC ~ 2,609.03 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 711.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -15.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.76 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 283.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 235.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "466666381" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,012.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,007.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07276200 BTC ~ 2,609.03 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 711.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -15.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.76 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 283.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 235.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.94%" + } + ] + }, + { + "id": 27, + "type": "message", + "date": "2021-05-28T22:40:34", + "date_unixtime": "1622234434", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "466662559" + }, + " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,657.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,012.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,173.28 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07305200 BTC ~ 2,590.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 711.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -169.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,124.78 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 284.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 235.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "466662559" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,657.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,012.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,173.28 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07305200 BTC ~ 2,590.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 711.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -169.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,124.78 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 284.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 235.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%" + } + ] + }, + { + "id": 28, + "type": "message", + "date": "2021-05-28T23:01:58", + "date_unixtime": "1622235718", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "466584104" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 84,957.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,012.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,331.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07334500 BTC ~ 2,571.09 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 711.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -330.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,824.76 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 285.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 235.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "466584104" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 84,957.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,012.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,331.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07334500 BTC ~ 2,571.09 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 711.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -330.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,824.76 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 285.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 235.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.23%" + } + ] + }, + { + "id": 29, + "type": "message", + "date": "2021-05-28T23:27:50", + "date_unixtime": "1622237270", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "466107596" + }, + " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 85,257.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,012.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,524.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07364100 BTC ~ 2,560.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 711.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -448.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,524.77 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,948.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 286.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 235.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "466107596" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 85,257.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,012.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,524.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07364100 BTC ~ 2,560.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 711.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -448.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,524.77 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,948.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 286.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 235.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 30, + "type": "message", + "date": "2021-05-29T02:52:31", + "date_unixtime": "1622249551", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467271577" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 85,557.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,012.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,291.04 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07394000 BTC ~ 2,674.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 711.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 132.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.38 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 287.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 235.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467271577" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 85,557.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,012.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,291.04 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07394000 BTC ~ 2,674.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 711.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 132.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.38 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 287.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 235.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.98%" + } + ] + }, + { + "id": 31, + "type": "message", + "date": "2021-05-29T04:01:24", + "date_unixtime": "1622253684", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467246595" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 85,557.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,312.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,099.58 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07394000 BTC ~ 2,698.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 713.16 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 266.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.58 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 287.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 236.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467246595" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 85,557.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,312.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,099.58 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07394000 BTC ~ 2,698.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 713.16 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 266.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.58 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 287.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 236.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.06%" + } + ] + }, + { + "id": 32, + "type": "message", + "date": "2021-05-29T06:18:08", + "date_unixtime": "1622261888", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467715344" + }, + " / Amount: 0.00209200 / Price: 36290.42000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,157.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,612.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,346.48 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07453500 BTC ~ 2,708.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 714.35 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 224.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,825.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 289.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 237.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.25%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.52%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467715344" + }, + { + "type": "plain", + "text": " / Amount: 0.00209200 / Price: 36290.42000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,157.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,612.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,346.48 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07453500 BTC ~ 2,708.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 714.35 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 224.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,825.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 289.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 237.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.25%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.52%" + } + ] + }, + { + "id": 33, + "type": "message", + "date": "2021-05-29T06:32:05", + "date_unixtime": "1622262725", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467715130" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,157.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 70,912.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,094.10 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07453500 BTC ~ 2,719.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 716.62 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 285.20 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,127.04 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 289.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 238.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467715130" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,157.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 70,912.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,094.10 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07453500 BTC ~ 2,719.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 716.62 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 285.20 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,127.04 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 289.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 238.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 34, + "type": "message", + "date": "2021-05-29T06:55:26", + "date_unixtime": "1622264126", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467730827" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,157.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 71,212.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,625.68 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07453500 BTC ~ 2,680.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 717.81 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 79.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,127.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 289.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 239.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.33%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.56%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467730827" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,157.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 71,212.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,625.68 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07453500 BTC ~ 2,680.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 717.81 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 79.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,127.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 289.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 239.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.33%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.56%" + } + ] + }, + { + "id": 35, + "type": "message", + "date": "2021-05-29T06:55:36", + "date_unixtime": "1622264136", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467716239" + }, + " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,457.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 71,212.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,925.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07483100 BTC ~ 2,692.09 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 717.81 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 90.64 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,827.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 290.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 239.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.35%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.54%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467716239" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,457.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 71,212.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,925.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07483100 BTC ~ 2,692.09 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 717.81 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 90.64 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,827.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 290.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 239.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.35%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.54%" + } + ] + }, + { + "id": 36, + "type": "message", + "date": "2021-05-29T07:08:57", + "date_unixtime": "1622264937", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467756494" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,757.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 71,212.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,282.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07513000 BTC ~ 2,715.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 717.81 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 171.02 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,828.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 291.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 239.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467756494" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,757.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 71,212.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,282.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07513000 BTC ~ 2,715.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 717.81 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 171.02 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,828.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 291.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 239.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%" + } + ] + }, + { + "id": 37, + "type": "message", + "date": "2021-05-29T07:15:46", + "date_unixtime": "1622265346", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467756163" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,757.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 71,512.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,102.84 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07513000 BTC ~ 2,743.02 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 719.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 320.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,129.42 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 291.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 240.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467756163" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,757.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 71,512.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,102.84 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07513000 BTC ~ 2,743.02 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 719.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 320.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,129.42 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 291.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 240.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.03%" + } + ] + }, + { + "id": 38, + "type": "message", + "date": "2021-05-29T07:16:28", + "date_unixtime": "1622265388", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467222653" + }, + " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,757.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 71,812.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,955.01 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07513000 BTC ~ 2,778.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 720.19 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 509.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,430.58 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 291.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 241.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.20%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.74%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467222653" + }, + { + "type": "plain", + "text": " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,757.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 71,812.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,955.01 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07513000 BTC ~ 2,778.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 720.19 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 509.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,430.58 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 291.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 241.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.20%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.74%" + } + ] + }, + { + "id": 39, + "type": "message", + "date": "2021-05-29T07:26:39", + "date_unixtime": "1622265999", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466971366" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,757.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,112.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,753.34 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07513000 BTC ~ 2,802.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 721.38 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 632.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,731.78 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 291.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 242.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466971366" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,757.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,112.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,753.34 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07513000 BTC ~ 2,802.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 721.38 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 632.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,731.78 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 291.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 242.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.88%" + } + ] + }, + { + "id": 40, + "type": "message", + "date": "2021-05-29T10:24:07", + "date_unixtime": "1622276647", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467804769" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 86,757.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,118.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07513000 BTC ~ 2,720.88 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 216.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,731.78 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 291.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.04%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.90%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467804769" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 86,757.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,118.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07513000 BTC ~ 2,720.88 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 216.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,731.78 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 291.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.04%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.90%" + } + ] + }, + { + "id": 41, + "type": "message", + "date": "2021-05-29T10:24:23", + "date_unixtime": "1622276663", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467789430" + }, + " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 87,057.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,400.56 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07542000 BTC ~ 2,728.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 207.23 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,431.79 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 292.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -3.96%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467789430" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 87,057.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,400.56 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07542000 BTC ~ 2,728.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 207.23 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,431.79 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 292.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -3.96%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.00%" + } + ] + }, + { + "id": 42, + "type": "message", + "date": "2021-05-29T13:20:15", + "date_unixtime": "1622287215", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467777799" + }, + " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 87,657.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,552.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07600900 BTC ~ 2,648.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -321.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,831.79 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.80 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 294.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.24%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.80%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467777799" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 87,657.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,552.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07600900 BTC ~ 2,648.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -321.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,831.79 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.80 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 294.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.24%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.80%" + } + ] + }, + { + "id": 43, + "type": "message", + "date": "2021-05-29T14:07:24", + "date_unixtime": "1622290044", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "466307992" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 87,957.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 11,904.67 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07630800 BTC ~ 2,673.24 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -244.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,531.80 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.81 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 295.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -3.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.22%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "466307992" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 87,957.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 11,904.67 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07630800 BTC ~ 2,673.24 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -244.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,531.80 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.81 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 295.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -3.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.22%" + } + ] + }, + { + "id": 44, + "type": "message", + "date": "2021-05-29T14:07:34", + "date_unixtime": "1622290054", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467987981" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 88,257.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,203.76 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07661000 BTC ~ 2,684.79 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -233.71 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,231.79 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,651.81 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -3.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.18%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467987981" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 88,257.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,203.76 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07661000 BTC ~ 2,684.79 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -233.71 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,231.79 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,651.81 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -3.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.18%" + } + ] + }, + { + "id": 45, + "type": "message", + "date": "2021-05-29T19:55:17", + "date_unixtime": "1622310917", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467988173" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 88,557.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,049.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07691500 BTC ~ 2,597.93 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -775.25 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,062.44 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 297.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467988173" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 88,557.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,049.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07691500 BTC ~ 2,597.93 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -775.25 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,062.44 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 297.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.95%" + } + ] + }, + { + "id": 46, + "type": "message", + "date": "2021-05-30T01:30:54", + "date_unixtime": "1622331054", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "468688514" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 88,857.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,412.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,778.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07722300 BTC ~ 2,701.34 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 722.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -242.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.38 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,762.37 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 298.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 243.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.54%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.34%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "468688514" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 88,857.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,412.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,778.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07722300 BTC ~ 2,701.34 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 722.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -242.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.38 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,762.37 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 298.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 243.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.54%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.34%" + } + ] + }, + { + "id": 47, + "type": "message", + "date": "2021-05-30T02:35:57", + "date_unixtime": "1622334957", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "469050635" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 88,857.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,712.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,010.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07722300 BTC ~ 2,600.06 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 723.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -810.13 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,762.37 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 298.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 244.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.28%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "469050635" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 88,857.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,712.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,010.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07722300 BTC ~ 2,600.06 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 723.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -810.13 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,762.37 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 298.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 244.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.28%" + } + ] + }, + { + "id": 48, + "type": "message", + "date": "2021-05-30T02:48:47", + "date_unixtime": "1622335727", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "467988287" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,157.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,712.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,239.62 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07753100 BTC ~ 2,597.66 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 723.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -883.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,762.38 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 299.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 244.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.29%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.75%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "467988287" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,157.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,712.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,239.62 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07753100 BTC ~ 2,597.66 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 723.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -883.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,762.38 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 299.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 244.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.29%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.75%" + } + ] + }, + { + "id": 49, + "type": "message", + "date": "2021-05-30T05:15:31", + "date_unixtime": "1622344531", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "469156329" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 72,712.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 13,016.38 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,709.31 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 723.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -295.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,463.56 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 244.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.98%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.84%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "469156329" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 72,712.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 13,016.38 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,709.31 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 723.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -295.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,463.56 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 244.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.98%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.84%" + } + ] + }, + { + "id": 50, + "type": "message", + "date": "2021-05-30T06:32:28", + "date_unixtime": "1622349148", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "469135819" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 73,012.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,827.04 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,733.25 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 724.96 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -159.60 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.56 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,463.56 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 245.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "469135819" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 73,012.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,827.04 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,733.25 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 724.96 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -159.60 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.56 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,463.56 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 245.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%" + } + ] + }, + { + "id": 51, + "type": "message", + "date": "2021-05-30T07:46:42", + "date_unixtime": "1622353602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "468242855" + }, + " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 73,312.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,640.74 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,758.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 726.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -19.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.71 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,463.58 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 246.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "468242855" + }, + { + "type": "plain", + "text": " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 73,312.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,640.74 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,758.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 726.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -19.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.71 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,463.58 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 246.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%" + } + ] + }, + { + "id": 52, + "type": "message", + "date": "2021-05-30T08:51:15", + "date_unixtime": "1622357475", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "468242646" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 73,612.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,469.33 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,787.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 727.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 139.15 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,463.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 247.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "468242646" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 73,612.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,469.33 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,787.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 727.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 139.15 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,463.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 247.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%" + } + ] + }, + { + "id": 53, + "type": "message", + "date": "2021-05-30T09:41:54", + "date_unixtime": "1622360514", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "468183957" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 73,912.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,273.23 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,811.41 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 728.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 268.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,490.73 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 248.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "468183957" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 73,912.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,273.23 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,811.41 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 728.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 268.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,490.73 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 248.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%" + } + ] + }, + { + "id": 54, + "type": "message", + "date": "2021-05-30T09:42:37", + "date_unixtime": "1622360557", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "467988265" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 74,212.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,981.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,813.55 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 729.71 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 279.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,791.83 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 249.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -3.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "467988265" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 74,212.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,981.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,813.55 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 729.71 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 279.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,791.83 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 249.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -3.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.06%" + } + ] + }, + { + "id": 55, + "type": "message", + "date": "2021-05-30T16:31:55", + "date_unixtime": "1622385115", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "469687523" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,457.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 74,512.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,360.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07784200 BTC ~ 2,735.66 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 730.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -118.25 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,791.84 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 250.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "469687523" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,457.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 74,512.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,360.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07784200 BTC ~ 2,735.66 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 730.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -118.25 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,791.84 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 250.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 56, + "type": "message", + "date": "2021-05-31T03:40:29", + "date_unixtime": "1622425229", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "469686199" + }, + " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 89,757.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 74,512.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,532.45 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07813800 BTC ~ 2,718.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 730.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -263.12 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,699.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,791.88 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 301.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 250.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "469686199" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 89,757.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 74,512.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,532.45 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07813800 BTC ~ 2,718.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 730.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -263.12 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,699.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,791.88 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 301.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 250.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%" + } + ] + }, + { + "id": 57, + "type": "message", + "date": "2021-05-31T05:06:20", + "date_unixtime": "1622430380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "469624759" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 90,057.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 74,512.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 11,686.93 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07843700 BTC ~ 2,697.57 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 730.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -429.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,399.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,791.88 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 302.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 250.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "469624759" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 90,057.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 74,512.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 11,686.93 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07843700 BTC ~ 2,697.57 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 730.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -429.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,399.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,791.88 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 302.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 250.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.15%" + } + ] + }, + { + "id": 58, + "type": "message", + "date": "2021-05-31T07:30:25", + "date_unixtime": "1622439025", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "470829443" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 90,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 74,512.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,057.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07873900 BTC ~ 2,726.23 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 730.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -330.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,397.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 303.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 250.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.58%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.68%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "470829443" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 90,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 74,512.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,057.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07873900 BTC ~ 2,726.23 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 730.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -330.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,397.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 303.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 250.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.58%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.68%" + } + ] + }, + { + "id": 59, + "type": "message", + "date": "2021-05-31T07:30:38", + "date_unixtime": "1622439038", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "470722075" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 90,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 74,812.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 11,763.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07873900 BTC ~ 2,725.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 732.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -323.57 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,397.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 303.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 251.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.70%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "470722075" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 90,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 74,812.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 11,763.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07873900 BTC ~ 2,725.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 732.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -323.57 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,397.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 303.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 251.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.70%" + } + ] + }, + { + "id": 60, + "type": "message", + "date": "2021-05-31T07:30:49", + "date_unixtime": "1622439049", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "470083071" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 90,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 75,112.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,462.73 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07873900 BTC ~ 2,722.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 733.28 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -326.11 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,001.60 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,397.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 303.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 252.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.44%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.82%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "470083071" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 90,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 75,112.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,462.73 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07873900 BTC ~ 2,722.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 733.28 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -326.11 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,001.60 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,397.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 303.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 252.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.44%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.82%" + } + ] + }, + { + "id": 61, + "type": "message", + "date": "2021-05-31T07:31:57", + "date_unixtime": "1622439117", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471018871" + }, + " / Amount: 0.00862800 / Price: 34585.84000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 90,357.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 76,012.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 10,621.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07873900 BTC ~ 2,724.31 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 736.85 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -261.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,420.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 303.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 255.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.53%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.76%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471018871" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34585.84000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 90,357.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 76,012.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 10,621.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07873900 BTC ~ 2,724.31 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 736.85 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -261.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,420.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 303.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 255.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.53%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.76%" + } + ] + }, + { + "id": 62, + "type": "message", + "date": "2021-05-31T07:32:21", + "date_unixtime": "1622439141", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471019316" + }, + " / Amount: 0.00845800 / Price: 34636.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 90,951.45 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 76,012.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32357100 BTC ~ 11,203.64 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07933400 BTC ~ 2,746.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 736.85 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -251.55 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,400.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,420.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 305.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 255.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.63%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.68%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471019316" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 34636.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 90,951.45 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 76,012.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32357100 BTC ~ 11,203.64 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07933400 BTC ~ 2,746.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 736.85 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -251.55 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,400.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,420.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 305.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 255.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.63%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.68%" + } + ] + }, + { + "id": 63, + "type": "message", + "date": "2021-05-31T07:32:38", + "date_unixtime": "1622439158", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471019471" + }, + " / Amount: 0.00808500 / Price: 34639.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 91,244.40 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 76,012.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33173600 BTC ~ 11,473.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07962700 BTC ~ 2,754.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 736.85 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -267.22 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,100.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,420.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 306.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 255.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.52%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.80%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471019471" + }, + { + "type": "plain", + "text": " / Amount: 0.00808500 / Price: 34639.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 91,244.40 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 76,012.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33173600 BTC ~ 11,473.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07962700 BTC ~ 2,754.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 736.85 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -267.22 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,100.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,420.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 306.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 255.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.52%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.80%" + } + ] + }, + { + "id": 64, + "type": "message", + "date": "2021-05-31T07:36:08", + "date_unixtime": "1622439368", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "471021272" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 91,534.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 76,899.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 10,913.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07991700 BTC ~ 2,768.02 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 753.36 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -200.39 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,006.68 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,430.45 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 307.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 258.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.64%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "471021272" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 91,534.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 76,899.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 10,913.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07991700 BTC ~ 2,768.02 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 753.36 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -200.39 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,006.68 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,430.45 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 307.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 258.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.64%" + } + ] + }, + { + "id": 65, + "type": "message", + "date": "2021-05-31T07:37:03", + "date_unixtime": "1622439423", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471025246" + }, + " / Amount: 0.00862800 / Price: 34663.22000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 91,534.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,189.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 10,622.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.07991700 BTC ~ 2,765.13 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 764.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -193.22 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.07 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 307.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 259.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.53%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.76%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471025246" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34663.22000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 91,534.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,189.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 10,622.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.07991700 BTC ~ 2,765.13 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 764.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -193.22 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.07 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 307.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 259.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.53%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.76%" + } + ] + }, + { + "id": 66, + "type": "message", + "date": "2021-05-31T07:37:11", + "date_unixtime": "1622439431", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471025375" + }, + " / Amount: 0.00854300 / Price: 34644.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 91,833.54 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,189.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31532400 BTC ~ 10,908.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08021600 BTC ~ 2,774.93 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 764.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -196.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,700.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.07 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 308.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 259.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.52%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.78%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471025375" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 34644.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 91,833.54 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,189.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31532400 BTC ~ 10,908.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08021600 BTC ~ 2,774.93 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 764.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -196.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,700.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.07 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 308.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 259.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.52%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.78%" + } + ] + }, + { + "id": 67, + "type": "message", + "date": "2021-05-31T07:37:17", + "date_unixtime": "1622439437", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471026434" + }, + " / Amount: 0.00845800 / Price: 34648.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 92,129.51 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,189.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32357100 BTC ~ 11,198.91 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08051200 BTC ~ 2,786.55 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 764.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -189.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,400.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.07 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 309.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 259.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.55%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.72%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471026434" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 34648.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 92,129.51 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,189.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32357100 BTC ~ 11,198.91 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08051200 BTC ~ 2,786.55 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 764.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -189.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,400.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.07 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 309.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 259.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.55%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.72%" + } + ] + }, + { + "id": 68, + "type": "message", + "date": "2021-05-31T07:37:26", + "date_unixtime": "1622439446", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471026714" + }, + " / Amount: 0.00837400 / Price: 34636.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 92,422.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,189.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33173600 BTC ~ 11,479.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08080500 BTC ~ 2,796.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 764.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -192.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,100.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.07 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 259.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.58%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.74%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471026714" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 34636.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 92,422.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,189.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33173600 BTC ~ 11,479.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08080500 BTC ~ 2,796.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 764.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -192.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,100.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.07 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 259.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.58%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.74%" + } + ] + }, + { + "id": 69, + "type": "message", + "date": "2021-05-31T07:48:38", + "date_unixtime": "1622440118", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471018583" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 92,712.61 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,189.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 11,693.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08109500 BTC ~ 2,790.47 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 764.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -274.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,800.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.07 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 259.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471018583" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 92,712.61 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,189.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 11,693.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08109500 BTC ~ 2,790.47 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 764.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -274.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,800.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.07 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 259.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.09%" + } + ] + }, + { + "id": 70, + "type": "message", + "date": "2021-05-31T09:26:45", + "date_unixtime": "1622446005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "471040907" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,189.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,456.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 2,911.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 764.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 309.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,801.19 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.09 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 259.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "471040907" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,189.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,456.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 2,911.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 764.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 309.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,801.19 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.09 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 259.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.09%" + } + ] + }, + { + "id": 71, + "type": "message", + "date": "2021-05-31T10:24:16", + "date_unixtime": "1622449456", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "471027540" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,489.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,274.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 2,940.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 765.66 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 457.28 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,102.39 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.09 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 260.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "471027540" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,489.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,274.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 2,940.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 765.66 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 457.28 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,102.39 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.09 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 260.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 72, + "type": "message", + "date": "2021-05-31T12:04:52", + "date_unixtime": "1622455492", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "471027708" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 77,788.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,159.21 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 2,985.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 767.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 688.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,403.59 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.08 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 261.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.33%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.57%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "471027708" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 77,788.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,159.21 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 2,985.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 767.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 688.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,403.59 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.08 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 261.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.33%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.57%" + } + ] + }, + { + "id": 73, + "type": "message", + "date": "2021-05-31T12:44:57", + "date_unixtime": "1622457897", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "471027796" + }, + " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 78,084.64 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,930.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 3,004.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 773.01 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 780.17 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,704.75 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,447.08 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 262.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "471027796" + }, + { + "type": "plain", + "text": " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 78,084.64 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,930.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 3,004.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 773.01 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 780.17 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,704.75 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,447.08 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 262.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%" + } + ] + }, + { + "id": 74, + "type": "message", + "date": "2021-05-31T14:11:02", + "date_unixtime": "1622463062", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "471027892" + }, + " / Amount: 0.00000100 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 78,377.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,718.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 3,027.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 781.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 892.20 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,995.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,457.11 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 263.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.70%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.17%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "471027892" + }, + { + "type": "plain", + "text": " / Amount: 0.00000100 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 78,377.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,718.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 3,027.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 781.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 892.20 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,995.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,457.11 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 263.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.70%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.17%" + } + ] + }, + { + "id": 75, + "type": "message", + "date": "2021-06-01T02:03:52", + "date_unixtime": "1622505832", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466306842" + }, + " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 78,667.74 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,529.68 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 3,056.99 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 792.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,034.10 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,754.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 264.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.20%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466306842" + }, + { + "type": "plain", + "text": " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 78,667.74 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,529.68 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 3,056.99 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 792.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,034.10 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,754.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 264.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.20%" + } + ] + }, + { + "id": 76, + "type": "message", + "date": "2021-06-01T10:53:24", + "date_unixtime": "1622537604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "472183901" + }, + " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,012.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 78,967.73 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 10,805.46 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08139700 BTC ~ 2,941.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 793.49 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 495.74 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,764.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 265.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.16%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "472183901" + }, + { + "type": "plain", + "text": " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,012.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 78,967.73 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 10,805.46 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08139700 BTC ~ 2,941.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 793.49 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 495.74 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,764.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 265.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.16%" + } + ] + }, + { + "id": 77, + "type": "message", + "date": "2021-06-01T15:07:08", + "date_unixtime": "1622552828", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "471480771" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,312.58 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 78,967.73 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,000.60 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08168400 BTC ~ 2,927.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 793.49 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 376.23 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,764.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 313.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 265.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "471480771" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,312.58 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 78,967.73 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,000.60 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08168400 BTC ~ 2,927.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 793.49 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 376.23 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,764.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 313.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 265.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.01%" + } + ] + }, + { + "id": 78, + "type": "message", + "date": "2021-06-01T15:42:15", + "date_unixtime": "1622554935", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "472995674" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,612.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 78,967.73 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,742.91 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08197400 BTC ~ 3,055.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 793.49 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 946.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,691.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,764.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 314.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 265.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "472995674" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,612.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 78,967.73 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,742.91 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08197400 BTC ~ 3,055.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 793.49 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 946.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,691.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,764.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 314.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 265.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%" + } + ] + }, + { + "id": 79, + "type": "message", + "date": "2021-06-01T18:51:57", + "date_unixtime": "1622566317", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "473047087" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,612.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 79,267.71 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,010.93 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08197400 BTC ~ 2,940.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 794.68 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 400.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,691.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,764.21 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 314.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 266.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "473047087" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,612.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 79,267.71 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,010.93 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08197400 BTC ~ 2,940.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 794.68 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 400.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,691.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,764.21 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 314.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 266.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.91%" + } + ] + }, + { + "id": 80, + "type": "message", + "date": "2021-06-02T09:33:36", + "date_unixtime": "1622619216", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "473291155" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 79,267.71 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,739.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,065.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 794.68 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 954.09 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,692.41 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,764.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 266.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "473291155" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 79,267.71 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,739.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,065.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 794.68 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 954.09 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,692.41 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,764.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 266.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%" + } + ] + }, + { + "id": 81, + "type": "message", + "date": "2021-06-02T15:28:54", + "date_unixtime": "1622640534", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "472751537" + }, + " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 79,567.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,566.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,099.32 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 795.88 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,116.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,993.59 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,764.31 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 267.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "472751537" + }, + { + "type": "plain", + "text": " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 79,567.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,566.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,099.32 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 795.88 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,116.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,993.59 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,764.31 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 267.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.88%" + } + ] + }, + { + "id": 82, + "type": "message", + "date": "2021-06-02T16:37:49", + "date_unixtime": "1622644669", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466107425" + }, + " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 79,867.69 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 11,358.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,125.18 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 797.08 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,235.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,058.98 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 268.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466107425" + }, + { + "type": "plain", + "text": " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 79,867.69 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 11,358.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,125.18 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 797.08 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,235.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,058.98 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 268.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%" + } + ] + }, + { + "id": 83, + "type": "message", + "date": "2021-06-02T17:18:06", + "date_unixtime": "1622647086", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "466015423" + }, + " / Amount: 0.00784700 / Price: 38385.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 80,167.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29106600 BTC ~ 11,078.60 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,131.14 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 798.28 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,263.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,360.09 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 269.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.86%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "466015423" + }, + { + "type": "plain", + "text": " / Amount: 0.00784700 / Price: 38385.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 80,167.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29106600 BTC ~ 11,078.60 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,131.14 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 798.28 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,263.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,360.09 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 269.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.86%" + } + ] + }, + { + "id": 84, + "type": "message", + "date": "2021-06-03T08:26:53", + "date_unixtime": "1622701613", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "465946564" + }, + " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 80,467.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,965.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,185.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 799.50 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,505.42 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,661.22 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 270.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "465946564" + }, + { + "type": "plain", + "text": " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 80,467.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,965.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,185.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 799.50 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,505.42 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,661.22 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 270.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%" + } + ] + }, + { + "id": 85, + "type": "message", + "date": "2021-06-03T11:16:38", + "date_unixtime": "1622711798", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "465925000" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 80,767.69 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,784.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,220.91 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 800.68 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,661.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,962.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 271.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "465925000" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 80,767.69 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,784.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,220.91 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 800.68 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,661.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,962.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 271.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 86, + "type": "message", + "date": "2021-06-04T03:18:46", + "date_unixtime": "1622769526", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "475269134" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 93,912.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,126.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08226400 BTC ~ 3,111.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,194.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,962.31 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.49%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.57%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "475269134" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 93,912.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,126.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08226400 BTC ~ 3,111.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,194.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,962.31 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.49%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.57%" + } + ] + }, + { + "id": 87, + "type": "message", + "date": "2021-06-04T07:12:05", + "date_unixtime": "1622783525", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "475154920" + }, + " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 94,212.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,269.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08254000 BTC ~ 3,077.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,004.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,700.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,962.32 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 316.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "475154920" + }, + { + "type": "plain", + "text": " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 94,212.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,269.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08254000 BTC ~ 3,077.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,004.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,700.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,962.32 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 316.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%" + } + ] + }, + { + "id": 88, + "type": "message", + "date": "2021-06-04T07:14:26", + "date_unixtime": "1622783666", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "474492547" + }, + " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 94,512.58 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,440.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08281900 BTC ~ 3,052.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 850.28 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,400.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,962.32 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 317.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.17%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "474492547" + }, + { + "type": "plain", + "text": " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 94,512.58 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,440.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08281900 BTC ~ 3,052.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 850.28 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,400.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,962.32 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 317.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.17%" + } + ] + }, + { + "id": 89, + "type": "message", + "date": "2021-06-04T07:14:34", + "date_unixtime": "1622783674", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "474459245" + }, + " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 94,812.58 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29106600 BTC ~ 10,740.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08310000 BTC ~ 3,066.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 864.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,099.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,962.32 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 318.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "474459245" + }, + { + "type": "plain", + "text": " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 94,812.58 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29106600 BTC ~ 10,740.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08310000 BTC ~ 3,066.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 864.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,099.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,962.32 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 318.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%" + } + ] + }, + { + "id": 90, + "type": "message", + "date": "2021-06-04T14:05:28", + "date_unixtime": "1622808328", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "474400934" + }, + " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 95,112.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 10,809.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08338400 BTC ~ 3,014.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 580.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,799.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,962.37 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "474400934" + }, + { + "type": "plain", + "text": " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 95,112.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 10,809.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08338400 BTC ~ 3,014.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 580.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,799.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,962.37 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.13%" + } + ] + }, + { + "id": 91, + "type": "message", + "date": "2021-06-04T14:07:55", + "date_unixtime": "1622808475", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "476018884" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 95,412.55 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,013.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08367100 BTC ~ 3,001.82 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 472.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,941.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 320.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.22%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.89%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "476018884" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 95,412.55 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,013.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08367100 BTC ~ 3,001.82 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 472.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,941.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 320.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.22%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.89%" + } + ] + }, + { + "id": 92, + "type": "message", + "date": "2021-06-04T19:26:55", + "date_unixtime": "1622827615", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "476652986" + }, + " / Amount: 0.00000100 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 95,712.54 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,067.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,717.88 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08396100 BTC ~ 3,122.53 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 801.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 997.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.31 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,641.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 321.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 272.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.18%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "476652986" + }, + { + "type": "plain", + "text": " / Amount: 0.00000100 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 95,712.54 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,067.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,717.88 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08396100 BTC ~ 3,122.53 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 801.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 997.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.31 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,641.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 321.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 272.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.18%" + } + ] + }, + { + "id": 93, + "type": "message", + "date": "2021-06-05T02:43:03", + "date_unixtime": "1622853783", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "476649253" + }, + " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 95,712.54 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,367.69 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,549.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08396100 BTC ~ 3,158.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 803.07 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,166.69 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,641.23 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 321.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 273.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "476649253" + }, + { + "type": "plain", + "text": " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 95,712.54 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,367.69 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,549.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08396100 BTC ~ 3,158.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 803.07 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,166.69 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,641.23 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 321.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 273.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.02%" + } + ] + }, + { + "id": 94, + "type": "message", + "date": "2021-06-05T11:52:42", + "date_unixtime": "1622886762", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "477258434" + }, + " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 95,712.54 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,667.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 10,872.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08396100 BTC ~ 3,053.25 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 804.27 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 685.48 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,641.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 321.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 274.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.61%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.51%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "477258434" + }, + { + "type": "plain", + "text": " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 95,712.54 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,667.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 10,872.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08396100 BTC ~ 3,053.25 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 804.27 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 685.48 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,641.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 321.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 274.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.61%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.51%" + } + ] + }, + { + "id": 95, + "type": "message", + "date": "2021-06-05T13:47:05", + "date_unixtime": "1622893625", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "476951036" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 96,012.53 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,667.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 10,999.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08424800 BTC ~ 3,018.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 804.27 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 477.19 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,823.50 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,641.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 322.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 274.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "476951036" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 96,012.53 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,667.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 10,999.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08424800 BTC ~ 3,018.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 804.27 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 477.19 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,823.50 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,641.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 322.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 274.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.03%" + } + ] + }, + { + "id": 96, + "type": "message", + "date": "2021-06-05T14:04:57", + "date_unixtime": "1622894697", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "476248276" + }, + " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 96,312.52 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,667.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,212.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08453800 BTC ~ 3,008.50 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 804.27 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 380.81 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,523.52 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,641.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 323.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 274.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.38%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.69%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "476248276" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 96,312.52 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,667.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,212.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08453800 BTC ~ 3,008.50 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 804.27 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 380.81 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,523.52 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,641.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 323.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 274.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.38%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.69%" + } + ] + }, + { + "id": 97, + "type": "message", + "date": "2021-06-05T23:29:52", + "date_unixtime": "1622928592", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "476252759" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 96,612.51 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,667.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,364.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08483100 BTC ~ 2,982.47 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 804.27 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 206.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,343.58 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 324.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 274.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "476252759" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 96,612.51 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,667.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,364.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08483100 BTC ~ 2,982.47 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 804.27 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 206.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,343.58 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 324.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 274.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.92%" + } + ] + }, + { + "id": 98, + "type": "message", + "date": "2021-06-07T03:46:43", + "date_unixtime": "1623030403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "478342670" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 96,912.53 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,667.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,150.62 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08512700 BTC ~ 3,120.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 804.27 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 830.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.33 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,043.55 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 325.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 274.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.64%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "478342670" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 96,912.53 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,667.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,150.62 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08512700 BTC ~ 3,120.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 804.27 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 830.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.33 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,043.55 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 325.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 274.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.64%" + } + ] + }, + { + "id": 99, + "type": "message", + "date": "2021-06-07T22:48:53", + "date_unixtime": "1623098933", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "479710611" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 96,912.53 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,217.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08512700 BTC ~ 2,954.23 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 32.61 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.30 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,043.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 325.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": 0.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +6.29%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "479710611" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 96,912.53 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,217.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08512700 BTC ~ 2,954.23 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 32.61 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.30 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,043.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 325.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": 0.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +6.29%" + } + ] + }, + { + "id": 100, + "type": "message", + "date": "2021-06-07T22:50:21", + "date_unixtime": "1623099021", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "476253062" + }, + " / Amount: 0.00155800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 97,212.54 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,378.28 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08542300 BTC ~ 2,932.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -129.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.32 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,043.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 326.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": 0.14%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +6.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "476253062" + }, + { + "type": "plain", + "text": " / Amount: 0.00155800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 97,212.54 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,378.28 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08542300 BTC ~ 2,932.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -129.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.32 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,043.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 326.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": 0.14%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +6.40%" + } + ] + }, + { + "id": 101, + "type": "message", + "date": "2021-06-07T22:52:36", + "date_unixtime": "1623099156", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "477731005" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 97,812.52 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 11,960.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08602400 BTC ~ 2,954.63 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -124.17 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,221.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,744.74 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 328.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.28%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "477731005" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 97,812.52 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 11,960.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08602400 BTC ~ 2,954.63 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -124.17 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,221.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,744.74 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 328.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.28%" + } + ] + }, + { + "id": 102, + "type": "message", + "date": "2021-06-07T23:16:31", + "date_unixtime": "1623100591", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "477751440" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 98,112.51 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,069.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08632900 BTC ~ 2,920.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -349.02 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.05 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,144.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 329.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.29%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.77%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "477751440" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 98,112.51 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,069.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08632900 BTC ~ 2,920.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -349.02 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.05 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,144.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 329.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.29%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.77%" + } + ] + }, + { + "id": 103, + "type": "message", + "date": "2021-06-08T01:52:12", + "date_unixtime": "1623109932", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "480728071" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 98,412.52 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,190.49 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08663700 BTC ~ 2,891.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -557.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,844.53 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 330.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.18%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "480728071" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 98,412.52 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,190.49 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08663700 BTC ~ 2,891.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -557.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,844.53 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 330.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.18%" + } + ] + }, + { + "id": 104, + "type": "message", + "date": "2021-06-08T04:42:22", + "date_unixtime": "1623120142", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "480731155" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 98,712.51 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,415.47 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08694800 BTC ~ 2,886.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -637.36 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,544.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 331.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.38%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.67%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "480731155" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 98,712.51 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,415.47 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08694800 BTC ~ 2,886.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -637.36 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,544.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 331.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.38%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.67%" + } + ] + }, + { + "id": 105, + "type": "message", + "date": "2021-06-08T04:45:57", + "date_unixtime": "1623120357", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "480735967" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 99,012.50 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 12,563.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08726200 BTC ~ 2,864.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -811.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,244.38 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 332.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.29%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.82%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "480735967" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 99,012.50 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 12,563.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08726200 BTC ~ 2,864.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -811.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,244.38 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 332.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.29%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.82%" + } + ] + }, + { + "id": 106, + "type": "message", + "date": "2021-06-08T04:53:25", + "date_unixtime": "1623120805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "480736100" + }, + " / Amount: 0.00610000 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 99,312.51 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 12,777.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08757900 BTC ~ 2,857.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -904.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,944.30 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 333.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "480736100" + }, + { + "type": "plain", + "text": " / Amount: 0.00610000 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 99,312.51 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 12,777.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08757900 BTC ~ 2,857.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -904.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,944.30 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 333.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.40%" + } + ] + }, + { + "id": 107, + "type": "message", + "date": "2021-06-08T16:08:34", + "date_unixtime": "1623161314", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "480770359" + }, + " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 99,612.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 12,772.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08789900 BTC ~ 2,803.30 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,263.11 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,644.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 334.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.41%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.76%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "480770359" + }, + { + "type": "plain", + "text": " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 99,612.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 12,772.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08789900 BTC ~ 2,803.30 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,263.11 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,644.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 334.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.41%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.76%" + } + ] + }, + { + "id": 108, + "type": "message", + "date": "2021-06-08T16:10:27", + "date_unixtime": "1623161427", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "480968530" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 99,912.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,096.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08822200 BTC ~ 2,821.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,221.35 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,344.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 335.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.42%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "480968530" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 99,912.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,096.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08822200 BTC ~ 2,821.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,221.35 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,344.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 335.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.42%" + } + ] + }, + { + "id": 109, + "type": "message", + "date": "2021-06-08T16:56:30", + "date_unixtime": "1623164190", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "481198534" + }, + " / Amount: 0.00468600 / Price: 31477.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,212.48 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,176.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08854900 BTC ~ 2,787.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,475.87 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,044.10 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 336.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "481198534" + }, + { + "type": "plain", + "text": " / Amount: 0.00468600 / Price: 31477.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,212.48 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,176.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08854900 BTC ~ 2,787.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,475.87 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,044.10 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 336.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 110, + "type": "message", + "date": "2021-06-08T17:20:41", + "date_unixtime": "1623165641", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "481204881" + }, + " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,512.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42783300 BTC ~ 13,342.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08887900 BTC ~ 2,771.81 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,624.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,744.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 337.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.97%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "481204881" + }, + { + "type": "plain", + "text": " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,512.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42783300 BTC ~ 13,342.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08887900 BTC ~ 2,771.81 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,624.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,744.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 337.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.97%" + } + ] + }, + { + "id": 111, + "type": "message", + "date": "2021-06-08T18:22:48", + "date_unixtime": "1623169368", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "482139288" + }, + " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,812.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 81,967.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43712600 BTC ~ 14,097.61 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08921200 BTC ~ 2,877.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 805.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,064.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.34 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,443.96 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 275.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.34%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.51%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "482139288" + }, + { + "type": "plain", + "text": " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,812.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 81,967.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43712600 BTC ~ 14,097.61 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08921200 BTC ~ 2,877.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 805.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,064.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.34 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,443.96 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 275.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.34%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.51%" + } + ] + }, + { + "id": 112, + "type": "message", + "date": "2021-06-08T20:57:14", + "date_unixtime": "1623178634", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "482101601" + }, + " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,812.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 82,267.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42783300 BTC ~ 13,997.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08921200 BTC ~ 2,918.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 806.66 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -822.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.54 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,444.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 276.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "482101601" + }, + { + "type": "plain", + "text": " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,812.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 82,267.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42783300 BTC ~ 13,997.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08921200 BTC ~ 2,918.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 806.66 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -822.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.54 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,444.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 276.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.06%" + } + ] + }, + { + "id": 113, + "type": "message", + "date": "2021-06-08T22:00:15", + "date_unixtime": "1623182415", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "482031679" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,812.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 82,567.69 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,767.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08921200 BTC ~ 2,933.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 807.86 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -735.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.71 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,444.03 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 277.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.37%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.54%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "482031679" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,812.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 82,567.69 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,767.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08921200 BTC ~ 2,933.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 807.86 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -735.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.71 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,444.03 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 277.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.37%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.54%" + } + ] + }, + { + "id": 114, + "type": "message", + "date": "2021-06-08T22:42:42", + "date_unixtime": "1623184962", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "482027914" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,812.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 82,867.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,644.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08921200 BTC ~ 2,972.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 809.05 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -519.11 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.95 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,444.03 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 278.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.72%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "482027914" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,812.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 82,867.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,644.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08921200 BTC ~ 2,972.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 809.05 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -519.11 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.95 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,444.03 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 278.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.72%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.23%" + } + ] + }, + { + "id": 115, + "type": "message", + "date": "2021-06-08T22:46:47", + "date_unixtime": "1623185207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "481218651" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,812.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 83,167.68 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,519.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08921200 BTC ~ 3,011.37 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 810.26 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -304.11 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,471.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 279.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "481218651" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,812.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 83,167.68 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,519.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08921200 BTC ~ 3,011.37 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 810.26 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -304.11 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,471.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 279.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 116, + "type": "message", + "date": "2021-06-09T04:19:40", + "date_unixtime": "1623205180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "482508342" + }, + " / Amount: 0.00302900 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 100,812.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 83,467.66 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 12,706.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08921200 BTC ~ 2,894.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 811.47 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -932.36 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,481.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 280.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "482508342" + }, + { + "type": "plain", + "text": " / Amount: 0.00302900 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 100,812.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 83,467.66 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 12,706.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08921200 BTC ~ 2,894.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 811.47 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -932.36 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,481.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 280.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%" + } + ] + }, + { + "id": 117, + "type": "message", + "date": "2021-06-09T07:17:16", + "date_unixtime": "1623215836", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "482789484" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 83,467.66 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,477.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,012.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 811.47 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -342.60 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,481.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 280.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "482789484" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 83,467.66 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,477.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,012.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 811.47 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -342.60 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,481.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 280.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.23%" + } + ] + }, + { + "id": 118, + "type": "message", + "date": "2021-06-09T08:44:43", + "date_unixtime": "1623221083", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "481204810" + }, + " / Amount: 0.00000200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 83,767.65 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,355.69 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,053.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 812.68 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -122.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,773.48 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 281.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.96%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.87%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "481204810" + }, + { + "type": "plain", + "text": " / Amount: 0.00000200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 83,767.65 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,355.69 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,053.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 812.68 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -122.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,773.48 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 281.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.96%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.87%" + } + ] + }, + { + "id": 119, + "type": "message", + "date": "2021-06-09T09:04:33", + "date_unixtime": "1623222273", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "481198309" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 84,067.65 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,170.43 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,080.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 813.88 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 20.43 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,074.55 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 282.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "481198309" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 84,067.65 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,170.43 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,080.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 813.88 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 20.43 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,074.55 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 282.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.98%" + } + ] + }, + { + "id": 120, + "type": "message", + "date": "2021-06-09T13:22:43", + "date_unixtime": "1623237763", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "480968361" + }, + " / Amount: 0.00031600 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 84,367.65 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,964.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,103.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 815.07 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 138.87 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,375.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 283.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.24%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "480968361" + }, + { + "type": "plain", + "text": " / Amount: 0.00031600 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 84,367.65 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,964.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,103.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 815.07 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 138.87 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,375.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 283.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.24%" + } + ] + }, + { + "id": 121, + "type": "message", + "date": "2021-06-09T14:00:58", + "date_unixtime": "1623240058", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "480770218" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 84,667.63 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,848.10 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,148.88 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 816.27 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 368.40 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,676.73 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 284.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.79%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "480770218" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 84,667.63 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,848.10 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,148.88 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 816.27 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 368.40 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,676.73 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 284.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.79%" + } + ] + }, + { + "id": 122, + "type": "message", + "date": "2021-06-09T14:13:20", + "date_unixtime": "1623240800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "480735925" + }, + " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 84,967.65 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,600.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,162.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 817.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 435.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,977.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 285.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.53%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.36%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "480735925" + }, + { + "type": "plain", + "text": " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 84,967.65 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,600.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,162.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 817.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 435.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,977.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 285.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.53%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.36%" + } + ] + }, + { + "id": 123, + "type": "message", + "date": "2021-06-09T17:04:39", + "date_unixtime": "1623251079", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "480735447" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 85,567.62 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,153.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,202.01 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 819.83 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 630.25 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,278.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 287.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "480735447" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 85,567.62 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,153.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,202.01 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 819.83 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 630.25 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,278.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 287.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 124, + "type": "message", + "date": "2021-06-09T17:17:03", + "date_unixtime": "1623251823", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "480731005" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 85,867.62 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 12,011.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,244.06 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 821.02 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 831.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,579.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 288.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.80%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "480731005" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 85,867.62 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 12,011.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,244.06 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 821.02 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 831.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,579.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 288.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.80%" + } + ] + }, + { + "id": 125, + "type": "message", + "date": "2021-06-09T17:18:18", + "date_unixtime": "1623251898", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "480727789" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 86,167.63 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,703.30 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,241.58 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 822.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 822.25 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,881.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 289.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "480727789" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 86,167.63 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,703.30 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,241.58 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 822.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 822.25 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,881.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 289.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.88%" + } + ] + }, + { + "id": 126, + "type": "message", + "date": "2021-06-09T19:20:17", + "date_unixtime": "1623259217", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "477751356" + }, + " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 86,467.63 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,627.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,304.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 823.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,110.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,182.11 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 290.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "477751356" + }, + { + "type": "plain", + "text": " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 86,467.63 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,627.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,304.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 823.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,110.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,182.11 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 290.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%" + } + ] + }, + { + "id": 127, + "type": "message", + "date": "2021-06-10T00:26:25", + "date_unixtime": "1623277585", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "477730720" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 86,767.62 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,415.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,329.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 824.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,224.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,483.22 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 291.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.70%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.19%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "477730720" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 86,767.62 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,415.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,329.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 824.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,224.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,483.22 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 291.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.70%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.19%" + } + ] + }, + { + "id": 128, + "type": "message", + "date": "2021-06-10T02:03:25", + "date_unixtime": "1623283405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "477633784" + }, + " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,067.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 11,250.64 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,368.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 825.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,400.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,784.30 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 292.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "477633784" + }, + { + "type": "plain", + "text": " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,067.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 11,250.64 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,368.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 825.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,400.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,784.30 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 292.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%" + } + ] + }, + { + "id": 129, + "type": "message", + "date": "2021-06-10T12:03:26", + "date_unixtime": "1623319406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "476252657" + }, + " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,367.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29106600 BTC ~ 11,071.30 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,405.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 827.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,558.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,085.39 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 293.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "476252657" + }, + { + "type": "plain", + "text": " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,367.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29106600 BTC ~ 11,071.30 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,405.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 827.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,558.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,085.39 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 293.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 130, + "type": "message", + "date": "2021-06-10T12:04:50", + "date_unixtime": "1623319490", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "476252340" + }, + " / Amount: 0.00011200 / Price: 38385.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,112.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,667.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,849.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,429.68 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 828.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,662.21 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,386.50 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 294.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.69%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.21%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "476252340" + }, + { + "type": "plain", + "text": " / Amount: 0.00011200 / Price: 38385.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,112.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,667.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,849.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,429.68 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 828.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,662.21 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,386.50 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 294.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.69%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.21%" + } + ] + }, + { + "id": 131, + "type": "message", + "date": "2021-06-10T16:49:15", + "date_unixtime": "1623336555", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "484768309" + }, + " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,412.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,667.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29134700 BTC ~ 10,748.85 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08953200 BTC ~ 3,303.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 828.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,135.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.52 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 340.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 294.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "484768309" + }, + { + "type": "plain", + "text": " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,412.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,667.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29134700 BTC ~ 10,748.85 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08953200 BTC ~ 3,303.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 828.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,135.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.52 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 340.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 294.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.08%" + } + ] + }, + { + "id": 132, + "type": "message", + "date": "2021-06-10T19:29:48", + "date_unixtime": "1623346188", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "484764815" + }, + " / Amount: 0.00000900 / Price: 36543.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 101,712.46 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,667.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29927500 BTC ~ 10,897.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.08981300 BTC ~ 3,270.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 828.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 951.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.53 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 341.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 294.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.41%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "484764815" + }, + { + "type": "plain", + "text": " / Amount: 0.00000900 / Price: 36543.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 101,712.46 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,667.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29927500 BTC ~ 10,897.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.08981300 BTC ~ 3,270.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 828.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 951.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.53 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 341.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 294.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.41%" + } + ] + }, + { + "id": 133, + "type": "message", + "date": "2021-06-10T19:31:02", + "date_unixtime": "1623346262", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "484141458" + }, + " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 102,012.45 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,667.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30728200 BTC ~ 11,123.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09009700 BTC ~ 3,261.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 828.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 868.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.53 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 342.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 294.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.19%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "484141458" + }, + { + "type": "plain", + "text": " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 102,012.45 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,667.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30728200 BTC ~ 11,123.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09009700 BTC ~ 3,261.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 828.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 868.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.53 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 342.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 294.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.19%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%" + } + ] + }, + { + "id": 134, + "type": "message", + "date": "2021-06-10T22:34:11", + "date_unixtime": "1623357251", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "484063362" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 102,312.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,667.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31536900 BTC ~ 11,301.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09038400 BTC ~ 3,239.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 828.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 724.13 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.53 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 343.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 294.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "484063362" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 102,312.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,667.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31536900 BTC ~ 11,301.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09038400 BTC ~ 3,239.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 828.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 724.13 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.53 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 343.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 294.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.00%" + } + ] + }, + { + "id": 135, + "type": "message", + "date": "2021-06-11T02:12:29", + "date_unixtime": "1623370349", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "485448851" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 102,312.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 87,967.58 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,405.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09067400 BTC ~ 3,368.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 829.41 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,258.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,091.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.53 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 343.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 295.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.29%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "485448851" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 102,312.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 87,967.58 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,405.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09067400 BTC ~ 3,368.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 829.41 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,258.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,091.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.53 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 343.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 295.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.29%" + } + ] + }, + { + "id": 136, + "type": "message", + "date": "2021-06-11T12:06:06", + "date_unixtime": "1623405966", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "485315560" + }, + " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 102,312.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 11,221.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09067400 BTC ~ 3,403.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 830.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,410.07 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.54 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 343.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.27%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "485315560" + }, + { + "type": "plain", + "text": " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 102,312.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 11,221.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09067400 BTC ~ 3,403.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 830.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,410.07 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.54 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 343.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.27%" + } + ] + }, + { + "id": 137, + "type": "message", + "date": "2021-06-12T03:59:59", + "date_unixtime": "1623463199", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "486239869" + }, + " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 102,612.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30728200 BTC ~ 11,131.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09067400 BTC ~ 3,284.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 830.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 902.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "486239869" + }, + { + "type": "plain", + "text": " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 102,612.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30728200 BTC ~ 11,131.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09067400 BTC ~ 3,284.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 830.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 902.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.91%" + } + ] + }, + { + "id": 138, + "type": "message", + "date": "2021-06-12T04:21:06", + "date_unixtime": "1623464466", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "485590700" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 102,912.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31536900 BTC ~ 11,285.66 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09096100 BTC ~ 3,255.09 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 830.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 726.52 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,092.41 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "485590700" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 102,912.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31536900 BTC ~ 11,285.66 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09096100 BTC ~ 3,255.09 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 830.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 726.52 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,092.41 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.15%" + } + ] + }, + { + "id": 139, + "type": "message", + "date": "2021-06-12T04:58:51", + "date_unixtime": "1623466731", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "483835950" + }, + " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,212.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32353700 BTC ~ 11,474.21 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09125100 BTC ~ 3,236.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 830.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 596.19 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,792.43 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,396.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 346.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.15%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "483835950" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,212.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32353700 BTC ~ 11,474.21 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09125100 BTC ~ 3,236.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 830.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 596.19 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,792.43 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,396.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 346.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.15%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 140, + "type": "message", + "date": "2021-06-12T06:55:19", + "date_unixtime": "1623473719", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "485122904" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,512.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33178700 BTC ~ 11,654.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09154400 BTC ~ 3,215.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 830.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 455.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,513.61 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,375.39 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 347.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "485122904" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,512.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33178700 BTC ~ 11,654.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09154400 BTC ~ 3,215.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 830.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 455.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,513.61 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,375.39 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 347.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%" + } + ] + }, + { + "id": 141, + "type": "message", + "date": "2021-06-12T12:15:27", + "date_unixtime": "1623492927", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "485313565" + }, + " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34011900 BTC ~ 11,854.41 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09184000 BTC ~ 3,200.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 830.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 341.12 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,067.81 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 296.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.29%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.79%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "485313565" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34011900 BTC ~ 11,854.41 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09184000 BTC ~ 3,200.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 830.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 341.12 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,067.81 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 296.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.29%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.79%" + } + ] + }, + { + "id": 142, + "type": "message", + "date": "2021-06-12T14:40:21", + "date_unixtime": "1623501621", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "487720282" + }, + " / Amount: 0.00000900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,567.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,982.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,330.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 831.80 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 900.21 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.32 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,767.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 297.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "487720282" + }, + { + "type": "plain", + "text": " / Amount: 0.00000900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,567.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,982.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,330.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 831.80 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 900.21 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.32 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,767.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 297.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%" + } + ] + }, + { + "id": 143, + "type": "message", + "date": "2021-06-13T18:14:09", + "date_unixtime": "1623600849", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "487404760" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 88,867.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,770.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,355.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 832.99 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,013.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.52 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,767.81 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 298.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.64%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "487404760" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 88,867.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,770.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,355.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 832.99 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,013.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.52 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,767.81 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 298.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.64%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.30%" + } + ] + }, + { + "id": 144, + "type": "message", + "date": "2021-06-13T18:18:09", + "date_unixtime": "1623601089", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "487256970" + }, + " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 89,167.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,595.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,390.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 834.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,175.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.68 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,767.81 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 299.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.24%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "487256970" + }, + { + "type": "plain", + "text": " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 89,167.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,595.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,390.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 834.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,175.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.68 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,767.81 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 299.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.24%" + } + ] + }, + { + "id": 145, + "type": "message", + "date": "2021-06-13T19:28:32", + "date_unixtime": "1623605312", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "487206291" + }, + " / Amount: 0.00000400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 89,467.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,421.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,427.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 835.37 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,340.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,767.81 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 300.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.14%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "487206291" + }, + { + "type": "plain", + "text": " / Amount: 0.00000400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 89,467.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,421.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,427.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 835.37 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,340.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,767.81 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 300.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.14%" + } + ] + }, + { + "id": 146, + "type": "message", + "date": "2021-06-13T20:24:30", + "date_unixtime": "1623608670", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "487178189" + }, + " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 89,767.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 11,236.88 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,462.83 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 836.57 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,491.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,794.87 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 301.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.72%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "487178189" + }, + { + "type": "plain", + "text": " / Amount: 0.00800400 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 89,767.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 11,236.88 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,462.83 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 836.57 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,491.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,794.87 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 301.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.72%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%" + } + ] + }, + { + "id": 147, + "type": "message", + "date": "2021-06-13T22:05:00", + "date_unixtime": "1623614700", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "485313348" + }, + " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 90,067.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29106600 BTC ~ 11,119.66 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,520.01 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 837.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,732.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,095.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 302.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.37%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.48%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "485313348" + }, + { + "type": "plain", + "text": " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 90,067.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29106600 BTC ~ 11,119.66 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,520.01 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 837.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,732.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,095.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 302.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.37%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.48%" + } + ] + }, + { + "id": 148, + "type": "message", + "date": "2021-06-13T22:06:20", + "date_unixtime": "1623614780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "485122820" + }, + " / Amount: 0.00784700 / Price: 38385.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 90,367.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,837.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,525.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 838.99 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,757.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,109.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 303.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.59%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.31%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "485122820" + }, + { + "type": "plain", + "text": " / Amount: 0.00784700 / Price: 38385.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 90,367.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,837.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,525.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 838.99 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,757.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,109.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 303.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.59%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.31%" + } + ] + }, + { + "id": 149, + "type": "message", + "date": "2021-06-13T22:08:43", + "date_unixtime": "1623614923", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "476248164" + }, + " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 90,667.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,685.82 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,574.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 840.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,955.57 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,410.95 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 304.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "476248164" + }, + { + "type": "plain", + "text": " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 90,667.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,685.82 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,574.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 840.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,955.57 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,410.95 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 304.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%" + } + ] + }, + { + "id": 150, + "type": "message", + "date": "2021-06-13T22:09:31", + "date_unixtime": "1623614971", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "476018725" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 90,967.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,493.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,610.93 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 841.37 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,100.88 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,712.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 305.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "476018725" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 90,967.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,493.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,610.93 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 841.37 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,100.88 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,712.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 305.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 151, + "type": "message", + "date": "2021-06-13T22:23:05", + "date_unixtime": "1623615785", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "465436203" + }, + " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 91,267.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 10,087.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,572.79 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 842.57 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,957.79 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,292.95 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 306.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.96%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "465436203" + }, + { + "type": "plain", + "text": " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 91,267.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 10,087.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,572.79 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 842.57 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,957.79 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,292.95 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 306.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.96%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.01%" + } + ] + }, + { + "id": 152, + "type": "message", + "date": "2021-06-14T15:04:34", + "date_unixtime": "1623675874", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "465428024" + }, + " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 91,567.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,121.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,691.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 843.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,412.48 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,594.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 307.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.68%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "465428024" + }, + { + "type": "plain", + "text": " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 91,567.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,121.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,691.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 843.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,412.48 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,594.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 307.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.68%" + } + ] + }, + { + "id": 153, + "type": "message", + "date": "2021-06-14T15:05:19", + "date_unixtime": "1623675919", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "465186566" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 91,867.58 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,893.62 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,718.72 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 844.98 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,512.48 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,895.20 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 308.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.93%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "465186566" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 91,867.58 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,893.62 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,718.72 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 844.98 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,512.48 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,895.20 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 308.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.93%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%" + } + ] + }, + { + "id": 154, + "type": "message", + "date": "2021-06-14T15:38:20", + "date_unixtime": "1623677900", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "463422667" + }, + " / Amount: 0.00739200 / Price: 40747.17000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,167.58 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23774300 BTC ~ 9,683.35 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,752.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 846.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,637.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,196.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 309.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "463422667" + }, + { + "type": "plain", + "text": " / Amount: 0.00739200 / Price: 40747.17000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,167.58 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23774300 BTC ~ 9,683.35 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,752.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 846.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,637.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,196.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 309.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%" + } + ] + }, + { + "id": 155, + "type": "message", + "date": "2021-06-15T20:01:25", + "date_unixtime": "1623780085", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "454358631" + }, + " / Amount: 0.00731900 / Price: 41154.64000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 103,812.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23042400 BTC ~ 9,481.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,791.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,776.02 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,497.54 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "454358631" + }, + { + "type": "plain", + "text": " / Amount: 0.00731900 / Price: 41154.64000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 103,812.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23042400 BTC ~ 9,481.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,791.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,776.02 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,497.54 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 156, + "type": "message", + "date": "2021-06-15T22:04:50", + "date_unixtime": "1623787490", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "492041093" + }, + " / Amount: 0.00758100 / Price: 39571.77000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 104,112.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23800500 BTC ~ 9,433.13 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09213900 BTC ~ 3,651.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,287.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,507.56 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 349.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.20%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.87%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "492041093" + }, + { + "type": "plain", + "text": " / Amount: 0.00758100 / Price: 39571.77000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 104,112.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23800500 BTC ~ 9,433.13 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09213900 BTC ~ 3,651.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,287.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,507.56 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 349.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.20%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.87%" + } + ] + }, + { + "id": 157, + "type": "message", + "date": "2021-06-16T13:04:31", + "date_unixtime": "1623841471", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "490469665" + }, + " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 104,412.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24540000 BTC ~ 9,607.86 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09240100 BTC ~ 3,617.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,128.09 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,507.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 350.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "490469665" + }, + { + "type": "plain", + "text": " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 104,412.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24540000 BTC ~ 9,607.86 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09240100 BTC ~ 3,617.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,128.09 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,507.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 350.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.12%" + } + ] + }, + { + "id": 158, + "type": "message", + "date": "2021-06-16T16:54:31", + "date_unixtime": "1623855271", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "490423120" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 104,712.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25286900 BTC ~ 9,805.42 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09266600 BTC ~ 3,593.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,001.24 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,389.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,507.64 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 351.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "490423120" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 104,712.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25286900 BTC ~ 9,805.42 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09266600 BTC ~ 3,593.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,001.24 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,389.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,507.64 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 351.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.08%" + } + ] + }, + { + "id": 159, + "type": "message", + "date": "2021-06-16T18:52:59", + "date_unixtime": "1623862379", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "490421452" + }, + " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 105,012.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26041200 BTC ~ 10,023.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09293400 BTC ~ 3,577.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,903.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,089.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,507.66 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 352.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.27%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.81%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "490421452" + }, + { + "type": "plain", + "text": " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 105,012.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26041200 BTC ~ 10,023.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09293400 BTC ~ 3,577.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,903.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,089.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,507.66 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 352.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.27%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.81%" + } + ] + }, + { + "id": 160, + "type": "message", + "date": "2021-06-17T01:23:44", + "date_unixtime": "1623885824", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "489481336" + }, + " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 105,312.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26803100 BTC ~ 10,238.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09320400 BTC ~ 3,560.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,801.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,790.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,507.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 353.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.50%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.56%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "489481336" + }, + { + "type": "plain", + "text": " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 105,312.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26803100 BTC ~ 10,238.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09320400 BTC ~ 3,560.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,801.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,790.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,507.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 353.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.50%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.56%" + } + ] + }, + { + "id": 161, + "type": "message", + "date": "2021-06-17T19:31:53", + "date_unixtime": "1623951113", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "492191613" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 105,612.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27572600 BTC ~ 10,389.22 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09347700 BTC ~ 3,522.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,613.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,511.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,486.62 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 354.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "492191613" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 105,612.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27572600 BTC ~ 10,389.22 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09347700 BTC ~ 3,522.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,613.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,511.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,486.62 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 354.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 162, + "type": "message", + "date": "2021-06-18T04:20:07", + "date_unixtime": "1623982807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "492890154" + }, + " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 105,912.45 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,467.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28349800 BTC ~ 10,585.82 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09375300 BTC ~ 3,500.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 847.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,489.07 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,176.71 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 355.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 310.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.87%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "492890154" + }, + { + "type": "plain", + "text": " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 105,912.45 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,467.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28349800 BTC ~ 10,585.82 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09375300 BTC ~ 3,500.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 847.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,489.07 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,176.71 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 355.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 310.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.87%" + } + ] + }, + { + "id": 163, + "type": "message", + "date": "2021-06-18T08:49:35", + "date_unixtime": "1623998975", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "495092978" + }, + " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 105,912.45 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,329.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09403200 BTC ~ 3,526.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,559.81 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.28 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,876.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 355.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.61%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.42%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "495092978" + }, + { + "type": "plain", + "text": " / Amount: 0.00776900 / Price: 38769.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 105,912.45 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,329.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09403200 BTC ~ 3,526.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,559.81 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.28 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,876.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 355.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.61%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.42%" + } + ] + }, + { + "id": 164, + "type": "message", + "date": "2021-06-18T12:09:48", + "date_unixtime": "1624010988", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495304668" + }, + " / Amount: 0.00001400 / Price: 37278.40000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 106,212.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28349800 BTC ~ 10,576.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09403200 BTC ~ 3,508.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,488.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.26 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,876.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 356.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495304668" + }, + { + "type": "plain", + "text": " / Amount: 0.00001400 / Price: 37278.40000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 106,212.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28349800 BTC ~ 10,576.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09403200 BTC ~ 3,508.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,488.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.26 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,876.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 356.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.95%" + } + ] + }, + { + "id": 165, + "type": "message", + "date": "2021-06-18T16:10:02", + "date_unixtime": "1624025402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "493107885" + }, + " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 106,512.47 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29134700 BTC ~ 10,732.76 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09431100 BTC ~ 3,474.27 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,310.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.27 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,876.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 357.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.24%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "493107885" + }, + { + "type": "plain", + "text": " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 106,512.47 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29134700 BTC ~ 10,732.76 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09431100 BTC ~ 3,474.27 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,310.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.27 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,876.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 357.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.24%" + } + ] + }, + { + "id": 166, + "type": "message", + "date": "2021-06-18T16:59:39", + "date_unixtime": "1624028379", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "493246048" + }, + " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 106,812.46 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29927500 BTC ~ 10,969.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09459200 BTC ~ 3,467.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,239.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,577.65 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 358.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.31%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.73%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "493246048" + }, + { + "type": "plain", + "text": " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 106,812.46 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29927500 BTC ~ 10,969.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09459200 BTC ~ 3,467.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,239.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,577.65 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 358.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.31%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.73%" + } + ] + }, + { + "id": 167, + "type": "message", + "date": "2021-06-18T20:12:14", + "date_unixtime": "1624039934", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "493640371" + }, + " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 107,112.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30728200 BTC ~ 11,116.26 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09487600 BTC ~ 3,432.24 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,052.23 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,277.55 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 359.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "493640371" + }, + { + "type": "plain", + "text": " / Amount: 0.00829100 / Price: 36182.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 107,112.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30728200 BTC ~ 11,116.26 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09487600 BTC ~ 3,432.24 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,052.23 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,277.55 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 359.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%" + } + ] + }, + { + "id": 168, + "type": "message", + "date": "2021-06-18T20:29:30", + "date_unixtime": "1624040970", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "494625247" + }, + " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 107,412.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31536900 BTC ~ 11,258.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09516300 BTC ~ 3,397.31 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 859.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,977.43 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 360.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.69%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "494625247" + }, + { + "type": "plain", + "text": " / Amount: 0.00837400 / Price: 35823.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 107,412.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31536900 BTC ~ 11,258.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09516300 BTC ~ 3,397.31 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 859.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,977.43 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 360.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.69%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.40%" + } + ] + }, + { + "id": 169, + "type": "message", + "date": "2021-06-18T20:39:38", + "date_unixtime": "1624041578", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495450760" + }, + " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 107,712.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32353700 BTC ~ 11,476.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09545300 BTC ~ 3,386.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 766.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,677.32 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 361.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495450760" + }, + { + "type": "plain", + "text": " / Amount: 0.00845800 / Price: 35469.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 107,712.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32353700 BTC ~ 11,476.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09545300 BTC ~ 3,386.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 766.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,677.32 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 361.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.03%" + } + ] + }, + { + "id": 170, + "type": "message", + "date": "2021-06-19T05:29:15", + "date_unixtime": "1624073355", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495694739" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 108,012.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33178700 BTC ~ 11,593.09 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09574600 BTC ~ 3,345.49 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 542.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,377.22 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 362.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.57%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495694739" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 108,012.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33178700 BTC ~ 11,593.09 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09574600 BTC ~ 3,345.49 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 542.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,377.22 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 362.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.57%" + } + ] + }, + { + "id": 171, + "type": "message", + "date": "2021-06-20T12:05:16", + "date_unixtime": "1624183516", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495754218" + }, + " / Amount: 0.00679500 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 108,312.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34011900 BTC ~ 11,754.53 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09604200 BTC ~ 3,319.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 377.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,077.31 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 363.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.53%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.68%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495754218" + }, + { + "type": "plain", + "text": " / Amount: 0.00679500 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 108,312.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34011900 BTC ~ 11,754.53 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09604200 BTC ~ 3,319.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 377.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,077.31 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 363.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.53%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.68%" + } + ] + }, + { + "id": 172, + "type": "message", + "date": "2021-06-20T12:06:00", + "date_unixtime": "1624183560", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495957729" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 108,612.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34853400 BTC ~ 11,977.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09634100 BTC ~ 3,310.92 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 292.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,221.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,798.40 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.22%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495957729" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 108,612.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34853400 BTC ~ 11,977.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09634100 BTC ~ 3,310.92 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 292.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,221.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,798.40 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.22%" + } + ] + }, + { + "id": 173, + "type": "message", + "date": "2021-06-20T12:06:14", + "date_unixtime": "1624183574", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495978175" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 108,912.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35703300 BTC ~ 12,298.49 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09664300 BTC ~ 3,329.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 331.25 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,199.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,798.40 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 365.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495978175" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 108,912.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35703300 BTC ~ 12,298.49 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09664300 BTC ~ 3,329.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 331.25 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,199.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,798.40 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 365.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%" + } + ] + }, + { + "id": 174, + "type": "message", + "date": "2021-06-20T12:26:29", + "date_unixtime": "1624184789", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "495993028" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,212.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36561800 BTC ~ 12,366.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09694800 BTC ~ 3,279.03 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 48.93 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,177.10 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 366.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.27%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.81%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "495993028" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,212.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36561800 BTC ~ 12,366.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09694800 BTC ~ 3,279.03 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 48.93 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,177.10 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 366.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.27%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.81%" + } + ] + }, + { + "id": 175, + "type": "message", + "date": "2021-06-20T14:20:07", + "date_unixtime": "1624191607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "496495813" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,512.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 92,767.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,512.45 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09725600 BTC ~ 3,251.27 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 848.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -132.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.10 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,876.88 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 367.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 311.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "496495813" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,512.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 92,767.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,512.45 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09725600 BTC ~ 3,251.27 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 848.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -132.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.10 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,876.88 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 367.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 311.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 176, + "type": "message", + "date": "2021-06-20T19:17:57", + "date_unixtime": "1624209477", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "498334662" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,512.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,067.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,685.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09756700 BTC ~ 3,387.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 849.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 478.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.27 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.90 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 367.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 312.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "498334662" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,512.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,067.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,685.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09756700 BTC ~ 3,387.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 849.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 478.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.27 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.90 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 367.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 312.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.07%" + } + ] + }, + { + "id": 177, + "type": "message", + "date": "2021-06-20T21:01:01", + "date_unixtime": "1624215661", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "498201135" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,512.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,367.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,510.86 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09756700 BTC ~ 3,421.79 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 850.96 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 638.79 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.48 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.90 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 367.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 313.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "498201135" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,512.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,367.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,510.86 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09756700 BTC ~ 3,421.79 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 850.96 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 638.79 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.48 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.90 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 367.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 313.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.08%" + } + ] + }, + { + "id": 178, + "type": "message", + "date": "2021-06-20T21:37:14", + "date_unixtime": "1624217834", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "498167633" + }, + " / Amount: 0.00017200 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,512.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,667.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,368.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09756700 BTC ~ 3,465.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 852.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 840.64 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.64 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.90 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 367.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 314.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.81%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "498167633" + }, + { + "type": "plain", + "text": " / Amount: 0.00017200 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,512.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,667.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,368.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09756700 BTC ~ 3,465.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 852.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 840.64 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.64 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.90 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 367.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 314.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.81%" + } + ] + }, + { + "id": 179, + "type": "message", + "date": "2021-06-20T22:12:08", + "date_unixtime": "1624219928", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "498166824" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,512.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,161.99 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09756700 BTC ~ 3,491.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 962.35 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.81 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.90 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 367.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "498166824" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,512.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,161.99 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09756700 BTC ~ 3,491.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 962.35 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.81 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.90 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 367.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%" + } + ] + }, + { + "id": 180, + "type": "message", + "date": "2021-06-21T06:05:55", + "date_unixtime": "1624248355", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "498793236" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 109,812.40 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34853400 BTC ~ 12,004.01 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09756700 BTC ~ 3,360.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 372.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.83 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.92 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 368.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "498793236" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 109,812.40 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34853400 BTC ~ 12,004.01 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09756700 BTC ~ 3,360.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 372.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.83 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.92 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 368.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 181, + "type": "message", + "date": "2021-06-21T06:17:46", + "date_unixtime": "1624249066", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "498752553" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 110,112.39 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35703300 BTC ~ 12,186.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09786900 BTC ~ 3,340.43 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 235.06 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,425.83 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.92 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 369.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.90%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "498752553" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 110,112.39 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35703300 BTC ~ 12,186.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09786900 BTC ~ 3,340.43 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 235.06 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,425.83 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.92 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 369.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.90%" + } + ] + }, + { + "id": 182, + "type": "message", + "date": "2021-06-21T06:41:08", + "date_unixtime": "1624250468", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "498721410" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 110,412.40 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36561800 BTC ~ 12,308.05 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09817400 BTC ~ 3,304.90 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 21.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,125.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.92 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 370.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "498721410" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 110,412.40 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36561800 BTC ~ 12,308.05 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09817400 BTC ~ 3,304.90 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 21.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,125.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.92 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 370.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.30%" + } + ] + }, + { + "id": 183, + "type": "message", + "date": "2021-06-21T08:29:07", + "date_unixtime": "1624256947", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "498646279" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 110,712.39 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,439.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09848200 BTC ~ 3,272.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -179.48 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,825.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.96 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 371.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.61%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "498646279" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 110,712.39 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,439.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09848200 BTC ~ 3,272.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -179.48 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,825.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.96 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 371.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.61%" + } + ] + }, + { + "id": 184, + "type": "message", + "date": "2021-06-21T08:29:20", + "date_unixtime": "1624256960", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "498164402" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 111,012.38 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38304500 BTC ~ 12,780.10 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09879300 BTC ~ 3,296.18 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -115.20 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,525.85 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,576.96 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 372.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.19%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "498164402" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 111,012.38 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38304500 BTC ~ 12,780.10 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09879300 BTC ~ 3,296.18 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -115.20 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,525.85 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,576.96 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 372.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.19%" + } + ] + }, + { + "id": 185, + "type": "message", + "date": "2021-06-21T08:31:13", + "date_unixtime": "1624257073", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499200416" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 111,312.39 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,835.22 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09910700 BTC ~ 3,245.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -410.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,281.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499200416" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 111,312.39 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,835.22 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09910700 BTC ~ 3,245.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -410.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,281.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 186, + "type": "message", + "date": "2021-06-21T08:45:24", + "date_unixtime": "1624257924", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499219373" + }, + " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 111,612.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40082300 BTC ~ 13,023.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09942400 BTC ~ 3,230.57 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -537.02 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,981.47 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 374.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.26%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.84%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499219373" + }, + { + "type": "plain", + "text": " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 111,612.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40082300 BTC ~ 13,023.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09942400 BTC ~ 3,230.57 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -537.02 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,981.47 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 374.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.26%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.84%" + } + ] + }, + { + "id": 187, + "type": "message", + "date": "2021-06-21T11:23:42", + "date_unixtime": "1624267422", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499251726" + }, + " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 111,912.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 93,967.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40984600 BTC ~ 13,256.84 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.09974400 BTC ~ 3,226.31 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 853.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -608.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,681.40 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 375.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 315.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.27%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499251726" + }, + { + "type": "plain", + "text": " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 111,912.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 93,967.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40984600 BTC ~ 13,256.84 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.09974400 BTC ~ 3,226.31 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 853.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -608.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,681.40 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 375.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 315.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.27%" + } + ] + }, + { + "id": 188, + "type": "message", + "date": "2021-06-21T11:53:27", + "date_unixtime": "1624269207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499645948" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 111,912.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,344.42 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10006700 BTC ~ 3,334.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 854.55 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -111.69 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.31 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,381.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 375.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 316.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499645948" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 111,912.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,344.42 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10006700 BTC ~ 3,334.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 854.55 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -111.69 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.31 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,381.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 375.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 316.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.23%" + } + ] + }, + { + "id": 189, + "type": "message", + "date": "2021-06-21T13:07:34", + "date_unixtime": "1624273654", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499694703" + }, + " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 112,212.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40984600 BTC ~ 13,156.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10006700 BTC ~ 3,212.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 854.55 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -722.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.32 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,381.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 376.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 316.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499694703" + }, + { + "type": "plain", + "text": " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 112,212.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40984600 BTC ~ 13,156.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10006700 BTC ~ 3,212.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 854.55 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -722.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.32 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,381.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 376.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 316.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%" + } + ] + }, + { + "id": 190, + "type": "message", + "date": "2021-06-21T13:23:19", + "date_unixtime": "1624274599", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499380943" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 112,512.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,267.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,377.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10039000 BTC ~ 3,205.50 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 854.55 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -807.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.31 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,381.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 377.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 316.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.58%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499380943" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 112,512.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,267.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,377.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10039000 BTC ~ 3,205.50 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 854.55 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -807.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.31 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,381.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 377.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 316.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.58%" + } + ] + }, + { + "id": 191, + "type": "message", + "date": "2021-06-21T15:58:38", + "date_unixtime": "1624283918", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499811632" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 112,512.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,567.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,573.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10071700 BTC ~ 3,338.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 855.74 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -177.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.27 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,082.36 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 377.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 317.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.04%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.76%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499811632" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 112,512.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,567.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,573.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10071700 BTC ~ 3,338.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 855.74 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -177.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.27 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,082.36 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 377.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 317.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.04%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.76%" + } + ] + }, + { + "id": 192, + "type": "message", + "date": "2021-06-21T23:17:25", + "date_unixtime": "1624310245", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "500045865" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 112,812.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,567.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,326.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10071700 BTC ~ 3,203.55 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 855.74 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -859.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.29 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,082.37 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 378.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 317.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.15%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "500045865" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 112,812.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,567.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,326.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10071700 BTC ~ 3,203.55 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 855.74 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -859.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.29 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,082.37 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 378.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 317.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.15%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 193, + "type": "message", + "date": "2021-06-21T23:57:46", + "date_unixtime": "1624312666", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499381388" + }, + " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 113,112.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,567.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42816300 BTC ~ 13,465.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10104400 BTC ~ 3,177.83 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 855.74 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,045.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.28 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,082.37 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 379.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 317.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499381388" + }, + { + "type": "plain", + "text": " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 113,112.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,567.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42816300 BTC ~ 13,465.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10104400 BTC ~ 3,177.83 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 855.74 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,045.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.28 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,082.37 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 379.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 317.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.13%" + } + ] + }, + { + "id": 194, + "type": "message", + "date": "2021-06-22T03:14:49", + "date_unixtime": "1624324489", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "500813909" + }, + " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 113,112.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 94,867.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,727.67 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10137400 BTC ~ 3,324.23 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 856.94 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -335.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.30 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,783.44 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 379.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 318.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.83%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "500813909" + }, + { + "type": "plain", + "text": " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 113,112.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 94,867.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,727.67 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10137400 BTC ~ 3,324.23 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 856.94 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -335.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.30 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,783.44 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 379.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 318.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.83%" + } + ] + }, + { + "id": 195, + "type": "message", + "date": "2021-06-22T05:39:11", + "date_unixtime": "1624333151", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "500750130" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 113,112.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,527.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10137400 BTC ~ 3,348.60 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -210.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.47 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,783.45 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 379.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.10%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "500750130" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 113,112.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,527.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10137400 BTC ~ 3,348.60 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -210.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.47 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,783.45 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 379.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.10%" + } + ] + }, + { + "id": 196, + "type": "message", + "date": "2021-06-22T10:38:03", + "date_unixtime": "1624351083", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "501400051" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 113,412.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,285.63 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10137400 BTC ~ 3,214.68 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -886.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,783.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 380.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.31%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "501400051" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 113,412.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,285.63 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10137400 BTC ~ 3,214.68 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -886.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,783.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 380.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.31%" + } + ] + }, + { + "id": 197, + "type": "message", + "date": "2021-06-22T11:04:33", + "date_unixtime": "1624352673", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "501171680" + }, + " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 113,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42816300 BTC ~ 13,473.14 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10170100 BTC ~ 3,200.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,013.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,823.48 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,783.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "501171680" + }, + { + "type": "plain", + "text": " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 113,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42816300 BTC ~ 13,473.14 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10170100 BTC ~ 3,200.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,013.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,823.48 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,783.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%" + } + ] + }, + { + "id": 198, + "type": "message", + "date": "2021-06-22T11:54:13", + "date_unixtime": "1624355653", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499387025" + }, + " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 114,012.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43745900 BTC ~ 13,738.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10203100 BTC ~ 3,204.32 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,043.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,523.48 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,783.49 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 382.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.24%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499387025" + }, + { + "type": "plain", + "text": " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 114,012.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43745900 BTC ~ 13,738.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10203100 BTC ~ 3,204.32 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,043.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,523.48 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,783.49 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 382.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.24%" + } + ] + }, + { + "id": 199, + "type": "message", + "date": "2021-06-22T14:01:55", + "date_unixtime": "1624363315", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499415956" + }, + " / Amount: 0.00972200 / Price: 30856.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 114,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44684800 BTC ~ 13,765.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10236400 BTC ~ 3,153.34 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,368.09 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 383.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.22%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499415956" + }, + { + "type": "plain", + "text": " / Amount: 0.00972200 / Price: 30856.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 114,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44684800 BTC ~ 13,765.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10236400 BTC ~ 3,153.34 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,368.09 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 383.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.22%" + } + ] + }, + { + "id": 200, + "type": "message", + "date": "2021-06-22T14:02:37", + "date_unixtime": "1624363357", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "499790691" + }, + " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 114,612.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45633100 BTC ~ 14,015.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10270100 BTC ~ 3,154.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,417.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,700.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 384.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.64%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.49%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "499790691" + }, + { + "type": "plain", + "text": " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 114,612.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45633100 BTC ~ 14,015.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10270100 BTC ~ 3,154.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,417.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,700.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 384.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.64%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.49%" + } + ] + }, + { + "id": 201, + "type": "message", + "date": "2021-06-22T14:15:19", + "date_unixtime": "1624364119", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "501846973" + }, + " / Amount: 0.00991800 / Price: 30248.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 114,912.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.46590900 BTC ~ 14,060.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10304100 BTC ~ 3,109.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,716.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,400.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 385.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.28%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "501846973" + }, + { + "type": "plain", + "text": " / Amount: 0.00991800 / Price: 30248.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 114,912.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.46590900 BTC ~ 14,060.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10304100 BTC ~ 3,109.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,716.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,400.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 385.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.28%" + } + ] + }, + { + "id": 202, + "type": "message", + "date": "2021-06-22T14:26:12", + "date_unixtime": "1624364772", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "501892982" + }, + " / Amount: 0.01001700 / Price: 29949.32000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 115,212.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.47558300 BTC ~ 14,173.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10338400 BTC ~ 3,081.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,931.74 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,100.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 386.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.56%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "501892982" + }, + { + "type": "plain", + "text": " / Amount: 0.01001700 / Price: 29949.32000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 115,212.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.47558300 BTC ~ 14,173.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10338400 BTC ~ 3,081.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,931.74 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,100.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 386.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.56%" + } + ] + }, + { + "id": 203, + "type": "message", + "date": "2021-06-22T14:26:21", + "date_unixtime": "1624364781", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "501974351" + }, + " / Amount: 0.01011700 / Price: 29652.79000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 115,512.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,167.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.48535300 BTC ~ 14,509.81 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10373100 BTC ~ 3,101.08 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 858.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,875.81 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,800.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 387.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 319.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.14%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "501974351" + }, + { + "type": "plain", + "text": " / Amount: 0.01011700 / Price: 29652.79000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 115,512.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,167.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.48535300 BTC ~ 14,509.81 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10373100 BTC ~ 3,101.08 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 858.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,875.81 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,800.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 387.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 319.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.14%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.23%" + } + ] + }, + { + "id": 204, + "type": "message", + "date": "2021-06-22T14:27:02", + "date_unixtime": "1624364822", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502264351" + }, + " / Amount: 0.00976700 / Price: 30838.90000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 115,512.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,467.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.47523600 BTC ~ 14,130.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10408100 BTC ~ 3,094.73 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 859.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,960.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,801.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 387.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 320.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.41%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.75%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502264351" + }, + { + "type": "plain", + "text": " / Amount: 0.00976700 / Price: 30838.90000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 115,512.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,467.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.47523600 BTC ~ 14,130.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10408100 BTC ~ 3,094.73 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 859.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,960.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,801.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 387.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 320.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.41%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.75%" + } + ] + }, + { + "id": 205, + "type": "message", + "date": "2021-06-22T14:27:45", + "date_unixtime": "1624364865", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "502266601" + }, + " / Amount: 0.01011700 / Price: 29652.79000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 115,812.36 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,467.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.48535300 BTC ~ 14,384.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10408100 BTC ~ 3,084.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 859.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -2,015.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,801.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 388.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 320.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "502266601" + }, + { + "type": "plain", + "text": " / Amount: 0.01011700 / Price: 29652.79000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 115,812.36 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,467.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.48535300 BTC ~ 14,384.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10408100 BTC ~ 3,084.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 859.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -2,015.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,801.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 388.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 320.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.09%" + } + ] + }, + { + "id": 206, + "type": "message", + "date": "2021-06-22T14:44:41", + "date_unixtime": "1624365881", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "502203746" + }, + " / Amount: 0.01021800 / Price: 29359.20000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,112.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,467.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.49522100 BTC ~ 14,591.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10443100 BTC ~ 3,076.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 859.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -2,117.42 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,501.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,121.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 389.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 320.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.47%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.67%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "502203746" + }, + { + "type": "plain", + "text": " / Amount: 0.01021800 / Price: 29359.20000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,112.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,467.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.49522100 BTC ~ 14,591.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10443100 BTC ~ 3,076.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 859.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -2,117.42 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,501.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,121.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 389.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 320.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.47%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.67%" + } + ] + }, + { + "id": 207, + "type": "message", + "date": "2021-06-22T15:50:50", + "date_unixtime": "1624369850", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "502206682" + }, + " / Amount: 0.01032000 / Price: 29068.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,412.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,467.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.50518700 BTC ~ 14,700.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10478500 BTC ~ 3,049.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 859.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -2,336.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.07 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,801.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 390.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 320.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.17%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "502206682" + }, + { + "type": "plain", + "text": " / Amount: 0.01032000 / Price: 29068.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,412.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,467.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.50518700 BTC ~ 14,700.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10478500 BTC ~ 3,049.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 859.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -2,336.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.07 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,801.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 390.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 320.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.17%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%" + } + ] + }, + { + "id": 208, + "type": "message", + "date": "2021-06-22T15:56:06", + "date_unixtime": "1624370166", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "502237577" + }, + " / Amount: 0.01042400 / Price: 28780.70000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,467.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.51525400 BTC ~ 14,896.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10514200 BTC ~ 3,039.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 859.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -2,448.66 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,501.13 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 320.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.53%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.56%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "502237577" + }, + { + "type": "plain", + "text": " / Amount: 0.01042400 / Price: 28780.70000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,467.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.51525400 BTC ~ 14,896.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10514200 BTC ~ 3,039.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 859.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -2,448.66 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,501.13 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 320.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.53%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.56%" + } + ] + }, + { + "id": 209, + "type": "message", + "date": "2021-06-22T16:43:24", + "date_unixtime": "1624373004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502476137" + }, + " / Amount: 0.01006300 / Price: 29931.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 95,767.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.50483000 BTC ~ 15,128.73 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,161.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 860.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,793.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.29 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,201.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 321.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502476137" + }, + { + "type": "plain", + "text": " / Amount: 0.01006300 / Price: 29931.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 95,767.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.50483000 BTC ~ 15,128.73 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,161.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 860.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,793.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.29 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,201.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 321.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.88%" + } + ] + }, + { + "id": 210, + "type": "message", + "date": "2021-06-22T16:51:59", + "date_unixtime": "1624373519", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502462099" + }, + " / Amount: 0.00996300 / Price: 30231.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 96,067.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.49486700 BTC ~ 14,926.92 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,182.34 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 861.73 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,673.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.46 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,201.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 322.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.72%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502462099" + }, + { + "type": "plain", + "text": " / Amount: 0.00996300 / Price: 30231.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 96,067.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.49486700 BTC ~ 14,926.92 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,182.34 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 861.73 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,673.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.46 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,201.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 322.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.72%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.23%" + } + ] + }, + { + "id": 211, + "type": "message", + "date": "2021-06-22T16:58:18", + "date_unixtime": "1624373898", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502311093" + }, + " / Amount: 0.00986400 / Price: 30533.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 96,367.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.48500300 BTC ~ 14,789.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,217.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 862.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,474.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.66 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,201.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 323.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502311093" + }, + { + "type": "plain", + "text": " / Amount: 0.00986400 / Price: 30533.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 96,367.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.48500300 BTC ~ 14,789.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,217.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 862.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,474.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.66 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,201.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 323.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%" + } + ] + }, + { + "id": 212, + "type": "message", + "date": "2021-06-22T17:10:41", + "date_unixtime": "1624374641", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502268688" + }, + " / Amount: 0.00006700 / Price: 30838.90000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 96,667.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.47523600 BTC ~ 14,683.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,259.66 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 864.13 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,237.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,201.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 324.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.81%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502268688" + }, + { + "type": "plain", + "text": " / Amount: 0.00006700 / Price: 30838.90000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 96,667.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.47523600 BTC ~ 14,683.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,259.66 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 864.13 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,237.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,201.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 324.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.81%" + } + ] + }, + { + "id": 213, + "type": "message", + "date": "2021-06-22T17:26:50", + "date_unixtime": "1624375610", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502263758" + }, + " / Amount: 0.00967000 / Price: 31147.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 96,967.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.46556600 BTC ~ 14,524.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,291.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 865.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,063.84 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,529.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 325.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.85%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502263758" + }, + { + "type": "plain", + "text": " / Amount: 0.00967000 / Price: 31147.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 96,967.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.46556600 BTC ~ 14,524.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,291.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 865.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,063.84 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,529.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 325.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.85%" + } + ] + }, + { + "id": 214, + "type": "message", + "date": "2021-06-22T17:27:04", + "date_unixtime": "1624375624", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502237461" + }, + " / Amount: 0.00957500 / Price: 31458.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 97,267.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45599100 BTC ~ 14,287.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,305.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 866.53 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -984.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,529.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 326.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.58%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502237461" + }, + { + "type": "plain", + "text": " / Amount: 0.00957500 / Price: 31458.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 97,267.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45599100 BTC ~ 14,287.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,305.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 866.53 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -984.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,529.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 326.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.58%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.40%" + } + ] + }, + { + "id": 215, + "type": "message", + "date": "2021-06-22T17:34:39", + "date_unixtime": "1624376079", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502206487" + }, + " / Amount: 0.00819600 / Price: 31773.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 97,567.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44651100 BTC ~ 14,232.52 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,362.90 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 867.73 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -681.64 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,830.23 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 327.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.26%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.68%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502206487" + }, + { + "type": "plain", + "text": " / Amount: 0.00819600 / Price: 31773.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 97,567.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44651100 BTC ~ 14,232.52 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,362.90 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 867.73 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -681.64 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,830.23 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 327.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.26%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.68%" + } + ] + }, + { + "id": 216, + "type": "message", + "date": "2021-06-22T18:01:50", + "date_unixtime": "1624377710", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "502203590" + }, + " / Amount: 0.00938500 / Price: 32091.08000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 97,867.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43712600 BTC ~ 14,048.47 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,390.68 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 868.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -536.74 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,131.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 328.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.85%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "502203590" + }, + { + "type": "plain", + "text": " / Amount: 0.00938500 / Price: 32091.08000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 97,867.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43712600 BTC ~ 14,048.47 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,390.68 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 868.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -536.74 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,131.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 328.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.85%" + } + ] + }, + { + "id": 217, + "type": "message", + "date": "2021-06-22T18:03:08", + "date_unixtime": "1624377788", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "501974241" + }, + " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 98,167.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42783300 BTC ~ 13,827.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,409.86 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 870.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -437.24 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,432.30 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 329.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.29%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "501974241" + }, + { + "type": "plain", + "text": " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 98,167.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42783300 BTC ~ 13,827.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,409.86 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 870.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -437.24 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,432.30 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 329.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.29%" + } + ] + }, + { + "id": 218, + "type": "message", + "date": "2021-06-22T18:19:34", + "date_unixtime": "1624378774", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "501892887" + }, + " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 98,467.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,693.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,450.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 871.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -229.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,733.36 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 330.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "501892887" + }, + { + "type": "plain", + "text": " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 98,467.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,693.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,450.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 871.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -229.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,733.36 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 330.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.08%" + } + ] + }, + { + "id": 219, + "type": "message", + "date": "2021-06-22T20:31:46", + "date_unixtime": "1624386706", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "501846868" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 98,767.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,516.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,482.25 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 872.50 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -73.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,034.41 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 331.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.18%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "501846868" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 98,767.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,516.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,482.25 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 872.50 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -73.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,034.41 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 331.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.18%" + } + ] + }, + { + "id": 220, + "type": "message", + "date": "2021-06-22T20:44:46", + "date_unixtime": "1624387486", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499790343" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 116,712.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 99,067.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,314.93 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,507.50 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 873.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 51.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,335.51 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 332.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.43%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.45%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499790343" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 116,712.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 99,067.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,314.93 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,507.50 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 873.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 51.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,335.51 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 332.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.43%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.45%" + } + ] + }, + { + "id": 221, + "type": "message", + "date": "2021-06-23T02:10:02", + "date_unixtime": "1624407002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "503036875" + }, + " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,012.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 99,067.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40984600 BTC ~ 13,121.09 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10550300 BTC ~ 3,377.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 873.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -572.36 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,345.51 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 392.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 332.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.35%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "503036875" + }, + { + "type": "plain", + "text": " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,012.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 99,067.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40984600 BTC ~ 13,121.09 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10550300 BTC ~ 3,377.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 873.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -572.36 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,345.51 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 392.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 332.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.35%" + } + ] + }, + { + "id": 222, + "type": "message", + "date": "2021-06-23T02:18:00", + "date_unixtime": "1624407480", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "503011747" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 99,067.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,317.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10582600 BTC ~ 3,363.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 873.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -689.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,345.51 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 332.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "503011747" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 99,067.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,317.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10582600 BTC ~ 3,363.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 873.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -689.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,345.51 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 332.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 223, + "type": "message", + "date": "2021-06-23T02:39:28", + "date_unixtime": "1624408768", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "503405449" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 99,367.52 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,519.92 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,504.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 874.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -45.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,691.17 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,345.51 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 333.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "503405449" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 99,367.52 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,519.92 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,504.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 874.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -45.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,691.17 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,345.51 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 333.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.15%" + } + ] + }, + { + "id": 224, + "type": "message", + "date": "2021-06-23T02:43:05", + "date_unixtime": "1624408985", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "503389532" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 99,667.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,396.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,550.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 876.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 178.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,992.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,345.51 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 334.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.84%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "503389532" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 99,667.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,396.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,550.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 876.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 178.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,992.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,345.51 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 334.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.84%" + } + ] + }, + { + "id": 225, + "type": "message", + "date": "2021-06-23T02:50:32", + "date_unixtime": "1624409432", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499415809" + }, + " / Amount: 0.00003000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 99,967.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,206.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,580.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 877.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 318.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,638.98 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 335.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499415809" + }, + { + "type": "plain", + "text": " / Amount: 0.00003000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 99,967.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,206.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,580.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 877.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 318.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,638.98 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 335.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 226, + "type": "message", + "date": "2021-06-23T03:07:15", + "date_unixtime": "1624410435", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499386759" + }, + " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,267.52 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,078.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,627.37 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 878.53 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 539.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,940.05 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 336.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.69%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499386759" + }, + { + "type": "plain", + "text": " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,267.52 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,078.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,627.37 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 878.53 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 539.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,940.05 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 336.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.69%" + } + ] + }, + { + "id": 227, + "type": "message", + "date": "2021-06-23T03:07:59", + "date_unixtime": "1624410479", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499381170" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,567.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,801.09 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,633.58 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 879.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 569.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,241.09 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 337.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.39%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.52%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499381170" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,567.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,801.09 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,633.58 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 879.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 569.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,241.09 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 337.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.39%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.52%" + } + ] + }, + { + "id": 228, + "type": "message", + "date": "2021-06-23T15:14:36", + "date_unixtime": "1624454076", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499380482" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,312.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,867.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,701.01 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,690.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 880.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 827.78 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,542.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499380482" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,312.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,867.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,701.01 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,690.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 880.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 827.78 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,542.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.95%" + } + ] + }, + { + "id": 229, + "type": "message", + "date": "2021-06-23T17:13:53", + "date_unixtime": "1624461233", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "504643726" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,612.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,867.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,544.49 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10615300 BTC ~ 3,557.78 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 880.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 238.36 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 394.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.37%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.72%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "504643726" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,612.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,867.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,544.49 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10615300 BTC ~ 3,557.78 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 880.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 238.36 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 394.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.37%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.72%" + } + ] + }, + { + "id": 230, + "type": "message", + "date": "2021-06-23T20:16:06", + "date_unixtime": "1624472166", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "503522975" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 117,912.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,867.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38304500 BTC ~ 12,675.34 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10646400 BTC ~ 3,523.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 880.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 34.43 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 395.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "503522975" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 117,912.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,867.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38304500 BTC ~ 12,675.34 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10646400 BTC ~ 3,523.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 880.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 34.43 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 395.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.01%" + } + ] + }, + { + "id": 231, + "type": "message", + "date": "2021-06-23T22:05:21", + "date_unixtime": "1624478721", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "503520722" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,212.32 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,867.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,841.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10677800 BTC ~ 3,499.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 880.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -122.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.19 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 396.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "503520722" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,212.32 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,867.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,841.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10677800 BTC ~ 3,499.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 880.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -122.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.19 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 396.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 232, + "type": "message", + "date": "2021-06-24T04:32:50", + "date_unixtime": "1624501970", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "503482958" + }, + " / Amount: 0.00333700 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 100,867.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40082300 BTC ~ 12,977.09 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10709500 BTC ~ 3,467.32 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 880.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -319.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.21 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 338.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.22%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "503482958" + }, + { + "type": "plain", + "text": " / Amount: 0.00333700 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 100,867.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40082300 BTC ~ 12,977.09 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10709500 BTC ~ 3,467.32 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 880.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -319.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.21 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 338.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.22%" + } + ] + }, + { + "id": 233, + "type": "message", + "date": "2021-06-24T13:40:54", + "date_unixtime": "1624534854", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "505763546" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 101,167.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,196.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,620.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 882.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 354.17 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,091.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.47 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 339.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "505763546" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 101,167.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,196.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,620.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 882.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 354.17 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,091.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.47 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 339.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.08%" + } + ] + }, + { + "id": 234, + "type": "message", + "date": "2021-06-24T14:04:45", + "date_unixtime": "1624536285", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "505301500" + }, + " / Amount: 0.00004200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 101,467.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,066.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,667.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 883.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 571.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.42 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.50 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 340.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.78%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "505301500" + }, + { + "type": "plain", + "text": " / Amount: 0.00004200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 101,467.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,066.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,667.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 883.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 571.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.42 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.50 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 340.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.78%" + } + ] + }, + { + "id": 235, + "type": "message", + "date": "2021-06-24T17:15:24", + "date_unixtime": "1624547724", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "505137894" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 101,767.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,833.69 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,686.14 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 884.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 659.52 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,693.60 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.52 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 341.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.61%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.26%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "505137894" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 101,767.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,833.69 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,686.14 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 884.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 659.52 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,693.60 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.52 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 341.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.61%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.26%" + } + ] + }, + { + "id": 236, + "type": "message", + "date": "2021-06-24T19:00:53", + "date_unixtime": "1624554053", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "504856239" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,067.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,707.56 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,736.50 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 885.71 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 884.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,994.80 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,552.53 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 342.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.90%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "504856239" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,067.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,707.56 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,736.50 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 885.71 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 884.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,994.80 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,552.53 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 342.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.90%" + } + ] + }, + { + "id": 237, + "type": "message", + "date": "2021-06-24T20:00:33", + "date_unixtime": "1624557633", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499251594" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,367.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,565.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,783.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 886.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,091.20 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,848.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 343.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.25%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.64%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499251594" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,367.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,565.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,783.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 886.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,091.20 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,848.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 343.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.25%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.64%" + } + ] + }, + { + "id": 238, + "type": "message", + "date": "2021-06-25T04:14:09", + "date_unixtime": "1624587249", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "499219328" + }, + " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,338.76 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,805.99 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,188.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,301.16 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,848.26 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "499219328" + }, + { + "type": "plain", + "text": " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,338.76 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,805.99 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,188.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,301.16 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,848.26 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%" + } + ] + }, + { + "id": 239, + "type": "message", + "date": "2021-06-25T09:20:27", + "date_unixtime": "1624605627", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "507408482" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 118,812.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35703300 BTC ~ 12,186.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10741500 BTC ~ 3,666.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 596.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,149.15 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 398.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.19%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.89%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "507408482" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 118,812.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35703300 BTC ~ 12,186.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10741500 BTC ~ 3,666.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 596.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,149.15 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 398.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.19%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.89%" + } + ] + }, + { + "id": 240, + "type": "message", + "date": "2021-06-25T11:46:47", + "date_unixtime": "1624614407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "506984320" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 119,112.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36561800 BTC ~ 12,374.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10772000 BTC ~ 3,645.81 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 463.50 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,700.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,149.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 399.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.35%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.74%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "506984320" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 119,112.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36561800 BTC ~ 12,374.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10772000 BTC ~ 3,645.81 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 463.50 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,700.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,149.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 399.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.35%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.74%" + } + ] + }, + { + "id": 241, + "type": "message", + "date": "2021-06-25T13:21:44", + "date_unixtime": "1624620104", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "506915573" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 119,412.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,507.33 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10802800 BTC ~ 3,609.90 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 260.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,400.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,149.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 400.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "506915573" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 119,412.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,507.33 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10802800 BTC ~ 3,609.90 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 260.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,400.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,149.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 400.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.03%" + } + ] + }, + { + "id": 242, + "type": "message", + "date": "2021-06-25T14:39:17", + "date_unixtime": "1624624757", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "506781690" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 119,712.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38304500 BTC ~ 12,691.13 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10833900 BTC ~ 3,589.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 123.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,100.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,149.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 401.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "506781690" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 119,712.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38304500 BTC ~ 12,691.13 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10833900 BTC ~ 3,589.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 123.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,100.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,149.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 401.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.88%" + } + ] + }, + { + "id": 243, + "type": "message", + "date": "2021-06-25T15:14:55", + "date_unixtime": "1624626895", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "506556146" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 120,012.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,860.28 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10865300 BTC ~ 3,565.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -30.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,800.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,149.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 402.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.20%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.85%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "506556146" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 120,012.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,860.28 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10865300 BTC ~ 3,565.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -30.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,800.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,149.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 402.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.20%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.85%" + } + ] + }, + { + "id": 244, + "type": "message", + "date": "2021-06-25T17:09:52", + "date_unixtime": "1624633792", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "507684529" + }, + " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 120,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40082300 BTC ~ 12,980.93 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10897000 BTC ~ 3,529.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -246.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,500.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,149.17 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 403.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.19%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "507684529" + }, + { + "type": "plain", + "text": " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 120,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40082300 BTC ~ 12,980.93 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10897000 BTC ~ 3,529.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -246.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,500.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,149.17 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 403.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.19%" + } + ] + }, + { + "id": 245, + "type": "message", + "date": "2021-06-25T18:27:43", + "date_unixtime": "1624638463", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "507831202" + }, + " / Amount: 0.00695200 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 120,612.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40984600 BTC ~ 13,140.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10929000 BTC ~ 3,504.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -411.55 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,827.99 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 404.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.19%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "507831202" + }, + { + "type": "plain", + "text": " / Amount: 0.00695200 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 120,612.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40984600 BTC ~ 13,140.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10929000 BTC ~ 3,504.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -411.55 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,827.99 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 404.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.19%" + } + ] + }, + { + "id": 246, + "type": "message", + "date": "2021-06-25T18:38:20", + "date_unixtime": "1624639100", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "507955549" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 120,912.26 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,313.86 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10961300 BTC ~ 3,483.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -559.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,527.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 405.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.04%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "507955549" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 120,912.26 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,313.86 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10961300 BTC ~ 3,483.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -559.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,527.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 405.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.04%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.08%" + } + ] + }, + { + "id": 247, + "type": "message", + "date": "2021-06-26T00:32:07", + "date_unixtime": "1624660327", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "508076417" + }, + " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 121,212.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,667.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42816300 BTC ~ 13,545.74 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.10994000 BTC ~ 3,478.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 888.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -632.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,227.40 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 406.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 344.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.56%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.51%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "508076417" + }, + { + "type": "plain", + "text": " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 121,212.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,667.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42816300 BTC ~ 13,545.74 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.10994000 BTC ~ 3,478.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 888.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -632.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,227.40 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 406.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 344.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.56%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.51%" + } + ] + }, + { + "id": 248, + "type": "message", + "date": "2021-06-26T07:05:27", + "date_unixtime": "1624683927", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "508992883" + }, + " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 121,212.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,967.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,655.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11027000 BTC ~ 3,597.06 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 889.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -102.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,927.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 406.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.50%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.36%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "508992883" + }, + { + "type": "plain", + "text": " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 121,212.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,967.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,655.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11027000 BTC ~ 3,597.06 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 889.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -102.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,927.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 406.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.50%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.36%" + } + ] + }, + { + "id": 249, + "type": "message", + "date": "2021-06-26T09:06:23", + "date_unixtime": "1624691183", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "509533974" + }, + " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 121,512.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,967.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42816300 BTC ~ 13,518.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11027000 BTC ~ 3,481.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 889.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -655.10 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,927.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 407.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.39%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.72%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "509533974" + }, + { + "type": "plain", + "text": " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 121,512.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,967.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42816300 BTC ~ 13,518.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11027000 BTC ~ 3,481.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 889.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -655.10 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,927.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 407.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.39%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.72%" + } + ] + }, + { + "id": 250, + "type": "message", + "date": "2021-06-26T09:20:59", + "date_unixtime": "1624692059", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "508134412" + }, + " / Amount: 0.00000600 / Price: 31165.38000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 121,812.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,967.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43745900 BTC ~ 13,617.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11060000 BTC ~ 3,442.78 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 889.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -895.42 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,927.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 408.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.17%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "508134412" + }, + { + "type": "plain", + "text": " / Amount: 0.00000600 / Price: 31165.38000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 121,812.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,967.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43745900 BTC ~ 13,617.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11060000 BTC ~ 3,442.78 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 889.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -895.42 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,927.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 408.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.17%" + } + ] + }, + { + "id": 251, + "type": "message", + "date": "2021-06-26T09:37:45", + "date_unixtime": "1624693065", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "508327231" + }, + " / Amount: 0.00972200 / Price: 30856.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 122,112.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,967.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44684800 BTC ~ 13,762.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11093300 BTC ~ 3,416.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 889.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,075.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,628.08 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 409.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.96%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.23%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "508327231" + }, + { + "type": "plain", + "text": " / Amount: 0.00972200 / Price: 30856.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 122,112.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,967.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44684800 BTC ~ 13,762.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11093300 BTC ~ 3,416.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 889.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,075.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,628.08 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 409.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.96%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.23%" + } + ] + }, + { + "id": 252, + "type": "message", + "date": "2021-06-26T10:06:47", + "date_unixtime": "1624694807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "508457060" + }, + " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 122,412.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,967.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45633100 BTC ~ 13,941.14 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11127000 BTC ~ 3,399.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 889.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,215.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,327.82 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 410.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.04%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "508457060" + }, + { + "type": "plain", + "text": " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 122,412.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,967.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45633100 BTC ~ 13,941.14 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11127000 BTC ~ 3,399.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 889.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,215.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,327.82 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 410.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.04%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.04%" + } + ] + }, + { + "id": 253, + "type": "message", + "date": "2021-06-26T10:14:10", + "date_unixtime": "1624695250", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "508477984" + }, + " / Amount: 0.00991800 / Price: 30248.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 122,712.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 102,967.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.46590900 BTC ~ 14,072.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11161000 BTC ~ 3,371.01 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 889.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,412.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,027.56 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 411.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 345.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.20%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "508477984" + }, + { + "type": "plain", + "text": " / Amount: 0.00991800 / Price: 30248.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 122,712.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 102,967.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.46590900 BTC ~ 14,072.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11161000 BTC ~ 3,371.01 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 889.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,412.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,027.56 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 411.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 345.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.20%" + } + ] + }, + { + "id": 254, + "type": "message", + "date": "2021-06-26T13:02:48", + "date_unixtime": "1624705368", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "509799825" + }, + " / Amount: 0.00957500 / Price: 31458.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 122,712.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 103,267.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45599100 BTC ~ 14,305.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11195300 BTC ~ 3,512.32 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 890.50 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -736.12 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.16 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,727.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 411.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 346.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.28%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "509799825" + }, + { + "type": "plain", + "text": " / Amount: 0.00957500 / Price: 31458.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 122,712.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 103,267.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45599100 BTC ~ 14,305.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11195300 BTC ~ 3,512.32 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 890.50 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -736.12 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.16 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,727.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 411.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 346.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.28%" + } + ] + }, + { + "id": 255, + "type": "message", + "date": "2021-06-26T13:49:30", + "date_unixtime": "1624708170", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "509784204" + }, + " / Amount: 0.00948000 / Price: 31773.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 122,712.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 103,567.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44651100 BTC ~ 14,210.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11195300 BTC ~ 3,563.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 891.70 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -479.28 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,727.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 411.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 347.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.83%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "509784204" + }, + { + "type": "plain", + "text": " / Amount: 0.00948000 / Price: 31773.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 122,712.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 103,567.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44651100 BTC ~ 14,210.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11195300 BTC ~ 3,563.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 891.70 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -479.28 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,727.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 411.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 347.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.83%" + } + ] + }, + { + "id": 256, + "type": "message", + "date": "2021-06-26T16:03:30", + "date_unixtime": "1624716210", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "510105775" + }, + " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 103,567.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45633100 BTC ~ 13,951.82 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11195300 BTC ~ 3,422.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 891.70 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,178.45 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.34 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,727.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 347.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "510105775" + }, + { + "type": "plain", + "text": " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 103,567.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45633100 BTC ~ 13,951.82 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11195300 BTC ~ 3,422.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 891.70 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,178.45 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.34 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,727.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 347.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 257, + "type": "message", + "date": "2021-06-26T20:00:43", + "date_unixtime": "1624730443", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "510272788" + }, + " / Amount: 0.00948000 / Price: 31773.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 103,867.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44651100 BTC ~ 14,149.71 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,558.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 892.89 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -543.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,124.57 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,727.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 348.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.64%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.27%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "510272788" + }, + { + "type": "plain", + "text": " / Amount: 0.00948000 / Price: 31773.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 103,867.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44651100 BTC ~ 14,149.71 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,558.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 892.89 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -543.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,124.57 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,727.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 348.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.64%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.27%" + } + ] + }, + { + "id": 258, + "type": "message", + "date": "2021-06-27T01:58:00", + "date_unixtime": "1624751880", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "509737873" + }, + " / Amount: 0.00938500 / Price: 32091.08000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 104,167.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43712600 BTC ~ 14,045.58 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,608.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 894.08 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -296.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,425.72 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,727.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 349.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.87%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "509737873" + }, + { + "type": "plain", + "text": " / Amount: 0.00938500 / Price: 32091.08000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 104,167.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43712600 BTC ~ 14,045.58 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,608.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 894.08 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -296.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,425.72 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,727.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 349.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.87%" + } + ] + }, + { + "id": 259, + "type": "message", + "date": "2021-06-27T02:13:58", + "date_unixtime": "1624752838", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "509710187" + }, + " / Amount: 0.00000300 / Price: 32412.00000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 104,467.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42783300 BTC ~ 13,878.73 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,642.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 895.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -128.06 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,726.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,727.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 350.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "509710187" + }, + { + "type": "plain", + "text": " / Amount: 0.00000300 / Price: 32412.00000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 104,467.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42783300 BTC ~ 13,878.73 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,642.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 895.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -128.06 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,726.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,727.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 350.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.91%" + } + ] + }, + { + "id": 260, + "type": "message", + "date": "2021-06-27T03:19:56", + "date_unixtime": "1624756796", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "509682977" + }, + " / Amount: 0.00198000 / Price: 32736.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 104,767.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,676.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,668.43 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 896.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -3.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,755.39 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 351.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.21%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "509682977" + }, + { + "type": "plain", + "text": " / Amount: 0.00198000 / Price: 32736.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 104,767.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,676.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,668.43 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 896.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -3.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,755.39 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 351.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.21%" + } + ] + }, + { + "id": 261, + "type": "message", + "date": "2021-06-27T04:23:31", + "date_unixtime": "1624760611", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "508477681" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 105,067.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,524.23 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,708.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 897.67 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 185.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,056.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 352.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "508477681" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 105,067.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,524.23 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,708.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 897.67 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 185.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,056.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 352.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%" + } + ] + }, + { + "id": 262, + "type": "message", + "date": "2021-06-27T09:36:09", + "date_unixtime": "1624779369", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "508456936" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 105,367.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,376.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,750.58 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 898.88 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 381.42 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,357.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 353.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "508456936" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 105,367.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,376.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,750.58 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 898.88 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 381.42 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,357.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 353.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.98%" + } + ] + }, + { + "id": 263, + "type": "message", + "date": "2021-06-27T14:38:17", + "date_unixtime": "1624797497", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "511283705" + }, + " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,312.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 105,367.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40984600 BTC ~ 13,677.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11229300 BTC ~ 3,747.60 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 898.88 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 379.64 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,367.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 413.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 353.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "511283705" + }, + { + "type": "plain", + "text": " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,312.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 105,367.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40984600 BTC ~ 13,677.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11229300 BTC ~ 3,747.60 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 898.88 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 379.64 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,367.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 413.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 353.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.06%" + } + ] + }, + { + "id": 264, + "type": "message", + "date": "2021-06-27T14:45:14", + "date_unixtime": "1624797914", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "511547682" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,312.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 105,667.49 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,373.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11261600 BTC ~ 3,760.55 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 900.10 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 389.71 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,367.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 413.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 354.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "511547682" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,312.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 105,667.49 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,373.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11261600 BTC ~ 3,760.55 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 900.10 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 389.71 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,367.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 413.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 354.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%" + } + ] + }, + { + "id": 265, + "type": "message", + "date": "2021-06-27T14:47:40", + "date_unixtime": "1624798060", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "508327082" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,312.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 105,967.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,100.33 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11261600 BTC ~ 3,767.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 901.30 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 424.45 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,773.15 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 413.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 355.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.82%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "508327082" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,312.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 105,967.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,100.33 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11261600 BTC ~ 3,767.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 901.30 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 424.45 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,773.15 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 413.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 355.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.82%" + } + ] + }, + { + "id": 266, + "type": "message", + "date": "2021-06-27T23:22:28", + "date_unixtime": "1624828948", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "511557017" + }, + " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 105,967.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40082300 BTC ~ 13,017.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11261600 BTC ~ 3,657.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 901.30 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -68.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,783.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 355.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.20%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.89%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "511557017" + }, + { + "type": "plain", + "text": " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 105,967.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40082300 BTC ~ 13,017.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11261600 BTC ~ 3,657.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 901.30 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -68.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,783.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 355.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.20%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.89%" + } + ] + }, + { + "id": 267, + "type": "message", + "date": "2021-06-28T00:12:26", + "date_unixtime": "1624831946", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "511961309" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 106,267.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,220.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 3,812.88 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 902.51 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 590.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,783.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 356.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.90%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "511961309" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 106,267.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,220.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 3,812.88 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 902.51 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 590.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,783.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 356.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.90%" + } + ] + }, + { + "id": 268, + "type": "message", + "date": "2021-06-28T00:17:40", + "date_unixtime": "1624832260", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "508134219" + }, + " / Amount: 0.00550000 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 106,567.47 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,069.85 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 3,856.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 903.71 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 785.39 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,961.54 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 357.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.75%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "508134219" + }, + { + "type": "plain", + "text": " / Amount: 0.00550000 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 106,567.47 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,069.85 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 3,856.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 903.71 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 785.39 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,961.54 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 357.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.75%" + } + ] + }, + { + "id": 269, + "type": "message", + "date": "2021-06-28T00:57:36", + "date_unixtime": "1624834656", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "508076354" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 106,867.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,914.73 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 3,900.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 904.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 974.88 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,262.44 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 358.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.23%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.63%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "508076354" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 106,867.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,914.73 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 3,900.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 904.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 974.88 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,262.44 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 358.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.23%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.63%" + } + ] + }, + { + "id": 270, + "type": "message", + "date": "2021-06-28T02:01:48", + "date_unixtime": "1624838508", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "507955432" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 107,167.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,662.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 3,914.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 906.10 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,038.48 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,563.35 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 359.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.64%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.26%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "507955432" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 107,167.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,662.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 3,914.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 906.10 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,038.48 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,563.35 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 359.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.64%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.26%" + } + ] + }, + { + "id": 271, + "type": "message", + "date": "2021-06-28T09:44:02", + "date_unixtime": "1624866242", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "507831013" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 107,467.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,521.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 3,964.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 907.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,247.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,864.30 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 360.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "507831013" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 107,467.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,521.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 3,964.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 907.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,247.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,864.30 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 360.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%" + } + ] + }, + { + "id": 272, + "type": "message", + "date": "2021-06-29T12:35:27", + "date_unixtime": "1624962927", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "507684468" + }, + " / Amount: 0.00705300 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 107,767.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,410.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 4,024.99 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 908.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,499.45 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,602.36 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,165.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 361.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.34%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.46%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "507684468" + }, + { + "type": "plain", + "text": " / Amount: 0.00705300 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 107,767.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,410.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 4,024.99 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 908.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,499.45 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,602.36 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,165.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 361.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.34%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.46%" + } + ] + }, + { + "id": 273, + "type": "message", + "date": "2021-06-29T12:36:26", + "date_unixtime": "1624962986", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "498164206" + }, + " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,367.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,793.64 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 4,017.99 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 910.85 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,477.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,767.04 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 363.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.26%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.66%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "498164206" + }, + { + "type": "plain", + "text": " / Amount: 0.00832900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,367.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,793.64 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 4,017.99 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 910.85 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,477.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,767.04 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 363.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.26%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.66%" + } + ] + }, + { + "id": 274, + "type": "message", + "date": "2021-06-29T18:33:18", + "date_unixtime": "1624984398", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "496495413" + }, + " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,612.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,782.68 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 4,116.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,866.55 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.01 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.20%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "496495413" + }, + { + "type": "plain", + "text": " / Amount: 0.00824700 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,612.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,782.68 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 4,116.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,866.55 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.01 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.20%" + } + ] + }, + { + "id": 275, + "type": "message", + "date": "2021-06-30T05:23:32", + "date_unixtime": "1625023412", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "515301409" + }, + " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 123,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33178700 BTC ~ 11,683.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11293600 BTC ~ 3,976.83 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,327.26 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.06 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 415.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.28%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.76%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "515301409" + }, + { + "type": "plain", + "text": " / Amount: 0.00854300 / Price: 35117.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 123,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33178700 BTC ~ 11,683.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11293600 BTC ~ 3,976.83 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,327.26 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.06 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 415.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.28%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.76%" + } + ] + }, + { + "id": 276, + "type": "message", + "date": "2021-06-30T06:43:35", + "date_unixtime": "1625028215", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "514778081" + }, + " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 124,212.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34011900 BTC ~ 11,836.86 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11323200 BTC ~ 3,940.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,144.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,699.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.06 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 416.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "514778081" + }, + { + "type": "plain", + "text": " / Amount: 0.00862800 / Price: 34770.24000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 124,212.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34011900 BTC ~ 11,836.86 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11323200 BTC ~ 3,940.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,144.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,699.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.06 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 416.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.94%" + } + ] + }, + { + "id": 277, + "type": "message", + "date": "2021-06-30T11:01:38", + "date_unixtime": "1625043698", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "514777822" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 124,512.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34853400 BTC ~ 12,008.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11353100 BTC ~ 3,911.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 987.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,399.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.06 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 417.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.15%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "514777822" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 124,512.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34853400 BTC ~ 12,008.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11353100 BTC ~ 3,911.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 987.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,399.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.06 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 417.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.15%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 278, + "type": "message", + "date": "2021-06-30T17:45:59", + "date_unixtime": "1625067959", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "514775667" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 124,812.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35703300 BTC ~ 12,172.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11383300 BTC ~ 3,881.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 821.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,099.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.06 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 418.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "514775667" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 124,812.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35703300 BTC ~ 12,172.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11383300 BTC ~ 3,881.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 821.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,099.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.06 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 418.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.01%" + } + ] + }, + { + "id": 279, + "type": "message", + "date": "2021-07-01T08:46:35", + "date_unixtime": "1625121995", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "512699833" + }, + " / Amount: 0.00233600 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 125,112.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36561800 BTC ~ 12,308.69 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11413800 BTC ~ 3,842.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 618.40 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,800.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.06 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 419.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "512699833" + }, + { + "type": "plain", + "text": " / Amount: 0.00233600 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 125,112.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36561800 BTC ~ 12,308.69 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11413800 BTC ~ 3,842.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 618.40 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,800.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.06 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 419.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.30%" + } + ] + }, + { + "id": 280, + "type": "message", + "date": "2021-07-01T09:11:40", + "date_unixtime": "1625123500", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "516069951" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 125,412.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,491.63 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11444600 BTC ~ 3,819.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 478.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,500.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,068.06 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 420.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.16%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "516069951" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 125,412.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,491.63 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11444600 BTC ~ 3,819.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 478.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,500.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,068.06 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 420.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.16%" + } + ] + }, + { + "id": 281, + "type": "message", + "date": "2021-07-01T12:24:32", + "date_unixtime": "1625135072", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "516181194" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 125,712.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38304500 BTC ~ 12,679.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11475700 BTC ~ 3,798.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 345.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,746.86 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 421.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "516181194" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 125,712.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38304500 BTC ~ 12,679.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11475700 BTC ~ 3,798.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 345.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,746.86 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 421.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%" + } + ] + }, + { + "id": 282, + "type": "message", + "date": "2021-07-01T21:36:27", + "date_unixtime": "1625168187", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "516487092" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,012.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,860.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11507100 BTC ~ 3,776.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 912.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 203.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,446.56 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 422.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 364.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.25%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.85%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "516487092" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,012.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,860.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11507100 BTC ~ 3,776.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 912.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 203.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,446.56 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 422.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 364.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.25%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.85%" + } + ] + }, + { + "id": 283, + "type": "message", + "date": "2021-07-02T02:11:24", + "date_unixtime": "1625184684", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "519065500" + }, + " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,012.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,967.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 12,978.52 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11538800 BTC ~ 3,912.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 913.24 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 759.78 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.15 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,146.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 422.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 365.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.41%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.46%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "519065500" + }, + { + "type": "plain", + "text": " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,012.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,967.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 12,978.52 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11538800 BTC ~ 3,912.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 913.24 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 759.78 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.15 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,146.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 422.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 365.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.41%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.46%" + } + ] + }, + { + "id": 284, + "type": "message", + "date": "2021-07-02T05:13:54", + "date_unixtime": "1625195634", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "519389735" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 108,967.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,914.74 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11538800 BTC ~ 3,802.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 913.24 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 285.78 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,146.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 365.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "519389735" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 108,967.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,914.74 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11538800 BTC ~ 3,802.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 913.24 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 285.78 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,146.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 365.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.40%" + } + ] + }, + { + "id": 285, + "type": "message", + "date": "2021-07-03T09:31:14", + "date_unixtime": "1625297474", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "519598098" + }, + " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 109,267.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,030.41 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 3,939.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 914.45 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 839.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,823.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,146.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 366.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "519598098" + }, + { + "type": "plain", + "text": " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 109,267.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,030.41 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 3,939.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 914.45 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 839.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,823.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,146.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 366.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.06%" + } + ] + }, + { + "id": 286, + "type": "message", + "date": "2021-07-03T09:43:11", + "date_unixtime": "1625298191", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "518435726" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 109,567.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,883.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 3,986.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 915.64 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,040.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,124.53 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,146.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 367.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.96%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.87%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "518435726" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 109,567.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,883.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 3,986.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 915.64 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,040.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,124.53 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,146.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 367.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.96%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.87%" + } + ] + }, + { + "id": 287, + "type": "message", + "date": "2021-07-03T11:12:08", + "date_unixtime": "1625303528", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "518162224" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 109,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,679.84 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 4,016.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 916.83 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,167.93 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,425.72 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,146.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 368.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "518162224" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 109,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,679.84 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 4,016.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 916.83 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,167.93 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,425.72 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,146.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 368.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%" + } + ] + }, + { + "id": 288, + "type": "message", + "date": "2021-07-04T07:43:37", + "date_unixtime": "1625377417", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "518116608" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,167.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,512.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 4,058.31 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 918.03 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,343.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,726.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,146.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 369.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "518116608" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,167.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,512.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 4,058.31 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 918.03 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,343.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,726.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,146.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 369.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.07%" + } + ] + }, + { + "id": 289, + "type": "message", + "date": "2021-07-04T08:57:00", + "date_unixtime": "1625381820", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "517018334" + }, + " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,467.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,332.58 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 4,097.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 919.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,504.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,174.35 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 370.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.10%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "517018334" + }, + { + "type": "plain", + "text": " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,467.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,332.58 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 4,097.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 919.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,504.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,174.35 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 370.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.10%" + } + ] + }, + { + "id": 290, + "type": "message", + "date": "2021-07-04T23:37:58", + "date_unixtime": "1625434678", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "516486922" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,767.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,153.43 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 4,138.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 920.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,667.09 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,475.25 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 371.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "516486922" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,767.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,153.43 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 4,138.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 920.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,667.09 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,475.25 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 371.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 291, + "type": "message", + "date": "2021-07-05T04:19:15", + "date_unixtime": "1625451555", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "523880748" + }, + " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,612.26 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,767.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34853400 BTC ~ 12,001.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11570500 BTC ~ 3,984.08 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 920.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,060.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 424.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 371.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "523880748" + }, + { + "type": "plain", + "text": " / Amount: 0.00871400 / Price: 34425.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,612.26 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,767.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34853400 BTC ~ 12,001.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11570500 BTC ~ 3,984.08 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 920.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,060.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 424.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 371.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%" + } + ] + }, + { + "id": 292, + "type": "message", + "date": "2021-07-05T06:19:56", + "date_unixtime": "1625458796", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "523075129" + }, + " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 126,912.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,767.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35703300 BTC ~ 12,167.37 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11600700 BTC ~ 3,953.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 920.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 896.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 425.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 371.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "523075129" + }, + { + "type": "plain", + "text": " / Amount: 0.00880100 / Price: 34085.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 126,912.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,767.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35703300 BTC ~ 12,167.37 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11600700 BTC ~ 3,953.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 920.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 896.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 425.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 371.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%" + } + ] + }, + { + "id": 293, + "type": "message", + "date": "2021-07-05T13:25:48", + "date_unixtime": "1625484348", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "522972204" + }, + " / Amount: 0.00851800 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 127,212.26 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,767.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36561800 BTC ~ 12,329.38 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11631200 BTC ~ 3,922.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 920.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 727.21 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 426.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 371.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "522972204" + }, + { + "type": "plain", + "text": " / Amount: 0.00851800 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 127,212.26 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,767.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36561800 BTC ~ 12,329.38 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11631200 BTC ~ 3,922.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 920.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 727.21 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 426.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 371.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.12%" + } + ] + }, + { + "id": 294, + "type": "message", + "date": "2021-07-05T13:55:54", + "date_unixtime": "1625486154", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "521676470" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 127,512.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 110,767.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,512.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11662000 BTC ~ 3,898.47 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 920.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 586.07 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 427.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 371.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "521676470" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 127,512.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 110,767.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,512.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11662000 BTC ~ 3,898.47 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 920.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 586.07 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 427.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 371.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 295, + "type": "message", + "date": "2021-07-06T06:28:39", + "date_unixtime": "1625545719", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "524894753" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 127,512.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,067.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,658.24 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11693100 BTC ~ 4,051.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 921.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,186.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,091.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 427.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 372.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.58%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.29%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "524894753" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 127,512.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,067.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,658.24 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11693100 BTC ~ 4,051.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 921.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,186.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,091.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 427.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 372.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.58%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.29%" + } + ] + }, + { + "id": 296, + "type": "message", + "date": "2021-07-06T10:58:29", + "date_unixtime": "1625561909", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "524843173" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 127,512.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,493.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11693100 BTC ~ 4,095.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,366.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.43 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 427.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.69%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.22%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "524843173" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 127,512.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,493.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11693100 BTC ~ 4,095.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,366.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.43 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 427.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.69%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.22%" + } + ] + }, + { + "id": 297, + "type": "message", + "date": "2021-07-06T12:09:58", + "date_unixtime": "1625566198", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "526409368" + }, + " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 127,812.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36561800 BTC ~ 12,368.81 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11693100 BTC ~ 3,955.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 802.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.41 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.33%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.78%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "526409368" + }, + { + "type": "plain", + "text": " / Amount: 0.00889000 / Price: 33747.65000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 127,812.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36561800 BTC ~ 12,368.81 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11693100 BTC ~ 3,955.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 802.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.41 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.33%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.78%" + } + ] + }, + { + "id": 298, + "type": "message", + "date": "2021-07-08T02:23:29", + "date_unixtime": "1625703809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "526077120" + }, + " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 128,112.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37428800 BTC ~ 12,547.43 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11723900 BTC ~ 3,930.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 655.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,092.41 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.23 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 429.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.36%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.70%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "526077120" + }, + { + "type": "plain", + "text": " / Amount: 0.00897800 / Price: 33413.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 128,112.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37428800 BTC ~ 12,547.43 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11723900 BTC ~ 3,930.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 655.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,092.41 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.23 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 429.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.36%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.70%" + } + ] + }, + { + "id": 299, + "type": "message", + "date": "2021-07-08T02:33:45", + "date_unixtime": "1625704425", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "521552436" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 128,412.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38304500 BTC ~ 12,683.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11755000 BTC ~ 3,892.49 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 454.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,792.42 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,485.23 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 430.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.20%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "521552436" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 128,412.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38304500 BTC ~ 12,683.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11755000 BTC ~ 3,892.49 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 454.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,792.42 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,485.23 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 430.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.20%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.94%" + } + ] + }, + { + "id": 300, + "type": "message", + "date": "2021-07-08T09:40:43", + "date_unixtime": "1625730043", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "524224167" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 128,712.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,810.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11786400 BTC ~ 3,852.86 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 241.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,513.61 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,464.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 431.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.25%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "524224167" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 128,712.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,810.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11786400 BTC ~ 3,852.86 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 241.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,513.61 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,464.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 431.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.25%" + } + ] + }, + { + "id": 301, + "type": "message", + "date": "2021-07-08T09:42:43", + "date_unixtime": "1625730163", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "524381547" + }, + " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,012.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40082300 BTC ~ 13,018.45 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11818100 BTC ~ 3,838.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 134.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,156.42 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 432.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.17%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "524381547" + }, + { + "type": "plain", + "text": " / Amount: 0.00925000 / Price: 32430.82000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,012.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40082300 BTC ~ 13,018.45 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11818100 BTC ~ 3,838.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 134.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,156.42 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 432.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.17%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.88%" + } + ] + }, + { + "id": 302, + "type": "message", + "date": "2021-07-08T13:04:40", + "date_unixtime": "1625742280", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "526528938" + }, + " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,312.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,367.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40984600 BTC ~ 13,153.19 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11850100 BTC ~ 3,803.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 922.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -65.79 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,856.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 433.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 373.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "526528938" + }, + { + "type": "plain", + "text": " / Amount: 0.00934300 / Price: 32109.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,312.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,367.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40984600 BTC ~ 13,153.19 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11850100 BTC ~ 3,803.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 922.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -65.79 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,856.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 433.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 373.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.09%" + } + ] + }, + { + "id": 303, + "type": "message", + "date": "2021-07-09T15:30:44", + "date_unixtime": "1625837444", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "530331558" + }, + " / Amount: 0.00617700 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,312.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,667.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,339.10 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11882400 BTC ~ 3,957.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 924.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 575.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.15 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 433.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 374.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.27%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "530331558" + }, + { + "type": "plain", + "text": " / Amount: 0.00617700 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,312.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,667.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,339.10 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11882400 BTC ~ 3,957.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 924.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 575.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.15 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 433.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 374.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.27%" + } + ] + }, + { + "id": 304, + "type": "message", + "date": "2021-07-09T23:36:54", + "date_unixtime": "1625866614", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "530039642" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,312.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 111,967.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,224.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11882400 BTC ~ 4,012.91 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 925.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 817.45 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.36 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 433.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 375.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.87%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "530039642" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,312.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 111,967.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,224.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11882400 BTC ~ 4,012.91 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 925.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 817.45 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.36 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 433.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 375.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.87%" + } + ] + }, + { + "id": 305, + "type": "message", + "date": "2021-07-10T00:42:44", + "date_unixtime": "1625870564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "530033157" + }, + " / Amount: 0.00617200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,312.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 112,267.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,033.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11882400 BTC ~ 4,046.46 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 926.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 961.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.57 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 433.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 376.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "530033157" + }, + { + "type": "plain", + "text": " / Amount: 0.00617200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,312.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 112,267.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,033.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11882400 BTC ~ 4,046.46 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 926.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 961.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.57 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 433.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 376.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.03%" + } + ] + }, + { + "id": 306, + "type": "message", + "date": "2021-07-11T23:31:20", + "date_unixtime": "1626039080", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "529434784" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,312.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 112,567.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,849.34 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11882400 BTC ~ 4,082.63 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 927.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,114.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.75 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 433.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 377.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.14%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "529434784" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,312.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 112,567.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,849.34 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11882400 BTC ~ 4,082.63 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 927.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,114.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.75 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 433.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 377.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.14%" + } + ] + }, + { + "id": 307, + "type": "message", + "date": "2021-07-12T18:46:09", + "date_unixtime": "1626108369", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "536034110" + }, + " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,612.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 112,567.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38304500 BTC ~ 12,668.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11882400 BTC ~ 3,929.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 927.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 480.71 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.76 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 434.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 377.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "536034110" + }, + { + "type": "plain", + "text": " / Amount: 0.00906800 / Price: 33082.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,612.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 112,567.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38304500 BTC ~ 12,668.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11882400 BTC ~ 3,929.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 927.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 480.71 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.76 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 434.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 377.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%" + } + ] + }, + { + "id": 308, + "type": "message", + "date": "2021-07-12T18:50:44", + "date_unixtime": "1626108644", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "533120366" + }, + " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 129,912.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 112,567.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39189000 BTC ~ 12,983.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.11913800 BTC ~ 3,947.08 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 927.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 513.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,425.76 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 435.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 377.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.85%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "533120366" + }, + { + "type": "plain", + "text": " / Amount: 0.00915900 / Price: 32755.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 129,912.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 112,567.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39189000 BTC ~ 12,983.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.11913800 BTC ~ 3,947.08 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 927.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 513.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,425.76 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 435.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 377.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.85%" + } + ] + }, + { + "id": 309, + "type": "message", + "date": "2021-07-12T18:52:02", + "date_unixtime": "1626108722", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "537371428" + }, + " / Amount: 0.00910900 / Price: 33138.17000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 131,112.22 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 112,867.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41872400 BTC ~ 13,877.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12075500 BTC ~ 4,001.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 929.47 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 563.69 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,532.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 439.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 378.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.76%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "537371428" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33138.17000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 131,112.22 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 112,867.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41872400 BTC ~ 13,877.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12075500 BTC ~ 4,001.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 929.47 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 563.69 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,532.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 439.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 378.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.76%" + } + ] + }, + { + "id": 310, + "type": "message", + "date": "2021-07-12T18:52:18", + "date_unixtime": "1626108738", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "537371662" + }, + " / Amount: 0.00223500 / Price: 33120.10000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 131,112.22 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,167.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,578.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12075500 BTC ~ 4,003.79 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 934.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 571.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,532.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 439.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 379.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.72%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "537371662" + }, + { + "type": "plain", + "text": " / Amount: 0.00223500 / Price: 33120.10000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 131,112.22 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,167.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,578.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12075500 BTC ~ 4,003.79 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 934.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 571.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,532.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 439.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 379.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.72%" + } + ] + }, + { + "id": 311, + "type": "message", + "date": "2021-07-14T05:25:20", + "date_unixtime": "1626233120", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "537372976" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 131,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,167.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,331.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12075500 BTC ~ 3,842.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 934.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -137.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,532.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,555.85 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 440.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 379.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "537372976" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 131,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,167.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,331.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12075500 BTC ~ 3,842.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 934.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -137.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,532.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,555.85 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 440.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 379.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.95%" + } + ] + }, + { + "id": 312, + "type": "message", + "date": "2021-07-14T20:38:45", + "date_unixtime": "1626287925", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "539673739" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 131,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,467.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,536.85 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12108200 BTC ~ 4,002.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 935.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 529.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.10 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,267.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 440.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 380.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "539673739" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 131,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,467.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,536.85 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12108200 BTC ~ 4,002.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 935.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 529.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.10 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,267.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 440.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 380.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.03%" + } + ] + }, + { + "id": 313, + "type": "message", + "date": "2021-07-15T13:25:37", + "date_unixtime": "1626348337", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "540738929" + }, + " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 131,712.19 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,467.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41895900 BTC ~ 13,342.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12108200 BTC ~ 3,856.20 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 935.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -110.26 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,267.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 441.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 380.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.21%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.86%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "540738929" + }, + { + "type": "plain", + "text": " / Amount: 0.00943600 / Price: 31791.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 131,712.19 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,467.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41895900 BTC ~ 13,342.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12108200 BTC ~ 3,856.20 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 935.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -110.26 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,267.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 441.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 380.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.21%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.86%" + } + ] + }, + { + "id": 314, + "type": "message", + "date": "2021-07-15T15:25:59", + "date_unixtime": "1626355559", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "537373401" + }, + " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 132,012.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,467.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42816300 BTC ~ 13,502.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12140900 BTC ~ 3,828.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 935.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -277.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,267.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 442.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 380.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.19%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.84%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "537373401" + }, + { + "type": "plain", + "text": " / Amount: 0.00953100 / Price: 31477.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 132,012.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,467.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42816300 BTC ~ 13,502.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12140900 BTC ~ 3,828.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 935.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -277.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,267.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 442.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 380.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.19%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.84%" + } + ] + }, + { + "id": 315, + "type": "message", + "date": "2021-07-15T19:20:57", + "date_unixtime": "1626369657", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "537370840" + }, + " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 132,312.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,467.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43745900 BTC ~ 13,663.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12173900 BTC ~ 3,802.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 935.40 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -443.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,967.90 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 443.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 380.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.23%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.81%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "537370840" + }, + { + "type": "plain", + "text": " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 132,312.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,467.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43745900 BTC ~ 13,663.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12173900 BTC ~ 3,802.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 935.40 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -443.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,967.90 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 443.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 380.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.23%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.81%" + } + ] + }, + { + "id": 316, + "type": "message", + "date": "2021-07-18T03:32:21", + "date_unixtime": "1626571941", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "542468395" + }, + " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 132,312.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42783300 BTC ~ 13,857.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12207200 BTC ~ 3,953.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 203.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,667.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 443.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "542468395" + }, + { + "type": "plain", + "text": " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 132,312.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42783300 BTC ~ 13,857.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12207200 BTC ~ 3,953.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 203.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,667.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 443.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.07%" + } + ] + }, + { + "id": 317, + "type": "message", + "date": "2021-07-18T16:42:09", + "date_unixtime": "1626619329", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "546183680" + }, + " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 132,612.19 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43745900 BTC ~ 13,658.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12207200 BTC ~ 3,811.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -437.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,667.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 444.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.20%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.84%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "546183680" + }, + { + "type": "plain", + "text": " / Amount: 0.00962600 / Price: 31165.38000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 132,612.19 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43745900 BTC ~ 13,658.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12207200 BTC ~ 3,811.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -437.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,667.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 444.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.20%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.84%" + } + ] + }, + { + "id": 318, + "type": "message", + "date": "2021-07-19T14:35:07", + "date_unixtime": "1626698107", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "537371088" + }, + " / Amount: 0.00972200 / Price: 30856.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 132,912.18 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44684800 BTC ~ 13,777.86 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12240500 BTC ~ 3,774.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -656.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,522.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,667.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 445.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "537371088" + }, + { + "type": "plain", + "text": " / Amount: 0.00972200 / Price: 30856.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 132,912.18 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44684800 BTC ~ 13,777.86 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12240500 BTC ~ 3,774.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -656.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,522.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,667.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 445.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.12%" + } + ] + }, + { + "id": 319, + "type": "message", + "date": "2021-07-19T16:06:33", + "date_unixtime": "1626703593", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "537371306" + }, + " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 133,212.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45633100 BTC ~ 13,940.47 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12274200 BTC ~ 3,749.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -818.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.91 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,368.52 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 446.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "537371306" + }, + { + "type": "plain", + "text": " / Amount: 0.00982000 / Price: 30551.30000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 133,212.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45633100 BTC ~ 13,940.47 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12274200 BTC ~ 3,749.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -818.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.91 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,368.52 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 446.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 320, + "type": "message", + "date": "2021-07-20T04:31:51", + "date_unixtime": "1626748311", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "541939036" + }, + " / Amount: 0.00991800 / Price: 30248.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 133,512.21 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.46590900 BTC ~ 14,100.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12308200 BTC ~ 3,724.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -983.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.90 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,068.23 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 447.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "541939036" + }, + { + "type": "plain", + "text": " / Amount: 0.00991800 / Price: 30248.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 133,512.21 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.46590900 BTC ~ 14,100.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12308200 BTC ~ 3,724.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -983.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.90 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,068.23 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 447.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 321, + "type": "message", + "date": "2021-07-20T05:17:42", + "date_unixtime": "1626751062", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "542126859" + }, + " / Amount: 0.01001700 / Price: 29949.32000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 133,812.21 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.47558300 BTC ~ 14,178.92 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12342500 BTC ~ 3,679.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,249.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.90 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,767.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 448.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.52%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "542126859" + }, + { + "type": "plain", + "text": " / Amount: 0.01001700 / Price: 29949.32000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 133,812.21 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.47558300 BTC ~ 14,178.92 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12342500 BTC ~ 3,679.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,249.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.90 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,767.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 448.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.52%" + } + ] + }, + { + "id": 322, + "type": "message", + "date": "2021-07-20T05:19:01", + "date_unixtime": "1626751141", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "546873949" + }, + " / Amount: 0.01011700 / Price: 29652.79000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,112.21 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.48535300 BTC ~ 14,385.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12377200 BTC ~ 3,668.53 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,354.11 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,499.70 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,467.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 449.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "546873949" + }, + { + "type": "plain", + "text": " / Amount: 0.01011700 / Price: 29652.79000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,112.21 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.48535300 BTC ~ 14,385.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12377200 BTC ~ 3,668.53 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,354.11 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,499.70 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,467.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 449.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.09%" + } + ] + }, + { + "id": 323, + "type": "message", + "date": "2021-07-20T11:58:52", + "date_unixtime": "1626775132", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "548060220" + }, + " / Amount: 0.01021800 / Price: 29359.20000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 113,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.49522100 BTC ~ 14,547.81 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12412200 BTC ~ 3,646.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 936.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -1,514.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.90 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,167.27 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 381.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "548060220" + }, + { + "type": "plain", + "text": " / Amount: 0.01021800 / Price: 29359.20000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 113,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.49522100 BTC ~ 14,547.81 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12412200 BTC ~ 3,646.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 936.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -1,514.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.90 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,167.27 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 381.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%" + } + ] + }, + { + "id": 324, + "type": "message", + "date": "2021-07-21T06:17:17", + "date_unixtime": "1626841037", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "549473505" + }, + " / Amount: 0.00986400 / Price: 30533.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 114,067.38 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.48500300 BTC ~ 14,777.93 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 3,792.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 937.80 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -836.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,866.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 382.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.21%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "549473505" + }, + { + "type": "plain", + "text": " / Amount: 0.00986400 / Price: 30533.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 114,067.38 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.48500300 BTC ~ 14,777.93 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 3,792.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 937.80 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -836.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,866.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 382.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.21%" + } + ] + }, + { + "id": 325, + "type": "message", + "date": "2021-07-21T07:40:03", + "date_unixtime": "1626846003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "549001100" + }, + " / Amount: 0.00976700 / Price: 30838.90000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 114,367.38 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.47523600 BTC ~ 14,663.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 3,840.82 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 939.01 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -601.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.30 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,866.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 383.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "549001100" + }, + { + "type": "plain", + "text": " / Amount: 0.00976700 / Price: 30838.90000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 114,367.38 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.47523600 BTC ~ 14,663.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 3,840.82 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 939.01 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -601.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.30 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,866.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 383.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%" + } + ] + }, + { + "id": 326, + "type": "message", + "date": "2021-07-21T11:56:13", + "date_unixtime": "1626861373", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "548997093" + }, + " / Amount: 0.00967000 / Price: 31147.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 114,667.38 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.46556600 BTC ~ 14,513.13 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 3,880.30 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 940.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -411.19 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.50 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,866.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 384.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "548997093" + }, + { + "type": "plain", + "text": " / Amount: 0.00967000 / Price: 31147.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 114,667.38 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.46556600 BTC ~ 14,513.13 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 3,880.30 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 940.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -411.19 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.50 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,866.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 384.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 327, + "type": "message", + "date": "2021-07-21T11:57:37", + "date_unixtime": "1626861457", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "548921843" + }, + " / Amount: 0.00957500 / Price: 31458.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 114,967.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.45599100 BTC ~ 14,292.71 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 3,901.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 941.41 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -309.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.71 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,866.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 385.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.52%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.37%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "548921843" + }, + { + "type": "plain", + "text": " / Amount: 0.00957500 / Price: 31458.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 114,967.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.45599100 BTC ~ 14,292.71 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 3,901.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 941.41 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -309.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.71 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,866.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 385.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.52%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.37%" + } + ] + }, + { + "id": 328, + "type": "message", + "date": "2021-07-21T16:25:18", + "date_unixtime": "1626877518", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "548208093" + }, + " / Amount: 0.00109000 / Price: 31773.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 115,267.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.44651100 BTC ~ 14,180.56 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 3,953.18 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 942.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -68.45 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 3,893.84 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 386.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "548208093" + }, + { + "type": "plain", + "text": " / Amount: 0.00109000 / Price: 31773.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 115,267.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.44651100 BTC ~ 14,180.56 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 3,953.18 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 942.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -68.45 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 3,893.84 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 386.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%" + } + ] + }, + { + "id": 329, + "type": "message", + "date": "2021-07-21T18:18:20", + "date_unixtime": "1626884300", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "548059901" + }, + " / Amount: 0.00938500 / Price: 32091.08000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 115,567.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.43712600 BTC ~ 13,995.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 3,985.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 943.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 79.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,194.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 387.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.60%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.24%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "548059901" + }, + { + "type": "plain", + "text": " / Amount: 0.00938500 / Price: 32091.08000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 115,567.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.43712600 BTC ~ 13,995.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 3,985.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 943.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 79.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,194.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 387.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.60%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.24%" + } + ] + }, + { + "id": 330, + "type": "message", + "date": "2021-07-21T18:40:03", + "date_unixtime": "1626885603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "546873825" + }, + " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 115,867.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.42783300 BTC ~ 13,828.01 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,023.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 945.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 251.39 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,495.57 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 388.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.28%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "546873825" + }, + { + "type": "plain", + "text": " / Amount: 0.00929300 / Price: 32412.00000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 115,867.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.42783300 BTC ~ 13,828.01 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,023.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 945.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 251.39 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,495.57 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 388.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.28%" + } + ] + }, + { + "id": 331, + "type": "message", + "date": "2021-07-21T20:14:07", + "date_unixtime": "1626891247", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "542126572" + }, + " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 116,167.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.41863200 BTC ~ 13,712.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,077.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 946.19 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 490.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 4,796.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 389.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "542126572" + }, + { + "type": "plain", + "text": " / Amount: 0.00920100 / Price: 32736.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 116,167.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.41863200 BTC ~ 13,712.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,077.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 946.19 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 490.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 4,796.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 389.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%" + } + ] + }, + { + "id": 332, + "type": "message", + "date": "2021-07-24T00:38:04", + "date_unixtime": "1627079884", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "541938887" + }, + " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 116,467.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40952300 BTC ~ 13,531.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,112.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 947.38 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 647.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,097.32 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 390.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "541938887" + }, + { + "type": "plain", + "text": " / Amount: 0.00910900 / Price: 33063.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 116,467.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40952300 BTC ~ 13,531.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,112.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 947.38 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 647.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,097.32 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 390.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.07%" + } + ] + }, + { + "id": 333, + "type": "message", + "date": "2021-07-24T01:33:53", + "date_unixtime": "1627083233", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "537371247" + }, + " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 116,767.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.40050300 BTC ~ 13,386.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,160.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 948.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 850.40 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,398.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 391.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "537371247" + }, + { + "type": "plain", + "text": " / Amount: 0.00902000 / Price: 33394.11000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 116,767.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.40050300 BTC ~ 13,386.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,160.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 948.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 850.40 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,398.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 391.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.91%" + } + ] + }, + { + "id": 334, + "type": "message", + "date": "2021-07-24T02:01:10", + "date_unixtime": "1627084870", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "537370997" + }, + " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 117,067.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.39157300 BTC ~ 13,190.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,192.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 949.80 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 987.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 5,699.13 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 392.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "537370997" + }, + { + "type": "plain", + "text": " / Amount: 0.00893000 / Price: 33728.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 117,067.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.39157300 BTC ~ 13,190.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,192.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 949.80 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 987.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 5,699.13 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 392.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%" + } + ] + }, + { + "id": 335, + "type": "message", + "date": "2021-07-24T18:18:56", + "date_unixtime": "1627143536", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "537370720" + }, + " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 117,367.38 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.38273100 BTC ~ 13,025.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,236.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 951.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,168.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,000.04 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 393.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "537370720" + }, + { + "type": "plain", + "text": " / Amount: 0.00884200 / Price: 34065.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 117,367.38 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.38273100 BTC ~ 13,025.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,236.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 951.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,168.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,000.04 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 393.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.09%" + } + ] + }, + { + "id": 336, + "type": "message", + "date": "2021-07-24T18:30:32", + "date_unixtime": "1627144232", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "537362193" + }, + " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 117,667.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.37397700 BTC ~ 12,776.05 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,252.43 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 952.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,235.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,300.92 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 394.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.17%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.72%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "537362193" + }, + { + "type": "plain", + "text": " / Amount: 0.00875400 / Price: 34405.99000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 117,667.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.37397700 BTC ~ 12,776.05 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,252.43 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 952.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,235.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,300.92 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 394.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.17%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.72%" + } + ] + }, + { + "id": 337, + "type": "message", + "date": "2021-07-25T09:22:54", + "date_unixtime": "1627197774", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "529417153" + }, + " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 117,967.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.36531000 BTC ~ 12,691.23 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,324.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 953.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,524.20 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,601.82 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 395.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "529417153" + }, + { + "type": "plain", + "text": " / Amount: 0.00866700 / Price: 34750.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 117,967.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.36531000 BTC ~ 12,691.23 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,324.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 953.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,524.20 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,601.82 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 395.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.03%" + } + ] + }, + { + "id": 338, + "type": "message", + "date": "2021-07-26T01:39:53", + "date_unixtime": "1627256393", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "526528691" + }, + " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 118,267.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.35672800 BTC ~ 12,514.38 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,366.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 954.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,690.88 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 6,902.74 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 396.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "526528691" + }, + { + "type": "plain", + "text": " / Amount: 0.00858200 / Price: 35097.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 118,267.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.35672800 BTC ~ 12,514.38 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,366.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 954.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,690.88 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 6,902.74 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 396.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%" + } + ] + }, + { + "id": 339, + "type": "message", + "date": "2021-07-26T02:08:24", + "date_unixtime": "1627258104", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "524381441" + }, + " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 118,567.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.34823200 BTC ~ 12,323.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,404.93 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 955.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,839.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,203.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 397.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.17%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "524381441" + }, + { + "type": "plain", + "text": " / Amount: 0.00849600 / Price: 35448.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 118,567.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.34823200 BTC ~ 12,323.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,404.93 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 955.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,839.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,203.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 397.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.17%" + } + ] + }, + { + "id": 340, + "type": "message", + "date": "2021-07-26T02:13:41", + "date_unixtime": "1627258421", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "524224051" + }, + " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 118,867.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33982000 BTC ~ 12,143.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,448.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 956.96 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,004.22 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,504.50 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 398.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.19%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "524224051" + }, + { + "type": "plain", + "text": " / Amount: 0.00841200 / Price: 35803.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 118,867.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33982000 BTC ~ 12,143.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,448.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 956.96 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,004.22 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,504.50 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 398.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.19%" + } + ] + }, + { + "id": 341, + "type": "message", + "date": "2021-07-26T02:53:14", + "date_unixtime": "1627260794", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "516181122" + }, + " / Amount: 0.00000900 / Price: 36161.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 119,167.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.33149100 BTC ~ 11,974.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,496.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 958.14 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,183.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 7,805.41 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 399.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "516181122" + }, + { + "type": "plain", + "text": " / Amount: 0.00000900 / Price: 36161.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 119,167.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.33149100 BTC ~ 11,974.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,496.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 958.14 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,183.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 7,805.41 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 399.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 342, + "type": "message", + "date": "2021-07-26T02:58:28", + "date_unixtime": "1627261108", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "516069821" + }, + " / Amount: 0.00124600 / Price: 36522.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 119,467.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.32324400 BTC ~ 11,858.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,566.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 959.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,440.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,106.33 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 400.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.29%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.55%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "516069821" + }, + { + "type": "plain", + "text": " / Amount: 0.00124600 / Price: 36522.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 119,467.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.32324400 BTC ~ 11,858.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,566.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 959.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,440.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,106.33 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 400.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.29%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.55%" + } + ] + }, + { + "id": 343, + "type": "message", + "date": "2021-07-26T03:00:57", + "date_unixtime": "1627261257", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "495992920" + }, + " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 119,767.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.31507900 BTC ~ 11,797.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,660.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 960.53 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,774.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,708.10 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 401.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.21%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.49%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "495992920" + }, + { + "type": "plain", + "text": " / Amount: 0.00816500 / Price: 36887.88000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 119,767.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.31507900 BTC ~ 11,797.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,660.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 960.53 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,774.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,708.10 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 401.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.21%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.49%" + } + ] + }, + { + "id": 344, + "type": "message", + "date": "2021-07-26T03:01:05", + "date_unixtime": "1627261265", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "495978036" + }, + " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 120,067.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.30699500 BTC ~ 11,566.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,689.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 961.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,872.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,301.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 8,708.10 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 402.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.96%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +-0.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "495978036" + }, + { + "type": "plain", + "text": " / Amount: 0.00808400 / Price: 37256.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 120,067.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.30699500 BTC ~ 11,566.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,689.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 961.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,872.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,301.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 8,708.10 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 402.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.96%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +-0.12%" + } + ] + }, + { + "id": 345, + "type": "message", + "date": "2021-07-26T03:02:03", + "date_unixtime": "1627261323", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "495957653" + }, + " / Amount: 0.00765800 / Price: 37629.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,412.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 120,367.33 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29899100 BTC ~ 11,743.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,889.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 962.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,551.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,301.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 9,911.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 403.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -9.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +-0.31%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "495957653" + }, + { + "type": "plain", + "text": " / Amount: 0.00765800 / Price: 37629.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,412.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 120,367.33 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29899100 BTC ~ 11,743.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,889.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 962.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,551.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,301.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 9,911.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 403.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -9.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +-0.31%" + } + ] + }, + { + "id": 346, + "type": "message", + "date": "2021-07-26T03:08:37", + "date_unixtime": "1627261717", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "557853589" + }, + " / Amount: 0.00641900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 134,712.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 121,867.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26803100 BTC ~ 10,255.31 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12447600 BTC ~ 4,762.66 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 968.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,142.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,513.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 451.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 408.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "557853589" + }, + { + "type": "plain", + "text": " / Amount: 0.00641900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 134,712.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 121,867.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26803100 BTC ~ 10,255.31 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12447600 BTC ~ 4,762.66 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 968.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,142.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,513.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 451.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 408.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.40%" + } + ] + }, + { + "id": 347, + "type": "message", + "date": "2021-07-26T03:17:25", + "date_unixtime": "1627262245", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "557852874" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,012.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 121,867.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27572600 BTC ~ 10,397.45 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12474900 BTC ~ 4,704.20 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 968.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,925.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,699.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,513.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 408.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.28%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "557852874" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,012.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 121,867.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27572600 BTC ~ 10,397.45 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12474900 BTC ~ 4,704.20 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 968.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,925.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,699.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,513.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 408.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.28%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.88%" + } + ] + }, + { + "id": 348, + "type": "message", + "date": "2021-07-26T08:25:35", + "date_unixtime": "1627280735", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "557896356" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,012.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 122,167.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,473.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12502500 BTC ~ 4,890.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 970.11 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,488.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,701.19 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,513.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 409.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.72%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "557896356" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,012.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 122,167.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,473.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12502500 BTC ~ 4,890.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 970.11 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,488.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,701.19 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,513.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 409.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.72%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 349, + "type": "message", + "date": "2021-07-26T20:10:14", + "date_unixtime": "1627323014", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "557870451" + }, + " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,012.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 122,467.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 10,245.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12502500 BTC ~ 4,923.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 971.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,595.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,992.38 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,523.58 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 410.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.42%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.42%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "557870451" + }, + { + "type": "plain", + "text": " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,012.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 122,467.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 10,245.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12502500 BTC ~ 4,923.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 971.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,595.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,992.38 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,523.58 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 410.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.42%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.42%" + } + ] + }, + { + "id": 350, + "type": "message", + "date": "2021-07-26T20:49:12", + "date_unixtime": "1627325352", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "493245872" + }, + " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,012.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 122,767.34 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,082.22 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12502500 BTC ~ 4,990.20 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 972.53 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,800.10 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.89 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 411.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "493245872" + }, + { + "type": "plain", + "text": " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,012.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 122,767.34 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,082.22 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12502500 BTC ~ 4,990.20 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 972.53 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,800.10 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.89 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 411.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.08%" + } + ] + }, + { + "id": 351, + "type": "message", + "date": "2021-07-26T21:10:27", + "date_unixtime": "1627326627", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "493107832" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,012.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,848.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12502500 BTC ~ 5,022.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,899.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.48%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.43%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "493107832" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,012.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,848.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12502500 BTC ~ 5,022.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,899.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.48%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.43%" + } + ] + }, + { + "id": 352, + "type": "message", + "date": "2021-07-26T22:01:54", + "date_unixtime": "1627329714", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "559474793" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,312.22 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25286900 BTC ~ 9,819.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12502500 BTC ~ 4,854.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,402.87 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 453.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.21%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "559474793" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,312.22 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25286900 BTC ~ 9,819.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12502500 BTC ~ 4,854.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,402.87 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 453.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.21%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%" + } + ] + }, + { + "id": 353, + "type": "message", + "date": "2021-07-26T22:03:45", + "date_unixtime": "1627329825", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "559431995" + }, + " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,612.22 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26041200 BTC ~ 10,048.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12529300 BTC ~ 4,834.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,312.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,699.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 454.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.48%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.55%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "559431995" + }, + { + "type": "plain", + "text": " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,612.22 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26041200 BTC ~ 10,048.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12529300 BTC ~ 4,834.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,312.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,699.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 454.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.48%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.55%" + } + ] + }, + { + "id": 354, + "type": "message", + "date": "2021-07-26T22:26:35", + "date_unixtime": "1627331195", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "559362899" + }, + " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 135,912.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26803100 BTC ~ 10,194.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12556300 BTC ~ 4,775.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,098.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,399.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 455.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "559362899" + }, + { + "type": "plain", + "text": " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 135,912.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26803100 BTC ~ 10,194.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12556300 BTC ~ 4,775.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,098.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,399.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 455.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%" + } + ] + }, + { + "id": 355, + "type": "message", + "date": "2021-07-26T22:28:59", + "date_unixtime": "1627331339", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "558405308" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 136,212.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27572600 BTC ~ 10,412.33 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12583600 BTC ~ 4,751.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,993.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,100.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 456.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.40%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.73%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "558405308" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 136,212.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27572600 BTC ~ 10,412.33 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12583600 BTC ~ 4,751.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,993.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,100.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 456.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.40%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.73%" + } + ] + }, + { + "id": 356, + "type": "message", + "date": "2021-07-26T23:36:01", + "date_unixtime": "1627335361", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "557849533" + }, + " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 136,512.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28349800 BTC ~ 10,542.41 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12611200 BTC ~ 4,689.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,760.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,800.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 457.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "557849533" + }, + { + "type": "plain", + "text": " / Amount: 0.00804800 / Price: 37278.40000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 136,512.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28349800 BTC ~ 10,542.41 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12611200 BTC ~ 4,689.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,760.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,800.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 457.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.30%" + } + ] + }, + { + "id": 357, + "type": "message", + "date": "2021-07-26T23:39:43", + "date_unixtime": "1627335583", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "559587467" + }, + " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 136,812.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29134700 BTC ~ 10,762.92 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12639100 BTC ~ 4,669.13 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,660.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,500.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,117.79 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 458.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.11%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "559587467" + }, + { + "type": "plain", + "text": " / Amount: 0.00812800 / Price: 36909.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 136,812.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29134700 BTC ~ 10,762.92 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12639100 BTC ~ 4,669.13 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,660.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,500.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,117.79 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 458.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.11%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.95%" + } + ] + }, + { + "id": 358, + "type": "message", + "date": "2021-07-27T04:51:58", + "date_unixtime": "1627354318", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "559593957" + }, + " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,067.36 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29927500 BTC ~ 10,975.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12667200 BTC ~ 4,645.31 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 973.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 2,549.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,796.59 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 412.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.36%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.67%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "559593957" + }, + { + "type": "plain", + "text": " / Amount: 0.00820900 / Price: 36543.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,067.36 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29927500 BTC ~ 10,975.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12667200 BTC ~ 4,645.31 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 973.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 2,549.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,796.59 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 412.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.36%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.67%" + } + ] + }, + { + "id": 359, + "type": "message", + "date": "2021-07-27T13:51:20", + "date_unixtime": "1627386680", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "560363270" + }, + " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,367.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.29106600 BTC ~ 11,061.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 4,824.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 974.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,116.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,496.30 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 413.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "560363270" + }, + { + "type": "plain", + "text": " / Amount: 0.00792500 / Price: 38005.62000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,367.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.29106600 BTC ~ 11,061.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 4,824.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 974.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,116.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,496.30 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 413.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 360, + "type": "message", + "date": "2021-07-27T14:40:22", + "date_unixtime": "1627389622", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "559835783" + }, + " / Amount: 0.00784700 / Price: 38385.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,667.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.28321900 BTC ~ 10,854.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 4,865.55 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 976.14 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,251.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,496.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 414.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.16%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "559835783" + }, + { + "type": "plain", + "text": " / Amount: 0.00784700 / Price: 38385.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,667.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.28321900 BTC ~ 10,854.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 4,865.55 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 976.14 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,251.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,496.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 414.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.16%" + } + ] + }, + { + "id": 361, + "type": "message", + "date": "2021-07-27T15:40:20", + "date_unixtime": "1627393220", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "559828131" + }, + " / Amount: 0.00462300 / Price: 38769.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 123,967.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27545000 BTC ~ 10,669.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 4,917.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 977.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,420.06 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.57 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,496.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 415.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "559828131" + }, + { + "type": "plain", + "text": " / Amount: 0.00462300 / Price: 38769.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 123,967.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27545000 BTC ~ 10,669.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 4,917.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 977.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,420.06 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.57 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,496.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 415.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.09%" + } + ] + }, + { + "id": 362, + "type": "message", + "date": "2021-07-28T00:46:29", + "date_unixtime": "1627425989", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "559669481" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 124,267.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,490.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 4,973.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 978.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,598.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,725.75 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,496.29 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 416.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "559669481" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 124,267.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,490.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 4,973.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 978.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,598.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,725.75 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,496.29 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 416.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%" + } + ] + }, + { + "id": 363, + "type": "message", + "date": "2021-07-28T02:03:58", + "date_unixtime": "1627430638", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "559662164" + }, + " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 124,567.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 10,247.35 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 5,000.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 979.72 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,683.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,523.20 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 417.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.43%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "559662164" + }, + { + "type": "plain", + "text": " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 124,567.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 10,247.35 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 5,000.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 979.72 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,683.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,523.20 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 417.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.43%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.40%" + } + ] + }, + { + "id": 364, + "type": "message", + "date": "2021-07-28T04:10:15", + "date_unixtime": "1627438215", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "559593905" + }, + " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 124,867.38 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,090.33 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 5,071.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 980.94 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,897.76 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,824.12 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 418.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "559593905" + }, + { + "type": "plain", + "text": " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 124,867.38 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,090.33 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 5,071.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 980.94 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,897.76 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,824.12 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 418.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%" + } + ] + }, + { + "id": 365, + "type": "message", + "date": "2021-07-28T12:56:57", + "date_unixtime": "1627469817", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "559587308" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,167.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,877.91 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 5,115.79 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 982.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,030.98 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,125.03 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 419.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.72%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "559587308" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,167.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,877.91 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 5,115.79 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 982.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,030.98 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,125.03 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 419.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.72%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%" + } + ] + }, + { + "id": 366, + "type": "message", + "date": "2021-07-28T13:31:46", + "date_unixtime": "1627471906", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "492890019" + }, + " / Amount: 0.00077800 / Price: 40747.17000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,112.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,467.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23774300 BTC ~ 9,696.04 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 5,177.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 983.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,212.26 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,425.92 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 459.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 420.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "492890019" + }, + { + "type": "plain", + "text": " / Amount: 0.00077800 / Price: 40747.17000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,112.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,467.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23774300 BTC ~ 9,696.04 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 5,177.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 983.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,212.26 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,425.92 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 459.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 420.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.91%" + } + ] + }, + { + "id": 367, + "type": "message", + "date": "2021-07-28T19:38:17", + "date_unixtime": "1627493897", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "563013969" + }, + " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,412.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,467.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24540000 BTC ~ 9,636.47 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12695600 BTC ~ 4,985.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 983.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,660.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 460.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 420.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.26%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.80%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "563013969" + }, + { + "type": "plain", + "text": " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,412.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,467.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24540000 BTC ~ 9,636.47 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12695600 BTC ~ 4,985.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 983.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,660.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 460.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 420.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.26%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.80%" + } + ] + }, + { + "id": 368, + "type": "message", + "date": "2021-07-28T20:00:25", + "date_unixtime": "1627495225", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "562963048" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,712.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,467.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25286900 BTC ~ 9,831.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12722100 BTC ~ 4,946.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 983.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,516.35 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 461.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 420.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.26%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.80%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "562963048" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,712.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,467.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25286900 BTC ~ 9,831.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12722100 BTC ~ 4,946.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 983.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,516.35 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 461.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 420.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.26%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.80%" + } + ] + }, + { + "id": 369, + "type": "message", + "date": "2021-07-28T20:43:37", + "date_unixtime": "1627497817", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "563614339" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 137,712.25 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,767.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,877.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12748900 BTC ~ 5,136.90 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 984.51 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,053.78 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,691.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 461.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 421.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "563614339" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 137,712.25 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,767.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,877.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12748900 BTC ~ 5,136.90 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 984.51 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,053.78 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,691.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 461.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 421.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%" + } + ] + }, + { + "id": 370, + "type": "message", + "date": "2021-07-30T10:51:34", + "date_unixtime": "1627635094", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "563695142" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,012.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,767.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25286900 BTC ~ 9,775.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12748900 BTC ~ 4,928.63 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 984.51 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,444.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,692.55 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 462.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 421.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "563695142" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,012.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,767.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25286900 BTC ~ 9,775.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12748900 BTC ~ 4,928.63 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 984.51 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,444.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,692.55 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 462.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 421.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.40%" + } + ] + }, + { + "id": 371, + "type": "message", + "date": "2021-07-30T10:52:56", + "date_unixtime": "1627635176", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "562254146" + }, + " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 125,767.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26041200 BTC ~ 10,051.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12775700 BTC ~ 4,931.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 984.51 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,422.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.55 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 421.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.48%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.52%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "562254146" + }, + { + "type": "plain", + "text": " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 125,767.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26041200 BTC ~ 10,051.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12775700 BTC ~ 4,931.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 984.51 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,422.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.55 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 421.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.48%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.52%" + } + ] + }, + { + "id": 372, + "type": "message", + "date": "2021-07-30T22:00:21", + "date_unixtime": "1627675221", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "566492600" + }, + " / Amount: 0.00052900 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 126,067.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,049.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,093.46 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 985.73 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,883.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,393.78 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 422.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.46%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.41%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "566492600" + }, + { + "type": "plain", + "text": " / Amount: 0.00052900 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 126,067.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,049.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,093.46 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 985.73 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,883.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,393.78 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 422.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.46%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.41%" + } + ] + }, + { + "id": 373, + "type": "message", + "date": "2021-07-30T22:48:19", + "date_unixtime": "1627678099", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "566487382" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 126,367.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,903.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,172.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 986.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,118.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,694.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 423.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.86%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "566487382" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 126,367.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,903.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,172.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 986.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,118.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,694.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 423.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.86%" + } + ] + }, + { + "id": 374, + "type": "message", + "date": "2021-07-30T22:50:13", + "date_unixtime": "1627678213", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "563560700" + }, + " / Amount: 0.00739200 / Price: 40747.17000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 126,667.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23774300 BTC ~ 9,698.75 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,222.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 988.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,264.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,996.16 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,435.91 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 424.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "563560700" + }, + { + "type": "plain", + "text": " / Amount: 0.00739200 / Price: 40747.17000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 126,667.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23774300 BTC ~ 9,698.75 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,222.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 988.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,264.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,996.16 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,435.91 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 424.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.88%" + } + ] + }, + { + "id": 375, + "type": "message", + "date": "2021-07-30T22:51:31", + "date_unixtime": "1627678291", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "492191546" + }, + " / Amount: 0.00731900 / Price: 41154.64000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 126,967.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23042400 BTC ~ 9,521.30 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,290.18 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 989.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,455.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,733.02 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 425.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.21%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.59%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "492191546" + }, + { + "type": "plain", + "text": " / Amount: 0.00731900 / Price: 41154.64000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 126,967.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23042400 BTC ~ 9,521.30 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,290.18 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 989.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,455.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,733.02 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 425.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.21%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.59%" + } + ] + }, + { + "id": 376, + "type": "message", + "date": "2021-07-30T22:52:25", + "date_unixtime": "1627678345", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "454353512" + }, + " / Amount: 0.00724600 / Price: 41566.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,267.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.22317800 BTC ~ 9,185.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,269.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 990.53 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,400.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,033.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 426.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -3.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "454353512" + }, + { + "type": "plain", + "text": " / Amount: 0.00724600 / Price: 41566.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,267.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.22317800 BTC ~ 9,185.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,269.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 990.53 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,400.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,033.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 426.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -3.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.00%" + } + ] + }, + { + "id": 377, + "type": "message", + "date": "2021-07-31T01:45:34", + "date_unixtime": "1627688734", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "453570399" + }, + " / Amount: 0.00717500 / Price: 41981.85000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,567.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.21600300 BTC ~ 9,045.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,361.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 991.74 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,654.21 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,334.87 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 427.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.69%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.25%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "453570399" + }, + { + "type": "plain", + "text": " / Amount: 0.00717500 / Price: 41981.85000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,567.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.21600300 BTC ~ 9,045.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,361.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 991.74 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,654.21 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,334.87 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 427.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.69%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.25%" + } + ] + }, + { + "id": 378, + "type": "message", + "date": "2021-07-31T02:00:47", + "date_unixtime": "1627689647", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "452857271" + }, + " / Amount: 0.00710300 / Price: 42401.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,312.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.20890000 BTC ~ 8,827.31 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,409.93 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,785.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,635.76 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 463.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.58%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.35%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "452857271" + }, + { + "type": "plain", + "text": " / Amount: 0.00710300 / Price: 42401.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,312.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.20890000 BTC ~ 8,827.31 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,409.93 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,785.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,635.76 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 463.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.58%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.35%" + } + ] + }, + { + "id": 379, + "type": "message", + "date": "2021-08-01T18:25:19", + "date_unixtime": "1627835119", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "567645268" + }, + " / Amount: 0.00735800 / Price: 40770.83000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,612.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.21625800 BTC ~ 8,824.52 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12802700 BTC ~ 5,224.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,296.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,645.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 464.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "567645268" + }, + { + "type": "plain", + "text": " / Amount: 0.00735800 / Price: 40770.83000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,612.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.21625800 BTC ~ 8,824.52 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12802700 BTC ~ 5,224.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,296.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,645.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 464.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.95%" + } + ] + }, + { + "id": 380, + "type": "message", + "date": "2021-08-02T00:31:02", + "date_unixtime": "1627857062", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "567603174" + }, + " / Amount: 0.00743200 / Price: 40367.16000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 138,912.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.22343500 BTC ~ 8,990.01 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12828200 BTC ~ 5,161.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,099.57 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.01 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,645.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 465.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.38%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "567603174" + }, + { + "type": "plain", + "text": " / Amount: 0.00743200 / Price: 40367.16000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 138,912.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.22343500 BTC ~ 8,990.01 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12828200 BTC ~ 5,161.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,099.57 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.01 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,645.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 465.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.38%" + } + ] + }, + { + "id": 381, + "type": "message", + "date": "2021-08-02T01:26:14", + "date_unixtime": "1627860374", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "567309741" + }, + " / Amount: 0.00750600 / Price: 39967.49000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 139,212.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23068400 BTC ~ 9,182.10 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12853900 BTC ~ 5,116.34 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,946.52 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,645.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 466.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.64%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.47%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "567309741" + }, + { + "type": "plain", + "text": " / Amount: 0.00750600 / Price: 39967.49000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 139,212.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23068400 BTC ~ 9,182.10 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12853900 BTC ~ 5,116.34 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,946.52 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,645.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 466.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.64%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.47%" + } + ] + }, + { + "id": 382, + "type": "message", + "date": "2021-08-02T01:28:41", + "date_unixtime": "1627860521", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "567306154" + }, + " / Amount: 0.00758100 / Price: 39571.77000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 139,512.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23800500 BTC ~ 9,417.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12879900 BTC ~ 5,096.33 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,861.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,645.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 467.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "567306154" + }, + { + "type": "plain", + "text": " / Amount: 0.00758100 / Price: 39571.77000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 139,512.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23800500 BTC ~ 9,417.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12879900 BTC ~ 5,096.33 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,861.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,645.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 467.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%" + } + ] + }, + { + "id": 383, + "type": "message", + "date": "2021-08-02T14:13:07", + "date_unixtime": "1627906387", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "567302202" + }, + " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 139,812.27 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24540000 BTC ~ 9,598.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12906100 BTC ~ 5,047.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,693.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,790.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,645.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 468.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.22%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "567302202" + }, + { + "type": "plain", + "text": " / Amount: 0.00765700 / Price: 39179.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 139,812.27 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24540000 BTC ~ 9,598.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12906100 BTC ~ 5,047.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,693.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,790.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,645.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 468.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.22%" + } + ] + }, + { + "id": 384, + "type": "message", + "date": "2021-08-02T22:07:24", + "date_unixtime": "1627934844", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "570110703" + }, + " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 140,112.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25286900 BTC ~ 9,809.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12932600 BTC ~ 5,016.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,573.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,511.61 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,624.56 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 469.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "570110703" + }, + { + "type": "plain", + "text": " / Amount: 0.00773400 / Price: 38792.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 140,112.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25286900 BTC ~ 9,809.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12932600 BTC ~ 5,016.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,573.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,511.61 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,624.56 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 469.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.04%" + } + ] + }, + { + "id": 385, + "type": "message", + "date": "2021-08-03T06:56:23", + "date_unixtime": "1627966583", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "570581950" + }, + " / Amount: 0.00006600 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 140,412.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26041200 BTC ~ 10,006.21 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12959400 BTC ~ 4,979.59 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,433.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.95 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,314.95 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 470.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.05%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "570581950" + }, + { + "type": "plain", + "text": " / Amount: 0.00006600 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 140,412.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26041200 BTC ~ 10,006.21 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12959400 BTC ~ 4,979.59 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,433.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.95 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,314.95 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 470.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.05%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.99%" + } + ] + }, + { + "id": 386, + "type": "message", + "date": "2021-08-03T07:02:21", + "date_unixtime": "1627966941", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "570667573" + }, + " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 140,712.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26803100 BTC ~ 10,204.76 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.12986400 BTC ~ 4,944.32 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,297.15 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,014.71 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 471.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "570667573" + }, + { + "type": "plain", + "text": " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 140,712.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26803100 BTC ~ 10,204.76 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.12986400 BTC ~ 4,944.32 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,297.15 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,014.71 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 471.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.91%" + } + ] + }, + { + "id": 387, + "type": "message", + "date": "2021-08-04T10:41:55", + "date_unixtime": "1628066515", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "570674401" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,012.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 127,867.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27572600 BTC ~ 10,381.14 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13013700 BTC ~ 4,899.69 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 992.93 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,128.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,714.47 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 472.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 428.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.04%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "570674401" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,012.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 127,867.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27572600 BTC ~ 10,381.14 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13013700 BTC ~ 4,899.69 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 992.93 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,128.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,714.47 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 472.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 428.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.04%" + } + ] + }, + { + "id": 388, + "type": "message", + "date": "2021-08-04T15:26:56", + "date_unixtime": "1628083616", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "574808886" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,012.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 128,167.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,455.64 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13041300 BTC ~ 5,092.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 994.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,697.38 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.16 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 472.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 429.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.28%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "574808886" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,012.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 128,167.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,455.64 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13041300 BTC ~ 5,092.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 994.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,697.38 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.16 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 472.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 429.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.28%" + } + ] + }, + { + "id": 389, + "type": "message", + "date": "2021-08-04T18:13:48", + "date_unixtime": "1628093628", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "572845559" + }, + " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,012.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 128,467.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 10,269.60 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13041300 BTC ~ 5,148.30 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 995.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,868.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 472.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 430.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.18%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "572845559" + }, + { + "type": "plain", + "text": " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,012.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 128,467.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 10,269.60 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13041300 BTC ~ 5,148.30 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 995.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,868.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 472.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 430.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.18%" + } + ] + }, + { + "id": 390, + "type": "message", + "date": "2021-08-04T23:15:43", + "date_unixtime": "1628111743", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "572831172" + }, + " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,012.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 128,767.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,092.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13041300 BTC ~ 5,210.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 996.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,054.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.55 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 472.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 431.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.97%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "572831172" + }, + { + "type": "plain", + "text": " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,012.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 128,767.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,092.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13041300 BTC ~ 5,210.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 996.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,054.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.55 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 472.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 431.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.97%" + } + ] + }, + { + "id": 391, + "type": "message", + "date": "2021-08-05T10:55:15", + "date_unixtime": "1628153715", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "575674586" + }, + " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,312.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 128,767.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26041200 BTC ~ 10,025.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13041300 BTC ~ 5,020.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 996.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,497.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.53 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 473.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 431.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.24%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.79%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "575674586" + }, + { + "type": "plain", + "text": " / Amount: 0.00781100 / Price: 38407.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,312.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 128,767.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26041200 BTC ~ 10,025.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13041300 BTC ~ 5,020.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 996.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,497.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.53 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 473.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 431.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.24%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.79%" + } + ] + }, + { + "id": 392, + "type": "message", + "date": "2021-08-05T11:27:09", + "date_unixtime": "1628155629", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "575342679" + }, + " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,612.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 128,767.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26803100 BTC ~ 10,224.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13068300 BTC ~ 4,985.34 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 996.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,361.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,124.55 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 474.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 431.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.34%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.71%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "575342679" + }, + { + "type": "plain", + "text": " / Amount: 0.00788900 / Price: 38027.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,612.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 128,767.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26803100 BTC ~ 10,224.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13068300 BTC ~ 4,985.34 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 996.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,361.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,124.55 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 474.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 431.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.34%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.71%" + } + ] + }, + { + "id": 393, + "type": "message", + "date": "2021-08-05T14:45:24", + "date_unixtime": "1628167524", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "575129813" + }, + " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 128,767.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.27572600 BTC ~ 10,371.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13095600 BTC ~ 4,925.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 996.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,148.67 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,824.56 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 431.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.14%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "575129813" + }, + { + "type": "plain", + "text": " / Amount: 0.00796800 / Price: 37651.18000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 128,767.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.27572600 BTC ~ 10,371.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13095600 BTC ~ 4,925.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 996.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,148.67 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,824.56 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 431.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.14%" + } + ] + }, + { + "id": 394, + "type": "message", + "date": "2021-08-05T17:11:20", + "date_unixtime": "1628176280", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "576807890" + }, + " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 129,067.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26775800 BTC ~ 10,499.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,145.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 997.73 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,797.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,825.77 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 432.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.98%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.86%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "576807890" + }, + { + "type": "plain", + "text": " / Amount: 0.00769200 / Price: 39157.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 129,067.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26775800 BTC ~ 10,499.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,145.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 997.73 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,797.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,825.77 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 432.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.98%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.86%" + } + ] + }, + { + "id": 395, + "type": "message", + "date": "2021-08-05T18:51:26", + "date_unixtime": "1628182286", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "576545168" + }, + " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 129,367.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.26014200 BTC ~ 10,296.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,194.41 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 998.94 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 3,945.38 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,126.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 433.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "576545168" + }, + { + "type": "plain", + "text": " / Amount: 0.00761600 / Price: 39548.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 129,367.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.26014200 BTC ~ 10,296.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,194.41 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 998.94 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 3,945.38 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,126.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 433.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 396, + "type": "message", + "date": "2021-08-05T19:14:54", + "date_unixtime": "1628183694", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "576491262" + }, + " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 129,667.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.25260100 BTC ~ 10,097.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,245.99 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,000.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,098.98 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,428.16 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 434.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "576491262" + }, + { + "type": "plain", + "text": " / Amount: 0.00754100 / Price: 39944.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 129,667.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.25260100 BTC ~ 10,097.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,245.99 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,000.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,098.98 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,428.16 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 434.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%" + } + ] + }, + { + "id": 397, + "type": "message", + "date": "2021-08-05T19:21:26", + "date_unixtime": "1628184086", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "572152161" + }, + " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 129,967.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.24513500 BTC ~ 9,877.48 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,287.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,001.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,221.85 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,729.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,414.24 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 435.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "572152161" + }, + { + "type": "plain", + "text": " / Amount: 0.00746600 / Price: 40343.73000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 129,967.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.24513500 BTC ~ 9,877.48 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,287.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,001.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,221.85 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,729.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,414.24 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 435.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%" + } + ] + }, + { + "id": 398, + "type": "message", + "date": "2021-08-05T19:59:19", + "date_unixtime": "1628186359", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "571604706" + }, + " / Amount: 0.00739200 / Price: 40747.17000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 130,267.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23774300 BTC ~ 9,679.82 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,343.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,002.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,380.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,444.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 436.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "571604706" + }, + { + "type": "plain", + "text": " / Amount: 0.00739200 / Price: 40747.17000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 130,267.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23774300 BTC ~ 9,679.82 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,343.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,002.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,380.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,444.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 436.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.08%" + } + ] + }, + { + "id": 399, + "type": "message", + "date": "2021-08-05T21:08:43", + "date_unixtime": "1628190523", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "570674274" + }, + " / Amount: 0.00731900 / Price: 41154.64000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 130,567.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.23042400 BTC ~ 9,483.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,401.08 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,003.76 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,543.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,745.70 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 437.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "570674274" + }, + { + "type": "plain", + "text": " / Amount: 0.00731900 / Price: 41154.64000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 130,567.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.23042400 BTC ~ 9,483.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,401.08 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,003.76 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,543.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,745.70 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 437.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%" + } + ] + }, + { + "id": 400, + "type": "message", + "date": "2021-08-06T17:19:53", + "date_unixtime": "1628263193", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "570667331" + }, + " / Amount: 0.00724600 / Price: 41566.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 130,867.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.22317800 BTC ~ 9,277.46 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,455.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,004.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,692.84 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,046.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 438.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "570667331" + }, + { + "type": "plain", + "text": " / Amount: 0.00724600 / Price: 41566.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 130,867.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.22317800 BTC ~ 9,277.46 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,455.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,004.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,692.84 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,046.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 438.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%" + } + ] + }, + { + "id": 401, + "type": "message", + "date": "2021-08-06T17:58:59", + "date_unixtime": "1628265539", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "570581827" + }, + " / Amount: 0.00717500 / Price: 41981.85000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 131,167.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.21600300 BTC ~ 9,135.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,550.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,006.16 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,946.97 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,347.58 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 439.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.26%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "570581827" + }, + { + "type": "plain", + "text": " / Amount: 0.00717500 / Price: 41981.85000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 131,167.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.21600300 BTC ~ 9,135.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,550.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,006.16 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,946.97 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,347.58 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 439.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.26%" + } + ] + }, + { + "id": 402, + "type": "message", + "date": "2021-08-06T17:59:50", + "date_unixtime": "1628265590", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "570110436" + }, + " / Amount: 0.00710300 / Price: 42401.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 131,467.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.20890000 BTC ~ 8,800.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,528.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,007.35 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 4,891.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,648.48 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 440.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.28%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.66%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "570110436" + }, + { + "type": "plain", + "text": " / Amount: 0.00710300 / Price: 42401.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 131,467.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.20890000 BTC ~ 8,800.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,528.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,007.35 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 4,891.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,648.48 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 440.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.28%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.66%" + } + ] + }, + { + "id": 403, + "type": "message", + "date": "2021-08-06T18:04:04", + "date_unixtime": "1628265844", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "449691276" + }, + " / Amount: 0.00703300 / Price: 42825.68000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 131,767.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.20186700 BTC ~ 8,641.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,617.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,008.56 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,122.38 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,949.42 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 441.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "449691276" + }, + { + "type": "plain", + "text": " / Amount: 0.00703300 / Price: 42825.68000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 131,767.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.20186700 BTC ~ 8,641.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,617.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,008.56 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,122.38 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,949.42 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 441.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%" + } + ] + }, + { + "id": 404, + "type": "message", + "date": "2021-08-06T18:10:35", + "date_unixtime": "1628266235", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "449660342" + }, + " / Amount: 0.00416800 / Price: 43253.94000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 132,067.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.19490400 BTC ~ 8,405.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,659.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,009.74 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,230.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,250.34 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 442.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "449660342" + }, + { + "type": "plain", + "text": " / Amount: 0.00416800 / Price: 43253.94000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 132,067.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.19490400 BTC ~ 8,405.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,659.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,009.74 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,230.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,250.34 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 442.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.30%" + } + ] + }, + { + "id": 405, + "type": "message", + "date": "2021-08-07T05:47:56", + "date_unixtime": "1628308076", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "449652083" + }, + " / Amount: 0.00163200 / Price: 43686.48000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 132,367.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.18800900 BTC ~ 8,204.84 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,727.06 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,010.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,397.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,551.31 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 443.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "449652083" + }, + { + "type": "plain", + "text": " / Amount: 0.00163200 / Price: 43686.48000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 132,367.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.18800900 BTC ~ 8,204.84 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,727.06 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,010.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,397.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,551.31 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 443.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%" + } + ] + }, + { + "id": 406, + "type": "message", + "date": "2021-08-07T14:06:34", + "date_unixtime": "1628337994", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "449193685" + }, + " / Amount: 0.00682600 / Price: 44123.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 132,667.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.18118300 BTC ~ 7,990.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,787.73 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,012.14 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,545.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,852.30 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 444.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "449193685" + }, + { + "type": "plain", + "text": " / Amount: 0.00682600 / Price: 44123.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 132,667.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.18118300 BTC ~ 7,990.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,787.73 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,012.14 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,545.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,852.30 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 444.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%" + } + ] + }, + { + "id": 407, + "type": "message", + "date": "2021-08-07T14:26:23", + "date_unixtime": "1628339183", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "448823325" + }, + " / Amount: 0.00298700 / Price: 44564.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 141,912.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 132,967.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17442400 BTC ~ 7,754.35 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,834.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,013.36 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,657.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,153.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 475.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 445.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.24%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "448823325" + }, + { + "type": "plain", + "text": " / Amount: 0.00298700 / Price: 44564.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 141,912.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 132,967.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17442400 BTC ~ 7,754.35 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,834.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,013.36 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,657.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,153.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 475.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 445.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.24%" + } + ] + }, + { + "id": 408, + "type": "message", + "date": "2021-08-07T18:04:50", + "date_unixtime": "1628352290", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "580864053" + }, + " / Amount: 0.00700100 / Price: 42850.55000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,212.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 132,967.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.18142500 BTC ~ 7,772.85 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13123200 BTC ~ 5,622.41 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,013.36 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,163.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,153.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 476.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 445.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "580864053" + }, + { + "type": "plain", + "text": " / Amount: 0.00700100 / Price: 42850.55000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,212.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 132,967.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.18142500 BTC ~ 7,772.85 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13123200 BTC ~ 5,622.41 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,013.36 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,163.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,153.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 476.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 445.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%" + } + ] + }, + { + "id": 409, + "type": "message", + "date": "2021-08-08T01:52:08", + "date_unixtime": "1628380328", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "581190936" + }, + " / Amount: 0.00675900 / Price: 44564.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,212.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 133,267.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17442400 BTC ~ 7,770.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13147400 BTC ~ 5,857.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,014.57 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,697.95 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,163.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 476.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 446.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "581190936" + }, + { + "type": "plain", + "text": " / Amount: 0.00675900 / Price: 44564.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,212.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 133,267.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17442400 BTC ~ 7,770.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13147400 BTC ~ 5,857.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,014.57 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,697.95 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,163.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 476.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 446.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.03%" + } + ] + }, + { + "id": 410, + "type": "message", + "date": "2021-08-08T08:06:28", + "date_unixtime": "1628402788", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "448768546" + }, + " / Amount: 0.00669200 / Price: 45010.22000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,212.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 133,567.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16773200 BTC ~ 7,527.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13147400 BTC ~ 5,899.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,015.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,797.87 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,455.47 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 476.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 447.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.52%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "448768546" + }, + { + "type": "plain", + "text": " / Amount: 0.00669200 / Price: 45010.22000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,212.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 133,567.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16773200 BTC ~ 7,527.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13147400 BTC ~ 5,899.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,015.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,797.87 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,455.47 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 476.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 447.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.52%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.30%" + } + ] + }, + { + "id": 411, + "type": "message", + "date": "2021-08-09T02:14:17", + "date_unixtime": "1628468057", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "582366605" + }, + " / Amount: 0.00693200 / Price: 43279.06000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,512.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 133,567.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17466400 BTC ~ 7,582.26 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13147400 BTC ~ 5,707.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,015.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,360.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,455.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 477.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 447.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.35%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.72%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "582366605" + }, + { + "type": "plain", + "text": " / Amount: 0.00693200 / Price: 43279.06000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,512.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 133,567.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17466400 BTC ~ 7,582.26 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13147400 BTC ~ 5,707.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,015.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,360.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,455.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 477.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 447.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.35%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.72%" + } + ] + }, + { + "id": 412, + "type": "message", + "date": "2021-08-09T03:14:12", + "date_unixtime": "1628471652", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "581842053" + }, + " / Amount: 0.00700100 / Price: 42850.55000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,812.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 133,567.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.18142500 BTC ~ 7,780.17 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13171400 BTC ~ 5,648.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,015.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,199.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,699.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,455.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 478.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 447.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "581842053" + }, + { + "type": "plain", + "text": " / Amount: 0.00700100 / Price: 42850.55000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,812.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 133,567.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.18142500 BTC ~ 7,780.17 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13171400 BTC ~ 5,648.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,015.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,199.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,699.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,455.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 478.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 447.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 413, + "type": "message", + "date": "2021-08-09T11:18:39", + "date_unixtime": "1628500719", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "584081515" + }, + " / Amount: 0.00675900 / Price: 44564.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,812.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 133,867.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17442400 BTC ~ 7,742.69 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13195600 BTC ~ 5,857.53 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,016.99 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,672.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,701.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,455.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 478.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 448.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.46%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.40%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "584081515" + }, + { + "type": "plain", + "text": " / Amount: 0.00675900 / Price: 44564.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,812.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 133,867.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17442400 BTC ~ 7,742.69 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13195600 BTC ~ 5,857.53 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,016.99 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,672.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,701.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,455.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 478.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 448.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.46%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.40%" + } + ] + }, + { + "id": 414, + "type": "message", + "date": "2021-08-09T11:53:13", + "date_unixtime": "1628502793", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "583960984" + }, + " / Amount: 0.00669200 / Price: 45010.22000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,812.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 134,167.45 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16773200 BTC ~ 7,538.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13195600 BTC ~ 5,930.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,018.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,841.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,992.41 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,465.60 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 478.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 449.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "583960984" + }, + { + "type": "plain", + "text": " / Amount: 0.00669200 / Price: 45010.22000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,812.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 134,167.45 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16773200 BTC ~ 7,538.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13195600 BTC ~ 5,930.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,018.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,841.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,992.41 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,465.60 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 478.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 449.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.15%" + } + ] + }, + { + "id": 415, + "type": "message", + "date": "2021-08-09T12:42:29", + "date_unixtime": "1628505749", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "448699447" + }, + " / Amount: 0.00662500 / Price: 45460.32000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,812.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 134,467.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16110700 BTC ~ 7,340.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13195600 BTC ~ 6,012.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,019.36 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,027.85 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,758.95 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 478.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 450.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.77%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "448699447" + }, + { + "type": "plain", + "text": " / Amount: 0.00662500 / Price: 45460.32000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,812.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 134,467.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16110700 BTC ~ 7,340.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13195600 BTC ~ 6,012.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,019.36 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,027.85 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,758.95 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 478.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 450.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.77%" + } + ] + }, + { + "id": 416, + "type": "message", + "date": "2021-08-09T13:51:47", + "date_unixtime": "1628509907", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "446239200" + }, + " / Amount: 0.00656000 / Price: 45914.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,812.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 134,767.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15454700 BTC ~ 7,089.61 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13195600 BTC ~ 6,053.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,020.57 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,118.60 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,059.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 478.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 451.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "446239200" + }, + { + "type": "plain", + "text": " / Amount: 0.00656000 / Price: 45914.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,812.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 134,767.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15454700 BTC ~ 7,089.61 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13195600 BTC ~ 6,053.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,020.57 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,118.60 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,059.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 478.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 451.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.09%" + } + ] + }, + { + "id": 417, + "type": "message", + "date": "2021-08-09T20:39:54", + "date_unixtime": "1628534394", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "446125954" + }, + " / Amount: 0.00649500 / Price: 46374.08000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 142,812.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 135,067.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14805200 BTC ~ 6,851.99 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13195600 BTC ~ 6,107.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,021.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,235.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,360.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 478.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.63%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.20%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "446125954" + }, + { + "type": "plain", + "text": " / Amount: 0.00649500 / Price: 46374.08000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 142,812.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 135,067.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14805200 BTC ~ 6,851.99 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13195600 BTC ~ 6,107.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,021.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,235.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,360.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 478.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.63%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.20%" + } + ] + }, + { + "id": 418, + "type": "message", + "date": "2021-08-12T14:26:52", + "date_unixtime": "1628771212", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "585526609" + }, + " / Amount: 0.00672800 / Price: 44590.46000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,112.31 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 135,067.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15478000 BTC ~ 6,909.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13195600 BTC ~ 5,890.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,021.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,776.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,370.95 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 479.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.92%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "585526609" + }, + { + "type": "plain", + "text": " / Amount: 0.00672800 / Price: 44590.46000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,112.31 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 135,067.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15478000 BTC ~ 6,909.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13195600 BTC ~ 5,890.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,021.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,776.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,370.95 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 479.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.92%" + } + ] + }, + { + "id": 419, + "type": "message", + "date": "2021-08-12T16:28:24", + "date_unixtime": "1628778504", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "584943840" + }, + " / Amount: 0.00326700 / Price: 44148.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,412.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 135,067.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16134200 BTC ~ 7,128.46 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13218900 BTC ~ 5,840.41 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,021.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 5,645.78 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,691.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,370.95 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 480.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 452.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "584943840" + }, + { + "type": "plain", + "text": " / Amount: 0.00326700 / Price: 44148.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,412.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 135,067.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16134200 BTC ~ 7,128.46 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13218900 BTC ~ 5,840.41 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,021.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 5,645.78 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,691.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,370.95 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 480.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 452.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 420, + "type": "message", + "date": "2021-08-13T08:43:51", + "date_unixtime": "1628837031", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "590885719" + }, + " / Amount: 0.00656000 / Price: 45914.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,412.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 135,367.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15454700 BTC ~ 7,095.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13242400 BTC ~ 6,079.43 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,022.98 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,152.60 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,692.57 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,370.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 480.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 453.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "590885719" + }, + { + "type": "plain", + "text": " / Amount: 0.00656000 / Price: 45914.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,412.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 135,367.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15454700 BTC ~ 7,095.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13242400 BTC ~ 6,079.43 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,022.98 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,152.60 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,692.57 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,370.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 480.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 453.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 421, + "type": "message", + "date": "2021-08-13T10:03:11", + "date_unixtime": "1628841791", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "590710093" + }, + " / Amount: 0.00649500 / Price: 46374.08000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,412.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 135,667.44 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14805200 BTC ~ 6,847.47 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13242400 BTC ~ 6,124.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,024.17 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,251.44 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,993.78 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,370.94 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 480.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 454.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.27%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "590710093" + }, + { + "type": "plain", + "text": " / Amount: 0.00649500 / Price: 46374.08000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,412.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 135,667.44 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14805200 BTC ~ 6,847.47 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13242400 BTC ~ 6,124.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,024.17 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,251.44 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,993.78 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,370.94 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 480.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 454.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.27%" + } + ] + }, + { + "id": 422, + "type": "message", + "date": "2021-08-13T22:06:39", + "date_unixtime": "1628885199", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "445638461" + }, + " / Amount: 0.00643000 / Price: 46837.81000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,412.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 135,967.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14162200 BTC ~ 6,699.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13242400 BTC ~ 6,264.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,025.35 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,544.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,301.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,665.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 480.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 455.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "445638461" + }, + { + "type": "plain", + "text": " / Amount: 0.00643000 / Price: 46837.81000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,412.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 135,967.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14162200 BTC ~ 6,699.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13242400 BTC ~ 6,264.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,025.35 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,544.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,301.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,665.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 480.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 455.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%" + } + ] + }, + { + "id": 423, + "type": "message", + "date": "2021-08-13T22:06:53", + "date_unixtime": "1628885213", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "445551507" + }, + " / Amount: 0.00636700 / Price: 47306.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,412.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 136,267.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13525500 BTC ~ 6,405.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13242400 BTC ~ 6,271.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,026.57 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,558.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,301.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,665.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 480.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 456.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.93%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.89%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "445551507" + }, + { + "type": "plain", + "text": " / Amount: 0.00636700 / Price: 47306.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,412.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 136,267.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13525500 BTC ~ 6,405.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13242400 BTC ~ 6,271.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,026.57 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,558.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,301.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,665.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 480.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 456.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.93%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.89%" + } + ] + }, + { + "id": 424, + "type": "message", + "date": "2021-08-13T22:17:01", + "date_unixtime": "1628885821", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "445503536" + }, + " / Amount: 0.00630400 / Price: 47779.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,412.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 136,567.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12895100 BTC ~ 6,161.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13242400 BTC ~ 6,327.27 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,027.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,671.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,267.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 480.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 457.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "445503536" + }, + { + "type": "plain", + "text": " / Amount: 0.00630400 / Price: 47779.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,412.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 136,567.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12895100 BTC ~ 6,161.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13242400 BTC ~ 6,327.27 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,027.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,671.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,267.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 480.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 457.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%" + } + ] + }, + { + "id": 425, + "type": "message", + "date": "2021-08-14T07:00:21", + "date_unixtime": "1628917221", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": "Sečouce", + "text_entities": [ + { + "type": "plain", + "text": "Sečouce" + } + ] + }, + { + "id": 426, + "type": "message", + "date": "2021-08-15T09:47:46", + "date_unixtime": "1629013666", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "592749912" + }, + " / Amount: 0.00653000 / Price: 45941.59000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,712.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 136,567.41 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13548100 BTC ~ 6,205.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13242400 BTC ~ 6,065.68 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,027.77 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,154.25 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,267.69 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 481.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 457.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.70%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.35%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "592749912" + }, + { + "type": "plain", + "text": " / Amount: 0.00653000 / Price: 45941.59000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,712.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 136,567.41 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13548100 BTC ~ 6,205.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13242400 BTC ~ 6,065.68 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,027.77 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,154.25 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,267.69 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 481.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 457.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.70%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.35%" + } + ] + }, + { + "id": 427, + "type": "message", + "date": "2021-08-16T02:21:10", + "date_unixtime": "1629073270", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "595038821" + }, + " / Amount: 0.00000400 / Price: 47779.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 143,712.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 136,867.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12895100 BTC ~ 6,163.64 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13265000 BTC ~ 6,340.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,028.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,688.15 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,277.68 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 481.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 458.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "595038821" + }, + { + "type": "plain", + "text": " / Amount: 0.00000400 / Price: 47779.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 143,712.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 136,867.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12895100 BTC ~ 6,163.64 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13265000 BTC ~ 6,340.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,028.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,688.15 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,277.68 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 481.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 458.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%" + } + ] + }, + { + "id": 428, + "type": "message", + "date": "2021-08-16T22:03:32", + "date_unixtime": "1629144212", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "596360654" + }, + " / Amount: 0.00653000 / Price: 45941.59000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 144,012.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 136,867.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13548100 BTC ~ 6,207.57 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13265000 BTC ~ 6,077.86 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,028.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,169.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.24 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 482.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 458.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.32%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "596360654" + }, + { + "type": "plain", + "text": " / Amount: 0.00653000 / Price: 45941.59000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 144,012.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 136,867.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13548100 BTC ~ 6,207.57 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13265000 BTC ~ 6,077.86 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,028.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,169.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.24 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 482.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 458.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.32%" + } + ] + }, + { + "id": 429, + "type": "message", + "date": "2021-08-17T02:25:09", + "date_unixtime": "1629159909", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "592726121" + }, + " / Amount: 0.00659500 / Price: 45486.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 144,312.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 136,867.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14185000 BTC ~ 6,429.35 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.13287600 BTC ~ 6,022.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1,028.97 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 6,036.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,221.24 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 483.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 458.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.70%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.41%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "592726121" + }, + { + "type": "plain", + "text": " / Amount: 0.00659500 / Price: 45486.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 144,312.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 136,867.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14185000 BTC ~ 6,429.35 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.13287600 BTC ~ 6,022.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1,028.97 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 6,036.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,221.24 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 483.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 458.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.70%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.41%" + } + ] + }, + { + "id": 430, + "type": "message", + "date": "2021-08-17T22:40:56", + "date_unixtime": "1629232856", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "599581172" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 299.98 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00667000 BTC ~ 299.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -0.20 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,500.07 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,117.04 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 1.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 0.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "599581172" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 299.98 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00667000 BTC ~ 299.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -0.20 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,500.07 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,117.04 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 1.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 0.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 431, + "type": "message", + "date": "2021-08-18T00:26:50", + "date_unixtime": "1629239210", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "599581220" + }, + " / Amount: 0.00673700 / Price: 44529.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 599.98 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01317600 BTC ~ 586.09 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00023100 BTC ~ 10.28 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -3.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.04 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,795.88 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 2.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 0.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "599581220" + }, + { + "type": "plain", + "text": " / Amount: 0.00673700 / Price: 44529.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 599.98 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01317600 BTC ~ 586.09 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00023100 BTC ~ 10.28 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -3.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.04 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,795.88 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 2.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 0.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.15%" + } + ] + }, + { + "id": 432, + "type": "message", + "date": "2021-08-19T05:31:03", + "date_unixtime": "1629343863", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "599581347" + }, + " / Amount: 0.00680400 / Price: 44088.79000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 899.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01974700 BTC ~ 871.30 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00046400 BTC ~ 20.47 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 0.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -8.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.05 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,495.69 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 3.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 0.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "599581347" + }, + { + "type": "plain", + "text": " / Amount: 0.00680400 / Price: 44088.79000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 899.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01974700 BTC ~ 871.30 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00046400 BTC ~ 20.47 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 0.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -8.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.05 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,495.69 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 3.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 0.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 433, + "type": "message", + "date": "2021-08-19T18:01:02", + "date_unixtime": "1629388862", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "602059082" + }, + " / Amount: 0.00656800 / Price: 45852.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 899.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 299.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01294300 BTC ~ 593.62 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00070000 BTC ~ 32.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 1.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 26.92 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,822.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,195.50 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 3.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 1.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.97%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "602059082" + }, + { + "type": "plain", + "text": " / Amount: 0.00656800 / Price: 45852.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 899.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 299.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01294300 BTC ~ 593.62 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00070000 BTC ~ 32.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 1.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 26.92 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,822.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,195.50 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 3.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 1.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.97%" + } + ] + }, + { + "id": 434, + "type": "message", + "date": "2021-08-19T20:25:38", + "date_unixtime": "1629397538", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "599735581" + }, + " / Amount: 0.00650400 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 899.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 599.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00643900 BTC ~ 298.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00070000 BTC ~ 32.42 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 2.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 33.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.45 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,195.49 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 3.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 2.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.98%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "599735581" + }, + { + "type": "plain", + "text": " / Amount: 0.00650400 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 899.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 599.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00643900 BTC ~ 298.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00070000 BTC ~ 32.42 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 2.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 33.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.45 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,195.49 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 3.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 2.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.98%" + } + ] + }, + { + "id": 435, + "type": "message", + "date": "2021-08-19T21:08:41", + "date_unixtime": "1629400121", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "599583163" + }, + " / Amount: 0.00643900 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 899.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 899.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00070000 BTC ~ 32.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 3.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 36.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.64 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,195.49 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 3.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 3.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "599583163" + }, + { + "type": "plain", + "text": " / Amount: 0.00643900 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 899.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 899.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00070000 BTC ~ 32.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 3.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 36.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.64 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,195.49 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 3.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 3.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 436, + "type": "message", + "date": "2021-08-19T22:02:08", + "date_unixtime": "1629403328", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "603277538" + }, + " / Amount: 0.00031900 / Price: 46801.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 1,199.95 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 899.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00641000 BTC ~ 299.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00070000 BTC ~ 32.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 3.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 35.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,424.65 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,195.49 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 4.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 3.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.68%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "603277538" + }, + { + "type": "plain", + "text": " / Amount: 0.00031900 / Price: 46801.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 1,199.95 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 899.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00641000 BTC ~ 299.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00070000 BTC ~ 32.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 3.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 35.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,424.65 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,195.49 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 4.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 3.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.68%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 437, + "type": "message", + "date": "2021-08-20T17:39:35", + "date_unixtime": "1629473975", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "603279721" + }, + " / Amount: 0.00618800 / Price: 48673.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 1,199.95 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,199.95 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00092200 BTC ~ 44.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 4.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 49.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,425.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,195.49 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 4.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 4.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.44%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "603279721" + }, + { + "type": "plain", + "text": " / Amount: 0.00618800 / Price: 48673.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 1,199.95 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,199.95 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00092200 BTC ~ 44.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 4.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 49.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,425.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,195.49 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 4.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 4.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.44%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 438, + "type": "message", + "date": "2021-08-20T18:01:16", + "date_unixtime": "1629475276", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604734862" + }, + " / Amount: 0.00616000 / Price: 48701.45000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 1,499.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,199.95 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00616000 BTC ~ 299.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00092200 BTC ~ 44.85 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 4.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 49.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,425.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,195.49 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 5.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 4.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604734862" + }, + { + "type": "plain", + "text": " / Amount: 0.00616000 / Price: 48701.45000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 1,499.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,199.95 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00616000 BTC ~ 299.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00092200 BTC ~ 44.85 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 4.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 49.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,425.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,195.49 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 5.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 4.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 439, + "type": "message", + "date": "2021-08-22T17:00:21", + "date_unixtime": "1629644421", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604709722" + }, + " / Amount: 0.00622200 / Price: 48219.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 1,799.98 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,199.95 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01216900 BTC ~ 586.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00113500 BTC ~ 54.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 4.78 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 46.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.05 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.74 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 4.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.08%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604709722" + }, + { + "type": "plain", + "text": " / Amount: 0.00622200 / Price: 48219.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 1,799.98 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,199.95 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01216900 BTC ~ 586.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00113500 BTC ~ 54.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 4.78 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 46.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.05 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.74 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 4.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.08%" + } + ] + }, + { + "id": 440, + "type": "message", + "date": "2021-08-23T04:52:29", + "date_unixtime": "1629687149", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "607582657" + }, + " / Amount: 0.00600700 / Price: 50148.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 1,799.98 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,499.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00594700 BTC ~ 298.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00135000 BTC ~ 67.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 6.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 71.95 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.29 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.74 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 5.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "607582657" + }, + { + "type": "plain", + "text": " / Amount: 0.00600700 / Price: 50148.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 1,799.98 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,499.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00594700 BTC ~ 298.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00135000 BTC ~ 67.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 6.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 71.95 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.29 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.74 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 5.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%" + } + ] + }, + { + "id": 441, + "type": "message", + "date": "2021-08-24T17:57:04", + "date_unixtime": "1629820624", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "608363098" + }, + " / Amount: 0.00622200 / Price: 48219.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 2,100.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,499.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01216900 BTC ~ 587.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00135000 BTC ~ 65.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 6.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 58.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,991.27 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.76 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 7.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 5.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "608363098" + }, + { + "type": "plain", + "text": " / Amount: 0.00622200 / Price: 48219.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 2,100.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,499.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01216900 BTC ~ 587.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00135000 BTC ~ 65.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 6.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 58.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,991.27 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.76 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 7.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 5.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%" + } + ] + }, + { + "id": 442, + "type": "message", + "date": "2021-08-24T18:17:08", + "date_unixtime": "1629821828", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604709188" + }, + " / Amount: 0.00628400 / Price: 47741.84000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 2,400.01 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,499.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01823800 BTC ~ 871.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00156500 BTC ~ 74.82 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 6.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 52.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,691.27 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.76 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 8.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 5.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.17%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.90%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604709188" + }, + { + "type": "plain", + "text": " / Amount: 0.00628400 / Price: 47741.84000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 2,400.01 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,499.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01823800 BTC ~ 871.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00156500 BTC ~ 74.82 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 6.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 52.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,691.27 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.76 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 8.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 5.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.17%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.90%" + } + ] + }, + { + "id": 443, + "type": "message", + "date": "2021-08-25T11:00:30", + "date_unixtime": "1629882030", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604708450" + }, + " / Amount: 0.00634700 / Price: 47269.15000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 2,700.02 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,499.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02436700 BTC ~ 1,152.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00178300 BTC ~ 84.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 6.00 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 42.24 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,391.29 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.76 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 9.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 5.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.03%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604708450" + }, + { + "type": "plain", + "text": " / Amount: 0.00634700 / Price: 47269.15000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 2,700.02 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,499.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02436700 BTC ~ 1,152.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00178300 BTC ~ 84.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 6.00 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 42.24 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,391.29 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.76 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 9.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 5.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.03%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%" + } + ] + }, + { + "id": 444, + "type": "message", + "date": "2021-08-25T21:09:38", + "date_unixtime": "1629918578", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "611640310" + }, + " / Amount: 0.00612700 / Price: 49159.92000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 2,700.02 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,799.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01802000 BTC ~ 885.74 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00200300 BTC ~ 98.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 7.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 91.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.51 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.76 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 9.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "611640310" + }, + { + "type": "plain", + "text": " / Amount: 0.00612700 / Price: 49159.92000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 2,700.02 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,799.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01802000 BTC ~ 885.74 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00200300 BTC ~ 98.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 7.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 91.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.51 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.76 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 9.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%" + } + ] + }, + { + "id": 445, + "type": "message", + "date": "2021-08-26T07:31:14", + "date_unixtime": "1629955874", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "612305680" + }, + " / Amount: 0.00634700 / Price: 47269.15000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,000.04 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,799.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02436700 BTC ~ 1,150.60 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00200300 BTC ~ 94.58 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 7.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 52.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,392.47 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 10.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "612305680" + }, + { + "type": "plain", + "text": " / Amount: 0.00634700 / Price: 47269.15000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,000.04 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,799.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02436700 BTC ~ 1,150.60 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00200300 BTC ~ 94.58 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 7.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 52.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,392.47 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 10.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.15%" + } + ] + }, + { + "id": 446, + "type": "message", + "date": "2021-08-26T08:39:51", + "date_unixtime": "1629959991", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604708288" + }, + " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,300.04 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,799.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03055700 BTC ~ 1,432.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00222300 BTC ~ 104.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 7.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 43.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,092.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 11.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.24%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.88%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604708288" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,300.04 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,799.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03055700 BTC ~ 1,432.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00222300 BTC ~ 104.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 7.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 43.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,092.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 11.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.24%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.88%" + } + ] + }, + { + "id": 447, + "type": "message", + "date": "2021-08-26T09:50:50", + "date_unixtime": "1629964250", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + " - ", + { + "type": "hashtag", + "text": "#xxx" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604708288" + }, + " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,300.04 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,799.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03055700 BTC ~ 1,434.28 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00222300 BTC ~ 104.34 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 7.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 45.76 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,092.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 11.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 10.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.31%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.73%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#xxx" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604708288" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,300.04 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,799.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03055700 BTC ~ 1,434.28 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00222300 BTC ~ 104.34 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 7.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 45.76 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,092.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 11.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 10.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.31%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.73%" + } + ] + }, + { + "id": 448, + "type": "message", + "date": "2021-08-26T14:07:21", + "date_unixtime": "1629979641", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "604737922" + }, + " / Amount: 0.00647400 / Price: 46337.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,600.03 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 1,799.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03681100 BTC ~ 1,711.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00244300 BTC ~ 113.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 7.18 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 32.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,792.36 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,835.75 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23790.46 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.39 USD\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 12.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 6.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.38%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.67%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "604737922" + }, + { + "type": "plain", + "text": " / Amount: 0.00647400 / Price: 46337.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,600.03 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 1,799.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03681100 BTC ~ 1,711.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00244300 BTC ~ 113.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 7.18 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 32.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,792.36 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,835.75 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23790.46 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.39 USD\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 12.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 6.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.38%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.67%" + } + ] + }, + { + "id": 449, + "type": "message", + "date": "2021-08-27T16:31:53", + "date_unixtime": "1630074713", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "613311906" + }, + " / Amount: 0.00635000 / Price: 48191.27000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,600.03 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 2,099.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03033700 BTC ~ 1,461.48 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00256700 BTC ~ 123.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 13.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 98.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,819.77 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.91 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.58 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (206 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 12.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 7.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.03%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "613311906" + }, + { + "type": "plain", + "text": " / Amount: 0.00635000 / Price: 48191.27000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,600.03 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 2,099.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03033700 BTC ~ 1,461.48 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00256700 BTC ~ 123.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 13.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 98.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,819.77 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.91 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.58 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (206 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 12.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 7.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.03%" + } + ] + }, + { + "id": 450, + "type": "message", + "date": "2021-08-29T03:16:27", + "date_unixtime": "1630199787", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "610525914" + }, + " / Amount: 0.00000600 / Price: 49651.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,600.03 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,000.01 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01195400 BTC ~ 592.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00256700 BTC ~ 127.27 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 16.86 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 136.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,723.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.92 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.30 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (205 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 12.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 10.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.15%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "610525914" + }, + { + "type": "plain", + "text": " / Amount: 0.00000600 / Price: 49651.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,600.03 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,000.01 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01195400 BTC ~ 592.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00256700 BTC ~ 127.27 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 16.86 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 136.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,723.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.92 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.30 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (205 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 12.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 10.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.15%" + } + ] + }, + { + "id": 451, + "type": "message", + "date": "2021-08-30T08:35:50", + "date_unixtime": "1630305350", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "616772575" + }, + " / Amount: 0.00015000 / Price: 47741.84000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 3,899.85 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,000.01 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01823400 BTC ~ 869.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00256700 BTC ~ 122.37 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 16.86 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 108.64 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,723.57 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23790.47 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.51 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (319 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 13.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 10.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.19%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "616772575" + }, + { + "type": "plain", + "text": " / Amount: 0.00015000 / Price: 47741.84000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 3,899.85 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,000.01 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01823400 BTC ~ 869.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00256700 BTC ~ 122.37 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 16.86 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 108.64 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,723.57 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23790.47 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.51 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (319 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 13.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 10.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.19%" + } + ] + }, + { + "id": 452, + "type": "message", + "date": "2021-08-31T01:32:29", + "date_unixtime": "1630366349", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "615401660" + }, + " / Amount: 0.00635000 / Price: 47269.15000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,200.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,000.01 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02446400 BTC ~ 1,156.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00268700 BTC ~ 126.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 16.86 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 99.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,395.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23790.47 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.81 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (325 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 14.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 10.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.98%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "615401660" + }, + { + "type": "plain", + "text": " / Amount: 0.00635000 / Price: 47269.15000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,200.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,000.01 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02446400 BTC ~ 1,156.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00268700 BTC ~ 126.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 16.86 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 99.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,395.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23790.47 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.81 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (325 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 14.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 10.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.98%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%" + } + ] + }, + { + "id": 453, + "type": "message", + "date": "2021-08-31T02:26:39", + "date_unixtime": "1630369599", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "615386326" + }, + " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,000.01 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03075400 BTC ~ 1,439.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00280700 BTC ~ 131.41 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 16.86 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 88.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,095.51 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23790.47 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.47 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (325 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 10.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.00%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "615386326" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,000.01 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03075400 BTC ~ 1,439.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00280700 BTC ~ 131.41 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 16.86 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 88.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,095.51 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23790.47 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.47 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (325 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 10.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.00%" + } + ] + }, + { + "id": 454, + "type": "message", + "date": "2021-09-01T19:16:31", + "date_unixtime": "1630516591", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "619326663" + }, + " / Amount: 0.00629000 / Price: 48673.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,300.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02434400 BTC ~ 1,185.92 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00292700 BTC ~ 142.59 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 23.02 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 151.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,101.53 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.92 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.55 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (209 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 11.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "619326663" + }, + { + "type": "plain", + "text": " / Amount: 0.00629000 / Price: 48673.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,300.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02434400 BTC ~ 1,185.92 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00292700 BTC ~ 142.59 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 23.02 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 151.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,101.53 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.92 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.55 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (209 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 11.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.91%" + } + ] + }, + { + "id": 455, + "type": "message", + "date": "2021-09-02T03:30:44", + "date_unixtime": "1630546244", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "619227702" + }, + " / Amount: 0.00623000 / Price: 49159.92000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,600.16 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01811400 BTC ~ 891.38 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00292700 BTC ~ 144.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 29.12 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 164.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,407.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.92 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.86 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (208 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 12.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.90%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "619227702" + }, + { + "type": "plain", + "text": " / Amount: 0.00623000 / Price: 49159.92000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,600.16 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01811400 BTC ~ 891.38 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00292700 BTC ~ 144.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 29.12 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 164.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,407.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.92 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.86 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (208 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 12.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.90%" + } + ] + }, + { + "id": 456, + "type": "message", + "date": "2021-09-02T03:46:06", + "date_unixtime": "1630547166", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "618217380" + }, + " / Amount: 0.00616000 / Price: 49651.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 3,899.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01195400 BTC ~ 594.18 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00292700 BTC ~ 145.49 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 35.16 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 174.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,713.61 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,814.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.92 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.16 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (207 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 13.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.93%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.89%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "618217380" + }, + { + "type": "plain", + "text": " / Amount: 0.00616000 / Price: 49651.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 3,899.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01195400 BTC ~ 594.18 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00292700 BTC ~ 145.49 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 35.16 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 174.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,713.61 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,814.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.92 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.16 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (207 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 13.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.93%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.89%" + } + ] + }, + { + "id": 457, + "type": "message", + "date": "2021-09-02T09:04:46", + "date_unixtime": "1630566286", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "610488569" + }, + " / Amount: 0.00600700 / Price: 50148.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 4,200.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00594700 BTC ~ 298.18 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00292700 BTC ~ 146.76 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 36.38 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 181.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,829.35 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.92 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.39 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (206 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 22792.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 14.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "610488569" + }, + { + "type": "plain", + "text": " / Amount: 0.00600700 / Price: 50148.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 4,200.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00594700 BTC ~ 298.18 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00292700 BTC ~ 146.76 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 36.38 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 181.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,829.35 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.92 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.39 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (206 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 22792.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 14.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.02%" + } + ] + }, + { + "id": 458, + "type": "message", + "date": "2021-09-03T14:32:24", + "date_unixtime": "1630672344", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "604737672" + }, + " / Amount: 0.00594700 / Price: 50649.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00292700 BTC ~ 148.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 37.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 185.95 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,130.51 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 23554.92 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "604737672" + }, + { + "type": "plain", + "text": " / Amount: 0.00594700 / Price: 50649.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00292700 BTC ~ 148.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 37.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 185.95 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,130.51 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 23554.92 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 459, + "type": "message", + "date": "2021-09-03T14:37:47", + "date_unixtime": "1630672667", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "625070690" + }, + " / Amount: 0.00592000 / Price: 50678.91000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 4,800.02 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00592000 BTC ~ 299.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00292700 BTC ~ 148.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 37.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 185.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.50 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,130.51 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24756.46 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 16.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "625070690" + }, + { + "type": "plain", + "text": " / Amount: 0.00592000 / Price: 50678.91000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 4,800.02 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00592000 BTC ~ 299.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00292700 BTC ~ 148.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 37.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 185.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.50 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,130.51 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24756.46 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 16.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 460, + "type": "message", + "date": "2021-09-03T22:24:03", + "date_unixtime": "1630700643", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "625066900" + }, + " / Amount: 0.00598000 / Price: 50177.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 5,100.08 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01179000 BTC ~ 591.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00303700 BTC ~ 152.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 37.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 181.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,699.58 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,130.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24756.46 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.71 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (320 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 23717.73 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 17.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.98%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "625066900" + }, + { + "type": "plain", + "text": " / Amount: 0.00598000 / Price: 50177.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 5,100.08 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01179000 BTC ~ 591.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00303700 BTC ~ 152.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 37.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 181.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,699.58 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,130.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24756.46 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.71 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (320 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 23717.73 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 17.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.98%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%" + } + ] + }, + { + "id": 461, + "type": "message", + "date": "2021-09-04T00:27:28", + "date_unixtime": "1630708048", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "625064986" + }, + " / Amount: 0.00604000 / Price: 49680.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 4,500.00 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01771000 BTC ~ 879.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00315700 BTC ~ 156.72 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 37.59 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 173.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,399.76 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,130.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24756.46 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.40 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (321 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 23717.73 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 15.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "625064986" + }, + { + "type": "plain", + "text": " / Amount: 0.00604000 / Price: 49680.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 4,500.00 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01771000 BTC ~ 879.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00315700 BTC ~ 156.72 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 37.59 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 173.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,399.76 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,130.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24756.46 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.40 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (321 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 23717.73 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 15.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.12%" + } + ] + }, + { + "id": 462, + "type": "message", + "date": "2021-09-05T22:58:56", + "date_unixtime": "1630875536", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "625723463" + }, + " / Amount: 0.00249000 / Price: 51667.55000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 4,800.07 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01167000 BTC ~ 603.23 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00327700 BTC ~ 169.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 43.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 215.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,405.47 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,130.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24511.34 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.27 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (205 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 23717.73 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 16.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "625723463" + }, + { + "type": "plain", + "text": " / Amount: 0.00249000 / Price: 51667.55000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 4,800.07 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01167000 BTC ~ 603.23 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00327700 BTC ~ 169.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 43.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 215.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,405.47 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,130.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24511.34 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.27 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (205 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 23717.73 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 16.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.95%" + } + ] + }, + { + "id": 463, + "type": "message", + "date": "2021-09-06T13:17:15", + "date_unixtime": "1630927035", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "625602997" + }, + " / Amount: 0.00586000 / Price: 52184.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,100.13 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00581000 BTC ~ 302.82 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00327700 BTC ~ 170.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 49.13 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 222.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,711.36 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,130.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24511.34 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.56 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (204 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 23717.73 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 17.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "625602997" + }, + { + "type": "plain", + "text": " / Amount: 0.00586000 / Price: 52184.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,100.13 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00581000 BTC ~ 302.82 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00327700 BTC ~ 170.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 49.13 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 222.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,711.36 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,130.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24511.34 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.56 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (204 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 23717.73 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 17.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%" + } + ] + }, + { + "id": 464, + "type": "message", + "date": "2021-09-07T01:00:43", + "date_unixtime": "1630969243", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "625075792" + }, + " / Amount: 0.00581000 / Price: 52706.07000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00327700 BTC ~ 172.59 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 227.92 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,147.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24511.34 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.74%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "625075792" + }, + { + "type": "plain", + "text": " / Amount: 0.00581000 / Price: 52706.07000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00327700 BTC ~ 172.59 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 227.92 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,147.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24511.34 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.74%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 465, + "type": "message", + "date": "2021-09-07T01:39:59", + "date_unixtime": "1630971599", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "629788168" + }, + " / Amount: 0.00569000 / Price: 52707.77000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 5,700.05 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00569000 BTC ~ 299.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00327700 BTC ~ 172.72 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 228.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.15 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,157.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 19.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.98%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "629788168" + }, + { + "type": "plain", + "text": " / Amount: 0.00569000 / Price: 52707.77000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 5,700.05 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00569000 BTC ~ 299.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00327700 BTC ~ 172.72 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 228.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.15 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,157.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 19.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.98%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%" + } + ] + }, + { + "id": 466, + "type": "message", + "date": "2021-09-07T08:52:47", + "date_unixtime": "1630997567", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "629745882" + }, + " / Amount: 0.00575000 / Price: 52214.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 6,000.29 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01133000 BTC ~ 594.67 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00338700 BTC ~ 177.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 227.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,157.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.94 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (317 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 20.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.50%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.50%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "629745882" + }, + { + "type": "plain", + "text": " / Amount: 0.00575000 / Price: 52214.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 6,000.29 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01133000 BTC ~ 594.67 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00338700 BTC ~ 177.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 227.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,157.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.94 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (317 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 20.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.50%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.50%" + } + ] + }, + { + "id": 467, + "type": "message", + "date": "2021-09-07T10:30:23", + "date_unixtime": "1631003423", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "629745027" + }, + " / Amount: 0.00580000 / Price: 51697.56000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 6,300.13 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01702000 BTC ~ 876.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00349700 BTC ~ 179.99 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 211.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,157.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.64 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (317 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 21.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.61%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.50%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "629745027" + }, + { + "type": "plain", + "text": " / Amount: 0.00580000 / Price: 51697.56000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 6,300.13 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01702000 BTC ~ 876.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00349700 BTC ~ 179.99 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 211.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,157.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.64 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (317 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 21.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.61%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.50%" + } + ] + }, + { + "id": 468, + "type": "message", + "date": "2021-09-07T10:31:56", + "date_unixtime": "1631003516", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "629743852" + }, + " / Amount: 0.00586000 / Price: 51185.70000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 6,600.08 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02277000 BTC ~ 1,169.21 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00360700 BTC ~ 185.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 209.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,089.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,157.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.32 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (318 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 22.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.35%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.71%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "629743852" + }, + { + "type": "plain", + "text": " / Amount: 0.00586000 / Price: 51185.70000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 6,600.08 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02277000 BTC ~ 1,169.21 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00360700 BTC ~ 185.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 209.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,089.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,157.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.32 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (318 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 22.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.35%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.71%" + } + ] + }, + { + "id": 469, + "type": "message", + "date": "2021-09-07T11:44:10", + "date_unixtime": "1631007850", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "629743671" + }, + " / Amount: 0.00592000 / Price: 50678.91000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 6,900.10 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02858000 BTC ~ 1,444.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00371700 BTC ~ 187.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 187.21 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,789.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,157.85 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.00 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (318 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 23.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.77%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.36%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "629743671" + }, + { + "type": "plain", + "text": " / Amount: 0.00592000 / Price: 50678.91000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 6,900.10 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02858000 BTC ~ 1,444.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00371700 BTC ~ 187.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 187.21 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,789.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,157.85 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.00 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (318 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 23.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.77%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.36%" + } + ] + }, + { + "id": 470, + "type": "message", + "date": "2021-09-07T16:16:54", + "date_unixtime": "1631024214", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "629789264" + }, + " / Amount: 0.00598000 / Price: 50177.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 7,200.16 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03445000 BTC ~ 1,732.99 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00382700 BTC ~ 192.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 180.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,511.25 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,136.64 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (318 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 24.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.25%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.77%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "629789264" + }, + { + "type": "plain", + "text": " / Amount: 0.00598000 / Price: 50177.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 7,200.16 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03445000 BTC ~ 1,732.99 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00382700 BTC ~ 192.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 180.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,511.25 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,136.64 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (318 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 24.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.25%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.77%" + } + ] + }, + { + "id": 471, + "type": "message", + "date": "2021-09-07T16:45:51", + "date_unixtime": "1631025951", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630170357" + }, + " / Amount: 0.00604000 / Price: 49680.34000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 7,500.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.04037000 BTC ~ 2,009.56 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00394700 BTC ~ 196.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 161.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,826.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.32 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (319 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 25.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.21%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.83%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630170357" + }, + { + "type": "plain", + "text": " / Amount: 0.00604000 / Price: 49680.34000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 7,500.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.04037000 BTC ~ 2,009.56 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00394700 BTC ~ 196.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 161.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,826.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.32 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (319 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 25.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.21%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.83%" + } + ] + }, + { + "id": 472, + "type": "message", + "date": "2021-09-07T16:49:16", + "date_unixtime": "1631026156", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630302082" + }, + " / Amount: 0.00610000 / Price: 49188.46000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 7,800.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.04635000 BTC ~ 2,262.21 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00406700 BTC ~ 198.50 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 115.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,526.54 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.68 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (380 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 26.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.37%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.86%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630302082" + }, + { + "type": "plain", + "text": " / Amount: 0.00610000 / Price: 49188.46000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 7,800.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.04635000 BTC ~ 2,262.21 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00406700 BTC ~ 198.50 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 115.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,526.54 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.68 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (380 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 26.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.37%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.86%" + } + ] + }, + { + "id": 473, + "type": "message", + "date": "2021-09-07T16:49:26", + "date_unixtime": "1631026166", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630306577" + }, + " / Amount: 0.00616000 / Price: 48701.45000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 8,100.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.05239000 BTC ~ 2,551.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00418700 BTC ~ 203.91 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 110.50 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,221.07 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,526.54 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 274.60 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (320 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 27.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.15%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +6.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630306577" + }, + { + "type": "plain", + "text": " / Amount: 0.00616000 / Price: 48701.45000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 8,100.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.05239000 BTC ~ 2,551.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00418700 BTC ~ 203.91 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 110.50 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,221.07 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,526.54 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 274.60 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (320 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 27.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.15%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +6.09%" + } + ] + }, + { + "id": 474, + "type": "message", + "date": "2021-09-07T17:00:01", + "date_unixtime": "1631026801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630428578" + }, + " / Amount: 0.00622000 / Price: 48219.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 8,400.20 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.05849000 BTC ~ 2,768.17 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00430700 BTC ~ 203.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 27.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.91 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,926.59 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 274.22 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (320 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 28.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.23%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +7.02%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630428578" + }, + { + "type": "plain", + "text": " / Amount: 0.00622000 / Price: 48219.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 8,400.20 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.05849000 BTC ~ 2,768.17 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00430700 BTC ~ 203.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 27.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.91 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,926.59 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 274.22 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (320 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 28.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.23%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +7.02%" + } + ] + }, + { + "id": 475, + "type": "message", + "date": "2021-09-07T17:00:10", + "date_unixtime": "1631026810", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630774414" + }, + " / Amount: 0.00628000 / Price: 47741.84000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 8,700.02 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.06465000 BTC ~ 3,051.92 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00442700 BTC ~ 208.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 16.36 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,220.86 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,926.59 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 269.36 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (382 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 29.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.30%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +7.29%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630774414" + }, + { + "type": "plain", + "text": " / Amount: 0.00628000 / Price: 47741.84000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 8,700.02 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.06465000 BTC ~ 3,051.92 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00442700 BTC ~ 208.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 16.36 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,220.86 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,926.59 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 269.36 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (382 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 29.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.30%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +7.29%" + } + ] + }, + { + "id": 476, + "type": "message", + "date": "2021-09-07T17:01:06", + "date_unixtime": "1631026866", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630848222" + }, + " / Amount: 0.00550000 / Price: 47269.15000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 9,000.18 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07088000 BTC ~ 3,372.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00454700 BTC ~ 216.37 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 44.57 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 921.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,347.64 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26279.48 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 273.44 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (321 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 30.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.72%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.34%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630848222" + }, + { + "type": "plain", + "text": " / Amount: 0.00550000 / Price: 47269.15000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 9,000.18 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07088000 BTC ~ 3,372.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00454700 BTC ~ 216.37 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 44.57 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 921.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,347.64 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26279.48 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 273.44 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (321 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 30.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.72%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.34%" + } + ] + }, + { + "id": 477, + "type": "message", + "date": "2021-09-07T17:07:31", + "date_unixtime": "1631027251", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630859245" + }, + " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 9,300.18 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07717000 BTC ~ 3,524.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00466700 BTC ~ 213.18 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -106.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.05 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,026.15 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.42 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (383 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 31.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.60%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +7.62%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630859245" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 9,300.18 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07717000 BTC ~ 3,524.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00466700 BTC ~ 213.18 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -106.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.05 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,026.15 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.42 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (383 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 31.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.60%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +7.62%" + } + ] + }, + { + "id": 478, + "type": "message", + "date": "2021-09-07T17:07:39", + "date_unixtime": "1631027259", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630859891" + }, + " / Amount: 0.00647000 / Price: 46337.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 9,599.98 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08352000 BTC ~ 3,810.43 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00478700 BTC ~ 218.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -115.67 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,220.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,026.15 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 267.92 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (384 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 32.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.62%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +7.75%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630859891" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 46337.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 9,599.98 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08352000 BTC ~ 3,810.43 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00478700 BTC ~ 218.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -115.67 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,220.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,026.15 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 267.92 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (384 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 32.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.62%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +7.75%" + } + ] + }, + { + "id": 479, + "type": "message", + "date": "2021-09-07T17:08:30", + "date_unixtime": "1631027310", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630889043" + }, + " / Amount: 0.00654000 / Price: 45878.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 9,900.03 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08994000 BTC ~ 4,047.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00490700 BTC ~ 220.82 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -176.34 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,499.71 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,447.27 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 267.42 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (384 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 33.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.26%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +7.09%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630889043" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 45878.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 9,900.03 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08994000 BTC ~ 4,047.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00490700 BTC ~ 220.82 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -176.34 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,499.71 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,447.27 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 267.42 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (384 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 33.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.26%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +7.09%" + } + ] + }, + { + "id": 480, + "type": "message", + "date": "2021-09-07T17:08:41", + "date_unixtime": "1631027321", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630889453" + }, + " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 10,199.83 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09641000 BTC ~ 4,290.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00503700 BTC ~ 224.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -229.60 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,199.81 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,447.27 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 266.89 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (385 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 34.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": 0.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +8.29%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630889453" + }, + { + "type": "plain", + "text": " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 10,199.83 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09641000 BTC ~ 4,290.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00503700 BTC ~ 224.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -229.60 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,199.81 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,447.27 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 266.89 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (385 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 34.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": 0.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +8.29%" + } + ] + }, + { + "id": 481, + "type": "message", + "date": "2021-09-07T17:09:28", + "date_unixtime": "1631027368", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630892193" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 10,499.82 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10295000 BTC ~ 4,517.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00516700 BTC ~ 226.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -300.50 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,499.69 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,847.14 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 266.34 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (386 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 35.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": 0.39%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +7.67%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630892193" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 10,499.82 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10295000 BTC ~ 4,517.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00516700 BTC ~ 226.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -300.50 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,499.69 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,847.14 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 266.34 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (386 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 35.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": 0.39%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +7.67%" + } + ] + }, + { + "id": 482, + "type": "message", + "date": "2021-09-07T17:10:36", + "date_unixtime": "1631027436", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630912108" + }, + " / Amount: 0.00680000 / Price: 44088.78000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,099.75 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,400.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.11623000 BTC ~ 5,142.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00542700 BTC ~ 240.14 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 55.34 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -261.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,499.69 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,246.89 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 260.12 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (453 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 37.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 18.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -3.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.66%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630912108" + }, + { + "type": "plain", + "text": " / Amount: 0.00680000 / Price: 44088.78000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,099.75 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,400.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.11623000 BTC ~ 5,142.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00542700 BTC ~ 240.14 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 55.34 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -261.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,499.69 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,246.89 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 260.12 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (453 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 37.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 18.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -3.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.66%" + } + ] + }, + { + "id": 483, + "type": "message", + "date": "2021-09-07T17:12:19", + "date_unixtime": "1631027539", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630920726" + }, + " / Amount: 0.00681000 / Price: 44948.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,699.59 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,700.09 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12284000 BTC ~ 5,559.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00581700 BTC ~ 263.29 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 61.49 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -114.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,111.63 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,346.58 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.97 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (148 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 39.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 19.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.31%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.30%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630920726" + }, + { + "type": "plain", + "text": " / Amount: 0.00681000 / Price: 44948.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,699.59 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,700.09 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12284000 BTC ~ 5,559.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00581700 BTC ~ 263.29 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 61.49 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -114.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,111.63 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,346.58 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.97 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (148 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 39.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 19.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.31%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.30%" + } + ] + }, + { + "id": 484, + "type": "message", + "date": "2021-09-07T17:12:42", + "date_unixtime": "1631027562", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630920346" + }, + " / Amount: 0.00674000 / Price: 45398.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,699.59 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 5,999.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.11610000 BTC ~ 5,280.08 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00581700 BTC ~ 264.55 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 67.58 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -87.39 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,111.87 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,346.58 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 279.97 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (204 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 39.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 20.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.27%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.82%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630920346" + }, + { + "type": "plain", + "text": " / Amount: 0.00674000 / Price: 45398.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,699.59 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 5,999.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.11610000 BTC ~ 5,280.08 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00581700 BTC ~ 264.55 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 67.58 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -87.39 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,111.87 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,346.58 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 279.97 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (204 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 39.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 20.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.27%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.82%" + } + ] + }, + { + "id": 485, + "type": "message", + "date": "2021-09-07T17:13:34", + "date_unixtime": "1631027614", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630919908" + }, + " / Amount: 0.00667000 / Price: 45852.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,699.59 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 6,299.79 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10943000 BTC ~ 5,022.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00581700 BTC ~ 266.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 73.62 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -36.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,723.81 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,346.58 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 285.69 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (146 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 39.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 21.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.48%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.91%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630919908" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 45852.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,699.59 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 6,299.79 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10943000 BTC ~ 5,022.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00581700 BTC ~ 266.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 73.62 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -36.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,723.81 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,346.58 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 285.69 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (146 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 39.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 21.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.48%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.91%" + } + ] + }, + { + "id": 486, + "type": "message", + "date": "2021-09-07T17:13:55", + "date_unixtime": "1631027635", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630917125" + }, + " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,699.59 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 6,599.92 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10282000 BTC ~ 4,717.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00581700 BTC ~ 266.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 79.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -35.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,723.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,346.58 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 280.85 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (202 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 39.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 22.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.95%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630917125" + }, + { + "type": "plain", + "text": " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,699.59 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 6,599.92 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10282000 BTC ~ 4,717.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00581700 BTC ~ 266.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 79.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -35.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,723.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,346.58 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 280.85 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (202 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 39.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 22.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.95%" + } + ] + }, + { + "id": 487, + "type": "message", + "date": "2021-09-07T17:14:43", + "date_unixtime": "1631027683", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630916369" + }, + " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,699.59 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 6,899.90 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09628000 BTC ~ 4,409.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00581700 BTC ~ 266.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 85.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -38.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,376.24 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.27 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (200 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 39.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 23.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.16%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630916369" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,699.59 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 6,899.90 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09628000 BTC ~ 4,409.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00581700 BTC ~ 266.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 85.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -38.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,376.24 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.27 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (200 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 39.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 23.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.16%" + } + ] + }, + { + "id": 488, + "type": "message", + "date": "2021-09-07T17:16:03", + "date_unixtime": "1631027763", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630931408" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,999.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 6,899.90 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10295000 BTC ~ 4,671.46 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00581700 BTC ~ 263.95 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 85.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -78.74 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,376.24 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.74 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (318 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 40.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 23.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.11%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630931408" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,999.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 6,899.90 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10295000 BTC ~ 4,671.46 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00581700 BTC ~ 263.95 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 85.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -78.74 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,376.24 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.74 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (318 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 40.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 23.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.11%" + } + ] + }, + { + "id": 489, + "type": "message", + "date": "2021-09-07T17:19:17", + "date_unixtime": "1631027957", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630934603" + }, + " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,999.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 7,199.89 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09628000 BTC ~ 4,510.81 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00594700 BTC ~ 278.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 91.44 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 81.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,995.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,386.23 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.37 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (199 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 40.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 24.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.83%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630934603" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,999.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 7,199.89 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09628000 BTC ~ 4,510.81 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00594700 BTC ~ 278.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 91.44 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 81.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,995.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,386.23 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.37 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (199 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 40.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 24.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.83%" + } + ] + }, + { + "id": 490, + "type": "message", + "date": "2021-09-07T17:20:19", + "date_unixtime": "1631028019", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630914253" + }, + " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 11,999.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 7,499.69 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08981000 BTC ~ 4,183.88 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00594700 BTC ~ 277.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 97.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 58.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.04 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25004.02 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.79 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (86 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 40.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 25.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.48%" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630914253" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 11,999.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 7,499.69 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08981000 BTC ~ 4,183.88 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00594700 BTC ~ 277.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 97.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 58.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.04 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25004.02 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.79 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (86 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 40.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 25.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.48%" + } + ] + }, + { + "id": 491, + "type": "message", + "date": "2021-09-07T17:52:03", + "date_unixtime": "1631029923", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630946737" + }, + " / Amount: 0.00647000 / Price: 46337.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 12,299.38 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,099.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08352000 BTC ~ 3,883.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00594700 BTC ~ 276.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 109.30 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 69.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.99 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.27 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 273.43 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (312 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 41.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 27.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.34%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.67%\n", + { + "type": "bold", + "text": "This year 27 sells" + }, + " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n", + { + "type": "bold", + "text": "This month 17 sells" + }, + " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00024676 BTC (+11.60 USD), +5.75 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 22.44 USD from volume 149.57 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630946737" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 46337.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 12,299.38 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,099.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08352000 BTC ~ 3,883.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00594700 BTC ~ 276.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 109.30 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 69.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.99 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.27 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 273.43 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (312 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 41.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 27.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.34%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.67%\n" + }, + { + "type": "bold", + "text": "This year 27 sells" + }, + { + "type": "plain", + "text": " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n" + }, + { + "type": "bold", + "text": "This month 17 sells" + }, + { + "type": "plain", + "text": " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00024676 BTC (+11.60 USD), +5.75 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 22.44 USD from volume 149.57 USD" + } + ] + }, + { + "id": 492, + "type": "message", + "date": "2021-09-07T20:18:53", + "date_unixtime": "1631038733", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630946405" + }, + " / Amount: 0.00654000 / Price: 45878.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 12,599.43 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,099.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08994000 BTC ~ 4,153.05 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00606700 BTC ~ 280.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 109.30 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 42.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,700.18 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.46 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 273.01 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (312 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 27.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.36%\n", + { + "type": "bold", + "text": "This year 27 sells" + }, + " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n", + { + "type": "bold", + "text": "This month 17 sells" + }, + " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + " = +0.00024545 BTC (+11.54 USD), +5.72 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 23.11 USD from volume 154.08 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630946405" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 45878.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 12,599.43 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,099.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08994000 BTC ~ 4,153.05 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00606700 BTC ~ 280.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 109.30 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 42.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,700.18 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.46 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 273.01 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (312 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 27.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.36%\n" + }, + { + "type": "bold", + "text": "This year 27 sells" + }, + { + "type": "plain", + "text": " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n" + }, + { + "type": "bold", + "text": "This month 17 sells" + }, + { + "type": "plain", + "text": " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + { + "type": "plain", + "text": " = +0.00024545 BTC (+11.54 USD), +5.72 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 23.11 USD from volume 154.08 USD" + } + ] + }, + { + "id": 493, + "type": "message", + "date": "2021-09-08T02:00:05", + "date_unixtime": "1631059205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630945794" + }, + " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 12,899.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,099.54 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09641000 BTC ~ 4,518.61 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00619700 BTC ~ 290.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 109.30 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 118.67 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,400.29 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.46 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.57 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (312 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 43.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 27.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.80%\n", + { + "type": "bold", + "text": "This year 27 sells" + }, + " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n", + { + "type": "bold", + "text": "This month 17 sells" + }, + " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.40 sells" + }, + " = +0.00024244 BTC (+11.39 USD), +5.65 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 24.04 USD from volume 160.29 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630945794" + }, + { + "type": "plain", + "text": " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 12,899.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,099.54 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09641000 BTC ~ 4,518.61 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00619700 BTC ~ 290.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 109.30 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 118.67 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,400.29 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.46 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.57 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (312 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 43.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 27.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.80%\n" + }, + { + "type": "bold", + "text": "This year 27 sells" + }, + { + "type": "plain", + "text": " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n" + }, + { + "type": "bold", + "text": "This month 17 sells" + }, + { + "type": "plain", + "text": " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.40 sells" + }, + { + "type": "plain", + "text": " = +0.00024244 BTC (+11.39 USD), +5.65 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 24.04 USD from volume 160.29 USD" + } + ] + }, + { + "id": 494, + "type": "message", + "date": "2021-09-08T04:03:20", + "date_unixtime": "1631066600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "631899946" + }, + " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 12,899.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,399.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08981000 BTC ~ 4,245.69 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00632700 BTC ~ 299.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 115.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 160.06 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,406.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.46 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.05 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (195 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 43.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 28.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.93%\n", + { + "type": "bold", + "text": "This year 27 sells" + }, + " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n", + { + "type": "bold", + "text": "This month 17 sells" + }, + " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + " = +0.00024137 BTC (+11.34 USD), +5.63 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 25.21 USD from volume 168.09 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "631899946" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 12,899.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,399.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08981000 BTC ~ 4,245.69 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00632700 BTC ~ 299.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 115.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 160.06 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,406.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.46 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.05 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (195 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 43.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 28.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.93%\n" + }, + { + "type": "bold", + "text": "This year 27 sells" + }, + { + "type": "plain", + "text": " = +0.00468700 BTC (+220.29 USD), +109.30 USD\n" + }, + { + "type": "bold", + "text": "This month 17 sells" + }, + { + "type": "plain", + "text": " = +0.00242200 BTC (+113.83 USD), +92.43 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + { + "type": "plain", + "text": " = +0.00024137 BTC (+11.34 USD), +5.63 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 25.21 USD from volume 168.09 USD" + } + ] + }, + { + "id": 495, + "type": "message", + "date": "2021-09-08T08:21:20", + "date_unixtime": "1631082080", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "632094100" + }, + " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 13,199.03 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,399.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09641000 BTC ~ 4,383.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00632700 BTC ~ 287.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 115.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -12.86 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,406.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.47 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (311 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 44.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 28.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%\n", + { + "type": "bold", + "text": "This year 28 sells" + }, + " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n", + { + "type": "bold", + "text": "This month 18 sells" + }, + " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.43 sells" + }, + " = +0.00024580 BTC (+11.55 USD), +5.88 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 25.14 USD from volume 167.59 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "632094100" + }, + { + "type": "plain", + "text": " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 13,199.03 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,399.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09641000 BTC ~ 4,383.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00632700 BTC ~ 287.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 115.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -12.86 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,406.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.47 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (311 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 44.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 28.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%\n" + }, + { + "type": "bold", + "text": "This year 28 sells" + }, + { + "type": "plain", + "text": " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n" + }, + { + "type": "bold", + "text": "This month 18 sells" + }, + { + "type": "plain", + "text": " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.43 sells" + }, + { + "type": "plain", + "text": " = +0.00024580 BTC (+11.55 USD), +5.88 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 25.14 USD from volume 167.59 USD" + } + ] + }, + { + "id": 496, + "type": "message", + "date": "2021-09-08T10:15:26", + "date_unixtime": "1631088926", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630942919" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 13,499.02 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,399.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10295000 BTC ~ 4,622.13 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00645700 BTC ~ 289.90 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 115.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -72.50 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,106.19 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.48 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.22 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (312 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 45.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 28.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.22%\n", + { + "type": "bold", + "text": "This year 28 sells" + }, + " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n", + { + "type": "bold", + "text": "This month 18 sells" + }, + " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00024481 BTC (+11.51 USD), +5.85 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 26.30 USD from volume 175.31 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630942919" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 13,499.02 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,399.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10295000 BTC ~ 4,622.13 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00645700 BTC ~ 289.90 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 115.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -72.50 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,106.19 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.48 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.22 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (312 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 45.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 28.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.22%\n" + }, + { + "type": "bold", + "text": "This year 28 sells" + }, + { + "type": "plain", + "text": " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n" + }, + { + "type": "bold", + "text": "This month 18 sells" + }, + { + "type": "plain", + "text": " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00024481 BTC (+11.51 USD), +5.85 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 26.30 USD from volume 175.31 USD" + } + ] + }, + { + "id": 497, + "type": "message", + "date": "2021-09-08T10:19:18", + "date_unixtime": "1631089158", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "630929325" + }, + " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 13,799.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,399.35 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10956000 BTC ~ 4,879.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00658700 BTC ~ 293.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 115.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -111.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,806.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.48 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.76 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (252 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 46.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 28.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%\n", + { + "type": "bold", + "text": "This year 28 sells" + }, + " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n", + { + "type": "bold", + "text": "This month 18 sells" + }, + " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00024477 BTC (+11.50 USD), +5.85 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 27.69 USD from volume 184.57 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "630929325" + }, + { + "type": "plain", + "text": " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 13,799.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,399.35 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10956000 BTC ~ 4,879.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00658700 BTC ~ 293.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 115.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -111.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,806.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.48 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.76 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (252 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 46.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 28.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%\n" + }, + { + "type": "bold", + "text": "This year 28 sells" + }, + { + "type": "plain", + "text": " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n" + }, + { + "type": "bold", + "text": "This month 18 sells" + }, + { + "type": "plain", + "text": " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00024477 BTC (+11.50 USD), +5.85 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 27.69 USD from volume 184.57 USD" + } + ] + }, + { + "id": 498, + "type": "message", + "date": "2021-09-08T12:51:17", + "date_unixtime": "1631098277", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "632753002" + }, + " / Amount: 0.00582000 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 13,799.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,699.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10282000 BTC ~ 4,773.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00671700 BTC ~ 311.86 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 121.13 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 107.10 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,812.37 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.48 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.55 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (194 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 46.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 29.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.74%\n", + { + "type": "bold", + "text": "This year 28 sells" + }, + " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n", + { + "type": "bold", + "text": "This month 18 sells" + }, + " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00024347 BTC (+11.44 USD), +5.82 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 29.29 USD from volume 195.28 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "632753002" + }, + { + "type": "plain", + "text": " / Amount: 0.00582000 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 13,799.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,699.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10282000 BTC ~ 4,773.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00671700 BTC ~ 311.86 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 121.13 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 107.10 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,812.37 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.48 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.55 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (194 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 46.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 29.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.74%\n" + }, + { + "type": "bold", + "text": "This year 28 sells" + }, + { + "type": "plain", + "text": " = +0.00481700 BTC (+226.40 USD), +115.15 USD\n" + }, + { + "type": "bold", + "text": "This month 18 sells" + }, + { + "type": "plain", + "text": " = +0.00255200 BTC (+119.94 USD), +98.28 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00024347 BTC (+11.44 USD), +5.82 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 29.29 USD from volume 195.28 USD" + } + ] + }, + { + "id": 499, + "type": "message", + "date": "2021-09-08T13:12:35", + "date_unixtime": "1631099555", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "632742237" + }, + " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 13,799.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 8,999.46 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09628000 BTC ~ 4,497.67 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00671700 BTC ~ 313.78 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 127.05 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 138.81 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,118.11 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.48 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.96 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (192 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 46.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 30.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%\n", + { + "type": "bold", + "text": "This year 29 sells" + }, + " = +0.00494700 BTC (+232.51 USD), +121.14 USD\n", + { + "type": "bold", + "text": "This month 19 sells" + }, + " = +0.00268200 BTC (+126.05 USD), +104.27 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.46 sells" + }, + " = +0.00024985 BTC (+11.74 USD), +6.12 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 28.45 USD from volume 189.66 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "632742237" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 13,799.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 8,999.46 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09628000 BTC ~ 4,497.67 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00671700 BTC ~ 313.78 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 127.05 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 138.81 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,118.11 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.48 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.96 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (192 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 46.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 30.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%\n" + }, + { + "type": "bold", + "text": "This year 29 sells" + }, + { + "type": "plain", + "text": " = +0.00494700 BTC (+232.51 USD), +121.14 USD\n" + }, + { + "type": "bold", + "text": "This month 19 sells" + }, + { + "type": "plain", + "text": " = +0.00268200 BTC (+126.05 USD), +104.27 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.46 sells" + }, + { + "type": "plain", + "text": " = +0.00024985 BTC (+11.74 USD), +6.12 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 28.45 USD from volume 189.66 USD" + } + ] + }, + { + "id": 500, + "type": "message", + "date": "2021-09-09T15:13:41", + "date_unixtime": "1631193221", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "632482774" + }, + " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 13,799.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,299.26 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08981000 BTC ~ 4,216.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00671700 BTC ~ 315.36 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 132.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 164.91 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,423.75 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.46 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.34 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (191 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 46.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 31.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.25%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.63%\n", + { + "type": "bold", + "text": "This year 30 sells" + }, + " = +0.00507700 BTC (+238.62 USD), +127.06 USD\n", + { + "type": "bold", + "text": "This month 20 sells" + }, + " = +0.00281200 BTC (+132.16 USD), +110.18 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.44 sells" + }, + " = +0.00024311 BTC (+11.43 USD), +6.08 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 28.07 USD from volume 187.12 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "632482774" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 13,799.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,299.26 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08981000 BTC ~ 4,216.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00671700 BTC ~ 315.36 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 132.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 164.91 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,423.75 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.46 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.34 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (191 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 46.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 31.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.25%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.63%\n" + }, + { + "type": "bold", + "text": "This year 30 sells" + }, + { + "type": "plain", + "text": " = +0.00507700 BTC (+238.62 USD), +127.06 USD\n" + }, + { + "type": "bold", + "text": "This month 20 sells" + }, + { + "type": "plain", + "text": " = +0.00281200 BTC (+132.16 USD), +110.18 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.44 sells" + }, + { + "type": "plain", + "text": " = +0.00024311 BTC (+11.43 USD), +6.08 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 28.07 USD from volume 187.12 USD" + } + ] + }, + { + "id": 501, + "type": "message", + "date": "2021-09-10T16:06:32", + "date_unixtime": "1631282792", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "635192773" + }, + " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,098.95 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,299.26 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09641000 BTC ~ 4,400.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00671700 BTC ~ 306.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 132.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 39.84 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,423.90 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.42 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.95 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (308 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 31.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.53%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.55%\n", + { + "type": "bold", + "text": "This year 31 sells" + }, + " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n", + { + "type": "bold", + "text": "This month 21 sells" + }, + " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + " = +0.00023754 BTC (+11.16 USD), +6.06 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 28.15 USD from volume 187.64 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "635192773" + }, + { + "type": "plain", + "text": " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,098.95 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,299.26 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09641000 BTC ~ 4,400.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00671700 BTC ~ 306.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 132.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 39.84 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,423.90 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.42 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.95 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (308 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 31.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.53%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.55%\n" + }, + { + "type": "bold", + "text": "This year 31 sells" + }, + { + "type": "plain", + "text": " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n" + }, + { + "type": "bold", + "text": "This month 21 sells" + }, + { + "type": "plain", + "text": " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + { + "type": "plain", + "text": " = +0.00023754 BTC (+11.16 USD), +6.06 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 28.15 USD from volume 187.64 USD" + } + ] + }, + { + "id": 502, + "type": "message", + "date": "2021-09-10T17:00:18", + "date_unixtime": "1631286018", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "633104861" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,398.93 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,299.26 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10295000 BTC ~ 4,656.73 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00684700 BTC ~ 309.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 132.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -0.32 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,123.95 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.51 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (308 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 48.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 31.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.60%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.44%\n", + { + "type": "bold", + "text": "This year 31 sells" + }, + " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n", + { + "type": "bold", + "text": "This month 21 sells" + }, + " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + " = +0.00023714 BTC (+11.15 USD), +6.05 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 29.25 USD from volume 195.00 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "633104861" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,398.93 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,299.26 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10295000 BTC ~ 4,656.73 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00684700 BTC ~ 309.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 132.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -0.32 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,123.95 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.51 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (308 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 48.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 31.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.60%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.44%\n" + }, + { + "type": "bold", + "text": "This year 31 sells" + }, + { + "type": "plain", + "text": " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n" + }, + { + "type": "bold", + "text": "This month 21 sells" + }, + { + "type": "plain", + "text": " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + { + "type": "plain", + "text": " = +0.00023714 BTC (+11.15 USD), +6.05 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 29.25 USD from volume 195.00 USD" + } + ] + }, + { + "id": 503, + "type": "message", + "date": "2021-09-10T23:48:29", + "date_unixtime": "1631310509", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "633061053" + }, + " / Amount: 0.00013000 / Price: 44529.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,699.06 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,299.26 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10956000 BTC ~ 4,877.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00697700 BTC ~ 310.63 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 132.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -78.47 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,823.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.17 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.05 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (309 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 49.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 31.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%\n", + { + "type": "bold", + "text": "This year 31 sells" + }, + " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n", + { + "type": "bold", + "text": "This month 21 sells" + }, + " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + " = +0.00023411 BTC (+11.00 USD), +5.98 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 30.60 USD from volume 203.99 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "633061053" + }, + { + "type": "plain", + "text": " / Amount: 0.00013000 / Price: 44529.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,699.06 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,299.26 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10956000 BTC ~ 4,877.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00697700 BTC ~ 310.63 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 132.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -78.47 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,823.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.17 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.05 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (309 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 49.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 31.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%\n" + }, + { + "type": "bold", + "text": "This year 31 sells" + }, + { + "type": "plain", + "text": " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n" + }, + { + "type": "bold", + "text": "This month 21 sells" + }, + { + "type": "plain", + "text": " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + { + "type": "plain", + "text": " = +0.00023411 BTC (+11.00 USD), +5.98 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 30.60 USD from volume 203.99 USD" + } + ] + }, + { + "id": 504, + "type": "message", + "date": "2021-09-13T01:06:58", + "date_unixtime": "1631488018", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "637523239" + }, + " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,699.06 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,599.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10282000 BTC ~ 4,762.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00710700 BTC ~ 329.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 138.89 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 130.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,830.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.85 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (191 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 49.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 32.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%\n", + { + "type": "bold", + "text": "This year 31 sells" + }, + " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n", + { + "type": "bold", + "text": "This month 21 sells" + }, + " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.28 sells" + }, + " = +0.00021432 BTC (+10.07 USD), +5.47 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 32.18 USD from volume 214.55 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "637523239" + }, + { + "type": "plain", + "text": " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,699.06 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,599.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10282000 BTC ~ 4,762.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00710700 BTC ~ 329.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 138.89 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 130.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,830.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.85 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (191 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 49.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 32.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%\n" + }, + { + "type": "bold", + "text": "This year 31 sells" + }, + { + "type": "plain", + "text": " = +0.00520700 BTC (+244.73 USD), +132.91 USD\n" + }, + { + "type": "bold", + "text": "This month 21 sells" + }, + { + "type": "plain", + "text": " = +0.00294200 BTC (+138.27 USD), +116.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.28 sells" + }, + { + "type": "plain", + "text": " = +0.00021432 BTC (+10.07 USD), +5.47 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 32.18 USD from volume 214.55 USD" + } + ] + }, + { + "id": 505, + "type": "message", + "date": "2021-09-13T06:14:38", + "date_unixtime": "1631506478", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "640891504" + }, + " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,999.19 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,599.39 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10956000 BTC ~ 4,878.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00710700 BTC ~ 316.47 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 138.89 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -65.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,829.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.15 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (308 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 50.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 32.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.04%\n", + { + "type": "bold", + "text": "This year 32 sells" + }, + " = +0.00533700 BTC (+250.84 USD), +138.89 USD\n", + { + "type": "bold", + "text": "This month 22 sells" + }, + " = +0.00307200 BTC (+144.38 USD), +122.02 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.31 sells" + }, + " = +0.00021775 BTC (+10.23 USD), +5.67 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 31.48 USD from volume 209.84 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "640891504" + }, + { + "type": "plain", + "text": " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,999.19 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,599.39 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10956000 BTC ~ 4,878.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00710700 BTC ~ 316.47 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 138.89 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -65.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,829.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.15 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (308 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 50.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 32.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.04%\n" + }, + { + "type": "bold", + "text": "This year 32 sells" + }, + { + "type": "plain", + "text": " = +0.00533700 BTC (+250.84 USD), +138.89 USD\n" + }, + { + "type": "bold", + "text": "This month 22 sells" + }, + { + "type": "plain", + "text": " = +0.00307200 BTC (+144.38 USD), +122.02 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.31 sells" + }, + { + "type": "plain", + "text": " = +0.00021775 BTC (+10.23 USD), +5.67 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 31.48 USD from volume 209.84 USD" + } + ] + }, + { + "id": 506, + "type": "message", + "date": "2021-09-13T15:45:41", + "date_unixtime": "1631540741", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "641342638" + }, + " / Amount: 0.00594000 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,999.19 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 9,899.52 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10282000 BTC ~ 4,786.60 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00723700 BTC ~ 336.91 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 144.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 168.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,836.11 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.95 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (189 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 50.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 33.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.35%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.47%\n", + { + "type": "bold", + "text": "This year 32 sells" + }, + " = +0.00533700 BTC (+250.84 USD), +138.89 USD\n", + { + "type": "bold", + "text": "This month 22 sells" + }, + " = +0.00307200 BTC (+144.38 USD), +122.02 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.28 sells" + }, + " = +0.00021429 BTC (+10.07 USD), +5.58 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 33.04 USD from volume 220.29 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "641342638" + }, + { + "type": "plain", + "text": " / Amount: 0.00594000 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,999.19 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 9,899.52 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10282000 BTC ~ 4,786.60 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00723700 BTC ~ 336.91 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 144.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 168.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,836.11 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.95 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (189 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 50.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 33.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.35%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.47%\n" + }, + { + "type": "bold", + "text": "This year 32 sells" + }, + { + "type": "plain", + "text": " = +0.00533700 BTC (+250.84 USD), +138.89 USD\n" + }, + { + "type": "bold", + "text": "This month 22 sells" + }, + { + "type": "plain", + "text": " = +0.00307200 BTC (+144.38 USD), +122.02 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.28 sells" + }, + { + "type": "plain", + "text": " = +0.00021429 BTC (+10.07 USD), +5.58 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 33.04 USD from volume 220.29 USD" + } + ] + }, + { + "id": 507, + "type": "message", + "date": "2021-09-13T15:46:29", + "date_unixtime": "1631540789", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "637071754" + }, + " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 14,999.19 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,199.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09628000 BTC ~ 4,503.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00723700 BTC ~ 338.53 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 150.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 193.42 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,141.85 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.35 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (188 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 50.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 34.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%\n", + { + "type": "bold", + "text": "This year 33 sells" + }, + " = +0.00546700 BTC (+256.95 USD), +144.88 USD\n", + { + "type": "bold", + "text": "This month 23 sells" + }, + " = +0.00320200 BTC (+150.49 USD), +128.00 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + " = +0.00021950 BTC (+10.32 USD), +5.82 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 32.39 USD from volume 215.92 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "637071754" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 14,999.19 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,199.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09628000 BTC ~ 4,503.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00723700 BTC ~ 338.53 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 150.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 193.42 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,141.85 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.35 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (188 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 50.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 34.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%\n" + }, + { + "type": "bold", + "text": "This year 33 sells" + }, + { + "type": "plain", + "text": " = +0.00546700 BTC (+256.95 USD), +144.88 USD\n" + }, + { + "type": "bold", + "text": "This month 23 sells" + }, + { + "type": "plain", + "text": " = +0.00320200 BTC (+150.49 USD), +128.00 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + { + "type": "plain", + "text": " = +0.00021950 BTC (+10.32 USD), +5.82 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 32.39 USD from volume 215.92 USD" + } + ] + }, + { + "id": 508, + "type": "message", + "date": "2021-09-13T16:03:39", + "date_unixtime": "1631541819", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "642150947" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 15,299.17 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,199.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10295000 BTC ~ 4,593.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00723700 BTC ~ 322.94 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 150.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -31.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,141.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.80 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (305 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 51.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 34.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.31%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.87%\n", + { + "type": "bold", + "text": "This year 34 sells" + }, + " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + " = +0.00022461 BTC (+10.56 USD), +6.05 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 32.19 USD from volume 214.63 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "642150947" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 15,299.17 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,199.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10295000 BTC ~ 4,593.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00723700 BTC ~ 322.94 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 150.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -31.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,141.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.80 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (305 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 51.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 34.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.31%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.87%\n" + }, + { + "type": "bold", + "text": "This year 34 sells" + }, + { + "type": "plain", + "text": " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + { + "type": "plain", + "text": " = +0.00022461 BTC (+10.56 USD), +6.05 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 32.19 USD from volume 214.63 USD" + } + ] + }, + { + "id": 509, + "type": "message", + "date": "2021-09-13T16:04:28", + "date_unixtime": "1631541868", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "642148503" + }, + " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 15,599.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,199.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10956000 BTC ~ 4,884.38 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00736700 BTC ~ 328.43 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 150.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -36.19 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,841.86 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 267.35 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (367 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 52.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 34.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.33%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.92%\n", + { + "type": "bold", + "text": "This year 34 sells" + }, + " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + " = +0.00022461 BTC (+10.56 USD), +6.05 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 33.49 USD from volume 223.27 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "642148503" + }, + { + "type": "plain", + "text": " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 15,599.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,199.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10956000 BTC ~ 4,884.38 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00736700 BTC ~ 328.43 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 150.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -36.19 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,841.86 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 267.35 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (367 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 52.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 34.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.33%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.92%\n" + }, + { + "type": "bold", + "text": "This year 34 sells" + }, + { + "type": "plain", + "text": " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + { + "type": "plain", + "text": " = +0.00022461 BTC (+10.56 USD), +6.05 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 33.49 USD from volume 223.27 USD" + } + ] + }, + { + "id": 510, + "type": "message", + "date": "2021-09-13T16:04:44", + "date_unixtime": "1631541884", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "631028850" + }, + " / Amount: 0.00680000 / Price: 44088.78000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 15,899.11 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,199.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.11623000 BTC ~ 5,176.37 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00749700 BTC ~ 333.88 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 150.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -38.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,541.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,299.18 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.88 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (306 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 53.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 34.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.03%\n", + { + "type": "bold", + "text": "This year 34 sells" + }, + " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + " = +0.00022461 BTC (+10.56 USD), +6.05 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 35.04 USD from volume 233.58 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "631028850" + }, + { + "type": "plain", + "text": " / Amount: 0.00680000 / Price: 44088.78000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 15,899.11 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,199.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.11623000 BTC ~ 5,176.37 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00749700 BTC ~ 333.88 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 150.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -38.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,541.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,299.18 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.88 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (306 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 53.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 34.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.03%\n" + }, + { + "type": "bold", + "text": "This year 34 sells" + }, + { + "type": "plain", + "text": " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + { + "type": "plain", + "text": " = +0.00022461 BTC (+10.56 USD), +6.05 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 35.04 USD from volume 233.58 USD" + } + ] + }, + { + "id": 511, + "type": "message", + "date": "2021-09-13T16:19:48", + "date_unixtime": "1631542788", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "631350582" + }, + " / Amount: 0.00539000 / Price: 43652.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,199.50 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12297000 BTC ~ 5,340.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00762700 BTC ~ 331.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 150.79 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -176.61 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.09 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,019.92 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.39 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (306 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 34.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.67%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.57%\n", + { + "type": "bold", + "text": "This year 34 sells" + }, + " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + " = +0.00022451 BTC (+10.55 USD), +6.05 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 36.82 USD from volume 245.44 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "631350582" + }, + { + "type": "plain", + "text": " / Amount: 0.00539000 / Price: 43652.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,199.50 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12297000 BTC ~ 5,340.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00762700 BTC ~ 331.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 150.79 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -176.61 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.09 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,019.92 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.39 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (306 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 34.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.67%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.57%\n" + }, + { + "type": "bold", + "text": "This year 34 sells" + }, + { + "type": "plain", + "text": " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + { + "type": "plain", + "text": " = +0.00022451 BTC (+10.55 USD), +6.05 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 36.82 USD from volume 245.44 USD" + } + ] + }, + { + "id": 512, + "type": "message", + "date": "2021-09-13T23:00:30", + "date_unixtime": "1631566830", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "642236004" + }, + " / Amount: 0.00674000 / Price: 45398.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,499.40 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.11610000 BTC ~ 5,279.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 352.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 156.88 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 89.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,827.07 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,719.92 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.52 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (188 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 35.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.82%\n", + { + "type": "bold", + "text": "This year 34 sells" + }, + " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.35 sells" + }, + " = +0.00022203 BTC (+10.44 USD), +5.98 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 38.82 USD from volume 258.79 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "642236004" + }, + { + "type": "plain", + "text": " / Amount: 0.00674000 / Price: 45398.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,499.40 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.11610000 BTC ~ 5,279.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 352.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 156.88 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 89.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,827.07 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,719.92 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.52 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (188 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 35.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.82%\n" + }, + { + "type": "bold", + "text": "This year 34 sells" + }, + { + "type": "plain", + "text": " = +0.00559700 BTC (+263.06 USD), +150.80 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00333200 BTC (+156.60 USD), +133.92 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.35 sells" + }, + { + "type": "plain", + "text": " = +0.00022203 BTC (+10.44 USD), +5.98 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 38.82 USD from volume 258.79 USD" + } + ] + }, + { + "id": 513, + "type": "message", + "date": "2021-09-14T09:00:53", + "date_unixtime": "1631602853", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "642197628" + }, + " / Amount: 0.00667000 / Price: 45852.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 10,799.20 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10943000 BTC ~ 5,017.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 355.66 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 162.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 136.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,132.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,719.92 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.94 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (186 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 36.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%\n", + { + "type": "bold", + "text": "This year 35 sells" + }, + " = +0.00572700 BTC (+269.17 USD), +156.89 USD\n", + { + "type": "bold", + "text": "This month 25 sells" + }, + " = +0.00346200 BTC (+162.71 USD), +140.02 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.37 sells" + }, + " = +0.00022349 BTC (+10.50 USD), +6.12 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 37.43 USD from volume 249.56 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "642197628" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 45852.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 10,799.20 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10943000 BTC ~ 5,017.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 355.66 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 162.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 136.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,132.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,719.92 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.94 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (186 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 36.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%\n" + }, + { + "type": "bold", + "text": "This year 35 sells" + }, + { + "type": "plain", + "text": " = +0.00572700 BTC (+269.17 USD), +156.89 USD\n" + }, + { + "type": "bold", + "text": "This month 25 sells" + }, + { + "type": "plain", + "text": " = +0.00346200 BTC (+162.71 USD), +140.02 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.37 sells" + }, + { + "type": "plain", + "text": " = +0.00022349 BTC (+10.50 USD), +6.12 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 37.43 USD from volume 249.56 USD" + } + ] + }, + { + "id": 514, + "type": "message", + "date": "2021-09-14T14:32:33", + "date_unixtime": "1631622753", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "642196861" + }, + " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 11,099.33 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10282000 BTC ~ 4,761.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 359.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 168.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 189.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,439.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,719.93 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.35 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (185 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 37.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%\n", + { + "type": "bold", + "text": "This year 36 sells" + }, + " = +0.00585700 BTC (+275.28 USD), +162.92 USD\n", + { + "type": "bold", + "text": "This month 26 sells" + }, + " = +0.00359200 BTC (+168.82 USD), +146.05 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + " = +0.00022653 BTC (+10.65 USD), +6.30 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 36.52 USD from volume 243.45 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "642196861" + }, + { + "type": "plain", + "text": " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 11,099.33 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10282000 BTC ~ 4,761.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 359.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 168.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 189.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,439.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,719.93 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.35 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (185 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 37.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%\n" + }, + { + "type": "bold", + "text": "This year 36 sells" + }, + { + "type": "plain", + "text": " = +0.00585700 BTC (+275.28 USD), +162.92 USD\n" + }, + { + "type": "bold", + "text": "This month 26 sells" + }, + { + "type": "plain", + "text": " = +0.00359200 BTC (+168.82 USD), +146.05 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + { + "type": "plain", + "text": " = +0.00022653 BTC (+10.65 USD), +6.30 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 36.52 USD from volume 243.45 USD" + } + ] + }, + { + "id": 515, + "type": "message", + "date": "2021-09-14T17:04:22", + "date_unixtime": "1631631862", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "642193843" + }, + " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 11,399.31 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09628000 BTC ~ 4,498.03 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 362.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 174.82 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 235.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,744.87 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,719.94 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.74 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (184 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 38.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.70%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%\n", + { + "type": "bold", + "text": "This year 37 sells" + }, + " = +0.00598700 BTC (+281.39 USD), +168.91 USD\n", + { + "type": "bold", + "text": "This month 27 sells" + }, + " = +0.00372200 BTC (+174.93 USD), +152.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.43 sells" + }, + " = +0.00023062 BTC (+10.84 USD), +6.51 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 36.07 USD from volume 240.43 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "642193843" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 11,399.31 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09628000 BTC ~ 4,498.03 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 362.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 174.82 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 235.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,744.87 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,719.94 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.74 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (184 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 38.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.70%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%\n" + }, + { + "type": "bold", + "text": "This year 37 sells" + }, + { + "type": "plain", + "text": " = +0.00598700 BTC (+281.39 USD), +168.91 USD\n" + }, + { + "type": "bold", + "text": "This month 27 sells" + }, + { + "type": "plain", + "text": " = +0.00372200 BTC (+174.93 USD), +152.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.43 sells" + }, + { + "type": "plain", + "text": " = +0.00023062 BTC (+10.84 USD), +6.51 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 36.07 USD from volume 240.43 USD" + } + ] + }, + { + "id": 516, + "type": "message", + "date": "2021-09-15T00:23:06", + "date_unixtime": "1631658186", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "636954674" + }, + " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 11,699.12 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08981000 BTC ~ 4,227.02 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 365.09 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 180.67 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 272.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,770.42 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.12 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (182 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 39.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.55%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.38%\n", + { + "type": "bold", + "text": "This year 38 sells" + }, + " = +0.00611700 BTC (+287.50 USD), +174.82 USD\n", + { + "type": "bold", + "text": "This month 28 sells" + }, + " = +0.00385200 BTC (+181.04 USD), +157.95 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.45 sells" + }, + " = +0.00023289 BTC (+10.95 USD), +6.66 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 36.07 USD from volume 240.48 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "636954674" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 11,699.12 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08981000 BTC ~ 4,227.02 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 365.09 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 180.67 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 272.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,770.42 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.12 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (182 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 39.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.55%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.38%\n" + }, + { + "type": "bold", + "text": "This year 38 sells" + }, + { + "type": "plain", + "text": " = +0.00611700 BTC (+287.50 USD), +174.82 USD\n" + }, + { + "type": "bold", + "text": "This month 28 sells" + }, + { + "type": "plain", + "text": " = +0.00385200 BTC (+181.04 USD), +157.95 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.45 sells" + }, + { + "type": "plain", + "text": " = +0.00023289 BTC (+10.95 USD), +6.66 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 36.07 USD from volume 240.48 USD" + } + ] + }, + { + "id": 517, + "type": "message", + "date": "2021-09-15T15:31:47", + "date_unixtime": "1631712707", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "631350285" + }, + " / Amount: 0.00641000 / Price: 47714.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 11,999.16 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08340000 BTC ~ 3,970.17 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 369.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 186.47 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 326.07 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,076.22 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.48 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (181 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 40.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.61%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.23%\n", + { + "type": "bold", + "text": "This year 39 sells" + }, + " = +0.00624700 BTC (+293.61 USD), +180.68 USD\n", + { + "type": "bold", + "text": "This month 29 sells" + }, + " = +0.00398200 BTC (+187.15 USD), +163.80 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.45 sells" + }, + " = +0.00023226 BTC (+10.92 USD), +6.72 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 36.53 USD from volume 243.54 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "631350285" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 47714.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 11,999.16 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08340000 BTC ~ 3,970.17 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 369.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 186.47 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 326.07 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,076.22 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.48 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (181 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 40.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.61%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.23%\n" + }, + { + "type": "bold", + "text": "This year 39 sells" + }, + { + "type": "plain", + "text": " = +0.00624700 BTC (+293.61 USD), +180.68 USD\n" + }, + { + "type": "bold", + "text": "This month 29 sells" + }, + { + "type": "plain", + "text": " = +0.00398200 BTC (+187.15 USD), +163.80 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.45 sells" + }, + { + "type": "plain", + "text": " = +0.00023226 BTC (+10.92 USD), +6.72 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 36.53 USD from volume 243.54 USD" + } + ] + }, + { + "id": 518, + "type": "message", + "date": "2021-09-15T17:31:51", + "date_unixtime": "1631719911", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "631028569" + }, + " / Amount: 0.00635000 / Price: 48191.27000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,298.97 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07705000 BTC ~ 3,712.23 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 373.73 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 192.68 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 378.61 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,381.89 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.84 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (180 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 41.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.02%\n", + { + "type": "bold", + "text": "This year 40 sells" + }, + " = +0.00637700 BTC (+299.72 USD), +186.47 USD\n", + { + "type": "bold", + "text": "This month 30 sells" + }, + " = +0.00411200 BTC (+193.26 USD), +169.60 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.48 sells" + }, + " = +0.00023636 BTC (+11.11 USD), +6.91 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 37.44 USD from volume 249.61 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "631028569" + }, + { + "type": "plain", + "text": " / Amount: 0.00635000 / Price: 48191.27000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,298.97 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07705000 BTC ~ 3,712.23 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 373.73 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 192.68 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 378.61 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,381.89 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.84 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (180 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 41.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.02%\n" + }, + { + "type": "bold", + "text": "This year 40 sells" + }, + { + "type": "plain", + "text": " = +0.00637700 BTC (+299.72 USD), +186.47 USD\n" + }, + { + "type": "bold", + "text": "This month 30 sells" + }, + { + "type": "plain", + "text": " = +0.00411200 BTC (+193.26 USD), +169.60 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.48 sells" + }, + { + "type": "plain", + "text": " = +0.00023636 BTC (+11.11 USD), +6.91 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 37.44 USD from volume 249.61 USD" + } + ] + }, + { + "id": 519, + "type": "message", + "date": "2021-09-18T07:47:32", + "date_unixtime": "1631944052", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630911112" + }, + " / Amount: 0.00629000 / Price: 48673.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,199.00 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07076000 BTC ~ 3,443.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 377.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 420.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,687.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.18 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (179 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%\n", + { + "type": "bold", + "text": "This year 41 sells" + }, + " = +0.00649700 BTC (+305.36 USD), +192.68 USD\n", + { + "type": "bold", + "text": "This month 31 sells" + }, + " = +0.00423200 BTC (+198.90 USD), +175.81 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + " = +0.00021969 BTC (+10.33 USD), +6.52 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 38.80 USD from volume 258.65 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630911112" + }, + { + "type": "plain", + "text": " / Amount: 0.00629000 / Price: 48673.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,199.00 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07076000 BTC ~ 3,443.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 377.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 420.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,687.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.18 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (179 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%\n" + }, + { + "type": "bold", + "text": "This year 41 sells" + }, + { + "type": "plain", + "text": " = +0.00649700 BTC (+305.36 USD), +192.68 USD\n" + }, + { + "type": "bold", + "text": "This month 31 sells" + }, + { + "type": "plain", + "text": " = +0.00423200 BTC (+198.90 USD), +175.81 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.39 sells" + }, + { + "type": "plain", + "text": " = +0.00021969 BTC (+10.33 USD), +6.52 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 38.80 USD from volume 258.65 USD" + } + ] + }, + { + "id": 520, + "type": "message", + "date": "2021-09-20T02:31:28", + "date_unixtime": "1632097888", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "649571023" + }, + " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,498.99 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07717000 BTC ~ 3,611.34 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00775700 BTC ~ 363.01 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 273.15 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,697.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.19 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (293 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 55.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.04%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + " = +0.00021104 BTC (+9.92 USD), +6.34 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 40.60 USD from volume 270.64 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "649571023" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 46801.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,498.99 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07717000 BTC ~ 3,611.34 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00775700 BTC ~ 363.01 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 273.15 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,697.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.19 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (293 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 55.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.04%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + { + "type": "plain", + "text": " = +0.00021104 BTC (+9.92 USD), +6.34 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 40.60 USD from volume 270.64 USD" + } + ] + }, + { + "id": 521, + "type": "message", + "date": "2021-09-20T04:34:48", + "date_unixtime": "1632105288", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "645507184" + }, + " / Amount: 0.00647000 / Price: 46337.76000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 16,798.80 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08352000 BTC ~ 3,856.66 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00787700 BTC ~ 363.73 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 219.39 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,697.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 274.81 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (294 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 56.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.74%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.41%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + " = +0.00021046 BTC (+9.89 USD), +6.32 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 40.57 USD from volume 270.48 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "645507184" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 46337.76000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 16,798.80 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08352000 BTC ~ 3,856.66 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00787700 BTC ~ 363.73 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 219.39 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,697.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 274.81 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (294 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 56.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.74%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.41%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + { + "type": "plain", + "text": " = +0.00021046 BTC (+9.89 USD), +6.32 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 40.57 USD from volume 270.48 USD" + } + ] + }, + { + "id": 522, + "type": "message", + "date": "2021-09-20T04:35:39", + "date_unixtime": "1632105339", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "645359595" + }, + " / Amount: 0.00654000 / Price: 45878.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 17,098.85 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08994000 BTC ~ 4,137.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00799700 BTC ~ 367.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 204.38 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,697.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 274.41 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (294 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.32%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.76%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + " = +0.00021046 BTC (+9.89 USD), +6.32 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 40.88 USD from volume 272.52 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "645359595" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 45878.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 17,098.85 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08994000 BTC ~ 4,137.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00799700 BTC ~ 367.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 204.38 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,697.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 274.41 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (294 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.32%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.76%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + { + "type": "plain", + "text": " = +0.00021046 BTC (+9.89 USD), +6.32 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 40.88 USD from volume 272.52 USD" + } + ] + }, + { + "id": 523, + "type": "message", + "date": "2021-09-20T05:03:45", + "date_unixtime": "1632107025", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "644404186" + }, + " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 17,398.65 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09641000 BTC ~ 4,369.33 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00812700 BTC ~ 368.32 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 136.80 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.31 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,697.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.66 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 274.00 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (295 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 58.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.28%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + " = +0.00021033 BTC (+9.89 USD), +6.32 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 41.50 USD from volume 276.67 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "644404186" + }, + { + "type": "plain", + "text": " / Amount: 0.00660000 / Price: 45424.72000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 17,398.65 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09641000 BTC ~ 4,369.33 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00812700 BTC ~ 368.32 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 136.80 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.31 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,697.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.66 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 274.00 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (295 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 58.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.28%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.34 sells" + }, + { + "type": "plain", + "text": " = +0.00021033 BTC (+9.89 USD), +6.32 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 41.50 USD from volume 276.67 USD" + } + ] + }, + { + "id": 524, + "type": "message", + "date": "2021-09-20T09:35:16", + "date_unixtime": "1632123316", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "643943092" + }, + " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 17,698.63 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10295000 BTC ~ 4,589.98 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00825700 BTC ~ 368.13 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 57.28 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,790.36 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,697.77 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.65 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (356 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 59.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.22%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.96%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.33 sells" + }, + " = +0.00020908 BTC (+9.83 USD), +6.28 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 42.42 USD from volume 282.83 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "643943092" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 44974.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 17,698.63 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10295000 BTC ~ 4,589.98 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00825700 BTC ~ 368.13 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 57.28 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,790.36 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,697.77 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.65 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (356 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 59.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.22%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.96%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.33 sells" + }, + { + "type": "plain", + "text": " = +0.00020908 BTC (+9.83 USD), +6.28 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 42.42 USD from volume 282.83 USD" + } + ] + }, + { + "id": 525, + "type": "message", + "date": "2021-09-20T09:35:32", + "date_unixtime": "1632123332", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "652069115" + }, + " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 17,998.76 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10956000 BTC ~ 4,904.35 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00838700 BTC ~ 375.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 78.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,490.39 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,697.77 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 273.13 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (296 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 60.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.56%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.53%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.33 sells" + }, + " = +0.00020907 BTC (+9.83 USD), +6.28 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 43.64 USD from volume 290.93 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "652069115" + }, + { + "type": "plain", + "text": " / Amount: 0.00674000 / Price: 44529.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 17,998.76 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10956000 BTC ~ 4,904.35 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00838700 BTC ~ 375.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 78.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,490.39 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,697.77 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 273.13 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (296 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 60.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.56%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.53%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.33 sells" + }, + { + "type": "plain", + "text": " = +0.00020907 BTC (+9.83 USD), +6.28 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 43.64 USD from volume 290.93 USD" + } + ] + }, + { + "id": 526, + "type": "message", + "date": "2021-09-20T13:29:08", + "date_unixtime": "1632137348", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "652222147" + }, + " / Amount: 0.00680000 / Price: 44088.78000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 18,298.57 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.11623000 BTC ~ 5,122.84 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00851700 BTC ~ 375.39 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -2.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,366.88 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (296 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 61.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.97%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.07%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + " = +0.00020801 BTC (+9.78 USD), +6.25 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 45.13 USD from volume 300.88 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "652222147" + }, + { + "type": "plain", + "text": " / Amount: 0.00680000 / Price: 44088.78000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 18,298.57 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.11623000 BTC ~ 5,122.84 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00851700 BTC ~ 375.39 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -2.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,366.88 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (296 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 61.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.97%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.07%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + { + "type": "plain", + "text": " = +0.00020801 BTC (+9.78 USD), +6.25 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 45.13 USD from volume 300.88 USD" + } + ] + }, + { + "id": 527, + "type": "message", + "date": "2021-09-20T13:30:05", + "date_unixtime": "1632137405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "652225687" + }, + " / Amount: 0.00284000 / Price: 43652.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 18,598.46 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12297000 BTC ~ 5,378.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00864700 BTC ~ 378.24 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -43.48 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,221.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,088.00 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26019.29 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.20 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (297 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 62.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.27%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.82%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + " = +0.00020800 BTC (+9.78 USD), +6.25 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 46.89 USD from volume 312.59 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "652225687" + }, + { + "type": "plain", + "text": " / Amount: 0.00284000 / Price: 43652.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 18,598.46 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12297000 BTC ~ 5,378.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00864700 BTC ~ 378.24 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -43.48 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,221.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,088.00 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26019.29 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.20 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (297 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 62.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.27%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.82%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + { + "type": "plain", + "text": " = +0.00020800 BTC (+9.78 USD), +6.25 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 46.89 USD from volume 312.59 USD" + } + ] + }, + { + "id": 528, + "type": "message", + "date": "2021-09-20T14:22:57", + "date_unixtime": "1632140577", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "652283900" + }, + " / Amount: 0.00694000 / Price: 43220.06000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 18,898.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12978000 BTC ~ 5,622.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00877700 BTC ~ 380.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -97.69 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.05 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,766.77 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.71 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (297 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 63.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.30%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.79%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + " = +0.00020776 BTC (+9.76 USD), +6.24 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 48.90 USD from volume 326.01 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "652283900" + }, + { + "type": "plain", + "text": " / Amount: 0.00694000 / Price: 43220.06000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 18,898.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12978000 BTC ~ 5,622.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00877700 BTC ~ 380.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -97.69 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.05 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,766.77 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.71 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (297 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 63.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.30%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.79%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + { + "type": "plain", + "text": " = +0.00020776 BTC (+9.76 USD), +6.24 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 48.90 USD from volume 326.01 USD" + } + ] + }, + { + "id": 529, + "type": "message", + "date": "2021-09-20T14:34:56", + "date_unixtime": "1632141296", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "652630926" + }, + " / Amount: 0.00701000 / Price: 42792.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 19,198.38 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13666000 BTC ~ 5,867.78 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00890700 BTC ~ 382.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -150.36 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,466.41 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.20 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (298 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 64.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.38%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.69%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + " = +0.00020771 BTC (+9.76 USD), +6.24 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 51.16 USD from volume 341.05 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "652630926" + }, + { + "type": "plain", + "text": " / Amount: 0.00701000 / Price: 42792.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 19,198.38 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13666000 BTC ~ 5,867.78 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00890700 BTC ~ 382.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -150.36 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,466.41 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.20 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (298 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 64.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.38%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.69%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.32 sells" + }, + { + "type": "plain", + "text": " = +0.00020771 BTC (+9.76 USD), +6.24 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 51.16 USD from volume 341.05 USD" + } + ] + }, + { + "id": 530, + "type": "message", + "date": "2021-09-21T02:12:12", + "date_unixtime": "1632183132", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "652631530" + }, + " / Amount: 0.00708000 / Price: 42368.46000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 19,498.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14361000 BTC ~ 6,075.26 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00903700 BTC ~ 382.30 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -242.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,166.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.68 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (298 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 65.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.20%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020460 BTC (+9.62 USD), +6.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 53.65 USD from volume 357.65 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "652631530" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 42368.46000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 19,498.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14361000 BTC ~ 6,075.26 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00903700 BTC ~ 382.30 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -242.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,166.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.68 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (298 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 65.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.20%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020460 BTC (+9.62 USD), +6.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 53.65 USD from volume 357.65 USD" + } + ] + }, + { + "id": 531, + "type": "message", + "date": "2021-09-21T02:14:20", + "date_unixtime": "1632183260", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "653013410" + }, + " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 19,798.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15062000 BTC ~ 6,336.88 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00917700 BTC ~ 386.09 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -277.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,865.97 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.13 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (299 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 66.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.40%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.73%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020459 BTC (+9.62 USD), +6.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 56.36 USD from volume 375.75 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "653013410" + }, + { + "type": "plain", + "text": " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 19,798.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15062000 BTC ~ 6,336.88 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00917700 BTC ~ 386.09 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -277.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,865.97 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.13 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (299 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 66.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.40%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.73%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020459 BTC (+9.62 USD), +6.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 56.36 USD from volume 375.75 USD" + } + ] + }, + { + "id": 532, + "type": "message", + "date": "2021-09-21T02:20:17", + "date_unixtime": "1632183617", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "653017408" + }, + " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,098.16 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15770000 BTC ~ 6,552.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00931700 BTC ~ 387.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -361.15 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,565.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 269.57 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (300 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 67.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.00%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020456 BTC (+9.61 USD), +6.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 59.29 USD from volume 395.28 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "653017408" + }, + { + "type": "plain", + "text": " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,098.16 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15770000 BTC ~ 6,552.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00931700 BTC ~ 387.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -361.15 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,565.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 269.57 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (300 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 67.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.00%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020456 BTC (+9.61 USD), +6.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 59.29 USD from volume 395.28 USD" + } + ] + }, + { + "id": 533, + "type": "message", + "date": "2021-09-21T02:21:44", + "date_unixtime": "1632183704", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "653143482" + }, + " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,398.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16486000 BTC ~ 6,757.52 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00945700 BTC ~ 387.64 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -455.39 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,521.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,265.50 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.97 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (300 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 68.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.38%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020456 BTC (+9.61 USD), +6.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 62.43 USD from volume 416.18 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "653143482" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,398.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16486000 BTC ~ 6,757.52 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00945700 BTC ~ 387.64 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -455.39 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,521.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,265.50 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.97 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (300 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 68.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.38%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020456 BTC (+9.61 USD), +6.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 62.43 USD from volume 416.18 USD" + } + ] + }, + { + "id": 534, + "type": "message", + "date": "2021-09-21T02:22:35", + "date_unixtime": "1632183755", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "653177089" + }, + " / Amount: 0.00737000 / Price: 40715.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,698.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17209000 BTC ~ 6,958.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00959700 BTC ~ 388.07 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -553.74 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,220.92 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,986.42 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26019.28 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.36 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (301 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 69.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.36%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.76%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020455 BTC (+9.61 USD), +6.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 65.76 USD from volume 438.42 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "653177089" + }, + { + "type": "plain", + "text": " / Amount: 0.00737000 / Price: 40715.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,698.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17209000 BTC ~ 6,958.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00959700 BTC ~ 388.07 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -553.74 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,220.92 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,986.42 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26019.28 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.36 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (301 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 69.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.36%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.76%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020455 BTC (+9.61 USD), +6.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 65.76 USD from volume 438.42 USD" + } + ] + }, + { + "id": 535, + "type": "message", + "date": "2021-09-21T02:23:28", + "date_unixtime": "1632183808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "654209998" + }, + " / Amount: 0.00744000 / Price: 40312.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,998.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,598.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17939000 BTC ~ 7,334.40 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00973700 BTC ~ 398.10 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 198.84 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -468.04 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,499.81 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,686.40 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 267.73 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (302 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 42.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -2.39%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +3.57%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020455 BTC (+9.61 USD), +6.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 69.29 USD from volume 461.91 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "654209998" + }, + { + "type": "plain", + "text": " / Amount: 0.00744000 / Price: 40312.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,998.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,598.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17939000 BTC ~ 7,334.40 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00973700 BTC ~ 398.10 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 198.84 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -468.04 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,499.81 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,686.40 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 267.73 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (302 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 42.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -2.39%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +3.57%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020455 BTC (+9.61 USD), +6.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 69.29 USD from volume 461.91 USD" + } + ] + }, + { + "id": 536, + "type": "message", + "date": "2021-09-21T02:42:41", + "date_unixtime": "1632184961", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "654248202" + }, + " / Amount: 0.00730000 / Price: 41924.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,998.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 12,898.89 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17195000 BTC ~ 7,214.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00987700 BTC ~ 414.41 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 204.96 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -265.57 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,827.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,365.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 279.43 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (181 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 43.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%\n", + { + "type": "bold", + "text": "This year 42 sells" + }, + " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + " = +0.00020447 BTC (+9.61 USD), +6.14 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 72.99 USD from volume 486.60 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "654248202" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41924.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,998.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 12,898.89 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17195000 BTC ~ 7,214.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00987700 BTC ~ 414.41 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 204.96 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -265.57 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,827.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,365.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 279.43 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (181 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 43.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%\n" + }, + { + "type": "bold", + "text": "This year 42 sells" + }, + { + "type": "plain", + "text": " = +0.00661700 BTC (+311.00 USD), +198.84 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00435200 BTC (+204.54 USD), +181.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.30 sells" + }, + { + "type": "plain", + "text": " = +0.00020447 BTC (+9.61 USD), +6.14 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 72.99 USD from volume 486.60 USD" + } + ] + }, + { + "id": 537, + "type": "message", + "date": "2021-09-21T03:33:24", + "date_unixtime": "1632188004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "654244531" + }, + " / Amount: 0.00723000 / Price: 42343.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,998.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 13,198.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16472000 BTC ~ 6,989.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00987700 BTC ~ 419.12 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 211.04 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -179.43 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,133.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,365.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 279.96 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (179 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 44.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.78%\n", + { + "type": "bold", + "text": "This year 43 sells" + }, + " = +0.00675700 BTC (+317.58 USD), +204.97 USD\n", + { + "type": "bold", + "text": "This month 33 sells" + }, + " = +0.00449200 BTC (+211.12 USD), +188.10 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.33 sells" + }, + " = +0.00020857 BTC (+9.80 USD), +6.33 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 68.57 USD from volume 457.13 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "654244531" + }, + { + "type": "plain", + "text": " / Amount: 0.00723000 / Price: 42343.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,998.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 13,198.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16472000 BTC ~ 6,989.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00987700 BTC ~ 419.12 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 211.04 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -179.43 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,133.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,365.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 279.96 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (179 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 44.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.78%\n" + }, + { + "type": "bold", + "text": "This year 43 sells" + }, + { + "type": "plain", + "text": " = +0.00675700 BTC (+317.58 USD), +204.97 USD\n" + }, + { + "type": "bold", + "text": "This month 33 sells" + }, + { + "type": "plain", + "text": " = +0.00449200 BTC (+211.12 USD), +188.10 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.33 sells" + }, + { + "type": "plain", + "text": " = +0.00020857 BTC (+9.80 USD), +6.33 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 68.57 USD from volume 457.13 USD" + } + ] + }, + { + "id": 538, + "type": "message", + "date": "2021-09-21T03:41:43", + "date_unixtime": "1632188503", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "654241038" + }, + " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,998.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 13,499.15 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15756000 BTC ~ 6,737.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00987700 BTC ~ 422.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 217.06 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -121.79 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,439.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,365.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 280.48 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (178 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 45.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%\n", + { + "type": "bold", + "text": "This year 44 sells" + }, + " = +0.00689700 BTC (+324.16 USD), +211.04 USD\n", + { + "type": "bold", + "text": "This month 34 sells" + }, + " = +0.00463200 BTC (+217.70 USD), +194.17 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + " = +0.00021285 BTC (+10.00 USD), +6.51 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 64.65 USD from volume 430.98 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "654241038" + }, + { + "type": "plain", + "text": " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,998.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 13,499.15 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15756000 BTC ~ 6,737.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00987700 BTC ~ 422.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 217.06 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -121.79 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,439.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,365.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 280.48 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (178 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 45.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%\n" + }, + { + "type": "bold", + "text": "This year 44 sells" + }, + { + "type": "plain", + "text": " = +0.00689700 BTC (+324.16 USD), +211.04 USD\n" + }, + { + "type": "bold", + "text": "This month 34 sells" + }, + { + "type": "plain", + "text": " = +0.00463200 BTC (+217.70 USD), +194.17 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.36 sells" + }, + { + "type": "plain", + "text": " = +0.00021285 BTC (+10.00 USD), +6.51 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 64.65 USD from volume 430.98 USD" + } + ] + }, + { + "id": 539, + "type": "message", + "date": "2021-09-21T09:43:55", + "date_unixtime": "1632210235", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "654234752" + }, + " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,998.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 13,799.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15048000 BTC ~ 6,491.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00987700 BTC ~ 426.08 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 223.01 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -58.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,744.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,365.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 275.09 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (236 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 46.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.13%\n", + { + "type": "bold", + "text": "This year 45 sells" + }, + " = +0.00703700 BTC (+330.74 USD), +217.07 USD\n", + { + "type": "bold", + "text": "This month 35 sells" + }, + " = +0.00477200 BTC (+224.28 USD), +200.19 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.38 sells" + }, + " = +0.00021550 BTC (+10.13 USD), +6.65 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 61.22 USD from volume 408.11 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "654234752" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,998.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 13,799.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15048000 BTC ~ 6,491.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00987700 BTC ~ 426.08 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 223.01 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -58.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,744.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,365.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 275.09 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (236 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 46.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.13%\n" + }, + { + "type": "bold", + "text": "This year 45 sells" + }, + { + "type": "plain", + "text": " = +0.00703700 BTC (+330.74 USD), +217.07 USD\n" + }, + { + "type": "bold", + "text": "This month 35 sells" + }, + { + "type": "plain", + "text": " = +0.00477200 BTC (+224.28 USD), +200.19 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.38 sells" + }, + { + "type": "plain", + "text": " = +0.00021550 BTC (+10.13 USD), +6.65 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 61.22 USD from volume 408.11 USD" + } + ] + }, + { + "id": 540, + "type": "message", + "date": "2021-09-21T12:49:59", + "date_unixtime": "1632221399", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "654216114" + }, + " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 20,998.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14347000 BTC ~ 6,254.15 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00987700 BTC ~ 430.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 14.22 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,415.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.61 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.44 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (175 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.08%\n", + { + "type": "bold", + "text": "This year 46 sells" + }, + " = +0.00717700 BTC (+337.32 USD), +223.01 USD\n", + { + "type": "bold", + "text": "This month 36 sells" + }, + " = +0.00491200 BTC (+230.86 USD), +206.14 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.40 sells" + }, + " = +0.00021892 BTC (+10.29 USD), +6.80 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 58.28 USD from volume 388.53 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "654216114" + }, + { + "type": "plain", + "text": " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 20,998.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14347000 BTC ~ 6,254.15 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00987700 BTC ~ 430.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 14.22 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,415.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.61 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.44 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (175 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.08%\n" + }, + { + "type": "bold", + "text": "This year 46 sells" + }, + { + "type": "plain", + "text": " = +0.00717700 BTC (+337.32 USD), +223.01 USD\n" + }, + { + "type": "bold", + "text": "This month 36 sells" + }, + { + "type": "plain", + "text": " = +0.00491200 BTC (+230.86 USD), +206.14 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.40 sells" + }, + { + "type": "plain", + "text": " = +0.00021892 BTC (+10.29 USD), +6.80 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 58.28 USD from volume 388.53 USD" + } + ] + }, + { + "id": 541, + "type": "message", + "date": "2021-09-21T19:25:00", + "date_unixtime": "1632245100", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "655188347" + }, + " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 21,298.28 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15062000 BTC ~ 6,301.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.00987700 BTC ~ 413.20 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -256.16 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.21 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,425.83 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (293 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 71.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.33%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00022134 BTC (+10.40 USD), +6.92 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 55.82 USD from volume 372.16 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "655188347" + }, + { + "type": "plain", + "text": " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 21,298.28 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15062000 BTC ~ 6,301.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.00987700 BTC ~ 413.20 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -256.16 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.21 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,425.83 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (293 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 71.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.33%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00022134 BTC (+10.40 USD), +6.92 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 55.82 USD from volume 372.16 USD" + } + ] + }, + { + "id": 542, + "type": "message", + "date": "2021-09-21T19:54:18", + "date_unixtime": "1632246858", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "654936688" + }, + " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 21,598.15 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15770000 BTC ~ 6,545.62 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01001700 BTC ~ 415.77 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -308.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,425.83 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.12 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (294 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 72.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.01%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.11%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00022120 BTC (+10.40 USD), +6.92 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 58.60 USD from volume 390.67 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "654936688" + }, + { + "type": "plain", + "text": " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 21,598.15 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15770000 BTC ~ 6,545.62 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01001700 BTC ~ 415.77 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -308.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,425.83 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.12 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (294 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 72.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.01%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.11%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00022120 BTC (+10.40 USD), +6.92 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 58.60 USD from volume 390.67 USD" + } + ] + }, + { + "id": 543, + "type": "message", + "date": "2021-09-21T22:37:02", + "date_unixtime": "1632256622", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "654418337" + }, + " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 21,898.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16486000 BTC ~ 6,790.31 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01015700 BTC ~ 418.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -361.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,390.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,425.82 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 269.54 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (294 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 73.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.19%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.87%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00022045 BTC (+10.36 USD), +6.90 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 61.61 USD from volume 410.71 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "654418337" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 21,898.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16486000 BTC ~ 6,790.31 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01015700 BTC ~ 418.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -361.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,390.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,425.82 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 269.54 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (294 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 73.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.19%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.87%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00022045 BTC (+10.36 USD), +6.90 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 61.61 USD from volume 410.71 USD" + } + ] + }, + { + "id": 544, + "type": "message", + "date": "2021-09-21T23:04:40", + "date_unixtime": "1632258280", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "654401315" + }, + " / Amount: 0.00737000 / Price: 40715.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 22,198.42 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17209000 BTC ~ 6,998.41 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01029700 BTC ~ 418.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -453.40 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,425.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.94 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (295 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 74.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.16%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + " = +0.00022032 BTC (+10.36 USD), +6.89 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 64.84 USD from volume 432.24 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "654401315" + }, + { + "type": "plain", + "text": " / Amount: 0.00737000 / Price: 40715.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 22,198.42 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17209000 BTC ~ 6,998.41 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01029700 BTC ~ 418.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -453.40 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,425.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.94 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (295 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 74.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.16%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.42 sells" + }, + { + "type": "plain", + "text": " = +0.00022032 BTC (+10.36 USD), +6.89 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 64.84 USD from volume 432.24 USD" + } + ] + }, + { + "id": 545, + "type": "message", + "date": "2021-09-21T23:15:15", + "date_unixtime": "1632258915", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "654302832" + }, + " / Amount: 0.00744000 / Price: 40312.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 22,498.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17939000 BTC ~ 7,252.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01043700 BTC ~ 421.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -495.81 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,790.18 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,425.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.32 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (296 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 75.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.36%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.73%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + " = +0.00022027 BTC (+10.35 USD), +6.89 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 68.28 USD from volume 455.18 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "654302832" + }, + { + "type": "plain", + "text": " / Amount: 0.00744000 / Price: 40312.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 22,498.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17939000 BTC ~ 7,252.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01043700 BTC ~ 421.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -495.81 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,790.18 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,425.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.32 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (296 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 75.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.36%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.73%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + { + "type": "plain", + "text": " = +0.00022027 BTC (+10.35 USD), +6.89 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 68.28 USD from volume 455.18 USD" + } + ] + }, + { + "id": 546, + "type": "message", + "date": "2021-09-21T23:18:33", + "date_unixtime": "1632259113", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "655786072" + }, + " / Amount: 0.00752000 / Price: 39913.01000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 22,798.48 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,098.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.18677000 BTC ~ 7,448.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01057700 BTC ~ 421.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 228.90 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -600.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,511.44 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,404.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 267.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (296 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 76.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 47.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.13%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + " = +0.00022026 BTC (+10.35 USD), +6.89 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 71.92 USD from volume 479.48 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "655786072" + }, + { + "type": "plain", + "text": " / Amount: 0.00752000 / Price: 39913.01000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 22,798.48 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,098.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.18677000 BTC ~ 7,448.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01057700 BTC ~ 421.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 228.90 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -600.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,511.44 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,404.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 267.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (296 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 76.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 47.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.13%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + { + "type": "plain", + "text": " = +0.00022026 BTC (+10.35 USD), +6.89 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 71.92 USD from volume 479.48 USD" + } + ] + }, + { + "id": 547, + "type": "message", + "date": "2021-09-21T23:45:11", + "date_unixtime": "1632260711", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "656257119" + }, + " / Amount: 0.00738000 / Price: 41509.53000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 22,798.48 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,399.11 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17925000 BTC ~ 7,497.48 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01071700 BTC ~ 448.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 235.09 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -218.55 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,827.30 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,094.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 279.62 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.12 USD (175 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 76.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 48.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.54%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.23%\n", + { + "type": "bold", + "text": "This year 47 sells" + }, + " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + " = +0.00022013 BTC (+10.35 USD), +6.89 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 75.77 USD from volume 505.11 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "656257119" + }, + { + "type": "plain", + "text": " / Amount: 0.00738000 / Price: 41509.53000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 22,798.48 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,399.11 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17925000 BTC ~ 7,497.48 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01071700 BTC ~ 448.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 235.09 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -218.55 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,827.30 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,094.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 279.62 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.12 USD (175 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 76.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 48.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.54%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.23%\n" + }, + { + "type": "bold", + "text": "This year 47 sells" + }, + { + "type": "plain", + "text": " = +0.00731700 BTC (+343.90 USD), +228.90 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00505200 BTC (+237.44 USD), +212.03 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.41 sells" + }, + { + "type": "plain", + "text": " = +0.00022013 BTC (+10.35 USD), +6.89 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 75.77 USD from volume 505.11 USD" + } + ] + }, + { + "id": 548, + "type": "message", + "date": "2021-09-21T23:46:03", + "date_unixtime": "1632260763", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "656247810" + }, + " / Amount: 0.00730000 / Price: 41924.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 22,798.48 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,699.03 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17195000 BTC ~ 7,172.68 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01071700 BTC ~ 447.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 241.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -238.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,133.22 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,094.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 280.16 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (174 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 76.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 49.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.41%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.51%\n", + { + "type": "bold", + "text": "This year 48 sells" + }, + " = +0.00745700 BTC (+350.48 USD), +235.10 USD\n", + { + "type": "bold", + "text": "This month 38 sells" + }, + " = +0.00519200 BTC (+244.02 USD), +218.22 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.44 sells" + }, + " = +0.00022434 BTC (+10.54 USD), +7.07 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 71.32 USD from volume 475.48 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "656247810" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41924.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 22,798.48 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,699.03 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17195000 BTC ~ 7,172.68 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01071700 BTC ~ 447.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 241.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -238.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,133.22 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,094.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 280.16 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (174 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 76.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 49.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.41%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.51%\n" + }, + { + "type": "bold", + "text": "This year 48 sells" + }, + { + "type": "plain", + "text": " = +0.00745700 BTC (+350.48 USD), +235.10 USD\n" + }, + { + "type": "bold", + "text": "This month 38 sells" + }, + { + "type": "plain", + "text": " = +0.00519200 BTC (+244.02 USD), +218.22 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.44 sells" + }, + { + "type": "plain", + "text": " = +0.00022434 BTC (+10.54 USD), +7.07 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 71.32 USD from volume 475.48 USD" + } + ] + }, + { + "id": 549, + "type": "message", + "date": "2021-09-22T01:34:38", + "date_unixtime": "1632267278", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "656312251" + }, + " / Amount: 0.00744000 / Price: 40312.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,699.03 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17939000 BTC ~ 7,239.27 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01071700 BTC ~ 432.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 241.22 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -486.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,133.24 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,094.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 268.56 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (293 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 49.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.17%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%\n", + { + "type": "bold", + "text": "This year 49 sells" + }, + " = +0.00759700 BTC (+357.06 USD), +241.22 USD\n", + { + "type": "bold", + "text": "This month 39 sells" + }, + " = +0.00533200 BTC (+250.60 USD), +224.35 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.47 sells" + }, + " = +0.00022804 BTC (+10.72 USD), +7.24 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 67.38 USD from volume 449.21 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "656312251" + }, + { + "type": "plain", + "text": " / Amount: 0.00744000 / Price: 40312.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,699.03 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17939000 BTC ~ 7,239.27 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01071700 BTC ~ 432.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 241.22 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -486.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,133.24 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,094.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 268.56 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (293 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 49.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.17%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%\n" + }, + { + "type": "bold", + "text": "This year 49 sells" + }, + { + "type": "plain", + "text": " = +0.00759700 BTC (+357.06 USD), +241.22 USD\n" + }, + { + "type": "bold", + "text": "This month 39 sells" + }, + { + "type": "plain", + "text": " = +0.00533200 BTC (+250.60 USD), +224.35 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.47 sells" + }, + { + "type": "plain", + "text": " = +0.00022804 BTC (+10.72 USD), +7.24 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 67.38 USD from volume 449.21 USD" + } + ] + }, + { + "id": 550, + "type": "message", + "date": "2021-09-22T03:12:55", + "date_unixtime": "1632273175", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "656519726" + }, + " / Amount: 0.00730000 / Price: 41924.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 14,998.95 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17195000 BTC ~ 7,186.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 453.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 247.35 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -212.07 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,139.34 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,094.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 280.29 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (173 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 50.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.59%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.32%\n", + { + "type": "bold", + "text": "This year 49 sells" + }, + " = +0.00759700 BTC (+357.06 USD), +241.22 USD\n", + { + "type": "bold", + "text": "This month 39 sells" + }, + " = +0.00533200 BTC (+250.60 USD), +224.35 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.47 sells" + }, + " = +0.00022757 BTC (+10.70 USD), +7.23 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 70.98 USD from volume 473.18 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "656519726" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41924.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 14,998.95 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17195000 BTC ~ 7,186.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 453.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 247.35 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -212.07 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,139.34 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,094.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 280.29 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (173 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 50.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.59%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.32%\n" + }, + { + "type": "bold", + "text": "This year 49 sells" + }, + { + "type": "plain", + "text": " = +0.00759700 BTC (+357.06 USD), +241.22 USD\n" + }, + { + "type": "bold", + "text": "This month 39 sells" + }, + { + "type": "plain", + "text": " = +0.00533200 BTC (+250.60 USD), +224.35 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.47 sells" + }, + { + "type": "plain", + "text": " = +0.00022757 BTC (+10.70 USD), +7.23 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 70.98 USD from volume 473.18 USD" + } + ] + }, + { + "id": 551, + "type": "message", + "date": "2021-09-22T03:48:13", + "date_unixtime": "1632275293", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "656222240" + }, + " / Amount: 0.00547000 / Price: 42343.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 15,299.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16472000 BTC ~ 6,974.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 459.72 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 253.42 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -111.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,445.51 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,094.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 280.80 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (171 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 51.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%\n", + { + "type": "bold", + "text": "This year 50 sells" + }, + " = +0.00773700 BTC (+363.64 USD), +247.35 USD\n", + { + "type": "bold", + "text": "This month 40 sells" + }, + " = +0.00547200 BTC (+257.18 USD), +230.48 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.50 sells" + }, + " = +0.00023159 BTC (+10.88 USD), +7.40 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 67.12 USD from volume 447.46 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "656222240" + }, + { + "type": "plain", + "text": " / Amount: 0.00547000 / Price: 42343.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 15,299.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16472000 BTC ~ 6,974.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 459.72 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 253.42 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -111.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,445.51 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,094.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 280.80 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (171 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 51.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%\n" + }, + { + "type": "bold", + "text": "This year 50 sells" + }, + { + "type": "plain", + "text": " = +0.00773700 BTC (+363.64 USD), +247.35 USD\n" + }, + { + "type": "bold", + "text": "This month 40 sells" + }, + { + "type": "plain", + "text": " = +0.00547200 BTC (+257.18 USD), +230.48 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.50 sells" + }, + { + "type": "plain", + "text": " = +0.00023159 BTC (+10.88 USD), +7.40 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 67.12 USD from volume 447.46 USD" + } + ] + }, + { + "id": 552, + "type": "message", + "date": "2021-09-22T17:29:24", + "date_unixtime": "1632324564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "656151394" + }, + " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 15,599.22 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15756000 BTC ~ 6,751.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 465.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 259.44 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -22.53 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,751.49 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,094.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.30 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (170 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 52.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.80%\n", + { + "type": "bold", + "text": "This year 51 sells" + }, + " = +0.00787700 BTC (+370.22 USD), +253.43 USD\n", + { + "type": "bold", + "text": "This month 41 sells" + }, + " = +0.00561200 BTC (+263.76 USD), +236.55 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.50 sells" + }, + " = +0.00023183 BTC (+10.90 USD), +7.46 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 63.75 USD from volume 425.02 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "656151394" + }, + { + "type": "plain", + "text": " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 15,599.22 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15756000 BTC ~ 6,751.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 465.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 259.44 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -22.53 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,751.49 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,094.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.30 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (170 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 52.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.80%\n" + }, + { + "type": "bold", + "text": "This year 51 sells" + }, + { + "type": "plain", + "text": " = +0.00787700 BTC (+370.22 USD), +253.43 USD\n" + }, + { + "type": "bold", + "text": "This month 41 sells" + }, + { + "type": "plain", + "text": " = +0.00561200 BTC (+263.76 USD), +236.55 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.50 sells" + }, + { + "type": "plain", + "text": " = +0.00023183 BTC (+10.90 USD), +7.46 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 63.75 USD from volume 425.02 USD" + } + ] + }, + { + "id": 553, + "type": "message", + "date": "2021-09-22T17:52:37", + "date_unixtime": "1632325957", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "655844685" + }, + " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 15,899.09 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15048000 BTC ~ 6,489.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 468.20 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 265.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 23.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,151.91 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.77 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (169 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 53.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.17%\n", + { + "type": "bold", + "text": "This year 52 sells" + }, + " = +0.00801700 BTC (+376.80 USD), +259.45 USD\n", + { + "type": "bold", + "text": "This month 42 sells" + }, + " = +0.00575200 BTC (+270.34 USD), +242.57 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.53 sells" + }, + " = +0.00023583 BTC (+11.08 USD), +7.63 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 60.87 USD from volume 405.82 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "655844685" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 15,899.09 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15048000 BTC ~ 6,489.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 468.20 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 265.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 23.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,151.91 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.77 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (169 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 53.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.17%\n" + }, + { + "type": "bold", + "text": "This year 52 sells" + }, + { + "type": "plain", + "text": " = +0.00801700 BTC (+376.80 USD), +259.45 USD\n" + }, + { + "type": "bold", + "text": "This month 42 sells" + }, + { + "type": "plain", + "text": " = +0.00575200 BTC (+270.34 USD), +242.57 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.53 sells" + }, + { + "type": "plain", + "text": " = +0.00023583 BTC (+11.08 USD), +7.63 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 60.87 USD from volume 405.82 USD" + } + ] + }, + { + "id": 554, + "type": "message", + "date": "2021-09-22T20:03:25", + "date_unixtime": "1632333805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "655785660" + }, + " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 16,199.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14347000 BTC ~ 6,255.71 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 473.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 271.28 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 101.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,457.54 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.61 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.23 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (167 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 54.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.06%\n", + { + "type": "bold", + "text": "This year 53 sells" + }, + " = +0.00815700 BTC (+383.38 USD), +265.39 USD\n", + { + "type": "bold", + "text": "This month 43 sells" + }, + " = +0.00589200 BTC (+276.92 USD), +248.52 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.55 sells" + }, + " = +0.00023931 BTC (+11.25 USD), +7.79 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 58.48 USD from volume 389.87 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "655785660" + }, + { + "type": "plain", + "text": " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 16,199.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14347000 BTC ~ 6,255.71 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 473.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 271.28 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 101.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,457.54 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.61 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.23 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (167 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 54.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.06%\n" + }, + { + "type": "bold", + "text": "This year 53 sells" + }, + { + "type": "plain", + "text": " = +0.00815700 BTC (+383.38 USD), +265.39 USD\n" + }, + { + "type": "bold", + "text": "This month 43 sells" + }, + { + "type": "plain", + "text": " = +0.00589200 BTC (+276.92 USD), +248.52 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.55 sells" + }, + { + "type": "plain", + "text": " = +0.00023931 BTC (+11.25 USD), +7.79 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 58.48 USD from volume 389.87 USD" + } + ] + }, + { + "id": 555, + "type": "message", + "date": "2021-09-23T05:28:23", + "date_unixtime": "1632367703", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "654209785" + }, + " / Amount: 0.00694000 / Price: 44063.20000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 16,498.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13653000 BTC ~ 6,007.59 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 477.73 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 277.11 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 163.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,763.29 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.61 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.66 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (166 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 55.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.14%\n", + { + "type": "bold", + "text": "This year 54 sells" + }, + " = +0.00829700 BTC (+389.96 USD), +271.28 USD\n", + { + "type": "bold", + "text": "This month 44 sells" + }, + " = +0.00603200 BTC (+283.50 USD), +254.41 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.57 sells" + }, + " = +0.00024065 BTC (+11.31 USD), +7.87 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 56.57 USD from volume 377.10 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "654209785" + }, + { + "type": "plain", + "text": " / Amount: 0.00694000 / Price: 44063.20000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 16,498.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13653000 BTC ~ 6,007.59 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 477.73 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 277.11 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 163.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,763.29 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.61 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.66 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (166 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 55.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.14%\n" + }, + { + "type": "bold", + "text": "This year 54 sells" + }, + { + "type": "plain", + "text": " = +0.00829700 BTC (+389.96 USD), +271.28 USD\n" + }, + { + "type": "bold", + "text": "This month 44 sells" + }, + { + "type": "plain", + "text": " = +0.00603200 BTC (+283.50 USD), +254.41 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.57 sells" + }, + { + "type": "plain", + "text": " = +0.00024065 BTC (+11.31 USD), +7.87 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 56.57 USD from volume 377.10 USD" + } + ] + }, + { + "id": 556, + "type": "message", + "date": "2021-09-23T19:16:38", + "date_unixtime": "1632417398", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "653176972" + }, + " / Amount: 0.00688000 / Price: 44503.83000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 16,798.97 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12965000 BTC ~ 5,767.77 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 483.00 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 283.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 234.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,069.16 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.08 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (165 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 56.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%\n", + { + "type": "bold", + "text": "This year 55 sells" + }, + " = +0.00843700 BTC (+396.54 USD), +277.11 USD\n", + { + "type": "bold", + "text": "This month 45 sells" + }, + " = +0.00617200 BTC (+290.08 USD), +260.24 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.57 sells" + }, + " = +0.00024070 BTC (+11.31 USD), +7.91 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 55.12 USD from volume 367.49 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "653176972" + }, + { + "type": "plain", + "text": " / Amount: 0.00688000 / Price: 44503.83000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 16,798.97 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12965000 BTC ~ 5,767.77 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 483.00 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 283.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 234.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,069.16 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.08 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (165 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 56.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%\n" + }, + { + "type": "bold", + "text": "This year 55 sells" + }, + { + "type": "plain", + "text": " = +0.00843700 BTC (+396.54 USD), +277.11 USD\n" + }, + { + "type": "bold", + "text": "This month 45 sells" + }, + { + "type": "plain", + "text": " = +0.00617200 BTC (+290.08 USD), +260.24 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.57 sells" + }, + { + "type": "plain", + "text": " = +0.00024070 BTC (+11.31 USD), +7.91 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 55.12 USD from volume 367.49 USD" + } + ] + }, + { + "id": 557, + "type": "message", + "date": "2021-09-23T19:32:56", + "date_unixtime": "1632418376", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "653143080" + }, + " / Amount: 0.00681000 / Price: 44948.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,098.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12284000 BTC ~ 5,501.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 486.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 277.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,375.10 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.49 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (164 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.47%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.37%\n", + { + "type": "bold", + "text": "This year 56 sells" + }, + " = +0.00856700 BTC (+402.65 USD), +283.33 USD\n", + { + "type": "bold", + "text": "This month 46 sells" + }, + " = +0.00630200 BTC (+296.19 USD), +266.45 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + " = +0.00024433 BTC (+11.48 USD), +8.08 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 54.15 USD from volume 360.99 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "653143080" + }, + { + "type": "plain", + "text": " / Amount: 0.00681000 / Price: 44948.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,098.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12284000 BTC ~ 5,501.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 486.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 277.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,375.10 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.49 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (164 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.47%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.37%\n" + }, + { + "type": "bold", + "text": "This year 56 sells" + }, + { + "type": "plain", + "text": " = +0.00856700 BTC (+402.65 USD), +283.33 USD\n" + }, + { + "type": "bold", + "text": "This month 46 sells" + }, + { + "type": "plain", + "text": " = +0.00630200 BTC (+296.19 USD), +266.45 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + { + "type": "plain", + "text": " = +0.00024433 BTC (+11.48 USD), +8.08 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 54.15 USD from volume 360.99 USD" + } + ] + }, + { + "id": 558, + "type": "message", + "date": "2021-09-24T11:16:19", + "date_unixtime": "1632474979", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "659640629" + }, + " / Amount: 0.00694000 / Price: 43220.06000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,398.35 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12978000 BTC ~ 5,614.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01085700 BTC ~ 469.72 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 74.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.25 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,385.09 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 273.25 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (280 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 78.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.23%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + " = +0.00024348 BTC (+11.44 USD), +8.10 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 53.64 USD from volume 357.59 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "659640629" + }, + { + "type": "plain", + "text": " / Amount: 0.00694000 / Price: 43220.06000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,398.35 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12978000 BTC ~ 5,614.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01085700 BTC ~ 469.72 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 74.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.25 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,385.09 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 273.25 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (280 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 78.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.23%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + { + "type": "plain", + "text": " = +0.00024348 BTC (+11.44 USD), +8.10 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 53.64 USD from volume 357.59 USD" + } + ] + }, + { + "id": 559, + "type": "message", + "date": "2021-09-24T11:27:45", + "date_unixtime": "1632475665", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "659613509" + }, + " / Amount: 0.00701000 / Price: 42792.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,698.33 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13666000 BTC ~ 5,847.48 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01098700 BTC ~ 470.12 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 7.66 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.05 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,385.09 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.77 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (280 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 79.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.05%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + " = +0.00024343 BTC (+11.44 USD), +8.10 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 55.30 USD from volume 368.70 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "659613509" + }, + { + "type": "plain", + "text": " / Amount: 0.00701000 / Price: 42792.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,698.33 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13666000 BTC ~ 5,847.48 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01098700 BTC ~ 470.12 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 7.66 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.05 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,385.09 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.77 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (280 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 79.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.05%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + { + "type": "plain", + "text": " = +0.00024343 BTC (+11.44 USD), +8.10 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 55.30 USD from volume 368.70 USD" + } + ] + }, + { + "id": 560, + "type": "message", + "date": "2021-09-24T11:59:31", + "date_unixtime": "1632477571", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "658709452" + }, + " / Amount: 0.00708000 / Price: 42368.46000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 23,998.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14361000 BTC ~ 6,087.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01111700 BTC ~ 471.21 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -51.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,389.98 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,385.09 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.28 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (281 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 80.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.07%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.00%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024328 BTC (+11.43 USD), +8.10 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 57.26 USD from volume 381.75 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "658709452" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 42368.46000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 23,998.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14361000 BTC ~ 6,087.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01111700 BTC ~ 471.21 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -51.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,389.98 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,385.09 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.28 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (281 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 80.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.07%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.00%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024328 BTC (+11.43 USD), +8.10 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 57.26 USD from volume 381.75 USD" + } + ] + }, + { + "id": 561, + "type": "message", + "date": "2021-09-24T13:04:50", + "date_unixtime": "1632481490", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "658033613" + }, + " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 24,298.23 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15062000 BTC ~ 6,304.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01125700 BTC ~ 471.18 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -134.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,090.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,385.09 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.76 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (281 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 81.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.27%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024297 BTC (+11.42 USD), +8.09 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 59.50 USD from volume 396.68 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "658033613" + }, + { + "type": "plain", + "text": " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 24,298.23 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15062000 BTC ~ 6,304.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01125700 BTC ~ 471.18 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -134.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,090.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,385.09 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.76 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (281 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 81.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.27%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024297 BTC (+11.42 USD), +8.09 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 59.50 USD from volume 396.68 USD" + } + ] + }, + { + "id": 562, + "type": "message", + "date": "2021-09-24T13:10:35", + "date_unixtime": "1632481835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "657843543" + }, + " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 24,598.10 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15770000 BTC ~ 6,546.39 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01139700 BTC ~ 473.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -190.22 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,789.91 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,385.09 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.23 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (282 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 82.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.06%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.10%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024294 BTC (+11.42 USD), +8.09 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 62.01 USD from volume 413.43 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "657843543" + }, + { + "type": "plain", + "text": " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 24,598.10 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15770000 BTC ~ 6,546.39 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01139700 BTC ~ 473.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -190.22 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,789.91 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,385.09 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.23 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (282 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 82.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.06%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.10%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024294 BTC (+11.42 USD), +8.09 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 62.01 USD from volume 413.43 USD" + } + ] + }, + { + "id": 563, + "type": "message", + "date": "2021-09-24T13:15:50", + "date_unixtime": "1632482150", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "660615206" + }, + " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 24,898.30 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16486000 BTC ~ 6,796.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01153700 BTC ~ 475.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -237.43 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,511.17 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,363.88 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.68 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (282 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 83.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.29%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.77%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024292 BTC (+11.42 USD), +8.09 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 64.79 USD from volume 431.94 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "660615206" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 24,898.30 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16486000 BTC ~ 6,796.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01153700 BTC ~ 475.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -237.43 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,511.17 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,363.88 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.68 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (282 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 83.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.29%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.77%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024292 BTC (+11.42 USD), +8.09 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 64.79 USD from volume 431.94 USD" + } + ] + }, + { + "id": 564, + "type": "message", + "date": "2021-09-24T13:19:07", + "date_unixtime": "1632482347", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "660640295" + }, + " / Amount: 0.00737000 / Price: 40715.26000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,198.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,098.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.17209000 BTC ~ 7,047.37 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01167700 BTC ~ 478.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 289.48 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -284.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,520.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,053.74 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 270.09 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (283 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 84.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 57.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.65%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.43%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024290 BTC (+11.42 USD), +8.09 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 67.83 USD from volume 452.19 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "660640295" + }, + { + "type": "plain", + "text": " / Amount: 0.00737000 / Price: 40715.26000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,198.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,098.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.17209000 BTC ~ 7,047.37 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01167700 BTC ~ 478.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 289.48 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -284.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,520.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,053.74 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 270.09 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (283 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 84.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 57.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.65%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.43%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024290 BTC (+11.42 USD), +8.09 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 67.83 USD from volume 452.19 USD" + } + ] + }, + { + "id": 565, + "type": "message", + "date": "2021-09-24T16:27:42", + "date_unixtime": "1632493662", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660845579" + }, + " / Amount: 0.00723000 / Price: 42343.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,198.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,398.98 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16472000 BTC ~ 6,974.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01181700 BTC ~ 500.35 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 295.55 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -28.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 1,827.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.65 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 281.61 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (164 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 84.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 58.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.82%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%\n", + { + "type": "bold", + "text": "This year 57 sells" + }, + " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n", + { + "type": "bold", + "text": "This month 47 sells" + }, + " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024202 BTC (+11.37 USD), +8.06 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 71.11 USD from volume 474.10 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660845579" + }, + { + "type": "plain", + "text": " / Amount: 0.00723000 / Price: 42343.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,198.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,398.98 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16472000 BTC ~ 6,974.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01181700 BTC ~ 500.35 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 295.55 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -28.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 1,827.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.65 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 281.61 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (164 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 84.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 58.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.82%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%\n" + }, + { + "type": "bold", + "text": "This year 57 sells" + }, + { + "type": "plain", + "text": " = +0.00869700 BTC (+408.76 USD), +289.48 USD\n" + }, + { + "type": "bold", + "text": "This month 47 sells" + }, + { + "type": "plain", + "text": " = +0.00643200 BTC (+302.30 USD), +272.61 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024202 BTC (+11.37 USD), +8.06 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 71.11 USD from volume 474.10 USD" + } + ] + }, + { + "id": 566, + "type": "message", + "date": "2021-09-24T22:38:00", + "date_unixtime": "1632515880", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660837804" + }, + " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,198.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,699.18 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15756000 BTC ~ 6,739.73 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01181700 BTC ~ 505.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 301.57 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 47.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,133.11 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.69 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.10 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (162 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 84.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 59.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.98%\n", + { + "type": "bold", + "text": "This year 58 sells" + }, + " = +0.00883700 BTC (+415.34 USD), +295.56 USD\n", + { + "type": "bold", + "text": "This month 48 sells" + }, + " = +0.00657200 BTC (+308.88 USD), +278.68 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + " = +0.00024417 BTC (+11.48 USD), +8.17 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 68.09 USD from volume 453.90 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660837804" + }, + { + "type": "plain", + "text": " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,198.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,699.18 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15756000 BTC ~ 6,739.73 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01181700 BTC ~ 505.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 301.57 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 47.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,133.11 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.69 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.10 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (162 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 84.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 59.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.98%\n" + }, + { + "type": "bold", + "text": "This year 58 sells" + }, + { + "type": "plain", + "text": " = +0.00883700 BTC (+415.34 USD), +295.56 USD\n" + }, + { + "type": "bold", + "text": "This month 48 sells" + }, + { + "type": "plain", + "text": " = +0.00657200 BTC (+308.88 USD), +278.68 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + { + "type": "plain", + "text": " = +0.00024417 BTC (+11.48 USD), +8.17 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 68.09 USD from volume 453.90 USD" + } + ] + }, + { + "id": 567, + "type": "message", + "date": "2021-09-24T23:39:15", + "date_unixtime": "1632519555", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660825788" + }, + " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,198.37 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,999.05 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15048000 BTC ~ 6,500.23 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01181700 BTC ~ 510.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 307.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 118.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,438.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.69 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 276.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (220 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 84.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 60.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%\n", + { + "type": "bold", + "text": "This year 59 sells" + }, + " = +0.00897700 BTC (+421.92 USD), +301.58 USD\n", + { + "type": "bold", + "text": "This month 49 sells" + }, + " = +0.00671200 BTC (+315.46 USD), +284.70 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.63 sells" + }, + " = +0.00024774 BTC (+11.64 USD), +8.32 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 65.54 USD from volume 436.93 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660825788" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,198.37 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,999.05 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15048000 BTC ~ 6,500.23 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01181700 BTC ~ 510.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 307.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 118.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,438.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.69 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 276.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (220 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 84.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 60.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%\n" + }, + { + "type": "bold", + "text": "This year 59 sells" + }, + { + "type": "plain", + "text": " = +0.00897700 BTC (+421.92 USD), +301.58 USD\n" + }, + { + "type": "bold", + "text": "This month 49 sells" + }, + { + "type": "plain", + "text": " = +0.00671200 BTC (+315.46 USD), +284.70 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.63 sells" + }, + { + "type": "plain", + "text": " = +0.00024774 BTC (+11.64 USD), +8.32 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 65.54 USD from volume 436.93 USD" + } + ] + }, + { + "id": 568, + "type": "message", + "date": "2021-09-26T09:37:54", + "date_unixtime": "1632641874", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "661782898" + }, + " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,498.24 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,999.05 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15770000 BTC ~ 6,542.72 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01181700 BTC ~ 490.27 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 307.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -158.68 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,438.91 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.70 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.56 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (278 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 85.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 60.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.15%\n", + { + "type": "bold", + "text": "This year 60 sells" + }, + " = +0.00911700 BTC (+428.50 USD), +307.52 USD\n", + { + "type": "bold", + "text": "This month 50 sells" + }, + " = +0.00685200 BTC (+322.04 USD), +290.65 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024215 BTC (+11.38 USD), +8.17 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 63.48 USD from volume 423.18 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "661782898" + }, + { + "type": "plain", + "text": " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,498.24 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,999.05 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15770000 BTC ~ 6,542.72 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01181700 BTC ~ 490.27 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 307.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -158.68 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,438.91 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.70 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.56 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (278 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 85.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 60.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.15%\n" + }, + { + "type": "bold", + "text": "This year 60 sells" + }, + { + "type": "plain", + "text": " = +0.00911700 BTC (+428.50 USD), +307.52 USD\n" + }, + { + "type": "bold", + "text": "This month 50 sells" + }, + { + "type": "plain", + "text": " = +0.00685200 BTC (+322.04 USD), +290.65 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024215 BTC (+11.38 USD), +8.17 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 63.48 USD from volume 423.18 USD" + } + ] + }, + { + "id": 569, + "type": "message", + "date": "2021-09-26T09:41:07", + "date_unixtime": "1632642067", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "661711180" + }, + " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,798.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 17,999.05 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16486000 BTC ~ 6,790.60 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01195700 BTC ~ 492.51 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 307.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -208.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,138.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.70 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25761.67 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.01 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (279 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 86.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 60.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.30%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.87%\n", + { + "type": "bold", + "text": "This year 60 sells" + }, + " = +0.00911700 BTC (+428.50 USD), +307.52 USD\n", + { + "type": "bold", + "text": "This month 50 sells" + }, + " = +0.00685200 BTC (+322.04 USD), +290.65 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024213 BTC (+11.38 USD), +8.17 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 66.18 USD from volume 441.20 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "661711180" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,798.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 17,999.05 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16486000 BTC ~ 6,790.60 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01195700 BTC ~ 492.51 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 307.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -208.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,138.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.70 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25761.67 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.01 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (279 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 86.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 60.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.30%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.87%\n" + }, + { + "type": "bold", + "text": "This year 60 sells" + }, + { + "type": "plain", + "text": " = +0.00911700 BTC (+428.50 USD), +307.52 USD\n" + }, + { + "type": "bold", + "text": "This month 50 sells" + }, + { + "type": "plain", + "text": " = +0.00685200 BTC (+322.04 USD), +290.65 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024213 BTC (+11.38 USD), +8.17 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 66.18 USD from volume 441.20 USD" + } + ] + }, + { + "id": 570, + "type": "message", + "date": "2021-09-26T11:46:37", + "date_unixtime": "1632649597", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "663919135" + }, + " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,798.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 18,299.24 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15756000 BTC ~ 6,742.70 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01209700 BTC ~ 517.68 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 313.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 74.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,145.08 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.70 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.33 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (160 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 86.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 61.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%\n", + { + "type": "bold", + "text": "This year 60 sells" + }, + " = +0.00911700 BTC (+428.50 USD), +307.52 USD\n", + { + "type": "bold", + "text": "This month 50 sells" + }, + " = +0.00685200 BTC (+322.04 USD), +290.65 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024157 BTC (+11.35 USD), +8.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 69.15 USD from volume 461.01 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "663919135" + }, + { + "type": "plain", + "text": " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,798.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 18,299.24 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15756000 BTC ~ 6,742.70 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01209700 BTC ~ 517.68 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 313.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 74.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,145.08 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.70 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.33 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (160 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 86.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 61.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%\n" + }, + { + "type": "bold", + "text": "This year 60 sells" + }, + { + "type": "plain", + "text": " = +0.00911700 BTC (+428.50 USD), +307.52 USD\n" + }, + { + "type": "bold", + "text": "This month 50 sells" + }, + { + "type": "plain", + "text": " = +0.00685200 BTC (+322.04 USD), +290.65 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024157 BTC (+11.35 USD), +8.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 69.15 USD from volume 461.01 USD" + } + ] + }, + { + "id": 571, + "type": "message", + "date": "2021-09-26T11:48:01", + "date_unixtime": "1632649681", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "663912374" + }, + " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,798.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 18,599.12 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15048000 BTC ~ 6,513.50 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01209700 BTC ~ 523.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 319.49 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 157.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,450.81 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.70 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.78 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (159 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 86.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 62.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.16%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.79%\n", + { + "type": "bold", + "text": "This year 61 sells" + }, + " = +0.00925700 BTC (+435.08 USD), +313.55 USD\n", + { + "type": "bold", + "text": "This month 51 sells" + }, + " = +0.00699200 BTC (+328.62 USD), +296.67 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.62 sells" + }, + " = +0.00024528 BTC (+11.53 USD), +8.31 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 66.71 USD from volume 444.73 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "663912374" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,798.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 18,599.12 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15048000 BTC ~ 6,513.50 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01209700 BTC ~ 523.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 319.49 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 157.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,450.81 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.70 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.78 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (159 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 86.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 62.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.16%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.79%\n" + }, + { + "type": "bold", + "text": "This year 61 sells" + }, + { + "type": "plain", + "text": " = +0.00925700 BTC (+435.08 USD), +313.55 USD\n" + }, + { + "type": "bold", + "text": "This month 51 sells" + }, + { + "type": "plain", + "text": " = +0.00699200 BTC (+328.62 USD), +296.67 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.62 sells" + }, + { + "type": "plain", + "text": " = +0.00024528 BTC (+11.53 USD), +8.31 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 66.71 USD from volume 444.73 USD" + } + ] + }, + { + "id": 572, + "type": "message", + "date": "2021-09-26T11:49:58", + "date_unixtime": "1632649798", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660813073" + }, + " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,798.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 18,899.05 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14347000 BTC ~ 6,272.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01209700 BTC ~ 528.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 325.38 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 227.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,756.70 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,753.70 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.22 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (158 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 86.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 63.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.79%\n", + { + "type": "bold", + "text": "This year 62 sells" + }, + " = +0.00939700 BTC (+441.66 USD), +319.49 USD\n", + { + "type": "bold", + "text": "This month 52 sells" + }, + " = +0.00713200 BTC (+335.20 USD), +302.62 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.64 sells" + }, + " = +0.00024898 BTC (+11.70 USD), +8.47 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 64.75 USD from volume 431.65 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660813073" + }, + { + "type": "plain", + "text": " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,798.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 18,899.05 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14347000 BTC ~ 6,272.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01209700 BTC ~ 528.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 325.38 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 227.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,756.70 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,753.70 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.22 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (158 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 86.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 63.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.79%\n" + }, + { + "type": "bold", + "text": "This year 62 sells" + }, + { + "type": "plain", + "text": " = +0.00939700 BTC (+441.66 USD), +319.49 USD\n" + }, + { + "type": "bold", + "text": "This month 52 sells" + }, + { + "type": "plain", + "text": " = +0.00713200 BTC (+335.20 USD), +302.62 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.64 sells" + }, + { + "type": "plain", + "text": " = +0.00024898 BTC (+11.70 USD), +8.47 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 64.75 USD from volume 431.65 USD" + } + ] + }, + { + "id": 573, + "type": "message", + "date": "2021-09-27T03:36:39", + "date_unixtime": "1632706599", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660699818" + }, + " / Amount: 0.00694000 / Price: 44063.20000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 25,798.44 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,199.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13653000 BTC ~ 6,033.14 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01209700 BTC ~ 534.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 331.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 299.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.38 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.64 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (156 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 86.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 64.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.71%\n", + { + "type": "bold", + "text": "This year 63 sells" + }, + " = +0.00953700 BTC (+448.24 USD), +325.38 USD\n", + { + "type": "bold", + "text": "This month 53 sells" + }, + " = +0.00727200 BTC (+341.78 USD), +308.51 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.64 sells" + }, + " = +0.00024836 BTC (+11.67 USD), +8.47 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 63.26 USD from volume 421.73 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660699818" + }, + { + "type": "plain", + "text": " / Amount: 0.00694000 / Price: 44063.20000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 25,798.44 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,199.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13653000 BTC ~ 6,033.14 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01209700 BTC ~ 534.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 331.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 299.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.38 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.64 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (156 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 86.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 64.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.71%\n" + }, + { + "type": "bold", + "text": "This year 63 sells" + }, + { + "type": "plain", + "text": " = +0.00953700 BTC (+448.24 USD), +325.38 USD\n" + }, + { + "type": "bold", + "text": "This month 53 sells" + }, + { + "type": "plain", + "text": " = +0.00727200 BTC (+341.78 USD), +308.51 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.64 sells" + }, + { + "type": "plain", + "text": " = +0.00024836 BTC (+11.67 USD), +8.47 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 63.26 USD from volume 421.73 USD" + } + ] + }, + { + "id": 574, + "type": "message", + "date": "2021-09-28T01:39:24", + "date_unixtime": "1632785964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "665164643" + }, + " / Amount: 0.00708000 / Price: 42368.46000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,098.40 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,199.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14361000 BTC ~ 6,076.71 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01209700 BTC ~ 511.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 331.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 20.40 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.95 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.38 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 273.03 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (272 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 87.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 64.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.93%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.18%\n", + { + "type": "bold", + "text": "This year 64 sells" + }, + " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n", + { + "type": "bold", + "text": "This month 54 sells" + }, + " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.63 sells" + }, + " = +0.00024612 BTC (+11.57 USD), +8.42 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 62.24 USD from volume 414.94 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "665164643" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 42368.46000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,098.40 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,199.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14361000 BTC ~ 6,076.71 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01209700 BTC ~ 511.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 331.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 20.40 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.95 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.38 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 273.03 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (272 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 87.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 64.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.93%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.18%\n" + }, + { + "type": "bold", + "text": "This year 64 sells" + }, + { + "type": "plain", + "text": " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n" + }, + { + "type": "bold", + "text": "This month 54 sells" + }, + { + "type": "plain", + "text": " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.63 sells" + }, + { + "type": "plain", + "text": " = +0.00024612 BTC (+11.57 USD), +8.42 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 62.24 USD from volume 414.94 USD" + } + ] + }, + { + "id": 575, + "type": "message", + "date": "2021-09-28T08:50:52", + "date_unixtime": "1632811852", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "664172623" + }, + " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,398.34 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,199.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15062000 BTC ~ 6,321.75 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01223700 BTC ~ 513.61 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 331.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -32.76 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,700.03 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.38 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.61 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.53 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (273 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 88.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 64.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%\n", + { + "type": "bold", + "text": "This year 64 sells" + }, + " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n", + { + "type": "bold", + "text": "This month 54 sells" + }, + " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.62 sells" + }, + " = +0.00024426 BTC (+11.48 USD), +8.36 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 64.30 USD from volume 428.64 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "664172623" + }, + { + "type": "plain", + "text": " / Amount: 0.00715000 / Price: 41948.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,398.34 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,199.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15062000 BTC ~ 6,321.75 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01223700 BTC ~ 513.61 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 331.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -32.76 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,700.03 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.38 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.61 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.53 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (273 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 88.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 64.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%\n" + }, + { + "type": "bold", + "text": "This year 64 sells" + }, + { + "type": "plain", + "text": " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n" + }, + { + "type": "bold", + "text": "This month 54 sells" + }, + { + "type": "plain", + "text": " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.62 sells" + }, + { + "type": "plain", + "text": " = +0.00024426 BTC (+11.48 USD), +8.36 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 64.30 USD from volume 428.64 USD" + } + ] + }, + { + "id": 576, + "type": "message", + "date": "2021-09-28T10:10:00", + "date_unixtime": "1632816600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "664167233" + }, + " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,698.21 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,199.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15770000 BTC ~ 6,542.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01237700 BTC ~ 513.46 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 331.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -112.33 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,399.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.38 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.61 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 272.01 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (273 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 89.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 64.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.16%\n", + { + "type": "bold", + "text": "This year 64 sells" + }, + " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n", + { + "type": "bold", + "text": "This month 54 sells" + }, + " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.61 sells" + }, + " = +0.00024392 BTC (+11.46 USD), +8.35 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 66.64 USD from volume 444.28 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "664167233" + }, + { + "type": "plain", + "text": " / Amount: 0.00722000 / Price: 41533.63000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,698.21 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,199.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15770000 BTC ~ 6,542.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01237700 BTC ~ 513.46 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 331.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -112.33 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,399.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.38 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.61 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 272.01 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (273 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 89.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 64.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.16%\n" + }, + { + "type": "bold", + "text": "This year 64 sells" + }, + { + "type": "plain", + "text": " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n" + }, + { + "type": "bold", + "text": "This month 54 sells" + }, + { + "type": "plain", + "text": " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.61 sells" + }, + { + "type": "plain", + "text": " = +0.00024392 BTC (+11.46 USD), +8.35 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 66.64 USD from volume 444.28 USD" + } + ] + }, + { + "id": 577, + "type": "message", + "date": "2021-09-28T19:17:14", + "date_unixtime": "1632849434", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "664162626" + }, + " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,199.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.16486000 BTC ~ 6,780.76 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01251700 BTC ~ 514.83 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 331.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": -172.59 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,099.95 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.34 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 271.47 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (274 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 64.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.02%\n", + { + "type": "bold", + "text": "This year 64 sells" + }, + " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n", + { + "type": "bold", + "text": "This month 54 sells" + }, + " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + " = +0.00024161 BTC (+11.36 USD), +8.27 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 69.27 USD from volume 461.82 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "664162626" + }, + { + "type": "plain", + "text": " / Amount: 0.00730000 / Price: 41122.41000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,199.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.16486000 BTC ~ 6,780.76 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01251700 BTC ~ 514.83 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 331.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": -172.59 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,099.95 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.34 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 271.47 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (274 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 64.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.02%\n" + }, + { + "type": "bold", + "text": "This year 64 sells" + }, + { + "type": "plain", + "text": " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n" + }, + { + "type": "bold", + "text": "This month 54 sells" + }, + { + "type": "plain", + "text": " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.60 sells" + }, + { + "type": "plain", + "text": " = +0.00024161 BTC (+11.36 USD), +8.27 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 69.27 USD from volume 461.82 USD" + } + ] + }, + { + "id": 578, + "type": "message", + "date": "2021-09-30T03:10:55", + "date_unixtime": "1632964255", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "667937308" + }, + " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,499.21 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15756000 BTC ~ 6,735.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 541.11 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 337.23 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 115.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,109.12 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.34 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.86 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (155 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 65.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.04%\n", + { + "type": "bold", + "text": "This year 64 sells" + }, + " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n", + { + "type": "bold", + "text": "This month 54 sells" + }, + " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.55 sells" + }, + " = +0.00023385 BTC (+10.99 USD), +8.00 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 72.18 USD from volume 481.22 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "667937308" + }, + { + "type": "plain", + "text": " / Amount: 0.00716000 / Price: 42767.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,499.21 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15756000 BTC ~ 6,735.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 541.11 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 337.23 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 115.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,109.12 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.34 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.86 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (155 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 65.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.04%\n" + }, + { + "type": "bold", + "text": "This year 64 sells" + }, + { + "type": "plain", + "text": " = +0.00967700 BTC (+454.82 USD), +331.21 USD\n" + }, + { + "type": "bold", + "text": "This month 54 sells" + }, + { + "type": "plain", + "text": " = +0.00741200 BTC (+348.36 USD), +314.34 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.55 sells" + }, + { + "type": "plain", + "text": " = +0.00023385 BTC (+10.99 USD), +8.00 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 72.18 USD from volume 481.22 USD" + } + ] + }, + { + "id": 579, + "type": "message", + "date": "2021-09-30T04:58:16", + "date_unixtime": "1632970696", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "667235759" + }, + " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 19,799.09 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.15048000 BTC ~ 6,494.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 546.26 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 343.17 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 184.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,414.84 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.34 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.30 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (154 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 66.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.09%\n", + { + "type": "bold", + "text": "This year 65 sells" + }, + " = +0.00981700 BTC (+461.40 USD), +337.23 USD\n", + { + "type": "bold", + "text": "This month 55 sells" + }, + " = +0.00755200 BTC (+354.94 USD), +320.36 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.57 sells" + }, + " = +0.00023680 BTC (+11.13 USD), +8.13 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 69.91 USD from volume 466.05 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "667235759" + }, + { + "type": "plain", + "text": " / Amount: 0.00708000 / Price: 43194.98000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 19,799.09 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.15048000 BTC ~ 6,494.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 546.26 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 343.17 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 184.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,414.84 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.34 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.30 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (154 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 66.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.09%\n" + }, + { + "type": "bold", + "text": "This year 65 sells" + }, + { + "type": "plain", + "text": " = +0.00981700 BTC (+461.40 USD), +337.23 USD\n" + }, + { + "type": "bold", + "text": "This month 55 sells" + }, + { + "type": "plain", + "text": " = +0.00755200 BTC (+354.94 USD), +320.36 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.57 sells" + }, + { + "type": "plain", + "text": " = +0.00023680 BTC (+11.13 USD), +8.13 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 69.91 USD from volume 466.05 USD" + } + ] + }, + { + "id": 580, + "type": "message", + "date": "2021-09-30T05:57:31", + "date_unixtime": "1632974251", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "667116263" + }, + " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 20,099.02 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.14347000 BTC ~ 6,264.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 552.67 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 349.06 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 267.00 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,720.74 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,816.34 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.72 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (153 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 67.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.91%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.91%\n", + { + "type": "bold", + "text": "This year 66 sells" + }, + " = +0.00995700 BTC (+467.98 USD), +343.18 USD\n", + { + "type": "bold", + "text": "This month 56 sells" + }, + " = +0.00769200 BTC (+361.52 USD), +326.31 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00023994 BTC (+11.28 USD), +8.27 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 68.11 USD from volume 454.08 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "667116263" + }, + { + "type": "plain", + "text": " / Amount: 0.00701000 / Price: 43626.93000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 20,099.02 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.14347000 BTC ~ 6,264.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 552.67 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 349.06 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 267.00 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,720.74 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,816.34 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.72 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (153 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 67.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.91%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.91%\n" + }, + { + "type": "bold", + "text": "This year 66 sells" + }, + { + "type": "plain", + "text": " = +0.00995700 BTC (+467.98 USD), +343.18 USD\n" + }, + { + "type": "bold", + "text": "This month 56 sells" + }, + { + "type": "plain", + "text": " = +0.00769200 BTC (+361.52 USD), +326.31 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00023994 BTC (+11.28 USD), +8.27 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 68.11 USD from volume 454.08 USD" + } + ] + }, + { + "id": 581, + "type": "message", + "date": "2021-09-30T21:01:09", + "date_unixtime": "1633028469", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "666668969" + }, + " / Amount: 0.00694000 / Price: 44063.20000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 20,398.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.13653000 BTC ~ 6,020.97 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 558.17 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 354.89 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 334.63 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 10,843.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.13 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.11 USD (151 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 68.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%\n", + { + "type": "bold", + "text": "This year 67 sells" + }, + " = +0.01009700 BTC (+474.56 USD), +349.07 USD\n", + { + "type": "bold", + "text": "This month 57 sells" + }, + " = +0.00783200 BTC (+368.10 USD), +332.20 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00023969 BTC (+11.27 USD), +8.29 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 66.79 USD from volume 445.26 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "666668969" + }, + { + "type": "plain", + "text": " / Amount: 0.00694000 / Price: 44063.20000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 20,398.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.13653000 BTC ~ 6,020.97 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 558.17 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 354.89 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 334.63 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 10,843.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.13 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.11 USD (151 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 68.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%\n" + }, + { + "type": "bold", + "text": "This year 67 sells" + }, + { + "type": "plain", + "text": " = +0.01009700 BTC (+474.56 USD), +349.07 USD\n" + }, + { + "type": "bold", + "text": "This month 57 sells" + }, + { + "type": "plain", + "text": " = +0.00783200 BTC (+368.10 USD), +332.20 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00023969 BTC (+11.27 USD), +8.29 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 66.79 USD from volume 445.26 USD" + } + ] + }, + { + "id": 582, + "type": "message", + "date": "2021-10-01T09:21:41", + "date_unixtime": "1633072901", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660640183" + }, + " / Amount: 0.00008000 / Price: 44503.83000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 20,698.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12965000 BTC ~ 5,774.71 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 563.75 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 361.11 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 400.13 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,003.56 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,145.38 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.47 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (151 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 69.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.92%\n", + { + "type": "bold", + "text": "This year 68 sells" + }, + " = +0.01023700 BTC (+481.14 USD), +354.90 USD\n", + { + "type": "bold", + "text": "This month 0 sells" + }, + " = +0 BTC (+0 USD), +0 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + " = +0.00024008 BTC (+11.28 USD), +8.32 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 65.93 USD from volume 439.55 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660640183" + }, + { + "type": "plain", + "text": " / Amount: 0.00008000 / Price: 44503.83000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 20,698.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12965000 BTC ~ 5,774.71 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 563.75 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 361.11 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 400.13 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,003.56 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,145.38 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.47 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (151 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 69.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.92%\n" + }, + { + "type": "bold", + "text": "This year 68 sells" + }, + { + "type": "plain", + "text": " = +0.01023700 BTC (+481.14 USD), +354.90 USD\n" + }, + { + "type": "bold", + "text": "This month 0 sells" + }, + { + "type": "plain", + "text": " = +0 BTC (+0 USD), +0 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.59 sells" + }, + { + "type": "plain", + "text": " = +0.00024008 BTC (+11.28 USD), +8.32 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 65.93 USD from volume 439.55 USD" + } + ] + }, + { + "id": 583, + "type": "message", + "date": "2021-10-01T10:12:49", + "date_unixtime": "1633075969", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "660614756" + }, + " / Amount: 0.00681000 / Price: 44948.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 20,998.91 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.12284000 BTC ~ 5,518.36 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 568.59 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 367.26 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 454.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,454.89 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 284.91 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (149 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 70.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.06%\n", + { + "type": "bold", + "text": "This year 69 sells" + }, + " = +0.01036700 BTC (+487.25 USD), +361.11 USD\n", + { + "type": "bold", + "text": "This month 1 sells" + }, + " = +0.00013000 BTC (+6.11 USD), +6.21 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.62 sells" + }, + " = +0.00024293 BTC (+11.42 USD), +8.46 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 65.54 USD from volume 436.93 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "660614756" + }, + { + "type": "plain", + "text": " / Amount: 0.00681000 / Price: 44948.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 20,998.91 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.12284000 BTC ~ 5,518.36 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 568.59 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 367.26 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 454.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,454.89 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 284.91 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (149 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 70.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.06%\n" + }, + { + "type": "bold", + "text": "This year 69 sells" + }, + { + "type": "plain", + "text": " = +0.01036700 BTC (+487.25 USD), +361.11 USD\n" + }, + { + "type": "bold", + "text": "This month 1 sells" + }, + { + "type": "plain", + "text": " = +0.00013000 BTC (+6.11 USD), +6.21 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.62 sells" + }, + { + "type": "plain", + "text": " = +0.00024293 BTC (+11.42 USD), +8.46 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 65.54 USD from volume 436.93 USD" + } + ] + }, + { + "id": 584, + "type": "message", + "date": "2021-10-01T12:28:14", + "date_unixtime": "1633084094", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "653017021" + }, + " / Amount: 0.00250000 / Price: 45398.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 21,298.80 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.11610000 BTC ~ 5,287.95 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 576.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 373.36 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 538.19 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 11,760.86 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 285.28 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (148 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 71.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.18%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.67%\n", + { + "type": "bold", + "text": "This year 70 sells" + }, + " = +0.01049700 BTC (+493.36 USD), +367.27 USD\n", + { + "type": "bold", + "text": "This month 2 sells" + }, + " = +0.00026000 BTC (+12.22 USD), +12.37 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.64 sells" + }, + " = +0.00024544 BTC (+11.54 USD), +8.59 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 65.60 USD from volume 437.36 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "653017021" + }, + { + "type": "plain", + "text": " / Amount: 0.00250000 / Price: 45398.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 21,298.80 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.11610000 BTC ~ 5,287.95 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 576.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 373.36 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 538.19 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 11,760.86 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 285.28 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (148 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 71.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.18%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.67%\n" + }, + { + "type": "bold", + "text": "This year 70 sells" + }, + { + "type": "plain", + "text": " = +0.01049700 BTC (+493.36 USD), +367.27 USD\n" + }, + { + "type": "bold", + "text": "This month 2 sells" + }, + { + "type": "plain", + "text": " = +0.00026000 BTC (+12.22 USD), +12.37 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.64 sells" + }, + { + "type": "plain", + "text": " = +0.00024544 BTC (+11.54 USD), +8.59 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 65.60 USD from volume 437.36 USD" + } + ] + }, + { + "id": 585, + "type": "message", + "date": "2021-10-01T12:29:08", + "date_unixtime": "1633084148", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "653012920" + }, + " / Amount: 0.00667000 / Price: 45852.33000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 21,598.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10943000 BTC ~ 5,113.54 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 591.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 379.39 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 684.58 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,677.93 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 24756.46 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 296.18 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (38 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 72.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.10%\n", + { + "type": "bold", + "text": "This year 71 sells" + }, + " = +0.01062700 BTC (+499.47 USD), +373.36 USD\n", + { + "type": "bold", + "text": "This month 3 sells" + }, + " = +0.00039000 BTC (+18.33 USD), +18.46 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.66 sells" + }, + " = +0.00024847 BTC (+11.68 USD), +8.73 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 66.12 USD from volume 440.81 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "653012920" + }, + { + "type": "plain", + "text": " / Amount: 0.00667000 / Price: 45852.33000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 21,598.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10943000 BTC ~ 5,113.54 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 591.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 379.39 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 684.58 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,677.93 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 24756.46 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 296.18 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (38 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 72.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.10%\n" + }, + { + "type": "bold", + "text": "This year 71 sells" + }, + { + "type": "plain", + "text": " = +0.01062700 BTC (+499.47 USD), +373.36 USD\n" + }, + { + "type": "bold", + "text": "This month 3 sells" + }, + { + "type": "plain", + "text": " = +0.00039000 BTC (+18.33 USD), +18.46 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.66 sells" + }, + { + "type": "plain", + "text": " = +0.00024847 BTC (+11.68 USD), +8.73 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 66.12 USD from volume 440.81 USD" + } + ] + }, + { + "id": 586, + "type": "message", + "date": "2021-10-01T12:29:17", + "date_unixtime": "1633084157", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "652631324" + }, + " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 21,898.74 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.10282000 BTC ~ 4,726.42 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 581.82 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 385.37 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 593.94 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.13 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,677.93 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25004.02 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.15 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (90 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 73.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.28%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.77%\n", + { + "type": "bold", + "text": "This year 72 sells" + }, + " = +0.01075700 BTC (+505.58 USD), +379.39 USD\n", + { + "type": "bold", + "text": "This month 4 sells" + }, + " = +0.00052000 BTC (+24.44 USD), +24.49 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.68 sells" + }, + " = +0.00025151 BTC (+11.82 USD), +8.87 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 67.09 USD from volume 447.26 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "652631324" + }, + { + "type": "plain", + "text": " / Amount: 0.00661000 / Price: 46310.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 21,898.74 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.10282000 BTC ~ 4,726.42 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 581.82 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 385.37 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 593.94 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.13 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,677.93 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25004.02 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.15 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (90 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 73.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.28%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.77%\n" + }, + { + "type": "bold", + "text": "This year 72 sells" + }, + { + "type": "plain", + "text": " = +0.01075700 BTC (+505.58 USD), +379.39 USD\n" + }, + { + "type": "bold", + "text": "This month 4 sells" + }, + { + "type": "plain", + "text": " = +0.00052000 BTC (+24.44 USD), +24.49 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.68 sells" + }, + { + "type": "plain", + "text": " = +0.00025151 BTC (+11.82 USD), +8.87 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 67.09 USD from volume 447.26 USD" + } + ] + }, + { + "id": 587, + "type": "message", + "date": "2021-10-01T12:29:30", + "date_unixtime": "1633084170", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "652630353" + }, + " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 22,198.72 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.09628000 BTC ~ 4,438.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 583.49 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 391.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 613.61 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 12,677.93 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 286.29 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (144 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 74.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.46%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +2.48%\n", + { + "type": "bold", + "text": "This year 73 sells" + }, + " = +0.01088700 BTC (+511.69 USD), +385.38 USD\n", + { + "type": "bold", + "text": "This month 5 sells" + }, + " = +0.00065000 BTC (+30.55 USD), +30.48 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.71 sells" + }, + " = +0.00025455 BTC (+11.96 USD), +9.01 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 68.50 USD from volume 456.68 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "652630353" + }, + { + "type": "plain", + "text": " / Amount: 0.00654000 / Price: 46773.97000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 22,198.72 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.09628000 BTC ~ 4,438.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 583.49 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 391.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 613.61 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 12,677.93 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 286.29 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (144 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 74.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.46%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +2.48%\n" + }, + { + "type": "bold", + "text": "This year 73 sells" + }, + { + "type": "plain", + "text": " = +0.01088700 BTC (+511.69 USD), +385.38 USD\n" + }, + { + "type": "bold", + "text": "This month 5 sells" + }, + { + "type": "plain", + "text": " = +0.00065000 BTC (+30.55 USD), +30.48 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.71 sells" + }, + { + "type": "plain", + "text": " = +0.00025455 BTC (+11.96 USD), +9.01 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 68.50 USD from volume 456.68 USD" + } + ] + }, + { + "id": 588, + "type": "message", + "date": "2021-10-01T12:42:21", + "date_unixtime": "1633084941", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "652283327" + }, + " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 22,498.52 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08981000 BTC ~ 4,246.06 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 598.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 397.14 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 741.72 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,288.89 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25004.02 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.63 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.10 USD (88 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 75.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.93%\n", + { + "type": "bold", + "text": "This year 74 sells" + }, + " = +0.01101700 BTC (+517.80 USD), +391.30 USD\n", + { + "type": "bold", + "text": "This month 6 sells" + }, + " = +0.00078000 BTC (+36.66 USD), +36.40 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + " = +0.00025753 BTC (+12.10 USD), +9.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 70.35 USD from volume 469.03 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "652283327" + }, + { + "type": "plain", + "text": " / Amount: 0.00647000 / Price: 47241.71000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 22,498.52 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08981000 BTC ~ 4,246.06 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 598.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 397.14 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 741.72 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,288.89 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25004.02 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.63 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.10 USD (88 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 75.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.93%\n" + }, + { + "type": "bold", + "text": "This year 74 sells" + }, + { + "type": "plain", + "text": " = +0.01101700 BTC (+517.80 USD), +391.30 USD\n" + }, + { + "type": "bold", + "text": "This month 6 sells" + }, + { + "type": "plain", + "text": " = +0.00078000 BTC (+36.66 USD), +36.40 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + { + "type": "plain", + "text": " = +0.00025753 BTC (+12.10 USD), +9.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 70.35 USD from volume 469.03 USD" + } + ] + }, + { + "id": 589, + "type": "message", + "date": "2021-10-01T12:42:31", + "date_unixtime": "1633084951", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "652225460" + }, + " / Amount: 0.00641000 / Price: 47714.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 22,798.57 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.08340000 BTC ~ 3,941.58 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 598.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 402.94 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 742.88 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,288.89 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 286.91 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (142 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 76.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.97%\n", + { + "type": "bold", + "text": "This year 75 sells" + }, + " = +0.01114700 BTC (+523.91 USD), +397.15 USD\n", + { + "type": "bold", + "text": "This month 7 sells" + }, + " = +0.00091000 BTC (+42.77 USD), +42.25 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.75 sells" + }, + " = +0.00026057 BTC (+12.25 USD), +9.28 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 72.64 USD from volume 484.27 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "652225460" + }, + { + "type": "plain", + "text": " / Amount: 0.00641000 / Price: 47714.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 22,798.57 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.08340000 BTC ~ 3,941.58 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 598.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 402.94 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 742.88 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,288.89 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 286.91 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (142 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 76.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.97%\n" + }, + { + "type": "bold", + "text": "This year 75 sells" + }, + { + "type": "plain", + "text": " = +0.01114700 BTC (+523.91 USD), +397.15 USD\n" + }, + { + "type": "bold", + "text": "This month 7 sells" + }, + { + "type": "plain", + "text": " = +0.00091000 BTC (+42.77 USD), +42.25 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.75 sells" + }, + { + "type": "plain", + "text": " = +0.00026057 BTC (+12.25 USD), +9.28 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 72.64 USD from volume 484.27 USD" + } + ] + }, + { + "id": 590, + "type": "message", + "date": "2021-10-01T21:09:18", + "date_unixtime": "1633115358", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "652221480" + }, + " / Amount: 0.00464000 / Price: 48191.27000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 23,098.38 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07705000 BTC ~ 3,685.28 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 605.38 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 409.15 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 799.78 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,594.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 287.22 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (141 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 77.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.12%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.76%\n", + { + "type": "bold", + "text": "This year 76 sells" + }, + " = +0.01127700 BTC (+530.02 USD), +402.95 USD\n", + { + "type": "bold", + "text": "This month 8 sells" + }, + " = +0.00104000 BTC (+48.88 USD), +48.05 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00026146 BTC (+12.29 USD), +9.34 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 75.36 USD from volume 502.40 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "652221480" + }, + { + "type": "plain", + "text": " / Amount: 0.00464000 / Price: 48191.27000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 23,098.38 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07705000 BTC ~ 3,685.28 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 605.38 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 409.15 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 799.78 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,594.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 287.22 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (141 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 77.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.12%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.76%\n" + }, + { + "type": "bold", + "text": "This year 76 sells" + }, + { + "type": "plain", + "text": " = +0.01127700 BTC (+530.02 USD), +402.95 USD\n" + }, + { + "type": "bold", + "text": "This month 8 sells" + }, + { + "type": "plain", + "text": " = +0.00104000 BTC (+48.88 USD), +48.05 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00026146 BTC (+12.29 USD), +9.34 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 75.36 USD from volume 502.40 USD" + } + ] + }, + { + "id": 591, + "type": "message", + "date": "2021-10-03T19:50:31", + "date_unixtime": "1633283431", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "652068866" + }, + " / Amount: 0.00629000 / Price: 48673.19000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 23,398.37 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07076000 BTC ~ 3,444.58 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 616.14 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 415.31 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 875.99 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 13,900.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 287.51 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (140 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 78.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.99%\n", + { + "type": "bold", + "text": "This year 77 sells" + }, + " = +0.01139700 BTC (+535.66 USD), +409.16 USD\n", + { + "type": "bold", + "text": "This month 9 sells" + }, + " = +0.00116000 BTC (+54.52 USD), +54.26 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.71 sells" + }, + " = +0.00025284 BTC (+11.88 USD), +9.08 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 78.51 USD from volume 523.40 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "652068866" + }, + { + "type": "plain", + "text": " / Amount: 0.00629000 / Price: 48673.19000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 23,398.37 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07076000 BTC ~ 3,444.58 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 616.14 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 415.31 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 875.99 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 13,900.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 287.51 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (140 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 78.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.99%\n" + }, + { + "type": "bold", + "text": "This year 77 sells" + }, + { + "type": "plain", + "text": " = +0.01139700 BTC (+535.66 USD), +409.16 USD\n" + }, + { + "type": "bold", + "text": "This month 9 sells" + }, + { + "type": "plain", + "text": " = +0.00116000 BTC (+54.52 USD), +54.26 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.71 sells" + }, + { + "type": "plain", + "text": " = +0.00025284 BTC (+11.88 USD), +9.08 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 78.51 USD from volume 523.40 USD" + } + ] + }, + { + "id": 592, + "type": "message", + "date": "2021-10-03T19:52:33", + "date_unixtime": "1633283553", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630891943" + }, + " / Amount: 0.00623000 / Price: 49159.92000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 26,998.41 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 23,698.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.06453000 BTC ~ 3,167.20 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 621.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 421.42 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 909.96 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,206.67 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 287.79 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (138 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 79.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.16%\n", + { + "type": "bold", + "text": "This year 78 sells" + }, + " = +0.01151700 BTC (+541.30 USD), +415.31 USD\n", + { + "type": "bold", + "text": "This month 10 sells" + }, + " = +0.00128000 BTC (+60.16 USD), +60.41 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + " = +0.00025549 BTC (+12.01 USD), +9.21 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 82.08 USD from volume 547.22 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630891943" + }, + { + "type": "plain", + "text": " / Amount: 0.00623000 / Price: 49159.92000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 26,998.41 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 23,698.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.06453000 BTC ~ 3,167.20 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 621.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 421.42 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 909.96 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,206.67 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 287.79 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (138 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 79.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.16%\n" + }, + { + "type": "bold", + "text": "This year 78 sells" + }, + { + "type": "plain", + "text": " = +0.01151700 BTC (+541.30 USD), +415.31 USD\n" + }, + { + "type": "bold", + "text": "This month 10 sells" + }, + { + "type": "plain", + "text": " = +0.00128000 BTC (+60.16 USD), +60.41 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + { + "type": "plain", + "text": " = +0.00025549 BTC (+12.01 USD), +9.21 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 82.08 USD from volume 547.22 USD" + } + ] + }, + { + "id": 593, + "type": "message", + "date": "2021-10-04T06:06:25", + "date_unixtime": "1633320385", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "675340451" + }, + " / Amount: 0.00635000 / Price: 47269.15000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 23,698.53 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.07088000 BTC ~ 3,352.30 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01265700 BTC ~ 598.62 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 421.42 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 772.30 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,999.82 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,206.68 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25506.60 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 278.88 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (250 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 79.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.98%\n", + { + "type": "bold", + "text": "This year 79 sells" + }, + " = +0.01163700 BTC (+546.94 USD), +421.42 USD\n", + { + "type": "bold", + "text": "This month 11 sells" + }, + " = +0.00140000 BTC (+65.80 USD), +66.52 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.74 sells" + }, + " = +0.00025574 BTC (+12.02 USD), +9.26 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 86.08 USD from volume 573.85 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "675340451" + }, + { + "type": "plain", + "text": " / Amount: 0.00635000 / Price: 47269.15000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 23,698.53 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.07088000 BTC ~ 3,352.30 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01265700 BTC ~ 598.62 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 421.42 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 772.30 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,999.82 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,206.68 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25506.60 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 278.88 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (250 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 79.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.98%\n" + }, + { + "type": "bold", + "text": "This year 79 sells" + }, + { + "type": "plain", + "text": " = +0.01163700 BTC (+546.94 USD), +421.42 USD\n" + }, + { + "type": "bold", + "text": "This month 11 sells" + }, + { + "type": "plain", + "text": " = +0.00140000 BTC (+65.80 USD), +66.52 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.74 sells" + }, + { + "type": "plain", + "text": " = +0.00025574 BTC (+12.02 USD), +9.26 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 86.08 USD from volume 573.85 USD" + } + ] + }, + { + "id": 594, + "type": "message", + "date": "2021-10-04T19:51:28", + "date_unixtime": "1633369888", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "676026101" + }, + " / Amount: 0.00353000 / Price: 49159.92000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 23,998.69 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.06453000 BTC ~ 3,169.38 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 627.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 427.52 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 924.56 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,996.33 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,216.67 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 287.89 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (137 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 80.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.09%\n", + { + "type": "bold", + "text": "This year 79 sells" + }, + " = +0.01163700 BTC (+546.94 USD), +421.42 USD\n", + { + "type": "bold", + "text": "This month 11 sells" + }, + " = +0.00140000 BTC (+65.80 USD), +66.52 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.71 sells" + }, + " = +0.00025256 BTC (+11.87 USD), +9.15 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 84.14 USD from volume 560.93 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "676026101" + }, + { + "type": "plain", + "text": " / Amount: 0.00353000 / Price: 49159.92000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 23,998.69 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.06453000 BTC ~ 3,169.38 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 627.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 427.52 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 924.56 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,996.33 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,216.67 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 287.89 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (137 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 80.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.09%\n" + }, + { + "type": "bold", + "text": "This year 79 sells" + }, + { + "type": "plain", + "text": " = +0.01163700 BTC (+546.94 USD), +421.42 USD\n" + }, + { + "type": "bold", + "text": "This month 11 sells" + }, + { + "type": "plain", + "text": " = +0.00140000 BTC (+65.80 USD), +66.52 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.71 sells" + }, + { + "type": "plain", + "text": " = +0.00025256 BTC (+11.87 USD), +9.15 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 84.14 USD from volume 560.93 USD" + } + ] + }, + { + "id": 595, + "type": "message", + "date": "2021-10-05T02:42:07", + "date_unixtime": "1633394527", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630889218" + }, + " / Amount: 0.00454000 / Price: 49651.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 24,298.51 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.05837000 BTC ~ 2,898.89 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 634.56 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 433.56 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 966.95 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,518.42 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 288.16 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (136 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 81.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.97%\n", + { + "type": "bold", + "text": "This year 80 sells" + }, + " = +0.01175700 BTC (+552.58 USD), +427.53 USD\n", + { + "type": "bold", + "text": "This month 12 sells" + }, + " = +0.00152000 BTC (+71.44 USD), +72.63 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + " = +0.00025359 BTC (+11.92 USD), +9.22 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 88.11 USD from volume 587.40 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630889218" + }, + { + "type": "plain", + "text": " / Amount: 0.00454000 / Price: 49651.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 24,298.51 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.05837000 BTC ~ 2,898.89 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 634.56 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 433.56 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 966.95 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,518.42 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 288.16 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (136 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 81.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.97%\n" + }, + { + "type": "bold", + "text": "This year 80 sells" + }, + { + "type": "plain", + "text": " = +0.01175700 BTC (+552.58 USD), +427.53 USD\n" + }, + { + "type": "bold", + "text": "This month 12 sells" + }, + { + "type": "plain", + "text": " = +0.00152000 BTC (+71.44 USD), +72.63 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + { + "type": "plain", + "text": " = +0.00025359 BTC (+11.92 USD), +9.22 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 88.11 USD from volume 587.40 USD" + } + ] + }, + { + "id": 596, + "type": "message", + "date": "2021-10-05T11:43:59", + "date_unixtime": "1633427039", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630888733" + }, + " / Amount: 0.00610000 / Price: 50148.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 24,598.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.05227000 BTC ~ 2,622.37 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 641.02 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 439.54 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,002.79 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 14,824.05 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 288.42 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.09 USD (135 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 82.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.90%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%\n", + { + "type": "bold", + "text": "This year 81 sells" + }, + " = +0.01187700 BTC (+558.22 USD), +433.56 USD\n", + { + "type": "bold", + "text": "This month 13 sells" + }, + " = +0.00164000 BTC (+77.08 USD), +78.66 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + " = +0.00025412 BTC (+11.94 USD), +9.28 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 92.49 USD from volume 616.61 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630888733" + }, + { + "type": "plain", + "text": " / Amount: 0.00610000 / Price: 50148.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 24,598.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.05227000 BTC ~ 2,622.37 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 641.02 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 439.54 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,002.79 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 14,824.05 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 288.42 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.09 USD (135 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 82.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.90%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%\n" + }, + { + "type": "bold", + "text": "This year 81 sells" + }, + { + "type": "plain", + "text": " = +0.01187700 BTC (+558.22 USD), +433.56 USD\n" + }, + { + "type": "bold", + "text": "This month 13 sells" + }, + { + "type": "plain", + "text": " = +0.00164000 BTC (+77.08 USD), +78.66 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.73 sells" + }, + { + "type": "plain", + "text": " = +0.00025412 BTC (+11.94 USD), +9.28 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 92.49 USD from volume 616.61 USD" + } + ] + }, + { + "id": 597, + "type": "message", + "date": "2021-10-05T20:26:14", + "date_unixtime": "1633458374", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630859666" + }, + " / Amount: 0.00604000 / Price: 50649.51000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 24,898.43 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.04623000 BTC ~ 2,340.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 646.81 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 445.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,032.42 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,129.84 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 288.67 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (134 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 83.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%\n", + { + "type": "bold", + "text": "This year 82 sells" + }, + " = +0.01199700 BTC (+563.86 USD), +439.54 USD\n", + { + "type": "bold", + "text": "This month 14 sells" + }, + " = +0.00176000 BTC (+82.72 USD), +84.64 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.74 sells" + }, + " = +0.00025471 BTC (+11.97 USD), +9.33 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 97.28 USD from volume 648.56 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630859666" + }, + { + "type": "plain", + "text": " / Amount: 0.00604000 / Price: 50649.51000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 24,898.43 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.04623000 BTC ~ 2,340.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 646.81 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 445.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,032.42 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,129.84 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 288.67 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (134 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 83.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%\n" + }, + { + "type": "bold", + "text": "This year 82 sells" + }, + { + "type": "plain", + "text": " = +0.01199700 BTC (+563.86 USD), +439.54 USD\n" + }, + { + "type": "bold", + "text": "This month 14 sells" + }, + { + "type": "plain", + "text": " = +0.00176000 BTC (+82.72 USD), +84.64 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.74 sells" + }, + { + "type": "plain", + "text": " = +0.00025471 BTC (+11.97 USD), +9.33 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 97.28 USD from volume 648.56 USD" + } + ] + }, + { + "id": 598, + "type": "message", + "date": "2021-10-05T21:50:58", + "date_unixtime": "1633463458", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630859011" + }, + " / Amount: 0.00598000 / Price: 51156.00000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 25,198.48 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.04025000 BTC ~ 2,062.29 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 654.65 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 451.32 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,068.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,435.30 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 288.92 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (133 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 84.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.02%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.84%\n", + { + "type": "bold", + "text": "This year 83 sells" + }, + " = +0.01211700 BTC (+569.50 USD), +445.47 USD\n", + { + "type": "bold", + "text": "This month 15 sells" + }, + " = +0.00188000 BTC (+88.36 USD), +90.57 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00025694 BTC (+12.08 USD), +9.45 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 102.48 USD from volume 683.23 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630859011" + }, + { + "type": "plain", + "text": " / Amount: 0.00598000 / Price: 51156.00000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 25,198.48 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.04025000 BTC ~ 2,062.29 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 654.65 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 451.32 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,068.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,435.30 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 288.92 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (133 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 84.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.02%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.84%\n" + }, + { + "type": "bold", + "text": "This year 83 sells" + }, + { + "type": "plain", + "text": " = +0.01211700 BTC (+569.50 USD), +445.47 USD\n" + }, + { + "type": "bold", + "text": "This month 15 sells" + }, + { + "type": "plain", + "text": " = +0.00188000 BTC (+88.36 USD), +90.57 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00025694 BTC (+12.08 USD), +9.45 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 102.48 USD from volume 683.23 USD" + } + ] + }, + { + "id": 599, + "type": "message", + "date": "2021-10-05T22:16:59", + "date_unixtime": "1633465019", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630847862" + }, + " / Amount: 0.00592000 / Price: 51667.55000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 25,498.55 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.03433000 BTC ~ 1,777.16 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 661.43 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 457.13 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,095.70 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 15,740.87 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 289.16 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (132 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 85.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.81%\n", + { + "type": "bold", + "text": "This year 84 sells" + }, + " = +0.01223700 BTC (+575.14 USD), +451.33 USD\n", + { + "type": "bold", + "text": "This month 16 sells" + }, + " = +0.00200000 BTC (+94.00 USD), +96.43 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + " = +0.00025938 BTC (+12.19 USD), +9.57 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 108.09 USD from volume 720.58 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630847862" + }, + { + "type": "plain", + "text": " / Amount: 0.00592000 / Price: 51667.55000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 25,498.55 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.03433000 BTC ~ 1,777.16 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 661.43 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 457.13 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,095.70 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 15,740.87 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 289.16 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (132 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 85.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.81%\n" + }, + { + "type": "bold", + "text": "This year 84 sells" + }, + { + "type": "plain", + "text": " = +0.01223700 BTC (+575.14 USD), +451.33 USD\n" + }, + { + "type": "bold", + "text": "This month 16 sells" + }, + { + "type": "plain", + "text": " = +0.00200000 BTC (+94.00 USD), +96.43 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + { + "type": "plain", + "text": " = +0.00025938 BTC (+12.19 USD), +9.57 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 108.09 USD from volume 720.58 USD" + } + ] + }, + { + "id": 600, + "type": "message", + "date": "2021-10-06T14:22:02", + "date_unixtime": "1633522922", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630773927" + }, + " / Amount: 0.00586000 / Price: 52184.23000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 25,798.61 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02847000 BTC ~ 1,485.64 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 666.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 462.87 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,115.29 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,046.51 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 289.39 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (131 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 86.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.00%\n", + { + "type": "bold", + "text": "This year 85 sells" + }, + " = +0.01235700 BTC (+580.78 USD), +457.13 USD\n", + { + "type": "bold", + "text": "This month 17 sells" + }, + " = +0.00212000 BTC (+99.64 USD), +102.23 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + " = +0.00025826 BTC (+12.14 USD), +9.55 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 114.09 USD from volume 760.58 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630773927" + }, + { + "type": "plain", + "text": " / Amount: 0.00586000 / Price: 52184.23000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 25,798.61 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02847000 BTC ~ 1,485.64 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 666.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 462.87 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,115.29 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,046.51 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 289.39 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (131 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 86.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.00%\n" + }, + { + "type": "bold", + "text": "This year 85 sells" + }, + { + "type": "plain", + "text": " = +0.01235700 BTC (+580.78 USD), +457.13 USD\n" + }, + { + "type": "bold", + "text": "This month 17 sells" + }, + { + "type": "plain", + "text": " = +0.00212000 BTC (+99.64 USD), +102.23 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + { + "type": "plain", + "text": " = +0.00025826 BTC (+12.14 USD), +9.55 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 114.09 USD from volume 760.58 USD" + } + ] + }, + { + "id": 601, + "type": "message", + "date": "2021-10-06T14:53:05", + "date_unixtime": "1633524785", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630428132" + }, + " / Amount: 0.00001000 / Price: 52706.07000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 26,098.63 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02266000 BTC ~ 1,190.80 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 671.44 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 469.07 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,131.37 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,352.23 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 289.62 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (130 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 87.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.54%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.30%\n", + { + "type": "bold", + "text": "This year 86 sells" + }, + " = +0.01247700 BTC (+586.42 USD), +462.87 USD\n", + { + "type": "bold", + "text": "This month 18 sells" + }, + " = +0.00224000 BTC (+105.28 USD), +107.97 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00026065 BTC (+12.25 USD), +9.67 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 120.48 USD from volume 803.20 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630428132" + }, + { + "type": "plain", + "text": " / Amount: 0.00001000 / Price: 52706.07000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 26,098.63 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02266000 BTC ~ 1,190.80 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 671.44 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 469.07 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,131.37 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,352.23 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 289.62 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (130 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 87.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.54%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.30%\n" + }, + { + "type": "bold", + "text": "This year 86 sells" + }, + { + "type": "plain", + "text": " = +0.01247700 BTC (+586.42 USD), +462.87 USD\n" + }, + { + "type": "bold", + "text": "This month 18 sells" + }, + { + "type": "plain", + "text": " = +0.00224000 BTC (+105.28 USD), +107.97 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00026065 BTC (+12.25 USD), +9.67 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 120.48 USD from volume 803.20 USD" + } + ] + }, + { + "id": 602, + "type": "message", + "date": "2021-10-06T15:11:52", + "date_unixtime": "1633525912", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630306409" + }, + " / Amount: 0.00575000 / Price: 53233.13000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 26,398.58 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01691000 BTC ~ 910.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 688.30 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 475.21 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,174.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,305.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 16,657.98 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25004.02 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 289.84 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (128 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 88.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -6.09%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +-0.19%\n", + { + "type": "bold", + "text": "This year 87 sells" + }, + " = +0.01258700 BTC (+591.59 USD), +469.07 USD\n", + { + "type": "bold", + "text": "This month 19 sells" + }, + " = +0.00235000 BTC (+110.45 USD), +114.17 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + " = +0.00026287 BTC (+12.36 USD), +9.80 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 127.27 USD from volume 848.50 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630306409" + }, + { + "type": "plain", + "text": " / Amount: 0.00575000 / Price: 53233.13000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 26,398.58 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01691000 BTC ~ 910.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 688.30 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 475.21 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,174.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,305.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 16,657.98 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25004.02 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 289.84 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (128 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 88.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -6.09%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +-0.19%\n" + }, + { + "type": "bold", + "text": "This year 87 sells" + }, + { + "type": "plain", + "text": " = +0.01258700 BTC (+591.59 USD), +469.07 USD\n" + }, + { + "type": "bold", + "text": "This month 19 sells" + }, + { + "type": "plain", + "text": " = +0.00235000 BTC (+110.45 USD), +114.17 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + { + "type": "plain", + "text": " = +0.00026287 BTC (+12.36 USD), +9.80 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 127.27 USD from volume 848.50 USD" + } + ] + }, + { + "id": 603, + "type": "message", + "date": "2021-10-06T15:12:47", + "date_unixtime": "1633525967", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630301634" + }, + " / Amount: 0.00120000 / Price: 53765.46000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 26,698.42 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01122000 BTC ~ 608.66 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 693.12 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 481.29 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,182.93 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,269.71 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25004.02 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 294.19 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (74 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 89.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.76%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.10%\n", + { + "type": "bold", + "text": "This year 88 sells" + }, + " = +0.01269700 BTC (+596.76 USD), +475.22 USD\n", + { + "type": "bold", + "text": "This month 20 sells" + }, + " = +0.00246000 BTC (+115.62 USD), +120.32 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.84 sells" + }, + " = +0.00026517 BTC (+12.46 USD), +9.92 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 134.45 USD from volume 896.35 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630301634" + }, + { + "type": "plain", + "text": " / Amount: 0.00120000 / Price: 53765.46000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 26,698.42 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01122000 BTC ~ 608.66 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 693.12 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 481.29 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,182.93 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,269.71 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25004.02 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 294.19 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (74 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 89.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.76%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.10%\n" + }, + { + "type": "bold", + "text": "This year 88 sells" + }, + { + "type": "plain", + "text": " = +0.01269700 BTC (+596.76 USD), +475.22 USD\n" + }, + { + "type": "bold", + "text": "This month 20 sells" + }, + { + "type": "plain", + "text": " = +0.00246000 BTC (+115.62 USD), +120.32 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.84 sells" + }, + { + "type": "plain", + "text": " = +0.00026517 BTC (+12.46 USD), +9.92 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 134.45 USD from volume 896.35 USD" + } + ] + }, + { + "id": 604, + "type": "message", + "date": "2021-10-06T15:12:56", + "date_unixtime": "1633525976", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "630170238" + }, + " / Amount: 0.00564000 / Price: 54303.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 26,998.66 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00558000 BTC ~ 302.44 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 692.52 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 487.33 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,182.38 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.20 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,269.71 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.06 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.26 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (126 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 24680.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 90.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.69%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.19%\n", + { + "type": "bold", + "text": "This year 89 sells" + }, + " = +0.01280700 BTC (+601.93 USD), +481.30 USD\n", + { + "type": "bold", + "text": "This month 21 sells" + }, + " = +0.00257000 BTC (+120.79 USD), +126.40 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.86 sells" + }, + " = +0.00026746 BTC (+12.57 USD), +10.05 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 142.01 USD from volume 946.74 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "630170238" + }, + { + "type": "plain", + "text": " / Amount: 0.00564000 / Price: 54303.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 26,998.66 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00558000 BTC ~ 302.44 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 692.52 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 487.33 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,182.38 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.20 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,269.71 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.06 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.26 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (126 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 24680.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 90.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.69%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.19%\n" + }, + { + "type": "bold", + "text": "This year 89 sells" + }, + { + "type": "plain", + "text": " = +0.01280700 BTC (+601.93 USD), +481.30 USD\n" + }, + { + "type": "bold", + "text": "This month 21 sells" + }, + { + "type": "plain", + "text": " = +0.00257000 BTC (+120.79 USD), +126.40 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.86 sells" + }, + { + "type": "plain", + "text": " = +0.00026746 BTC (+12.57 USD), +10.05 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 142.01 USD from volume 946.74 USD" + } + ] + }, + { + "id": 605, + "type": "message", + "date": "2021-10-06T15:14:26", + "date_unixtime": "1633526066", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "629789159" + }, + " / Amount: 0.00558000 / Price: 54846.16000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 697.19 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 493.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,190.65 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,575.54 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 25254.05 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.79%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 90 sells" + }, + " = +0.01291700 BTC (+607.10 USD), +487.33 USD\n", + { + "type": "bold", + "text": "This month 22 sells" + }, + " = +0.00268000 BTC (+125.96 USD), +132.43 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.88 sells" + }, + " = +0.00026975 BTC (+12.68 USD), +10.18 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 149.96 USD from volume 999.72 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "629789159" + }, + { + "type": "plain", + "text": " / Amount: 0.00558000 / Price: 54846.16000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 697.19 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 493.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,190.65 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,575.54 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 25254.05 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.79%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 90 sells" + }, + { + "type": "plain", + "text": " = +0.01291700 BTC (+607.10 USD), +487.33 USD\n" + }, + { + "type": "bold", + "text": "This month 22 sells" + }, + { + "type": "plain", + "text": " = +0.00268000 BTC (+125.96 USD), +132.43 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.88 sells" + }, + { + "type": "plain", + "text": " = +0.00026975 BTC (+12.68 USD), +10.18 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 149.96 USD from volume 999.72 USD" + } + ] + }, + { + "id": 606, + "type": "message", + "date": "2021-10-06T15:18:34", + "date_unixtime": "1633526314", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "680071321" + }, + " / Amount: 0.00552000 / Price: 54334.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,598.49 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00552000 BTC ~ 299.34 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01277700 BTC ~ 692.86 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 493.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,185.73 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,989.81 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,585.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26279.47 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 92.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 91 sells" + }, + " = +0.01302700 BTC (+612.27 USD), +493.47 USD\n", + { + "type": "bold", + "text": "This month 23 sells" + }, + " = +0.00279000 BTC (+131.13 USD), +138.57 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.90 sells" + }, + " = +0.00027204 BTC (+12.79 USD), +10.30 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 158.27 USD from volume 1055.16 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "680071321" + }, + { + "type": "plain", + "text": " / Amount: 0.00552000 / Price: 54334.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,598.49 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00552000 BTC ~ 299.34 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01277700 BTC ~ 692.86 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 493.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,185.73 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,989.81 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,585.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26279.47 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 92.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 91 sells" + }, + { + "type": "plain", + "text": " = +0.01302700 BTC (+612.27 USD), +493.47 USD\n" + }, + { + "type": "bold", + "text": "This month 23 sells" + }, + { + "type": "plain", + "text": " = +0.00279000 BTC (+131.13 USD), +138.57 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.90 sells" + }, + { + "type": "plain", + "text": " = +0.00027204 BTC (+12.79 USD), +10.30 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 158.27 USD from volume 1055.16 USD" + } + ] + }, + { + "id": 607, + "type": "message", + "date": "2021-10-06T15:56:18", + "date_unixtime": "1633528578", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "680069468" + }, + " / Amount: 0.00558000 / Price: 53796.70000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,898.68 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 27,298.56 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01099000 BTC ~ 591.67 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01288700 BTC ~ 693.80 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 493.46 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,178.82 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,689.97 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,585.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26279.47 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.57 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (235 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 25428.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 93.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 91.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.15%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.96%\n", + { + "type": "bold", + "text": "This year 91 sells" + }, + " = +0.01302700 BTC (+612.27 USD), +493.47 USD\n", + { + "type": "bold", + "text": "This month 23 sells" + }, + " = +0.00279000 BTC (+131.13 USD), +138.57 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.90 sells" + }, + " = +0.00027189 BTC (+12.78 USD), +10.30 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 150.78 USD from volume 1005.21 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "680069468" + }, + { + "type": "plain", + "text": " / Amount: 0.00558000 / Price: 53796.70000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,898.68 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 27,298.56 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01099000 BTC ~ 591.67 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01288700 BTC ~ 693.80 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 493.46 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,178.82 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,689.97 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,585.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26279.47 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.57 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (235 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 25428.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 93.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 91.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.15%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.96%\n" + }, + { + "type": "bold", + "text": "This year 91 sells" + }, + { + "type": "plain", + "text": " = +0.01302700 BTC (+612.27 USD), +493.47 USD\n" + }, + { + "type": "bold", + "text": "This month 23 sells" + }, + { + "type": "plain", + "text": " = +0.00279000 BTC (+131.13 USD), +138.57 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.90 sells" + }, + { + "type": "plain", + "text": " = +0.00027189 BTC (+12.78 USD), +10.30 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 150.78 USD from volume 1005.21 USD" + } + ] + }, + { + "id": 608, + "type": "message", + "date": "2021-10-08T10:38:41", + "date_unixtime": "1633682321", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "680155885" + }, + " / Amount: 0.00547000 / Price: 55948.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 27,898.68 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 27,598.75 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00541000 BTC ~ 302.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01299700 BTC ~ 726.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 499.31 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,228.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,696.06 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,585.54 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26019.28 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.42 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (124 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 25428.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 93.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 92.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.05%\n", + { + "type": "bold", + "text": "This year 91 sells" + }, + " = +0.01302700 BTC (+612.27 USD), +493.47 USD\n", + { + "type": "bold", + "text": "This month 23 sells" + }, + " = +0.00279000 BTC (+131.13 USD), +138.57 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.83 sells" + }, + " = +0.00026215 BTC (+12.32 USD), +9.93 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 143.77 USD from volume 958.47 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "680155885" + }, + { + "type": "plain", + "text": " / Amount: 0.00547000 / Price: 55948.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 27,898.68 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 27,598.75 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00541000 BTC ~ 302.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01299700 BTC ~ 726.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 499.31 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,228.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,696.06 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,585.54 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26019.28 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.42 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (124 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 25428.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 93.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 92.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.05%\n" + }, + { + "type": "bold", + "text": "This year 91 sells" + }, + { + "type": "plain", + "text": " = +0.01302700 BTC (+612.27 USD), +493.47 USD\n" + }, + { + "type": "bold", + "text": "This month 23 sells" + }, + { + "type": "plain", + "text": " = +0.00279000 BTC (+131.13 USD), +138.57 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.83 sells" + }, + { + "type": "plain", + "text": " = +0.00026215 BTC (+12.32 USD), +9.93 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 143.77 USD from volume 958.47 USD" + } + ] + }, + { + "id": 609, + "type": "message", + "date": "2021-10-08T22:55:48", + "date_unixtime": "1633726548", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "683497690" + }, + " / Amount: 0.00558000 / Price: 53796.70000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 27,598.75 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01099000 BTC ~ 591.87 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01299700 BTC ~ 699.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 499.31 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,191.03 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,695.82 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,585.54 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26279.47 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.65 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (234 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 25428.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 92.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%\n", + { + "type": "bold", + "text": "This year 92 sells" + }, + " = +0.01313700 BTC (+617.44 USD), +499.32 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00290000 BTC (+136.30 USD), +144.42 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.83 sells" + }, + " = +0.00026167 BTC (+12.30 USD), +9.95 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 152.69 USD from volume 1017.96 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "683497690" + }, + { + "type": "plain", + "text": " / Amount: 0.00558000 / Price: 53796.70000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 27,598.75 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01099000 BTC ~ 591.87 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01299700 BTC ~ 699.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 499.31 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,191.03 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,695.82 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,585.54 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26279.47 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.65 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (234 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 25428.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 92.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%\n" + }, + { + "type": "bold", + "text": "This year 92 sells" + }, + { + "type": "plain", + "text": " = +0.01313700 BTC (+617.44 USD), +499.32 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00290000 BTC (+136.30 USD), +144.42 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.83 sells" + }, + { + "type": "plain", + "text": " = +0.00026167 BTC (+12.30 USD), +9.95 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 152.69 USD from volume 1017.96 USD" + } + ] + }, + { + "id": 610, + "type": "message", + "date": "2021-10-10T06:56:28", + "date_unixtime": "1633841788", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "684588712" + }, + " / Amount: 0.00547000 / Price: 55948.57000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 27,898.94 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00541000 BTC ~ 302.32 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01310700 BTC ~ 732.45 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 505.17 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,240.01 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,701.91 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,585.53 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26019.28 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.50 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (123 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 25428.63 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 93.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.12%\n", + { + "type": "bold", + "text": "This year 92 sells" + }, + " = +0.01313700 BTC (+617.44 USD), +499.32 USD\n", + { + "type": "bold", + "text": "This month 24 sells" + }, + " = +0.00290000 BTC (+136.30 USD), +144.42 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + " = +0.00025490 BTC (+11.98 USD), +9.69 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 145.74 USD from volume 971.62 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "684588712" + }, + { + "type": "plain", + "text": " / Amount: 0.00547000 / Price: 55948.57000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 27,898.94 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00541000 BTC ~ 302.32 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01310700 BTC ~ 732.45 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 505.17 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,240.01 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,701.91 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,585.53 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26019.28 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.50 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (123 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 25428.63 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 93.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.12%\n" + }, + { + "type": "bold", + "text": "This year 92 sells" + }, + { + "type": "plain", + "text": " = +0.01313700 BTC (+617.44 USD), +499.32 USD\n" + }, + { + "type": "bold", + "text": "This month 24 sells" + }, + { + "type": "plain", + "text": " = +0.00290000 BTC (+136.30 USD), +144.42 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + { + "type": "plain", + "text": " = +0.00025490 BTC (+11.98 USD), +9.69 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 145.74 USD from volume 971.62 USD" + } + ] + }, + { + "id": 611, + "type": "message", + "date": "2021-10-10T22:27:25", + "date_unixtime": "1633897645", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "680078789" + }, + " / Amount: 0.00541000 / Price: 56508.06000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01310700 BTC ~ 739.59 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 510.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,250.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,997.38 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26019.28 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.75%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 93 sells" + }, + " = +0.01324700 BTC (+622.61 USD), +505.17 USD\n", + { + "type": "bold", + "text": "This month 25 sells" + }, + " = +0.00301000 BTC (+141.47 USD), +150.27 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + " = +0.00025385 BTC (+11.93 USD), +9.68 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 154.60 USD from volume 1030.69 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "680078789" + }, + { + "type": "plain", + "text": " / Amount: 0.00541000 / Price: 56508.06000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01310700 BTC ~ 739.59 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 510.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,250.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,997.38 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26019.28 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.75%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 93 sells" + }, + { + "type": "plain", + "text": " = +0.01324700 BTC (+622.61 USD), +505.17 USD\n" + }, + { + "type": "bold", + "text": "This month 25 sells" + }, + { + "type": "plain", + "text": " = +0.00301000 BTC (+141.47 USD), +150.27 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + { + "type": "plain", + "text": " = +0.00025385 BTC (+11.93 USD), +9.68 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 154.60 USD from volume 1030.69 USD" + } + ] + }, + { + "id": 612, + "type": "message", + "date": "2021-10-10T22:34:06", + "date_unixtime": "1633898046", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "688711594" + }, + " / Amount: 0.00536000 / Price: 55981.07000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 28,498.92 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00536000 BTC ~ 299.30 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01310700 BTC ~ 731.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 510.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,242.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,997.38 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 95.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.81%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 94 sells" + }, + " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n", + { + "type": "bold", + "text": "This month 26 sells" + }, + " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00025593 BTC (+12.03 USD), +9.79 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 163.82 USD from volume 1092.14 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "688711594" + }, + { + "type": "plain", + "text": " / Amount: 0.00536000 / Price: 55981.07000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 28,498.92 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00536000 BTC ~ 299.30 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01310700 BTC ~ 731.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 510.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,242.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,997.38 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 95.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.81%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 94 sells" + }, + { + "type": "plain", + "text": " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n" + }, + { + "type": "bold", + "text": "This month 26 sells" + }, + { + "type": "plain", + "text": " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00025593 BTC (+12.03 USD), +9.79 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 163.82 USD from volume 1092.14 USD" + } + ] + }, + { + "id": 613, + "type": "message", + "date": "2021-10-10T22:36:10", + "date_unixtime": "1633898170", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "688709760" + }, + " / Amount: 0.00237000 / Price: 55426.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 28,798.78 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01067000 BTC ~ 590.51 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01320700 BTC ~ 730.92 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 510.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,232.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,697.50 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.81 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (232 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 96.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.88%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.20%\n", + { + "type": "bold", + "text": "This year 94 sells" + }, + " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n", + { + "type": "bold", + "text": "This month 26 sells" + }, + " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00025592 BTC (+12.03 USD), +9.79 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 155.45 USD from volume 1036.35 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "688709760" + }, + { + "type": "plain", + "text": " / Amount: 0.00237000 / Price: 55426.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 28,798.78 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01067000 BTC ~ 590.51 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01320700 BTC ~ 730.92 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 510.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,232.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,697.50 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.81 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (232 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 96.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.88%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.20%\n" + }, + { + "type": "bold", + "text": "This year 94 sells" + }, + { + "type": "plain", + "text": " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n" + }, + { + "type": "bold", + "text": "This month 26 sells" + }, + { + "type": "plain", + "text": " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00025592 BTC (+12.03 USD), +9.79 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 155.45 USD from volume 1036.35 USD" + } + ] + }, + { + "id": 614, + "type": "message", + "date": "2021-10-10T23:05:14", + "date_unixtime": "1633899914", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "688707473" + }, + " / Amount: 0.00547000 / Price: 54878.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,098.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,198.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01604000 BTC ~ 881.18 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01330700 BTC ~ 731.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 510.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,223.08 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,397.43 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.57 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (232 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 97.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 94.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.13%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.93%\n", + { + "type": "bold", + "text": "This year 94 sells" + }, + " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n", + { + "type": "bold", + "text": "This month 26 sells" + }, + " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00025583 BTC (+12.02 USD), +9.79 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 147.58 USD from volume 983.85 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "688707473" + }, + { + "type": "plain", + "text": " / Amount: 0.00547000 / Price: 54878.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,098.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,198.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01604000 BTC ~ 881.18 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01330700 BTC ~ 731.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 510.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,223.08 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,397.43 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.57 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (232 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 97.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 94.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.13%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.93%\n" + }, + { + "type": "bold", + "text": "This year 94 sells" + }, + { + "type": "plain", + "text": " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n" + }, + { + "type": "bold", + "text": "This month 26 sells" + }, + { + "type": "plain", + "text": " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00025583 BTC (+12.02 USD), +9.79 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 147.58 USD from volume 983.85 USD" + } + ] + }, + { + "id": 615, + "type": "message", + "date": "2021-10-11T15:39:02", + "date_unixtime": "1633959542", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "688803677" + }, + " / Amount: 0.00536000 / Price: 57073.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,098.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,499.05 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01057000 BTC ~ 603.63 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01341700 BTC ~ 766.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 516.68 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,286.61 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,403.11 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.69 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.53 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (121 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 97.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 95.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.94%\n", + { + "type": "bold", + "text": "This year 94 sells" + }, + " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n", + { + "type": "bold", + "text": "This month 26 sells" + }, + " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + " = +0.00025249 BTC (+11.87 USD), +9.66 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 140.17 USD from volume 934.49 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "688803677" + }, + { + "type": "plain", + "text": " / Amount: 0.00536000 / Price: 57073.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,098.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,499.05 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01057000 BTC ~ 603.63 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01341700 BTC ~ 766.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 516.68 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,286.61 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,403.11 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.69 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.53 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (121 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 97.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 95.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.94%\n" + }, + { + "type": "bold", + "text": "This year 94 sells" + }, + { + "type": "plain", + "text": " = +0.01335700 BTC (+627.78 USD), +510.95 USD\n" + }, + { + "type": "bold", + "text": "This month 26 sells" + }, + { + "type": "plain", + "text": " = +0.00312000 BTC (+146.64 USD), +156.05 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + { + "type": "plain", + "text": " = +0.00025249 BTC (+11.87 USD), +9.66 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 140.17 USD from volume 934.49 USD" + } + ] + }, + { + "id": 616, + "type": "message", + "date": "2021-10-11T16:35:31", + "date_unixtime": "1633962931", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "688732413" + }, + " / Amount: 0.00531000 / Price: 57643.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,098.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,798.90 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00526000 BTC ~ 302.88 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01341700 BTC ~ 772.58 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 522.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,298.31 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,709.25 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.52 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.69 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.73 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (120 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 97.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 96.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.73%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.11%\n", + { + "type": "bold", + "text": "This year 95 sells" + }, + " = +0.01346700 BTC (+632.95 USD), +516.68 USD\n", + { + "type": "bold", + "text": "This month 27 sells" + }, + " = +0.00323000 BTC (+151.81 USD), +161.78 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + " = +0.00025438 BTC (+11.96 USD), +9.76 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 149.55 USD from volume 997.02 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "688732413" + }, + { + "type": "plain", + "text": " / Amount: 0.00531000 / Price: 57643.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,098.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,798.90 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00526000 BTC ~ 302.88 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01341700 BTC ~ 772.58 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 522.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,298.31 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,709.25 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.52 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.69 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.73 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (120 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 97.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 96.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.73%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.11%\n" + }, + { + "type": "bold", + "text": "This year 95 sells" + }, + { + "type": "plain", + "text": " = +0.01346700 BTC (+632.95 USD), +516.68 USD\n" + }, + { + "type": "bold", + "text": "This month 27 sells" + }, + { + "type": "plain", + "text": " = +0.00323000 BTC (+151.81 USD), +161.78 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + { + "type": "plain", + "text": " = +0.00025438 BTC (+11.96 USD), +9.76 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 149.55 USD from volume 997.02 USD" + } + ] + }, + { + "id": 617, + "type": "message", + "date": "2021-10-12T21:55:37", + "date_unixtime": "1634068537", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "690354676" + }, + " / Amount: 0.00541000 / Price: 55426.80000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,398.82 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,798.90 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01067000 BTC ~ 589.83 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01341700 BTC ~ 741.68 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 522.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,254.49 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,709.46 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.57 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.96 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (229 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 98.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 96.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.74%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.32%\n", + { + "type": "bold", + "text": "This year 96 sells" + }, + " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n", + { + "type": "bold", + "text": "This month 28 sells" + }, + " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00025048 BTC (+11.77 USD), +9.65 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 159.30 USD from volume 1061.99 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "690354676" + }, + { + "type": "plain", + "text": " / Amount: 0.00541000 / Price: 55426.80000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,398.82 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,798.90 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01067000 BTC ~ 589.83 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01341700 BTC ~ 741.68 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 522.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,254.49 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,709.46 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.57 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.96 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (229 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 98.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 96.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.74%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.32%\n" + }, + { + "type": "bold", + "text": "This year 96 sells" + }, + { + "type": "plain", + "text": " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n" + }, + { + "type": "bold", + "text": "This month 28 sells" + }, + { + "type": "plain", + "text": " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00025048 BTC (+11.77 USD), +9.65 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 159.30 USD from volume 1061.99 USD" + } + ] + }, + { + "id": 618, + "type": "message", + "date": "2021-10-12T22:07:48", + "date_unixtime": "1634069268", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "690253190" + }, + " / Amount: 0.00547000 / Price: 54878.02000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,699.01 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,798.90 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01604000 BTC ~ 878.07 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01351700 BTC ~ 739.96 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 522.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,240.84 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,409.39 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.57 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.73 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (230 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 99.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 96.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.80%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.30%\n", + { + "type": "bold", + "text": "This year 96 sells" + }, + " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n", + { + "type": "bold", + "text": "This month 28 sells" + }, + " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00025045 BTC (+11.77 USD), +9.65 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 151.55 USD from volume 1010.32 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "690253190" + }, + { + "type": "plain", + "text": " / Amount: 0.00547000 / Price: 54878.02000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,699.01 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,798.90 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01604000 BTC ~ 878.07 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01351700 BTC ~ 739.96 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 522.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,240.84 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,409.39 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.57 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.73 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (230 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 99.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 96.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.80%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.30%\n" + }, + { + "type": "bold", + "text": "This year 96 sells" + }, + { + "type": "plain", + "text": " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n" + }, + { + "type": "bold", + "text": "This month 28 sells" + }, + { + "type": "plain", + "text": " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00025045 BTC (+11.77 USD), +9.65 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 151.55 USD from volume 1010.32 USD" + } + ] + }, + { + "id": 619, + "type": "message", + "date": "2021-10-12T22:08:32", + "date_unixtime": "1634069312", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "688707052" + }, + " / Amount: 0.00552000 / Price: 54334.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,998.93 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 28,798.90 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02145000 BTC ~ 1,163.48 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01362700 BTC ~ 739.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 522.91 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,225.51 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,109.16 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.57 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.50 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (230 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 100.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 96.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.99%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.22%\n", + { + "type": "bold", + "text": "This year 96 sells" + }, + " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n", + { + "type": "bold", + "text": "This month 28 sells" + }, + " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00025044 BTC (+11.77 USD), +9.65 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 144.27 USD from volume 961.78 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "688707052" + }, + { + "type": "plain", + "text": " / Amount: 0.00552000 / Price: 54334.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,998.93 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 28,798.90 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02145000 BTC ~ 1,163.48 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01362700 BTC ~ 739.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 522.91 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,225.51 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,109.16 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.57 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.50 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (230 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 100.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 96.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.99%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.22%\n" + }, + { + "type": "bold", + "text": "This year 96 sells" + }, + { + "type": "plain", + "text": " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n" + }, + { + "type": "bold", + "text": "This month 28 sells" + }, + { + "type": "plain", + "text": " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00025044 BTC (+11.77 USD), +9.65 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 144.27 USD from volume 961.78 USD" + } + ] + }, + { + "id": 620, + "type": "message", + "date": "2021-10-13T01:03:00", + "date_unixtime": "1634079780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "692683756" + }, + " / Amount: 0.00541000 / Price: 56508.06000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 29,998.93 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 29,098.83 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01593000 BTC ~ 900.11 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01373700 BTC ~ 776.20 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 528.69 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,304.90 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,115.02 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.57 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.69 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.56 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (119 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 100.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 97.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%\n", + { + "type": "bold", + "text": "This year 96 sells" + }, + " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n", + { + "type": "bold", + "text": "This month 28 sells" + }, + " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00024988 BTC (+11.74 USD), +9.63 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 137.46 USD from volume 916.41 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "692683756" + }, + { + "type": "plain", + "text": " / Amount: 0.00541000 / Price: 56508.06000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 29,998.93 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 29,098.83 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01593000 BTC ~ 900.11 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01373700 BTC ~ 776.20 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 528.69 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,304.90 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,115.02 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.57 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.69 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.56 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (119 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 100.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 97.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%\n" + }, + { + "type": "bold", + "text": "This year 96 sells" + }, + { + "type": "plain", + "text": " = +0.01356700 BTC (+637.65 USD), +522.91 USD\n" + }, + { + "type": "bold", + "text": "This month 28 sells" + }, + { + "type": "plain", + "text": " = +0.00333000 BTC (+156.51 USD), +168.01 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00024988 BTC (+11.74 USD), +9.63 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 137.46 USD from volume 916.41 USD" + } + ] + }, + { + "id": 621, + "type": "message", + "date": "2021-10-13T11:08:01", + "date_unixtime": "1634116081", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "692924210" + }, + " / Amount: 0.00210000 / Price: 54334.67000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 29,098.83 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.02145000 BTC ~ 1,165.22 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01373700 BTC ~ 746.23 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 528.69 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,240.11 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,114.94 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.57 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27075.77 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 282.58 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (229 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 97.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.98%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.06%\n", + { + "type": "bold", + "text": "This year 97 sells" + }, + " = +0.01367700 BTC (+642.82 USD), +528.69 USD\n", + { + "type": "bold", + "text": "This month 29 sells" + }, + " = +0.00344000 BTC (+161.68 USD), +173.79 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00024998 BTC (+11.75 USD), +9.66 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 146.28 USD from volume 975.20 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "692924210" + }, + { + "type": "plain", + "text": " / Amount: 0.00210000 / Price: 54334.67000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 29,098.83 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.02145000 BTC ~ 1,165.22 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01373700 BTC ~ 746.23 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 528.69 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,240.11 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,114.94 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.57 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27075.77 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 282.58 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (229 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 97.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.98%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.06%\n" + }, + { + "type": "bold", + "text": "This year 97 sells" + }, + { + "type": "plain", + "text": " = +0.01367700 BTC (+642.82 USD), +528.69 USD\n" + }, + { + "type": "bold", + "text": "This month 29 sells" + }, + { + "type": "plain", + "text": " = +0.00344000 BTC (+161.68 USD), +173.79 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00024998 BTC (+11.75 USD), +9.66 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 146.28 USD from volume 975.20 USD" + } + ] + }, + { + "id": 622, + "type": "message", + "date": "2021-10-13T18:43:14", + "date_unixtime": "1634143394", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "693692907" + }, + " / Amount: 0.00541000 / Price: 56508.06000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 29,398.76 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01593000 BTC ~ 902.79 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01384700 BTC ~ 784.74 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 534.47 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,321.89 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,120.80 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.56 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.69 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.64 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (118 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 98.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -5.14%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.71%\n", + { + "type": "bold", + "text": "This year 97 sells" + }, + " = +0.01367700 BTC (+642.82 USD), +528.69 USD\n", + { + "type": "bold", + "text": "This month 29 sells" + }, + " = +0.00344000 BTC (+161.68 USD), +173.79 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00024854 BTC (+11.68 USD), +9.61 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 139.53 USD from volume 930.19 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "693692907" + }, + { + "type": "plain", + "text": " / Amount: 0.00541000 / Price: 56508.06000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 29,398.76 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01593000 BTC ~ 902.79 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01384700 BTC ~ 784.74 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 534.47 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,321.89 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,120.80 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.56 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.69 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.64 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (118 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 98.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -5.14%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.71%\n" + }, + { + "type": "bold", + "text": "This year 97 sells" + }, + { + "type": "plain", + "text": " = +0.01367700 BTC (+642.82 USD), +528.69 USD\n" + }, + { + "type": "bold", + "text": "This month 29 sells" + }, + { + "type": "plain", + "text": " = +0.00344000 BTC (+161.68 USD), +173.79 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00024854 BTC (+11.68 USD), +9.61 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 139.53 USD from volume 930.19 USD" + } + ] + }, + { + "id": 623, + "type": "message", + "date": "2021-10-13T18:45:57", + "date_unixtime": "1634143557", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "692679024" + }, + " / Amount: 0.00536000 / Price: 57073.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 29,698.94 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01057000 BTC ~ 602.05 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01384700 BTC ~ 788.71 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 540.20 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,331.05 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,426.63 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.56 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.69 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 290.84 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (117 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 99.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.64%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.20%\n", + { + "type": "bold", + "text": "This year 98 sells" + }, + " = +0.01378700 BTC (+647.99 USD), +534.48 USD\n", + { + "type": "bold", + "text": "This month 30 sells" + }, + " = +0.00355000 BTC (+166.85 USD), +179.58 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + " = +0.00025053 BTC (+11.77 USD), +9.71 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 148.29 USD from volume 988.60 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "692679024" + }, + { + "type": "plain", + "text": " / Amount: 0.00536000 / Price: 57073.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 29,698.94 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01057000 BTC ~ 602.05 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01384700 BTC ~ 788.71 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 540.20 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,331.05 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,426.63 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.56 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.69 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 290.84 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (117 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 99.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.64%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.20%\n" + }, + { + "type": "bold", + "text": "This year 98 sells" + }, + { + "type": "plain", + "text": " = +0.01378700 BTC (+647.99 USD), +534.48 USD\n" + }, + { + "type": "bold", + "text": "This month 30 sells" + }, + { + "type": "plain", + "text": " = +0.00355000 BTC (+166.85 USD), +179.58 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + { + "type": "plain", + "text": " = +0.00025053 BTC (+11.77 USD), +9.71 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 148.29 USD from volume 988.60 USD" + } + ] + }, + { + "id": 624, + "type": "message", + "date": "2021-10-13T23:40:30", + "date_unixtime": "1634161230", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "692653195" + }, + " / Amount: 0.00502000 / Price: 57643.87000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 29,998.80 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00526000 BTC ~ 303.31 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01384700 BTC ~ 798.48 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 546.43 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,348.17 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,732.77 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,595.56 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.69 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.05 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (116 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 26199.14 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 100.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.84%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.96%\n", + { + "type": "bold", + "text": "This year 99 sells" + }, + " = +0.01389700 BTC (+653.16 USD), +540.21 USD\n", + { + "type": "bold", + "text": "This month 31 sells" + }, + " = +0.00366000 BTC (+172.02 USD), +185.30 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + " = +0.00025159 BTC (+11.82 USD), +9.78 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 157.42 USD from volume 1049.49 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "692653195" + }, + { + "type": "plain", + "text": " / Amount: 0.00502000 / Price: 57643.87000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 29,998.80 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00526000 BTC ~ 303.31 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01384700 BTC ~ 798.48 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 546.43 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,348.17 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,732.77 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,595.56 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.69 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.05 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (116 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 26199.14 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 100.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.84%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.96%\n" + }, + { + "type": "bold", + "text": "This year 99 sells" + }, + { + "type": "plain", + "text": " = +0.01389700 BTC (+653.16 USD), +540.21 USD\n" + }, + { + "type": "bold", + "text": "This month 31 sells" + }, + { + "type": "plain", + "text": " = +0.00366000 BTC (+172.02 USD), +185.30 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + { + "type": "plain", + "text": " = +0.00025159 BTC (+11.82 USD), +9.78 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 157.42 USD from volume 1049.49 USD" + } + ] + }, + { + "id": 625, + "type": "message", + "date": "2021-10-14T03:06:15", + "date_unixtime": "1634173575", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "688724471" + }, + " / Amount: 0.00526000 / Price: 58220.31000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01384700 BTC ~ 804.84 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 552.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,357.45 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,634.76 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 26807.70 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.69%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 100 sells" + }, + " = +0.01399700 BTC (+657.86 USD), +546.44 USD\n", + { + "type": "bold", + "text": "This month 32 sells" + }, + " = +0.00376000 BTC (+176.72 USD), +191.53 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.81 sells" + }, + " = +0.00025275 BTC (+11.88 USD), +9.87 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 166.93 USD from volume 1112.84 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "688724471" + }, + { + "type": "plain", + "text": " / Amount: 0.00526000 / Price: 58220.31000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01384700 BTC ~ 804.84 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 552.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,357.45 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,634.76 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 26807.70 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.69%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 100 sells" + }, + { + "type": "plain", + "text": " = +0.01399700 BTC (+657.86 USD), +546.44 USD\n" + }, + { + "type": "bold", + "text": "This month 32 sells" + }, + { + "type": "plain", + "text": " = +0.00376000 BTC (+176.72 USD), +191.53 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.81 sells" + }, + { + "type": "plain", + "text": " = +0.00025275 BTC (+11.88 USD), +9.87 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 166.93 USD from volume 1112.84 USD" + } + ] + }, + { + "id": 626, + "type": "message", + "date": "2021-10-14T03:18:11", + "date_unixtime": "1634174291", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "694936130" + }, + " / Amount: 0.00515000 / Price: 58254.12000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,598.87 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00515000 BTC ~ 299.55 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01384700 BTC ~ 805.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 552.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,357.55 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,644.75 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 28175.16 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 102.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.86%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 101 sells" + }, + " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n", + { + "type": "bold", + "text": "This month 33 sells" + }, + " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + " = +0.00025452 BTC (+11.96 USD), +9.98 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 176.79 USD from volume 1178.63 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "694936130" + }, + { + "type": "plain", + "text": " / Amount: 0.00515000 / Price: 58254.12000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,598.87 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00515000 BTC ~ 299.55 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01384700 BTC ~ 805.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 552.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,357.55 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,644.75 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 28175.16 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 102.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.86%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 101 sells" + }, + { + "type": "plain", + "text": " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n" + }, + { + "type": "bold", + "text": "This month 33 sells" + }, + { + "type": "plain", + "text": " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + { + "type": "plain", + "text": " = +0.00025452 BTC (+11.96 USD), +9.98 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 176.79 USD from volume 1178.63 USD" + } + ] + }, + { + "id": 627, + "type": "message", + "date": "2021-10-14T08:48:02", + "date_unixtime": "1634194082", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "694919519" + }, + " / Amount: 0.00520000 / Price: 57677.35000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 30,898.79 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01025000 BTC ~ 590.12 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01394700 BTC ~ 802.97 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 552.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,345.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,690.14 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,644.75 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 28175.16 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.35 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (224 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 27262.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 103.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.87%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.23%\n", + { + "type": "bold", + "text": "This year 101 sells" + }, + " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n", + { + "type": "bold", + "text": "This month 33 sells" + }, + " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + " = +0.00025347 BTC (+11.91 USD), +9.94 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 167.47 USD from volume 1116.47 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "694919519" + }, + { + "type": "plain", + "text": " / Amount: 0.00520000 / Price: 57677.35000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 30,898.79 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01025000 BTC ~ 590.12 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01394700 BTC ~ 802.97 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 552.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,345.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,690.14 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,644.75 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 28175.16 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.35 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (224 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 27262.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 103.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.87%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.23%\n" + }, + { + "type": "bold", + "text": "This year 101 sells" + }, + { + "type": "plain", + "text": " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n" + }, + { + "type": "bold", + "text": "This month 33 sells" + }, + { + "type": "plain", + "text": " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + { + "type": "plain", + "text": " = +0.00025347 BTC (+11.91 USD), +9.94 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 167.47 USD from volume 1116.47 USD" + } + ] + }, + { + "id": 628, + "type": "message", + "date": "2021-10-14T17:03:01", + "date_unixtime": "1634223781", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "694918183" + }, + " / Amount: 0.00525000 / Price: 57106.29000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 30,298.86 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01540000 BTC ~ 879.13 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01404700 BTC ~ 801.89 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 552.61 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,333.88 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,389.96 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,644.76 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 28175.16 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.13 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (224 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 27262.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 101.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.00%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.08%\n", + { + "type": "bold", + "text": "This year 101 sells" + }, + " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n", + { + "type": "bold", + "text": "This month 33 sells" + }, + " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00025191 BTC (+11.84 USD), +9.88 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 158.63 USD from volume 1057.53 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "694918183" + }, + { + "type": "plain", + "text": " / Amount: 0.00525000 / Price: 57106.29000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 30,298.86 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01540000 BTC ~ 879.13 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01404700 BTC ~ 801.89 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 552.61 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,333.88 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,389.96 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,644.76 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 28175.16 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.13 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (224 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 27262.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 101.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.00%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.08%\n" + }, + { + "type": "bold", + "text": "This year 101 sells" + }, + { + "type": "plain", + "text": " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n" + }, + { + "type": "bold", + "text": "This month 33 sells" + }, + { + "type": "plain", + "text": " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00025191 BTC (+11.84 USD), +9.88 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 158.63 USD from volume 1057.53 USD" + } + ] + }, + { + "id": 629, + "type": "message", + "date": "2021-10-15T05:05:58", + "date_unixtime": "1634267158", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "695908948" + }, + " / Amount: 0.00515000 / Price: 59390.54000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 30,598.67 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01015000 BTC ~ 602.96 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01414700 BTC ~ 840.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 558.66 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,402.09 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,395.89 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,644.76 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27896.20 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.09 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (114 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 27262.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 102.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.83%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.98%\n", + { + "type": "bold", + "text": "This year 101 sells" + }, + " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n", + { + "type": "bold", + "text": "This month 33 sells" + }, + " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + " = +0.00024967 BTC (+11.73 USD), +9.79 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 150.27 USD from volume 1001.78 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "695908948" + }, + { + "type": "plain", + "text": " / Amount: 0.00515000 / Price: 59390.54000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 30,598.67 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01015000 BTC ~ 602.96 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01414700 BTC ~ 840.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 558.66 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,402.09 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,395.89 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,644.76 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27896.20 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.09 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (114 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 27262.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 102.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.83%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.98%\n" + }, + { + "type": "bold", + "text": "This year 101 sells" + }, + { + "type": "plain", + "text": " = +0.01409700 BTC (+662.56 USD), +552.62 USD\n" + }, + { + "type": "bold", + "text": "This month 33 sells" + }, + { + "type": "plain", + "text": " = +0.00386000 BTC (+181.42 USD), +197.72 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.79 sells" + }, + { + "type": "plain", + "text": " = +0.00024967 BTC (+11.73 USD), +9.79 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 150.27 USD from volume 1001.78 USD" + } + ] + }, + { + "id": 630, + "type": "message", + "date": "2021-10-15T07:20:36", + "date_unixtime": "1634275236", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "695314648" + }, + " / Amount: 0.00510000 / Price: 59984.44000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 30,898.59 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00505000 BTC ~ 301.94 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01414700 BTC ~ 845.86 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 564.66 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,412.46 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,701.93 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,644.76 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27896.20 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.29 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (113 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 27262.93 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 103.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.50%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.33%\n", + { + "type": "bold", + "text": "This year 102 sells" + }, + " = +0.01419700 BTC (+667.26 USD), +558.67 USD\n", + { + "type": "bold", + "text": "This month 34 sells" + }, + " = +0.00396000 BTC (+186.12 USD), +203.77 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00025103 BTC (+11.80 USD), +9.88 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 160.62 USD from volume 1070.82 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "695314648" + }, + { + "type": "plain", + "text": " / Amount: 0.00510000 / Price: 59984.44000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 30,898.59 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00505000 BTC ~ 301.94 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01414700 BTC ~ 845.86 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 564.66 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,412.46 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,701.93 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,644.76 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27896.20 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.29 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (113 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 27262.93 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 103.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.50%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.33%\n" + }, + { + "type": "bold", + "text": "This year 102 sells" + }, + { + "type": "plain", + "text": " = +0.01419700 BTC (+667.26 USD), +558.67 USD\n" + }, + { + "type": "bold", + "text": "This month 34 sells" + }, + { + "type": "plain", + "text": " = +0.00396000 BTC (+186.12 USD), +203.77 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00025103 BTC (+11.80 USD), +9.88 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 160.62 USD from volume 1070.82 USD" + } + ] + }, + { + "id": 631, + "type": "message", + "date": "2021-10-15T18:19:15", + "date_unixtime": "1634314755", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "694937708" + }, + " / Amount: 0.00505000 / Price: 60584.28000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01414700 BTC ~ 858.22 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 570.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,428.83 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,998.15 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.71 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 27896.20 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.95%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 103 sells" + }, + " = +0.01429700 BTC (+671.96 USD), +564.67 USD\n", + { + "type": "bold", + "text": "This month 35 sells" + }, + " = +0.00406000 BTC (+190.82 USD), +209.77 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.81 sells" + }, + " = +0.00025077 BTC (+11.79 USD), +9.90 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 171.33 USD from volume 1142.21 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "694937708" + }, + { + "type": "plain", + "text": " / Amount: 0.00505000 / Price: 60584.28000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01414700 BTC ~ 858.22 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 570.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,428.83 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,998.15 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.71 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 27896.20 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.95%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 103 sells" + }, + { + "type": "plain", + "text": " = +0.01429700 BTC (+671.96 USD), +564.67 USD\n" + }, + { + "type": "bold", + "text": "This month 35 sells" + }, + { + "type": "plain", + "text": " = +0.00406000 BTC (+190.82 USD), +209.77 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.81 sells" + }, + { + "type": "plain", + "text": " = +0.00025077 BTC (+11.79 USD), +9.90 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 171.33 USD from volume 1142.21 USD" + } + ] + }, + { + "id": 632, + "type": "message", + "date": "2021-10-15T18:44:56", + "date_unixtime": "1634316296", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "697859514" + }, + " / Amount: 0.00490000 / Price: 61225.66000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 31,498.60 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00490000 BTC ~ 300.14 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01414700 BTC ~ 866.54 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 570.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,437.27 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,997.69 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.71 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29612.37 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 105.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.08%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 104 sells" + }, + " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n", + { + "type": "bold", + "text": "This month 36 sells" + }, + " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + " = +0.00025244 BTC (+11.86 USD), +10.01 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 182.39 USD from volume 1215.93 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "697859514" + }, + { + "type": "plain", + "text": " / Amount: 0.00490000 / Price: 61225.66000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 31,498.60 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00490000 BTC ~ 300.14 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01414700 BTC ~ 866.54 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 570.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,437.27 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,997.69 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.71 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29612.37 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 105.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.08%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 104 sells" + }, + { + "type": "plain", + "text": " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n" + }, + { + "type": "bold", + "text": "This month 36 sells" + }, + { + "type": "plain", + "text": " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.82 sells" + }, + { + "type": "plain", + "text": " = +0.00025244 BTC (+11.86 USD), +10.01 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 182.39 USD from volume 1215.93 USD" + } + ] + }, + { + "id": 633, + "type": "message", + "date": "2021-10-16T14:52:06", + "date_unixtime": "1634388726", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "697827998" + }, + " / Amount: 0.00495000 / Price: 60619.47000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 31,798.67 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00976000 BTC ~ 590.84 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01423700 BTC ~ 861.87 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 570.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,423.24 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,697.68 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29612.37 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.59 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (220 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 106.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.89%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.18%\n", + { + "type": "bold", + "text": "This year 104 sells" + }, + " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n", + { + "type": "bold", + "text": "This month 36 sells" + }, + " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + " = +0.00024879 BTC (+11.69 USD), +9.86 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 171.60 USD from volume 1144.01 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "697827998" + }, + { + "type": "plain", + "text": " / Amount: 0.00495000 / Price: 60619.47000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 31,798.67 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00976000 BTC ~ 590.84 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01423700 BTC ~ 861.87 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 570.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,423.24 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,697.68 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29612.37 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.59 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (220 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 106.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.89%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.18%\n" + }, + { + "type": "bold", + "text": "This year 104 sells" + }, + { + "type": "plain", + "text": " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n" + }, + { + "type": "bold", + "text": "This month 36 sells" + }, + { + "type": "plain", + "text": " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.80 sells" + }, + { + "type": "plain", + "text": " = +0.00024879 BTC (+11.69 USD), +9.86 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 171.60 USD from volume 1144.01 USD" + } + ] + }, + { + "id": 634, + "type": "message", + "date": "2021-10-17T22:02:55", + "date_unixtime": "1634500975", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "697810560" + }, + " / Amount: 0.00500000 / Price: 60019.28000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,098.77 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01466000 BTC ~ 873.28 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01433700 BTC ~ 854.04 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 570.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,397.75 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,397.76 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29612.38 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 279.37 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.07 USD (277 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 107.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.27%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.83%\n", + { + "type": "bold", + "text": "This year 104 sells" + }, + " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n", + { + "type": "bold", + "text": "This month 36 sells" + }, + " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00024332 BTC (+11.44 USD), +9.64 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 161.29 USD from volume 1075.26 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "697810560" + }, + { + "type": "plain", + "text": " / Amount: 0.00500000 / Price: 60019.28000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,098.77 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01466000 BTC ~ 873.28 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01433700 BTC ~ 854.04 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 570.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,397.75 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,397.76 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29612.38 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 279.37 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.07 USD (277 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 107.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.27%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.83%\n" + }, + { + "type": "bold", + "text": "This year 104 sells" + }, + { + "type": "plain", + "text": " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n" + }, + { + "type": "bold", + "text": "This month 36 sells" + }, + { + "type": "plain", + "text": " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00024332 BTC (+11.44 USD), +9.64 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 161.29 USD from volume 1075.26 USD" + } + ] + }, + { + "id": 635, + "type": "message", + "date": "2021-10-17T22:03:06", + "date_unixtime": "1634500986", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "697808959" + }, + " / Amount: 0.00505000 / Price: 59425.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,398.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,198.60 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01961000 BTC ~ 1,171.41 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01443700 BTC ~ 862.40 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 570.60 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,404.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,097.95 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29612.38 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.14 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (221 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 108.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 104.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.54%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +5.54%\n", + { + "type": "bold", + "text": "This year 104 sells" + }, + " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n", + { + "type": "bold", + "text": "This month 36 sells" + }, + " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00024332 BTC (+11.44 USD), +9.64 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 151.45 USD from volume 1009.64 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "697808959" + }, + { + "type": "plain", + "text": " / Amount: 0.00505000 / Price: 59425.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,398.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,198.60 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01961000 BTC ~ 1,171.41 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01443700 BTC ~ 862.40 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 570.60 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,404.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,097.95 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29612.38 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.14 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (221 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 108.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 104.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.54%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +5.54%\n" + }, + { + "type": "bold", + "text": "This year 104 sells" + }, + { + "type": "plain", + "text": " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n" + }, + { + "type": "bold", + "text": "This month 36 sells" + }, + { + "type": "plain", + "text": " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00024332 BTC (+11.44 USD), +9.64 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 151.45 USD from volume 1009.64 USD" + } + ] + }, + { + "id": 636, + "type": "message", + "date": "2021-10-18T02:26:59", + "date_unixtime": "1634516819", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "701498291" + }, + " / Amount: 0.00495000 / Price: 61802.03000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,398.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,498.70 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01456000 BTC ~ 900.65 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01453700 BTC ~ 899.23 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 576.43 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,476.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,103.64 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29319.19 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.21 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (111 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 108.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 105.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.92%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.91%\n", + { + "type": "bold", + "text": "This year 104 sells" + }, + " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n", + { + "type": "bold", + "text": "This month 36 sells" + }, + " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.75 sells" + }, + " = +0.00024257 BTC (+11.40 USD), +9.61 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 142.07 USD from volume 947.15 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "701498291" + }, + { + "type": "plain", + "text": " / Amount: 0.00495000 / Price: 61802.03000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,398.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,498.70 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01456000 BTC ~ 900.65 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01453700 BTC ~ 899.23 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 576.43 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,476.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,103.64 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29319.19 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.21 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (111 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 108.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 105.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.92%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.91%\n" + }, + { + "type": "bold", + "text": "This year 104 sells" + }, + { + "type": "plain", + "text": " = +0.01439700 BTC (+676.66 USD), +570.61 USD\n" + }, + { + "type": "bold", + "text": "This month 36 sells" + }, + { + "type": "plain", + "text": " = +0.00416000 BTC (+195.52 USD), +215.71 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.75 sells" + }, + { + "type": "plain", + "text": " = +0.00024257 BTC (+11.40 USD), +9.61 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 142.07 USD from volume 947.15 USD" + } + ] + }, + { + "id": 637, + "type": "message", + "date": "2021-10-18T02:39:01", + "date_unixtime": "1634517541", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "701497287" + }, + " / Amount: 0.00490000 / Price: 62420.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,398.86 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,798.79 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00966000 BTC ~ 602.14 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01453700 BTC ~ 906.15 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 582.19 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,490.41 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,409.64 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29319.19 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.41 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (110 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 108.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 106.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.71%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.14%\n", + { + "type": "bold", + "text": "This year 105 sells" + }, + " = +0.01449700 BTC (+681.36 USD), +576.43 USD\n", + { + "type": "bold", + "text": "This month 37 sells" + }, + " = +0.00426000 BTC (+200.22 USD), +221.53 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00024422 BTC (+11.48 USD), +9.71 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 153.52 USD from volume 1023.44 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "701497287" + }, + { + "type": "plain", + "text": " / Amount: 0.00490000 / Price: 62420.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,398.86 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,798.79 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00966000 BTC ~ 602.14 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01453700 BTC ~ 906.15 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 582.19 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,490.41 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,409.64 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29319.19 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.41 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (110 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 108.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 106.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.71%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.14%\n" + }, + { + "type": "bold", + "text": "This year 105 sells" + }, + { + "type": "plain", + "text": " = +0.01449700 BTC (+681.36 USD), +576.43 USD\n" + }, + { + "type": "bold", + "text": "This month 37 sells" + }, + { + "type": "plain", + "text": " = +0.00426000 BTC (+200.22 USD), +221.53 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00024422 BTC (+11.48 USD), +9.71 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 153.52 USD from volume 1023.44 USD" + } + ] + }, + { + "id": 638, + "type": "message", + "date": "2021-10-18T15:05:17", + "date_unixtime": "1634562317", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "701997269" + }, + " / Amount: 0.00500000 / Price: 60019.28000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,698.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 31,798.79 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.01466000 BTC ~ 880.76 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01453700 BTC ~ 873.37 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 582.19 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,436.14 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,409.35 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29612.38 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 283.52 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (218 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 109.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 106.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -1.10%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +4.94%\n", + { + "type": "bold", + "text": "This year 106 sells" + }, + " = +0.01459700 BTC (+686.06 USD), +582.19 USD\n", + { + "type": "bold", + "text": "This month 38 sells" + }, + " = +0.00436000 BTC (+204.92 USD), +227.29 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00024378 BTC (+11.46 USD), +9.72 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 165.30 USD from volume 1101.98 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "701997269" + }, + { + "type": "plain", + "text": " / Amount: 0.00500000 / Price: 60019.28000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,698.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 31,798.79 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.01466000 BTC ~ 880.76 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01453700 BTC ~ 873.37 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 582.19 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,436.14 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,409.35 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29612.38 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 283.52 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (218 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 109.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 106.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -1.10%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +4.94%\n" + }, + { + "type": "bold", + "text": "This year 106 sells" + }, + { + "type": "plain", + "text": " = +0.01459700 BTC (+686.06 USD), +582.19 USD\n" + }, + { + "type": "bold", + "text": "This month 38 sells" + }, + { + "type": "plain", + "text": " = +0.00436000 BTC (+204.92 USD), +227.29 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00024378 BTC (+11.46 USD), +9.72 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 165.30 USD from volume 1101.98 USD" + } + ] + }, + { + "id": 639, + "type": "message", + "date": "2021-10-19T05:12:48", + "date_unixtime": "1634613168", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "703036754" + }, + " / Amount: 0.00490000 / Price: 62420.05000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,698.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 32,098.89 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00966000 BTC ~ 603.25 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01463700 BTC ~ 914.05 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 587.95 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,505.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,415.40 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29319.19 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.49 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (109 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 109.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 107.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +0.95%\n", + { + "type": "bold", + "text": "This year 106 sells" + }, + " = +0.01459700 BTC (+686.06 USD), +582.19 USD\n", + { + "type": "bold", + "text": "This month 38 sells" + }, + " = +0.00436000 BTC (+204.92 USD), +227.29 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.75 sells" + }, + " = +0.00024141 BTC (+11.35 USD), +9.63 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 155.59 USD from volume 1037.26 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "703036754" + }, + { + "type": "plain", + "text": " / Amount: 0.00490000 / Price: 62420.05000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,698.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 32,098.89 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00966000 BTC ~ 603.25 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01463700 BTC ~ 914.05 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 587.95 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,505.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,415.40 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29319.19 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.49 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (109 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 109.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 107.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +0.95%\n" + }, + { + "type": "bold", + "text": "This year 106 sells" + }, + { + "type": "plain", + "text": " = +0.01459700 BTC (+686.06 USD), +582.19 USD\n" + }, + { + "type": "bold", + "text": "This month 38 sells" + }, + { + "type": "plain", + "text": " = +0.00436000 BTC (+204.92 USD), +227.29 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.75 sells" + }, + { + "type": "plain", + "text": " = +0.00024141 BTC (+11.35 USD), +9.63 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 155.59 USD from volume 1037.26 USD" + } + ] + }, + { + "id": 640, + "type": "message", + "date": "2021-10-19T15:35:06", + "date_unixtime": "1634650506", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "699342752" + }, + " / Amount: 0.00485000 / Price: 63044.25000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,698.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 32,398.95 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00481000 BTC ~ 303.21 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01463700 BTC ~ 922.69 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 593.65 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,519.54 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,721.86 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,654.63 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29319.18 USD\n", + { + "type": "bold", + "text": "Calculated Chunk" + }, + ": 291.69 USD\n", + { + "type": "bold", + "text": "Chunk grows by " + }, + ": 0.08 USD (107 SB left to grow)\n", + { + "type": "bold", + "text": "Calculated Drop By" + }, + ": 45.00 %\n", + { + "type": "bold", + "text": "Calculated Drop To" + }, + ": 28653.61 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 109.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 108.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.85%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": +1.01%\n", + { + "type": "bold", + "text": "This year 107 sells" + }, + " = +0.01469700 BTC (+690.76 USD), +587.96 USD\n", + { + "type": "bold", + "text": "This month 39 sells" + }, + " = +0.00446000 BTC (+209.62 USD), +233.06 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00024134 BTC (+11.34 USD), +9.65 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 167.30 USD from volume 1115.33 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "699342752" + }, + { + "type": "plain", + "text": " / Amount: 0.00485000 / Price: 63044.25000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,698.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 32,398.95 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00481000 BTC ~ 303.21 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01463700 BTC ~ 922.69 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 593.65 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,519.54 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,721.86 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,654.63 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29319.18 USD\n" + }, + { + "type": "bold", + "text": "Calculated Chunk" + }, + { + "type": "plain", + "text": ": 291.69 USD\n" + }, + { + "type": "bold", + "text": "Chunk grows by " + }, + { + "type": "plain", + "text": ": 0.08 USD (107 SB left to grow)\n" + }, + { + "type": "bold", + "text": "Calculated Drop By" + }, + { + "type": "plain", + "text": ": 45.00 %\n" + }, + { + "type": "bold", + "text": "Calculated Drop To" + }, + { + "type": "plain", + "text": ": 28653.61 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 109.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 108.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.85%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": +1.01%\n" + }, + { + "type": "bold", + "text": "This year 107 sells" + }, + { + "type": "plain", + "text": " = +0.01469700 BTC (+690.76 USD), +587.96 USD\n" + }, + { + "type": "bold", + "text": "This month 39 sells" + }, + { + "type": "plain", + "text": " = +0.00446000 BTC (+209.62 USD), +233.06 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00024134 BTC (+11.34 USD), +9.65 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 167.30 USD from volume 1115.33 USD" + } + ] + }, + { + "id": 641, + "type": "message", + "date": "2021-10-19T21:07:51", + "date_unixtime": "1634670471", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "697864514" + }, + " / Amount: 0.00481000 / Price: 63674.69000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,698.96 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 32,698.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01463700 BTC ~ 931.70 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 599.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,531.62 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 3,000.00 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,682.60 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 29319.18 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 109.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 109.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.78%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 108 sells" + }, + " = +0.01479700 BTC (+695.46 USD), +593.65 USD\n", + { + "type": "bold", + "text": "This month 40 sells" + }, + " = +0.00456000 BTC (+214.32 USD), +238.75 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + " = +0.00024206 BTC (+11.38 USD), +9.71 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 179.35 USD from volume 1195.64 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "697864514" + }, + { + "type": "plain", + "text": " / Amount: 0.00481000 / Price: 63674.69000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,698.96 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 32,698.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01463700 BTC ~ 931.70 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 599.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,531.62 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 3,000.00 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,682.60 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 29319.18 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 109.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 109.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.78%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 108 sells" + }, + { + "type": "plain", + "text": " = +0.01479700 BTC (+695.46 USD), +593.65 USD\n" + }, + { + "type": "bold", + "text": "This month 40 sells" + }, + { + "type": "plain", + "text": " = +0.00456000 BTC (+214.32 USD), +238.75 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.77 sells" + }, + { + "type": "plain", + "text": " = +0.00024206 BTC (+11.38 USD), +9.71 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 179.35 USD from volume 1195.64 USD" + } + ] + }, + { + "id": 642, + "type": "message", + "date": "2021-10-19T21:15:58", + "date_unixtime": "1634670958", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed BUY order Id: ", + { + "type": "phone", + "text": "705889359" + }, + " / Amount: 0.00258000 / Price: 63700.86000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,998.99 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 32,698.96 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00471000 BTC ~ 299.90 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01463700 BTC ~ 931.98 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 599.92 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,531.77 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,990.33 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,692.59 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 30814.75 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 110.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 109.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -0.94%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 109 sells" + }, + " = +0.01488700 BTC (+699.69 USD), +599.92 USD\n", + { + "type": "bold", + "text": "This month 41 sells" + }, + " = +0.00465000 BTC (+218.55 USD), +245.02 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + " = +0.00024351 BTC (+11.44 USD), +9.81 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 191.75 USD from volume 1278.32 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed BUY order Id: " + }, + { + "type": "phone", + "text": "705889359" + }, + { + "type": "plain", + "text": " / Amount: 0.00258000 / Price: 63700.86000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,998.99 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 32,698.96 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00471000 BTC ~ 299.90 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01463700 BTC ~ 931.98 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 599.92 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,531.77 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,990.33 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,692.59 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 30814.75 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 110.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 109.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -0.94%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 109 sells" + }, + { + "type": "plain", + "text": " = +0.01488700 BTC (+699.69 USD), +599.92 USD\n" + }, + { + "type": "bold", + "text": "This month 41 sells" + }, + { + "type": "plain", + "text": " = +0.00465000 BTC (+218.55 USD), +245.02 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.78 sells" + }, + { + "type": "plain", + "text": " = +0.00024351 BTC (+11.44 USD), +9.81 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 191.75 USD from volume 1278.32 USD" + } + ] + }, + { + "id": 643, + "type": "message", + "date": "2021-10-20T16:02:28", + "date_unixtime": "1634738548", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + " - ", + { + "type": "hashtag", + "text": "#Binance" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + " - ", + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + "\n🛒 ", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\nConfirmed SELL order Id: ", + { + "type": "phone", + "text": "705890982" + }, + " / Amount: 0.00008000 / Price: 66260.14000000\nℹ️ ", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Bought" + }, + ": 32,998.99 USD\n", + { + "type": "bold", + "text": "Sold" + }, + ": 32,998.99 USD\n", + { + "type": "bold", + "text": "To Sell" + }, + ": 0.00000000 BTC ~ 0.00 USD\n", + { + "type": "bold", + "text": "Crypto Earned" + }, + ": 0.01472700 BTC ~ 973.16 USD\n", + { + "type": "bold", + "text": "Fiat Earned" + }, + ": 606.01 USD\n", + { + "type": "bold", + "text": "Bot Bilance" + }, + ": 1,579.18 USD\n", + { + "type": "bold", + "text": "Remainig Balance" + }, + ": 2,996.39 USD\n", + { + "type": "bold", + "text": "Backup Swap Balance" + }, + ": 17,692.59 USD\n", + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + ": 30509.66 USD\n", + { + "type": "bold", + "text": "Buys" + }, + ": 110.00\n", + { + "type": "bold", + "text": "Sells" + }, + ": 110.00\n", + { + "type": "bold", + "text": "Accumulation to USD" + }, + ": 50.00 %\n", + { + "type": "bold", + "text": "Package Size" + }, + ": 300.00 USD\n", + { + "type": "bold", + "text": "Closest Buy" + }, + ": -4.57%\n", + { + "type": "bold", + "text": "Closest Sell" + }, + ": XX.XX%\n", + { + "type": "bold", + "text": "This year 109 sells" + }, + " = +0.01488700 BTC (+699.69 USD), +599.92 USD\n", + { + "type": "bold", + "text": "This month 41 sells" + }, + " = +0.00465000 BTC (+218.55 USD), +245.02 USD\n", + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + " = +0.00024043 BTC (+11.30 USD), +9.69 USD\n", + { + "type": "bold", + "text": "Tax this year" + }, + " = 180.02 USD from volume 1200.16 USD" + ], + "text_entities": [ + { + "type": "hashtag", + "text": "#DownBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTCUSDC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Binance" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#hnizdiljan" + }, + { + "type": "plain", + "text": "\n🛒 " + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\nConfirmed SELL order Id: " + }, + { + "type": "phone", + "text": "705890982" + }, + { + "type": "plain", + "text": " / Amount: 0.00008000 / Price: 66260.14000000\nℹ️ " + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Bought" + }, + { + "type": "plain", + "text": ": 32,998.99 USD\n" + }, + { + "type": "bold", + "text": "Sold" + }, + { + "type": "plain", + "text": ": 32,998.99 USD\n" + }, + { + "type": "bold", + "text": "To Sell" + }, + { + "type": "plain", + "text": ": 0.00000000 BTC ~ 0.00 USD\n" + }, + { + "type": "bold", + "text": "Crypto Earned" + }, + { + "type": "plain", + "text": ": 0.01472700 BTC ~ 973.16 USD\n" + }, + { + "type": "bold", + "text": "Fiat Earned" + }, + { + "type": "plain", + "text": ": 606.01 USD\n" + }, + { + "type": "bold", + "text": "Bot Bilance" + }, + { + "type": "plain", + "text": ": 1,579.18 USD\n" + }, + { + "type": "bold", + "text": "Remainig Balance" + }, + { + "type": "plain", + "text": ": 2,996.39 USD\n" + }, + { + "type": "bold", + "text": "Backup Swap Balance" + }, + { + "type": "plain", + "text": ": 17,692.59 USD\n" + }, + { + "type": "bold", + "text": "Paid Drop to with pools: " + }, + { + "type": "plain", + "text": ": 30509.66 USD\n" + }, + { + "type": "bold", + "text": "Buys" + }, + { + "type": "plain", + "text": ": 110.00\n" + }, + { + "type": "bold", + "text": "Sells" + }, + { + "type": "plain", + "text": ": 110.00\n" + }, + { + "type": "bold", + "text": "Accumulation to USD" + }, + { + "type": "plain", + "text": ": 50.00 %\n" + }, + { + "type": "bold", + "text": "Package Size" + }, + { + "type": "plain", + "text": ": 300.00 USD\n" + }, + { + "type": "bold", + "text": "Closest Buy" + }, + { + "type": "plain", + "text": ": -4.57%\n" + }, + { + "type": "bold", + "text": "Closest Sell" + }, + { + "type": "plain", + "text": ": XX.XX%\n" + }, + { + "type": "bold", + "text": "This year 109 sells" + }, + { + "type": "plain", + "text": " = +0.01488700 BTC (+699.69 USD), +599.92 USD\n" + }, + { + "type": "bold", + "text": "This month 41 sells" + }, + { + "type": "plain", + "text": " = +0.00465000 BTC (+218.55 USD), +245.02 USD\n" + }, + { + "type": "bold", + "text": "Daily [1y span] 1.76 sells" + }, + { + "type": "plain", + "text": " = +0.00024043 BTC (+11.30 USD), +9.69 USD\n" + }, + { + "type": "bold", + "text": "Tax this year" + }, + { + "type": "plain", + "text": " = 180.02 USD from volume 1200.16 USD" + } + ] + }, + { + "id": 644, + "type": "message", + "date": "2022-03-20T09:46:30", + "date_unixtime": "1647765990", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.ArgumentNullException: Value cannot be null. (Parameter 'authKeyOrResourceToken')\n at Microsoft.Azure.Cosmos.AuthorizationTokenProvider.CreateWithResourceTokenOrAuthKey(String authKeyOrResourceToken)\n at Microsoft.Azure.Cosmos.CosmosClient..ctor(String accountEndpoint, String authKeyOrResourceToken, CosmosClientOptions clientOptions)\n at CryptoBotCore.CosmosDB.CosmosDbContext..ctor() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\CosmosDB\\CosmosDbContext.cs:line 27\n at CryptoBotCore.BotStrategies.AccumulationBot.UpdateSummary(Decimal totalCostOfOperation, Decimal currencyBought) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 228\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 136" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.ArgumentNullException: Value cannot be null. (Parameter 'authKeyOrResourceToken')\n at Microsoft.Azure.Cosmos.AuthorizationTokenProvider.CreateWithResourceTokenOrAuthKey(String authKeyOrResourceToken)\n at Microsoft.Azure.Cosmos.CosmosClient..ctor(String accountEndpoint, String authKeyOrResourceToken, CosmosClientOptions clientOptions)\n at CryptoBotCore.CosmosDB.CosmosDbContext..ctor() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\CosmosDB\\CosmosDbContext.cs:line 27\n at CryptoBotCore.BotStrategies.AccumulationBot.UpdateSummary(Decimal totalCostOfOperation, Decimal currencyBought) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 228\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 136" + } + ] + }, + { + "id": 645, + "type": "message", + "date": "2022-03-20T09:49:57", + "date_unixtime": "1647766197", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0,00040000 BTC for 25,91 CZK @ 64 773 CZK\nFees are 0,09100000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2,50 % (1,9431988041853512705530642750 CZK)\nThe limits being 0,10 % (0,08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0,16728872 BTC (165 562,75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989 683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 64 773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -93,46 % (-154 726,91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0,00120000 BTC (77,73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54,32 CZK over 3048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0,00040000 BTC for 25,91 CZK @ 64 773 CZK\nFees are 0,09100000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2,50 % (1,9431988041853512705530642750 CZK)\nThe limits being 0,10 % (0,08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0,16728872 BTC (165 562,75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989 683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 64 773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -93,46 % (-154 726,91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0,00120000 BTC (77,73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54,32 CZK over 3048 transactions" + } + ] + }, + { + "id": 646, + "type": "message", + "date": "2022-03-20T10:12:16", + "date_unixtime": "1647767536", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Exception\",\"Message\":\"Minimum Order Size 50 CZK\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\\\Users\\\\hnizd\\\\Source\\\\Repos\\\\AccBot\\\\CryptoBotCore\\\\API\\\\CoinmateAPI.cs:line 101\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233088,\"Source\":\"CryptoBotCore\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\API\\CoinmateAPI.cs:line 111\n at CryptoBotCore.BotStrategies.AccumulationBot.AttemptBuy(Decimal initialFiatBalance) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 159\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 100" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Exception\",\"Message\":\"Minimum Order Size 50 CZK\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\\\Users\\\\hnizd\\\\Source\\\\Repos\\\\AccBot\\\\CryptoBotCore\\\\API\\\\CoinmateAPI.cs:line 101\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233088,\"Source\":\"CryptoBotCore\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\API\\CoinmateAPI.cs:line 111\n at CryptoBotCore.BotStrategies.AccumulationBot.AttemptBuy(Decimal initialFiatBalance) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 159\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 100" + } + ] + }, + { + "id": 647, + "type": "message", + "date": "2022-03-20T10:25:11", + "date_unixtime": "1647768311", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Exception\",\"Message\":\"Minimum Order Size 50 CZK\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\\\Users\\\\hnizd\\\\Source\\\\Repos\\\\AccBot\\\\CryptoBotCore\\\\API\\\\CoinmateAPI.cs:line 101\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233088,\"Source\":\"CryptoBotCore\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\API\\CoinmateAPI.cs:line 111\n at CryptoBotCore.BotStrategies.AccumulationBot.AttemptBuy(Decimal initialFiatBalance) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 159\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 100" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Exception\",\"Message\":\"Minimum Order Size 50 CZK\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\\\Users\\\\hnizd\\\\Source\\\\Repos\\\\AccBot\\\\CryptoBotCore\\\\API\\\\CoinmateAPI.cs:line 101\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233088,\"Source\":\"CryptoBotCore\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\API\\CoinmateAPI.cs:line 111\n at CryptoBotCore.BotStrategies.AccumulationBot.AttemptBuy(Decimal initialFiatBalance) in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 159\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in C:\\Users\\hnizd\\Source\\Repos\\AccBot\\CryptoBotCore\\BotStrategies\\AccumulationBot.cs:line 100" + } + ] + }, + { + "id": 648, + "type": "message", + "date": "2022-03-20T10:26:11", + "date_unixtime": "1647768371", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0,00005299 BTC for 49,82 CZK @ 940 188 CZK\nFees are 0,17498227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 37,74 % (18,803759997209239261001290726 CZK)\nThe limits being 0,10 % (0,05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0,16694171 BTC (165 586,75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991 884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 940 188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5,21 % (-8 630,16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 984,89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0,00005299 BTC (49,82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54,33 CZK over 3048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0,00005299 BTC for 49,82 CZK @ 940 188 CZK\nFees are 0,17498227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 37,74 % (18,803759997209239261001290726 CZK)\nThe limits being 0,10 % (0,05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0,16694171 BTC (165 586,75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991 884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 940 188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5,21 % (-8 630,16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 984,89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0,00005299 BTC (49,82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54,33 CZK over 3048 transactions" + } + ] + }, + { + "id": 649, + "type": "message", + "date": "2022-03-20T12:29:48", + "date_unixtime": "1647775788", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Exception\",\"Message\":\"Minimum Order Size 50 CZK\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 101\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233088,\"Source\":\"CryptoBotCore\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 111\n at CryptoBotCore.BotStrategies.AccumulationBot.AttemptBuy(Decimal initialFiatBalance) in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 159\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 100" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Exception\",\"Message\":\"Minimum Order Size 50 CZK\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 101\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233088,\"Source\":\"CryptoBotCore\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.buyOrderAsync(Decimal amount) in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 111\n at CryptoBotCore.BotStrategies.AccumulationBot.AttemptBuy(Decimal initialFiatBalance) in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 159\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 100" + } + ] + }, + { + "id": 650, + "type": "message", + "date": "2022-03-20T12:32:10", + "date_unixtime": "1647775930", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005304 BTC for 49.82 CZK @ 939,260 CZK\nFees are 0.17497450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.43 % (9.392599998797571997255458084 CZK)\nThe limits being 0.10 % (0.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16699475 BTC (165,636.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 939,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.30 % (-8,785.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 934.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00010603 BTC (99.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005304 BTC for 49.82 CZK @ 939,260 CZK\nFees are 0.17497450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.43 % (9.392599998797571997255458084 CZK)\nThe limits being 0.10 % (0.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16699475 BTC (165,636.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 939,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.30 % (-8,785.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 934.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00010603 BTC (99.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3049 transactions" + } + ] + }, + { + "id": 651, + "type": "message", + "date": "2022-03-20T19:43:04", + "date_unixtime": "1647801784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005386 BTC for 49.82 CZK @ 924,943 CZK\nFees are 0.17497127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 18.76 % (27.748289997263569337989150857 CZK)\nThe limits being 0.10 % (0.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16704861 BTC (165,686.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 924,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.75 % (-11,176.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 884.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00015989 BTC (147.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005386 BTC for 49.82 CZK @ 924,943 CZK\nFees are 0.17497127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 18.76 % (27.748289997263569337989150857 CZK)\nThe limits being 0.10 % (0.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16704861 BTC (165,686.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 924,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.75 % (-11,176.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 884.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00015989 BTC (147.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3050 transactions" + } + ] + }, + { + "id": 652, + "type": "message", + "date": "2022-03-21T01:43:04", + "date_unixtime": "1647823384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005360 BTC for 49.82 CZK @ 929,481 CZK\nFees are 0.17498093 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 14.05 % (27.884429996876603529438011736 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16710221 BTC (165,736.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 929,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.29 % (-10,418.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 834.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00021349 BTC (198.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005360 BTC for 49.82 CZK @ 929,481 CZK\nFees are 0.17498093 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 14.05 % (27.884429996876603529438011736 CZK)\nThe limits being 0.10 % (0.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16710221 BTC (165,736.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 929,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.29 % (-10,418.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 834.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00021349 BTC (198.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3051 transactions" + } + ] + }, + { + "id": 653, + "type": "message", + "date": "2022-03-21T07:43:04", + "date_unixtime": "1647844984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005406 BTC for 49.82 CZK @ 921,657 CZK\nFees are 0.17499707 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.48 % (18.433139999642391105787531284 CZK)\nThe limits being 0.10 % (0.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16715627 BTC (165,786.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 921,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.07 % (-11,725.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 784.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00026755 BTC (246.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005406 BTC for 49.82 CZK @ 921,657 CZK\nFees are 0.17499707 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.48 % (18.433139999642391105787531284 CZK)\nThe limits being 0.10 % (0.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16715627 BTC (165,786.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 921,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.07 % (-11,725.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 784.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00026755 BTC (246.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3052 transactions" + } + ] + }, + { + "id": 654, + "type": "message", + "date": "2022-03-21T13:43:03", + "date_unixtime": "1647866583", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005417 BTC for 49.82 CZK @ 919,723 CZK\nFees are 0.17498519 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.32 % (27.591689998794141126327376059 CZK)\nThe limits being 0.10 % (0.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16721044 BTC (165,836.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 919,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.27 % (-12,049.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 734.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00032172 BTC (295.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005417 BTC for 49.82 CZK @ 919,723 CZK\nFees are 0.17498519 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.32 % (27.591689998794141126327376059 CZK)\nThe limits being 0.10 % (0.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16721044 BTC (165,836.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 919,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.27 % (-12,049.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 734.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00032172 BTC (295.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3053 transactions" + } + ] + }, + { + "id": 655, + "type": "message", + "date": "2022-03-21T19:43:04", + "date_unixtime": "1647888184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005416 BTC for 49.82 CZK @ 919,854 CZK\nFees are 0.17497781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.96 % (55.191239995319189336583405642 CZK)\nThe limits being 0.10 % (0.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16726460 BTC (165,886.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 919,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.25 % (-12,027.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 684.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00037588 BTC (345.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005416 BTC for 49.82 CZK @ 919,854 CZK\nFees are 0.17497781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.96 % (55.191239995319189336583405642 CZK)\nThe limits being 0.10 % (0.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16726460 BTC (165,886.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 919,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.25 % (-12,027.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 684.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00037588 BTC (345.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3054 transactions" + } + ] + }, + { + "id": 656, + "type": "message", + "date": "2022-03-22T01:43:03", + "date_unixtime": "1647909783", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005407 BTC for 49.82 CZK @ 921,385 CZK\nFees are 0.17497779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 11.63 % (46.069249996014504072071036005 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16731867 BTC (165,936.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 921,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.09 % (-11,771.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 634.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00042995 BTC (396.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005407 BTC for 49.82 CZK @ 921,385 CZK\nFees are 0.17497779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 11.63 % (46.069249996014504072071036005 CZK)\nThe limits being 0.10 % (0.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16731867 BTC (165,936.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 921,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.09 % (-11,771.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 634.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00042995 BTC (396.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3055 transactions" + } + ] + }, + { + "id": 657, + "type": "message", + "date": "2022-03-22T07:43:04", + "date_unixtime": "1647931384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005239 BTC for 49.82 CZK @ 951,006 CZK\nFees are 0.17499155 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.29 % (38.040239996051232406371553352 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16737106 BTC (165,986.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.11 % (-6,815.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 584.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00048234 BTC (458.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.32 CZK over 3056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005239 BTC for 49.82 CZK @ 951,006 CZK\nFees are 0.17499155 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.29 % (38.040239996051232406371553352 CZK)\nThe limits being 0.10 % (0.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16737106 BTC (165,986.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.11 % (-6,815.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 584.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00048234 BTC (458.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.32 CZK over 3056 transactions" + } + ] + }, + { + "id": 658, + "type": "message", + "date": "2022-03-22T13:43:04", + "date_unixtime": "1647952984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005194 BTC for 49.82 CZK @ 959,214 CZK\nFees are 0.17498583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.49 % (38.368559997651653943580985996 CZK)\nThe limits being 0.10 % (0.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16742300 BTC (166,036.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 959,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.28 % (-5,442.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 534.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00053428 BTC (512.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005194 BTC for 49.82 CZK @ 959,214 CZK\nFees are 0.17498583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.49 % (38.368559997651653943580985996 CZK)\nThe limits being 0.10 % (0.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16742300 BTC (166,036.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 959,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.28 % (-5,442.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 534.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00053428 BTC (512.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3057 transactions" + } + ] + }, + { + "id": 659, + "type": "message", + "date": "2022-03-22T19:43:04", + "date_unixtime": "1647974584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005225 BTC for 49.82 CZK @ 953,565 CZK\nFees are 0.17499354 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.34 % (85.82084998390799665286330380 CZK)\nThe limits being 0.10 % (0.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16747525 BTC (166,086.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 953,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.85 % (-6,388.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,484.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00058653 BTC (559.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005225 BTC for 49.82 CZK @ 953,565 CZK\nFees are 0.17499354 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.34 % (85.82084998390799665286330380 CZK)\nThe limits being 0.10 % (0.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16747525 BTC (166,086.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 953,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.85 % (-6,388.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,484.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00058653 BTC (559.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3058 transactions" + } + ] + }, + { + "id": 660, + "type": "message", + "date": "2022-03-23T01:43:03", + "date_unixtime": "1647996183", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005247 BTC for 49.82 CZK @ 949,457 CZK\nFees are 0.17497330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.65 % (94.94569999854710913176096356 CZK)\nThe limits being 0.10 % (0.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16752772 BTC (166,136.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.26 % (-7,076.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,434.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00063900 BTC (606.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005247 BTC for 49.82 CZK @ 949,457 CZK\nFees are 0.17497330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 15.65 % (94.94569999854710913176096356 CZK)\nThe limits being 0.10 % (0.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16752772 BTC (166,136.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.26 % (-7,076.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,434.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00063900 BTC (606.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3059 transactions" + } + ] + }, + { + "id": 661, + "type": "message", + "date": "2022-03-23T07:43:04", + "date_unixtime": "1648017784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005274 BTC for 49.82 CZK @ 944,623 CZK\nFees are 0.17497825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 13.01 % (85.01606998372590132488508650 CZK)\nThe limits being 0.10 % (0.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16758046 BTC (166,186.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.75 % (-7,886.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,384.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00069174 BTC (653.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005274 BTC for 49.82 CZK @ 944,623 CZK\nFees are 0.17497825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 13.01 % (85.01606998372590132488508650 CZK)\nThe limits being 0.10 % (0.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16758046 BTC (166,186.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.75 % (-7,886.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,384.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00069174 BTC (653.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3060 transactions" + } + ] + }, + { + "id": 662, + "type": "message", + "date": "2022-03-23T13:43:04", + "date_unixtime": "1648039384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005271 BTC for 49.83 CZK @ 945,270 CZK\nFees are 0.17499849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.06 % (56.716199993250714133997145450 CZK)\nThe limits being 0.10 % (0.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16763317 BTC (166,236.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 945,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.68 % (-7,778.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,334.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00074445 BTC (703.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005271 BTC for 49.83 CZK @ 945,270 CZK\nFees are 0.17499849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.06 % (56.716199993250714133997145450 CZK)\nThe limits being 0.10 % (0.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16763317 BTC (166,236.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 945,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.68 % (-7,778.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,334.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00074445 BTC (703.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3061 transactions" + } + ] + }, + { + "id": 663, + "type": "message", + "date": "2022-03-23T19:43:04", + "date_unixtime": "1648060984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005272 BTC for 49.82 CZK @ 945,005 CZK\nFees are 0.17498263 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.78 % (66.150349996559840255615210196 CZK)\nThe limits being 0.10 % (0.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16768589 BTC (166,286.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 945,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.70 % (-7,822.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,284.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00079717 BTC (753.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005272 BTC for 49.82 CZK @ 945,005 CZK\nFees are 0.17498263 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.78 % (66.150349996559840255615210196 CZK)\nThe limits being 0.10 % (0.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16768589 BTC (166,286.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 945,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.70 % (-7,822.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,284.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00079717 BTC (753.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3062 transactions" + } + ] + }, + { + "id": 664, + "type": "message", + "date": "2022-03-24T01:43:04", + "date_unixtime": "1648082584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005163 BTC for 49.82 CZK @ 965,000 CZK\nFees are 0.17499066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.43 % (77.199999992279587780170140512 CZK)\nThe limits being 0.10 % (0.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16773752 BTC (166,336.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 965,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.69 % (-4,469.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,234.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00084880 BTC (819.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.31 CZK over 3063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005163 BTC for 49.82 CZK @ 965,000 CZK\nFees are 0.17499066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.43 % (77.199999992279587780170140512 CZK)\nThe limits being 0.10 % (0.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16773752 BTC (166,336.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 965,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.69 % (-4,469.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,234.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00084880 BTC (819.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.31 CZK over 3063 transactions" + } + ] + }, + { + "id": 665, + "type": "message", + "date": "2022-03-24T07:43:03", + "date_unixtime": "1648104183", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005140 BTC for 49.82 CZK @ 969,276 CZK\nFees are 0.17498306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.89 % (77.542079996277619770491993976 CZK)\nThe limits being 0.10 % (0.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16778892 BTC (166,386.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 969,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.26 % (-3,752.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,184.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00090020 BTC (872.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005140 BTC for 49.82 CZK @ 969,276 CZK\nFees are 0.17498306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.89 % (77.542079996277619770491993976 CZK)\nThe limits being 0.10 % (0.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16778892 BTC (166,386.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 969,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.26 % (-3,752.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,184.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00090020 BTC (872.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3064 transactions" + } + ] + }, + { + "id": 666, + "type": "message", + "date": "2022-03-24T13:43:04", + "date_unixtime": "1648125784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005180 BTC for 49.82 CZK @ 961,726 CZK\nFees are 0.17497119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.35 % (67.320819994882775151833447795 CZK)\nThe limits being 0.10 % (0.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16784072 BTC (166,436.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 961,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.02 % (-5,019.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,134.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00095200 BTC (915.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005180 BTC for 49.82 CZK @ 961,726 CZK\nFees are 0.17497119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.35 % (67.320819994882775151833447795 CZK)\nThe limits being 0.10 % (0.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16784072 BTC (166,436.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 961,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.02 % (-5,019.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,134.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00095200 BTC (915.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3065 transactions" + } + ] + }, + { + "id": 667, + "type": "message", + "date": "2022-03-24T19:43:04", + "date_unixtime": "1648147384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005041 BTC for 49.82 CZK @ 988,346 CZK\nFees are 0.17498915 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.98 % (79.0676799897047498998496336 CZK)\nThe limits being 0.10 % (0.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16789113 BTC (166,486.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.33 % (-552.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,084.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00100241 BTC (990.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005041 BTC for 49.82 CZK @ 988,346 CZK\nFees are 0.17498915 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.98 % (79.0676799897047498998496336 CZK)\nThe limits being 0.10 % (0.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16789113 BTC (166,486.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.33 % (-552.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,084.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00100241 BTC (990.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3066 transactions" + } + ] + }, + { + "id": 668, + "type": "message", + "date": "2022-03-25T01:43:04", + "date_unixtime": "1648168984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005038 BTC for 49.83 CZK @ 988,986 CZK\nFees are 0.17499826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.50 % (98.89859999727037148463901553 CZK)\nThe limits being 0.10 % (1.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16794151 BTC (166,536.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.27 % (-444.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,034.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00105279 BTC (1,041.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005038 BTC for 49.83 CZK @ 988,986 CZK\nFees are 0.17499826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 9.50 % (98.89859999727037148463901553 CZK)\nThe limits being 0.10 % (1.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16794151 BTC (166,536.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.27 % (-444.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,034.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00105279 BTC (1,041.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3067 transactions" + } + ] + }, + { + "id": 669, + "type": "message", + "date": "2022-03-25T07:43:04", + "date_unixtime": "1648190584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005032 BTC for 49.82 CZK @ 990,158 CZK\nFees are 0.17499698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.25 % (79.21263998897341023429126832 CZK)\nThe limits being 0.10 % (1.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16799183 BTC (166,586.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 990,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.15 % (-248.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,984.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00110311 BTC (1,092.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005032 BTC for 49.82 CZK @ 990,158 CZK\nFees are 0.17499698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.25 % (79.21263998897341023429126832 CZK)\nThe limits being 0.10 % (1.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16799183 BTC (166,586.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 990,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.15 % (-248.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,984.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00110311 BTC (1,092.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3068 transactions" + } + ] + }, + { + "id": 670, + "type": "message", + "date": "2022-03-25T13:43:04", + "date_unixtime": "1648212184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004982 BTC for 49.82 CZK @ 999,999 CZK\nFees are 0.17498012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.34 % (49.999949994369365990610542745 CZK)\nThe limits being 0.10 % (1.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16804165 BTC (166,636.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 999,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.84 % (1,404.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,934.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00115293 BTC (1,152.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004982 BTC for 49.82 CZK @ 999,999 CZK\nFees are 0.17498012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.34 % (49.999949994369365990610542745 CZK)\nThe limits being 0.10 % (1.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16804165 BTC (166,636.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 999,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.84 % (1,404.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,934.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00115293 BTC (1,152.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3069 transactions" + } + ] + }, + { + "id": 671, + "type": "message", + "date": "2022-03-25T19:43:04", + "date_unixtime": "1648233784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005002 BTC for 49.82 CZK @ 995,954 CZK\nFees are 0.17497193 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.31 % (99.59539998649269739040108919 CZK)\nThe limits being 0.10 % (1.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16809167 BTC (166,686.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.43 % (724.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,884.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00120295 BTC (1,198.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.30 CZK over 3070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005002 BTC for 49.82 CZK @ 995,954 CZK\nFees are 0.17497193 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.31 % (99.59539998649269739040108919 CZK)\nThe limits being 0.10 % (1.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16809167 BTC (166,686.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.43 % (724.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,884.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00120295 BTC (1,198.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.30 CZK over 3070 transactions" + } + ] + }, + { + "id": 672, + "type": "message", + "date": "2022-03-26T01:43:04", + "date_unixtime": "1648255384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005003 BTC for 49.82 CZK @ 995,771 CZK\nFees are 0.17497476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.98 % (99.57709999809780300230424775 CZK)\nThe limits being 0.10 % (1.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16814170 BTC (166,736.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.42 % (693.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,834.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00125298 BTC (1,247.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005003 BTC for 49.82 CZK @ 995,771 CZK\nFees are 0.17497476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.98 % (99.57709999809780300230424775 CZK)\nThe limits being 0.10 % (1.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16814170 BTC (166,736.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.42 % (693.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,834.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00125298 BTC (1,247.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3071 transactions" + } + ] + }, + { + "id": 673, + "type": "message", + "date": "2022-03-26T07:43:04", + "date_unixtime": "1648276984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004998 BTC for 49.82 CZK @ 996,811 CZK\nFees are 0.17498245 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.60 % (59.808659990154507243854193396 CZK)\nThe limits being 0.10 % (1.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16819168 BTC (166,786.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.52 % (868.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,785.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00130296 BTC (1,298.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004998 BTC for 49.82 CZK @ 996,811 CZK\nFees are 0.17498245 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.60 % (59.808659990154507243854193396 CZK)\nThe limits being 0.10 % (1.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16819168 BTC (166,786.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.52 % (868.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,785.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00130296 BTC (1,298.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3072 transactions" + } + ] + }, + { + "id": 674, + "type": "message", + "date": "2022-03-26T13:43:04", + "date_unixtime": "1648298584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005017 BTC for 49.82 CZK @ 993,080 CZK\nFees are 0.17499021 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.48 % (19.861599998967139031726608852 CZK)\nThe limits being 0.10 % (1.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16824185 BTC (166,836.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.14 % (240.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,735.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00135313 BTC (1,343.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005017 BTC for 49.82 CZK @ 993,080 CZK\nFees are 0.17499021 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.48 % (19.861599998967139031726608852 CZK)\nThe limits being 0.10 % (1.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16824185 BTC (166,836.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.14 % (240.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,735.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00135313 BTC (1,343.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3073 transactions" + } + ] + }, + { + "id": 675, + "type": "message", + "date": "2022-03-26T19:43:04", + "date_unixtime": "1648320184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005001 BTC for 49.82 CZK @ 996,152 CZK\nFees are 0.17497173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.28 % (59.76911999363953816112711688 CZK)\nThe limits being 0.10 % (1.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16829186 BTC (166,886.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.45 % (757.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,685.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00140314 BTC (1,397.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005001 BTC for 49.82 CZK @ 996,152 CZK\nFees are 0.17497173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.28 % (59.76911999363953816112711688 CZK)\nThe limits being 0.10 % (1.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16829186 BTC (166,886.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.45 % (757.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,685.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00140314 BTC (1,397.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3074 transactions" + } + ] + }, + { + "id": 676, + "type": "message", + "date": "2022-03-27T01:43:04", + "date_unixtime": "1648341784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004986 BTC for 49.82 CZK @ 999,187 CZK\nFees are 0.17497841 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.06 % (29.975609997979394621832011547 CZK)\nThe limits being 0.10 % (1.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16834172 BTC (166,936.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 999,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.76 % (1,268.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,635.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00145300 BTC (1,451.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004986 BTC for 49.82 CZK @ 999,187 CZK\nFees are 0.17497841 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.06 % (29.975609997979394621832011547 CZK)\nThe limits being 0.10 % (1.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16834172 BTC (166,936.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 999,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.76 % (1,268.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,635.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00145300 BTC (1,451.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3075 transactions" + } + ] + }, + { + "id": 677, + "type": "message", + "date": "2022-03-27T08:43:04", + "date_unixtime": "1648363384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004977 BTC for 49.82 CZK @ 1,000,949 CZK\nFees are 0.17497057 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (20.018979999577528479536010142 CZK)\nThe limits being 0.10 % (1.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16839149 BTC (166,986.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,000,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.94 % (1,564.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,585.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00150277 BTC (1,504.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004977 BTC for 49.82 CZK @ 1,000,949 CZK\nFees are 0.17497057 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.33 % (20.018979999577528479536010142 CZK)\nThe limits being 0.10 % (1.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16839149 BTC (166,986.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,000,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.94 % (1,564.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,585.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00150277 BTC (1,504.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3076 transactions" + } + ] + }, + { + "id": 678, + "type": "message", + "date": "2022-03-27T14:43:04", + "date_unixtime": "1648384984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004996 BTC for 49.82 CZK @ 997,245 CZK\nFees are 0.17498858 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.58 % (39.889799999441506369021475276 CZK)\nThe limits being 0.10 % (1.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16844145 BTC (167,036.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.56 % (940.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,535.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00155273 BTC (1,548.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.29 CZK over 3077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004996 BTC for 49.82 CZK @ 997,245 CZK\nFees are 0.17498858 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.58 % (39.889799999441506369021475276 CZK)\nThe limits being 0.10 % (1.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16844145 BTC (167,036.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.56 % (940.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,535.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00155273 BTC (1,548.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.29 CZK over 3077 transactions" + } + ] + }, + { + "id": 679, + "type": "message", + "date": "2022-03-27T20:43:04", + "date_unixtime": "1648406584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004957 BTC for 49.82 CZK @ 1,004,954 CZK\nFees are 0.17496473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.50 % (40.198159996598550222496428932 CZK)\nThe limits being 0.10 % (1.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16849102 BTC (167,086.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,004,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.34 % (2,239.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,485.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00160230 BTC (1,610.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004957 BTC for 49.82 CZK @ 1,004,954 CZK\nFees are 0.17496473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.50 % (40.198159996598550222496428932 CZK)\nThe limits being 0.10 % (1.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16849102 BTC (167,086.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,004,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.34 % (2,239.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,485.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00160230 BTC (1,610.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3078 transactions" + } + ] + }, + { + "id": 680, + "type": "message", + "date": "2022-03-28T02:43:05", + "date_unixtime": "1648428185", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004877 BTC for 49.82 CZK @ 1,021,500 CZK\nFees are 0.17497522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.82 % (30.644999998467533000910591891 CZK)\nThe limits being 0.10 % (1.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16853979 BTC (167,136.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,021,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.01 % (5,026.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,435.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00165107 BTC (1,686.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004877 BTC for 49.82 CZK @ 1,021,500 CZK\nFees are 0.17497522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.82 % (30.644999998467533000910591891 CZK)\nThe limits being 0.10 % (1.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16853979 BTC (167,136.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,021,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.01 % (5,026.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,435.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00165107 BTC (1,686.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3079 transactions" + } + ] + }, + { + "id": 681, + "type": "message", + "date": "2022-03-28T08:43:03", + "date_unixtime": "1648449783", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004877 BTC for 49.82 CZK @ 1,021,500 CZK\nFees are 0.17497522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.94 % (51.074999997445888334850986485 CZK)\nThe limits being 0.10 % (1.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16858856 BTC (167,186.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,021,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.01 % (5,026.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,385.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00169984 BTC (1,736.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004877 BTC for 49.82 CZK @ 1,021,500 CZK\nFees are 0.17497522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.94 % (51.074999997445888334850986485 CZK)\nThe limits being 0.10 % (1.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16858856 BTC (167,186.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,021,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.01 % (5,026.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,385.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00169984 BTC (1,736.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3080 transactions" + } + ] + }, + { + "id": 682, + "type": "message", + "date": "2022-03-28T14:43:04", + "date_unixtime": "1648471384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004741 BTC for 49.82 CZK @ 1,050,933 CZK\nFees are 0.17499692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.86 % (52.546649992270251756481506880 CZK)\nThe limits being 0.10 % (1.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16863597 BTC (167,236.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,050,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.97 % (9,988.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,335.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00174725 BTC (1,836.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004741 BTC for 49.82 CZK @ 1,050,933 CZK\nFees are 0.17499692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.86 % (52.546649992270251756481506880 CZK)\nThe limits being 0.10 % (1.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16863597 BTC (167,236.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,050,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.97 % (9,988.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,335.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00174725 BTC (1,836.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3081 transactions" + } + ] + }, + { + "id": 683, + "type": "message", + "date": "2022-03-28T20:43:05", + "date_unixtime": "1648492985", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004680 BTC for 49.82 CZK @ 1,064,504 CZK\nFees are 0.17497604 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.79 % (53.225199994463821070697004925 CZK)\nThe limits being 0.10 % (1.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16868277 BTC (167,286.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,064,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.34 % (12,276.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,285.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00179405 BTC (1,909.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004680 BTC for 49.82 CZK @ 1,064,504 CZK\nFees are 0.17497604 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.79 % (53.225199994463821070697004925 CZK)\nThe limits being 0.10 % (1.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16868277 BTC (167,286.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,064,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.34 % (12,276.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,285.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00179405 BTC (1,909.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3082 transactions" + } + ] + }, + { + "id": 684, + "type": "message", + "date": "2022-03-29T02:43:04", + "date_unixtime": "1648514584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004710 BTC for 49.83 CZK @ 1,057,867 CZK\nFees are 0.17499974 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.80 % (74.050689992668970704445269584 CZK)\nThe limits being 0.10 % (1.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16872987 BTC (167,336.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,057,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.67 % (11,157.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,235.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00184115 BTC (1,947.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004710 BTC for 49.83 CZK @ 1,057,867 CZK\nFees are 0.17499974 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.80 % (74.050689992668970704445269584 CZK)\nThe limits being 0.10 % (1.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16872987 BTC (167,336.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,057,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.67 % (11,157.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,235.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00184115 BTC (1,947.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3083 transactions" + } + ] + }, + { + "id": 685, + "type": "message", + "date": "2022-03-29T08:43:04", + "date_unixtime": "1648536184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004693 BTC for 49.82 CZK @ 1,061,626 CZK\nFees are 0.17498770 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.65 % (53.08129999083752360027778335 CZK)\nThe limits being 0.10 % (2.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16877680 BTC (167,386.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,061,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.04 % (11,791.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,185.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00188808 BTC (2,004.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.28 CZK over 3084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004693 BTC for 49.82 CZK @ 1,061,626 CZK\nFees are 0.17498770 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.65 % (53.08129999083752360027778335 CZK)\nThe limits being 0.10 % (2.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16877680 BTC (167,386.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,061,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.04 % (11,791.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,185.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00188808 BTC (2,004.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.28 CZK over 3084 transactions" + } + ] + }, + { + "id": 686, + "type": "message", + "date": "2022-03-29T14:43:04", + "date_unixtime": "1648557784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004714 BTC for 49.82 CZK @ 1,056,857 CZK\nFees are 0.17498113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.55 % (31.705709995922206092845596206 CZK)\nThe limits being 0.10 % (2.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16882394 BTC (167,436.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,056,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.56 % (10,986.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,135.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00193522 BTC (2,045.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004714 BTC for 49.82 CZK @ 1,056,857 CZK\nFees are 0.17498113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.55 % (31.705709995922206092845596206 CZK)\nThe limits being 0.10 % (2.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16882394 BTC (167,436.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,056,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.56 % (10,986.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,135.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00193522 BTC (2,045.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3085 transactions" + } + ] + }, + { + "id": 687, + "type": "message", + "date": "2022-03-29T20:43:04", + "date_unixtime": "1648579384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004755 BTC for 49.82 CZK @ 1,047,651 CZK\nFees are 0.17496556 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.53 % (73.33556998874077427217147974 CZK)\nThe limits being 0.10 % (2.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16887149 BTC (167,486.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,047,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.63 % (9,431.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,085.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00198277 BTC (2,077.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004755 BTC for 49.82 CZK @ 1,047,651 CZK\nFees are 0.17496556 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.53 % (73.33556998874077427217147974 CZK)\nThe limits being 0.10 % (2.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16887149 BTC (167,486.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,047,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.63 % (9,431.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,085.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00198277 BTC (2,077.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3086 transactions" + } + ] + }, + { + "id": 688, + "type": "message", + "date": "2022-03-30T02:43:04", + "date_unixtime": "1648600984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004783 BTC for 49.82 CZK @ 1,041,672 CZK\nFees are 0.17499144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.45 % (72.917039998308241872659573995 CZK)\nThe limits being 0.10 % (2.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16891932 BTC (167,536.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,041,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.03 % (8,421.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,035.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00203060 BTC (2,115.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004783 BTC for 49.82 CZK @ 1,041,672 CZK\nFees are 0.17499144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.45 % (72.917039998308241872659573995 CZK)\nThe limits being 0.10 % (2.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16891932 BTC (167,536.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,041,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.03 % (8,421.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,035.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00203060 BTC (2,115.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3087 transactions" + } + ] + }, + { + "id": 689, + "type": "message", + "date": "2022-03-30T08:43:04", + "date_unixtime": "1648622584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004773 BTC for 49.82 CZK @ 1,043,731 CZK\nFees are 0.17497074 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.89 % (62.623859997237825999949266192 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16896705 BTC (167,586.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,043,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.23 % (8,769.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 985.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00207833 BTC (2,169.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004773 BTC for 49.82 CZK @ 1,043,731 CZK\nFees are 0.17497074 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.89 % (62.623859997237825999949266192 CZK)\nThe limits being 0.10 % (2.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16896705 BTC (167,586.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,043,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.23 % (8,769.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 985.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00207833 BTC (2,169.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3088 transactions" + } + ] + }, + { + "id": 690, + "type": "message", + "date": "2022-03-30T14:43:04", + "date_unixtime": "1648644184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004789 BTC for 49.82 CZK @ 1,040,345 CZK\nFees are 0.17498775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.29 % (72.824149989549002795914861775 CZK)\nThe limits being 0.10 % (2.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16901494 BTC (167,636.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,040,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.89 % (8,197.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 935.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00212622 BTC (2,212.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004789 BTC for 49.82 CZK @ 1,040,345 CZK\nFees are 0.17498775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.29 % (72.824149989549002795914861775 CZK)\nThe limits being 0.10 % (2.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16901494 BTC (167,636.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,040,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.89 % (8,197.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 935.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00212622 BTC (2,212.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3089 transactions" + } + ] + }, + { + "id": 691, + "type": "message", + "date": "2022-03-30T20:43:04", + "date_unixtime": "1648665784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004797 BTC for 49.82 CZK @ 1,038,574 CZK\nFees are 0.17498168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.14 % (93.47165999676554199139783740 CZK)\nThe limits being 0.10 % (2.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16906291 BTC (167,686.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,038,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.71 % (7,897.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 885.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00217419 BTC (2,258.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004797 BTC for 49.82 CZK @ 1,038,574 CZK\nFees are 0.17498168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.14 % (93.47165999676554199139783740 CZK)\nThe limits being 0.10 % (2.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16906291 BTC (167,686.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,038,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.71 % (7,897.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 885.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00217419 BTC (2,258.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3090 transactions" + } + ] + }, + { + "id": 692, + "type": "message", + "date": "2022-03-31T02:43:03", + "date_unixtime": "1648687383", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004819 BTC for 49.82 CZK @ 1,033,901 CZK\nFees are 0.17499325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.85 % (134.40712999417994686164309953 CZK)\nThe limits being 0.10 % (2.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16911110 BTC (167,736.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,033,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.24 % (7,107.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 835.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00222238 BTC (2,297.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.27 CZK over 3091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004819 BTC for 49.82 CZK @ 1,033,901 CZK\nFees are 0.17499325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.85 % (134.40712999417994686164309953 CZK)\nThe limits being 0.10 % (2.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16911110 BTC (167,736.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,033,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.24 % (7,107.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 835.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00222238 BTC (2,297.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.27 CZK over 3091 transactions" + } + ] + }, + { + "id": 693, + "type": "message", + "date": "2022-03-31T08:43:04", + "date_unixtime": "1648708984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004828 BTC for 49.82 CZK @ 1,032,000 CZK\nFees are 0.17499772 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.40 % (103.2000 CZK)\nThe limits being 0.10 % (2.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16915938 BTC (167,786.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,032,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.04 % (6,785.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 785.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00227066 BTC (2,343.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004828 BTC for 49.82 CZK @ 1,032,000 CZK\nFees are 0.17499772 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.40 % (103.2000 CZK)\nThe limits being 0.10 % (2.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16915938 BTC (167,786.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,032,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.04 % (6,785.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 785.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00227066 BTC (2,343.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3092 transactions" + } + ] + }, + { + "id": 694, + "type": "message", + "date": "2022-03-31T14:43:04", + "date_unixtime": "1648730584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004775 BTC for 49.82 CZK @ 1,043,307 CZK\nFees are 0.17497295 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.74 % (114.76376999454787823768642213 CZK)\nThe limits being 0.10 % (2.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16920713 BTC (167,836.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,043,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.18 % (8,698.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 735.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00231841 BTC (2,418.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004775 BTC for 49.82 CZK @ 1,043,307 CZK\nFees are 0.17497295 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.74 % (114.76376999454787823768642213 CZK)\nThe limits being 0.10 % (2.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16920713 BTC (167,836.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,043,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.18 % (8,698.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 735.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00231841 BTC (2,418.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3093 transactions" + } + ] + }, + { + "id": 695, + "type": "message", + "date": "2022-03-31T20:43:04", + "date_unixtime": "1648752184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004928 BTC for 49.82 CZK @ 1,010,996 CZK\nFees are 0.17498691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.56 % (252.74899999959557134445026822 CZK)\nThe limits being 0.10 % (2.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16925641 BTC (167,886.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,010,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.92 % (3,231.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 685.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00236769 BTC (2,393.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004928 BTC for 49.82 CZK @ 1,010,996 CZK\nFees are 0.17498691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 10.56 % (252.74899999959557134445026822 CZK)\nThe limits being 0.10 % (2.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16925641 BTC (167,886.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,010,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.92 % (3,231.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 685.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00236769 BTC (2,393.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3094 transactions" + } + ] + }, + { + "id": 696, + "type": "message", + "date": "2022-04-01T02:43:04", + "date_unixtime": "1648773784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004962 BTC for 49.82 CZK @ 1,004,037 CZK\nFees are 0.17498140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.27 % (200.80739997674403192212986108 CZK)\nThe limits being 0.10 % (2.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16930603 BTC (167,936.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,004,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.22 % (2,053.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 635.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00241731 BTC (2,427.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004962 BTC for 49.82 CZK @ 1,004,037 CZK\nFees are 0.17498140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.27 % (200.80739997674403192212986108 CZK)\nThe limits being 0.10 % (2.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16930603 BTC (167,936.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,004,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.22 % (2,053.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 635.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00241731 BTC (2,427.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3095 transactions" + } + ] + }, + { + "id": 697, + "type": "message", + "date": "2022-04-01T08:43:04", + "date_unixtime": "1648795384", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005046 BTC for 49.82 CZK @ 987,379 CZK\nFees are 0.17499134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.08 % (148.10684998462574805066926874 CZK)\nThe limits being 0.10 % (2.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16935649 BTC (167,986.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.46 % (-767.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 585.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00246777 BTC (2,436.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005046 BTC for 49.82 CZK @ 987,379 CZK\nFees are 0.17499134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.08 % (148.10684998462574805066926874 CZK)\nThe limits being 0.10 % (2.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16935649 BTC (167,986.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.46 % (-767.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 585.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00246777 BTC (2,436.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3096 transactions" + } + ] + }, + { + "id": 698, + "type": "message", + "date": "2022-04-01T14:43:03", + "date_unixtime": "1648816983", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004996 BTC for 49.82 CZK @ 997,254 CZK\nFees are 0.17499016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.35 % (159.56063998583021873403057274 CZK)\nThe limits being 0.10 % (2.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16940645 BTC (168,036.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.54 % (904.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 535.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00251773 BTC (2,510.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004996 BTC for 49.82 CZK @ 997,254 CZK\nFees are 0.17499016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.35 % (159.56063998583021873403057274 CZK)\nThe limits being 0.10 % (2.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16940645 BTC (168,036.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.54 % (904.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 535.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00251773 BTC (2,510.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3097 transactions" + } + ] + }, + { + "id": 699, + "type": "message", + "date": "2022-04-01T20:43:03", + "date_unixtime": "1648838583", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004872 BTC for 49.82 CZK @ 1,022,620 CZK\nFees are 0.17498748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.79 % (204.52399999018214574113754568 CZK)\nThe limits being 0.10 % (2.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16945517 BTC (168,086.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,022,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.09 % (5,201.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 485.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00256645 BTC (2,624.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004872 BTC for 49.82 CZK @ 1,022,620 CZK\nFees are 0.17498748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.79 % (204.52399999018214574113754568 CZK)\nThe limits being 0.10 % (2.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16945517 BTC (168,086.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,022,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.09 % (5,201.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 485.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00256645 BTC (2,624.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3098 transactions" + } + ] + }, + { + "id": 700, + "type": "message", + "date": "2022-04-02T02:43:04", + "date_unixtime": "1648860184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004865 BTC for 49.82 CZK @ 1,024,096 CZK\nFees are 0.17498827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.88 % (184.33727997640324639711677167 CZK)\nThe limits being 0.10 % (2.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16950382 BTC (168,136.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,024,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.24 % (5,451.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 435.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00261510 BTC (2,678.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.26 CZK over 3099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004865 BTC for 49.82 CZK @ 1,024,096 CZK\nFees are 0.17498827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.88 % (184.33727997640324639711677167 CZK)\nThe limits being 0.10 % (2.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16950382 BTC (168,136.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,024,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.24 % (5,451.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 435.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00261510 BTC (2,678.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.26 CZK over 3099 transactions" + } + ] + }, + { + "id": 701, + "type": "message", + "date": "2022-04-02T08:43:05", + "date_unixtime": "1648881785", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004850 BTC for 49.82 CZK @ 1,027,286 CZK\nFees are 0.17499213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.13 % (113.00145998078888837522280267 CZK)\nThe limits being 0.10 % (2.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16955232 BTC (168,186.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,027,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.56 % (5,992.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 385.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00266360 BTC (2,736.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004850 BTC for 49.82 CZK @ 1,027,286 CZK\nFees are 0.17499213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.13 % (113.00145998078888837522280267 CZK)\nThe limits being 0.10 % (2.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16955232 BTC (168,186.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,027,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.56 % (5,992.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 385.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00266360 BTC (2,736.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3100 transactions" + } + ] + }, + { + "id": 702, + "type": "message", + "date": "2022-04-02T14:43:03", + "date_unixtime": "1648903383", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004816 BTC for 49.82 CZK @ 1,034,520 CZK\nFees are 0.17498902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (113.79719999726869577740367186 CZK)\nThe limits being 0.10 % (2.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16960048 BTC (168,236.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,034,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.29 % (7,218.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 335.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00271176 BTC (2,805.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004816 BTC for 49.82 CZK @ 1,034,520 CZK\nFees are 0.17498902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (113.79719999726869577740367186 CZK)\nThe limits being 0.10 % (2.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16960048 BTC (168,236.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,034,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.29 % (7,218.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 335.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00271176 BTC (2,805.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3101 transactions" + } + ] + }, + { + "id": 703, + "type": "message", + "date": "2022-04-02T20:43:04", + "date_unixtime": "1648924984", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004921 BTC for 49.82 CZK @ 1,012,438 CZK\nFees are 0.17498758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.98 % (111.36817998010823122930746249 CZK)\nThe limits being 0.10 % (2.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16964969 BTC (168,286.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,012,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.06 % (3,473.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 285.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00276097 BTC (2,795.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004921 BTC for 49.82 CZK @ 1,012,438 CZK\nFees are 0.17498758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.98 % (111.36817998010823122930746249 CZK)\nThe limits being 0.10 % (2.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16964969 BTC (168,286.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,012,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.06 % (3,473.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 285.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00276097 BTC (2,795.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3102 transactions" + } + ] + }, + { + "id": 704, + "type": "message", + "date": "2022-04-03T02:43:04", + "date_unixtime": "1648946584", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004903 BTC for 49.82 CZK @ 1,016,149 CZK\nFees are 0.17498657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.20 % (91.45340998327188716709546365 CZK)\nThe limits being 0.10 % (2.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16969872 BTC (168,336.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,016,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.44 % (4,102.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 235.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00281000 BTC (2,855.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004903 BTC for 49.82 CZK @ 1,016,149 CZK\nFees are 0.17498657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.20 % (91.45340998327188716709546365 CZK)\nThe limits being 0.10 % (2.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16969872 BTC (168,336.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,016,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.44 % (4,102.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 235.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00281000 BTC (2,855.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3103 transactions" + } + ] + }, + { + "id": 705, + "type": "message", + "date": "2022-04-03T08:43:04", + "date_unixtime": "1648968184", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004862 BTC for 49.82 CZK @ 1,024,781 CZK\nFees are 0.17499734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.75 % (51.23904999716131343670251610 CZK)\nThe limits being 0.10 % (2.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16974734 BTC (168,386.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,024,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.31 % (5,567.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 185.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00285862 BTC (2,929.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004862 BTC for 49.82 CZK @ 1,024,781 CZK\nFees are 0.17499734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.75 % (51.23904999716131343670251610 CZK)\nThe limits being 0.10 % (2.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16974734 BTC (168,386.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,024,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.31 % (5,567.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 185.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00285862 BTC (2,929.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3104 transactions" + } + ] + }, + { + "id": 706, + "type": "message", + "date": "2022-04-03T14:43:04", + "date_unixtime": "1648989784", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004871 BTC for 49.82 CZK @ 1,022,869 CZK\nFees are 0.17499408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.10 % (92.05816637866829676505869367 CZK)\nThe limits being 0.10 % (2.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16979605 BTC (168,436.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,022,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.11 % (5,242.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 135.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00290733 BTC (2,973.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004871 BTC for 49.82 CZK @ 1,022,869 CZK\nFees are 0.17499408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.10 % (92.05816637866829676505869367 CZK)\nThe limits being 0.10 % (2.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16979605 BTC (168,436.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,022,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.11 % (5,242.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 135.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00290733 BTC (2,973.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3105 transactions" + } + ] + }, + { + "id": 707, + "type": "message", + "date": "2022-04-03T20:43:03", + "date_unixtime": "1649011383", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004869 BTC for 49.82 CZK @ 1,023,253 CZK\nFees are 0.17498798 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (122.79035997545252122807389172 CZK)\nThe limits being 0.10 % (3.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16984474 BTC (168,486.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 992,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,023,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.15 % (5,307.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 85.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00295602 BTC (3,024.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.25 CZK over 3106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004869 BTC for 49.82 CZK @ 1,023,253 CZK\nFees are 0.17498798 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (122.79035997545252122807389172 CZK)\nThe limits being 0.10 % (3.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16984474 BTC (168,486.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 992,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,023,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.15 % (5,307.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 85.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00295602 BTC (3,024.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.25 CZK over 3106 transactions" + } + ] + }, + { + "id": 708, + "type": "message", + "date": "2022-04-04T02:43:05", + "date_unixtime": "1649032985", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004908 BTC for 49.82 CZK @ 1,015,142 CZK\nFees are 0.17499143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.99 % (91.36277999495652745951516879 CZK)\nThe limits being 0.10 % (3.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16989382 BTC (168,536.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 992,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,015,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.33 % (3,929.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 35.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00300510 BTC (3,050.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004908 BTC for 49.82 CZK @ 1,015,142 CZK\nFees are 0.17499143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.99 % (91.36277999495652745951516879 CZK)\nThe limits being 0.10 % (3.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16989382 BTC (168,536.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 992,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,015,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.33 % (3,929.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 35.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00300510 BTC (3,050.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3107 transactions" + } + ] + }, + { + "id": 709, + "type": "message", + "date": "2022-04-04T08:43:00", + "date_unixtime": "1649054580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 710, + "type": "message", + "date": "2022-04-04T14:43:00", + "date_unixtime": "1649076180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 711, + "type": "message", + "date": "2022-04-04T20:43:00", + "date_unixtime": "1649097780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 712, + "type": "message", + "date": "2022-04-05T02:43:00", + "date_unixtime": "1649119380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 713, + "type": "message", + "date": "2022-04-05T08:43:00", + "date_unixtime": "1649140980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 714, + "type": "message", + "date": "2022-04-05T14:43:00", + "date_unixtime": "1649162580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 715, + "type": "message", + "date": "2022-04-05T20:43:00", + "date_unixtime": "1649184180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 716, + "type": "message", + "date": "2022-04-06T02:43:00", + "date_unixtime": "1649205780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 717, + "type": "message", + "date": "2022-04-06T08:43:00", + "date_unixtime": "1649227380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 718, + "type": "message", + "date": "2022-04-06T14:43:00", + "date_unixtime": "1649248980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 719, + "type": "message", + "date": "2022-04-06T20:43:00", + "date_unixtime": "1649270580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 720, + "type": "message", + "date": "2022-04-07T02:43:00", + "date_unixtime": "1649292180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 721, + "type": "message", + "date": "2022-04-07T08:43:00", + "date_unixtime": "1649313780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 722, + "type": "message", + "date": "2022-04-07T14:43:00", + "date_unixtime": "1649335380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 723, + "type": "message", + "date": "2022-04-07T20:43:00", + "date_unixtime": "1649356980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 724, + "type": "message", + "date": "2022-04-08T02:43:00", + "date_unixtime": "1649378580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 725, + "type": "message", + "date": "2022-04-08T08:43:00", + "date_unixtime": "1649400180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 726, + "type": "message", + "date": "2022-04-08T14:43:00", + "date_unixtime": "1649421780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 727, + "type": "message", + "date": "2022-04-08T20:43:00", + "date_unixtime": "1649443380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 728, + "type": "message", + "date": "2022-04-09T02:43:00", + "date_unixtime": "1649464980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 729, + "type": "message", + "date": "2022-04-09T08:43:00", + "date_unixtime": "1649486580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 730, + "type": "message", + "date": "2022-04-09T14:43:00", + "date_unixtime": "1649508180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 731, + "type": "message", + "date": "2022-04-09T20:43:00", + "date_unixtime": "1649529780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 732, + "type": "message", + "date": "2022-04-10T02:43:00", + "date_unixtime": "1649551380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 733, + "type": "message", + "date": "2022-04-10T08:43:00", + "date_unixtime": "1649572980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 734, + "type": "message", + "date": "2022-04-10T14:43:00", + "date_unixtime": "1649594580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 735, + "type": "message", + "date": "2022-04-10T20:43:00", + "date_unixtime": "1649616180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 736, + "type": "message", + "date": "2022-04-11T02:43:00", + "date_unixtime": "1649637780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 737, + "type": "message", + "date": "2022-04-11T08:43:00", + "date_unixtime": "1649659380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 738, + "type": "message", + "date": "2022-04-11T14:43:00", + "date_unixtime": "1649680980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 739, + "type": "message", + "date": "2022-04-11T20:43:00", + "date_unixtime": "1649702580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 740, + "type": "message", + "date": "2022-04-12T02:43:00", + "date_unixtime": "1649724180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 741, + "type": "message", + "date": "2022-04-12T08:43:00", + "date_unixtime": "1649745780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 742, + "type": "message", + "date": "2022-04-12T14:43:00", + "date_unixtime": "1649767380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 743, + "type": "message", + "date": "2022-04-12T20:43:01", + "date_unixtime": "1649788981", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 744, + "type": "message", + "date": "2022-04-13T02:43:00", + "date_unixtime": "1649810580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 745, + "type": "message", + "date": "2022-04-13T08:43:00", + "date_unixtime": "1649832180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 746, + "type": "message", + "date": "2022-04-13T14:43:00", + "date_unixtime": "1649853780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 747, + "type": "message", + "date": "2022-04-13T20:43:00", + "date_unixtime": "1649875380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 748, + "type": "message", + "date": "2022-04-14T02:43:00", + "date_unixtime": "1649896980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 749, + "type": "message", + "date": "2022-04-14T08:43:00", + "date_unixtime": "1649918580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 750, + "type": "message", + "date": "2022-04-14T14:43:00", + "date_unixtime": "1649940180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 751, + "type": "message", + "date": "2022-04-14T20:43:00", + "date_unixtime": "1649961780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 752, + "type": "message", + "date": "2022-04-15T02:43:00", + "date_unixtime": "1649983380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 753, + "type": "message", + "date": "2022-04-15T08:43:00", + "date_unixtime": "1650004980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 754, + "type": "message", + "date": "2022-04-15T14:43:00", + "date_unixtime": "1650026580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 755, + "type": "message", + "date": "2022-04-15T20:43:00", + "date_unixtime": "1650048180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 756, + "type": "message", + "date": "2022-04-16T02:43:00", + "date_unixtime": "1650069780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 757, + "type": "message", + "date": "2022-04-16T08:43:00", + "date_unixtime": "1650091380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 758, + "type": "message", + "date": "2022-04-16T14:43:00", + "date_unixtime": "1650112980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 759, + "type": "message", + "date": "2022-04-16T20:43:00", + "date_unixtime": "1650134580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 760, + "type": "message", + "date": "2022-04-17T02:43:00", + "date_unixtime": "1650156180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 761, + "type": "message", + "date": "2022-04-17T08:43:00", + "date_unixtime": "1650177780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 762, + "type": "message", + "date": "2022-04-17T14:43:00", + "date_unixtime": "1650199380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 763, + "type": "message", + "date": "2022-04-17T20:43:00", + "date_unixtime": "1650220980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 764, + "type": "message", + "date": "2022-04-18T02:43:00", + "date_unixtime": "1650242580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 765, + "type": "message", + "date": "2022-04-18T08:43:00", + "date_unixtime": "1650264180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 766, + "type": "message", + "date": "2022-04-18T14:43:00", + "date_unixtime": "1650285780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 767, + "type": "message", + "date": "2022-04-18T20:43:00", + "date_unixtime": "1650307380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 768, + "type": "message", + "date": "2022-04-19T02:43:00", + "date_unixtime": "1650328980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 769, + "type": "message", + "date": "2022-04-19T08:43:00", + "date_unixtime": "1650350580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 770, + "type": "message", + "date": "2022-04-19T14:43:00", + "date_unixtime": "1650372180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 771, + "type": "message", + "date": "2022-04-19T20:43:00", + "date_unixtime": "1650393780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 772, + "type": "message", + "date": "2022-04-20T02:43:00", + "date_unixtime": "1650415380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 773, + "type": "message", + "date": "2022-04-20T08:43:00", + "date_unixtime": "1650436980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 774, + "type": "message", + "date": "2022-04-20T14:43:00", + "date_unixtime": "1650458580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 775, + "type": "message", + "date": "2022-04-20T20:43:00", + "date_unixtime": "1650480180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 776, + "type": "message", + "date": "2022-04-21T02:43:00", + "date_unixtime": "1650501780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 777, + "type": "message", + "date": "2022-04-21T08:43:00", + "date_unixtime": "1650523380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 778, + "type": "message", + "date": "2022-04-21T14:43:01", + "date_unixtime": "1650544981", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 779, + "type": "message", + "date": "2022-04-21T20:43:00", + "date_unixtime": "1650566580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 780, + "type": "message", + "date": "2022-04-22T02:43:00", + "date_unixtime": "1650588180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 781, + "type": "message", + "date": "2022-04-22T08:43:01", + "date_unixtime": "1650609781", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 782, + "type": "message", + "date": "2022-04-22T14:43:00", + "date_unixtime": "1650631380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 783, + "type": "message", + "date": "2022-04-22T20:43:00", + "date_unixtime": "1650652980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 784, + "type": "message", + "date": "2022-04-23T02:43:00", + "date_unixtime": "1650674580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 785, + "type": "message", + "date": "2022-04-23T08:43:00", + "date_unixtime": "1650696180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 786, + "type": "message", + "date": "2022-04-23T14:43:00", + "date_unixtime": "1650717780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 787, + "type": "message", + "date": "2022-04-23T20:43:00", + "date_unixtime": "1650739380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 788, + "type": "message", + "date": "2022-04-24T02:43:00", + "date_unixtime": "1650760980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 789, + "type": "message", + "date": "2022-04-24T08:43:00", + "date_unixtime": "1650782580", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 790, + "type": "message", + "date": "2022-04-24T14:43:00", + "date_unixtime": "1650804180", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 791, + "type": "message", + "date": "2022-04-24T20:43:00", + "date_unixtime": "1650825780", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 792, + "type": "message", + "date": "2022-04-25T02:43:00", + "date_unixtime": "1650847380", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 793, + "type": "message", + "date": "2022-04-25T08:43:00", + "date_unixtime": "1650868980", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 794, + "type": "message", + "date": "2022-05-06T21:43:33", + "date_unixtime": "1651866213", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 795, + "type": "message", + "date": "2022-05-06T22:06:00", + "date_unixtime": "1651867560", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 796, + "type": "message", + "date": "2022-05-07T02:06:00", + "date_unixtime": "1651881960", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.14909654 CZK) should be strictly superior than the bot configuration chunk size (50 CZK)" + } + ] + }, + { + "id": 797, + "type": "message", + "date": "2022-05-07T06:06:04", + "date_unixtime": "1651896364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005803 BTC for 49.82 CZK @ 858,568 CZK\nFees are 0.17498978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.24 % (111.61383999187403797204356525 CZK)\nThe limits being 0.10 % (2.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16995185 BTC (168,586.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 858,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.45 % (-22,671.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,985.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00306313 BTC (2,629.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005803 BTC for 49.82 CZK @ 858,568 CZK\nFees are 0.17498978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.24 % (111.61383999187403797204356525 CZK)\nThe limits being 0.10 % (2.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16995185 BTC (168,586.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 858,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.45 % (-22,671.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,985.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00306313 BTC (2,629.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3108 transactions" + } + ] + }, + { + "id": 798, + "type": "message", + "date": "2022-05-07T10:06:04", + "date_unixtime": "1651910764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005795 BTC for 49.82 CZK @ 859,756 CZK\nFees are 0.17499034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.17 % (111.76827999843515770729968836 CZK)\nThe limits being 0.10 % (2.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17000980 BTC (168,636.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 859,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.32 % (-22,469.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,935.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00312108 BTC (2,683.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005795 BTC for 49.82 CZK @ 859,756 CZK\nFees are 0.17499034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.17 % (111.76827999843515770729968836 CZK)\nThe limits being 0.10 % (2.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17000980 BTC (168,636.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 859,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.32 % (-22,469.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,935.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00312108 BTC (2,683.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3109 transactions" + } + ] + }, + { + "id": 799, + "type": "message", + "date": "2022-05-07T14:06:04", + "date_unixtime": "1651925164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005793 BTC for 49.82 CZK @ 860,049 CZK\nFees are 0.17498956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (17.200979998281519601126765796 CZK)\nThe limits being 0.10 % (2.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17006773 BTC (168,686.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 860,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.29 % (-22,419.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,885.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00317901 BTC (2,734.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005793 BTC for 49.82 CZK @ 860,049 CZK\nFees are 0.17498956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (17.200979998281519601126765796 CZK)\nThe limits being 0.10 % (2.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17006773 BTC (168,686.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 860,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.29 % (-22,419.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,885.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00317901 BTC (2,734.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3110 transactions" + } + ] + }, + { + "id": 800, + "type": "message", + "date": "2022-05-07T18:06:04", + "date_unixtime": "1651939564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005803 BTC for 49.82 CZK @ 858,603 CZK\nFees are 0.17499692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.94 % (137.37647999363935685723782030 CZK)\nThe limits being 0.10 % (2.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17012576 BTC (168,736.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 858,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.43 % (-22,665.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,835.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00323704 BTC (2,779.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005803 BTC for 49.82 CZK @ 858,603 CZK\nFees are 0.17499692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.94 % (137.37647999363935685723782030 CZK)\nThe limits being 0.10 % (2.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17012576 BTC (168,736.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 858,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.43 % (-22,665.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,835.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00323704 BTC (2,779.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3111 transactions" + } + ] + }, + { + "id": 801, + "type": "message", + "date": "2022-05-07T22:06:04", + "date_unixtime": "1651953964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005828 BTC for 49.82 CZK @ 854,800 CZK\nFees are 0.17497237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.86 % (136.76799998905683231544775168 CZK)\nThe limits being 0.10 % (2.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17018404 BTC (168,786.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 854,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.81 % (-23,313.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,785.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00329532 BTC (2,816.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005828 BTC for 49.82 CZK @ 854,800 CZK\nFees are 0.17497237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.86 % (136.76799998905683231544775168 CZK)\nThe limits being 0.10 % (2.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17018404 BTC (168,786.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 854,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.81 % (-23,313.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,785.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00329532 BTC (2,816.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3112 transactions" + } + ] + }, + { + "id": 802, + "type": "message", + "date": "2022-05-08T02:06:04", + "date_unixtime": "1651968364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005895 BTC for 49.82 CZK @ 845,168 CZK\nFees are 0.17498962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.47 % (126.77519998072902601708270418 CZK)\nThe limits being 0.10 % (2.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17024299 BTC (168,836.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 845,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.78 % (-24,952.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,735.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00335427 BTC (2,834.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.24 CZK over 3113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005895 BTC for 49.82 CZK @ 845,168 CZK\nFees are 0.17498962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.47 % (126.77519998072902601708270418 CZK)\nThe limits being 0.10 % (2.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17024299 BTC (168,836.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 845,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.78 % (-24,952.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,735.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00335427 BTC (2,834.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.24 CZK over 3113 transactions" + } + ] + }, + { + "id": 803, + "type": "message", + "date": "2022-05-08T06:06:04", + "date_unixtime": "1651982764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006028 BTC for 49.82 CZK @ 826,481 CZK\nFees are 0.17498126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.51 % (99.17771999726240176634599075 CZK)\nThe limits being 0.10 % (2.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17030327 BTC (168,886.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 826,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.66 % (-28,134.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,685.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00341455 BTC (2,822.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006028 BTC for 49.82 CZK @ 826,481 CZK\nFees are 0.17498126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.51 % (99.17771999726240176634599075 CZK)\nThe limits being 0.10 % (2.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17030327 BTC (168,886.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 826,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.66 % (-28,134.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,685.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00341455 BTC (2,822.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3114 transactions" + } + ] + }, + { + "id": 804, + "type": "message", + "date": "2022-05-08T10:06:10", + "date_unixtime": "1651997170", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005987 BTC for 49.82 CZK @ 832,116 CZK\nFees are 0.17497603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.61 % (133.13855998077215797822703218 CZK)\nThe limits being 0.10 % (2.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17036314 BTC (168,936.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 832,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.09 % (-27,174.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,635.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00347442 BTC (2,891.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005987 BTC for 49.82 CZK @ 832,116 CZK\nFees are 0.17497603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.61 % (133.13855998077215797822703218 CZK)\nThe limits being 0.10 % (2.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17036314 BTC (168,936.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 832,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.09 % (-27,174.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,635.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00347442 BTC (2,891.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3115 transactions" + } + ] + }, + { + "id": 805, + "type": "message", + "date": "2022-05-08T14:06:03", + "date_unixtime": "1652011563", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005995 BTC for 49.82 CZK @ 830,991 CZK\nFees are 0.17497296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.53 % (132.95855998251324700495721189 CZK)\nThe limits being 0.10 % (2.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17042309 BTC (168,986.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 830,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.19 % (-27,366.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,585.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00353437 BTC (2,937.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005995 BTC for 49.82 CZK @ 830,991 CZK\nFees are 0.17497296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.53 % (132.95855998251324700495721189 CZK)\nThe limits being 0.10 % (2.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17042309 BTC (168,986.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 830,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.19 % (-27,366.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,585.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00353437 BTC (2,937.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3116 transactions" + } + ] + }, + { + "id": 806, + "type": "message", + "date": "2022-05-08T18:06:04", + "date_unixtime": "1652025964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006037 BTC for 49.82 CZK @ 825,289 CZK\nFees are 0.17498977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (16.505779996944601464858088622 CZK)\nThe limits being 0.10 % (2.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17048346 BTC (169,036.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 825,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.76 % (-28,338.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,535.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00359474 BTC (2,966.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006037 BTC for 49.82 CZK @ 825,289 CZK\nFees are 0.17498977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (16.505779996944601464858088622 CZK)\nThe limits being 0.10 % (2.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17048346 BTC (169,036.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 825,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.76 % (-28,338.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,535.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00359474 BTC (2,966.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3117 transactions" + } + ] + }, + { + "id": 807, + "type": "message", + "date": "2022-05-08T22:06:04", + "date_unixtime": "1652040364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006032 BTC for 49.82 CZK @ 825,975 CZK\nFees are 0.17499017 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.01 % (90.85724999636550587532495682 CZK)\nThe limits being 0.10 % (3.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17054378 BTC (169,086.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 825,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.69 % (-28,221.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,485.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00365506 BTC (3,018.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006032 BTC for 49.82 CZK @ 825,975 CZK\nFees are 0.17499017 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.01 % (90.85724999636550587532495682 CZK)\nThe limits being 0.10 % (3.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17054378 BTC (169,086.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 825,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.69 % (-28,221.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,485.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00365506 BTC (3,018.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3118 transactions" + } + ] + }, + { + "id": 808, + "type": "message", + "date": "2022-05-09T02:06:04", + "date_unixtime": "1652054764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006118 BTC for 49.82 CZK @ 814,332 CZK\nFees are 0.17498322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.69 % (81.43319999811056855109763751 CZK)\nThe limits being 0.10 % (3.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17060496 BTC (169,136.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 814,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.86 % (-30,207.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,435.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00371624 BTC (3,026.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006118 BTC for 49.82 CZK @ 814,332 CZK\nFees are 0.17498322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.69 % (81.43319999811056855109763751 CZK)\nThe limits being 0.10 % (3.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17060496 BTC (169,136.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 814,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.86 % (-30,207.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,435.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00371624 BTC (3,026.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3119 transactions" + } + ] + }, + { + "id": 809, + "type": "message", + "date": "2022-05-09T06:06:04", + "date_unixtime": "1652069164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006202 BTC for 49.82 CZK @ 803,347 CZK\nFees are 0.17499287 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (32.133879997885504571471632580 CZK)\nThe limits being 0.10 % (3.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17066698 BTC (169,186.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.96 % (-32,081.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,385.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00377826 BTC (3,035.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006202 BTC for 49.82 CZK @ 803,347 CZK\nFees are 0.17499287 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (32.133879997885504571471632580 CZK)\nThe limits being 0.10 % (3.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17066698 BTC (169,186.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.96 % (-32,081.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,385.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00377826 BTC (3,035.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3120 transactions" + } + ] + }, + { + "id": 810, + "type": "message", + "date": "2022-05-09T10:06:04", + "date_unixtime": "1652083564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006177 BTC for 49.82 CZK @ 806,587 CZK\nFees are 0.17499041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.34 % (72.592829990613232510884076692 CZK)\nThe limits being 0.10 % (3.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17072875 BTC (169,236.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 806,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.63 % (-31,528.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,335.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00384003 BTC (3,097.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.23 CZK over 3121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006177 BTC for 49.82 CZK @ 806,587 CZK\nFees are 0.17499041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.34 % (72.592829990613232510884076692 CZK)\nThe limits being 0.10 % (3.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17072875 BTC (169,236.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 806,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.63 % (-31,528.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,335.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00384003 BTC (3,097.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.23 CZK over 3121 transactions" + } + ] + }, + { + "id": 811, + "type": "message", + "date": "2022-05-09T14:06:03", + "date_unixtime": "1652097963", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006258 BTC for 49.82 CZK @ 796,150 CZK\nFees are 0.17499107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.84 % (119.42249998925142633572524926 CZK)\nThe limits being 0.10 % (3.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17079133 BTC (169,286.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 796,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.68 % (-33,310.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,285.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00390261 BTC (3,107.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006258 BTC for 49.82 CZK @ 796,150 CZK\nFees are 0.17499107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.84 % (119.42249998925142633572524926 CZK)\nThe limits being 0.10 % (3.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17079133 BTC (169,286.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 796,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.68 % (-33,310.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,285.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00390261 BTC (3,107.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3122 transactions" + } + ] + }, + { + "id": 812, + "type": "message", + "date": "2022-05-09T18:06:03", + "date_unixtime": "1652112363", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006469 BTC for 49.82 CZK @ 770,124 CZK\nFees are 0.17497791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.29 % (130.92107998570161337467572724 CZK)\nThe limits being 0.10 % (3.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17085602 BTC (169,336.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 770,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.30 % (-37,756.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,235.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00396730 BTC (3,055.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006469 BTC for 49.82 CZK @ 770,124 CZK\nFees are 0.17497791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.29 % (130.92107998570161337467572724 CZK)\nThe limits being 0.10 % (3.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17085602 BTC (169,336.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 770,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.30 % (-37,756.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,235.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00396730 BTC (3,055.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3123 transactions" + } + ] + }, + { + "id": 813, + "type": "message", + "date": "2022-05-09T22:06:04", + "date_unixtime": "1652126764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006643 BTC for 49.82 CZK @ 749,964 CZK\nFees are 0.17498068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.21 % (157.49243996906506888692526631 CZK)\nThe limits being 0.10 % (3.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17092245 BTC (169,386.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 991,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 749,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -24.32 % (-41,200.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,185.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00403373 BTC (3,025.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006643 BTC for 49.82 CZK @ 749,964 CZK\nFees are 0.17498068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.21 % (157.49243996906506888692526631 CZK)\nThe limits being 0.10 % (3.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17092245 BTC (169,386.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 991,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 749,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -24.32 % (-41,200.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,185.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00403373 BTC (3,025.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3124 transactions" + } + ] + }, + { + "id": 814, + "type": "message", + "date": "2022-05-10T02:06:03", + "date_unixtime": "1652141163", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006806 BTC for 49.82 CZK @ 732,035 CZK\nFees are 0.17498838 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.88 % (146.40699997847674192339740676 CZK)\nThe limits being 0.10 % (3.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17099051 BTC (169,436.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 732,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.13 % (-44,265.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,135.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00410179 BTC (3,002.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006806 BTC for 49.82 CZK @ 732,035 CZK\nFees are 0.17498838 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.88 % (146.40699997847674192339740676 CZK)\nThe limits being 0.10 % (3.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17099051 BTC (169,436.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 732,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.13 % (-44,265.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,135.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00410179 BTC (3,002.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3125 transactions" + } + ] + }, + { + "id": 815, + "type": "message", + "date": "2022-05-10T06:06:04", + "date_unixtime": "1652155564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006783 BTC for 49.82 CZK @ 734,502 CZK\nFees are 0.17498476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.56 % (139.55537997959522623199753245 CZK)\nThe limits being 0.10 % (3.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17105834 BTC (169,486.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 734,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -25.87 % (-43,843.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,085.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00416962 BTC (3,062.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006783 BTC for 49.82 CZK @ 734,502 CZK\nFees are 0.17498476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.56 % (139.55537997959522623199753245 CZK)\nThe limits being 0.10 % (3.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17105834 BTC (169,486.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 734,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -25.87 % (-43,843.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,085.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00416962 BTC (3,062.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3126 transactions" + } + ] + }, + { + "id": 816, + "type": "message", + "date": "2022-05-10T10:06:04", + "date_unixtime": "1652169964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006610 BTC for 49.83 CZK @ 753,787 CZK\nFees are 0.17499898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.72 % (150.75739999261284445439449069 CZK)\nThe limits being 0.10 % (3.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17112444 BTC (169,536.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 753,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.92 % (-40,545.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,035.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00423572 BTC (3,192.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006610 BTC for 49.83 CZK @ 753,787 CZK\nFees are 0.17499898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.72 % (150.75739999261284445439449069 CZK)\nThe limits being 0.10 % (3.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17112444 BTC (169,536.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 753,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.92 % (-40,545.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,035.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00423572 BTC (3,192.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3127 transactions" + } + ] + }, + { + "id": 817, + "type": "message", + "date": "2022-05-10T14:06:04", + "date_unixtime": "1652184364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006594 BTC for 49.82 CZK @ 755,527 CZK\nFees are 0.17497836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.65 % (151.10539998086769101593014078 CZK)\nThe limits being 0.10 % (3.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17119038 BTC (169,586.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 755,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.73 % (-40,247.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,985.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00430166 BTC (3,250.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.22 CZK over 3128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006594 BTC for 49.82 CZK @ 755,527 CZK\nFees are 0.17497836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.65 % (151.10539998086769101593014078 CZK)\nThe limits being 0.10 % (3.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17119038 BTC (169,586.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 755,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.73 % (-40,247.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,985.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00430166 BTC (3,250.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.22 CZK over 3128 transactions" + } + ] + }, + { + "id": 818, + "type": "message", + "date": "2022-05-10T18:06:04", + "date_unixtime": "1652198764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006558 BTC for 49.82 CZK @ 759,691 CZK\nFees are 0.17498218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.58 % (151.93819998410564548933870216 CZK)\nThe limits being 0.10 % (3.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17125596 BTC (169,636.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 759,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.31 % (-39,534.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,935.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00436724 BTC (3,317.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006558 BTC for 49.82 CZK @ 759,691 CZK\nFees are 0.17498218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.58 % (151.93819998410564548933870216 CZK)\nThe limits being 0.10 % (3.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17125596 BTC (169,636.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 759,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.31 % (-39,534.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,935.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00436724 BTC (3,317.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3129 transactions" + } + ] + }, + { + "id": 819, + "type": "message", + "date": "2022-05-10T22:06:04", + "date_unixtime": "1652213164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006590 BTC for 49.82 CZK @ 755,973 CZK\nFees are 0.17497545 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (136.07513999333138264934640745 CZK)\nThe limits being 0.10 % (3.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17132186 BTC (169,686.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 755,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.67 % (-40,171.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,885.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00443314 BTC (3,351.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006590 BTC for 49.82 CZK @ 755,973 CZK\nFees are 0.17497545 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.06 % (136.07513999333138264934640745 CZK)\nThe limits being 0.10 % (3.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17132186 BTC (169,686.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 755,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.67 % (-40,171.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,885.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00443314 BTC (3,351.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3130 transactions" + } + ] + }, + { + "id": 820, + "type": "message", + "date": "2022-05-12T16:53:11", + "date_unixtime": "1652367191", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007153 BTC for 49.82 CZK @ 696,503 CZK\nFees are 0.17498331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.77 % (181.09077996897619132700026351 CZK)\nThe limits being 0.10 % (3.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17139339 BTC (169,736.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 696,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.67 % (-50,360.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,835.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00450467 BTC (3,137.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007153 BTC for 49.82 CZK @ 696,503 CZK\nFees are 0.17498331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.77 % (181.09077996897619132700026351 CZK)\nThe limits being 0.10 % (3.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17139339 BTC (169,736.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 696,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.67 % (-50,360.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,835.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00450467 BTC (3,137.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3131 transactions" + } + ] + }, + { + "id": 821, + "type": "message", + "date": "2022-05-12T18:06:04", + "date_unixtime": "1652371564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007095 BTC for 49.82 CZK @ 702,219 CZK\nFees are 0.17498886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.68 % (182.57693998840562611550201497 CZK)\nThe limits being 0.10 % (3.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17146434 BTC (169,786.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 702,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.08 % (-49,380.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,785.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00457562 BTC (3,213.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007095 BTC for 49.82 CZK @ 702,219 CZK\nFees are 0.17498886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.68 % (182.57693998840562611550201497 CZK)\nThe limits being 0.10 % (3.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17146434 BTC (169,786.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 702,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.08 % (-49,380.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,785.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00457562 BTC (3,213.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3132 transactions" + } + ] + }, + { + "id": 822, + "type": "message", + "date": "2022-05-12T22:06:04", + "date_unixtime": "1652385964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007191 BTC for 49.82 CZK @ 692,870 CZK\nFees are 0.17499533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.81 % (187.07489997773749324173901981 CZK)\nThe limits being 0.10 % (3.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17153625 BTC (169,836.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 990,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 692,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.02 % (-50,984.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,735.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00464753 BTC (3,220.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007191 BTC for 49.82 CZK @ 692,870 CZK\nFees are 0.17499533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.81 % (187.07489997773749324173901981 CZK)\nThe limits being 0.10 % (3.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17153625 BTC (169,836.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 990,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 692,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.02 % (-50,984.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,735.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00464753 BTC (3,220.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3133 transactions" + } + ] + }, + { + "id": 823, + "type": "message", + "date": "2022-05-13T02:06:04", + "date_unixtime": "1652400364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007143 BTC for 49.82 CZK @ 697,468 CZK\nFees are 0.17498078 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.93 % (195.29103997132812699999114118 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17160768 BTC (169,886.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 697,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.55 % (-50,195.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,685.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00471896 BTC (3,291.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007143 BTC for 49.82 CZK @ 697,468 CZK\nFees are 0.17498078 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.93 % (195.29103997132812699999114118 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17160768 BTC (169,886.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 697,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.55 % (-50,195.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,685.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00471896 BTC (3,291.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3134 transactions" + } + ] + }, + { + "id": 824, + "type": "message", + "date": "2022-05-13T06:06:04", + "date_unixtime": "1652414764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006782 BTC for 49.82 CZK @ 734,654 CZK\nFees are 0.17499517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.64 % (198.35657996040693315066391781 CZK)\nThe limits being 0.10 % (3.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17167550 BTC (169,936.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 734,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -25.78 % (-43,814.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,635.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00478678 BTC (3,516.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.21 CZK over 3135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006782 BTC for 49.82 CZK @ 734,654 CZK\nFees are 0.17499517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.64 % (198.35657996040693315066391781 CZK)\nThe limits being 0.10 % (3.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17167550 BTC (169,936.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 734,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -25.78 % (-43,814.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,635.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00478678 BTC (3,516.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.21 CZK over 3135 transactions" + } + ] + }, + { + "id": 825, + "type": "message", + "date": "2022-05-13T10:06:03", + "date_unixtime": "1652429163", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006837 BTC for 49.82 CZK @ 728,706 CZK\nFees are 0.17498602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.53 % (160.31531999272110287680408318 CZK)\nThe limits being 0.10 % (3.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17174387 BTC (169,986.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 728,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.38 % (-44,835.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,585.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00485515 BTC (3,537.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006837 BTC for 49.82 CZK @ 728,706 CZK\nFees are 0.17498602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.53 % (160.31531999272110287680408318 CZK)\nThe limits being 0.10 % (3.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17174387 BTC (169,986.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 728,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.38 % (-44,835.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,585.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00485515 BTC (3,537.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3136 transactions" + } + ] + }, + { + "id": 826, + "type": "message", + "date": "2022-05-13T14:06:03", + "date_unixtime": "1652443563", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006795 BTC for 49.82 CZK @ 733,188 CZK\nFees are 0.17498073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.86 % (139.30571998300283078394126811 CZK)\nThe limits being 0.10 % (3.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17181182 BTC (170,036.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 733,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -25.92 % (-44,066.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,535.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00492310 BTC (3,609.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006795 BTC for 49.82 CZK @ 733,188 CZK\nFees are 0.17498073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.86 % (139.30571998300283078394126811 CZK)\nThe limits being 0.10 % (3.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17181182 BTC (170,036.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 733,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -25.92 % (-44,066.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,535.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00492310 BTC (3,609.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3137 transactions" + } + ] + }, + { + "id": 827, + "type": "message", + "date": "2022-05-13T18:06:03", + "date_unixtime": "1652457963", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006872 BTC for 49.82 CZK @ 725,005 CZK\nFees are 0.17498853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.41 % (159.50109999170539897320959877 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17188054 BTC (170,086.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 725,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.73 % (-45,472.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,485.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00499182 BTC (3,619.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006872 BTC for 49.82 CZK @ 725,005 CZK\nFees are 0.17498853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.41 % (159.50109999170539897320959877 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17188054 BTC (170,086.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 725,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.73 % (-45,472.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,485.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00499182 BTC (3,619.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3138 transactions" + } + ] + }, + { + "id": 828, + "type": "message", + "date": "2022-05-13T22:06:04", + "date_unixtime": "1652472364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006970 BTC for 49.82 CZK @ 714,848 CZK\nFees are 0.17499752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.14 % (185.86047996431428307952296089 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17195024 BTC (170,136.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 714,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.75 % (-47,218.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,435.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00506152 BTC (3,618.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006970 BTC for 49.82 CZK @ 714,848 CZK\nFees are 0.17499752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.14 % (185.86047996431428307952296089 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17195024 BTC (170,136.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 714,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.75 % (-47,218.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,435.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00506152 BTC (3,618.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3139 transactions" + } + ] + }, + { + "id": 829, + "type": "message", + "date": "2022-05-14T02:06:04", + "date_unixtime": "1652486764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007106 BTC for 49.82 CZK @ 701,089 CZK\nFees are 0.17497813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.85 % (210.32669997816536016427726711 CZK)\nThe limits being 0.10 % (3.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17202130 BTC (170,186.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 701,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.14 % (-49,584.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,385.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00513258 BTC (3,598.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007106 BTC for 49.82 CZK @ 701,089 CZK\nFees are 0.17497813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.85 % (210.32669997816536016427726711 CZK)\nThe limits being 0.10 % (3.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17202130 BTC (170,186.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 701,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.14 % (-49,584.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,385.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00513258 BTC (3,598.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3140 transactions" + } + ] + }, + { + "id": 830, + "type": "message", + "date": "2022-05-14T06:06:04", + "date_unixtime": "1652501164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007084 BTC for 49.83 CZK @ 703,348 CZK\nFees are 0.17499846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.00 % (182.87047998858878172584548096 CZK)\nThe limits being 0.10 % (3.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17209214 BTC (170,236.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 703,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.90 % (-49,195.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,335.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00520342 BTC (3,659.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007084 BTC for 49.83 CZK @ 703,348 CZK\nFees are 0.17499846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.00 % (182.87047998858878172584548096 CZK)\nThe limits being 0.10 % (3.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17209214 BTC (170,236.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 703,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.90 % (-49,195.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,335.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00520342 BTC (3,659.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3141 transactions" + } + ] + }, + { + "id": 831, + "type": "message", + "date": "2022-05-14T10:06:04", + "date_unixtime": "1652515564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007118 BTC for 49.82 CZK @ 699,969 CZK\nFees are 0.17499362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.98 % (146.99348997950836024462288705 CZK)\nThe limits being 0.10 % (3.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17216332 BTC (170,286.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 989,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 699,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.23 % (-49,777.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,285.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00527460 BTC (3,692.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007118 BTC for 49.82 CZK @ 699,969 CZK\nFees are 0.17499362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.98 % (146.99348997950836024462288705 CZK)\nThe limits being 0.10 % (3.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17216332 BTC (170,286.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 989,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 699,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.23 % (-49,777.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,285.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00527460 BTC (3,692.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3142 transactions" + } + ] + }, + { + "id": 832, + "type": "message", + "date": "2022-05-14T14:06:03", + "date_unixtime": "1652529963", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007207 BTC for 49.82 CZK @ 691,291 CZK\nFees are 0.17498501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.37 % (124.43237997935489972690974955 CZK)\nThe limits being 0.10 % (3.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17223539 BTC (170,336.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 691,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.10 % (-51,271.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,235.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00534667 BTC (3,696.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.20 CZK over 3143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007207 BTC for 49.82 CZK @ 691,291 CZK\nFees are 0.17498501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.37 % (124.43237997935489972690974955 CZK)\nThe limits being 0.10 % (3.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17223539 BTC (170,336.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 691,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.10 % (-51,271.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,235.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00534667 BTC (3,696.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.20 CZK over 3143 transactions" + } + ] + }, + { + "id": 833, + "type": "message", + "date": "2022-05-14T18:06:06", + "date_unixtime": "1652544366", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007237 BTC for 49.83 CZK @ 688,477 CZK\nFees are 0.17499814 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.88 % (144.58016999504084743056618403 CZK)\nThe limits being 0.10 % (3.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17230776 BTC (170,386.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 688,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.38 % (-51,756.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,185.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00541904 BTC (3,730.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007237 BTC for 49.83 CZK @ 688,477 CZK\nFees are 0.17499814 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.88 % (144.58016999504084743056618403 CZK)\nThe limits being 0.10 % (3.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17230776 BTC (170,386.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 688,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.38 % (-51,756.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,185.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00541904 BTC (3,730.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3144 transactions" + } + ] + }, + { + "id": 834, + "type": "message", + "date": "2022-05-14T22:06:04", + "date_unixtime": "1652558764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007083 BTC for 49.82 CZK @ 703,412 CZK\nFees are 0.17498968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.55 % (175.85299999345788258671945944 CZK)\nThe limits being 0.10 % (3.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17237859 BTC (170,436.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 703,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.86 % (-49,183.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,135.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00548987 BTC (3,861.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007083 BTC for 49.82 CZK @ 703,412 CZK\nFees are 0.17498968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.55 % (175.85299999345788258671945944 CZK)\nThe limits being 0.10 % (3.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17237859 BTC (170,436.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 703,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.86 % (-49,183.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,135.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00548987 BTC (3,861.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3145 transactions" + } + ] + }, + { + "id": 835, + "type": "message", + "date": "2022-05-15T02:06:03", + "date_unixtime": "1652573163", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006930 BTC for 49.82 CZK @ 718,956 CZK\nFees are 0.17499312 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.14 % (165.35987997420284415800110867 CZK)\nThe limits being 0.10 % (4.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17244789 BTC (170,486.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 718,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.28 % (-46,503.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,085.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00555917 BTC (3,996.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006930 BTC for 49.82 CZK @ 718,956 CZK\nFees are 0.17499312 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.14 % (165.35987997420284415800110867 CZK)\nThe limits being 0.10 % (4.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17244789 BTC (170,486.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 718,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.28 % (-46,503.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,085.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00555917 BTC (3,996.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3146 transactions" + } + ] + }, + { + "id": 836, + "type": "message", + "date": "2022-05-15T06:06:04", + "date_unixtime": "1652587564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007027 BTC for 49.82 CZK @ 708,963 CZK\nFees are 0.17497619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.09 % (163.06148998357747315163967526 CZK)\nThe limits being 0.10 % (3.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17251816 BTC (170,536.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 708,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.28 % (-48,227.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,035.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00562944 BTC (3,991.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007027 BTC for 49.82 CZK @ 708,963 CZK\nFees are 0.17497619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.09 % (163.06148998357747315163967526 CZK)\nThe limits being 0.10 % (3.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17251816 BTC (170,536.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 708,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.28 % (-48,227.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,035.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00562944 BTC (3,991.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3147 transactions" + } + ] + }, + { + "id": 837, + "type": "message", + "date": "2022-05-15T10:06:05", + "date_unixtime": "1652601965", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006991 BTC for 49.82 CZK @ 712,676 CZK\nFees are 0.17499146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.16 % (128.28167998188574291225169067 CZK)\nThe limits being 0.10 % (4.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17258807 BTC (170,586.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 712,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.90 % (-47,586.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,985.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00569935 BTC (4,061.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006991 BTC for 49.82 CZK @ 712,676 CZK\nFees are 0.17499146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.16 % (128.28167998188574291225169067 CZK)\nThe limits being 0.10 % (4.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17258807 BTC (170,586.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 712,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.90 % (-47,586.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,985.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00569935 BTC (4,061.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3148 transactions" + } + ] + }, + { + "id": 838, + "type": "message", + "date": "2022-05-15T14:06:04", + "date_unixtime": "1652616364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006878 BTC for 49.83 CZK @ 724,413 CZK\nFees are 0.17499833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.60 % (108.66197040367437435101019650 CZK)\nThe limits being 0.10 % (4.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17265685 BTC (170,636.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 724,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.70 % (-45,561.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,935.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00576813 BTC (4,178.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006878 BTC for 49.83 CZK @ 724,413 CZK\nFees are 0.17499833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.60 % (108.66197040367437435101019650 CZK)\nThe limits being 0.10 % (4.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17265685 BTC (170,636.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 724,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.70 % (-45,561.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,935.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00576813 BTC (4,178.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3149 transactions" + } + ] + }, + { + "id": 839, + "type": "message", + "date": "2022-05-15T18:06:04", + "date_unixtime": "1652630764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006958 BTC for 49.82 CZK @ 716,046 CZK\nFees are 0.17498901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.25 % (136.04873999352367318008699933 CZK)\nThe limits being 0.10 % (4.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17272643 BTC (170,686.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 716,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.54 % (-47,006.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,885.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00583771 BTC (4,180.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.19 CZK over 3150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006958 BTC for 49.82 CZK @ 716,046 CZK\nFees are 0.17498901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.25 % (136.04873999352367318008699933 CZK)\nThe limits being 0.10 % (4.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17272643 BTC (170,686.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 716,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.54 % (-47,006.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,885.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00583771 BTC (4,180.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.19 CZK over 3150 transactions" + } + ] + }, + { + "id": 840, + "type": "message", + "date": "2022-05-15T22:06:04", + "date_unixtime": "1652645164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006890 BTC for 49.82 CZK @ 723,060 CZK\nFees are 0.17497620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.03 % (86.76719998437977962472420548 CZK)\nThe limits being 0.10 % (4.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17279533 BTC (170,736.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 988,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 723,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.82 % (-45,794.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,835.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00590661 BTC (4,270.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006890 BTC for 49.82 CZK @ 723,060 CZK\nFees are 0.17497620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.03 % (86.76719998437977962472420548 CZK)\nThe limits being 0.10 % (4.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17279533 BTC (170,736.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 988,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 723,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.82 % (-45,794.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,835.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00590661 BTC (4,270.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3151 transactions" + } + ] + }, + { + "id": 841, + "type": "message", + "date": "2022-05-16T02:06:04", + "date_unixtime": "1652659564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006690 BTC for 49.82 CZK @ 744,717 CZK\nFees are 0.17498580 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.01 % (134.04905998511934685998109755 CZK)\nThe limits being 0.10 % (4.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17286223 BTC (170,786.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 744,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -24.62 % (-42,052.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,785.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597351 BTC (4,448.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006690 BTC for 49.82 CZK @ 744,717 CZK\nFees are 0.17498580 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.01 % (134.04905998511934685998109755 CZK)\nThe limits being 0.10 % (4.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17286223 BTC (170,786.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 744,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -24.62 % (-42,052.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,785.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597351 BTC (4,448.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3152 transactions" + } + ] + }, + { + "id": 842, + "type": "message", + "date": "2022-05-16T06:06:04", + "date_unixtime": "1652673964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006892 BTC for 49.82 CZK @ 722,877 CZK\nFees are 0.17498269 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.32 % (101.20277997987889745149087885 CZK)\nThe limits being 0.10 % (4.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17293115 BTC (170,836.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 722,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.83 % (-45,828.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,735.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00604243 BTC (4,367.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006892 BTC for 49.82 CZK @ 722,877 CZK\nFees are 0.17498269 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.32 % (101.20277997987889745149087885 CZK)\nThe limits being 0.10 % (4.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17293115 BTC (170,836.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 722,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.83 % (-45,828.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,735.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00604243 BTC (4,367.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3153 transactions" + } + ] + }, + { + "id": 843, + "type": "message", + "date": "2022-05-16T10:06:04", + "date_unixtime": "1652688364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007026 BTC for 49.82 CZK @ 709,064 CZK\nFees are 0.17497621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (28.362559995325214581302475211 CZK)\nThe limits being 0.10 % (4.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17300141 BTC (170,886.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 709,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.22 % (-48,217.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,685.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00611269 BTC (4,334.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007026 BTC for 49.82 CZK @ 709,064 CZK\nFees are 0.17497621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (28.362559995325214581302475211 CZK)\nThe limits being 0.10 % (4.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17300141 BTC (170,886.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 709,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.22 % (-48,217.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,685.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00611269 BTC (4,334.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3154 transactions" + } + ] + }, + { + "id": 844, + "type": "message", + "date": "2022-05-16T14:06:04", + "date_unixtime": "1652702764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007027 BTC for 49.82 CZK @ 708,979 CZK\nFees are 0.17498013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.23 % (141.79579999956038311618740981 CZK)\nThe limits being 0.10 % (4.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17307168 BTC (170,936.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 708,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.22 % (-48,232.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,635.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00618296 BTC (4,383.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007027 BTC for 49.82 CZK @ 708,979 CZK\nFees are 0.17498013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.23 % (141.79579999956038311618740981 CZK)\nThe limits being 0.10 % (4.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17307168 BTC (170,936.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 708,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.22 % (-48,232.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,635.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00618296 BTC (4,383.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3155 transactions" + } + ] + }, + { + "id": 845, + "type": "message", + "date": "2022-05-16T18:06:04", + "date_unixtime": "1652717164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007051 BTC for 49.82 CZK @ 706,569 CZK\nFees are 0.17498093 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.36 % (148.37948999802633768620210769 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17314219 BTC (170,986.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 706,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.45 % (-48,649.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,585.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00625347 BTC (4,418.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007051 BTC for 49.82 CZK @ 706,569 CZK\nFees are 0.17498093 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.36 % (148.37948999802633768620210769 CZK)\nThe limits being 0.10 % (4.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17314219 BTC (170,986.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 706,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.45 % (-48,649.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,585.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00625347 BTC (4,418.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3156 transactions" + } + ] + }, + { + "id": 846, + "type": "message", + "date": "2022-05-16T22:06:04", + "date_unixtime": "1652731564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007074 BTC for 49.83 CZK @ 704,342 CZK\nFees are 0.17499839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.32 % (147.91181998290123668094662743 CZK)\nThe limits being 0.10 % (4.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17321293 BTC (171,036.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 704,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.67 % (-49,035.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,535.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00632421 BTC (4,454.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007074 BTC for 49.83 CZK @ 704,342 CZK\nFees are 0.17499839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.32 % (147.91181998290123668094662743 CZK)\nThe limits being 0.10 % (4.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17321293 BTC (171,036.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 704,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.67 % (-49,035.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,535.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00632421 BTC (4,454.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3157 transactions" + } + ] + }, + { + "id": 847, + "type": "message", + "date": "2022-05-17T02:06:04", + "date_unixtime": "1652745964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007020 BTC for 49.82 CZK @ 709,707 CZK\nFees are 0.17498532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.60 % (163.23260996767723225122328261 CZK)\nThe limits being 0.10 % (4.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17328313 BTC (171,086.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 709,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.12 % (-48,106.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,485.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00639441 BTC (4,538.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.18 CZK over 3158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007020 BTC for 49.82 CZK @ 709,707 CZK\nFees are 0.17498532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.60 % (163.23260996767723225122328261 CZK)\nThe limits being 0.10 % (4.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17328313 BTC (171,086.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 709,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.12 % (-48,106.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,485.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00639441 BTC (4,538.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.18 CZK over 3158 transactions" + } + ] + }, + { + "id": 848, + "type": "message", + "date": "2022-05-17T06:06:04", + "date_unixtime": "1652760364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006936 BTC for 49.82 CZK @ 718,271 CZK\nFees are 0.17497775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.25 % (150.83690997598371099077105563 CZK)\nThe limits being 0.10 % (4.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17335249 BTC (171,136.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 718,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.24 % (-46,622.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,435.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00646377 BTC (4,642.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006936 BTC for 49.82 CZK @ 718,271 CZK\nFees are 0.17497775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.25 % (150.83690997598371099077105563 CZK)\nThe limits being 0.10 % (4.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17335249 BTC (171,136.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 718,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.24 % (-46,622.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,435.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00646377 BTC (4,642.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3159 transactions" + } + ] + }, + { + "id": 849, + "type": "message", + "date": "2022-05-17T10:06:25", + "date_unixtime": "1652774785", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006903 BTC for 49.82 CZK @ 721,706 CZK\nFees are 0.17497807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.38 % (64.953539989437230449619292060 CZK)\nThe limits being 0.10 % (4.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17342152 BTC (171,186.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 721,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -26.89 % (-46,026.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,385.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00653280 BTC (4,714.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006903 BTC for 49.82 CZK @ 721,706 CZK\nFees are 0.17497807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.38 % (64.953539989437230449619292060 CZK)\nThe limits being 0.10 % (4.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17342152 BTC (171,186.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 721,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -26.89 % (-46,026.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,385.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00653280 BTC (4,714.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3160 transactions" + } + ] + }, + { + "id": 850, + "type": "message", + "date": "2022-05-17T14:06:04", + "date_unixtime": "1652789164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006981 BTC for 49.82 CZK @ 713,630 CZK\nFees are 0.17497506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.57 % (121.31709998531853881704822407 CZK)\nThe limits being 0.10 % (4.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17349133 BTC (171,236.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 987,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 713,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.70 % (-47,427.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,335.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00660261 BTC (4,711.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006981 BTC for 49.82 CZK @ 713,630 CZK\nFees are 0.17497506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.57 % (121.31709998531853881704822407 CZK)\nThe limits being 0.10 % (4.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17349133 BTC (171,236.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 987,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 713,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.70 % (-47,427.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,335.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00660261 BTC (4,711.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3161 transactions" + } + ] + }, + { + "id": 851, + "type": "message", + "date": "2022-05-17T18:06:05", + "date_unixtime": "1652803565", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007032 BTC for 49.82 CZK @ 708,471 CZK\nFees are 0.17497917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.45 % (162.94832999178642668748118786 CZK)\nThe limits being 0.10 % (4.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17356165 BTC (171,286.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 708,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.21 % (-48,322.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,285.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00667293 BTC (4,727.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007032 BTC for 49.82 CZK @ 708,471 CZK\nFees are 0.17497917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.45 % (162.94832999178642668748118786 CZK)\nThe limits being 0.10 % (4.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17356165 BTC (171,286.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 708,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.21 % (-48,322.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,285.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00667293 BTC (4,727.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3162 transactions" + } + ] + }, + { + "id": 852, + "type": "message", + "date": "2022-05-17T22:06:04", + "date_unixtime": "1652817964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007049 BTC for 49.82 CZK @ 706,754 CZK\nFees are 0.17497710 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.41 % (162.55341998988785385354691690 CZK)\nThe limits being 0.10 % (4.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17363214 BTC (171,336.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 706,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.38 % (-48,621.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,235.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00674342 BTC (4,765.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007049 BTC for 49.82 CZK @ 706,754 CZK\nFees are 0.17497710 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.41 % (162.55341998988785385354691690 CZK)\nThe limits being 0.10 % (4.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17363214 BTC (171,336.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 706,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.38 % (-48,621.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,235.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00674342 BTC (4,765.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3163 transactions" + } + ] + }, + { + "id": 853, + "type": "message", + "date": "2022-05-18T02:06:04", + "date_unixtime": "1652832364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006965 BTC for 49.82 CZK @ 715,350 CZK\nFees are 0.17499479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.94 % (143.06999998211571774453447392 CZK)\nThe limits being 0.10 % (4.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17370179 BTC (171,386.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 715,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.50 % (-47,128.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,185.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00681307 BTC (4,873.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006965 BTC for 49.82 CZK @ 715,350 CZK\nFees are 0.17499479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.94 % (143.06999998211571774453447392 CZK)\nThe limits being 0.10 % (4.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17370179 BTC (171,386.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 715,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.50 % (-47,128.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,185.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00681307 BTC (4,873.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3164 transactions" + } + ] + }, + { + "id": 854, + "type": "message", + "date": "2022-05-18T06:06:04", + "date_unixtime": "1652846764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007102 BTC for 49.82 CZK @ 701,512 CZK\nFees are 0.17498515 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.76 % (133.28727997909878085108204079 CZK)\nThe limits being 0.10 % (4.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17377281 BTC (171,436.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 701,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.89 % (-49,532.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,135.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00688409 BTC (4,829.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.17 CZK over 3165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007102 BTC for 49.82 CZK @ 701,512 CZK\nFees are 0.17498515 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.76 % (133.28727997909878085108204079 CZK)\nThe limits being 0.10 % (4.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17377281 BTC (171,436.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 701,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.89 % (-49,532.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,135.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00688409 BTC (4,829.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.17 CZK over 3165 transactions" + } + ] + }, + { + "id": 855, + "type": "message", + "date": "2022-05-18T10:06:05", + "date_unixtime": "1652861165", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007070 BTC for 49.82 CZK @ 704,672 CZK\nFees are 0.17498139 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.16 % (155.02783998015432549020436957 CZK)\nThe limits being 0.10 % (4.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17384351 BTC (171,486.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 704,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.56 % (-48,983.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,085.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00695479 BTC (4,900.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007070 BTC for 49.82 CZK @ 704,672 CZK\nFees are 0.17498139 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.16 % (155.02783998015432549020436957 CZK)\nThe limits being 0.10 % (4.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17384351 BTC (171,486.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 704,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.56 % (-48,983.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,085.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00695479 BTC (4,900.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3166 transactions" + } + ] + }, + { + "id": 856, + "type": "message", + "date": "2022-05-18T14:06:04", + "date_unixtime": "1652875564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007099 BTC for 49.82 CZK @ 701,827 CZK\nFees are 0.17498977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.13 % (154.40193998284494198464270672 CZK)\nThe limits being 0.10 % (4.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17391450 BTC (171,536.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 701,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.84 % (-49,478.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,035.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00702578 BTC (4,930.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007099 BTC for 49.82 CZK @ 701,827 CZK\nFees are 0.17498977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.13 % (154.40193998284494198464270672 CZK)\nThe limits being 0.10 % (4.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17391450 BTC (171,536.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 701,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.84 % (-49,478.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,035.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00702578 BTC (4,930.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3167 transactions" + } + ] + }, + { + "id": 857, + "type": "message", + "date": "2022-05-18T18:06:04", + "date_unixtime": "1652889964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007322 BTC for 49.82 CZK @ 680,444 CZK\nFees are 0.17498770 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.24 % (156.50211998785458216646000130 CZK)\nThe limits being 0.10 % (4.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17398772 BTC (171,586.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 680,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -31.00 % (-53,197.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,985.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00709900 BTC (4,830.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007322 BTC for 49.82 CZK @ 680,444 CZK\nFees are 0.17498770 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.24 % (156.50211998785458216646000130 CZK)\nThe limits being 0.10 % (4.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17398772 BTC (171,586.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 680,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -31.00 % (-53,197.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,985.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00709900 BTC (4,830.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3168 transactions" + } + ] + }, + { + "id": 858, + "type": "message", + "date": "2022-05-18T22:06:03", + "date_unixtime": "1652904363", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007229 BTC for 49.82 CZK @ 689,199 CZK\nFees are 0.17498801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.21 % (158.51576998419489457392968847 CZK)\nThe limits being 0.10 % (4.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17406001 BTC (171,636.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 986,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 689,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.11 % (-51,674.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,935.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00717129 BTC (4,942.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007229 BTC for 49.82 CZK @ 689,199 CZK\nFees are 0.17498801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.21 % (158.51576998419489457392968847 CZK)\nThe limits being 0.10 % (4.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17406001 BTC (171,636.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 986,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 689,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.11 % (-51,674.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,935.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00717129 BTC (4,942.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3169 transactions" + } + ] + }, + { + "id": 859, + "type": "message", + "date": "2022-05-19T02:06:04", + "date_unixtime": "1652918764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007350 BTC for 49.82 CZK @ 677,822 CZK\nFees are 0.17498000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.17 % (155.89905997037579356605621820 CZK)\nThe limits being 0.10 % (4.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17413351 BTC (171,686.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 677,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -31.25 % (-53,654.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,885.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00724479 BTC (4,910.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007350 BTC for 49.82 CZK @ 677,822 CZK\nFees are 0.17498000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.17 % (155.89905997037579356605621820 CZK)\nThe limits being 0.10 % (4.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17413351 BTC (171,686.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 677,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -31.25 % (-53,654.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,885.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00724479 BTC (4,910.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3170 transactions" + } + ] + }, + { + "id": 860, + "type": "message", + "date": "2022-05-19T06:06:04", + "date_unixtime": "1652933164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007243 BTC for 49.82 CZK @ 687,876 CZK\nFees are 0.17499034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.14 % (158.21147998297550455223643934 CZK)\nThe limits being 0.10 % (5.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17420594 BTC (171,736.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 687,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.22 % (-51,904.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,835.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00731722 BTC (5,033.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007243 BTC for 49.82 CZK @ 687,876 CZK\nFees are 0.17499034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.14 % (158.21147998297550455223643934 CZK)\nThe limits being 0.10 % (5.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17420594 BTC (171,736.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 687,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.22 % (-51,904.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,835.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00731722 BTC (5,033.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3171 transactions" + } + ] + }, + { + "id": 861, + "type": "message", + "date": "2022-05-19T10:06:04", + "date_unixtime": "1652947564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007256 BTC for 49.82 CZK @ 686,649 CZK\nFees are 0.17499171 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.22 % (61.798409999950558931281858588 CZK)\nThe limits being 0.10 % (5.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17427850 BTC (171,786.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 686,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.34 % (-52,118.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,785.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00738978 BTC (5,074.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007256 BTC for 49.82 CZK @ 686,649 CZK\nFees are 0.17499171 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.22 % (61.798409999950558931281858588 CZK)\nThe limits being 0.10 % (5.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17427850 BTC (171,786.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 686,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.34 % (-52,118.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,785.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00738978 BTC (5,074.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3172 transactions" + } + ] + }, + { + "id": 862, + "type": "message", + "date": "2022-05-19T14:06:04", + "date_unixtime": "1652961964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007204 BTC for 49.82 CZK @ 691,584 CZK\nFees are 0.17498631 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.08 % (159.06431996894821484050686562 CZK)\nThe limits being 0.10 % (5.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17435054 BTC (171,836.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 691,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.83 % (-51,258.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,735.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00746182 BTC (5,160.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.16 CZK over 3173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007204 BTC for 49.82 CZK @ 691,584 CZK\nFees are 0.17498631 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.08 % (159.06431996894821484050686562 CZK)\nThe limits being 0.10 % (5.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17435054 BTC (171,836.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 691,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.83 % (-51,258.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,735.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00746182 BTC (5,160.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.16 CZK over 3173 transactions" + } + ] + }, + { + "id": 863, + "type": "message", + "date": "2022-05-19T18:06:04", + "date_unixtime": "1652976364", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007007 BTC for 49.82 CZK @ 711,010 CZK\nFees are 0.17498195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.05 % (163.53229997563117358120561195 CZK)\nThe limits being 0.10 % (5.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17442061 BTC (171,886.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 711,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.85 % (-47,871.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,685.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00753189 BTC (5,355.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007007 BTC for 49.82 CZK @ 711,010 CZK\nFees are 0.17498195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.05 % (163.53229997563117358120561195 CZK)\nThe limits being 0.10 % (5.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17442061 BTC (171,886.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 711,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.85 % (-47,871.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,685.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00753189 BTC (5,355.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3174 transactions" + } + ] + }, + { + "id": 864, + "type": "message", + "date": "2022-05-19T22:06:04", + "date_unixtime": "1652990764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007096 BTC for 49.82 CZK @ 702,099 CZK\nFees are 0.17498361 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.29 % (175.52474997317730670949309884 CZK)\nThe limits being 0.10 % (5.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17449157 BTC (171,936.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 702,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.75 % (-49,425.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,635.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00760285 BTC (5,337.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007096 BTC for 49.82 CZK @ 702,099 CZK\nFees are 0.17498361 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.29 % (175.52474997317730670949309884 CZK)\nThe limits being 0.10 % (5.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17449157 BTC (171,936.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 702,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.75 % (-49,425.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,635.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00760285 BTC (5,337.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3175 transactions" + } + ] + }, + { + "id": 865, + "type": "message", + "date": "2022-05-20T02:06:04", + "date_unixtime": "1653005164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007030 BTC for 49.82 CZK @ 708,664 CZK\nFees are 0.17497706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.00 % (162.99271997652597133361825361 CZK)\nThe limits being 0.10 % (5.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17456187 BTC (171,986.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 708,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.07 % (-48,280.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,585.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00767315 BTC (5,437.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007030 BTC for 49.82 CZK @ 708,664 CZK\nFees are 0.17497706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.00 % (162.99271997652597133361825361 CZK)\nThe limits being 0.10 % (5.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17456187 BTC (171,986.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 708,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.07 % (-48,280.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,585.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00767315 BTC (5,437.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3176 transactions" + } + ] + }, + { + "id": 866, + "type": "message", + "date": "2022-05-20T06:06:04", + "date_unixtime": "1653019564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007032 BTC for 49.82 CZK @ 708,479 CZK\nFees are 0.17498115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.84 % (155.86537999538588773195975633 CZK)\nThe limits being 0.10 % (5.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17463219 BTC (172,036.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 708,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.08 % (-48,312.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,535.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00774347 BTC (5,486.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007032 BTC for 49.82 CZK @ 708,479 CZK\nFees are 0.17498115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.84 % (155.86537999538588773195975633 CZK)\nThe limits being 0.10 % (5.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17463219 BTC (172,036.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 708,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.08 % (-48,312.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,535.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00774347 BTC (5,486.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3177 transactions" + } + ] + }, + { + "id": 867, + "type": "message", + "date": "2022-05-20T10:06:04", + "date_unixtime": "1653033964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007041 BTC for 49.82 CZK @ 707,559 CZK\nFees are 0.17497759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.82 % (155.66297999325892963606216476 CZK)\nThe limits being 0.10 % (5.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17470260 BTC (172,086.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 985,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 707,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.17 % (-48,473.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,485.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00781388 BTC (5,528.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007041 BTC for 49.82 CZK @ 707,559 CZK\nFees are 0.17497759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.82 % (155.66297999325892963606216476 CZK)\nThe limits being 0.10 % (5.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17470260 BTC (172,086.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 985,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 707,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.17 % (-48,473.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,485.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00781388 BTC (5,528.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3178 transactions" + } + ] + }, + { + "id": 868, + "type": "message", + "date": "2022-05-20T14:06:03", + "date_unixtime": "1653048363", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007005 BTC for 49.82 CZK @ 711,219 CZK\nFees are 0.17498342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.16 % (120.90722997986703923846835860 CZK)\nThe limits being 0.10 % (5.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17477265 BTC (172,136.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 711,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -27.79 % (-47,834.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,435.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00788393 BTC (5,607.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007005 BTC for 49.82 CZK @ 711,219 CZK\nFees are 0.17498342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.16 % (120.90722997986703923846835860 CZK)\nThe limits being 0.10 % (5.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17477265 BTC (172,136.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 711,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -27.79 % (-47,834.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,435.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00788393 BTC (5,607.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3179 transactions" + } + ] + }, + { + "id": 869, + "type": "message", + "date": "2022-05-20T18:06:04", + "date_unixtime": "1653062764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007314 BTC for 49.82 CZK @ 681,211 CZK\nFees are 0.17499355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.76 % (149.86641998833996244208981989 CZK)\nThe limits being 0.10 % (5.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17484579 BTC (172,186.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 681,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.83 % (-53,079.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,385.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00795707 BTC (5,420.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007314 BTC for 49.82 CZK @ 681,211 CZK\nFees are 0.17499355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.76 % (149.86641998833996244208981989 CZK)\nThe limits being 0.10 % (5.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17484579 BTC (172,186.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 681,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.83 % (-53,079.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,385.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00795707 BTC (5,420.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3180 transactions" + } + ] + }, + { + "id": 870, + "type": "message", + "date": "2022-05-20T22:06:05", + "date_unixtime": "1653077165", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007238 BTC for 49.83 CZK @ 688,383 CZK\nFees are 0.17499842 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.49 % (192.74723997922166035895641849 CZK)\nThe limits being 0.10 % (5.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17491817 BTC (172,236.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 688,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.09 % (-51,825.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,335.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00802945 BTC (5,527.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.15 CZK over 3181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007238 BTC for 49.83 CZK @ 688,383 CZK\nFees are 0.17499842 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.49 % (192.74723997922166035895641849 CZK)\nThe limits being 0.10 % (5.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17491817 BTC (172,236.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 688,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.09 % (-51,825.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,335.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00802945 BTC (5,527.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.15 CZK over 3181 transactions" + } + ] + }, + { + "id": 871, + "type": "message", + "date": "2022-05-21T02:06:04", + "date_unixtime": "1653091564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007256 BTC for 49.82 CZK @ 686,652 CZK\nFees are 0.17499248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.72 % (151.06343999419891460373807440 CZK)\nThe limits being 0.10 % (5.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17499073 BTC (172,286.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 686,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.26 % (-52,128.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,285.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00810201 BTC (5,563.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007256 BTC for 49.82 CZK @ 686,652 CZK\nFees are 0.17499248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.72 % (151.06343999419891460373807440 CZK)\nThe limits being 0.10 % (5.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17499073 BTC (172,286.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 686,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.26 % (-52,128.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,285.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00810201 BTC (5,563.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3182 transactions" + } + ] + }, + { + "id": 872, + "type": "message", + "date": "2022-05-21T06:06:03", + "date_unixtime": "1653105963", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007285 BTC for 49.82 CZK @ 683,886 CZK\nFees are 0.17498414 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.69 % (150.45491999142329232723217538 CZK)\nThe limits being 0.10 % (5.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17506358 BTC (172,336.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 683,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.53 % (-52,612.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,235.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00817486 BTC (5,590.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007285 BTC for 49.82 CZK @ 683,886 CZK\nFees are 0.17498414 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.69 % (150.45491999142329232723217538 CZK)\nThe limits being 0.10 % (5.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17506358 BTC (172,336.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 683,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.53 % (-52,612.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,235.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00817486 BTC (5,590.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3183 transactions" + } + ] + }, + { + "id": 873, + "type": "message", + "date": "2022-05-21T10:06:03", + "date_unixtime": "1653120363", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007218 BTC for 49.82 CZK @ 690,228 CZK\nFees are 0.17498260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.67 % (151.85015997072037837090824950 CZK)\nThe limits being 0.10 % (5.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17513576 BTC (172,386.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 690,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.88 % (-51,502.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,185.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00824704 BTC (5,692.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007218 BTC for 49.82 CZK @ 690,228 CZK\nFees are 0.17498260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.67 % (151.85015997072037837090824950 CZK)\nThe limits being 0.10 % (5.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17513576 BTC (172,386.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 690,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.88 % (-51,502.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,185.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00824704 BTC (5,692.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3184 transactions" + } + ] + }, + { + "id": 874, + "type": "message", + "date": "2022-05-21T14:06:04", + "date_unixtime": "1653134764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007265 BTC for 49.82 CZK @ 685,817 CZK\nFees are 0.17499647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (54.865359991577997312228946794 CZK)\nThe limits being 0.10 % (5.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17520841 BTC (172,436.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 685,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.32 % (-52,275.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,135.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00831969 BTC (5,705.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007265 BTC for 49.82 CZK @ 685,817 CZK\nFees are 0.17499647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.96 % (54.865359991577997312228946794 CZK)\nThe limits being 0.10 % (5.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17520841 BTC (172,436.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 685,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.32 % (-52,275.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,135.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00831969 BTC (5,705.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3185 transactions" + } + ] + }, + { + "id": 875, + "type": "message", + "date": "2022-05-21T18:06:04", + "date_unixtime": "1653149164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007190 BTC for 49.82 CZK @ 692,957 CZK\nFees are 0.17499297 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (55.436559989965579442743166650 CZK)\nThe limits being 0.10 % (5.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17528031 BTC (172,486.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 984,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 692,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.58 % (-51,024.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,085.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00839159 BTC (5,815.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007190 BTC for 49.82 CZK @ 692,957 CZK\nFees are 0.17499297 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.95 % (55.436559989965579442743166650 CZK)\nThe limits being 0.10 % (5.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17528031 BTC (172,486.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 984,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 692,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.58 % (-51,024.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,085.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00839159 BTC (5,815.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3186 transactions" + } + ] + }, + { + "id": 876, + "type": "message", + "date": "2022-05-21T22:06:04", + "date_unixtime": "1653163564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007224 BTC for 49.83 CZK @ 689,718 CZK\nFees are 0.17499866 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (89.66333998364528138227168366 CZK)\nThe limits being 0.10 % (5.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17535255 BTC (172,536.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 689,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.90 % (-51,592.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,035.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00846383 BTC (5,837.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007224 BTC for 49.83 CZK @ 689,718 CZK\nFees are 0.17499866 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (89.66333998364528138227168366 CZK)\nThe limits being 0.10 % (5.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17535255 BTC (172,536.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 689,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.90 % (-51,592.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,035.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00846383 BTC (5,837.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3187 transactions" + } + ] + }, + { + "id": 877, + "type": "message", + "date": "2022-05-22T02:06:04", + "date_unixtime": "1653177964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007227 BTC for 49.82 CZK @ 689,351 CZK\nFees are 0.17497818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (27.574039995204276384529061803 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17542482 BTC (172,586.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,818 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 689,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.93 % (-51,656.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,985.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00853610 BTC (5,884.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.14 CZK over 3188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007227 BTC for 49.82 CZK @ 689,351 CZK\nFees are 0.17497818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.47 % (27.574039995204276384529061803 CZK)\nThe limits being 0.10 % (5.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17542482 BTC (172,586.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,818 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 689,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.93 % (-51,656.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,985.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00853610 BTC (5,884.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.14 CZK over 3188 transactions" + } + ] + }, + { + "id": 878, + "type": "message", + "date": "2022-05-22T06:06:03", + "date_unixtime": "1653192363", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007258 BTC for 49.82 CZK @ 686,470 CZK\nFees are 0.17499432 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (13.729399998874152645404902077 CZK)\nThe limits being 0.10 % (5.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17549740 BTC (172,636.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 686,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.22 % (-52,162.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,935.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00860868 BTC (5,909.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007258 BTC for 49.82 CZK @ 686,470 CZK\nFees are 0.17499432 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (13.729399998874152645404902077 CZK)\nThe limits being 0.10 % (5.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17549740 BTC (172,636.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 686,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.22 % (-52,162.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,935.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00860868 BTC (5,909.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3189 transactions" + } + ] + }, + { + "id": 879, + "type": "message", + "date": "2022-05-22T10:06:04", + "date_unixtime": "1653206764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007241 BTC for 49.83 CZK @ 688,097 CZK\nFees are 0.17499822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (27.523879998241206185752159942 CZK)\nThe limits being 0.10 % (5.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17556981 BTC (172,686.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 688,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -30.04 % (-51,877.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,885.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00868109 BTC (5,973.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007241 BTC for 49.83 CZK @ 688,097 CZK\nFees are 0.17499822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (27.523879998241206185752159942 CZK)\nThe limits being 0.10 % (5.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17556981 BTC (172,686.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 688,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -30.04 % (-51,877.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,885.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00868109 BTC (5,973.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3190 transactions" + } + ] + }, + { + "id": 880, + "type": "message", + "date": "2022-05-22T14:06:04", + "date_unixtime": "1653221164", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007118 BTC for 49.82 CZK @ 699,968 CZK\nFees are 0.17499337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (13.999359997804817166329759301 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17564099 BTC (172,736.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 699,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.83 % (-49,793.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,835.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00875227 BTC (6,126.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007118 BTC for 49.82 CZK @ 699,968 CZK\nFees are 0.17499337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (13.999359997804817166329759301 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17564099 BTC (172,736.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 699,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.83 % (-49,793.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,835.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00875227 BTC (6,126.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3191 transactions" + } + ] + }, + { + "id": 881, + "type": "message", + "date": "2022-05-22T18:06:04", + "date_unixtime": "1653235564", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007139 BTC for 49.82 CZK @ 697,913 CZK\nFees are 0.17499438 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.61 % (160.51998999439767230158794967 CZK)\nThe limits being 0.10 % (6.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17571238 BTC (172,786.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 697,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -29.03 % (-50,154.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,785.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882366 BTC (6,158.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007139 BTC for 49.82 CZK @ 697,913 CZK\nFees are 0.17499438 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.61 % (160.51998999439767230158794967 CZK)\nThe limits being 0.10 % (6.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17571238 BTC (172,786.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 697,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -29.03 % (-50,154.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,785.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882366 BTC (6,158.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3192 transactions" + } + ] + }, + { + "id": 882, + "type": "message", + "date": "2022-05-22T22:06:04", + "date_unixtime": "1653249964", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007130 BTC for 49.82 CZK @ 698,719 CZK\nFees are 0.17497561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.59 % (160.70536997926611697767491200 CZK)\nThe limits being 0.10 % (6.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17578368 BTC (172,836.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 698,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.94 % (-50,012.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,735.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00889496 BTC (6,215.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007130 BTC for 49.82 CZK @ 698,719 CZK\nFees are 0.17497561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.59 % (160.70536997926611697767491200 CZK)\nThe limits being 0.10 % (6.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17578368 BTC (172,836.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 698,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.94 % (-50,012.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,735.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00889496 BTC (6,215.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3193 transactions" + } + ] + }, + { + "id": 883, + "type": "message", + "date": "2022-05-23T02:06:05", + "date_unixtime": "1653264365", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007054 BTC for 49.83 CZK @ 706,341 CZK\nFees are 0.17499889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.57 % (162.45842996916519428950756277 CZK)\nThe limits being 0.10 % (6.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17585422 BTC (172,886.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 706,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.15 % (-48,673.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,685.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00896550 BTC (6,332.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007054 BTC for 49.83 CZK @ 706,341 CZK\nFees are 0.17499889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.57 % (162.45842996916519428950756277 CZK)\nThe limits being 0.10 % (6.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17585422 BTC (172,886.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 706,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.15 % (-48,673.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,685.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00896550 BTC (6,332.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3194 transactions" + } + ] + }, + { + "id": 884, + "type": "message", + "date": "2022-05-23T06:06:04", + "date_unixtime": "1653278764", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007085 BTC for 49.82 CZK @ 703,205 CZK\nFees are 0.17498758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.55 % (161.73714996805464571951592151 CZK)\nThe limits being 0.10 % (6.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17592507 BTC (172,936.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 983,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 703,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -28.46 % (-49,224.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,635.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00903635 BTC (6,354.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.13 CZK over 3195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007085 BTC for 49.82 CZK @ 703,205 CZK\nFees are 0.17498758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.55 % (161.73714996805464571951592151 CZK)\nThe limits being 0.10 % (6.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17592507 BTC (172,936.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 983,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 703,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -28.46 % (-49,224.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,635.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00903635 BTC (6,354.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.13 CZK over 3195 transactions" + } + ] + }, + { + "id": 885, + "type": "message", + "date": "2022-06-22T13:43:52", + "date_unixtime": "1655898232", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010168 BTC for 49.82 CZK @ 490,000 CZK\nFees are 0.17499153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.53 % (68.60000 CZK)\nThe limits being 0.10 % (4.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00010168 BTC (50.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.35 % (-0.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,585.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00913803 BTC (4,477.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 1 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010168 BTC for 49.82 CZK @ 490,000 CZK\nFees are 0.17499153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.53 % (68.60000 CZK)\nThe limits being 0.10 % (4.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00010168 BTC (50.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.35 % (-0.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,585.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00913803 BTC (4,477.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 1 transactions" + } + ] + }, + { + "id": 886, + "type": "message", + "date": "2022-06-22T14:00:03", + "date_unixtime": "1655899203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010168 BTC for 49.82 CZK @ 489,998 CZK\nFees are 0.17499082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.41 % (63.699739989501732135793801161 CZK)\nThe limits being 0.10 % (4.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00020336 BTC (99.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.35 % (-0.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,535.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00923971 BTC (4,527.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 2 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010168 BTC for 49.82 CZK @ 489,998 CZK\nFees are 0.17499082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.41 % (63.699739989501732135793801161 CZK)\nThe limits being 0.10 % (4.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00020336 BTC (99.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.35 % (-0.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,535.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00923971 BTC (4,527.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 2 transactions" + } + ] + }, + { + "id": 887, + "type": "message", + "date": "2022-06-22T18:00:03", + "date_unixtime": "1655913603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010472 BTC for 49.82 CZK @ 475,753 CZK\nFees are 0.17498329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.82 % (80.87800998453464821177825662 CZK)\nThe limits being 0.10 % (4.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00030808 BTC (149.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 475,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.28 % (-3.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,485.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00934443 BTC (4,445.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 3 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010472 BTC for 49.82 CZK @ 475,753 CZK\nFees are 0.17498329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.82 % (80.87800998453464821177825662 CZK)\nThe limits being 0.10 % (4.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00030808 BTC (149.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 475,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.28 % (-3.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,485.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00934443 BTC (4,445.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 3 transactions" + } + ] + }, + { + "id": 888, + "type": "message", + "date": "2022-06-22T22:00:07", + "date_unixtime": "1655928007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010434 BTC for 49.82 CZK @ 477,494 CZK\nFees are 0.17498635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.12 % (95.49879999262691753866260116 CZK)\nThe limits being 0.10 % (4.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00041242 BTC (199.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.53 % (-3.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,435.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00944877 BTC (4,511.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 4 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010434 BTC for 49.82 CZK @ 477,494 CZK\nFees are 0.17498635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.12 % (95.49879999262691753866260116 CZK)\nThe limits being 0.10 % (4.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00041242 BTC (199.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.53 % (-3.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,435.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00944877 BTC (4,511.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 4 transactions" + } + ] + }, + { + "id": 889, + "type": "message", + "date": "2022-06-23T02:00:04", + "date_unixtime": "1655942404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010498 BTC for 49.82 CZK @ 474,603 CZK\nFees are 0.17499372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.41 % (109.15868999936685688488081769 CZK)\nThe limits being 0.10 % (4.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00051740 BTC (249.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.77 % (-4.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,385.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00955375 BTC (4,534.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 5 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010498 BTC for 49.82 CZK @ 474,603 CZK\nFees are 0.17499372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.41 % (109.15868999936685688488081769 CZK)\nThe limits being 0.10 % (4.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00051740 BTC (249.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.77 % (-4.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,385.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00955375 BTC (4,534.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 5 transactions" + } + ] + }, + { + "id": 890, + "type": "message", + "date": "2022-06-23T06:00:04", + "date_unixtime": "1655956804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010392 BTC for 49.82 CZK @ 479,451 CZK\nFees are 0.17499627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.97 % (91.09568998593452554243366079 CZK)\nThe limits being 0.10 % (4.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00062132 BTC (299.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.70 % (-2.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,335.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00965767 BTC (4,630.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 6 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010392 BTC for 49.82 CZK @ 479,451 CZK\nFees are 0.17499627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.97 % (91.09568998593452554243366079 CZK)\nThe limits being 0.10 % (4.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00062132 BTC (299.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.70 % (-2.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,335.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00965767 BTC (4,630.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 6 transactions" + } + ] + }, + { + "id": 891, + "type": "message", + "date": "2022-06-23T10:00:07", + "date_unixtime": "1655971207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010213 BTC for 49.82 CZK @ 487,819 CZK\nFees are 0.17498365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (34.147329999559458277113037883 CZK)\nThe limits being 0.10 % (4.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00072345 BTC (349.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.84 % (2.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,285.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00975980 BTC (4,761.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 7 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010213 BTC for 49.82 CZK @ 487,819 CZK\nFees are 0.17498365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (34.147329999559458277113037883 CZK)\nThe limits being 0.10 % (4.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00072345 BTC (349.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.84 % (2.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,285.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00975980 BTC (4,761.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 7 transactions" + } + ] + }, + { + "id": 892, + "type": "message", + "date": "2022-06-23T14:00:05", + "date_unixtime": "1655985605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010156 BTC for 49.82 CZK @ 490,558 CZK\nFees are 0.17498405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (24.527899996722773954020322334 CZK)\nThe limits being 0.10 % (4.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00082501 BTC (399.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.19 % (4.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,235.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00986136 BTC (4,837.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 8 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010156 BTC for 49.82 CZK @ 490,558 CZK\nFees are 0.17498405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (24.527899996722773954020322334 CZK)\nThe limits being 0.10 % (4.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00082501 BTC (399.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.19 % (4.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,235.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00986136 BTC (4,837.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 8 transactions" + } + ] + }, + { + "id": 893, + "type": "message", + "date": "2022-06-23T18:00:04", + "date_unixtime": "1656000004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010362 BTC for 49.82 CZK @ 480,805 CZK\nFees are 0.17498386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (57.696599989209740430785245272 CZK)\nThe limits being 0.10 % (4.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00092863 BTC (449.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 480,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.77 % (-3.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,185.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00996498 BTC (4,791.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 9 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010362 BTC for 49.82 CZK @ 480,805 CZK\nFees are 0.17498386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (57.696599989209740430785245272 CZK)\nThe limits being 0.10 % (4.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00092863 BTC (449.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 480,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.77 % (-3.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,185.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00996498 BTC (4,791.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 9 transactions" + } + ] + }, + { + "id": 894, + "type": "message", + "date": "2022-06-23T22:00:03", + "date_unixtime": "1656014403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010088 BTC for 49.82 CZK @ 493,881 CZK\nFees are 0.17498983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (79.020959994499821599816976821 CZK)\nThe limits being 0.10 % (4.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00102951 BTC (499.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.70 % (8.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,135.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01006586 BTC (4,971.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 10 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010088 BTC for 49.82 CZK @ 493,881 CZK\nFees are 0.17498983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.59 % (79.020959994499821599816976821 CZK)\nThe limits being 0.10 % (4.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00102951 BTC (499.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.70 % (8.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,135.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01006586 BTC (4,971.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 10 transactions" + } + ] + }, + { + "id": 895, + "type": "message", + "date": "2022-06-24T02:00:04", + "date_unixtime": "1656028804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009985 BTC for 49.82 CZK @ 498,972 CZK\nFees are 0.17498856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.67 % (84.82523998354282794395878821 CZK)\nThe limits being 0.10 % (5.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00112936 BTC (549.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.46 % (13.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,085.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01016571 BTC (5,072.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 11 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009985 BTC for 49.82 CZK @ 498,972 CZK\nFees are 0.17498856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.67 % (84.82523998354282794395878821 CZK)\nThe limits being 0.10 % (5.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00112936 BTC (549.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.46 % (13.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,085.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01016571 BTC (5,072.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 11 transactions" + } + ] + }, + { + "id": 896, + "type": "message", + "date": "2022-06-24T06:00:04", + "date_unixtime": "1656043204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010020 BTC for 49.82 CZK @ 497,228 CZK\nFees are 0.17498818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (79.55647998472412424776754413 CZK)\nThe limits being 0.10 % (5.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00122956 BTC (599.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 497,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.90 % (11.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,035.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01026591 BTC (5,104.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 12 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010020 BTC for 49.82 CZK @ 497,228 CZK\nFees are 0.17498818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.56 % (79.55647998472412424776754413 CZK)\nThe limits being 0.10 % (5.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00122956 BTC (599.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 497,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.90 % (11.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,035.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01026591 BTC (5,104.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 12 transactions" + } + ] + }, + { + "id": 897, + "type": "message", + "date": "2022-06-24T10:00:04", + "date_unixtime": "1656057604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010086 BTC for 49.82 CZK @ 493,999 CZK\nFees are 0.17499694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (19.759959997237509288578612572 CZK)\nThe limits being 0.10 % (5.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00133042 BTC (649.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.12 % (7.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,985.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01036677 BTC (5,121.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 13 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010086 BTC for 49.82 CZK @ 493,999 CZK\nFees are 0.17499694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (19.759959997237509288578612572 CZK)\nThe limits being 0.10 % (5.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00133042 BTC (649.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.12 % (7.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,985.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01036677 BTC (5,121.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 13 transactions" + } + ] + }, + { + "id": 898, + "type": "message", + "date": "2022-06-24T14:00:04", + "date_unixtime": "1656072004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009957 BTC for 49.82 CZK @ 500,391 CZK\nFees are 0.17499410 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (25.019549999226869860279620905 CZK)\nThe limits being 0.10 % (5.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00142999 BTC (699.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 500,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.23 % (15.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,935.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01046634 BTC (5,237.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 14 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009957 BTC for 49.82 CZK @ 500,391 CZK\nFees are 0.17499410 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (25.019549999226869860279620905 CZK)\nThe limits being 0.10 % (5.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00142999 BTC (699.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 500,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.23 % (15.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,935.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01046634 BTC (5,237.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 14 transactions" + } + ] + }, + { + "id": 899, + "type": "message", + "date": "2022-06-24T18:00:04", + "date_unixtime": "1656086404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010147 BTC for 49.82 CZK @ 491,000 CZK\nFees are 0.17498651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (83.46999999165235659620224454 CZK)\nThe limits being 0.10 % (5.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00153146 BTC (749.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.27 % (1.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,885.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01056781 BTC (5,188.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 15 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010147 BTC for 49.82 CZK @ 491,000 CZK\nFees are 0.17498651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.61 % (83.46999999165235659620224454 CZK)\nThe limits being 0.10 % (5.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00153146 BTC (749.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.27 % (1.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,885.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01056781 BTC (5,188.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 15 transactions" + } + ] + }, + { + "id": 900, + "type": "message", + "date": "2022-06-24T22:00:05", + "date_unixtime": "1656100805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009970 BTC for 49.82 CZK @ 499,745 CZK\nFees are 0.17499637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.87 % (99.94899998450758353785821840 CZK)\nThe limits being 0.10 % (5.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00163116 BTC (799.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,419 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.90 % (15.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,835.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01066751 BTC (5,331.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 16 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009970 BTC for 49.82 CZK @ 499,745 CZK\nFees are 0.17499637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.87 % (99.94899998450758353785821840 CZK)\nThe limits being 0.10 % (5.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00163116 BTC (799.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,419 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.90 % (15.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,835.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01066751 BTC (5,331.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 16 transactions" + } + ] + }, + { + "id": 901, + "type": "message", + "date": "2022-06-25T02:00:04", + "date_unixtime": "1656115204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009974 BTC for 49.82 CZK @ 499,508 CZK\nFees are 0.17498355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.86 % (99.90159998457374325213667144 CZK)\nThe limits being 0.10 % (5.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00173090 BTC (849.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.72 % (14.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,785.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01076725 BTC (5,378.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 17 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009974 BTC for 49.82 CZK @ 499,508 CZK\nFees are 0.17498355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.86 % (99.90159998457374325213667144 CZK)\nThe limits being 0.10 % (5.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00173090 BTC (849.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.72 % (14.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,785.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01076725 BTC (5,378.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 17 transactions" + } + ] + }, + { + "id": 902, + "type": "message", + "date": "2022-06-25T06:00:03", + "date_unixtime": "1656129603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009944 BTC for 49.82 CZK @ 501,046 CZK\nFees are 0.17499439 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (65.135979987180828484054802559 CZK)\nThe limits being 0.10 % (5.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00183034 BTC (899.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.90 % (17.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,735.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01086669 BTC (5,444.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 18 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009944 BTC for 49.82 CZK @ 501,046 CZK\nFees are 0.17499439 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.20 % (65.135979987180828484054802559 CZK)\nThe limits being 0.10 % (5.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00183034 BTC (899.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.90 % (17.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,735.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01086669 BTC (5,444.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 18 transactions" + } + ] + }, + { + "id": 903, + "type": "message", + "date": "2022-06-25T10:00:03", + "date_unixtime": "1656144003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009842 BTC for 49.82 CZK @ 506,225 CZK\nFees are 0.17498965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (15.186749998253420486132310536 CZK)\nThe limits being 0.10 % (5.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00192876 BTC (949.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.78 % (26.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,685.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01096511 BTC (5,550.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 19 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009842 BTC for 49.82 CZK @ 506,225 CZK\nFees are 0.17498965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (15.186749998253420486132310536 CZK)\nThe limits being 0.10 % (5.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00192876 BTC (949.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.78 % (26.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,685.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01096511 BTC (5,550.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 19 transactions" + } + ] + }, + { + "id": 904, + "type": "message", + "date": "2022-06-25T14:00:03", + "date_unixtime": "1656158403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009915 BTC for 49.82 CZK @ 502,514 CZK\nFees are 0.17499527 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (20.100559999658281240067228141 CZK)\nThe limits being 0.10 % (5.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00202791 BTC (999.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.91 % (19.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,635.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01106426 BTC (5,559.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 20 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009915 BTC for 49.82 CZK @ 502,514 CZK\nFees are 0.17499527 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (20.100559999658281240067228141 CZK)\nThe limits being 0.10 % (5.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00202791 BTC (999.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.91 % (19.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,635.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01106426 BTC (5,559.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 20 transactions" + } + ] + }, + { + "id": 905, + "type": "message", + "date": "2022-06-25T18:00:04", + "date_unixtime": "1656172804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010082 BTC for 49.82 CZK @ 494,193 CZK\nFees are 0.17499623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (19.767719998454131033349157734 CZK)\nThe limits being 0.10 % (5.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00212873 BTC (1,049.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.20 % (2.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,585.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01116508 BTC (5,517.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 21 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010082 BTC for 49.82 CZK @ 494,193 CZK\nFees are 0.17499623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (19.767719998454131033349157734 CZK)\nThe limits being 0.10 % (5.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00212873 BTC (1,049.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.20 % (2.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,585.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01116508 BTC (5,517.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 21 transactions" + } + ] + }, + { + "id": 906, + "type": "message", + "date": "2022-06-25T22:00:03", + "date_unixtime": "1656187203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009968 BTC for 49.82 CZK @ 499,816 CZK\nFees are 0.17498612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (69.974239991490457555857868247 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00222841 BTC (1,099.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.26 % (13.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,535.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01126476 BTC (5,630.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 22 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009968 BTC for 49.82 CZK @ 499,816 CZK\nFees are 0.17498612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.24 % (69.974239991490457555857868247 CZK)\nThe limits being 0.10 % (5.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00222841 BTC (1,099.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.26 % (13.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,535.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01126476 BTC (5,630.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 22 transactions" + } + ] + }, + { + "id": 907, + "type": "message", + "date": "2022-06-26T02:00:04", + "date_unixtime": "1656201604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009845 BTC for 49.82 CZK @ 506,088 CZK\nFees are 0.17499562 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (65.791439996578759511845665614 CZK)\nThe limits being 0.10 % (5.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00232686 BTC (1,149.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.41 % (27.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,485.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01136321 BTC (5,750.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 23 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009845 BTC for 49.82 CZK @ 506,088 CZK\nFees are 0.17499562 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (65.791439996578759511845665614 CZK)\nThe limits being 0.10 % (5.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00232686 BTC (1,149.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.41 % (27.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,485.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01136321 BTC (5,750.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 23 transactions" + } + ] + }, + { + "id": 908, + "type": "message", + "date": "2022-06-26T06:00:04", + "date_unixtime": "1656216004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009870 BTC for 49.82 CZK @ 504,777 CZK\nFees are 0.17498553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (40.382159996244148519694746200 CZK)\nThe limits being 0.10 % (5.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00242556 BTC (1,199.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.04 % (24.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,435.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01146191 BTC (5,785.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 24 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009870 BTC for 49.82 CZK @ 504,777 CZK\nFees are 0.17498553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (40.382159996244148519694746200 CZK)\nThe limits being 0.10 % (5.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00242556 BTC (1,199.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.04 % (24.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,435.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01146191 BTC (5,785.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 24 transactions" + } + ] + }, + { + "id": 909, + "type": "message", + "date": "2022-06-26T10:00:03", + "date_unixtime": "1656230403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009880 BTC for 49.82 CZK @ 504,294 CZK\nFees are 0.17499521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (30.257639996853119345448823853 CZK)\nThe limits being 0.10 % (5.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00252436 BTC (1,249.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.85 % (23.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,385.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01156071 BTC (5,830.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 25 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009880 BTC for 49.82 CZK @ 504,294 CZK\nFees are 0.17499521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (30.257639996853119345448823853 CZK)\nThe limits being 0.10 % (5.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00252436 BTC (1,249.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.85 % (23.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,385.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01156071 BTC (5,830.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 25 transactions" + } + ] + }, + { + "id": 910, + "type": "message", + "date": "2022-06-26T14:00:04", + "date_unixtime": "1656244804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009750 BTC for 49.82 CZK @ 511,000 CZK\nFees are 0.17498908 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (35.77000 CZK)\nThe limits being 0.10 % (5.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00262186 BTC (1,299.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 511,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.07 % (39.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,335.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01165821 BTC (5,957.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 26 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009750 BTC for 49.82 CZK @ 511,000 CZK\nFees are 0.17498908 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (35.77000 CZK)\nThe limits being 0.10 % (5.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00262186 BTC (1,299.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 511,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.07 % (39.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,335.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01165821 BTC (5,957.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 26 transactions" + } + ] + }, + { + "id": 911, + "type": "message", + "date": "2022-06-26T18:00:05", + "date_unixtime": "1656259205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009906 BTC for 49.82 CZK @ 502,951 CZK\nFees are 0.17498846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (35.206569999147944841952821897 CZK)\nThe limits being 0.10 % (5.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00272092 BTC (1,349.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.38 % (18.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,285.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01175727 BTC (5,913.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 27 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009906 BTC for 49.82 CZK @ 502,951 CZK\nFees are 0.17498846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.60 % (35.206569999147944841952821897 CZK)\nThe limits being 0.10 % (5.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00272092 BTC (1,349.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.38 % (18.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,285.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01175727 BTC (5,913.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 27 transactions" + } + ] + }, + { + "id": 912, + "type": "message", + "date": "2022-06-26T22:00:04", + "date_unixtime": "1656273604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009931 BTC for 49.82 CZK @ 501,669 CZK\nFees are 0.17498292 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (40.133519992482258124155828179 CZK)\nThe limits being 0.10 % (5.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00282023 BTC (1,399.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.06 % (14.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,235.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01185658 BTC (5,948.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 28 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009931 BTC for 49.82 CZK @ 501,669 CZK\nFees are 0.17498292 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.67 % (40.133519992482258124155828179 CZK)\nThe limits being 0.10 % (5.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00282023 BTC (1,399.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.06 % (14.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,235.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01185658 BTC (5,948.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 28 transactions" + } + ] + }, + { + "id": 913, + "type": "message", + "date": "2022-06-27T02:00:04", + "date_unixtime": "1656288004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010067 BTC for 49.82 CZK @ 494,895 CZK\nFees are 0.17498409 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (29.693699994788281741034619619 CZK)\nThe limits being 0.10 % (5.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00292090 BTC (1,449.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.30 % (-4.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,185.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01195725 BTC (5,917.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 29 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010067 BTC for 49.82 CZK @ 494,895 CZK\nFees are 0.17498409 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (29.693699994788281741034619619 CZK)\nThe limits being 0.10 % (5.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00292090 BTC (1,449.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.30 % (-4.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,185.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01195725 BTC (5,917.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 29 transactions" + } + ] + }, + { + "id": 914, + "type": "message", + "date": "2022-06-27T06:00:04", + "date_unixtime": "1656302404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009993 BTC for 49.82 CZK @ 498,557 CZK\nFees are 0.17498311 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (39.884559997179889400407888910 CZK)\nThe limits being 0.10 % (6.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00302083 BTC (1,499.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.41 % (6.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,135.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01205718 BTC (6,011.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 30 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009993 BTC for 49.82 CZK @ 498,557 CZK\nFees are 0.17498311 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (39.884559997179889400407888910 CZK)\nThe limits being 0.10 % (6.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00302083 BTC (1,499.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.41 % (6.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,135.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01205718 BTC (6,011.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 30 transactions" + } + ] + }, + { + "id": 915, + "type": "message", + "date": "2022-06-27T10:00:04", + "date_unixtime": "1656316804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009939 BTC for 49.82 CZK @ 501,307 CZK\nFees are 0.17499751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (35.091489993293921019865424230 CZK)\nThe limits being 0.10 % (6.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00312022 BTC (1,549.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.92 % (14.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,085.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01215657 BTC (6,094.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 31 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009939 BTC for 49.82 CZK @ 501,307 CZK\nFees are 0.17499751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (35.091489993293921019865424230 CZK)\nThe limits being 0.10 % (6.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00312022 BTC (1,549.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.92 % (14.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,085.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01215657 BTC (6,094.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 31 transactions" + } + ] + }, + { + "id": 916, + "type": "message", + "date": "2022-06-27T14:00:04", + "date_unixtime": "1656331204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009955 BTC for 49.82 CZK @ 500,470 CZK\nFees are 0.17498658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (40.037599992192069094182415789 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00321977 BTC (1,599.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 500,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.72 % (11.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,035.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01225612 BTC (6,133.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 32 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009955 BTC for 49.82 CZK @ 500,470 CZK\nFees are 0.17498658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (40.037599992192069094182415789 CZK)\nThe limits being 0.10 % (6.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00321977 BTC (1,599.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 500,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.72 % (11.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,035.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01225612 BTC (6,133.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 32 transactions" + } + ] + }, + { + "id": 917, + "type": "message", + "date": "2022-06-27T18:00:04", + "date_unixtime": "1656345604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010251 BTC for 49.83 CZK @ 486,055 CZK\nFees are 0.17499961 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (38.884399997530835034165125990 CZK)\nThe limits being 0.10 % (6.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00332228 BTC (1,649.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.13 % (-35.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,985.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01235863 BTC (6,006.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 33 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010251 BTC for 49.83 CZK @ 486,055 CZK\nFees are 0.17499961 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.65 % (38.884399997530835034165125990 CZK)\nThe limits being 0.10 % (6.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00332228 BTC (1,649.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.13 % (-35.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,985.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01235863 BTC (6,006.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 33 transactions" + } + ] + }, + { + "id": 918, + "type": "message", + "date": "2022-06-27T22:00:04", + "date_unixtime": "1656360004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010176 BTC for 49.82 CZK @ 489,594 CZK\nFees are 0.17498411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.52 % (93.02285998317993939450915507 CZK)\nThe limits being 0.10 % (6.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00342404 BTC (1,699.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.38 % (-23.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,935.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01246039 BTC (6,100.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 34 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010176 BTC for 49.82 CZK @ 489,594 CZK\nFees are 0.17498411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.52 % (93.02285998317993939450915507 CZK)\nThe limits being 0.10 % (6.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00342404 BTC (1,699.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.38 % (-23.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,935.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01246039 BTC (6,100.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 34 transactions" + } + ] + }, + { + "id": 919, + "type": "message", + "date": "2022-06-28T02:00:04", + "date_unixtime": "1656374404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010243 BTC for 49.82 CZK @ 486,399 CZK\nFees are 0.17498679 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.67 % (102.14378999285961012858393066 CZK)\nThe limits being 0.10 % (6.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00352647 BTC (1,749.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.98 % (-34.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,885.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01256282 BTC (6,110.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 35 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010243 BTC for 49.82 CZK @ 486,399 CZK\nFees are 0.17498679 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.67 % (102.14378999285961012858393066 CZK)\nThe limits being 0.10 % (6.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00352647 BTC (1,749.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.98 % (-34.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,885.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01256282 BTC (6,110.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 35 transactions" + } + ] + }, + { + "id": 920, + "type": "message", + "date": "2022-06-28T06:00:05", + "date_unixtime": "1656388805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010245 BTC for 49.82 CZK @ 486,315 CZK\nFees are 0.17499073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (72.947249998358599951414558562 CZK)\nThe limits being 0.10 % (6.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00362892 BTC (1,799.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.95 % (-35.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,835.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01266527 BTC (6,159.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 36 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010245 BTC for 49.82 CZK @ 486,315 CZK\nFees are 0.17499073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.18 % (72.947249998358599951414558562 CZK)\nThe limits being 0.10 % (6.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00362892 BTC (1,799.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.95 % (-35.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,835.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01266527 BTC (6,159.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 36 transactions" + } + ] + }, + { + "id": 921, + "type": "message", + "date": "2022-06-28T10:00:05", + "date_unixtime": "1656403205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010180 BTC for 49.82 CZK @ 489,414 CZK\nFees are 0.17498853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (53.835539991170392819630311592 CZK)\nThe limits being 0.10 % (6.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00373072 BTC (1,849.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.30 % (-24.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,785.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01276707 BTC (6,248.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 50.00 CZK over 37 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010180 BTC for 49.82 CZK @ 489,414 CZK\nFees are 0.17498853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (53.835539991170392819630311592 CZK)\nThe limits being 0.10 % (6.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00373072 BTC (1,849.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.30 % (-24.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,785.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01276707 BTC (6,248.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 50.00 CZK over 37 transactions" + } + ] + }, + { + "id": 922, + "type": "message", + "date": "2022-06-28T14:00:05", + "date_unixtime": "1656417605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022219 BTC for 109.61 CZK @ 493,332 CZK\nFees are 0.38498979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (59.199839994736456517136688854 CZK)\nThe limits being 0.10 % (6.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00395291 BTC (1,959.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.50 % (-9.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,675.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01298926 BTC (6,408.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 51.58 CZK over 38 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022219 BTC for 109.61 CZK @ 493,332 CZK\nFees are 0.38498979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.92 % (59.199839994736456517136688854 CZK)\nThe limits being 0.10 % (6.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00395291 BTC (1,959.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.50 % (-9.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,675.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01298926 BTC (6,408.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 51.58 CZK over 38 transactions" + } + ] + }, + { + "id": 923, + "type": "message", + "date": "2022-06-28T18:00:04", + "date_unixtime": "1656432004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022577 BTC for 109.61 CZK @ 485,506 CZK\nFees are 0.38498717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (63.115779997894157885942850637 CZK)\nThe limits being 0.10 % (6.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00417868 BTC (2,069.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.99 % (-41.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,565.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01321503 BTC (6,415.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 53.07 CZK over 39 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022577 BTC for 109.61 CZK @ 485,506 CZK\nFees are 0.38498717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.98 % (63.115779997894157885942850637 CZK)\nThe limits being 0.10 % (6.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00417868 BTC (2,069.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.99 % (-41.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,565.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01321503 BTC (6,415.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 53.07 CZK over 39 transactions" + } + ] + }, + { + "id": 924, + "type": "message", + "date": "2022-06-28T22:00:05", + "date_unixtime": "1656446405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022937 BTC for 109.61 CZK @ 477,887 CZK\nFees are 0.38498805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (66.904179997466685843563745227 CZK)\nThe limits being 0.10 % (6.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00440805 BTC (2,179.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.36 % (-73.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,455.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01344440 BTC (6,424.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 54.50 CZK over 40 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022937 BTC for 109.61 CZK @ 477,887 CZK\nFees are 0.38498805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (66.904179997466685843563745227 CZK)\nThe limits being 0.10 % (6.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00440805 BTC (2,179.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.36 % (-73.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,455.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01344440 BTC (6,424.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 54.50 CZK over 40 transactions" + } + ] + }, + { + "id": 925, + "type": "message", + "date": "2022-06-29T02:00:04", + "date_unixtime": "1656460804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022906 BTC for 109.62 CZK @ 478,546 CZK\nFees are 0.38499791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.10 % (71.781899997611607431268130742 CZK)\nThe limits being 0.10 % (6.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00463711 BTC (2,289.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.09 % (-70.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,345.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01367346 BTC (6,543.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 55.85 CZK over 41 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022906 BTC for 109.62 CZK @ 478,546 CZK\nFees are 0.38499791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.10 % (71.781899997611607431268130742 CZK)\nThe limits being 0.10 % (6.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00463711 BTC (2,289.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.09 % (-70.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,345.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01367346 BTC (6,543.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 55.85 CZK over 41 transactions" + } + ] + }, + { + "id": 926, + "type": "message", + "date": "2022-06-29T06:00:04", + "date_unixtime": "1656475204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022924 BTC for 109.62 CZK @ 478,172 CZK\nFees are 0.38499932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (62.162359998598518863962173225 CZK)\nThe limits being 0.10 % (6.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00486635 BTC (2,399.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.04 % (-72.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,235.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01390270 BTC (6,647.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 57.14 CZK over 42 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022924 BTC for 109.62 CZK @ 478,172 CZK\nFees are 0.38499932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (62.162359998598518863962173225 CZK)\nThe limits being 0.10 % (6.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00486635 BTC (2,399.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.04 % (-72.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,235.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01390270 BTC (6,647.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 57.14 CZK over 42 transactions" + } + ] + }, + { + "id": 927, + "type": "message", + "date": "2022-06-29T10:00:03", + "date_unixtime": "1656489603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023117 BTC for 109.61 CZK @ 474,165 CZK\nFees are 0.38498729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (33.191549999796317853554864502 CZK)\nThe limits being 0.10 % (6.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00509752 BTC (2,509.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.70 % (-92.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,125.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01413387 BTC (6,701.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 58.37 CZK over 43 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023117 BTC for 109.61 CZK @ 474,165 CZK\nFees are 0.38498729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.50 % (33.191549999796317853554864502 CZK)\nThe limits being 0.10 % (6.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00509752 BTC (2,509.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.70 % (-92.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,125.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01413387 BTC (6,701.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 58.37 CZK over 43 transactions" + } + ] + }, + { + "id": 928, + "type": "message", + "date": "2022-06-29T14:00:03", + "date_unixtime": "1656504003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023166 BTC for 109.61 CZK @ 473,171 CZK\nFees are 0.38499456 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (23.658549998169662677219561458 CZK)\nThe limits being 0.10 % (6.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00532918 BTC (2,619.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.75 % (-98.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 28,015.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01436553 BTC (6,797.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 59.54 CZK over 44 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023166 BTC for 109.61 CZK @ 473,171 CZK\nFees are 0.38499456 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (23.658549998169662677219561458 CZK)\nThe limits being 0.10 % (6.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00532918 BTC (2,619.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.75 % (-98.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 28,015.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01436553 BTC (6,797.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 59.54 CZK over 44 transactions" + } + ] + }, + { + "id": 929, + "type": "message", + "date": "2022-06-29T18:00:04", + "date_unixtime": "1656518404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023114 BTC for 109.61 CZK @ 474,231 CZK\nFees are 0.38499091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (61.650029996250468691413573302 CZK)\nThe limits being 0.10 % (6.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00556032 BTC (2,729.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.41 % (-93.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,905.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01459667 BTC (6,922.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 60.66 CZK over 45 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023114 BTC for 109.61 CZK @ 474,231 CZK\nFees are 0.38499091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (61.650029996250468691413573302 CZK)\nThe limits being 0.10 % (6.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00556032 BTC (2,729.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.41 % (-93.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,905.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01459667 BTC (6,922.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 60.66 CZK over 45 transactions" + } + ] + }, + { + "id": 930, + "type": "message", + "date": "2022-06-29T22:00:04", + "date_unixtime": "1656532804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022900 BTC for 109.61 CZK @ 478,656 CZK\nFees are 0.38498517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (67.011776955328838149446370018 CZK)\nThe limits being 0.10 % (7.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00578932 BTC (2,839.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.42 % (-68.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,795.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01482567 BTC (7,096.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 61.74 CZK over 46 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022900 BTC for 109.61 CZK @ 478,656 CZK\nFees are 0.38498517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.94 % (67.011776955328838149446370018 CZK)\nThe limits being 0.10 % (7.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00578932 BTC (2,839.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.42 % (-68.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,795.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01482567 BTC (7,096.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 61.74 CZK over 46 transactions" + } + ] + }, + { + "id": 931, + "type": "message", + "date": "2022-06-30T02:00:04", + "date_unixtime": "1656547204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023017 BTC for 109.61 CZK @ 476,225 CZK\nFees are 0.38498723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (61.909249995004883524599211444 CZK)\nThe limits being 0.10 % (7.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00601949 BTC (2,949.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 476,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.82 % (-83.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,685.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01505584 BTC (7,169.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 62.76 CZK over 47 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023017 BTC for 109.61 CZK @ 476,225 CZK\nFees are 0.38498723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.86 % (61.909249995004883524599211444 CZK)\nThe limits being 0.10 % (7.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00601949 BTC (2,949.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 476,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.82 % (-83.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,685.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01505584 BTC (7,169.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 62.76 CZK over 47 transactions" + } + ] + }, + { + "id": 932, + "type": "message", + "date": "2022-06-30T06:00:03", + "date_unixtime": "1656561603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023087 BTC for 109.61 CZK @ 474,786 CZK\nFees are 0.38499122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (33.235019998981776628855789939 CZK)\nThe limits being 0.10 % (7.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00625036 BTC (3,059.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.02 % (-92.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,575.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01528671 BTC (7,257.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 63.75 CZK over 48 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023087 BTC for 109.61 CZK @ 474,786 CZK\nFees are 0.38499122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (33.235019998981776628855789939 CZK)\nThe limits being 0.10 % (7.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00625036 BTC (3,059.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.02 % (-92.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,575.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01528671 BTC (7,257.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 63.75 CZK over 48 transactions" + } + ] + }, + { + "id": 933, + "type": "message", + "date": "2022-06-30T10:00:04", + "date_unixtime": "1656576004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023805 BTC for 109.61 CZK @ 460,459 CZK\nFees are 0.38498568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (13.813769999080094276208443730 CZK)\nThe limits being 0.10 % (7.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00648841 BTC (3,169.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 460,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.75 % (-182.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,465.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01552476 BTC (7,148.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 64.69 CZK over 49 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023805 BTC for 109.61 CZK @ 460,459 CZK\nFees are 0.38498568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (13.813769999080094276208443730 CZK)\nThe limits being 0.10 % (7.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00648841 BTC (3,169.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 460,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.75 % (-182.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,465.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01552476 BTC (7,148.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 64.69 CZK over 49 transactions" + } + ] + }, + { + "id": 934, + "type": "message", + "date": "2022-06-30T14:00:04", + "date_unixtime": "1656590404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024013 BTC for 109.62 CZK @ 456,484 CZK\nFees are 0.38499705 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (22.824199999954351250239370632 CZK)\nThe limits being 0.10 % (7.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00672854 BTC (3,279.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 456,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.35 % (-208.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,355.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01576489 BTC (7,196.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 65.60 CZK over 50 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024013 BTC for 109.62 CZK @ 456,484 CZK\nFees are 0.38499705 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (22.824199999954351250239370632 CZK)\nThe limits being 0.10 % (7.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00672854 BTC (3,279.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 456,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.35 % (-208.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,355.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01576489 BTC (7,196.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 65.60 CZK over 50 transactions" + } + ] + }, + { + "id": 935, + "type": "message", + "date": "2022-06-30T18:00:04", + "date_unixtime": "1656604804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024119 BTC for 109.61 CZK @ 454,475 CZK\nFees are 0.38499467 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.62 % (118.16349999100333624387284333 CZK)\nThe limits being 0.10 % (7.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00696973 BTC (3,389.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 454,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.56 % (-222.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,245.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01600608 BTC (7,274.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 66.47 CZK over 51 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024119 BTC for 109.61 CZK @ 454,475 CZK\nFees are 0.38499467 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.62 % (118.16349999100333624387284333 CZK)\nThe limits being 0.10 % (7.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00696973 BTC (3,389.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 454,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.56 % (-222.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,245.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01600608 BTC (7,274.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 66.47 CZK over 51 transactions" + } + ] + }, + { + "id": 936, + "type": "message", + "date": "2022-06-30T22:00:04", + "date_unixtime": "1656619204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024430 BTC for 109.62 CZK @ 448,695 CZK\nFees are 0.38499946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (85.25204999244355765871435241 CZK)\nThe limits being 0.10 % (7.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00721403 BTC (3,499.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 448,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.51 % (-262.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,135.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01625038 BTC (7,291.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 67.30 CZK over 52 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024430 BTC for 109.62 CZK @ 448,695 CZK\nFees are 0.38499946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (85.25204999244355765871435241 CZK)\nThe limits being 0.10 % (7.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00721403 BTC (3,499.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 448,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.51 % (-262.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,135.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01625038 BTC (7,291.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 67.30 CZK over 52 transactions" + } + ] + }, + { + "id": 937, + "type": "message", + "date": "2022-07-01T02:00:03", + "date_unixtime": "1656633603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023166 BTC for 109.61 CZK @ 473,171 CZK\nFees are 0.38499456 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (80.43906999377685310254650896 CZK)\nThe limits being 0.10 % (7.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00744569 BTC (3,609.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.40 % (-86.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27,025.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01648204 BTC (7,798.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 68.11 CZK over 53 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023166 BTC for 109.61 CZK @ 473,171 CZK\nFees are 0.38499456 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (80.43906999377685310254650896 CZK)\nThe limits being 0.10 % (7.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00744569 BTC (3,609.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.40 % (-86.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27,025.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01648204 BTC (7,798.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 68.11 CZK over 53 transactions" + } + ] + }, + { + "id": 938, + "type": "message", + "date": "2022-07-01T06:00:04", + "date_unixtime": "1656648004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023382 BTC for 109.61 CZK @ 468,790 CZK\nFees are 0.38498643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.84 % (65.630599998627675430919503916 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00767951 BTC (3,719.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 468,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.22 % (-119.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,915.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01671586 BTC (7,836.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 68.89 CZK over 54 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023382 BTC for 109.61 CZK @ 468,790 CZK\nFees are 0.38498643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.84 % (65.630599998627675430919503916 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00767951 BTC (3,719.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 468,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.22 % (-119.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,915.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01671586 BTC (7,836.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 68.89 CZK over 54 transactions" + } + ] + }, + { + "id": 939, + "type": "message", + "date": "2022-07-01T10:00:04", + "date_unixtime": "1656662404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023552 BTC for 109.61 CZK @ 465,406 CZK\nFees are 0.38498623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (13.962179999502420874764411517 CZK)\nThe limits being 0.10 % (7.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00791503 BTC (3,829.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 465,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.82 % (-146.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,805.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01695138 BTC (7,889.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 69.63 CZK over 55 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023552 BTC for 109.61 CZK @ 465,406 CZK\nFees are 0.38498623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (13.962179999502420874764411517 CZK)\nThe limits being 0.10 % (7.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00791503 BTC (3,829.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 465,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.82 % (-146.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,805.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01695138 BTC (7,889.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 69.63 CZK over 55 transactions" + } + ] + }, + { + "id": 940, + "type": "message", + "date": "2022-07-01T14:00:04", + "date_unixtime": "1656676804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024024 BTC for 109.61 CZK @ 456,265 CZK\nFees are 0.38498862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (18.250599999568609434080286099 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00815527 BTC (3,939.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 456,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.56 % (-218.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,695.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01719162 BTC (7,843.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 70.35 CZK over 56 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024024 BTC for 109.61 CZK @ 456,265 CZK\nFees are 0.38498862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (18.250599999568609434080286099 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00815527 BTC (3,939.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 456,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.56 % (-218.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,695.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01719162 BTC (7,843.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 70.35 CZK over 56 transactions" + } + ] + }, + { + "id": 941, + "type": "message", + "date": "2022-07-01T18:00:04", + "date_unixtime": "1656691204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023777 BTC for 109.62 CZK @ 461,017 CZK\nFees are 0.38499884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (82.98305999825357851381040313 CZK)\nThe limits being 0.10 % (8.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00839304 BTC (4,049.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 461,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.46 % (-180.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,585.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01742939 BTC (8,035.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 71.05 CZK over 57 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023777 BTC for 109.62 CZK @ 461,017 CZK\nFees are 0.38499884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (82.98305999825357851381040313 CZK)\nThe limits being 0.10 % (8.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00839304 BTC (4,049.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 461,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.46 % (-180.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,585.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01742939 BTC (8,035.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 71.05 CZK over 57 transactions" + } + ] + }, + { + "id": 942, + "type": "message", + "date": "2022-07-01T22:00:04", + "date_unixtime": "1656705604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023723 BTC for 109.62 CZK @ 462,064 CZK\nFees are 0.38499684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (97.03343999160212787259933990 CZK)\nThe limits being 0.10 % (8.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00863027 BTC (4,159.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 462,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.14 % (-172.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,475.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01766662 BTC (8,163.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 71.72 CZK over 58 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023723 BTC for 109.62 CZK @ 462,064 CZK\nFees are 0.38499684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (97.03343999160212787259933990 CZK)\nThe limits being 0.10 % (8.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00863027 BTC (4,159.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 462,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.14 % (-172.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,475.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01766662 BTC (8,163.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 71.72 CZK over 58 transactions" + } + ] + }, + { + "id": 943, + "type": "message", + "date": "2022-07-02T02:00:03", + "date_unixtime": "1656720003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023837 BTC for 109.62 CZK @ 459,857 CZK\nFees are 0.38499919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (96.56996999489494952421318355 CZK)\nThe limits being 0.10 % (8.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00886864 BTC (4,269.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.49 % (-191.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,365.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01790499 BTC (8,233.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 72.37 CZK over 59 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023837 BTC for 109.62 CZK @ 459,857 CZK\nFees are 0.38499919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.17 % (96.56996999489494952421318355 CZK)\nThe limits being 0.10 % (8.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00886864 BTC (4,269.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.49 % (-191.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,365.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01790499 BTC (8,233.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 72.37 CZK over 59 transactions" + } + ] + }, + { + "id": 944, + "type": "message", + "date": "2022-07-02T06:00:05", + "date_unixtime": "1656734405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024024 BTC for 109.61 CZK @ 456,271 CZK\nFees are 0.38499369 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.10 % (91.25419999366187706994881883 CZK)\nThe limits being 0.10 % (8.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00910888 BTC (4,379.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 456,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.11 % (-223.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,255.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01814523 BTC (8,279.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 73.00 CZK over 60 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024024 BTC for 109.61 CZK @ 456,271 CZK\nFees are 0.38499369 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.10 % (91.25419999366187706994881883 CZK)\nThe limits being 0.10 % (8.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00910888 BTC (4,379.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 456,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.11 % (-223.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,255.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01814523 BTC (8,279.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 73.00 CZK over 60 transactions" + } + ] + }, + { + "id": 945, + "type": "message", + "date": "2022-07-02T10:00:04", + "date_unixtime": "1656748804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024015 BTC for 109.61 CZK @ 456,432 CZK\nFees are 0.38498526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (63.900479996049637221214402517 CZK)\nThe limits being 0.10 % (8.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00934903 BTC (4,489.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 456,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.96 % (-222.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,145.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01838538 BTC (8,391.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 73.60 CZK over 61 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024015 BTC for 109.61 CZK @ 456,432 CZK\nFees are 0.38498526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.76 % (63.900479996049637221214402517 CZK)\nThe limits being 0.10 % (8.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00934903 BTC (4,489.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 456,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.96 % (-222.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,145.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01838538 BTC (8,391.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 73.60 CZK over 61 transactions" + } + ] + }, + { + "id": 946, + "type": "message", + "date": "2022-07-02T14:00:04", + "date_unixtime": "1656763204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023928 BTC for 109.62 CZK @ 458,107 CZK\nFees are 0.38499824 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (59.553909999805095405798861458 CZK)\nThe limits being 0.10 % (8.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00958831 BTC (4,599.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 458,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.51 % (-207.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 26,035.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01862466 BTC (8,532.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 74.19 CZK over 62 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023928 BTC for 109.62 CZK @ 458,107 CZK\nFees are 0.38499824 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.70 % (59.553909999805095405798861458 CZK)\nThe limits being 0.10 % (8.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00958831 BTC (4,599.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 458,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.51 % (-207.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 26,035.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01862466 BTC (8,532.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 74.19 CZK over 62 transactions" + } + ] + }, + { + "id": 947, + "type": "message", + "date": "2022-07-02T18:00:04", + "date_unixtime": "1656777604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023890 BTC for 109.61 CZK @ 458,821 CZK\nFees are 0.38498593 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (64.234939994656625627799562147 CZK)\nThe limits being 0.10 % (8.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.00982721 BTC (4,709.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 458,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.27 % (-200.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,925.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01886356 BTC (8,655.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 74.76 CZK over 63 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023890 BTC for 109.61 CZK @ 458,821 CZK\nFees are 0.38498593 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (64.234939994656625627799562147 CZK)\nThe limits being 0.10 % (8.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.00982721 BTC (4,709.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 458,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.27 % (-200.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,925.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01886356 BTC (8,655.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 74.76 CZK over 63 transactions" + } + ] + }, + { + "id": 948, + "type": "message", + "date": "2022-07-02T22:00:03", + "date_unixtime": "1656792003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023836 BTC for 109.61 CZK @ 459,864 CZK\nFees are 0.38498890 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (36.789119999785948040726395358 CZK)\nThe limits being 0.10 % (8.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01006557 BTC (4,819.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.96 % (-191.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,815.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01910192 BTC (8,784.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 75.31 CZK over 64 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023836 BTC for 109.61 CZK @ 459,864 CZK\nFees are 0.38498890 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (36.789119999785948040726395358 CZK)\nThe limits being 0.10 % (8.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01006557 BTC (4,819.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.96 % (-191.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,815.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01910192 BTC (8,784.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 75.31 CZK over 64 transactions" + } + ] + }, + { + "id": 949, + "type": "message", + "date": "2022-07-03T02:00:04", + "date_unixtime": "1656806404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023818 BTC for 109.61 CZK @ 460,206 CZK\nFees are 0.38498427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (13.806179999023486652204729914 CZK)\nThe limits being 0.10 % (8.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01030375 BTC (4,929.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 460,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.81 % (-187.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,705.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01934010 BTC (8,900.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 75.84 CZK over 65 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023818 BTC for 109.61 CZK @ 460,206 CZK\nFees are 0.38498427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (13.806179999023486652204729914 CZK)\nThe limits being 0.10 % (8.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01030375 BTC (4,929.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 460,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.81 % (-187.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,705.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01934010 BTC (8,900.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 75.84 CZK over 65 transactions" + } + ] + }, + { + "id": 950, + "type": "message", + "date": "2022-07-03T06:00:04", + "date_unixtime": "1656820804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023834 BTC for 109.61 CZK @ 459,909 CZK\nFees are 0.38499427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (13.797269998907490812449286438 CZK)\nThe limits being 0.10 % (9.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01054209 BTC (5,039.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.80 % (-191.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,595.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01957844 BTC (9,004.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 76.36 CZK over 66 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023834 BTC for 109.61 CZK @ 459,909 CZK\nFees are 0.38499427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (13.797269998907490812449286438 CZK)\nThe limits being 0.10 % (9.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01054209 BTC (5,039.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.80 % (-191.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,595.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01957844 BTC (9,004.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 76.36 CZK over 66 transactions" + } + ] + }, + { + "id": 951, + "type": "message", + "date": "2022-07-03T10:00:07", + "date_unixtime": "1656835207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023988 BTC for 109.61 CZK @ 456,945 CZK\nFees are 0.38498463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.5694499998712194496185146219 CZK)\nThe limits being 0.10 % (9.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01078197 BTC (5,149.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 456,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.33 % (-223.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,485.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01981832 BTC (9,055.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 76.86 CZK over 67 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023988 BTC for 109.61 CZK @ 456,945 CZK\nFees are 0.38498463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.5694499998712194496185146219 CZK)\nThe limits being 0.10 % (9.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01078197 BTC (5,149.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 456,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.33 % (-223.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,485.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01981832 BTC (9,055.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 76.86 CZK over 67 transactions" + } + ] + }, + { + "id": 952, + "type": "message", + "date": "2022-07-03T14:00:03", + "date_unixtime": "1656849603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024021 BTC for 109.61 CZK @ 456,325 CZK\nFees are 0.38499117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.5632499996318202473018802452 CZK)\nThe limits being 0.10 % (9.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01102218 BTC (5,259.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 456,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.38 % (-230.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,375.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02005853 BTC (9,153.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 77.35 CZK over 68 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024021 BTC for 109.61 CZK @ 456,325 CZK\nFees are 0.38499117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.5632499996318202473018802452 CZK)\nThe limits being 0.10 % (9.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01102218 BTC (5,259.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 456,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.38 % (-230.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,375.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02005853 BTC (9,153.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 77.35 CZK over 68 transactions" + } + ] + }, + { + "id": 953, + "type": "message", + "date": "2022-07-03T18:00:05", + "date_unixtime": "1656864005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024072 BTC for 109.61 CZK @ 455,359 CZK\nFees are 0.38499184 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.553589999806261335574740651 CZK)\nThe limits being 0.10 % (9.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01126290 BTC (5,369.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 455,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.49 % (-241.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,265.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02029925 BTC (9,243.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 77.82 CZK over 69 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024072 BTC for 109.61 CZK @ 455,359 CZK\nFees are 0.38499184 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.553589999806261335574740651 CZK)\nThe limits being 0.10 % (9.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01126290 BTC (5,369.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 455,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.49 % (-241.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,265.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02029925 BTC (9,243.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 77.82 CZK over 69 transactions" + } + ] + }, + { + "id": 954, + "type": "message", + "date": "2022-07-03T22:00:04", + "date_unixtime": "1656878404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023612 BTC for 109.62 CZK @ 464,236 CZK\nFees are 0.38499695 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (37.138903865270469163450538733 CZK)\nThe limits being 0.10 % (9.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01149902 BTC (5,479.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 464,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.58 % (-141.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,155.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02053537 BTC (9,533.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 78.28 CZK over 70 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023612 BTC for 109.62 CZK @ 464,236 CZK\nFees are 0.38499695 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (37.138903865270469163450538733 CZK)\nThe limits being 0.10 % (9.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01149902 BTC (5,479.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 464,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.58 % (-141.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,155.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02053537 BTC (9,533.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 78.28 CZK over 70 transactions" + } + ] + }, + { + "id": 955, + "type": "message", + "date": "2022-07-04T02:00:03", + "date_unixtime": "1656892803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023816 BTC for 109.61 CZK @ 460,254 CZK\nFees are 0.38499210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (13.807619999467768085466403362 CZK)\nThe limits being 0.10 % (9.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01173718 BTC (5,589.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 460,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.36 % (-187.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25,045.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02077353 BTC (9,561.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 78.73 CZK over 71 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023816 BTC for 109.61 CZK @ 460,254 CZK\nFees are 0.38499210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (13.807619999467768085466403362 CZK)\nThe limits being 0.10 % (9.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01173718 BTC (5,589.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 460,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.36 % (-187.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25,045.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02077353 BTC (9,561.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 78.73 CZK over 71 transactions" + } + ] + }, + { + "id": 956, + "type": "message", + "date": "2022-07-04T06:00:03", + "date_unixtime": "1656907203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024070 BTC for 109.61 CZK @ 455,400 CZK\nFees are 0.38499451 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.55400 CZK)\nThe limits being 0.10 % (9.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01197788 BTC (5,699.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 455,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.30 % (-245.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,935.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02101423 BTC (9,569.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 79.16 CZK over 72 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024070 BTC for 109.61 CZK @ 455,400 CZK\nFees are 0.38499451 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.55400 CZK)\nThe limits being 0.10 % (9.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01197788 BTC (5,699.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 455,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.30 % (-245.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,935.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02101423 BTC (9,569.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 79.16 CZK over 72 transactions" + } + ] + }, + { + "id": 957, + "type": "message", + "date": "2022-07-04T10:00:04", + "date_unixtime": "1656921604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024052 BTC for 109.61 CZK @ 455,737 CZK\nFees are 0.38499129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.5573699999444816914290752366 CZK)\nThe limits being 0.10 % (9.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01221840 BTC (5,809.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 455,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.16 % (-241.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,825.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02125475 BTC (9,686.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 79.59 CZK over 73 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024052 BTC for 109.61 CZK @ 455,737 CZK\nFees are 0.38499129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (4.5573699999444816914290752366 CZK)\nThe limits being 0.10 % (9.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01221840 BTC (5,809.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 455,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.16 % (-241.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,825.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02125475 BTC (9,686.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 79.59 CZK over 73 transactions" + } + ] + }, + { + "id": 958, + "type": "message", + "date": "2022-07-04T14:00:07", + "date_unixtime": "1656936007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023307 BTC for 109.62 CZK @ 470,311 CZK\nFees are 0.38499664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (18.812439998854996485570336918 CZK)\nThe limits being 0.10 % (10.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01245147 BTC (5,919.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 470,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.08 % (-63.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,715.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02148782 BTC (10,105.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 80.00 CZK over 74 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023307 BTC for 109.62 CZK @ 470,311 CZK\nFees are 0.38499664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (18.812439998854996485570336918 CZK)\nThe limits being 0.10 % (10.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01245147 BTC (5,919.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 470,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.08 % (-63.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,715.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02148782 BTC (10,105.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 80.00 CZK over 74 transactions" + } + ] + }, + { + "id": 959, + "type": "message", + "date": "2022-07-04T18:00:04", + "date_unixtime": "1656950404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023223 BTC for 109.62 CZK @ 472,016 CZK\nFees are 0.38499976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.761279998324771279679713777 CZK)\nThe limits being 0.10 % (45.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01268370 BTC (6,029.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 472,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.71 % (-42.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,623.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09624553 BTC (45,429.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 80.40 CZK over 75 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023223 BTC for 109.62 CZK @ 472,016 CZK\nFees are 0.38499976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.761279998324771279679713777 CZK)\nThe limits being 0.10 % (45.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01268370 BTC (6,029.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 472,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.71 % (-42.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,623.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09624553 BTC (45,429.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 80.40 CZK over 75 transactions" + } + ] + }, + { + "id": 960, + "type": "message", + "date": "2022-07-04T22:00:05", + "date_unixtime": "1656964805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023170 BTC for 109.61 CZK @ 473,081 CZK\nFees are 0.38498779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (47.308099997010893465447541286 CZK)\nThe limits being 0.10 % (45.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01291540 BTC (6,139.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.48 % (-29.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,513.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09647723 BTC (45,641.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 80.79 CZK over 76 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023170 BTC for 109.61 CZK @ 473,081 CZK\nFees are 0.38498779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (47.308099997010893465447541286 CZK)\nThe limits being 0.10 % (45.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01291540 BTC (6,139.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.48 % (-29.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,513.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09647723 BTC (45,641.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 80.79 CZK over 76 transactions" + } + ] + }, + { + "id": 961, + "type": "message", + "date": "2022-07-05T02:00:04", + "date_unixtime": "1656979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022727 BTC for 109.62 CZK @ 482,314 CZK\nFees are 0.38499705 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (57.877679994880416890862182125 CZK)\nThe limits being 0.10 % (46.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01314267 BTC (6,249.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.43 % (89.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,403.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09670450 BTC (46,641.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 81.17 CZK over 77 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022727 BTC for 109.62 CZK @ 482,314 CZK\nFees are 0.38499705 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (57.877679994880416890862182125 CZK)\nThe limits being 0.10 % (46.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01314267 BTC (6,249.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.43 % (89.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,403.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09670450 BTC (46,641.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 81.17 CZK over 77 transactions" + } + ] + }, + { + "id": 962, + "type": "message", + "date": "2022-07-05T06:00:05", + "date_unixtime": "1656993605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022670 BTC for 109.62 CZK @ 483,526 CZK\nFees are 0.38499649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (53.187859997727407096775753324 CZK)\nThe limits being 0.10 % (46.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01336937 BTC (6,359.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.65 % (104.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,293.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09693120 BTC (46,868.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 81.54 CZK over 78 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022670 BTC for 109.62 CZK @ 483,526 CZK\nFees are 0.38499649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (53.187859997727407096775753324 CZK)\nThe limits being 0.10 % (46.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01336937 BTC (6,359.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.65 % (104.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,293.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09693120 BTC (46,868.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 81.54 CZK over 78 transactions" + } + ] + }, + { + "id": 963, + "type": "message", + "date": "2022-07-05T10:00:04", + "date_unixtime": "1657008004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022642 BTC for 109.62 CZK @ 484,124 CZK\nFees are 0.38499653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (58.094879996683280631560406874 CZK)\nThe limits being 0.10 % (47.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01359579 BTC (6,469.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.73 % (112.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,183.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09715762 BTC (47,036.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 81.90 CZK over 79 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022642 BTC for 109.62 CZK @ 484,124 CZK\nFees are 0.38499653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (58.094879996683280631560406874 CZK)\nThe limits being 0.10 % (47.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01359579 BTC (6,469.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.73 % (112.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,183.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09715762 BTC (47,036.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 81.90 CZK over 79 transactions" + } + ] + }, + { + "id": 964, + "type": "message", + "date": "2022-07-05T14:00:05", + "date_unixtime": "1657022405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023262 BTC for 109.62 CZK @ 471,224 CZK\nFees are 0.38499924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (47.122399998252183902639446488 CZK)\nThe limits being 0.10 % (45.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01382841 BTC (6,579.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 471,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.97 % (-63.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 24,073.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09739024 BTC (45,892.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 82.25 CZK over 80 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023262 BTC for 109.62 CZK @ 471,224 CZK\nFees are 0.38499924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (47.122399998252183902639446488 CZK)\nThe limits being 0.10 % (45.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01382841 BTC (6,579.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 471,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.97 % (-63.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 24,073.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09739024 BTC (45,892.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 82.25 CZK over 80 transactions" + } + ] + }, + { + "id": 965, + "type": "message", + "date": "2022-07-05T18:00:05", + "date_unixtime": "1657036805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023154 BTC for 109.61 CZK @ 473,405 CZK\nFees are 0.38498543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (61.542649995551976478283509660 CZK)\nThe limits being 0.10 % (46.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01405995 BTC (6,689.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.50 % (-33.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,963.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09762178 BTC (46,214.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 82.59 CZK over 81 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023154 BTC for 109.61 CZK @ 473,405 CZK\nFees are 0.38498543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (61.542649995551976478283509660 CZK)\nThe limits being 0.10 % (46.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01405995 BTC (6,689.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.50 % (-33.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,963.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09762178 BTC (46,214.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 82.59 CZK over 81 transactions" + } + ] + }, + { + "id": 966, + "type": "message", + "date": "2022-07-05T22:00:04", + "date_unixtime": "1657051204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022174 BTC for 109.61 CZK @ 494,334 CZK\nFees are 0.38499044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (84.03677999689820183340449673 CZK)\nThe limits being 0.10 % (48.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01428169 BTC (6,799.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.83 % (260.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,853.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09784352 BTC (48,367.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 82.92 CZK over 82 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022174 BTC for 109.61 CZK @ 494,334 CZK\nFees are 0.38499044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (84.03677999689820183340449673 CZK)\nThe limits being 0.10 % (48.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01428169 BTC (6,799.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.83 % (260.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,853.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09784352 BTC (48,367.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 82.92 CZK over 82 transactions" + } + ] + }, + { + "id": 967, + "type": "message", + "date": "2022-07-06T02:00:04", + "date_unixtime": "1657065604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022410 BTC for 109.61 CZK @ 489,131 CZK\nFees are 0.38499267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (83.15226999255395050833906406 CZK)\nThe limits being 0.10 % (47.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01450579 BTC (6,909.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.68 % (185.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,743.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09806762 BTC (47,967.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 83.25 CZK over 83 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022410 BTC for 109.61 CZK @ 489,131 CZK\nFees are 0.38499267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (83.15226999255395050833906406 CZK)\nThe limits being 0.10 % (47.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01450579 BTC (6,909.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.68 % (185.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,743.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09806762 BTC (47,967.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 83.25 CZK over 83 transactions" + } + ] + }, + { + "id": 968, + "type": "message", + "date": "2022-07-06T06:00:03", + "date_unixtime": "1657080003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022693 BTC for 109.61 CZK @ 483,032 CZK\nFees are 0.38499336 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (62.794159999337795616018153184 CZK)\nThe limits being 0.10 % (47.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01473272 BTC (7,019.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.38 % (96.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,633.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09829455 BTC (47,479.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 83.57 CZK over 84 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022693 BTC for 109.61 CZK @ 483,032 CZK\nFees are 0.38499336 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (62.794159999337795616018153184 CZK)\nThe limits being 0.10 % (47.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01473272 BTC (7,019.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.38 % (96.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,633.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09829455 BTC (47,479.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 83.57 CZK over 84 transactions" + } + ] + }, + { + "id": 969, + "type": "message", + "date": "2022-07-06T10:00:03", + "date_unixtime": "1657094403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022395 BTC for 109.61 CZK @ 489,459 CZK\nFees are 0.38499298 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (63.629669999609538083552843014 CZK)\nThe limits being 0.10 % (48.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01495667 BTC (7,129.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.68 % (190.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,523.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09851850 BTC (48,220.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 83.88 CZK over 85 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022395 BTC for 109.61 CZK @ 489,459 CZK\nFees are 0.38499298 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (63.629669999609538083552843014 CZK)\nThe limits being 0.10 % (48.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01495667 BTC (7,129.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.68 % (190.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,523.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09851850 BTC (48,220.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 83.88 CZK over 85 transactions" + } + ] + }, + { + "id": 970, + "type": "message", + "date": "2022-07-06T14:00:05", + "date_unixtime": "1657108805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022348 BTC for 109.61 CZK @ 490,478 CZK\nFees are 0.38498483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (68.666919998726490574558759753 CZK)\nThe limits being 0.10 % (48.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01518015 BTC (7,239.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.84 % (205.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,413.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09874198 BTC (48,430.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 84.18 CZK over 86 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022348 BTC for 109.61 CZK @ 490,478 CZK\nFees are 0.38498483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (68.666919998726490574558759753 CZK)\nThe limits being 0.10 % (48.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01518015 BTC (7,239.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.84 % (205.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,413.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09874198 BTC (48,430.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 84.18 CZK over 86 transactions" + } + ] + }, + { + "id": 971, + "type": "message", + "date": "2022-07-06T18:00:04", + "date_unixtime": "1657123204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022231 BTC for 109.62 CZK @ 493,075 CZK\nFees are 0.38499705 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (88.75349999889057275291058238 CZK)\nThe limits being 0.10 % (48.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01540246 BTC (7,349.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.33 % (244.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,303.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09896429 BTC (48,796.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 84.48 CZK over 87 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022231 BTC for 109.62 CZK @ 493,075 CZK\nFees are 0.38499705 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (88.75349999889057275291058238 CZK)\nThe limits being 0.10 % (48.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01540246 BTC (7,349.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.33 % (244.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,303.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09896429 BTC (48,796.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 84.48 CZK over 87 transactions" + } + ] + }, + { + "id": 972, + "type": "message", + "date": "2022-07-06T22:00:04", + "date_unixtime": "1657137604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022064 BTC for 109.61 CZK @ 496,799 CZK\nFees are 0.38499083 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (94.39180999162467260165923980 CZK)\nThe limits being 0.10 % (49.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01562310 BTC (7,459.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.05 % (301.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,193.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09918493 BTC (49,274.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 84.77 CZK over 88 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022064 BTC for 109.61 CZK @ 496,799 CZK\nFees are 0.38499083 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (94.39180999162467260165923980 CZK)\nThe limits being 0.10 % (49.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01562310 BTC (7,459.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.05 % (301.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,193.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09918493 BTC (49,274.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 84.77 CZK over 88 transactions" + } + ] + }, + { + "id": 973, + "type": "message", + "date": "2022-07-07T02:00:05", + "date_unixtime": "1657152005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021815 BTC for 109.61 CZK @ 502,463 CZK\nFees are 0.38498581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (90.44333999829384685117102746 CZK)\nThe limits being 0.10 % (49.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01584125 BTC (7,569.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.15 % (389.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 23,083.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09940308 BTC (49,946.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 85.05 CZK over 89 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021815 BTC for 109.61 CZK @ 502,463 CZK\nFees are 0.38498581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (90.44333999829384685117102746 CZK)\nThe limits being 0.10 % (49.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01584125 BTC (7,569.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.15 % (389.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 23,083.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09940308 BTC (49,946.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 85.05 CZK over 89 transactions" + } + ] + }, + { + "id": 974, + "type": "message", + "date": "2022-07-07T06:00:04", + "date_unixtime": "1657166404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021939 BTC for 109.62 CZK @ 499,636 CZK\nFees are 0.38499578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (89.93447999416237071521383077 CZK)\nThe limits being 0.10 % (49.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01606064 BTC (7,679.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.49 % (344.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,973.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09962247 BTC (49,774.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 85.33 CZK over 90 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021939 BTC for 109.62 CZK @ 499,636 CZK\nFees are 0.38499578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (89.93447999416237071521383077 CZK)\nThe limits being 0.10 % (49.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01606064 BTC (7,679.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.49 % (344.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,973.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09962247 BTC (49,774.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 85.33 CZK over 90 transactions" + } + ] + }, + { + "id": 975, + "type": "message", + "date": "2022-07-07T10:00:04", + "date_unixtime": "1657180804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021959 BTC for 109.62 CZK @ 499,184 CZK\nFees are 0.38499814 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (89.85311999921582353742410693 CZK)\nThe limits being 0.10 % (49.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01628023 BTC (7,789.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.33 % (337.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,863.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09984206 BTC (49,839.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 85.60 CZK over 91 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021959 BTC for 109.62 CZK @ 499,184 CZK\nFees are 0.38499814 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (89.85311999921582353742410693 CZK)\nThe limits being 0.10 % (49.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01628023 BTC (7,789.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.33 % (337.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,863.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09984206 BTC (49,839.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 85.60 CZK over 91 transactions" + } + ] + }, + { + "id": 976, + "type": "message", + "date": "2022-07-07T14:00:05", + "date_unixtime": "1657195205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021866 BTC for 109.61 CZK @ 501,300 CZK\nFees are 0.38499268 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.025999999726558435761125278 CZK)\nThe limits being 0.10 % (50.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01649889 BTC (7,899.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.70 % (371.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,753.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10006072 BTC (50,160.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 85.87 CZK over 92 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021866 BTC for 109.61 CZK @ 501,300 CZK\nFees are 0.38499268 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.025999999726558435761125278 CZK)\nThe limits being 0.10 % (50.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01649889 BTC (7,899.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.70 % (371.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,753.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10006072 BTC (50,160.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 85.87 CZK over 92 transactions" + } + ] + }, + { + "id": 977, + "type": "message", + "date": "2022-07-07T18:00:04", + "date_unixtime": "1657209604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021425 BTC for 109.61 CZK @ 511,610 CZK\nFees are 0.38498630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (92.08979999267441434558973581 CZK)\nThe limits being 0.10 % (51.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01671314 BTC (8,009.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 511,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.75 % (540.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,643.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10027497 BTC (51,301.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 86.13 CZK over 93 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021425 BTC for 109.61 CZK @ 511,610 CZK\nFees are 0.38498630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (92.08979999267441434558973581 CZK)\nThe limits being 0.10 % (51.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01671314 BTC (8,009.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 511,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.75 % (540.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,643.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10027497 BTC (51,301.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 86.13 CZK over 93 transactions" + } + ] + }, + { + "id": 978, + "type": "message", + "date": "2022-07-07T22:00:05", + "date_unixtime": "1657224005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020548 BTC for 109.62 CZK @ 533,464 CZK\nFees are 0.38499944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (90.68887999215127819615965495 CZK)\nThe limits being 0.10 % (53.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01691862 BTC (8,119.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 533,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.15 % (905.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,533.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10048045 BTC (53,602.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 86.38 CZK over 94 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020548 BTC for 109.62 CZK @ 533,464 CZK\nFees are 0.38499944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (90.68887999215127819615965495 CZK)\nThe limits being 0.10 % (53.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01691862 BTC (8,119.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 533,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.15 % (905.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,533.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10048045 BTC (53,602.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 86.38 CZK over 94 transactions" + } + ] + }, + { + "id": 979, + "type": "message", + "date": "2022-07-08T02:00:04", + "date_unixtime": "1657238404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020680 BTC for 109.61 CZK @ 530,037 CZK\nFees are 0.38498352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (95.40665999947957776409260046 CZK)\nThe limits being 0.10 % (53.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01712542 BTC (8,229.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 530,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.30 % (847.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,423.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10068725 BTC (53,367.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 86.63 CZK over 95 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020680 BTC for 109.61 CZK @ 530,037 CZK\nFees are 0.38498352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (95.40665999947957776409260046 CZK)\nThe limits being 0.10 % (53.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01712542 BTC (8,229.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 530,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.30 % (847.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,423.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10068725 BTC (53,367.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 86.63 CZK over 95 transactions" + } + ] + }, + { + "id": 980, + "type": "message", + "date": "2022-07-08T06:00:04", + "date_unixtime": "1657252804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020267 BTC for 109.61 CZK @ 540,853 CZK\nFees are 0.38499415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (86.53647999898908121667910770 CZK)\nThe limits being 0.10 % (54.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01732809 BTC (8,339.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 540,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.38 % (1,032.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,313.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10088992 BTC (54,566.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 86.87 CZK over 96 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020267 BTC for 109.61 CZK @ 540,853 CZK\nFees are 0.38499415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (86.53647999898908121667910770 CZK)\nThe limits being 0.10 % (54.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01732809 BTC (8,339.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 540,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.38 % (1,032.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,313.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10088992 BTC (54,566.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 86.87 CZK over 96 transactions" + } + ] + }, + { + "id": 981, + "type": "message", + "date": "2022-07-08T10:00:07", + "date_unixtime": "1657267207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020465 BTC for 109.61 CZK @ 535,619 CZK\nFees are 0.38499328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (42.849519996406420674475397676 CZK)\nThe limits being 0.10 % (54.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01753274 BTC (8,449.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 535,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.14 % (941.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,203.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10109457 BTC (54,148.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 87.11 CZK over 97 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020465 BTC for 109.61 CZK @ 535,619 CZK\nFees are 0.38499328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (42.849519996406420674475397676 CZK)\nThe limits being 0.10 % (54.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01753274 BTC (8,449.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 535,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.14 % (941.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,203.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10109457 BTC (54,148.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 87.11 CZK over 97 transactions" + } + ] + }, + { + "id": 982, + "type": "message", + "date": "2022-07-08T14:00:07", + "date_unixtime": "1657281607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020800 BTC for 109.61 CZK @ 526,995 CZK\nFees are 0.38499514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.80985 CZK)\nThe limits being 0.10 % (53.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01774074 BTC (8,559.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 526,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.22 % (789.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 22,093.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10130257 BTC (53,385.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 87.34 CZK over 98 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020800 BTC for 109.61 CZK @ 526,995 CZK\nFees are 0.38499514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.80985 CZK)\nThe limits being 0.10 % (53.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01774074 BTC (8,559.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 526,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.22 % (789.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 22,093.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10130257 BTC (53,385.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 87.34 CZK over 98 transactions" + } + ] + }, + { + "id": 983, + "type": "message", + "date": "2022-07-08T18:00:04", + "date_unixtime": "1657296004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020563 BTC for 109.61 CZK @ 533,066 CZK\nFees are 0.38499304 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (90.62121999544414177863738647 CZK)\nThe limits being 0.10 % (54.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01794637 BTC (8,669.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 533,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.34 % (896.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,983.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10150820 BTC (54,110.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 87.57 CZK over 99 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020563 BTC for 109.61 CZK @ 533,066 CZK\nFees are 0.38499304 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (90.62121999544414177863738647 CZK)\nThe limits being 0.10 % (54.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01794637 BTC (8,669.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 533,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.34 % (896.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,983.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10150820 BTC (54,110.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 87.57 CZK over 99 transactions" + } + ] + }, + { + "id": 984, + "type": "message", + "date": "2022-07-08T22:00:04", + "date_unixtime": "1657310404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020721 BTC for 109.61 CZK @ 529,003 CZK\nFees are 0.38499427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (63.480359999593142547485999670 CZK)\nThe limits being 0.10 % (53.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01815358 BTC (8,779.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 529,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.38 % (823.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,873.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10171541 BTC (53,807.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 87.80 CZK over 100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020721 BTC for 109.61 CZK @ 529,003 CZK\nFees are 0.38499427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (63.480359999593142547485999670 CZK)\nThe limits being 0.10 % (53.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01815358 BTC (8,779.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 529,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.38 % (823.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,873.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10171541 BTC (53,807.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 87.80 CZK over 100 transactions" + } + ] + }, + { + "id": 985, + "type": "message", + "date": "2022-07-09T02:00:04", + "date_unixtime": "1657324804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020907 BTC for 109.61 CZK @ 524,289 CZK\nFees are 0.38498861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (62.914679997537675389687535727 CZK)\nThe limits being 0.10 % (53.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01836265 BTC (8,889.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 524,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.30 % (737.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,763.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10192448 BTC (53,437.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 88.02 CZK over 101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020907 BTC for 109.61 CZK @ 524,289 CZK\nFees are 0.38498861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (62.914679997537675389687535727 CZK)\nThe limits being 0.10 % (53.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01836265 BTC (8,889.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 524,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.30 % (737.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,763.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10192448 BTC (53,437.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 88.02 CZK over 101 transactions" + } + ] + }, + { + "id": 986, + "type": "message", + "date": "2022-07-09T06:00:03", + "date_unixtime": "1657339203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020902 BTC for 109.62 CZK @ 524,429 CZK\nFees are 0.38499932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (47.198609998485351027408281139 CZK)\nThe limits being 0.10 % (53.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01857167 BTC (8,999.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 524,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.22 % (739.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,653.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10213350 BTC (53,561.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 88.23 CZK over 102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020902 BTC for 109.62 CZK @ 524,429 CZK\nFees are 0.38499932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (47.198609998485351027408281139 CZK)\nThe limits being 0.10 % (53.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01857167 BTC (8,999.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 524,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.22 % (739.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,653.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10213350 BTC (53,561.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 88.23 CZK over 102 transactions" + } + ] + }, + { + "id": 987, + "type": "message", + "date": "2022-07-09T10:00:04", + "date_unixtime": "1657353604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020862 BTC for 109.61 CZK @ 525,412 CZK\nFees are 0.38498282 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.762359999994267976949815709 CZK)\nThe limits being 0.10 % (53.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01878029 BTC (9,109.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 525,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.32 % (757.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,543.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10234212 BTC (53,771.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 88.44 CZK over 103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020862 BTC for 109.61 CZK @ 525,412 CZK\nFees are 0.38498282 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.762359999994267976949815709 CZK)\nThe limits being 0.10 % (53.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01878029 BTC (9,109.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 525,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.32 % (757.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,543.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10234212 BTC (53,771.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 88.44 CZK over 103 transactions" + } + ] + }, + { + "id": 988, + "type": "message", + "date": "2022-07-09T14:00:04", + "date_unixtime": "1657368004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021075 BTC for 109.61 CZK @ 520,104 CZK\nFees are 0.38498449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.2010403544888264738894297006 CZK)\nThe limits being 0.10 % (53.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01899104 BTC (9,219.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 520,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.13 % (657.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,433.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10255287 BTC (53,338.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 88.65 CZK over 104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021075 BTC for 109.61 CZK @ 520,104 CZK\nFees are 0.38498449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.2010403544888264738894297006 CZK)\nThe limits being 0.10 % (53.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01899104 BTC (9,219.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 520,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.13 % (657.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,433.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10255287 BTC (53,338.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 88.65 CZK over 104 transactions" + } + ] + }, + { + "id": 989, + "type": "message", + "date": "2022-07-09T18:00:05", + "date_unixtime": "1657382405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020953 BTC for 109.61 CZK @ 523,145 CZK\nFees are 0.38499378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.694349999789549634076751035 CZK)\nThe limits being 0.10 % (53.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01920057 BTC (9,329.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 523,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.66 % (714.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,323.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10276240 BTC (53,759.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 88.85 CZK over 105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020953 BTC for 109.61 CZK @ 523,145 CZK\nFees are 0.38499378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.694349999789549634076751035 CZK)\nThe limits being 0.10 % (53.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01920057 BTC (9,329.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 523,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.66 % (714.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,323.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10276240 BTC (53,759.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 88.85 CZK over 105 transactions" + } + ] + }, + { + "id": 990, + "type": "message", + "date": "2022-07-09T22:00:04", + "date_unixtime": "1657396804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020890 BTC for 109.61 CZK @ 524,708 CZK\nFees are 0.38498300 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (78.706199996994721442877167822 CZK)\nThe limits being 0.10 % (54.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01940947 BTC (9,439.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 524,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.89 % (744.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,213.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10297130 BTC (54,029.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 89.05 CZK over 106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020890 BTC for 109.61 CZK @ 524,708 CZK\nFees are 0.38498300 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (78.706199996994721442877167822 CZK)\nThe limits being 0.10 % (54.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01940947 BTC (9,439.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 524,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.89 % (744.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,213.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10297130 BTC (54,029.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 89.05 CZK over 106 transactions" + } + ] + }, + { + "id": 991, + "type": "message", + "date": "2022-07-10T02:00:03", + "date_unixtime": "1657411203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020925 BTC for 109.61 CZK @ 523,845 CZK\nFees are 0.38499376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (78.576749998660601871942823770 CZK)\nThe limits being 0.10 % (54.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01961872 BTC (9,549.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 523,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.62 % (727.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 21,103.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10318055 BTC (54,050.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 89.25 CZK over 107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020925 BTC for 109.61 CZK @ 523,845 CZK\nFees are 0.38499376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (78.576749998660601871942823770 CZK)\nThe limits being 0.10 % (54.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01961872 BTC (9,549.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 523,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.62 % (727.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 21,103.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10318055 BTC (54,050.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 89.25 CZK over 107 transactions" + } + ] + }, + { + "id": 992, + "type": "message", + "date": "2022-07-10T06:00:03", + "date_unixtime": "1657425603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021214 BTC for 109.61 CZK @ 516,697 CZK\nFees are 0.38498510 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (51.669699997402322755619778778 CZK)\nThe limits being 0.10 % (53.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.01983086 BTC (9,659.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.07 % (586.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,993.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10339269 BTC (53,422.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 89.44 CZK over 108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021214 BTC for 109.61 CZK @ 516,697 CZK\nFees are 0.38498510 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (51.669699997402322755619778778 CZK)\nThe limits being 0.10 % (53.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.01983086 BTC (9,659.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.07 % (586.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,993.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10339269 BTC (53,422.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 89.44 CZK over 108 transactions" + } + ] + }, + { + "id": 993, + "type": "message", + "date": "2022-07-10T10:00:04", + "date_unixtime": "1657440004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021170 BTC for 109.61 CZK @ 517,784 CZK\nFees are 0.38499484 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1778399997740548608919325583 CZK)\nThe limits being 0.10 % (53.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02004256 BTC (9,769.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.22 % (607.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,883.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10360439 BTC (53,644.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 89.63 CZK over 109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021170 BTC for 109.61 CZK @ 517,784 CZK\nFees are 0.38499484 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1778399997740548608919325583 CZK)\nThe limits being 0.10 % (53.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02004256 BTC (9,769.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.22 % (607.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,883.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10360439 BTC (53,644.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 89.63 CZK over 109 transactions" + } + ] + }, + { + "id": 994, + "type": "message", + "date": "2022-07-10T14:00:05", + "date_unixtime": "1657454405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021211 BTC for 109.61 CZK @ 516,773 CZK\nFees are 0.38498728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.503189999491901394480498774 CZK)\nThe limits being 0.10 % (53.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02025467 BTC (9,879.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.94 % (587.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,773.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10381650 BTC (53,649.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 89.82 CZK over 110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021211 BTC for 109.61 CZK @ 516,773 CZK\nFees are 0.38498728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.503189999491901394480498774 CZK)\nThe limits being 0.10 % (53.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02025467 BTC (9,879.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.94 % (587.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,773.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10381650 BTC (53,649.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 89.82 CZK over 110 transactions" + } + ] + }, + { + "id": 995, + "type": "message", + "date": "2022-07-10T18:00:04", + "date_unixtime": "1657468804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021619 BTC for 109.61 CZK @ 507,028 CZK\nFees are 0.38499312 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.281119999701309075205189258 CZK)\nThe limits being 0.10 % (52.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02047086 BTC (9,989.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.90 % (389.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,663.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10403269 BTC (52,747.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.00 CZK over 111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021619 BTC for 109.61 CZK @ 507,028 CZK\nFees are 0.38499312 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.281119999701309075205189258 CZK)\nThe limits being 0.10 % (52.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02047086 BTC (9,989.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.90 % (389.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,663.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10403269 BTC (52,747.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.00 CZK over 111 transactions" + } + ] + }, + { + "id": 996, + "type": "message", + "date": "2022-07-10T22:00:05", + "date_unixtime": "1657483205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021601 BTC for 109.61 CZK @ 507,453 CZK\nFees are 0.38499501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.149059999182990084216837753 CZK)\nThe limits being 0.10 % (52.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02068687 BTC (10,099.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.94 % (397.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,553.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10424870 BTC (52,901.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.18 CZK over 112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021601 BTC for 109.61 CZK @ 507,453 CZK\nFees are 0.38499501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.149059999182990084216837753 CZK)\nThe limits being 0.10 % (52.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02068687 BTC (10,099.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.94 % (397.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,553.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10424870 BTC (52,901.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.18 CZK over 112 transactions" + } + ] + }, + { + "id": 997, + "type": "message", + "date": "2022-07-11T02:00:05", + "date_unixtime": "1657497605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021680 BTC for 109.61 CZK @ 505,596 CZK\nFees are 0.38498901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.111919999558739982018654268 CZK)\nThe limits being 0.10 % (52.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02090367 BTC (10,209.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.52 % (359.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,443.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10446550 BTC (52,817.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.35 CZK over 113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021680 BTC for 109.61 CZK @ 505,596 CZK\nFees are 0.38498901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.111919999558739982018654268 CZK)\nThe limits being 0.10 % (52.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02090367 BTC (10,209.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.52 % (359.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,443.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10446550 BTC (52,817.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.35 CZK over 113 transactions" + } + ] + }, + { + "id": 998, + "type": "message", + "date": "2022-07-11T06:00:04", + "date_unixtime": "1657512004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021979 BTC for 109.61 CZK @ 498,722 CZK\nFees are 0.38499215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.9872199995769844445210678407 CZK)\nThe limits being 0.10 % (52.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02112346 BTC (10,319.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.08 % (215.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,333.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10468529 BTC (52,208.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.52 CZK over 114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021979 BTC for 109.61 CZK @ 498,722 CZK\nFees are 0.38499215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.9872199995769844445210678407 CZK)\nThe limits being 0.10 % (52.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02112346 BTC (10,319.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.08 % (215.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,333.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10468529 BTC (52,208.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.52 CZK over 114 transactions" + } + ] + }, + { + "id": 999, + "type": "message", + "date": "2022-07-11T10:00:05", + "date_unixtime": "1657526405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022005 BTC for 109.61 CZK @ 498,128 CZK\nFees are 0.38498849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.962559999782628557377060316 CZK)\nThe limits being 0.10 % (52.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02134351 BTC (10,429.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.94 % (202.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,223.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10490534 BTC (52,256.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.69 CZK over 115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022005 BTC for 109.61 CZK @ 498,128 CZK\nFees are 0.38498849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.962559999782628557377060316 CZK)\nThe limits being 0.10 % (52.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02134351 BTC (10,429.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.94 % (202.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,223.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10490534 BTC (52,256.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.69 CZK over 115 transactions" + } + ] + }, + { + "id": 1000, + "type": "message", + "date": "2022-07-11T14:00:04", + "date_unixtime": "1657540804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022001 BTC for 109.62 CZK @ 498,233 CZK\nFees are 0.38499965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.946989998891883498433180337 CZK)\nThe limits being 0.10 % (52.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02156352 BTC (10,539.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.94 % (203.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,113.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10512535 BTC (52,376.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022001 BTC for 109.62 CZK @ 498,233 CZK\nFees are 0.38499965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.946989998891883498433180337 CZK)\nThe limits being 0.10 % (52.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02156352 BTC (10,539.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.94 % (203.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,113.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10512535 BTC (52,376.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 116 transactions" + } + ] + }, + { + "id": 1001, + "type": "message", + "date": "2022-07-11T18:00:04", + "date_unixtime": "1657555204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021940 BTC for 109.62 CZK @ 499,614 CZK\nFees are 0.38499638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (39.969119999781984567232552974 CZK)\nThe limits being 0.10 % (52.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02178292 BTC (10,649.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.19 % (233.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 20,003.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10534475 BTC (52,631.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021940 BTC for 109.62 CZK @ 499,614 CZK\nFees are 0.38499638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (39.969119999781984567232552974 CZK)\nThe limits being 0.10 % (52.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02178292 BTC (10,649.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.19 % (233.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 20,003.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10534475 BTC (52,631.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 117 transactions" + } + ] + }, + { + "id": 1002, + "type": "message", + "date": "2022-07-11T22:00:04", + "date_unixtime": "1657569604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021814 BTC for 109.61 CZK @ 502,485 CZK\nFees are 0.38498502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.248499998789420853911465733 CZK)\nThe limits being 0.10 % (53.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02200106 BTC (10,759.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.75 % (295.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,893.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10556289 BTC (53,043.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021814 BTC for 109.61 CZK @ 502,485 CZK\nFees are 0.38498502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.248499998789420853911465733 CZK)\nThe limits being 0.10 % (53.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02200106 BTC (10,759.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.75 % (295.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,893.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10556289 BTC (53,043.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 118 transactions" + } + ] + }, + { + "id": 1003, + "type": "message", + "date": "2022-07-12T02:00:04", + "date_unixtime": "1657584004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022407 BTC for 109.61 CZK @ 489,184 CZK\nFees are 0.38498285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (73.377599995944039215270318778 CZK)\nThe limits being 0.10 % (51.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02222513 BTC (10,869.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.02 % (2.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,783.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10578696 BTC (51,749.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022407 BTC for 109.61 CZK @ 489,184 CZK\nFees are 0.38498285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (73.377599995944039215270318778 CZK)\nThe limits being 0.10 % (51.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02222513 BTC (10,869.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.02 % (2.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,783.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10578696 BTC (51,749.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 119 transactions" + } + ] + }, + { + "id": 1004, + "type": "message", + "date": "2022-07-12T06:00:04", + "date_unixtime": "1657598404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022407 BTC for 109.62 CZK @ 489,204 CZK\nFees are 0.38499859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (58.704479999476994530390120054 CZK)\nThe limits being 0.10 % (51.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02244920 BTC (10,979.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.02 % (2.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,673.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10601103 BTC (51,861.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022407 BTC for 109.62 CZK @ 489,204 CZK\nFees are 0.38499859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (58.704479999476994530390120054 CZK)\nThe limits being 0.10 % (51.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02244920 BTC (10,979.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.02 % (2.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,673.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10601103 BTC (51,861.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 120 transactions" + } + ] + }, + { + "id": 1005, + "type": "message", + "date": "2022-07-12T10:00:04", + "date_unixtime": "1657612804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022585 BTC for 109.61 CZK @ 485,335 CZK\nFees are 0.38498794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (48.533499998179936747838178508 CZK)\nThe limits being 0.10 % (51.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02267505 BTC (11,089.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.76 % (-84.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,563.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10623688 BTC (51,560.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022585 BTC for 109.61 CZK @ 485,335 CZK\nFees are 0.38498794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (48.533499998179936747838178508 CZK)\nThe limits being 0.10 % (51.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02267505 BTC (11,089.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.76 % (-84.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,563.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10623688 BTC (51,560.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 121 transactions" + } + ] + }, + { + "id": 1006, + "type": "message", + "date": "2022-07-12T14:00:04", + "date_unixtime": "1657627204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022563 BTC for 109.62 CZK @ 485,819 CZK\nFees are 0.38499648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (38.865519998800457760511612714 CZK)\nThe limits being 0.10 % (51.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02290068 BTC (11,199.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.66 % (-74.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,453.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10646251 BTC (51,721.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.80 CZK over 122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022563 BTC for 109.62 CZK @ 485,819 CZK\nFees are 0.38499648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (38.865519998800457760511612714 CZK)\nThe limits being 0.10 % (51.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02290068 BTC (11,199.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.66 % (-74.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,453.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10646251 BTC (51,721.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.80 CZK over 122 transactions" + } + ] + }, + { + "id": 1007, + "type": "message", + "date": "2022-07-12T18:00:05", + "date_unixtime": "1657641605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022583 BTC for 109.61 CZK @ 485,386 CZK\nFees are 0.38499430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (48.538599999413115513583165647 CZK)\nThe limits being 0.10 % (51.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02312651 BTC (11,309.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.75 % (-84.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,343.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10668834 BTC (51,785.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022583 BTC for 109.61 CZK @ 485,386 CZK\nFees are 0.38499430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (48.538599999413115513583165647 CZK)\nThe limits being 0.10 % (51.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02312651 BTC (11,309.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.75 % (-84.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,343.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10668834 BTC (51,785.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 123 transactions" + } + ] + }, + { + "id": 1008, + "type": "message", + "date": "2022-07-12T22:00:04", + "date_unixtime": "1657656004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022987 BTC for 109.61 CZK @ 476,850 CZK\nFees are 0.38499005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (47.68499999859108858326782437 CZK)\nThe limits being 0.10 % (50.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02335638 BTC (11,419.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 476,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.47 % (-282.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,233.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10691821 BTC (50,983.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.09 CZK over 124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022987 BTC for 109.61 CZK @ 476,850 CZK\nFees are 0.38499005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (47.68499999859108858326782437 CZK)\nThe limits being 0.10 % (50.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02335638 BTC (11,419.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 476,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.47 % (-282.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,233.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10691821 BTC (50,983.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.09 CZK over 124 transactions" + } + ] + }, + { + "id": 1009, + "type": "message", + "date": "2022-07-13T02:00:04", + "date_unixtime": "1657670404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023118 BTC for 109.61 CZK @ 474,144 CZK\nFees are 0.38498689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (42.672959998168879722942191301 CZK)\nThe limits being 0.10 % (50.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02358756 BTC (11,529.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.00 % (-345.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,123.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10714939 BTC (50,804.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.24 CZK over 125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023118 BTC for 109.61 CZK @ 474,144 CZK\nFees are 0.38498689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (42.672959998168879722942191301 CZK)\nThe limits being 0.10 % (50.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02358756 BTC (11,529.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.00 % (-345.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,123.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10714939 BTC (50,804.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.24 CZK over 125 transactions" + } + ] + }, + { + "id": 1010, + "type": "message", + "date": "2022-07-13T06:00:05", + "date_unixtime": "1657684805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022999 BTC for 109.62 CZK @ 476,609 CZK\nFees are 0.38499635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.298269999521003415304142359 CZK)\nThe limits being 0.10 % (51.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02381755 BTC (11,639.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 476,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.47 % (-288.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 19,013.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10737938 BTC (51,177.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.38 CZK over 126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022999 BTC for 109.62 CZK @ 476,609 CZK\nFees are 0.38499635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.298269999521003415304142359 CZK)\nThe limits being 0.10 % (51.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02381755 BTC (11,639.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 476,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.47 % (-288.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 19,013.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10737938 BTC (51,177.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.38 CZK over 126 transactions" + } + ] + }, + { + "id": 1011, + "type": "message", + "date": "2022-07-13T10:00:06", + "date_unixtime": "1657699206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022809 BTC for 109.61 CZK @ 480,568 CZK\nFees are 0.38498740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.222719999489707458417001322 CZK)\nThe limits being 0.10 % (51.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02404564 BTC (11,749.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 480,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.65 % (-194.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,903.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10760747 BTC (51,712.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.52 CZK over 127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022809 BTC for 109.61 CZK @ 480,568 CZK\nFees are 0.38498740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.222719999489707458417001322 CZK)\nThe limits being 0.10 % (51.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02404564 BTC (11,749.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 480,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.65 % (-194.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,903.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10760747 BTC (51,712.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.52 CZK over 127 transactions" + } + ] + }, + { + "id": 1012, + "type": "message", + "date": "2022-07-13T14:00:04", + "date_unixtime": "1657713604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022671 BTC for 109.61 CZK @ 483,489 CZK\nFees are 0.38498401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.339559998388596113154046849 CZK)\nThe limits being 0.10 % (52.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02427235 BTC (11,859.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.05 % (-124.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,793.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10783418 BTC (52,136.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.65 CZK over 128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022671 BTC for 109.61 CZK @ 483,489 CZK\nFees are 0.38498401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.339559998388596113154046849 CZK)\nThe limits being 0.10 % (52.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02427235 BTC (11,859.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.05 % (-124.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,793.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10783418 BTC (52,136.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.65 CZK over 128 transactions" + } + ] + }, + { + "id": 1013, + "type": "message", + "date": "2022-07-13T18:00:05", + "date_unixtime": "1657728005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023223 BTC for 109.61 CZK @ 472,005 CZK\nFees are 0.38499079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (94.40099999654569897577399997 CZK)\nThe limits being 0.10 % (51.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02450458 BTC (11,969.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 472,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.37 % (-403.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,683.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10806641 BTC (51,007.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.79 CZK over 129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023223 BTC for 109.61 CZK @ 472,005 CZK\nFees are 0.38499079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (94.40099999654569897577399997 CZK)\nThe limits being 0.10 % (51.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02450458 BTC (11,969.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 472,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.37 % (-403.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,683.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10806641 BTC (51,007.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.79 CZK over 129 transactions" + } + ] + }, + { + "id": 1014, + "type": "message", + "date": "2022-07-13T22:00:04", + "date_unixtime": "1657742404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022960 BTC for 109.61 CZK @ 477,416 CZK\nFees are 0.38499428 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (105.03151999274316894354081273 CZK)\nThe limits being 0.10 % (51.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02473418 BTC (12,079.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.24 % (-271.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,573.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10829601 BTC (51,702.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.92 CZK over 130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022960 BTC for 109.61 CZK @ 477,416 CZK\nFees are 0.38499428 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (105.03151999274316894354081273 CZK)\nThe limits being 0.10 % (51.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02473418 BTC (12,079.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.24 % (-271.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,573.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10829601 BTC (51,702.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.92 CZK over 130 transactions" + } + ] + }, + { + "id": 1015, + "type": "message", + "date": "2022-07-14T02:00:04", + "date_unixtime": "1657756804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022258 BTC for 109.62 CZK @ 492,478 CZK\nFees are 0.38499793 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (108.34515999375534537376885994 CZK)\nThe limits being 0.10 % (53.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02495676 BTC (12,189.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 492,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.83 % (100.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,463.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10851859 BTC (53,443.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.05 CZK over 131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022258 BTC for 109.62 CZK @ 492,478 CZK\nFees are 0.38499793 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (108.34515999375534537376885994 CZK)\nThe limits being 0.10 % (53.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02495676 BTC (12,189.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 492,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.83 % (100.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,463.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10851859 BTC (53,443.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.05 CZK over 131 transactions" + } + ] + }, + { + "id": 1016, + "type": "message", + "date": "2022-07-14T06:00:03", + "date_unixtime": "1657771203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022292 BTC for 109.61 CZK @ 491,721 CZK\nFees are 0.38499334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (103.26140999190792034089193118 CZK)\nThe limits being 0.10 % (53.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02517968 BTC (12,299.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.66 % (81.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,353.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10874151 BTC (53,470.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.18 CZK over 132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022292 BTC for 109.61 CZK @ 491,721 CZK\nFees are 0.38499334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (103.26140999190792034089193118 CZK)\nThe limits being 0.10 % (53.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02517968 BTC (12,299.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.66 % (81.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,353.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10874151 BTC (53,470.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.18 CZK over 132 transactions" + } + ] + }, + { + "id": 1017, + "type": "message", + "date": "2022-07-14T10:00:03", + "date_unixtime": "1657785603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022538 BTC for 109.61 CZK @ 486,356 CZK\nFees are 0.38499499 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (97.27119999692265286953998038 CZK)\nThe limits being 0.10 % (53.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02540506 BTC (12,409.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.43 % (-53.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,243.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10896689 BTC (52,996.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.31 CZK over 133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022538 BTC for 109.61 CZK @ 486,356 CZK\nFees are 0.38499499 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (97.27119999692265286953998038 CZK)\nThe limits being 0.10 % (53.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02540506 BTC (12,409.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.43 % (-53.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,243.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10896689 BTC (52,996.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.31 CZK over 133 transactions" + } + ] + }, + { + "id": 1018, + "type": "message", + "date": "2022-07-14T14:00:03", + "date_unixtime": "1657800003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022792 BTC for 109.61 CZK @ 480,926 CZK\nFees are 0.38498704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (96.18519999237488026725694887 CZK)\nThe limits being 0.10 % (52.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02563298 BTC (12,519.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 480,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.53 % (-192.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,133.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10919481 BTC (52,514.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.43 CZK over 134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022792 BTC for 109.61 CZK @ 480,926 CZK\nFees are 0.38498704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (96.18519999237488026725694887 CZK)\nThe limits being 0.10 % (52.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02563298 BTC (12,519.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 480,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.53 % (-192.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,133.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10919481 BTC (52,514.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.43 CZK over 134 transactions" + } + ] + }, + { + "id": 1019, + "type": "message", + "date": "2022-07-14T18:00:04", + "date_unixtime": "1657814404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022035 BTC for 109.62 CZK @ 497,464 CZK\nFees are 0.38499947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (114.41671999646347834768010172 CZK)\nThe limits being 0.10 % (54.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02585333 BTC (12,629.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 497,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.83 % (231.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,023.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10941516 BTC (54,430.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.55 CZK over 135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022035 BTC for 109.62 CZK @ 497,464 CZK\nFees are 0.38499947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (114.41671999646347834768010172 CZK)\nThe limits being 0.10 % (54.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02585333 BTC (12,629.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 497,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.83 % (231.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,023.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10941516 BTC (54,430.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.55 CZK over 135 transactions" + } + ] + }, + { + "id": 1020, + "type": "message", + "date": "2022-07-14T22:00:04", + "date_unixtime": "1657828804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021775 BTC for 109.61 CZK @ 503,387 CZK\nFees are 0.38498657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (115.77900999223727287444575444 CZK)\nThe limits being 0.10 % (55.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02607108 BTC (12,739.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.02 % (384.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,913.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10963291 BTC (55,187.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.67 CZK over 136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021775 BTC for 109.61 CZK @ 503,387 CZK\nFees are 0.38498657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (115.77900999223727287444575444 CZK)\nThe limits being 0.10 % (55.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02607108 BTC (12,739.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.02 % (384.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,913.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10963291 BTC (55,187.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.67 CZK over 136 transactions" + } + ] + }, + { + "id": 1021, + "type": "message", + "date": "2022-07-15T02:00:03", + "date_unixtime": "1657843203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021817 BTC for 109.61 CZK @ 502,426 CZK\nFees are 0.38499276 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (110.53371999852283976792141014 CZK)\nThe limits being 0.10 % (55.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02628925 BTC (12,849.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.79 % (358.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,803.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10985108 BTC (55,192.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.79 CZK over 137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021817 BTC for 109.61 CZK @ 502,426 CZK\nFees are 0.38499276 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (110.53371999852283976792141014 CZK)\nThe limits being 0.10 % (55.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02628925 BTC (12,849.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.79 % (358.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,803.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10985108 BTC (55,192.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.79 CZK over 137 transactions" + } + ] + }, + { + "id": 1022, + "type": "message", + "date": "2022-07-15T06:00:04", + "date_unixtime": "1657857604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021788 BTC for 109.62 CZK @ 503,099 CZK\nFees are 0.38499602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (95.58880999529002996580080605 CZK)\nThe limits being 0.10 % (55.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02650713 BTC (12,959.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.90 % (376.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,693.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11006896 BTC (55,375.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.91 CZK over 138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021788 BTC for 109.62 CZK @ 503,099 CZK\nFees are 0.38499602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (95.58880999529002996580080605 CZK)\nThe limits being 0.10 % (55.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02650713 BTC (12,959.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.90 % (376.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,693.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11006896 BTC (55,375.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.91 CZK over 138 transactions" + } + ] + }, + { + "id": 1023, + "type": "message", + "date": "2022-07-15T10:00:03", + "date_unixtime": "1657872003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021550 BTC for 109.61 CZK @ 508,653 CZK\nFees are 0.38499431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (91.55753999563014368503740389 CZK)\nThe limits being 0.10 % (56.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02672263 BTC (13,069.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 508,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.00 % (522.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,583.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11028446 BTC (56,096.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.03 CZK over 139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021550 BTC for 109.61 CZK @ 508,653 CZK\nFees are 0.38499431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (91.55753999563014368503740389 CZK)\nThe limits being 0.10 % (56.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02672263 BTC (13,069.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 508,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.00 % (522.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,583.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11028446 BTC (56,096.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.03 CZK over 139 transactions" + } + ] + }, + { + "id": 1024, + "type": "message", + "date": "2022-07-15T14:00:05", + "date_unixtime": "1657886405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021664 BTC for 109.61 CZK @ 505,970 CZK\nFees are 0.38498946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.477599998969632872832825140 CZK)\nThe limits being 0.10 % (55.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02693927 BTC (13,179.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.42 % (450.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,473.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11050110 BTC (55,910.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.14 CZK over 140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021664 BTC for 109.61 CZK @ 505,970 CZK\nFees are 0.38498946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.477599998969632872832825140 CZK)\nThe limits being 0.10 % (55.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02693927 BTC (13,179.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.42 % (450.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,473.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11050110 BTC (55,910.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.14 CZK over 140 transactions" + } + ] + }, + { + "id": 1025, + "type": "message", + "date": "2022-07-15T18:00:05", + "date_unixtime": "1657900805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021664 BTC for 109.61 CZK @ 505,964 CZK\nFees are 0.38498489 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (96.13315999706345368757355165 CZK)\nThe limits being 0.10 % (56.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02715591 BTC (13,289.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.39 % (450.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,363.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11071774 BTC (56,019.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.25 CZK over 141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021664 BTC for 109.61 CZK @ 505,964 CZK\nFees are 0.38498489 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (96.13315999706345368757355165 CZK)\nThe limits being 0.10 % (56.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02715591 BTC (13,289.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.39 % (450.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,363.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11071774 BTC (56,019.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.25 CZK over 141 transactions" + } + ] + }, + { + "id": 1026, + "type": "message", + "date": "2022-07-15T22:00:04", + "date_unixtime": "1657915204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021369 BTC for 109.62 CZK @ 512,965 CZK\nFees are 0.38499701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (82.07439999404955975252790534 CZK)\nThe limits being 0.10 % (56.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02736960 BTC (13,399.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 512,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.78 % (640.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,253.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11093143 BTC (56,903.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.36 CZK over 142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021369 BTC for 109.62 CZK @ 512,965 CZK\nFees are 0.38499701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (82.07439999404955975252790534 CZK)\nThe limits being 0.10 % (56.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02736960 BTC (13,399.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 512,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.78 % (640.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,253.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11093143 BTC (56,903.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.36 CZK over 142 transactions" + } + ] + }, + { + "id": 1027, + "type": "message", + "date": "2022-07-16T02:00:04", + "date_unixtime": "1657929604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021673 BTC for 109.61 CZK @ 505,757 CZK\nFees are 0.38498726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (101.15139999895626691712582301 CZK)\nThe limits being 0.10 % (56.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02758633 BTC (13,509.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.27 % (442.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,143.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11114816 BTC (56,213.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.47 CZK over 143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021673 BTC for 109.61 CZK @ 505,757 CZK\nFees are 0.38498726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (101.15139999895626691712582301 CZK)\nThe limits being 0.10 % (56.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02758633 BTC (13,509.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.27 % (442.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,143.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11114816 BTC (56,213.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.47 CZK over 143 transactions" + } + ] + }, + { + "id": 1028, + "type": "message", + "date": "2022-07-16T06:00:03", + "date_unixtime": "1657944003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021757 BTC for 109.62 CZK @ 503,815 CZK\nFees are 0.38499539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (85.64854999733318365268373214 CZK)\nThe limits being 0.10 % (56.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02780390 BTC (13,619.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.85 % (388.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,033.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11136573 BTC (56,107.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.58 CZK over 144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021757 BTC for 109.62 CZK @ 503,815 CZK\nFees are 0.38499539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (85.64854999733318365268373214 CZK)\nThe limits being 0.10 % (56.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02780390 BTC (13,619.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.85 % (388.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,033.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11136573 BTC (56,107.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.58 CZK over 144 transactions" + } + ] + }, + { + "id": 1029, + "type": "message", + "date": "2022-07-16T10:00:04", + "date_unixtime": "1657958404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021950 BTC for 109.61 CZK @ 499,369 CZK\nFees are 0.38498298 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.949519998456427560485907524 CZK)\nThe limits being 0.10 % (55.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02802340 BTC (13,729.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.93 % (264.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,923.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11158523 BTC (55,722.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.69 CZK over 145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021950 BTC for 109.61 CZK @ 499,369 CZK\nFees are 0.38498298 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.949519998456427560485907524 CZK)\nThe limits being 0.10 % (55.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02802340 BTC (13,729.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.93 % (264.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,923.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11158523 BTC (55,722.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.69 CZK over 145 transactions" + } + ] + }, + { + "id": 1030, + "type": "message", + "date": "2022-07-16T14:00:04", + "date_unixtime": "1657972804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021867 BTC for 109.61 CZK @ 501,279 CZK\nFees are 0.38499416 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.025579999429900410984383578 CZK)\nThe limits being 0.10 % (56.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02824207 BTC (13,839.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.29 % (317.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,813.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11180390 BTC (56,044.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.79 CZK over 146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021867 BTC for 109.61 CZK @ 501,279 CZK\nFees are 0.38499416 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.025579999429900410984383578 CZK)\nThe limits being 0.10 % (56.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02824207 BTC (13,839.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.29 % (317.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,813.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11180390 BTC (56,044.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.79 CZK over 146 transactions" + } + ] + }, + { + "id": 1031, + "type": "message", + "date": "2022-07-16T18:00:04", + "date_unixtime": "1657987204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021505 BTC for 109.62 CZK @ 509,719 CZK\nFees are 0.38499553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.194379999228461834404972042 CZK)\nThe limits being 0.10 % (57.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02845712 BTC (13,949.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 509,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.98 % (555.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,703.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11201895 BTC (57,098.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.90 CZK over 147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021505 BTC for 109.62 CZK @ 509,719 CZK\nFees are 0.38499553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.194379999228461834404972042 CZK)\nThe limits being 0.10 % (57.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02845712 BTC (13,949.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 509,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.98 % (555.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,703.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11201895 BTC (57,098.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.90 CZK over 147 transactions" + } + ] + }, + { + "id": 1032, + "type": "message", + "date": "2022-07-16T22:00:10", + "date_unixtime": "1658001610", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021268 BTC for 109.61 CZK @ 515,383 CZK\nFees are 0.38498354 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (51.53829999646713276149613273 CZK)\nThe limits being 0.10 % (57.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02866980 BTC (14,059.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.09 % (716.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,593.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11223163 BTC (57,842.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.00 CZK over 148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021268 BTC for 109.61 CZK @ 515,383 CZK\nFees are 0.38498354 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (51.53829999646713276149613273 CZK)\nThe limits being 0.10 % (57.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02866980 BTC (14,059.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.09 % (716.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,593.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11223163 BTC (57,842.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.00 CZK over 148 transactions" + } + ] + }, + { + "id": 1033, + "type": "message", + "date": "2022-07-17T02:00:05", + "date_unixtime": "1658016005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021272 BTC for 109.62 CZK @ 515,305 CZK\nFees are 0.38499767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (56.683549995568350187656477996 CZK)\nThe limits being 0.10 % (57.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02888252 BTC (14,169.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.04 % (713.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,483.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11244435 BTC (57,943.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.10 CZK over 149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021272 BTC for 109.62 CZK @ 515,305 CZK\nFees are 0.38499767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (56.683549995568350187656477996 CZK)\nThe limits being 0.10 % (57.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02888252 BTC (14,169.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.04 % (713.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,483.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11244435 BTC (57,943.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.10 CZK over 149 transactions" + } + ] + }, + { + "id": 1034, + "type": "message", + "date": "2022-07-17T06:00:03", + "date_unixtime": "1658030403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021133 BTC for 109.61 CZK @ 518,674 CZK\nFees are 0.38498256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.493919997182057942236007318 CZK)\nThe limits being 0.10 % (58.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02909385 BTC (14,279.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.68 % (810.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,373.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11265568 BTC (58,431.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.20 CZK over 150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021133 BTC for 109.61 CZK @ 518,674 CZK\nFees are 0.38498256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.493919997182057942236007318 CZK)\nThe limits being 0.10 % (58.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02909385 BTC (14,279.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.68 % (810.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,373.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11265568 BTC (58,431.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.20 CZK over 150 transactions" + } + ] + }, + { + "id": 1035, + "type": "message", + "date": "2022-07-17T10:00:04", + "date_unixtime": "1658044804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020966 BTC for 109.61 CZK @ 522,821 CZK\nFees are 0.38499406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.456419999238570754529327645 CZK)\nThe limits being 0.10 % (59.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02930351 BTC (14,389.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 522,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.47 % (930.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,263.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11286534 BTC (59,008.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.30 CZK over 151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020966 BTC for 109.61 CZK @ 522,821 CZK\nFees are 0.38499406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.456419999238570754529327645 CZK)\nThe limits being 0.10 % (59.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02930351 BTC (14,389.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 522,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.47 % (930.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,263.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11286534 BTC (59,008.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.30 CZK over 151 transactions" + } + ] + }, + { + "id": 1036, + "type": "message", + "date": "2022-07-17T14:00:04", + "date_unixtime": "1658059204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020974 BTC for 109.61 CZK @ 522,619 CZK\nFees are 0.38499215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.2261899999187548453113635034 CZK)\nThe limits being 0.10 % (59.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02951325 BTC (14,499.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 522,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.38 % (924.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,153.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11307508 BTC (59,095.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.39 CZK over 152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020974 BTC for 109.61 CZK @ 522,619 CZK\nFees are 0.38499215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.2261899999187548453113635034 CZK)\nThe limits being 0.10 % (59.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02951325 BTC (14,499.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 522,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.38 % (924.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,153.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11307508 BTC (59,095.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.39 CZK over 152 transactions" + } + ] + }, + { + "id": 1037, + "type": "message", + "date": "2022-07-17T18:00:03", + "date_unixtime": "1658073603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021303 BTC for 109.61 CZK @ 514,537 CZK\nFees are 0.38498410 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (66.889809993988790255090144643 CZK)\nThe limits being 0.10 % (58.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02972628 BTC (14,609.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.69 % (685.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,043.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11328811 BTC (58,290.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.49 CZK over 153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021303 BTC for 109.61 CZK @ 514,537 CZK\nFees are 0.38498410 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (66.889809993988790255090144643 CZK)\nThe limits being 0.10 % (58.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02972628 BTC (14,609.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.69 % (685.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,043.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11328811 BTC (58,290.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.49 CZK over 153 transactions" + } + ] + }, + { + "id": 1038, + "type": "message", + "date": "2022-07-17T22:00:05", + "date_unixtime": "1658088005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021449 BTC for 109.61 CZK @ 511,045 CZK\nFees are 0.38499192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (61.325399995999827449002852456 CZK)\nThe limits being 0.10 % (58.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.02994077 BTC (14,719.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 511,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.95 % (581.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,933.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11350260 BTC (58,004.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.58 CZK over 154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021449 BTC for 109.61 CZK @ 511,045 CZK\nFees are 0.38499192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (61.325399995999827449002852456 CZK)\nThe limits being 0.10 % (58.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.02994077 BTC (14,719.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 511,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.95 % (581.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,933.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11350260 BTC (58,004.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.58 CZK over 154 transactions" + } + ] + }, + { + "id": 1039, + "type": "message", + "date": "2022-07-18T02:00:05", + "date_unixtime": "1658102405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021679 BTC for 109.61 CZK @ 505,624 CZK\nFees are 0.38499257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (65.731119997394607135554182532 CZK)\nThe limits being 0.10 % (57.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03015756 BTC (14,829.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.82 % (418.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,823.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11371939 BTC (57,499.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.67 CZK over 155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021679 BTC for 109.61 CZK @ 505,624 CZK\nFees are 0.38499257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (65.731119997394607135554182532 CZK)\nThe limits being 0.10 % (57.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03015756 BTC (14,829.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.82 % (418.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,823.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11371939 BTC (57,499.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.67 CZK over 155 transactions" + } + ] + }, + { + "id": 1040, + "type": "message", + "date": "2022-07-18T06:00:04", + "date_unixtime": "1658116804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021204 BTC for 109.61 CZK @ 516,941 CZK\nFees are 0.38498534 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.355279998593866947667694292 CZK)\nThe limits being 0.10 % (58.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03036960 BTC (14,939.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.09 % (759.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,713.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11393143 BTC (58,895.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.77 CZK over 156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021204 BTC for 109.61 CZK @ 516,941 CZK\nFees are 0.38498534 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.355279998593866947667694292 CZK)\nThe limits being 0.10 % (58.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03036960 BTC (14,939.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.09 % (759.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,713.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11393143 BTC (58,895.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.77 CZK over 156 transactions" + } + ] + }, + { + "id": 1041, + "type": "message", + "date": "2022-07-18T10:00:04", + "date_unixtime": "1658131204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020377 BTC for 109.61 CZK @ 537,920 CZK\nFees are 0.38498460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (43.033599998278587147467057133 CZK)\nThe limits being 0.10 % (61.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03057337 BTC (15,049.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 537,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.28 % (1,396.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,603.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11413520 BTC (61,395.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.86 CZK over 157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020377 BTC for 109.61 CZK @ 537,920 CZK\nFees are 0.38498460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (43.033599998278587147467057133 CZK)\nThe limits being 0.10 % (61.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03057337 BTC (15,049.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 537,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.28 % (1,396.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,603.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11413520 BTC (61,395.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.86 CZK over 157 transactions" + } + ] + }, + { + "id": 1042, + "type": "message", + "date": "2022-07-18T14:00:04", + "date_unixtime": "1658145604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020490 BTC for 109.61 CZK @ 534,957 CZK\nFees are 0.38498717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (42.796559999007864859521688730 CZK)\nThe limits being 0.10 % (61.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03077827 BTC (15,159.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 534,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.61 % (1,305.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,493.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11434010 BTC (61,167.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.95 CZK over 158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020490 BTC for 109.61 CZK @ 534,957 CZK\nFees are 0.38498717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (42.796559999007864859521688730 CZK)\nThe limits being 0.10 % (61.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03077827 BTC (15,159.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 534,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.61 % (1,305.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,493.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11434010 BTC (61,167.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.95 CZK over 158 transactions" + } + ] + }, + { + "id": 1043, + "type": "message", + "date": "2022-07-18T18:00:04", + "date_unixtime": "1658160004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020064 BTC for 109.61 CZK @ 546,316 CZK\nFees are 0.38498771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (76.484239994548585532772457481 CZK)\nThe limits being 0.10 % (62.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03097891 BTC (15,269.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 546,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.84 % (1,654.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,383.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11454074 BTC (62,575.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.04 CZK over 159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020064 BTC for 109.61 CZK @ 546,316 CZK\nFees are 0.38498771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (76.484239994548585532772457481 CZK)\nThe limits being 0.10 % (62.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03097891 BTC (15,269.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 546,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.84 % (1,654.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,383.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11454074 BTC (62,575.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.04 CZK over 159 transactions" + } + ] + }, + { + "id": 1044, + "type": "message", + "date": "2022-07-18T22:00:03", + "date_unixtime": "1658174403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021063 BTC for 109.61 CZK @ 520,408 CZK\nFees are 0.38499015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (98.87751999133451189838082970 CZK)\nThe limits being 0.10 % (59.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03118954 BTC (15,379.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 520,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.54 % (851.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,273.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11475137 BTC (59,717.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.12 CZK over 160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021063 BTC for 109.61 CZK @ 520,408 CZK\nFees are 0.38499015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (98.87751999133451189838082970 CZK)\nThe limits being 0.10 % (59.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03118954 BTC (15,379.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 520,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.54 % (851.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,273.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11475137 BTC (59,717.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.12 CZK over 160 transactions" + } + ] + }, + { + "id": 1045, + "type": "message", + "date": "2022-07-19T02:00:05", + "date_unixtime": "1658188805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020208 BTC for 109.62 CZK @ 542,435 CZK\nFees are 0.38499621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (103.06264999362879170725106624 CZK)\nThe limits being 0.10 % (62.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03139162 BTC (15,489.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 542,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.93 % (1,538.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,163.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11495345 BTC (62,354.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.21 CZK over 161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020208 BTC for 109.62 CZK @ 542,435 CZK\nFees are 0.38499621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (103.06264999362879170725106624 CZK)\nThe limits being 0.10 % (62.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03139162 BTC (15,489.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 542,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.93 % (1,538.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,163.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11495345 BTC (62,354.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.21 CZK over 161 transactions" + } + ] + }, + { + "id": 1046, + "type": "message", + "date": "2022-07-19T06:00:05", + "date_unixtime": "1658203205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020703 BTC for 109.62 CZK @ 529,470 CZK\nFees are 0.38499941 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (90.00989999234914672529160064 CZK)\nThe limits being 0.10 % (60.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03159865 BTC (15,599.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 529,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.25 % (1,130.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,053.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11516048 BTC (60,974.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.29 CZK over 162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020703 BTC for 109.62 CZK @ 529,470 CZK\nFees are 0.38499941 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (90.00989999234914672529160064 CZK)\nThe limits being 0.10 % (60.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03159865 BTC (15,599.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 529,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.25 % (1,130.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,053.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11516048 BTC (60,974.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.29 CZK over 162 transactions" + } + ] + }, + { + "id": 1047, + "type": "message", + "date": "2022-07-19T10:00:05", + "date_unixtime": "1658217605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021043 BTC for 109.61 CZK @ 520,894 CZK\nFees are 0.38498378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (98.96985999507829141747646010 CZK)\nThe limits being 0.10 % (60.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03180908 BTC (15,709.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 520,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.47 % (859.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,943.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11537091 BTC (60,096.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.38 CZK over 163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021043 BTC for 109.61 CZK @ 520,894 CZK\nFees are 0.38498378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (98.96985999507829141747646010 CZK)\nThe limits being 0.10 % (60.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03180908 BTC (15,709.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 520,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.47 % (859.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,943.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11537091 BTC (60,096.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.38 CZK over 163 transactions" + } + ] + }, + { + "id": 1048, + "type": "message", + "date": "2022-07-19T14:00:03", + "date_unixtime": "1658232003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020857 BTC for 109.61 CZK @ 525,552 CZK\nFees are 0.38499311 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (78.832799998394648791080955356 CZK)\nThe limits being 0.10 % (60.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03201765 BTC (15,819.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 525,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.37 % (1,007.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,833.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11557948 BTC (60,743.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.46 CZK over 164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020857 BTC for 109.61 CZK @ 525,552 CZK\nFees are 0.38499311 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (78.832799998394648791080955356 CZK)\nThe limits being 0.10 % (60.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03201765 BTC (15,819.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 525,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.37 % (1,007.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,833.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11557948 BTC (60,743.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.46 CZK over 164 transactions" + } + ] + }, + { + "id": 1049, + "type": "message", + "date": "2022-07-19T18:00:04", + "date_unixtime": "1658246404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019751 BTC for 109.62 CZK @ 554,987 CZK\nFees are 0.38499698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (99.89765999246674914342760190 CZK)\nThe limits being 0.10 % (64.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03221516 BTC (15,929.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.24 % (1,949.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,723.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11577699 BTC (64,254.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.54 CZK over 165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019751 BTC for 109.62 CZK @ 554,987 CZK\nFees are 0.38499698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (99.89765999246674914342760190 CZK)\nThe limits being 0.10 % (64.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03221516 BTC (15,929.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.24 % (1,949.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,723.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11577699 BTC (64,254.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.54 CZK over 165 transactions" + } + ] + }, + { + "id": 1050, + "type": "message", + "date": "2022-07-19T22:00:03", + "date_unixtime": "1658260803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019522 BTC for 109.61 CZK @ 561,486 CZK\nFees are 0.38498930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (106.68233999105783175543726248 CZK)\nThe limits being 0.10 % (65.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03241038 BTC (16,039.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 561,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.46 % (2,158.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,613.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11597221 BTC (65,116.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.62 CZK over 166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019522 BTC for 109.61 CZK @ 561,486 CZK\nFees are 0.38498930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (106.68233999105783175543726248 CZK)\nThe limits being 0.10 % (65.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03241038 BTC (16,039.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 561,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.46 % (2,158.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,613.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11597221 BTC (65,116.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.62 CZK over 166 transactions" + } + ] + }, + { + "id": 1051, + "type": "message", + "date": "2022-07-20T02:00:04", + "date_unixtime": "1658275204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019532 BTC for 109.61 CZK @ 561,195 CZK\nFees are 0.38498688 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (101.01509999458173272514048465 CZK)\nThe limits being 0.10 % (65.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03260570 BTC (16,149.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 561,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.30 % (2,148.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,503.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11616753 BTC (65,192.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.70 CZK over 167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019532 BTC for 109.61 CZK @ 561,195 CZK\nFees are 0.38498688 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (101.01509999458173272514048465 CZK)\nThe limits being 0.10 % (65.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03260570 BTC (16,149.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 561,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.30 % (2,148.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,503.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11616753 BTC (65,192.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.70 CZK over 167 transactions" + } + ] + }, + { + "id": 1052, + "type": "message", + "date": "2022-07-20T06:00:03", + "date_unixtime": "1658289603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019520 BTC for 109.62 CZK @ 561,555 CZK\nFees are 0.38499717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.386599996324340219069322943 CZK)\nThe limits being 0.10 % (65.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03280090 BTC (16,259.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 561,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.28 % (2,159.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,393.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11636273 BTC (65,344.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.78 CZK over 168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019520 BTC for 109.62 CZK @ 561,555 CZK\nFees are 0.38499717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.386599996324340219069322943 CZK)\nThe limits being 0.10 % (65.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03280090 BTC (16,259.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 561,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.28 % (2,159.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,393.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11636273 BTC (65,344.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.78 CZK over 168 transactions" + } + ] + }, + { + "id": 1053, + "type": "message", + "date": "2022-07-20T10:00:03", + "date_unixtime": "1658304003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019538 BTC for 109.61 CZK @ 561,029 CZK\nFees are 0.38499123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (50.492609999508833424298607245 CZK)\nThe limits being 0.10 % (65.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03299628 BTC (16,369.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 561,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.09 % (2,142.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,283.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11655811 BTC (65,392.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.86 CZK over 169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019538 BTC for 109.61 CZK @ 561,029 CZK\nFees are 0.38499123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (50.492609999508833424298607245 CZK)\nThe limits being 0.10 % (65.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03299628 BTC (16,369.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 561,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.09 % (2,142.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,283.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11655811 BTC (65,392.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.86 CZK over 169 transactions" + } + ] + }, + { + "id": 1054, + "type": "message", + "date": "2022-07-20T14:00:04", + "date_unixtime": "1658318404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019214 BTC for 109.61 CZK @ 570,474 CZK\nFees are 0.38498079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.637919999892123171066355711 CZK)\nThe limits being 0.10 % (66.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03318842 BTC (16,479.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 570,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.89 % (2,453.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,173.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11675025 BTC (66,602.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.94 CZK over 170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019214 BTC for 109.61 CZK @ 570,474 CZK\nFees are 0.38498079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.637919999892123171066355711 CZK)\nThe limits being 0.10 % (66.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03318842 BTC (16,479.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 570,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.89 % (2,453.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,173.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11675025 BTC (66,602.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.94 CZK over 170 transactions" + } + ] + }, + { + "id": 1055, + "type": "message", + "date": "2022-07-20T18:00:04", + "date_unixtime": "1658332804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018896 BTC for 109.61 CZK @ 580,078 CZK\nFees are 0.38498313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (110.21481999390785932555277528 CZK)\nThe limits being 0.10 % (67.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03337738 BTC (16,589.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.71 % (2,771.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,063.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11693921 BTC (67,833.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.01 CZK over 171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018896 BTC for 109.61 CZK @ 580,078 CZK\nFees are 0.38498313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (110.21481999390785932555277528 CZK)\nThe limits being 0.10 % (67.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03337738 BTC (16,589.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.71 % (2,771.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,063.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11693921 BTC (67,833.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.01 CZK over 171 transactions" + } + ] + }, + { + "id": 1056, + "type": "message", + "date": "2022-07-20T22:00:04", + "date_unixtime": "1658347204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019246 BTC for 109.61 CZK @ 569,529 CZK\nFees are 0.38498317 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (142.38224998745686988401449131 CZK)\nThe limits being 0.10 % (66.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03356984 BTC (16,699.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.49 % (2,419.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,953.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11713167 BTC (66,709.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.09 CZK over 172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019246 BTC for 109.61 CZK @ 569,529 CZK\nFees are 0.38498317 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (142.38224998745686988401449131 CZK)\nThe limits being 0.10 % (66.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03356984 BTC (16,699.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.49 % (2,419.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,953.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11713167 BTC (66,709.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.09 CZK over 172 transactions" + } + ] + }, + { + "id": 1057, + "type": "message", + "date": "2022-07-21T02:00:04", + "date_unixtime": "1658361604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019609 BTC for 109.61 CZK @ 558,991 CZK\nFees are 0.38498666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (145.33765998921160811452333580 CZK)\nThe limits being 0.10 % (65.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03376593 BTC (16,809.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.29 % (2,065.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,843.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11732776 BTC (65,585.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.17 CZK over 173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019609 BTC for 109.61 CZK @ 558,991 CZK\nFees are 0.38498666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (145.33765998921160811452333580 CZK)\nThe limits being 0.10 % (65.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03376593 BTC (16,809.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.29 % (2,065.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,843.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11732776 BTC (65,585.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.17 CZK over 173 transactions" + } + ] + }, + { + "id": 1058, + "type": "message", + "date": "2022-07-21T06:00:04", + "date_unixtime": "1658376004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020049 BTC for 109.62 CZK @ 546,740 CZK\nFees are 0.38499845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (109.34799999095390185425876011 CZK)\nThe limits being 0.10 % (64.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03396642 BTC (16,919.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 546,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.76 % (1,651.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,733.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11752825 BTC (64,257.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.24 CZK over 174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020049 BTC for 109.62 CZK @ 546,740 CZK\nFees are 0.38499845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (109.34799999095390185425876011 CZK)\nThe limits being 0.10 % (64.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03396642 BTC (16,919.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 546,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.76 % (1,651.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,733.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11752825 BTC (64,257.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.24 CZK over 174 transactions" + } + ] + }, + { + "id": 1059, + "type": "message", + "date": "2022-07-21T10:00:03", + "date_unixtime": "1658390403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019902 BTC for 109.62 CZK @ 550,779 CZK\nFees are 0.38499892 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (93.63242999316481351547345320 CZK)\nThe limits being 0.10 % (64.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03416544 BTC (17,029.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 550,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.50 % (1,788.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,623.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11772727 BTC (64,841.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.31 CZK over 175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019902 BTC for 109.62 CZK @ 550,779 CZK\nFees are 0.38499892 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (93.63242999316481351547345320 CZK)\nThe limits being 0.10 % (64.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03416544 BTC (17,029.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 550,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.50 % (1,788.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,623.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11772727 BTC (64,841.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.31 CZK over 175 transactions" + } + ] + }, + { + "id": 1060, + "type": "message", + "date": "2022-07-21T14:00:03", + "date_unixtime": "1658404803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020208 BTC for 109.61 CZK @ 542,418 CZK\nFees are 0.38498415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (70.514339998051159816335620264 CZK)\nThe limits being 0.10 % (63.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03436752 BTC (17,139.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 542,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.76 % (1,502.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,513.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11792935 BTC (63,967.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.38 CZK over 176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020208 BTC for 109.61 CZK @ 542,418 CZK\nFees are 0.38498415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (70.514339998051159816335620264 CZK)\nThe limits being 0.10 % (63.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03436752 BTC (17,139.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 542,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.76 % (1,502.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,513.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11792935 BTC (63,967.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.38 CZK over 176 transactions" + } + ] + }, + { + "id": 1061, + "type": "message", + "date": "2022-07-21T18:00:04", + "date_unixtime": "1658419204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020182 BTC for 109.61 CZK @ 543,129 CZK\nFees are 0.38499281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (97.76321999846242244898775404 CZK)\nThe limits being 0.10 % (64.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03456934 BTC (17,249.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.85 % (1,526.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,403.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11813117 BTC (64,160.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.46 CZK over 177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020182 BTC for 109.61 CZK @ 543,129 CZK\nFees are 0.38499281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (97.76321999846242244898775404 CZK)\nThe limits being 0.10 % (64.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03456934 BTC (17,249.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.85 % (1,526.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,403.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11813117 BTC (64,160.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.46 CZK over 177 transactions" + } + ] + }, + { + "id": 1062, + "type": "message", + "date": "2022-07-21T22:00:03", + "date_unixtime": "1658433603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019701 BTC for 109.61 CZK @ 556,377 CZK\nFees are 0.38498416 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (100.14785999572533137217545807 CZK)\nThe limits being 0.10 % (65.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03476635 BTC (17,359.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.43 % (1,983.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,293.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11832818 BTC (65,835.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.53 CZK over 178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019701 BTC for 109.61 CZK @ 556,377 CZK\nFees are 0.38498416 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (100.14785999572533137217545807 CZK)\nThe limits being 0.10 % (65.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03476635 BTC (17,359.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.43 % (1,983.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,293.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11832818 BTC (65,835.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.53 CZK over 178 transactions" + } + ] + }, + { + "id": 1063, + "type": "message", + "date": "2022-07-22T02:00:04", + "date_unixtime": "1658448004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019751 BTC for 109.61 CZK @ 554,969 CZK\nFees are 0.38498449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (105.44410999504872029462372053 CZK)\nThe limits being 0.10 % (65.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03496386 BTC (17,469.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.07 % (1,934.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,183.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11852569 BTC (65,778.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.60 CZK over 179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019751 BTC for 109.61 CZK @ 554,969 CZK\nFees are 0.38498449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (105.44410999504872029462372053 CZK)\nThe limits being 0.10 % (65.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03496386 BTC (17,469.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.07 % (1,934.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,183.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11852569 BTC (65,778.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.60 CZK over 179 transactions" + } + ] + }, + { + "id": 1064, + "type": "message", + "date": "2022-07-22T06:00:04", + "date_unixtime": "1658462404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019922 BTC for 109.62 CZK @ 550,227 CZK\nFees are 0.38499958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (99.04085999973889199267276909 CZK)\nThe limits being 0.10 % (65.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03516308 BTC (17,579.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 550,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.06 % (1,768.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,073.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11872491 BTC (65,325.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.66 CZK over 180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019922 BTC for 109.62 CZK @ 550,227 CZK\nFees are 0.38499958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (99.04085999973889199267276909 CZK)\nThe limits being 0.10 % (65.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03516308 BTC (17,579.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 550,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.06 % (1,768.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,073.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11872491 BTC (65,325.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.66 CZK over 180 transactions" + } + ] + }, + { + "id": 1065, + "type": "message", + "date": "2022-07-22T10:00:05", + "date_unixtime": "1658476805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019656 BTC for 109.61 CZK @ 557,652 CZK\nFees are 0.38498502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (55.765200000040558087394161137 CZK)\nThe limits being 0.10 % (66.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03535964 BTC (17,689.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 557,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.47 % (2,028.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,963.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11892147 BTC (66,316.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.73 CZK over 181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019656 BTC for 109.61 CZK @ 557,652 CZK\nFees are 0.38498502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (55.765200000040558087394161137 CZK)\nThe limits being 0.10 % (66.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03535964 BTC (17,689.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 557,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.47 % (2,028.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,963.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11892147 BTC (66,316.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.73 CZK over 181 transactions" + } + ] + }, + { + "id": 1066, + "type": "message", + "date": "2022-07-22T14:00:04", + "date_unixtime": "1658491204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019288 BTC for 109.61 CZK @ 568,292 CZK\nFees are 0.38498531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.731679999305624011521681580 CZK)\nThe limits being 0.10 % (67.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03555252 BTC (17,799.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.51 % (2,404.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,853.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11911435 BTC (67,691.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.80 CZK over 182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019288 BTC for 109.61 CZK @ 568,292 CZK\nFees are 0.38498531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.731679999305624011521681580 CZK)\nThe limits being 0.10 % (67.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03555252 BTC (17,799.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.51 % (2,404.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,853.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11911435 BTC (67,691.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.80 CZK over 182 transactions" + } + ] + }, + { + "id": 1067, + "type": "message", + "date": "2022-07-22T18:00:04", + "date_unixtime": "1658505604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019622 BTC for 109.61 CZK @ 558,619 CZK\nFees are 0.38498552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.034279999616061956630541450 CZK)\nThe limits being 0.10 % (66.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03574874 BTC (17,909.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.50 % (2,060.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,743.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11931057 BTC (66,649.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.87 CZK over 183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019622 BTC for 109.61 CZK @ 558,619 CZK\nFees are 0.38498552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.034279999616061956630541450 CZK)\nThe limits being 0.10 % (66.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03574874 BTC (17,909.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.50 % (2,060.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,743.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11931057 BTC (66,649.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.87 CZK over 183 transactions" + } + ] + }, + { + "id": 1068, + "type": "message", + "date": "2022-07-22T22:00:03", + "date_unixtime": "1658520003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020171 BTC for 109.61 CZK @ 543,415 CZK\nFees are 0.38498559 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (81.51224999349730210289468986 CZK)\nThe limits being 0.10 % (64.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03595045 BTC (18,019.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.42 % (1,516.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,633.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11951228 BTC (64,944.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.93 CZK over 184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020171 BTC for 109.61 CZK @ 543,415 CZK\nFees are 0.38498559 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (81.51224999349730210289468986 CZK)\nThe limits being 0.10 % (64.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03595045 BTC (18,019.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.42 % (1,516.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,633.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11951228 BTC (64,944.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.93 CZK over 184 transactions" + } + ] + }, + { + "id": 1069, + "type": "message", + "date": "2022-07-23T02:00:03", + "date_unixtime": "1658534403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020121 BTC for 109.61 CZK @ 544,766 CZK\nFees are 0.38498604 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (70.819579997418210756661114064 CZK)\nThe limits being 0.10 % (65.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03615166 BTC (18,129.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.63 % (1,564.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,523.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11971349 BTC (65,215.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.00 CZK over 185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020121 BTC for 109.61 CZK @ 544,766 CZK\nFees are 0.38498604 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (70.819579997418210756661114064 CZK)\nThe limits being 0.10 % (65.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03615166 BTC (18,129.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.63 % (1,564.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,523.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11971349 BTC (65,215.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.00 CZK over 185 transactions" + } + ] + }, + { + "id": 1070, + "type": "message", + "date": "2022-07-23T06:00:04", + "date_unixtime": "1658548804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020007 BTC for 109.62 CZK @ 547,885 CZK\nFees are 0.38499652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (49.309649999181900684536197085 CZK)\nThe limits being 0.10 % (65.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03635173 BTC (18,239.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 547,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.19 % (1,677.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,413.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11991356 BTC (65,698.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.06 CZK over 186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020007 BTC for 109.62 CZK @ 547,885 CZK\nFees are 0.38499652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (49.309649999181900684536197085 CZK)\nThe limits being 0.10 % (65.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03635173 BTC (18,239.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 547,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.19 % (1,677.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,413.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11991356 BTC (65,698.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.06 CZK over 186 transactions" + } + ] + }, + { + "id": 1071, + "type": "message", + "date": "2022-07-23T10:00:03", + "date_unixtime": "1658563203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020056 BTC for 109.61 CZK @ 546,532 CZK\nFees are 0.38498636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (43.722559998918822016838154611 CZK)\nThe limits being 0.10 % (65.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03655229 BTC (18,349.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 546,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.87 % (1,627.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,303.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12011412 BTC (65,646.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.13 CZK over 187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020056 BTC for 109.61 CZK @ 546,532 CZK\nFees are 0.38498636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (43.722559998918822016838154611 CZK)\nThe limits being 0.10 % (65.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03655229 BTC (18,349.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 546,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.87 % (1,627.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,303.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12011412 BTC (65,646.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.13 CZK over 187 transactions" + } + ] + }, + { + "id": 1072, + "type": "message", + "date": "2022-07-23T14:00:03", + "date_unixtime": "1658577603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020519 BTC for 109.61 CZK @ 534,208 CZK\nFees are 0.38499226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (37.394559997171554610279781766 CZK)\nThe limits being 0.10 % (64.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03675748 BTC (18,459.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 534,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.37 % (1,176.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,193.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12031931 BTC (64,275.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.19 CZK over 188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020519 BTC for 109.61 CZK @ 534,208 CZK\nFees are 0.38499226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (37.394559997171554610279781766 CZK)\nThe limits being 0.10 % (64.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03675748 BTC (18,459.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 534,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.37 % (1,176.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,193.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12031931 BTC (64,275.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.19 CZK over 188 transactions" + } + ] + }, + { + "id": 1073, + "type": "message", + "date": "2022-07-23T18:00:05", + "date_unixtime": "1658592005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020566 BTC for 109.61 CZK @ 532,978 CZK\nFees are 0.38498564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.659559999594921615636723379 CZK)\nThe limits being 0.10 % (64.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03696314 BTC (18,569.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 532,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.09 % (1,131.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,083.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12052497 BTC (64,237.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.25 CZK over 189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020566 BTC for 109.61 CZK @ 532,978 CZK\nFees are 0.38498564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.659559999594921615636723379 CZK)\nThe limits being 0.10 % (64.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03696314 BTC (18,569.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 532,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.09 % (1,131.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,083.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12052497 BTC (64,237.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.25 CZK over 189 transactions" + } + ] + }, + { + "id": 1074, + "type": "message", + "date": "2022-07-23T22:00:04", + "date_unixtime": "1658606404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020475 BTC for 109.62 CZK @ 535,365 CZK\nFees are 0.38499874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.060949999543721516815687219 CZK)\nThe limits being 0.10 % (64.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03716789 BTC (18,679.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 535,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.53 % (1,218.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,973.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12072972 BTC (64,634.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.31 CZK over 190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020475 BTC for 109.62 CZK @ 535,365 CZK\nFees are 0.38499874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.060949999543721516815687219 CZK)\nThe limits being 0.10 % (64.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03716789 BTC (18,679.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 535,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.53 % (1,218.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,973.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12072972 BTC (64,634.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.31 CZK over 190 transactions" + } + ] + }, + { + "id": 1075, + "type": "message", + "date": "2022-07-24T02:00:05", + "date_unixtime": "1658620805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020314 BTC for 109.61 CZK @ 539,587 CZK\nFees are 0.38498370 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.187609999833702058547765698 CZK)\nThe limits being 0.10 % (65.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03737103 BTC (18,789.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 539,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.32 % (1,375.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,863.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12093286 BTC (65,253.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.37 CZK over 191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020314 BTC for 109.61 CZK @ 539,587 CZK\nFees are 0.38498370 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.187609999833702058547765698 CZK)\nThe limits being 0.10 % (65.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03737103 BTC (18,789.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 539,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.32 % (1,375.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,863.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12093286 BTC (65,253.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.37 CZK over 191 transactions" + } + ] + }, + { + "id": 1076, + "type": "message", + "date": "2022-07-24T06:00:03", + "date_unixtime": "1658635203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020422 BTC for 109.61 CZK @ 536,731 CZK\nFees are 0.38498195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.734619999329542761338156526 CZK)\nThe limits being 0.10 % (65.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03757525 BTC (18,899.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 536,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.71 % (1,268.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,753.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12113708 BTC (65,018.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.43 CZK over 192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020422 BTC for 109.61 CZK @ 536,731 CZK\nFees are 0.38498195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.734619999329542761338156526 CZK)\nThe limits being 0.10 % (65.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03757525 BTC (18,899.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 536,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.71 % (1,268.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,753.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12113708 BTC (65,018.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.43 CZK over 192 transactions" + } + ] + }, + { + "id": 1077, + "type": "message", + "date": "2022-07-24T10:00:04", + "date_unixtime": "1658649604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020095 BTC for 109.61 CZK @ 545,478 CZK\nFees are 0.38499108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.4547799997842832494827447056 CZK)\nThe limits being 0.10 % (66.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03777620 BTC (19,009.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.40 % (1,596.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,643.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12133803 BTC (66,187.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.49 CZK over 193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020095 BTC for 109.61 CZK @ 545,478 CZK\nFees are 0.38499108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.4547799997842832494827447056 CZK)\nThe limits being 0.10 % (66.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03777620 BTC (19,009.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.40 % (1,596.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,643.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12133803 BTC (66,187.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.49 CZK over 193 transactions" + } + ] + }, + { + "id": 1078, + "type": "message", + "date": "2022-07-24T14:00:04", + "date_unixtime": "1658664004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020131 BTC for 109.61 CZK @ 544,493 CZK\nFees are 0.38498435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.334789999939855827736398340 CZK)\nThe limits being 0.10 % (66.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03797751 BTC (19,119.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.15 % (1,559.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,533.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12153934 BTC (66,177.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.55 CZK over 194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020131 BTC for 109.61 CZK @ 544,493 CZK\nFees are 0.38498435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.334789999939855827736398340 CZK)\nThe limits being 0.10 % (66.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03797751 BTC (19,119.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.15 % (1,559.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,533.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12153934 BTC (66,177.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.55 CZK over 194 transactions" + } + ] + }, + { + "id": 1079, + "type": "message", + "date": "2022-07-24T18:00:04", + "date_unixtime": "1658678404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019946 BTC for 109.61 CZK @ 549,547 CZK\nFees are 0.38498701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.486409999075231076072810639 CZK)\nThe limits being 0.10 % (66.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03817697 BTC (19,229.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 549,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.10 % (1,750.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,423.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12173880 BTC (66,901.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.61 CZK over 195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019946 BTC for 109.61 CZK @ 549,547 CZK\nFees are 0.38498701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.486409999075231076072810639 CZK)\nThe limits being 0.10 % (66.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03817697 BTC (19,229.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 549,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.10 % (1,750.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,423.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12173880 BTC (66,901.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.61 CZK over 195 transactions" + } + ] + }, + { + "id": 1080, + "type": "message", + "date": "2022-07-24T22:00:03", + "date_unixtime": "1658692803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020078 BTC for 109.61 CZK @ 545,939 CZK\nFees are 0.38499048 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.918779999655553605016171858 CZK)\nThe limits being 0.10 % (66.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03837775 BTC (19,339.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.34 % (1,612.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,313.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12193958 BTC (66,571.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.67 CZK over 196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020078 BTC for 109.61 CZK @ 545,939 CZK\nFees are 0.38499048 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.918779999655553605016171858 CZK)\nThe limits being 0.10 % (66.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03837775 BTC (19,339.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.34 % (1,612.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,313.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12193958 BTC (66,571.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.67 CZK over 196 transactions" + } + ] + }, + { + "id": 1081, + "type": "message", + "date": "2022-07-25T02:00:03", + "date_unixtime": "1658707203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020178 BTC for 109.61 CZK @ 543,228 CZK\nFees are 0.38498666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.4322799999782701273069284761 CZK)\nThe limits being 0.10 % (66.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03857953 BTC (19,449.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.75 % (1,508.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,203.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12214136 BTC (66,350.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.73 CZK over 197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020178 BTC for 109.61 CZK @ 543,228 CZK\nFees are 0.38498666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.4322799999782701273069284761 CZK)\nThe limits being 0.10 % (66.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03857953 BTC (19,449.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.75 % (1,508.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,203.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12214136 BTC (66,350.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.73 CZK over 197 transactions" + } + ] + }, + { + "id": 1082, + "type": "message", + "date": "2022-07-25T06:00:03", + "date_unixtime": "1658721603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020858 BTC for 109.61 CZK @ 525,526 CZK\nFees are 0.38499252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.2552599997238546093562740402 CZK)\nThe limits being 0.10 % (64.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03878811 BTC (19,559.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 525,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.22 % (824.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,093.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12234994 BTC (64,298.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.79 CZK over 198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020858 BTC for 109.61 CZK @ 525,526 CZK\nFees are 0.38499252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.2552599997238546093562740402 CZK)\nThe limits being 0.10 % (64.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03878811 BTC (19,559.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 525,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.22 % (824.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,093.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12234994 BTC (64,298.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.79 CZK over 198 transactions" + } + ] + }, + { + "id": 1083, + "type": "message", + "date": "2022-07-25T10:00:04", + "date_unixtime": "1658736004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020743 BTC for 109.61 CZK @ 528,437 CZK\nFees are 0.38499067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.568739999597897740206918364 CZK)\nThe limits being 0.10 % (64.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03899554 BTC (19,669.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 528,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.76 % (937.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,983.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12255737 BTC (64,763.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.84 CZK over 199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020743 BTC for 109.61 CZK @ 528,437 CZK\nFees are 0.38499067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.568739999597897740206918364 CZK)\nThe limits being 0.10 % (64.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03899554 BTC (19,669.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 528,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.76 % (937.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,983.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12255737 BTC (64,763.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.84 CZK over 199 transactions" + } + ] + }, + { + "id": 1084, + "type": "message", + "date": "2022-07-25T14:00:03", + "date_unixtime": "1658750403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020850 BTC for 109.61 CZK @ 525,724 CZK\nFees are 0.38498985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (15.771719998709552537342323450 CZK)\nThe limits being 0.10 % (64.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03920404 BTC (19,779.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 525,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.20 % (831.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,873.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12276587 BTC (64,540.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.90 CZK over 200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020850 BTC for 109.61 CZK @ 525,724 CZK\nFees are 0.38498985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (15.771719998709552537342323450 CZK)\nThe limits being 0.10 % (64.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03920404 BTC (19,779.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 525,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.20 % (831.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,873.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12276587 BTC (64,540.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.90 CZK over 200 transactions" + } + ] + }, + { + "id": 1085, + "type": "message", + "date": "2022-07-25T18:00:04", + "date_unixtime": "1658764804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020855 BTC for 109.61 CZK @ 525,602 CZK\nFees are 0.38499281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (26.280099997646692581718002814 CZK)\nThe limits being 0.10 % (64.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03941259 BTC (19,889.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 525,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.15 % (825.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,763.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12297442 BTC (64,635.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.95 CZK over 201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020855 BTC for 109.61 CZK @ 525,602 CZK\nFees are 0.38499281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (26.280099997646692581718002814 CZK)\nThe limits being 0.10 % (64.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03941259 BTC (19,889.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 525,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.15 % (825.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,763.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12297442 BTC (64,635.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.95 CZK over 201 transactions" + } + ] + }, + { + "id": 1086, + "type": "message", + "date": "2022-07-25T22:00:03", + "date_unixtime": "1658779203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020850 BTC for 109.61 CZK @ 525,717 CZK\nFees are 0.38498473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (31.543019999784925422890387243 CZK)\nThe limits being 0.10 % (64.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03962109 BTC (19,999.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 525,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.15 % (830.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,653.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12318292 BTC (64,759.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.01 CZK over 202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020850 BTC for 109.61 CZK @ 525,717 CZK\nFees are 0.38498473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (31.543019999784925422890387243 CZK)\nThe limits being 0.10 % (64.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03962109 BTC (19,999.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 525,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.15 % (830.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,653.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12318292 BTC (64,759.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.01 CZK over 202 transactions" + } + ] + }, + { + "id": 1087, + "type": "message", + "date": "2022-07-26T02:00:04", + "date_unixtime": "1658793604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021444 BTC for 109.61 CZK @ 511,160 CZK\nFees are 0.38498879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.781199997918124095975594468 CZK)\nThe limits being 0.10 % (63.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.03983553 BTC (20,109.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 511,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.26 % (252.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,543.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12339736 BTC (63,075.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.06 CZK over 203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021444 BTC for 109.61 CZK @ 511,160 CZK\nFees are 0.38498879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.781199997918124095975594468 CZK)\nThe limits being 0.10 % (63.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.03983553 BTC (20,109.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 511,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.26 % (252.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,543.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12339736 BTC (63,075.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.06 CZK over 203 transactions" + } + ] + }, + { + "id": 1088, + "type": "message", + "date": "2022-07-26T06:00:39", + "date_unixtime": "1658808039", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021607 BTC for 109.62 CZK @ 507,317 CZK\nFees are 0.38499874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.365849998924253842056804517 CZK)\nThe limits being 0.10 % (62.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04005160 BTC (20,219.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.49 % (99.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,433.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12361343 BTC (62,711.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.12 CZK over 204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021607 BTC for 109.62 CZK @ 507,317 CZK\nFees are 0.38499874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.365849998924253842056804517 CZK)\nThe limits being 0.10 % (62.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04005160 BTC (20,219.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.49 % (99.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,433.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12361343 BTC (62,711.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.12 CZK over 204 transactions" + } + ] + }, + { + "id": 1089, + "type": "message", + "date": "2022-07-26T10:00:03", + "date_unixtime": "1658822403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021659 BTC for 109.61 CZK @ 506,083 CZK\nFees are 0.38498656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (20.243319998270976095416354408 CZK)\nThe limits being 0.10 % (62.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04026819 BTC (20,329.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.24 % (49.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,323.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12383002 BTC (62,668.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.17 CZK over 205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021659 BTC for 109.61 CZK @ 506,083 CZK\nFees are 0.38498656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (20.243319998270976095416354408 CZK)\nThe limits being 0.10 % (62.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04026819 BTC (20,329.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.24 % (49.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,323.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12383002 BTC (62,668.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.17 CZK over 205 transactions" + } + ] + }, + { + "id": 1090, + "type": "message", + "date": "2022-07-26T14:00:03", + "date_unixtime": "1658836803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021480 BTC for 109.62 CZK @ 510,312 CZK\nFees are 0.38499535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.515599999628859513119352286 CZK)\nThe limits being 0.10 % (63.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04048299 BTC (20,439.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 510,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.07 % (219.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,213.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12404482 BTC (63,301.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.22 CZK over 206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021480 BTC for 109.62 CZK @ 510,312 CZK\nFees are 0.38499535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.515599999628859513119352286 CZK)\nThe limits being 0.10 % (63.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04048299 BTC (20,439.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 510,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.07 % (219.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,213.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12404482 BTC (63,301.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.22 CZK over 206 transactions" + } + ] + }, + { + "id": 1091, + "type": "message", + "date": "2022-07-26T18:00:03", + "date_unixtime": "1658851203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021722 BTC for 109.62 CZK @ 504,632 CZK\nFees are 0.38499937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.324239999794476812052760556 CZK)\nThe limits being 0.10 % (62.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04070021 BTC (20,549.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,898 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.05 % (-10.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,103.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12426204 BTC (62,706.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.27 CZK over 207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021722 BTC for 109.62 CZK @ 504,632 CZK\nFees are 0.38499937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.324239999794476812052760556 CZK)\nThe limits being 0.10 % (62.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04070021 BTC (20,549.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,898 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.05 % (-10.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,103.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12426204 BTC (62,706.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.27 CZK over 207 transactions" + } + ] + }, + { + "id": 1092, + "type": "message", + "date": "2022-07-26T22:00:04", + "date_unixtime": "1658865604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021534 BTC for 109.61 CZK @ 509,017 CZK\nFees are 0.38498377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.811529998862993176709602210 CZK)\nThe limits being 0.10 % (63.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04091555 BTC (20,659.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 509,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.81 % (167.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,993.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12447738 BTC (63,361.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.32 CZK over 208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021534 BTC for 109.61 CZK @ 509,017 CZK\nFees are 0.38498377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.811529998862993176709602210 CZK)\nThe limits being 0.10 % (63.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04091555 BTC (20,659.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 509,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.81 % (167.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,993.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12447738 BTC (63,361.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.32 CZK over 208 transactions" + } + ] + }, + { + "id": 1093, + "type": "message", + "date": "2022-07-27T02:00:04", + "date_unixtime": "1658880004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021248 BTC for 109.62 CZK @ 515,890 CZK\nFees are 0.38499967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.271177554012762559955817289 CZK)\nThe limits being 0.10 % (64.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04112803 BTC (20,769.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.16 % (448.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,883.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12468986 BTC (64,326.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.38 CZK over 209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021248 BTC for 109.62 CZK @ 515,890 CZK\nFees are 0.38499967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.271177554012762559955817289 CZK)\nThe limits being 0.10 % (64.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04112803 BTC (20,769.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.16 % (448.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,883.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12468986 BTC (64,326.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.38 CZK over 209 transactions" + } + ] + }, + { + "id": 1094, + "type": "message", + "date": "2022-07-27T06:00:04", + "date_unixtime": "1658894404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021437 BTC for 109.62 CZK @ 511,339 CZK\nFees are 0.38499789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (15.340169999302018435777991100 CZK)\nThe limits being 0.10 % (63.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04134240 BTC (20,879.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 511,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.25 % (260.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,773.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12490423 BTC (63,868.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.43 CZK over 210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021437 BTC for 109.62 CZK @ 511,339 CZK\nFees are 0.38499789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (15.340169999302018435777991100 CZK)\nThe limits being 0.10 % (63.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04134240 BTC (20,879.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 511,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.25 % (260.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,773.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12490423 BTC (63,868.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.43 CZK over 210 transactions" + } + ] + }, + { + "id": 1095, + "type": "message", + "date": "2022-07-27T10:00:05", + "date_unixtime": "1658908805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021146 BTC for 109.62 CZK @ 518,375 CZK\nFees are 0.38499731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (36.286249999587653371150467359 CZK)\nThe limits being 0.10 % (64.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04155386 BTC (20,989.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.63 % (551.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,663.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12511569 BTC (64,856.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.48 CZK over 211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021146 BTC for 109.62 CZK @ 518,375 CZK\nFees are 0.38499731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (36.286249999587653371150467359 CZK)\nThe limits being 0.10 % (64.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04155386 BTC (20,989.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.63 % (551.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,663.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12511569 BTC (64,856.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.48 CZK over 211 transactions" + } + ] + }, + { + "id": 1096, + "type": "message", + "date": "2022-07-27T14:00:06", + "date_unixtime": "1658923206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021325 BTC for 109.61 CZK @ 514,019 CZK\nFees are 0.38499371 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.841139999684574096173358077 CZK)\nThe limits being 0.10 % (64.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04176711 BTC (21,099.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 1.75 % (369.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,553.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12532894 BTC (64,421.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.53 CZK over 212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021325 BTC for 109.61 CZK @ 514,019 CZK\nFees are 0.38499371 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.841139999684574096173358077 CZK)\nThe limits being 0.10 % (64.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04176711 BTC (21,099.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 1.75 % (369.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,553.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12532894 BTC (64,421.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.53 CZK over 212 transactions" + } + ] + }, + { + "id": 1097, + "type": "message", + "date": "2022-07-27T18:00:03", + "date_unixtime": "1658937603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020969 BTC for 109.62 CZK @ 522,753 CZK\nFees are 0.38499906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (31.365179997720316153228115730 CZK)\nThe limits being 0.10 % (65.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04197680 BTC (21,209.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 522,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.46 % (734.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,443.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12553863 BTC (65,625.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.57 CZK over 213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020969 BTC for 109.62 CZK @ 522,753 CZK\nFees are 0.38499906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (31.365179997720316153228115730 CZK)\nThe limits being 0.10 % (65.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04197680 BTC (21,209.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 522,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.46 % (734.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,443.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12553863 BTC (65,625.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.57 CZK over 213 transactions" + } + ] + }, + { + "id": 1098, + "type": "message", + "date": "2022-07-27T22:00:04", + "date_unixtime": "1658952004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020004 BTC for 109.61 CZK @ 547,945 CZK\nFees are 0.38498095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (32.876699999312544068166934625 CZK)\nThe limits being 0.10 % (68.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04217684 BTC (21,319.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 547,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.40 % (1,791.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,333.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12573867 BTC (68,897.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.62 CZK over 214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020004 BTC for 109.61 CZK @ 547,945 CZK\nFees are 0.38498095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (32.876699999312544068166934625 CZK)\nThe limits being 0.10 % (68.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04217684 BTC (21,319.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 547,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.40 % (1,791.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,333.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12573867 BTC (68,897.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.62 CZK over 214 transactions" + } + ] + }, + { + "id": 1099, + "type": "message", + "date": "2022-07-28T02:00:05", + "date_unixtime": "1658966405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019847 BTC for 109.61 CZK @ 552,295 CZK\nFees are 0.38499152 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.660628539267097330452400326 CZK)\nThe limits being 0.10 % (69.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04237531 BTC (21,429.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 552,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.21 % (1,974.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,223.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12593714 BTC (69,554.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.67 CZK over 215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019847 BTC for 109.61 CZK @ 552,295 CZK\nFees are 0.38499152 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.660628539267097330452400326 CZK)\nThe limits being 0.10 % (69.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04237531 BTC (21,429.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 552,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.21 % (1,974.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,223.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12593714 BTC (69,554.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.67 CZK over 215 transactions" + } + ] + }, + { + "id": 1100, + "type": "message", + "date": "2022-07-28T06:00:04", + "date_unixtime": "1658980804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019688 BTC for 109.61 CZK @ 556,759 CZK\nFees are 0.38499427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.973129999390592900468028704 CZK)\nThe limits being 0.10 % (70.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04257219 BTC (21,539.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.04 % (2,163.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,113.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12613402 BTC (70,226.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.72 CZK over 216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019688 BTC for 109.61 CZK @ 556,759 CZK\nFees are 0.38499427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.973129999390592900468028704 CZK)\nThe limits being 0.10 % (70.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04257219 BTC (21,539.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.04 % (2,163.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,113.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12613402 BTC (70,226.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.72 CZK over 216 transactions" + } + ] + }, + { + "id": 1101, + "type": "message", + "date": "2022-07-28T10:00:03", + "date_unixtime": "1658995203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019856 BTC for 109.61 CZK @ 552,049 CZK\nFees are 0.38499475 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.643429998932021566740421419 CZK)\nThe limits being 0.10 % (69.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04277075 BTC (21,649.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 552,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.06 % (1,962.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,003.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12633258 BTC (69,741.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.77 CZK over 217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019856 BTC for 109.61 CZK @ 552,049 CZK\nFees are 0.38499475 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.643429998932021566740421419 CZK)\nThe limits being 0.10 % (69.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04277075 BTC (21,649.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 552,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.06 % (1,962.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,003.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12633258 BTC (69,741.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.77 CZK over 217 transactions" + } + ] + }, + { + "id": 1102, + "type": "message", + "date": "2022-07-28T14:00:03", + "date_unixtime": "1659009603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019553 BTC for 109.61 CZK @ 560,585 CZK\nFees are 0.38498180 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (39.240941131957445213424879133 CZK)\nThe limits being 0.10 % (70.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04296628 BTC (21,759.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.69 % (2,326.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,893.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12652811 BTC (70,929.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.81 CZK over 218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019553 BTC for 109.61 CZK @ 560,585 CZK\nFees are 0.38498180 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (39.240941131957445213424879133 CZK)\nThe limits being 0.10 % (70.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04296628 BTC (21,759.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.69 % (2,326.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,893.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12652811 BTC (70,929.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.81 CZK over 218 transactions" + } + ] + }, + { + "id": 1103, + "type": "message", + "date": "2022-07-28T18:00:03", + "date_unixtime": "1659024003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019069 BTC for 109.61 CZK @ 574,823 CZK\nFees are 0.38498825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.734069998803025218541962433 CZK)\nThe limits being 0.10 % (72.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04315697 BTC (21,869.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.44 % (2,938.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,783.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12671880 BTC (72,840.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.86 CZK over 219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019069 BTC for 109.61 CZK @ 574,823 CZK\nFees are 0.38498825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.734069998803025218541962433 CZK)\nThe limits being 0.10 % (72.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04315697 BTC (21,869.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.44 % (2,938.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,783.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12671880 BTC (72,840.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.86 CZK over 219 transactions" + } + ] + }, + { + "id": 1104, + "type": "message", + "date": "2022-07-28T22:00:04", + "date_unixtime": "1659038404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019071 BTC for 109.62 CZK @ 574,780 CZK\nFees are 0.38499983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.477999995663021697667309192 CZK)\nThe limits being 0.10 % (72.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04334768 BTC (21,979.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.36 % (2,935.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,673.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12690951 BTC (72,945.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.91 CZK over 220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019071 BTC for 109.62 CZK @ 574,780 CZK\nFees are 0.38499983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.477999995663021697667309192 CZK)\nThe limits being 0.10 % (72.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04334768 BTC (21,979.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.36 % (2,935.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,673.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12690951 BTC (72,945.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.91 CZK over 220 transactions" + } + ] + }, + { + "id": 1105, + "type": "message", + "date": "2022-07-29T02:00:03", + "date_unixtime": "1659052803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019059 BTC for 109.62 CZK @ 575,141 CZK\nFees are 0.38499923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.514099999390872175101087114 CZK)\nThe limits being 0.10 % (73.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04353827 BTC (22,089.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.36 % (2,951.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,563.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12710010 BTC (73,100.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.95 CZK over 221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019059 BTC for 109.62 CZK @ 575,141 CZK\nFees are 0.38499923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.514099999390872175101087114 CZK)\nThe limits being 0.10 % (73.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04353827 BTC (22,089.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.36 % (2,951.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,563.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12710010 BTC (73,100.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.95 CZK over 221 transactions" + } + ] + }, + { + "id": 1106, + "type": "message", + "date": "2022-07-29T06:00:03", + "date_unixtime": "1659067203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019021 BTC for 109.61 CZK @ 576,261 CZK\nFees are 0.38497985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (40.338269997493395375792528054 CZK)\nThe limits being 0.10 % (73.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04372848 BTC (22,199.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.51 % (2,999.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,453.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12729031 BTC (73,352.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.00 CZK over 222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019021 BTC for 109.61 CZK @ 576,261 CZK\nFees are 0.38497985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (40.338269997493395375792528054 CZK)\nThe limits being 0.10 % (73.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04372848 BTC (22,199.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.51 % (2,999.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,453.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12729031 BTC (73,352.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.00 CZK over 222 transactions" + } + ] + }, + { + "id": 1107, + "type": "message", + "date": "2022-07-29T10:00:03", + "date_unixtime": "1659081603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019040 BTC for 109.62 CZK @ 575,713 CZK\nFees are 0.38499794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.542779998995113740563489971 CZK)\nThe limits being 0.10 % (73.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04391888 BTC (22,309.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.34 % (2,975.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,343.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12748071 BTC (73,392.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.04 CZK over 223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019040 BTC for 109.62 CZK @ 575,713 CZK\nFees are 0.38499794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.542779998995113740563489971 CZK)\nThe limits being 0.10 % (73.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04391888 BTC (22,309.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.34 % (2,975.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,343.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12748071 BTC (73,392.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.04 CZK over 223 transactions" + } + ] + }, + { + "id": 1108, + "type": "message", + "date": "2022-07-29T14:00:04", + "date_unixtime": "1659096004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019166 BTC for 109.62 CZK @ 571,928 CZK\nFees are 0.38499781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.315679999475903002748233629 CZK)\nThe limits being 0.10 % (73.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04411054 BTC (22,419.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.53 % (2,808.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,233.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12767237 BTC (73,019.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.09 CZK over 224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019166 BTC for 109.62 CZK @ 571,928 CZK\nFees are 0.38499781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.315679999475903002748233629 CZK)\nThe limits being 0.10 % (73.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04411054 BTC (22,419.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.53 % (2,808.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,233.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12767237 BTC (73,019.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.09 CZK over 224 transactions" + } + ] + }, + { + "id": 1109, + "type": "message", + "date": "2022-07-29T18:00:03", + "date_unixtime": "1659110403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018955 BTC for 109.61 CZK @ 578,277 CZK\nFees are 0.38498617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.262159996330437770099560534 CZK)\nThe limits being 0.10 % (73.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04430009 BTC (22,529.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.71 % (3,088.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,123.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12786192 BTC (73,939.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.13 CZK over 225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018955 BTC for 109.61 CZK @ 578,277 CZK\nFees are 0.38498617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.262159996330437770099560534 CZK)\nThe limits being 0.10 % (73.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04430009 BTC (22,529.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.71 % (3,088.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,123.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12786192 BTC (73,939.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.13 CZK over 225 transactions" + } + ] + }, + { + "id": 1110, + "type": "message", + "date": "2022-07-29T22:00:03", + "date_unixtime": "1659124803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019044 BTC for 109.61 CZK @ 575,581 CZK\nFees are 0.38499053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.558099994903366467730513043 CZK)\nThe limits being 0.10 % (73.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04449053 BTC (22,639.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.11 % (2,968.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,013.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12805236 BTC (73,704.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.17 CZK over 226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019044 BTC for 109.61 CZK @ 575,581 CZK\nFees are 0.38499053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.558099994903366467730513043 CZK)\nThe limits being 0.10 % (73.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04449053 BTC (22,639.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.11 % (2,968.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,013.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12805236 BTC (73,704.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.17 CZK over 226 transactions" + } + ] + }, + { + "id": 1111, + "type": "message", + "date": "2022-07-30T02:00:04", + "date_unixtime": "1659139204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019154 BTC for 109.61 CZK @ 572,264 CZK\nFees are 0.38498280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.226399998460020813651124689 CZK)\nThe limits being 0.10 % (73.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04468207 BTC (22,749.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.40 % (2,820.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,903.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12824390 BTC (73,389.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.22 CZK over 227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019154 BTC for 109.61 CZK @ 572,264 CZK\nFees are 0.38498280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.226399998460020813651124689 CZK)\nThe limits being 0.10 % (73.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04468207 BTC (22,749.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.40 % (2,820.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,903.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12824390 BTC (73,389.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.22 CZK over 227 transactions" + } + ] + }, + { + "id": 1112, + "type": "message", + "date": "2022-07-30T06:00:04", + "date_unixtime": "1659153604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019126 BTC for 109.61 CZK @ 573,110 CZK\nFees are 0.38498832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.579899997608495748515039981 CZK)\nThe limits being 0.10 % (73.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04487333 BTC (22,859.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.50 % (2,857.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,793.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12843516 BTC (73,607.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.26 CZK over 228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019126 BTC for 109.61 CZK @ 573,110 CZK\nFees are 0.38498832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.579899997608495748515039981 CZK)\nThe limits being 0.10 % (73.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04487333 BTC (22,859.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.50 % (2,857.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,793.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12843516 BTC (73,607.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.26 CZK over 228 transactions" + } + ] + }, + { + "id": 1113, + "type": "message", + "date": "2022-07-30T10:00:04", + "date_unixtime": "1659168004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019062 BTC for 109.62 CZK @ 575,051 CZK\nFees are 0.38499957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.754589997332283184491672913 CZK)\nThe limits being 0.10 % (73.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04506395 BTC (22,969.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.82 % (2,944.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,683.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12862578 BTC (73,966.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.30 CZK over 229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019062 BTC for 109.62 CZK @ 575,051 CZK\nFees are 0.38499957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.754589997332283184491672913 CZK)\nThe limits being 0.10 % (73.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04506395 BTC (22,969.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.82 % (2,944.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,683.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12862578 BTC (73,966.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.30 CZK over 229 transactions" + } + ] + }, + { + "id": 1114, + "type": "message", + "date": "2022-07-30T14:00:04", + "date_unixtime": "1659182404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019002 BTC for 109.61 CZK @ 576,854 CZK\nFees are 0.38499106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.611239996922674648833283066 CZK)\nThe limits being 0.10 % (74.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04525397 BTC (23,079.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.11 % (3,025.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,573.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12881580 BTC (74,307.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.35 CZK over 230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019002 BTC for 109.61 CZK @ 576,854 CZK\nFees are 0.38499106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.611239996922674648833283066 CZK)\nThe limits being 0.10 % (74.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04525397 BTC (23,079.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.11 % (3,025.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,573.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12881580 BTC (74,307.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.35 CZK over 230 transactions" + } + ] + }, + { + "id": 1115, + "type": "message", + "date": "2022-07-30T18:00:05", + "date_unixtime": "1659196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018565 BTC for 109.62 CZK @ 590,441 CZK\nFees are 0.38499659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (35.426459999750402275043005286 CZK)\nThe limits being 0.10 % (76.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04543962 BTC (23,189.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.70 % (3,640.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,463.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12900145 BTC (76,167.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.39 CZK over 231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018565 BTC for 109.62 CZK @ 590,441 CZK\nFees are 0.38499659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (35.426459999750402275043005286 CZK)\nThe limits being 0.10 % (76.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04543962 BTC (23,189.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.70 % (3,640.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,463.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12900145 BTC (76,167.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.39 CZK over 231 transactions" + } + ] + }, + { + "id": 1116, + "type": "message", + "date": "2022-07-30T22:00:03", + "date_unixtime": "1659211203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019026 BTC for 109.61 CZK @ 576,112 CZK\nFees are 0.38498148 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.6111999989943743099090113 CZK)\nThe limits being 0.10 % (74.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04562988 BTC (23,299.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.83 % (2,988.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,353.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12919171 BTC (74,428.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.43 CZK over 232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019026 BTC for 109.61 CZK @ 576,112 CZK\nFees are 0.38498148 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.6111999989943743099090113 CZK)\nThe limits being 0.10 % (74.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04562988 BTC (23,299.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.83 % (2,988.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,353.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12919171 BTC (74,428.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.43 CZK over 232 transactions" + } + ] + }, + { + "id": 1117, + "type": "message", + "date": "2022-07-31T02:00:04", + "date_unixtime": "1659225604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019240 BTC for 109.61 CZK @ 569,708 CZK\nFees are 0.38498411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (56.970799996270848288785508519 CZK)\nThe limits being 0.10 % (73.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04582228 BTC (23,409.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.52 % (2,695.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,243.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12938411 BTC (73,711.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.47 CZK over 233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019240 BTC for 109.61 CZK @ 569,708 CZK\nFees are 0.38498411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (56.970799996270848288785508519 CZK)\nThe limits being 0.10 % (73.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04582228 BTC (23,409.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.52 % (2,695.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,243.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12938411 BTC (73,711.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.47 CZK over 233 transactions" + } + ] + }, + { + "id": 1118, + "type": "message", + "date": "2022-07-31T06:00:04", + "date_unixtime": "1659240004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019160 BTC for 109.61 CZK @ 572,084 CZK\nFees are 0.38498227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (45.766719999833567898576277390 CZK)\nThe limits being 0.10 % (74.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04601388 BTC (23,519.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.92 % (2,804.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,133.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12957571 BTC (74,128.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.51 CZK over 234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019160 BTC for 109.61 CZK @ 572,084 CZK\nFees are 0.38498227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (45.766719999833567898576277390 CZK)\nThe limits being 0.10 % (74.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04601388 BTC (23,519.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.92 % (2,804.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,133.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12957571 BTC (74,128.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.51 CZK over 234 transactions" + } + ] + }, + { + "id": 1119, + "type": "message", + "date": "2022-07-31T10:00:03", + "date_unixtime": "1659254403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019180 BTC for 109.62 CZK @ 571,512 CZK\nFees are 0.38499880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (40.005839997963332715059336120 CZK)\nThe limits being 0.10 % (74.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04620568 BTC (23,629.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.76 % (2,777.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,023.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12976751 BTC (74,163.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.55 CZK over 235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019180 BTC for 109.62 CZK @ 571,512 CZK\nFees are 0.38499880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (40.005839997963332715059336120 CZK)\nThe limits being 0.10 % (74.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04620568 BTC (23,629.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.76 % (2,777.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,023.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12976751 BTC (74,163.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.55 CZK over 235 transactions" + } + ] + }, + { + "id": 1120, + "type": "message", + "date": "2022-07-31T14:00:04", + "date_unixtime": "1659268804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019103 BTC for 109.62 CZK @ 573,812 CZK\nFees are 0.38499636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.476239999764213203325084186 CZK)\nThe limits being 0.10 % (74.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04639671 BTC (23,739.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.15 % (2,883.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,913.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12995854 BTC (74,571.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.59 CZK over 236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019103 BTC for 109.62 CZK @ 573,812 CZK\nFees are 0.38499636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.476239999764213203325084186 CZK)\nThe limits being 0.10 % (74.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04639671 BTC (23,739.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.15 % (2,883.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,913.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12995854 BTC (74,571.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.59 CZK over 236 transactions" + } + ] + }, + { + "id": 1121, + "type": "message", + "date": "2022-07-31T18:00:04", + "date_unixtime": "1659283204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019126 BTC for 109.61 CZK @ 573,112 CZK\nFees are 0.38498967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.924479999183032970298819760 CZK)\nThe limits being 0.10 % (74.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04658797 BTC (23,849.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.95 % (2,850.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,803.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13014980 BTC (74,590.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.63 CZK over 237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019126 BTC for 109.61 CZK @ 573,112 CZK\nFees are 0.38498967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.924479999183032970298819760 CZK)\nThe limits being 0.10 % (74.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04658797 BTC (23,849.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.95 % (2,850.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,803.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13014980 BTC (74,590.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.63 CZK over 237 transactions" + } + ] + }, + { + "id": 1122, + "type": "message", + "date": "2022-07-31T22:00:03", + "date_unixtime": "1659297603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019071 BTC for 109.61 CZK @ 574,760 CZK\nFees are 0.38498643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.737999997753131722887883076 CZK)\nThe limits being 0.10 % (74.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04677868 BTC (23,959.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.22 % (2,927.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,693.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13034051 BTC (74,914.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.67 CZK over 238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019071 BTC for 109.61 CZK @ 574,760 CZK\nFees are 0.38498643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.737999997753131722887883076 CZK)\nThe limits being 0.10 % (74.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04677868 BTC (23,959.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.22 % (2,927.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,693.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13034051 BTC (74,914.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.67 CZK over 238 transactions" + } + ] + }, + { + "id": 1123, + "type": "message", + "date": "2022-08-01T02:00:04", + "date_unixtime": "1659312004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019507 BTC for 109.61 CZK @ 561,926 CZK\nFees are 0.38499495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.857779998947141201008445628 CZK)\nThe limits being 0.10 % (73.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04697375 BTC (24,069.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 561,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.67 % (2,326.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,583.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13053558 BTC (73,351.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.71 CZK over 239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019507 BTC for 109.61 CZK @ 561,926 CZK\nFees are 0.38499495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.857779998947141201008445628 CZK)\nThe limits being 0.10 % (73.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04697375 BTC (24,069.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 561,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.67 % (2,326.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,583.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13053558 BTC (73,351.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.71 CZK over 239 transactions" + } + ] + }, + { + "id": 1124, + "type": "message", + "date": "2022-08-01T06:00:04", + "date_unixtime": "1659326404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019469 BTC for 109.62 CZK @ 563,027 CZK\nFees are 0.38499784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.151349999179767418892881540 CZK)\nThe limits being 0.10 % (73.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04716844 BTC (24,179.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 563,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.83 % (2,377.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,473.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13073027 BTC (73,604.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.75 CZK over 240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019469 BTC for 109.62 CZK @ 563,027 CZK\nFees are 0.38499784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.151349999179767418892881540 CZK)\nThe limits being 0.10 % (73.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04716844 BTC (24,179.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 563,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.83 % (2,377.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,473.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13073027 BTC (73,604.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.75 CZK over 240 transactions" + } + ] + }, + { + "id": 1125, + "type": "message", + "date": "2022-08-01T10:00:03", + "date_unixtime": "1659340803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019527 BTC for 109.61 CZK @ 561,340 CZK\nFees are 0.38498777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (33.680399998070970377683331876 CZK)\nThe limits being 0.10 % (73.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04736371 BTC (24,289.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 561,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.46 % (2,297.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,363.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13092554 BTC (73,493.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.79 CZK over 241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019527 BTC for 109.61 CZK @ 561,340 CZK\nFees are 0.38498777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (33.680399998070970377683331876 CZK)\nThe limits being 0.10 % (73.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04736371 BTC (24,289.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 561,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.46 % (2,297.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,363.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13092554 BTC (73,493.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.79 CZK over 241 transactions" + } + ] + }, + { + "id": 1126, + "type": "message", + "date": "2022-08-01T14:00:04", + "date_unixtime": "1659355204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019607 BTC for 109.61 CZK @ 559,056 CZK\nFees are 0.38499216 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.133919998320764863143225773 CZK)\nThe limits being 0.10 % (73.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04755978 BTC (24,399.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 559,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.97 % (2,189.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,253.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13112161 BTC (73,304.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.82 CZK over 242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019607 BTC for 109.61 CZK @ 559,056 CZK\nFees are 0.38499216 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.133919998320764863143225773 CZK)\nThe limits being 0.10 % (73.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04755978 BTC (24,399.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 559,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.97 % (2,189.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,253.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13112161 BTC (73,304.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.82 CZK over 242 transactions" + } + ] + }, + { + "id": 1127, + "type": "message", + "date": "2022-08-01T18:00:04", + "date_unixtime": "1659369604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019575 BTC for 109.61 CZK @ 559,969 CZK\nFees are 0.38499153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.797519999541833467919752133 CZK)\nThe limits being 0.10 % (73.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04775553 BTC (24,509.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 559,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.11 % (2,232.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,143.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13131736 BTC (73,533.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.86 CZK over 243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019575 BTC for 109.61 CZK @ 559,969 CZK\nFees are 0.38499153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.797519999541833467919752133 CZK)\nThe limits being 0.10 % (73.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04775553 BTC (24,509.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 559,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.11 % (2,232.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,143.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13131736 BTC (73,533.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.86 CZK over 243 transactions" + } + ] + }, + { + "id": 1128, + "type": "message", + "date": "2022-08-01T22:00:04", + "date_unixtime": "1659384004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019883 BTC for 109.61 CZK @ 551,300 CZK\nFees are 0.38499521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.103999997393822120491071070 CZK)\nThe limits being 0.10 % (72.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04795436 BTC (24,619.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.38 % (1,817.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,033.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13151619 BTC (72,504.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.90 CZK over 244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019883 BTC for 109.61 CZK @ 551,300 CZK\nFees are 0.38499521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.103999997393822120491071070 CZK)\nThe limits being 0.10 % (72.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04795436 BTC (24,619.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.38 % (1,817.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,033.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13151619 BTC (72,504.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.90 CZK over 244 transactions" + } + ] + }, + { + "id": 1129, + "type": "message", + "date": "2022-08-02T02:00:04", + "date_unixtime": "1659398404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019625 BTC for 109.62 CZK @ 558,553 CZK\nFees are 0.38499889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (27.927649999523959136652290232 CZK)\nThe limits being 0.10 % (73.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04815061 BTC (24,729.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.76 % (2,165.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,923.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13171244 BTC (73,568.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.94 CZK over 245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019625 BTC for 109.62 CZK @ 558,553 CZK\nFees are 0.38499889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (27.927649999523959136652290232 CZK)\nThe limits being 0.10 % (73.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04815061 BTC (24,729.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.76 % (2,165.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,923.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13171244 BTC (73,568.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.94 CZK over 245 transactions" + } + ] + }, + { + "id": 1130, + "type": "message", + "date": "2022-08-02T06:00:03", + "date_unixtime": "1659412803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019993 BTC for 109.61 CZK @ 548,260 CZK\nFees are 0.38499044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.965199999371977501542580262 CZK)\nThe limits being 0.10 % (72.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04835054 BTC (24,839.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 548,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.72 % (1,669.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,813.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13191237 BTC (72,322.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.97 CZK over 246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019993 BTC for 109.61 CZK @ 548,260 CZK\nFees are 0.38499044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.965199999371977501542580262 CZK)\nThe limits being 0.10 % (72.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04835054 BTC (24,839.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 548,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.72 % (1,669.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,813.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13191237 BTC (72,322.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.97 CZK over 246 transactions" + } + ] + }, + { + "id": 1131, + "type": "message", + "date": "2022-08-02T10:00:04", + "date_unixtime": "1659427204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019877 BTC for 109.62 CZK @ 551,468 CZK\nFees are 0.38499632 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.029359999973930354289743908 CZK)\nThe limits being 0.10 % (72.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04854931 BTC (24,949.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.31 % (1,824.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,703.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13211114 BTC (72,855.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.01 CZK over 247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019877 BTC for 109.62 CZK @ 551,468 CZK\nFees are 0.38499632 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.029359999973930354289743908 CZK)\nThe limits being 0.10 % (72.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04854931 BTC (24,949.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.31 % (1,824.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,703.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13211114 BTC (72,855.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.01 CZK over 247 transactions" + } + ] + }, + { + "id": 1132, + "type": "message", + "date": "2022-08-02T14:00:04", + "date_unixtime": "1659441604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019890 BTC for 109.61 CZK @ 551,093 CZK\nFees are 0.38498614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.576509999316119073439041785 CZK)\nThe limits being 0.10 % (72.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04874821 BTC (25,059.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.20 % (1,805.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,593.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13231004 BTC (72,915.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.05 CZK over 248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019890 BTC for 109.61 CZK @ 551,093 CZK\nFees are 0.38498614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.576509999316119073439041785 CZK)\nThe limits being 0.10 % (72.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04874821 BTC (25,059.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.20 % (1,805.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,593.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13231004 BTC (72,915.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.05 CZK over 248 transactions" + } + ] + }, + { + "id": 1133, + "type": "message", + "date": "2022-08-02T18:00:04", + "date_unixtime": "1659456004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019721 BTC for 109.61 CZK @ 555,809 CZK\nFees are 0.38498156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.464719997932291490204647813 CZK)\nThe limits being 0.10 % (73.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04894542 BTC (25,169.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.09 % (2,034.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,483.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13250725 BTC (73,648.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.08 CZK over 249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019721 BTC for 109.61 CZK @ 555,809 CZK\nFees are 0.38498156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.464719997932291490204647813 CZK)\nThe limits being 0.10 % (73.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04894542 BTC (25,169.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.09 % (2,034.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,483.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13250725 BTC (73,648.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.08 CZK over 249 transactions" + } + ] + }, + { + "id": 1134, + "type": "message", + "date": "2022-08-02T22:00:04", + "date_unixtime": "1659470404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019719 BTC for 109.62 CZK @ 555,886 CZK\nFees are 0.38499585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (50.029739999458763337902007513 CZK)\nThe limits being 0.10 % (73.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04914261 BTC (25,279.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.06 % (2,038.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,373.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13270444 BTC (73,768.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.12 CZK over 250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019719 BTC for 109.62 CZK @ 555,886 CZK\nFees are 0.38499585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (50.029739999458763337902007513 CZK)\nThe limits being 0.10 % (73.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04914261 BTC (25,279.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.06 % (2,038.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,373.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13270444 BTC (73,768.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.12 CZK over 250 transactions" + } + ] + }, + { + "id": 1135, + "type": "message", + "date": "2022-08-03T02:00:03", + "date_unixtime": "1659484803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019653 BTC for 109.61 CZK @ 557,746 CZK\nFees are 0.38499114 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (55.774599997550931684152025686 CZK)\nThe limits being 0.10 % (74.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04933914 BTC (25,389.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 557,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.39 % (2,129.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,263.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13290097 BTC (74,124.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.15 CZK over 251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019653 BTC for 109.61 CZK @ 557,746 CZK\nFees are 0.38499114 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (55.774599997550931684152025686 CZK)\nThe limits being 0.10 % (74.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04933914 BTC (25,389.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 557,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.39 % (2,129.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,263.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13290097 BTC (74,124.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.15 CZK over 251 transactions" + } + ] + }, + { + "id": 1136, + "type": "message", + "date": "2022-08-03T06:00:03", + "date_unixtime": "1659499203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019820 BTC for 109.61 CZK @ 553,035 CZK\nFees are 0.38498312 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.242799996178863382801969094 CZK)\nThe limits being 0.10 % (73.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04953734 BTC (25,499.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 553,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.44 % (1,896.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,153.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13309917 BTC (73,608.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.19 CZK over 252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019820 BTC for 109.61 CZK @ 553,035 CZK\nFees are 0.38498312 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.242799996178863382801969094 CZK)\nThe limits being 0.10 % (73.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04953734 BTC (25,499.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 553,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.44 % (1,896.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,153.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13309917 BTC (73,608.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.19 CZK over 252 transactions" + } + ] + }, + { + "id": 1137, + "type": "message", + "date": "2022-08-03T10:00:04", + "date_unixtime": "1659513604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019689 BTC for 109.61 CZK @ 556,731 CZK\nFees are 0.38499446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.538479998758978144020940675 CZK)\nThe limits being 0.10 % (74.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04973423 BTC (25,609.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.12 % (2,079.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,043.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13329606 BTC (74,210.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.22 CZK over 253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019689 BTC for 109.61 CZK @ 556,731 CZK\nFees are 0.38499446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.538479998758978144020940675 CZK)\nThe limits being 0.10 % (74.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04973423 BTC (25,609.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.12 % (2,079.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,043.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13329606 BTC (74,210.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.22 CZK over 253 transactions" + } + ] + }, + { + "id": 1138, + "type": "message", + "date": "2022-08-03T14:00:04", + "date_unixtime": "1659528004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019358 BTC for 109.61 CZK @ 566,236 CZK\nFees are 0.38498462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.636519997448747546620200515 CZK)\nThe limits being 0.10 % (75.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.04992781 BTC (25,719.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.92 % (2,551.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,933.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13348964 BTC (75,586.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.26 CZK over 254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019358 BTC for 109.61 CZK @ 566,236 CZK\nFees are 0.38498462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.636519997448747546620200515 CZK)\nThe limits being 0.10 % (75.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.04992781 BTC (25,719.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.92 % (2,551.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,933.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13348964 BTC (75,586.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.26 CZK over 254 transactions" + } + ] + }, + { + "id": 1139, + "type": "message", + "date": "2022-08-03T18:00:04", + "date_unixtime": "1659542404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019301 BTC for 109.61 CZK @ 567,902 CZK\nFees are 0.38498041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (45.432159996873282251046780544 CZK)\nThe limits being 0.10 % (75.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05012082 BTC (25,829.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 567,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.20 % (2,634.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,823.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13368265 BTC (75,918.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.29 CZK over 255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019301 BTC for 109.61 CZK @ 567,902 CZK\nFees are 0.38498041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (45.432159996873282251046780544 CZK)\nThe limits being 0.10 % (75.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05012082 BTC (25,829.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 567,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.20 % (2,634.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,823.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13368265 BTC (75,918.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.29 CZK over 255 transactions" + } + ] + }, + { + "id": 1140, + "type": "message", + "date": "2022-08-03T22:00:05", + "date_unixtime": "1659556805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019271 BTC for 109.61 CZK @ 568,803 CZK\nFees are 0.38499186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.192269999322851572089663759 CZK)\nThe limits being 0.10 % (76.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05031353 BTC (25,939.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.33 % (2,679.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,713.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13387536 BTC (76,148.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.33 CZK over 256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019271 BTC for 109.61 CZK @ 568,803 CZK\nFees are 0.38499186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (51.192269999322851572089663759 CZK)\nThe limits being 0.10 % (76.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05031353 BTC (25,939.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.33 % (2,679.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,713.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13387536 BTC (76,148.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.33 CZK over 256 transactions" + } + ] + }, + { + "id": 1141, + "type": "message", + "date": "2022-08-04T02:00:07", + "date_unixtime": "1659571207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019799 BTC for 109.61 CZK @ 553,639 CZK\nFees are 0.38499523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.900289994665622188595786260 CZK)\nThe limits being 0.10 % (74.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05051152 BTC (26,049.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 553,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.35 % (1,915.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,603.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13407335 BTC (74,228.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.36 CZK over 257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019799 BTC for 109.61 CZK @ 553,639 CZK\nFees are 0.38499523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.900289994665622188595786260 CZK)\nThe limits being 0.10 % (74.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05051152 BTC (26,049.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 553,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.35 % (1,915.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,603.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13407335 BTC (74,228.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.36 CZK over 257 transactions" + } + ] + }, + { + "id": 1142, + "type": "message", + "date": "2022-08-04T06:00:03", + "date_unixtime": "1659585603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019567 BTC for 109.61 CZK @ 560,189 CZK\nFees are 0.38498538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (61.620789996804000430954479377 CZK)\nThe limits being 0.10 % (75.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05070719 BTC (26,159.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.59 % (2,246.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,493.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13426902 BTC (75,216.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.39 CZK over 258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019567 BTC for 109.61 CZK @ 560,189 CZK\nFees are 0.38498538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (61.620789996804000430954479377 CZK)\nThe limits being 0.10 % (75.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05070719 BTC (26,159.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.59 % (2,246.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,493.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13426902 BTC (75,216.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.39 CZK over 258 transactions" + } + ] + }, + { + "id": 1143, + "type": "message", + "date": "2022-08-04T10:00:03", + "date_unixtime": "1659600003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019708 BTC for 109.61 CZK @ 556,183 CZK\nFees are 0.38498666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.494639996060065395228735149 CZK)\nThe limits being 0.10 % (74.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05090427 BTC (26,269.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.78 % (2,042.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,383.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13446610 BTC (74,787.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.43 CZK over 259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019708 BTC for 109.61 CZK @ 556,183 CZK\nFees are 0.38498666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.494639996060065395228735149 CZK)\nThe limits being 0.10 % (74.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05090427 BTC (26,269.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.78 % (2,042.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,383.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13446610 BTC (74,787.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.43 CZK over 259 transactions" + } + ] + }, + { + "id": 1144, + "type": "message", + "date": "2022-08-04T14:00:04", + "date_unixtime": "1659614404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019778 BTC for 109.62 CZK @ 554,228 CZK\nFees are 0.38499603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (49.880519996172764320731419204 CZK)\nThe limits being 0.10 % (74.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05110205 BTC (26,379.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.37 % (1,942.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,273.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13466388 BTC (74,634.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.46 CZK over 260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019778 BTC for 109.62 CZK @ 554,228 CZK\nFees are 0.38499603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (49.880519996172764320731419204 CZK)\nThe limits being 0.10 % (74.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05110205 BTC (26,379.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.37 % (1,942.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,273.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13466388 BTC (74,634.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.46 CZK over 260 transactions" + } + ] + }, + { + "id": 1145, + "type": "message", + "date": "2022-08-04T18:00:04", + "date_unixtime": "1659628804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019787 BTC for 109.61 CZK @ 553,974 CZK\nFees are 0.38499471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.39739999807113672923561692 CZK)\nThe limits being 0.10 % (74.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05129992 BTC (26,489.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 553,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.28 % (1,929.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,163.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13486175 BTC (74,709.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.49 CZK over 261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019787 BTC for 109.61 CZK @ 553,974 CZK\nFees are 0.38499471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.39739999807113672923561692 CZK)\nThe limits being 0.10 % (74.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05129992 BTC (26,489.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 553,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.28 % (1,929.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,163.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13486175 BTC (74,709.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.49 CZK over 261 transactions" + } + ] + }, + { + "id": 1146, + "type": "message", + "date": "2022-08-04T22:00:04", + "date_unixtime": "1659643204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020235 BTC for 109.61 CZK @ 541,696 CZK\nFees are 0.38498540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (70.420479993853979566698172406 CZK)\nThe limits being 0.10 % (73.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05150227 BTC (26,599.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 541,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.88 % (1,299.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,053.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13506410 BTC (73,163.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.52 CZK over 262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020235 BTC for 109.61 CZK @ 541,696 CZK\nFees are 0.38498540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (70.420479993853979566698172406 CZK)\nThe limits being 0.10 % (73.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05150227 BTC (26,599.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 541,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.88 % (1,299.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,053.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13506410 BTC (73,163.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.52 CZK over 262 transactions" + } + ] + }, + { + "id": 1147, + "type": "message", + "date": "2022-08-05T02:00:03", + "date_unixtime": "1659657603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020100 BTC for 109.61 CZK @ 545,335 CZK\nFees are 0.38498592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (70.893549998388724042964053674 CZK)\nThe limits being 0.10 % (73.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05170327 BTC (26,709.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.56 % (1,486.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,943.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13526510 BTC (73,764.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.56 CZK over 263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020100 BTC for 109.61 CZK @ 545,335 CZK\nFees are 0.38498592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (70.893549998388724042964053674 CZK)\nThe limits being 0.10 % (73.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05170327 BTC (26,709.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.56 % (1,486.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,943.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13526510 BTC (73,764.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.56 CZK over 263 transactions" + } + ] + }, + { + "id": 1148, + "type": "message", + "date": "2022-08-05T06:00:04", + "date_unixtime": "1659672004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019611 BTC for 109.61 CZK @ 558,929 CZK\nFees are 0.38498322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.8928999991539478735851779 CZK)\nThe limits being 0.10 % (75.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05189938 BTC (26,819.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.16 % (2,188.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,833.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13546121 BTC (75,713.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.59 CZK over 264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019611 BTC for 109.61 CZK @ 558,929 CZK\nFees are 0.38498322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.8928999991539478735851779 CZK)\nThe limits being 0.10 % (75.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05189938 BTC (26,819.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.16 % (2,188.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,833.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13546121 BTC (75,713.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.59 CZK over 264 transactions" + } + ] + }, + { + "id": 1149, + "type": "message", + "date": "2022-08-05T10:00:04", + "date_unixtime": "1659686404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019576 BTC for 109.61 CZK @ 559,927 CZK\nFees are 0.38498232 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.992699998309960907155971669 CZK)\nThe limits being 0.10 % (75.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05209514 BTC (26,929.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 559,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.32 % (2,240.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,723.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13565697 BTC (75,958.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.62 CZK over 265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019576 BTC for 109.61 CZK @ 559,927 CZK\nFees are 0.38498232 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.992699998309960907155971669 CZK)\nThe limits being 0.10 % (75.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05209514 BTC (26,929.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 559,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.32 % (2,240.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,723.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13565697 BTC (75,958.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.62 CZK over 265 transactions" + } + ] + }, + { + "id": 1150, + "type": "message", + "date": "2022-08-05T14:00:04", + "date_unixtime": "1659700804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019416 BTC for 109.61 CZK @ 564,559 CZK\nFees are 0.38499450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.51912999854854938083415914 CZK)\nThe limits being 0.10 % (76.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05228930 BTC (27,039.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 564,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.18 % (2,481.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,613.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13585113 BTC (76,695.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.65 CZK over 266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019416 BTC for 109.61 CZK @ 564,559 CZK\nFees are 0.38499450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.51912999854854938083415914 CZK)\nThe limits being 0.10 % (76.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05228930 BTC (27,039.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 564,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.18 % (2,481.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,613.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13585113 BTC (76,695.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.65 CZK over 266 transactions" + } + ] + }, + { + "id": 1151, + "type": "message", + "date": "2022-08-05T18:00:04", + "date_unixtime": "1659715204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019707 BTC for 109.61 CZK @ 556,223 CZK\nFees are 0.38499482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (61.184529998256217411688106697 CZK)\nThe limits being 0.10 % (75.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05248637 BTC (27,149.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.53 % (2,044.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,503.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13604820 BTC (75,673.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.68 CZK over 267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019707 BTC for 109.61 CZK @ 556,223 CZK\nFees are 0.38499482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (61.184529998256217411688106697 CZK)\nThe limits being 0.10 % (75.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05248637 BTC (27,149.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.53 % (2,044.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,503.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13604820 BTC (75,673.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.68 CZK over 267 transactions" + } + ] + }, + { + "id": 1152, + "type": "message", + "date": "2022-08-05T22:00:04", + "date_unixtime": "1659729604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019761 BTC for 109.61 CZK @ 554,692 CZK\nFees are 0.38498716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (72.109959999069094916943070087 CZK)\nThe limits being 0.10 % (75.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05268398 BTC (27,259.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.21 % (1,964.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,393.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13624581 BTC (75,574.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.71 CZK over 268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019761 BTC for 109.61 CZK @ 554,692 CZK\nFees are 0.38498716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (72.109959999069094916943070087 CZK)\nThe limits being 0.10 % (75.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05268398 BTC (27,259.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.21 % (1,964.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,393.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13624581 BTC (75,574.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.71 CZK over 268 transactions" + } + ] + }, + { + "id": 1153, + "type": "message", + "date": "2022-08-06T02:00:04", + "date_unixtime": "1659744004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019491 BTC for 109.62 CZK @ 562,388 CZK\nFees are 0.38499544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (84.35819999403350394597820971 CZK)\nThe limits being 0.10 % (76.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05287889 BTC (27,369.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 562,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.66 % (2,369.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,283.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13644072 BTC (76,732.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.74 CZK over 269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019491 BTC for 109.62 CZK @ 562,388 CZK\nFees are 0.38499544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (84.35819999403350394597820971 CZK)\nThe limits being 0.10 % (76.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05287889 BTC (27,369.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 562,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.66 % (2,369.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,283.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13644072 BTC (76,732.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.74 CZK over 269 transactions" + } + ] + }, + { + "id": 1154, + "type": "message", + "date": "2022-08-06T06:00:03", + "date_unixtime": "1659758403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019576 BTC for 109.61 CZK @ 559,935 CZK\nFees are 0.38498782 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (67.192199997190055484187037238 CZK)\nThe limits being 0.10 % (76.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05307465 BTC (27,479.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 559,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.15 % (2,239.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,173.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13663648 BTC (76,507.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.78 CZK over 270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019576 BTC for 109.61 CZK @ 559,935 CZK\nFees are 0.38498782 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (67.192199997190055484187037238 CZK)\nThe limits being 0.10 % (76.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05307465 BTC (27,479.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 559,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.15 % (2,239.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,173.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13663648 BTC (76,507.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.78 CZK over 270 transactions" + } + ] + }, + { + "id": 1155, + "type": "message", + "date": "2022-08-06T10:00:04", + "date_unixtime": "1659772804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019548 BTC for 109.62 CZK @ 560,750 CZK\nFees are 0.38499672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (67.289999996941337608119892223 CZK)\nThe limits being 0.10 % (76.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05327013 BTC (27,589.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.27 % (2,281.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,063.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13683196 BTC (76,728.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.81 CZK over 271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019548 BTC for 109.62 CZK @ 560,750 CZK\nFees are 0.38499672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (67.289999996941337608119892223 CZK)\nThe limits being 0.10 % (76.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05327013 BTC (27,589.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.27 % (2,281.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,063.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13683196 BTC (76,728.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.81 CZK over 271 transactions" + } + ] + }, + { + "id": 1156, + "type": "message", + "date": "2022-08-06T14:00:04", + "date_unixtime": "1659787204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019620 BTC for 109.61 CZK @ 558,688 CZK\nFees are 0.38499383 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.760639998537229787486915063 CZK)\nThe limits being 0.10 % (76.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05346633 BTC (27,699.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.84 % (2,171.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,953.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13702816 BTC (76,555.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.84 CZK over 272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019620 BTC for 109.61 CZK @ 558,688 CZK\nFees are 0.38499383 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.760639998537229787486915063 CZK)\nThe limits being 0.10 % (76.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05346633 BTC (27,699.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.84 % (2,171.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,953.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13702816 BTC (76,555.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.84 CZK over 272 transactions" + } + ] + }, + { + "id": 1157, + "type": "message", + "date": "2022-08-06T18:00:03", + "date_unixtime": "1659801603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019547 BTC for 109.61 CZK @ 560,763 CZK\nFees are 0.38498595 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.822889999597000613981417523 CZK)\nThe limits being 0.10 % (76.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05366180 BTC (27,809.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.21 % (2,282.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,843.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13722363 BTC (76,949.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.87 CZK over 273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019547 BTC for 109.61 CZK @ 560,763 CZK\nFees are 0.38498595 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.822889999597000613981417523 CZK)\nThe limits being 0.10 % (76.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05366180 BTC (27,809.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.21 % (2,282.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,843.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13722363 BTC (76,949.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.87 CZK over 273 transactions" + } + ] + }, + { + "id": 1158, + "type": "message", + "date": "2022-08-06T22:00:04", + "date_unixtime": "1659816004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019554 BTC for 109.61 CZK @ 560,561 CZK\nFees are 0.38498509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.211219999715631680648873465 CZK)\nThe limits being 0.10 % (77.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05385734 BTC (27,919.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.13 % (2,271.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,733.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13741917 BTC (77,031.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.90 CZK over 274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019554 BTC for 109.61 CZK @ 560,561 CZK\nFees are 0.38498509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.211219999715631680648873465 CZK)\nThe limits being 0.10 % (77.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05385734 BTC (27,919.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.13 % (2,271.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,733.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13741917 BTC (77,031.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.90 CZK over 274 transactions" + } + ] + }, + { + "id": 1159, + "type": "message", + "date": "2022-08-07T02:00:04", + "date_unixtime": "1659830404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019750 BTC for 109.62 CZK @ 555,016 CZK\nFees are 0.38499760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.10032 CZK)\nThe limits being 0.10 % (76.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05405484 BTC (28,029.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.04 % (1,972.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,623.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13761667 BTC (76,379.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.92 CZK over 275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019750 BTC for 109.62 CZK @ 555,016 CZK\nFees are 0.38499760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.10032 CZK)\nThe limits being 0.10 % (76.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05405484 BTC (28,029.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.04 % (1,972.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,623.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13761667 BTC (76,379.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.92 CZK over 275 transactions" + } + ] + }, + { + "id": 1160, + "type": "message", + "date": "2022-08-07T06:00:03", + "date_unixtime": "1659844803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019717 BTC for 109.62 CZK @ 555,947 CZK\nFees are 0.38499904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.5594699997490651159345698281 CZK)\nThe limits being 0.10 % (76.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05425201 BTC (28,139.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.19 % (2,021.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,513.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13781384 BTC (76,617.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.95 CZK over 276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019717 BTC for 109.62 CZK @ 555,947 CZK\nFees are 0.38499904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.5594699997490651159345698281 CZK)\nThe limits being 0.10 % (76.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05425201 BTC (28,139.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.19 % (2,021.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,513.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13781384 BTC (76,617.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.95 CZK over 276 transactions" + } + ] + }, + { + "id": 1161, + "type": "message", + "date": "2022-08-07T10:00:03", + "date_unixtime": "1659859203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019709 BTC for 109.61 CZK @ 556,147 CZK\nFees are 0.38498128 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.5614699998581756181741802116 CZK)\nThe limits being 0.10 % (76.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05444910 BTC (28,249.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.19 % (2,032.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,403.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13801093 BTC (76,754.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.98 CZK over 277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019709 BTC for 109.61 CZK @ 556,147 CZK\nFees are 0.38498128 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.5614699998581756181741802116 CZK)\nThe limits being 0.10 % (76.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05444910 BTC (28,249.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.19 % (2,032.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,403.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13801093 BTC (76,754.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.98 CZK over 277 transactions" + } + ] + }, + { + "id": 1162, + "type": "message", + "date": "2022-08-07T14:00:04", + "date_unixtime": "1659873604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019700 BTC for 109.61 CZK @ 556,403 CZK\nFees are 0.38498261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.5640299995700328039678384538 CZK)\nThe limits being 0.10 % (76.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05464610 BTC (28,359.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.21 % (2,045.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,293.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13820793 BTC (76,899.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.01 CZK over 278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019700 BTC for 109.61 CZK @ 556,403 CZK\nFees are 0.38498261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.5640299995700328039678384538 CZK)\nThe limits being 0.10 % (76.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05464610 BTC (28,359.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.21 % (2,045.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,293.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13820793 BTC (76,899.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.01 CZK over 278 transactions" + } + ] + }, + { + "id": 1163, + "type": "message", + "date": "2022-08-07T18:00:06", + "date_unixtime": "1659888006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019692 BTC for 109.61 CZK @ 556,626 CZK\nFees are 0.38498050 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.530079999303676215107776855 CZK)\nThe limits being 0.10 % (77.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05484302 BTC (28,469.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.23 % (2,057.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,183.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13840485 BTC (77,039.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.04 CZK over 279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019692 BTC for 109.61 CZK @ 556,626 CZK\nFees are 0.38498050 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.530079999303676215107776855 CZK)\nThe limits being 0.10 % (77.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05484302 BTC (28,469.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.23 % (2,057.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,183.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13840485 BTC (77,039.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.04 CZK over 279 transactions" + } + ] + }, + { + "id": 1164, + "type": "message", + "date": "2022-08-07T22:00:04", + "date_unixtime": "1659902404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019583 BTC for 109.61 CZK @ 559,734 CZK\nFees are 0.38498724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.97339999884487427334259113 CZK)\nThe limits being 0.10 % (77.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05503885 BTC (28,579.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,256 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 559,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.80 % (2,227.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,073.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13860068 BTC (77,579.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.07 CZK over 280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019583 BTC for 109.61 CZK @ 559,734 CZK\nFees are 0.38498724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.97339999884487427334259113 CZK)\nThe limits being 0.10 % (77.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05503885 BTC (28,579.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,256 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 559,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.80 % (2,227.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,073.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13860068 BTC (77,579.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.07 CZK over 280 transactions" + } + ] + }, + { + "id": 1165, + "type": "message", + "date": "2022-08-08T02:00:04", + "date_unixtime": "1659916804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019560 BTC for 109.61 CZK @ 560,397 CZK\nFees are 0.38499055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.207939999368264244877081544 CZK)\nThe limits being 0.10 % (77.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05523445 BTC (28,689.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,409 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.89 % (2,263.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,963.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13879628 BTC (77,781.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.10 CZK over 281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019560 BTC for 109.61 CZK @ 560,397 CZK\nFees are 0.38499055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.207939999368264244877081544 CZK)\nThe limits being 0.10 % (77.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05523445 BTC (28,689.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,409 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.89 % (2,263.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,963.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13879628 BTC (77,781.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.10 CZK over 281 transactions" + } + ] + }, + { + "id": 1166, + "type": "message", + "date": "2022-08-08T06:00:04", + "date_unixtime": "1659931204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019493 BTC for 109.61 CZK @ 562,328 CZK\nFees are 0.38499387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.24655999901437668105201282 CZK)\nThe limits being 0.10 % (78.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05542938 BTC (28,799.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 562,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.23 % (2,370.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,853.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13899121 BTC (78,158.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.13 CZK over 282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019493 BTC for 109.61 CZK @ 562,328 CZK\nFees are 0.38499387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.24655999901437668105201282 CZK)\nThe limits being 0.10 % (78.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05542938 BTC (28,799.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 562,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.23 % (2,370.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,853.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13899121 BTC (78,158.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.13 CZK over 282 transactions" + } + ] + }, + { + "id": 1167, + "type": "message", + "date": "2022-08-08T10:00:04", + "date_unixtime": "1659945604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019097 BTC for 109.61 CZK @ 573,980 CZK\nFees are 0.38498812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.7397999998904186188785394491 CZK)\nThe limits being 0.10 % (79.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05562035 BTC (28,909.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.43 % (3,015.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,743.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13918218 BTC (79,887.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.15 CZK over 283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019097 BTC for 109.61 CZK @ 573,980 CZK\nFees are 0.38498812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.7397999998904186188785394491 CZK)\nThe limits being 0.10 % (79.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05562035 BTC (28,909.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.43 % (3,015.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,743.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13918218 BTC (79,887.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.15 CZK over 283 transactions" + } + ] + }, + { + "id": 1168, + "type": "message", + "date": "2022-08-08T14:00:04", + "date_unixtime": "1659960004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018843 BTC for 109.62 CZK @ 581,730 CZK\nFees are 0.38499663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (23.269199999227878882014102264 CZK)\nThe limits being 0.10 % (81.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05580878 BTC (29,019.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.88 % (3,446.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,633.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13937061 BTC (81,076.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.18 CZK over 284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018843 BTC for 109.62 CZK @ 581,730 CZK\nFees are 0.38499663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (23.269199999227878882014102264 CZK)\nThe limits being 0.10 % (81.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05580878 BTC (29,019.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.88 % (3,446.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,633.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13937061 BTC (81,076.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.18 CZK over 284 transactions" + } + ] + }, + { + "id": 1169, + "type": "message", + "date": "2022-08-08T18:00:04", + "date_unixtime": "1659974404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019019 BTC for 109.61 CZK @ 576,337 CZK\nFees are 0.38499013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (40.343589996660565459243769371 CZK)\nThe limits being 0.10 % (80.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05599897 BTC (29,129.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.80 % (3,145.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,523.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13956080 BTC (80,434.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.21 CZK over 285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019019 BTC for 109.61 CZK @ 576,337 CZK\nFees are 0.38499013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (40.343589996660565459243769371 CZK)\nThe limits being 0.10 % (80.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05599897 BTC (29,129.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.80 % (3,145.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,523.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13956080 BTC (80,434.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.21 CZK over 285 transactions" + } + ] + }, + { + "id": 1170, + "type": "message", + "date": "2022-08-08T22:00:03", + "date_unixtime": "1659988803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019039 BTC for 109.61 CZK @ 575,719 CZK\nFees are 0.38498173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.057519999399130199090723828 CZK)\nThe limits being 0.10 % (80.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05618936 BTC (29,239.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.64 % (3,110.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,413.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13975119 BTC (80,457.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.24 CZK over 286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019039 BTC for 109.61 CZK @ 575,719 CZK\nFees are 0.38498173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.057519999399130199090723828 CZK)\nThe limits being 0.10 % (80.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05618936 BTC (29,239.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.64 % (3,110.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,413.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13975119 BTC (80,457.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.24 CZK over 286 transactions" + } + ] + }, + { + "id": 1171, + "type": "message", + "date": "2022-08-09T02:00:04", + "date_unixtime": "1660003204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019143 BTC for 109.61 CZK @ 572,589 CZK\nFees are 0.38498022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (91.61423999754711094359419720 CZK)\nThe limits being 0.10 % (80.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05638079 BTC (29,349.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.00 % (2,933.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,303.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13994262 BTC (80,129.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.26 CZK over 287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019143 BTC for 109.61 CZK @ 572,589 CZK\nFees are 0.38498022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (91.61423999754711094359419720 CZK)\nThe limits being 0.10 % (80.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05638079 BTC (29,349.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.00 % (2,933.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,303.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13994262 BTC (80,129.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.26 CZK over 287 transactions" + } + ] + }, + { + "id": 1172, + "type": "message", + "date": "2022-08-09T06:00:03", + "date_unixtime": "1660017603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019127 BTC for 109.61 CZK @ 573,090 CZK\nFees are 0.38499502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (85.96349999605344279285584055 CZK)\nThe limits being 0.10 % (80.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05657206 BTC (29,459.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.05 % (2,961.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,193.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14013389 BTC (80,309.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.29 CZK over 288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019127 BTC for 109.61 CZK @ 573,090 CZK\nFees are 0.38499502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (85.96349999605344279285584055 CZK)\nThe limits being 0.10 % (80.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05657206 BTC (29,459.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.05 % (2,961.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,193.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14013389 BTC (80,309.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.29 CZK over 288 transactions" + } + ] + }, + { + "id": 1173, + "type": "message", + "date": "2022-08-09T10:00:04", + "date_unixtime": "1660032004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019115 BTC for 109.61 CZK @ 573,433 CZK\nFees are 0.38498376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (57.343299998527257658618585933 CZK)\nThe limits being 0.10 % (80.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05676321 BTC (29,569.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.08 % (2,980.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,083.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14032504 BTC (80,467.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.32 CZK over 289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019115 BTC for 109.61 CZK @ 573,433 CZK\nFees are 0.38498376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (57.343299998527257658618585933 CZK)\nThe limits being 0.10 % (80.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05676321 BTC (29,569.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.08 % (2,980.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,083.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14032504 BTC (80,467.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.32 CZK over 289 transactions" + } + ] + }, + { + "id": 1174, + "type": "message", + "date": "2022-08-09T14:00:04", + "date_unixtime": "1660046404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019612 BTC for 109.61 CZK @ 558,913 CZK\nFees are 0.38499183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.356519999703261712702258391 CZK)\nThe limits being 0.10 % (78.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05695933 BTC (29,679.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.26 % (2,156.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 973.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14052116 BTC (78,539.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.34 CZK over 290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019612 BTC for 109.61 CZK @ 558,913 CZK\nFees are 0.38499183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.356519999703261712702258391 CZK)\nThe limits being 0.10 % (78.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05695933 BTC (29,679.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.26 % (2,156.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 973.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14052116 BTC (78,539.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.34 CZK over 290 transactions" + } + ] + }, + { + "id": 1175, + "type": "message", + "date": "2022-08-09T18:00:04", + "date_unixtime": "1660060804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019760 BTC for 109.62 CZK @ 554,735 CZK\nFees are 0.38499752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (105.39964999425089111187765896 CZK)\nThe limits being 0.10 % (78.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05715693 BTC (29,789.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.44 % (1,917.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 863.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14071876 BTC (78,061.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.37 CZK over 291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019760 BTC for 109.62 CZK @ 554,735 CZK\nFees are 0.38499752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (105.39964999425089111187765896 CZK)\nThe limits being 0.10 % (78.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05715693 BTC (29,789.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.44 % (1,917.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 863.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14071876 BTC (78,061.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.37 CZK over 291 transactions" + } + ] + }, + { + "id": 1176, + "type": "message", + "date": "2022-08-09T22:00:04", + "date_unixtime": "1660075204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019732 BTC for 109.61 CZK @ 555,514 CZK\nFees are 0.38499185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (111.10279999123279347340056811 CZK)\nThe limits being 0.10 % (78.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05735425 BTC (29,899.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.56 % (1,961.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 753.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14091608 BTC (78,280.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.39 CZK over 292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019732 BTC for 109.61 CZK @ 555,514 CZK\nFees are 0.38499185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (111.10279999123279347340056811 CZK)\nThe limits being 0.10 % (78.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05735425 BTC (29,899.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.56 % (1,961.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 753.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14091608 BTC (78,280.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.39 CZK over 292 transactions" + } + ] + }, + { + "id": 1177, + "type": "message", + "date": "2022-08-10T02:00:04", + "date_unixtime": "1660089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019666 BTC for 109.62 CZK @ 557,390 CZK\nFees are 0.38499991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (111.47799999908790706137792617 CZK)\nThe limits being 0.10 % (78.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05755091 BTC (30,009.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 557,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.89 % (2,069.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 643.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14111274 BTC (78,654.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.42 CZK over 293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019666 BTC for 109.62 CZK @ 557,390 CZK\nFees are 0.38499991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (111.47799999908790706137792617 CZK)\nThe limits being 0.10 % (78.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05755091 BTC (30,009.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 557,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.89 % (2,069.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 643.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14111274 BTC (78,654.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.42 CZK over 293 transactions" + } + ] + }, + { + "id": 1178, + "type": "message", + "date": "2022-08-10T06:00:04", + "date_unixtime": "1660104004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019923 BTC for 109.61 CZK @ 550,187 CZK\nFees are 0.38499091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (82.52804999547210422308248490 CZK)\nThe limits being 0.10 % (77.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05775014 BTC (30,119.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 550,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.49 % (1,654.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 533.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14131197 BTC (77,748.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.45 CZK over 294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019923 BTC for 109.61 CZK @ 550,187 CZK\nFees are 0.38499091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (82.52804999547210422308248490 CZK)\nThe limits being 0.10 % (77.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05775014 BTC (30,119.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 550,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.49 % (1,654.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 533.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14131197 BTC (77,748.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.45 CZK over 294 transactions" + } + ] + }, + { + "id": 1179, + "type": "message", + "date": "2022-08-10T10:00:04", + "date_unixtime": "1660118404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019828 BTC for 109.61 CZK @ 552,811 CZK\nFees are 0.38498252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (71.865429994916923308263723729 CZK)\nThe limits being 0.10 % (78.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05794842 BTC (30,229.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 552,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.97 % (1,805.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 423.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14151025 BTC (78,228.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.47 CZK over 295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019828 BTC for 109.61 CZK @ 552,811 CZK\nFees are 0.38498252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (71.865429994916923308263723729 CZK)\nThe limits being 0.10 % (78.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05794842 BTC (30,229.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 552,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.97 % (1,805.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 423.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14151025 BTC (78,228.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.47 CZK over 295 transactions" + } + ] + }, + { + "id": 1180, + "type": "message", + "date": "2022-08-10T14:00:04", + "date_unixtime": "1660132804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019797 BTC for 109.61 CZK @ 553,681 CZK\nFees are 0.38498555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (66.441719996076771155479235315 CZK)\nThe limits being 0.10 % (78.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05814639 BTC (30,339.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 553,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.12 % (1,855.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 313.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14170822 BTC (78,461.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.50 CZK over 296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019797 BTC for 109.61 CZK @ 553,681 CZK\nFees are 0.38498555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (66.441719996076771155479235315 CZK)\nThe limits being 0.10 % (78.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05814639 BTC (30,339.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 553,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.12 % (1,855.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 313.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14170822 BTC (78,461.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.50 CZK over 296 transactions" + } + ] + }, + { + "id": 1181, + "type": "message", + "date": "2022-08-10T18:00:06", + "date_unixtime": "1660147206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019313 BTC for 109.61 CZK @ 567,552 CZK\nFees are 0.38498235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (73.781759998551128111620718778 CZK)\nThe limits being 0.10 % (80.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05833952 BTC (30,449.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 567,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.74 % (2,661.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 203.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14190135 BTC (80,536.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.52 CZK over 297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019313 BTC for 109.61 CZK @ 567,552 CZK\nFees are 0.38498235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (73.781759998551128111620718778 CZK)\nThe limits being 0.10 % (80.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05833952 BTC (30,449.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 567,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.74 % (2,661.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 203.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14190135 BTC (80,536.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.52 CZK over 297 transactions" + } + ] + }, + { + "id": 1182, + "type": "message", + "date": "2022-08-10T22:00:04", + "date_unixtime": "1660161604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019564 BTC for 109.61 CZK @ 560,276 CZK\nFees are 0.38498614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.822079996642297858130360953 CZK)\nThe limits being 0.10 % (79.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05853516 BTC (30,559.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 560,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.32 % (2,236.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 93.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14209699 BTC (79,613.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.55 CZK over 298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019564 BTC for 109.61 CZK @ 560,276 CZK\nFees are 0.38498614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.822079996642297858130360953 CZK)\nThe limits being 0.10 % (79.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05853516 BTC (30,559.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 560,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.32 % (2,236.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 93.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14209699 BTC (79,613.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.55 CZK over 298 transactions" + } + ] + }, + { + "id": 1183, + "type": "message", + "date": "2022-08-11T02:00:00", + "date_unixtime": "1660176000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1184, + "type": "message", + "date": "2022-08-11T06:00:00", + "date_unixtime": "1660190400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1185, + "type": "message", + "date": "2022-08-11T10:00:00", + "date_unixtime": "1660204800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1186, + "type": "message", + "date": "2022-08-11T14:00:00", + "date_unixtime": "1660219200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1187, + "type": "message", + "date": "2022-08-11T18:00:01", + "date_unixtime": "1660233601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1188, + "type": "message", + "date": "2022-08-11T22:00:01", + "date_unixtime": "1660248001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1189, + "type": "message", + "date": "2022-08-12T02:00:00", + "date_unixtime": "1660262400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1190, + "type": "message", + "date": "2022-08-12T06:00:00", + "date_unixtime": "1660276800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1191, + "type": "message", + "date": "2022-08-12T10:00:00", + "date_unixtime": "1660291200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1192, + "type": "message", + "date": "2022-08-12T14:00:00", + "date_unixtime": "1660305600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1193, + "type": "message", + "date": "2022-08-12T18:00:00", + "date_unixtime": "1660320000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1194, + "type": "message", + "date": "2022-08-12T22:00:00", + "date_unixtime": "1660334400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1195, + "type": "message", + "date": "2022-08-13T02:00:00", + "date_unixtime": "1660348800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1196, + "type": "message", + "date": "2022-08-13T06:00:00", + "date_unixtime": "1660363200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1197, + "type": "message", + "date": "2022-08-13T10:00:00", + "date_unixtime": "1660377600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1198, + "type": "message", + "date": "2022-08-13T14:00:00", + "date_unixtime": "1660392000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1199, + "type": "message", + "date": "2022-08-13T18:00:00", + "date_unixtime": "1660406400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1200, + "type": "message", + "date": "2022-08-13T22:00:00", + "date_unixtime": "1660420800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1201, + "type": "message", + "date": "2022-08-14T02:00:01", + "date_unixtime": "1660435201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1202, + "type": "message", + "date": "2022-08-14T06:00:00", + "date_unixtime": "1660449600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1203, + "type": "message", + "date": "2022-08-14T10:00:00", + "date_unixtime": "1660464000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1204, + "type": "message", + "date": "2022-08-14T14:00:00", + "date_unixtime": "1660478400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1205, + "type": "message", + "date": "2022-08-14T18:00:01", + "date_unixtime": "1660492801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1206, + "type": "message", + "date": "2022-08-14T22:00:00", + "date_unixtime": "1660507200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1207, + "type": "message", + "date": "2022-08-15T02:00:01", + "date_unixtime": "1660521601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1208, + "type": "message", + "date": "2022-08-15T06:00:00", + "date_unixtime": "1660536000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1209, + "type": "message", + "date": "2022-08-15T10:00:00", + "date_unixtime": "1660550400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1210, + "type": "message", + "date": "2022-08-15T14:00:00", + "date_unixtime": "1660564800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1211, + "type": "message", + "date": "2022-08-15T18:00:00", + "date_unixtime": "1660579200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1212, + "type": "message", + "date": "2022-08-15T22:00:01", + "date_unixtime": "1660593601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1213, + "type": "message", + "date": "2022-08-16T02:00:00", + "date_unixtime": "1660608000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1214, + "type": "message", + "date": "2022-08-16T06:00:00", + "date_unixtime": "1660622400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1215, + "type": "message", + "date": "2022-08-16T10:00:00", + "date_unixtime": "1660636800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1216, + "type": "message", + "date": "2022-08-16T14:00:00", + "date_unixtime": "1660651200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1217, + "type": "message", + "date": "2022-08-16T18:00:00", + "date_unixtime": "1660665600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1218, + "type": "message", + "date": "2022-08-16T22:00:00", + "date_unixtime": "1660680000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1219, + "type": "message", + "date": "2022-08-17T02:00:00", + "date_unixtime": "1660694400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1220, + "type": "message", + "date": "2022-08-17T06:00:01", + "date_unixtime": "1660708801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1221, + "type": "message", + "date": "2022-08-17T10:00:00", + "date_unixtime": "1660723200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1222, + "type": "message", + "date": "2022-08-17T14:00:00", + "date_unixtime": "1660737600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1223, + "type": "message", + "date": "2022-08-17T18:00:00", + "date_unixtime": "1660752000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1224, + "type": "message", + "date": "2022-08-17T22:00:01", + "date_unixtime": "1660766401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1225, + "type": "message", + "date": "2022-08-18T02:00:00", + "date_unixtime": "1660780800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1226, + "type": "message", + "date": "2022-08-18T06:00:00", + "date_unixtime": "1660795200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1227, + "type": "message", + "date": "2022-08-18T10:00:01", + "date_unixtime": "1660809601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1228, + "type": "message", + "date": "2022-08-18T14:00:00", + "date_unixtime": "1660824000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1229, + "type": "message", + "date": "2022-08-18T18:00:00", + "date_unixtime": "1660838400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1230, + "type": "message", + "date": "2022-08-18T22:00:01", + "date_unixtime": "1660852801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1231, + "type": "message", + "date": "2022-08-19T02:00:00", + "date_unixtime": "1660867200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1232, + "type": "message", + "date": "2022-08-19T06:00:00", + "date_unixtime": "1660881600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1233, + "type": "message", + "date": "2022-08-19T10:00:00", + "date_unixtime": "1660896000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1234, + "type": "message", + "date": "2022-08-19T14:00:00", + "date_unixtime": "1660910400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1235, + "type": "message", + "date": "2022-08-19T18:00:00", + "date_unixtime": "1660924800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1236, + "type": "message", + "date": "2022-08-19T22:00:00", + "date_unixtime": "1660939200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1237, + "type": "message", + "date": "2022-08-20T02:00:01", + "date_unixtime": "1660953601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1238, + "type": "message", + "date": "2022-08-20T06:00:00", + "date_unixtime": "1660968000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1239, + "type": "message", + "date": "2022-08-20T10:00:01", + "date_unixtime": "1660982401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1240, + "type": "message", + "date": "2022-08-20T14:00:00", + "date_unixtime": "1660996800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1241, + "type": "message", + "date": "2022-08-20T18:00:00", + "date_unixtime": "1661011200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1242, + "type": "message", + "date": "2022-08-20T22:00:00", + "date_unixtime": "1661025600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1243, + "type": "message", + "date": "2022-08-21T02:00:00", + "date_unixtime": "1661040000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1244, + "type": "message", + "date": "2022-08-21T06:00:00", + "date_unixtime": "1661054400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1245, + "type": "message", + "date": "2022-08-21T10:00:01", + "date_unixtime": "1661068801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1246, + "type": "message", + "date": "2022-08-21T14:00:00", + "date_unixtime": "1661083200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1247, + "type": "message", + "date": "2022-08-21T18:00:00", + "date_unixtime": "1661097600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1248, + "type": "message", + "date": "2022-08-21T22:00:00", + "date_unixtime": "1661112000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1249, + "type": "message", + "date": "2022-08-22T02:00:00", + "date_unixtime": "1661126400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1250, + "type": "message", + "date": "2022-08-22T06:00:00", + "date_unixtime": "1661140800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1251, + "type": "message", + "date": "2022-08-22T10:00:00", + "date_unixtime": "1661155200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1252, + "type": "message", + "date": "2022-08-22T14:00:00", + "date_unixtime": "1661169600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1253, + "type": "message", + "date": "2022-08-22T18:00:00", + "date_unixtime": "1661184000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1254, + "type": "message", + "date": "2022-08-22T22:00:00", + "date_unixtime": "1661198400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1255, + "type": "message", + "date": "2022-08-23T02:00:00", + "date_unixtime": "1661212800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1256, + "type": "message", + "date": "2022-08-23T06:00:00", + "date_unixtime": "1661227200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1257, + "type": "message", + "date": "2022-08-23T10:00:00", + "date_unixtime": "1661241600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1258, + "type": "message", + "date": "2022-08-23T14:00:00", + "date_unixtime": "1661256000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1259, + "type": "message", + "date": "2022-08-23T18:00:00", + "date_unixtime": "1661270400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1260, + "type": "message", + "date": "2022-08-23T22:00:00", + "date_unixtime": "1661284800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1261, + "type": "message", + "date": "2022-08-24T02:00:00", + "date_unixtime": "1661299200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1262, + "type": "message", + "date": "2022-08-24T06:00:00", + "date_unixtime": "1661313600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1263, + "type": "message", + "date": "2022-08-24T10:00:00", + "date_unixtime": "1661328000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1264, + "type": "message", + "date": "2022-08-24T14:00:01", + "date_unixtime": "1661342401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1265, + "type": "message", + "date": "2022-08-24T18:00:00", + "date_unixtime": "1661356800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1266, + "type": "message", + "date": "2022-08-24T22:00:00", + "date_unixtime": "1661371200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1267, + "type": "message", + "date": "2022-08-25T02:00:00", + "date_unixtime": "1661385600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1268, + "type": "message", + "date": "2022-08-25T06:00:00", + "date_unixtime": "1661400000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1269, + "type": "message", + "date": "2022-08-25T10:00:00", + "date_unixtime": "1661414400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1270, + "type": "message", + "date": "2022-08-25T14:00:00", + "date_unixtime": "1661428800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1271, + "type": "message", + "date": "2022-08-25T18:00:00", + "date_unixtime": "1661443200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1272, + "type": "message", + "date": "2022-08-25T22:00:00", + "date_unixtime": "1661457600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1273, + "type": "message", + "date": "2022-08-26T02:00:00", + "date_unixtime": "1661472000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1274, + "type": "message", + "date": "2022-08-26T06:00:00", + "date_unixtime": "1661486400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1275, + "type": "message", + "date": "2022-08-26T10:00:00", + "date_unixtime": "1661500800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1276, + "type": "message", + "date": "2022-08-26T14:00:00", + "date_unixtime": "1661515200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1277, + "type": "message", + "date": "2022-08-26T18:00:00", + "date_unixtime": "1661529600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1278, + "type": "message", + "date": "2022-08-26T22:00:01", + "date_unixtime": "1661544001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1279, + "type": "message", + "date": "2022-08-27T02:00:00", + "date_unixtime": "1661558400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1280, + "type": "message", + "date": "2022-08-27T06:00:00", + "date_unixtime": "1661572800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1281, + "type": "message", + "date": "2022-08-27T10:00:00", + "date_unixtime": "1661587200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1282, + "type": "message", + "date": "2022-08-27T14:00:00", + "date_unixtime": "1661601600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1283, + "type": "message", + "date": "2022-08-27T18:00:00", + "date_unixtime": "1661616000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1284, + "type": "message", + "date": "2022-08-27T22:00:00", + "date_unixtime": "1661630400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1285, + "type": "message", + "date": "2022-08-28T02:00:00", + "date_unixtime": "1661644800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1286, + "type": "message", + "date": "2022-08-28T06:00:01", + "date_unixtime": "1661659201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1287, + "type": "message", + "date": "2022-08-28T10:00:00", + "date_unixtime": "1661673600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1288, + "type": "message", + "date": "2022-08-28T14:00:01", + "date_unixtime": "1661688001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1289, + "type": "message", + "date": "2022-08-28T18:00:00", + "date_unixtime": "1661702400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1290, + "type": "message", + "date": "2022-08-28T22:00:00", + "date_unixtime": "1661716800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1291, + "type": "message", + "date": "2022-08-29T02:00:00", + "date_unixtime": "1661731200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1292, + "type": "message", + "date": "2022-08-29T06:00:01", + "date_unixtime": "1661745601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1293, + "type": "message", + "date": "2022-08-29T10:00:00", + "date_unixtime": "1661760000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1294, + "type": "message", + "date": "2022-08-29T14:00:00", + "date_unixtime": "1661774400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1295, + "type": "message", + "date": "2022-08-29T18:00:00", + "date_unixtime": "1661788800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1296, + "type": "message", + "date": "2022-08-29T22:00:01", + "date_unixtime": "1661803201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1297, + "type": "message", + "date": "2022-08-30T02:00:00", + "date_unixtime": "1661817600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1298, + "type": "message", + "date": "2022-08-30T06:00:01", + "date_unixtime": "1661832001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1299, + "type": "message", + "date": "2022-08-30T10:00:00", + "date_unixtime": "1661846400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1300, + "type": "message", + "date": "2022-08-30T14:00:00", + "date_unixtime": "1661860800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1301, + "type": "message", + "date": "2022-08-30T18:00:00", + "date_unixtime": "1661875200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1302, + "type": "message", + "date": "2022-08-30T22:00:00", + "date_unixtime": "1661889600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1303, + "type": "message", + "date": "2022-08-31T02:00:00", + "date_unixtime": "1661904000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1304, + "type": "message", + "date": "2022-08-31T06:00:00", + "date_unixtime": "1661918400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1305, + "type": "message", + "date": "2022-08-31T10:00:00", + "date_unixtime": "1661932800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1306, + "type": "message", + "date": "2022-08-31T14:00:01", + "date_unixtime": "1661947201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1307, + "type": "message", + "date": "2022-08-31T18:00:00", + "date_unixtime": "1661961600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1308, + "type": "message", + "date": "2022-08-31T22:00:00", + "date_unixtime": "1661976000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1309, + "type": "message", + "date": "2022-09-01T02:00:00", + "date_unixtime": "1661990400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1310, + "type": "message", + "date": "2022-09-01T06:00:00", + "date_unixtime": "1662004800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1311, + "type": "message", + "date": "2022-09-01T10:00:00", + "date_unixtime": "1662019200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1312, + "type": "message", + "date": "2022-09-01T14:00:00", + "date_unixtime": "1662033600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1313, + "type": "message", + "date": "2022-09-01T18:00:00", + "date_unixtime": "1662048000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1314, + "type": "message", + "date": "2022-09-01T22:00:00", + "date_unixtime": "1662062400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1315, + "type": "message", + "date": "2022-09-02T02:00:01", + "date_unixtime": "1662076801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1316, + "type": "message", + "date": "2022-09-02T06:00:00", + "date_unixtime": "1662091200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1317, + "type": "message", + "date": "2022-09-02T10:00:00", + "date_unixtime": "1662105600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1318, + "type": "message", + "date": "2022-09-02T14:00:00", + "date_unixtime": "1662120000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1319, + "type": "message", + "date": "2022-09-02T18:00:01", + "date_unixtime": "1662134401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1320, + "type": "message", + "date": "2022-09-02T22:00:00", + "date_unixtime": "1662148800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1321, + "type": "message", + "date": "2022-09-03T02:00:00", + "date_unixtime": "1662163200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1322, + "type": "message", + "date": "2022-09-03T06:00:00", + "date_unixtime": "1662177600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1323, + "type": "message", + "date": "2022-09-03T10:00:01", + "date_unixtime": "1662192001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1324, + "type": "message", + "date": "2022-09-03T14:00:00", + "date_unixtime": "1662206400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1325, + "type": "message", + "date": "2022-09-03T18:00:01", + "date_unixtime": "1662220801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1326, + "type": "message", + "date": "2022-09-03T22:00:00", + "date_unixtime": "1662235200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1327, + "type": "message", + "date": "2022-09-04T02:00:00", + "date_unixtime": "1662249600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1328, + "type": "message", + "date": "2022-09-04T06:00:00", + "date_unixtime": "1662264000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1329, + "type": "message", + "date": "2022-09-04T10:00:00", + "date_unixtime": "1662278400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1330, + "type": "message", + "date": "2022-09-04T14:00:00", + "date_unixtime": "1662292800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1331, + "type": "message", + "date": "2022-09-04T18:00:00", + "date_unixtime": "1662307200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1332, + "type": "message", + "date": "2022-09-04T22:00:00", + "date_unixtime": "1662321600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1333, + "type": "message", + "date": "2022-09-05T02:00:00", + "date_unixtime": "1662336000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1334, + "type": "message", + "date": "2022-09-05T06:00:00", + "date_unixtime": "1662350400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1335, + "type": "message", + "date": "2022-09-05T10:00:00", + "date_unixtime": "1662364800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1336, + "type": "message", + "date": "2022-09-05T14:00:00", + "date_unixtime": "1662379200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1337, + "type": "message", + "date": "2022-09-05T18:00:00", + "date_unixtime": "1662393600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1338, + "type": "message", + "date": "2022-09-05T22:00:01", + "date_unixtime": "1662408001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1339, + "type": "message", + "date": "2022-09-06T02:00:00", + "date_unixtime": "1662422400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1340, + "type": "message", + "date": "2022-09-06T06:00:00", + "date_unixtime": "1662436800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1341, + "type": "message", + "date": "2022-09-06T10:00:00", + "date_unixtime": "1662451200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1342, + "type": "message", + "date": "2022-09-06T14:00:00", + "date_unixtime": "1662465600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1343, + "type": "message", + "date": "2022-09-06T18:00:00", + "date_unixtime": "1662480000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1344, + "type": "message", + "date": "2022-09-06T22:00:00", + "date_unixtime": "1662494400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1345, + "type": "message", + "date": "2022-09-07T02:00:00", + "date_unixtime": "1662508800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1346, + "type": "message", + "date": "2022-09-07T06:00:00", + "date_unixtime": "1662523200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1347, + "type": "message", + "date": "2022-09-07T10:00:00", + "date_unixtime": "1662537600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1348, + "type": "message", + "date": "2022-09-07T14:00:00", + "date_unixtime": "1662552000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1349, + "type": "message", + "date": "2022-09-07T18:00:00", + "date_unixtime": "1662566400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1350, + "type": "message", + "date": "2022-09-07T22:00:01", + "date_unixtime": "1662580801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1351, + "type": "message", + "date": "2022-09-08T02:00:00", + "date_unixtime": "1662595200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1352, + "type": "message", + "date": "2022-09-08T06:00:00", + "date_unixtime": "1662609600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1353, + "type": "message", + "date": "2022-09-08T10:00:00", + "date_unixtime": "1662624000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1354, + "type": "message", + "date": "2022-09-08T14:00:00", + "date_unixtime": "1662638400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1355, + "type": "message", + "date": "2022-09-08T18:00:00", + "date_unixtime": "1662652800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1356, + "type": "message", + "date": "2022-09-08T22:00:00", + "date_unixtime": "1662667200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1357, + "type": "message", + "date": "2022-09-09T02:00:00", + "date_unixtime": "1662681600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1358, + "type": "message", + "date": "2022-09-09T06:00:00", + "date_unixtime": "1662696000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1359, + "type": "message", + "date": "2022-09-09T10:00:00", + "date_unixtime": "1662710400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1360, + "type": "message", + "date": "2022-09-09T14:00:00", + "date_unixtime": "1662724800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1361, + "type": "message", + "date": "2022-09-09T18:00:00", + "date_unixtime": "1662739200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1362, + "type": "message", + "date": "2022-09-09T22:00:00", + "date_unixtime": "1662753600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1363, + "type": "message", + "date": "2022-09-10T02:00:01", + "date_unixtime": "1662768001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1364, + "type": "message", + "date": "2022-09-10T06:00:00", + "date_unixtime": "1662782400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1365, + "type": "message", + "date": "2022-09-10T10:00:00", + "date_unixtime": "1662796800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1366, + "type": "message", + "date": "2022-09-10T14:00:00", + "date_unixtime": "1662811200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1367, + "type": "message", + "date": "2022-09-10T18:00:00", + "date_unixtime": "1662825600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1368, + "type": "message", + "date": "2022-09-10T22:00:01", + "date_unixtime": "1662840001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1369, + "type": "message", + "date": "2022-09-11T02:00:00", + "date_unixtime": "1662854400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1370, + "type": "message", + "date": "2022-09-11T06:00:00", + "date_unixtime": "1662868800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1371, + "type": "message", + "date": "2022-09-11T10:00:00", + "date_unixtime": "1662883200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1372, + "type": "message", + "date": "2022-09-11T14:00:01", + "date_unixtime": "1662897601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1373, + "type": "message", + "date": "2022-09-11T18:00:00", + "date_unixtime": "1662912000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1374, + "type": "message", + "date": "2022-09-11T22:00:00", + "date_unixtime": "1662926400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1375, + "type": "message", + "date": "2022-09-12T02:00:00", + "date_unixtime": "1662940800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1376, + "type": "message", + "date": "2022-09-12T06:00:00", + "date_unixtime": "1662955200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1377, + "type": "message", + "date": "2022-09-12T10:00:00", + "date_unixtime": "1662969600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1378, + "type": "message", + "date": "2022-09-12T14:00:00", + "date_unixtime": "1662984000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1379, + "type": "message", + "date": "2022-09-12T18:00:00", + "date_unixtime": "1662998400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1380, + "type": "message", + "date": "2022-09-12T22:00:00", + "date_unixtime": "1663012800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1381, + "type": "message", + "date": "2022-09-13T02:00:00", + "date_unixtime": "1663027200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1382, + "type": "message", + "date": "2022-09-13T06:00:01", + "date_unixtime": "1663041601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1383, + "type": "message", + "date": "2022-09-13T10:00:00", + "date_unixtime": "1663056000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1384, + "type": "message", + "date": "2022-09-13T14:00:01", + "date_unixtime": "1663070401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1385, + "type": "message", + "date": "2022-09-13T18:00:00", + "date_unixtime": "1663084800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1386, + "type": "message", + "date": "2022-09-13T22:00:00", + "date_unixtime": "1663099200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1387, + "type": "message", + "date": "2022-09-14T02:00:00", + "date_unixtime": "1663113600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1388, + "type": "message", + "date": "2022-09-14T06:00:00", + "date_unixtime": "1663128000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1389, + "type": "message", + "date": "2022-09-14T10:00:00", + "date_unixtime": "1663142400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1390, + "type": "message", + "date": "2022-09-14T14:00:00", + "date_unixtime": "1663156800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1391, + "type": "message", + "date": "2022-09-14T18:00:00", + "date_unixtime": "1663171200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1392, + "type": "message", + "date": "2022-09-14T22:00:00", + "date_unixtime": "1663185600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1393, + "type": "message", + "date": "2022-09-15T02:00:00", + "date_unixtime": "1663200000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1394, + "type": "message", + "date": "2022-09-15T06:00:00", + "date_unixtime": "1663214400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1395, + "type": "message", + "date": "2022-09-15T10:00:00", + "date_unixtime": "1663228800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1396, + "type": "message", + "date": "2022-09-15T14:00:00", + "date_unixtime": "1663243200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1397, + "type": "message", + "date": "2022-09-15T18:00:00", + "date_unixtime": "1663257600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1398, + "type": "message", + "date": "2022-09-15T22:00:00", + "date_unixtime": "1663272000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1399, + "type": "message", + "date": "2022-09-16T02:00:00", + "date_unixtime": "1663286400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1400, + "type": "message", + "date": "2022-09-16T06:00:00", + "date_unixtime": "1663300800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1401, + "type": "message", + "date": "2022-09-16T10:00:00", + "date_unixtime": "1663315200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1402, + "type": "message", + "date": "2022-09-16T14:00:00", + "date_unixtime": "1663329600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1403, + "type": "message", + "date": "2022-09-16T18:00:00", + "date_unixtime": "1663344000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1404, + "type": "message", + "date": "2022-09-16T22:00:00", + "date_unixtime": "1663358400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1405, + "type": "message", + "date": "2022-09-17T02:00:00", + "date_unixtime": "1663372800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1406, + "type": "message", + "date": "2022-09-17T06:00:00", + "date_unixtime": "1663387200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1407, + "type": "message", + "date": "2022-09-17T10:00:00", + "date_unixtime": "1663401600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1408, + "type": "message", + "date": "2022-09-17T14:00:00", + "date_unixtime": "1663416000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1409, + "type": "message", + "date": "2022-09-17T18:00:00", + "date_unixtime": "1663430400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1410, + "type": "message", + "date": "2022-09-17T22:00:00", + "date_unixtime": "1663444800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1411, + "type": "message", + "date": "2022-09-18T02:00:00", + "date_unixtime": "1663459200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1412, + "type": "message", + "date": "2022-09-18T06:00:00", + "date_unixtime": "1663473600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1413, + "type": "message", + "date": "2022-09-18T10:00:00", + "date_unixtime": "1663488000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1414, + "type": "message", + "date": "2022-09-18T14:00:00", + "date_unixtime": "1663502400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1415, + "type": "message", + "date": "2022-09-18T18:00:00", + "date_unixtime": "1663516800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1416, + "type": "message", + "date": "2022-09-18T22:00:00", + "date_unixtime": "1663531200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1417, + "type": "message", + "date": "2022-09-19T02:00:01", + "date_unixtime": "1663545601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1418, + "type": "message", + "date": "2022-09-19T06:00:00", + "date_unixtime": "1663560000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1419, + "type": "message", + "date": "2022-09-19T10:00:00", + "date_unixtime": "1663574400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (93.73120211 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1420, + "type": "message", + "date": "2022-09-19T14:00:04", + "date_unixtime": "1663588804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023753 BTC for 109.62 CZK @ 461,482 CZK\nFees are 0.38499816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (18.459279998639041131478716422 CZK)\nThe limits being 0.10 % (65.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05877269 BTC (30,669.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 461,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -11.56 % (-3,546.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,983.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14233452 BTC (65,684.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.57 CZK over 299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023753 BTC for 109.62 CZK @ 461,482 CZK\nFees are 0.38499816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (18.459279998639041131478716422 CZK)\nThe limits being 0.10 % (65.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05877269 BTC (30,669.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 461,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -11.56 % (-3,546.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,983.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14233452 BTC (65,684.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.57 CZK over 299 transactions" + } + ] + }, + { + "id": 1421, + "type": "message", + "date": "2022-09-19T18:00:05", + "date_unixtime": "1663603205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023173 BTC for 109.62 CZK @ 473,033 CZK\nFees are 0.38499858 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.381979997467543956915478859 CZK)\nThe limits being 0.10 % (67.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05900442 BTC (30,779.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.32 % (-2,868.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,873.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14256625 BTC (67,438.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.60 CZK over 300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023173 BTC for 109.62 CZK @ 473,033 CZK\nFees are 0.38499858 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.381979997467543956915478859 CZK)\nThe limits being 0.10 % (67.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05900442 BTC (30,779.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.32 % (-2,868.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,873.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14256625 BTC (67,438.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.60 CZK over 300 transactions" + } + ] + }, + { + "id": 1422, + "type": "message", + "date": "2022-09-19T22:00:04", + "date_unixtime": "1663617604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022844 BTC for 109.61 CZK @ 479,839 CZK\nFees are 0.38499325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.387119998583141459802266223 CZK)\nThe limits being 0.10 % (68.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05923286 BTC (30,889.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,839 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.99 % (-2,466.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,763.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14279469 BTC (68,518.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.62 CZK over 301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022844 BTC for 109.61 CZK @ 479,839 CZK\nFees are 0.38499325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.387119998583141459802266223 CZK)\nThe limits being 0.10 % (68.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05923286 BTC (30,889.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,839 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.99 % (-2,466.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,763.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14279469 BTC (68,518.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.62 CZK over 301 transactions" + } + ] + }, + { + "id": 1423, + "type": "message", + "date": "2022-09-20T02:00:04", + "date_unixtime": "1663632004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022873 BTC for 109.62 CZK @ 479,238 CZK\nFees are 0.38499917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.131419997219977967639210388 CZK)\nThe limits being 0.10 % (68.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05946159 BTC (30,999.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.07 % (-2,502.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,653.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14302342 BTC (68,542.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.65 CZK over 302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022873 BTC for 109.62 CZK @ 479,238 CZK\nFees are 0.38499917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.131419997219977967639210388 CZK)\nThe limits being 0.10 % (68.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05946159 BTC (30,999.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.07 % (-2,502.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,653.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14302342 BTC (68,542.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.65 CZK over 302 transactions" + } + ] + }, + { + "id": 1424, + "type": "message", + "date": "2022-09-20T06:00:03", + "date_unixtime": "1663646403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023043 BTC for 109.61 CZK @ 475,689 CZK\nFees are 0.38498832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.812009997296923338293839028 CZK)\nThe limits being 0.10 % (68.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05969202 BTC (31,109.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 475,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.73 % (-2,714.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,543.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14325385 BTC (68,144.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.67 CZK over 303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023043 BTC for 109.61 CZK @ 475,689 CZK\nFees are 0.38498832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.812009997296923338293839028 CZK)\nThe limits being 0.10 % (68.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05969202 BTC (31,109.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 475,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.73 % (-2,714.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,543.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14325385 BTC (68,144.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.67 CZK over 303 transactions" + } + ] + }, + { + "id": 1425, + "type": "message", + "date": "2022-09-20T10:00:03", + "date_unixtime": "1663660803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023015 BTC for 109.61 CZK @ 476,263 CZK\nFees are 0.38498450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.101039998934859861005706619 CZK)\nThe limits being 0.10 % (68.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.05992217 BTC (31,219.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 476,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.59 % (-2,680.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,433.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14348400 BTC (68,336.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.69 CZK over 304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023015 BTC for 109.61 CZK @ 476,263 CZK\nFees are 0.38498450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.101039998934859861005706619 CZK)\nThe limits being 0.10 % (68.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.05992217 BTC (31,219.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 476,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.59 % (-2,680.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,433.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14348400 BTC (68,336.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.69 CZK over 304 transactions" + } + ] + }, + { + "id": 1426, + "type": "message", + "date": "2022-09-20T14:00:05", + "date_unixtime": "1663675205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023126 BTC for 109.62 CZK @ 473,994 CZK\nFees are 0.38499828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.439639999084756582093262529 CZK)\nThe limits being 0.10 % (68.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06015343 BTC (31,329.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.99 % (-2,816.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,323.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14371526 BTC (68,120.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.72 CZK over 305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023126 BTC for 109.62 CZK @ 473,994 CZK\nFees are 0.38499828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.439639999084756582093262529 CZK)\nThe limits being 0.10 % (68.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06015343 BTC (31,329.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.99 % (-2,816.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,323.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14371526 BTC (68,120.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.72 CZK over 305 transactions" + } + ] + }, + { + "id": 1427, + "type": "message", + "date": "2022-09-20T18:00:03", + "date_unixtime": "1663689603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023102 BTC for 109.61 CZK @ 474,475 CZK\nFees are 0.38498901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.702749999708836576958569000 CZK)\nThe limits being 0.10 % (68.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06038445 BTC (31,439.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.87 % (-2,788.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,213.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14394628 BTC (68,298.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.74 CZK over 306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023102 BTC for 109.61 CZK @ 474,475 CZK\nFees are 0.38498901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.702749999708836576958569000 CZK)\nThe limits being 0.10 % (68.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06038445 BTC (31,439.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.87 % (-2,788.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,213.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14394628 BTC (68,298.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.74 CZK over 306 transactions" + } + ] + }, + { + "id": 1428, + "type": "message", + "date": "2022-09-20T22:00:04", + "date_unixtime": "1663704004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023322 BTC for 109.61 CZK @ 470,002 CZK\nFees are 0.38499130 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.300179999023228322686906605 CZK)\nThe limits being 0.10 % (67.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06061767 BTC (31,549.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 470,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.70 % (-3,058.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,103.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14417950 BTC (67,764.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.77 CZK over 307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023322 BTC for 109.61 CZK @ 470,002 CZK\nFees are 0.38499130 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.300179999023228322686906605 CZK)\nThe limits being 0.10 % (67.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06061767 BTC (31,549.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 470,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.70 % (-3,058.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,103.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14417950 BTC (67,764.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.77 CZK over 307 transactions" + } + ] + }, + { + "id": 1429, + "type": "message", + "date": "2022-09-21T02:00:05", + "date_unixtime": "1663718405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023417 BTC for 109.61 CZK @ 468,087 CZK\nFees are 0.38498451 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.127829998175025579324054754 CZK)\nThe limits being 0.10 % (67.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06085184 BTC (31,659.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 468,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -10.03 % (-3,175.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,993.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14441367 BTC (67,598.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.79 CZK over 308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023417 BTC for 109.61 CZK @ 468,087 CZK\nFees are 0.38498451 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.127829998175025579324054754 CZK)\nThe limits being 0.10 % (67.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06085184 BTC (31,659.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 468,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -10.03 % (-3,175.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,993.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14441367 BTC (67,598.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.79 CZK over 308 transactions" + } + ] + }, + { + "id": 1430, + "type": "message", + "date": "2022-09-21T06:00:03", + "date_unixtime": "1663732803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023272 BTC for 109.61 CZK @ 471,009 CZK\nFees are 0.38498901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (37.680719999767057992111829976 CZK)\nThe limits being 0.10 % (68.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06108456 BTC (31,769.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 471,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.44 % (-2,997.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,883.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14464639 BTC (68,129.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.81 CZK over 309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023272 BTC for 109.61 CZK @ 471,009 CZK\nFees are 0.38498901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (37.680719999767057992111829976 CZK)\nThe limits being 0.10 % (68.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06108456 BTC (31,769.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 471,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.44 % (-2,997.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,883.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14464639 BTC (68,129.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.81 CZK over 309 transactions" + } + ] + }, + { + "id": 1431, + "type": "message", + "date": "2022-09-21T10:00:04", + "date_unixtime": "1663747204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023174 BTC for 109.61 CZK @ 473,006 CZK\nFees are 0.38499321 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.190179999156314425359175913 CZK)\nThe limits being 0.10 % (68.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06131630 BTC (31,879.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.02 % (-2,876.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,773.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14487813 BTC (68,528.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.84 CZK over 310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023174 BTC for 109.61 CZK @ 473,006 CZK\nFees are 0.38499321 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.190179999156314425359175913 CZK)\nThe limits being 0.10 % (68.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06131630 BTC (31,879.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.02 % (-2,876.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,773.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14487813 BTC (68,528.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.84 CZK over 310 transactions" + } + ] + }, + { + "id": 1432, + "type": "message", + "date": "2022-09-21T14:00:03", + "date_unixtime": "1663761603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022962 BTC for 109.61 CZK @ 477,375 CZK\nFees are 0.38499505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.7737537988176301505830542496 CZK)\nThe limits being 0.10 % (69.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06154592 BTC (31,989.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.15 % (-2,608.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,663.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14510775 BTC (69,270.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.86 CZK over 311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022962 BTC for 109.61 CZK @ 477,375 CZK\nFees are 0.38499505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.7737537988176301505830542496 CZK)\nThe limits being 0.10 % (69.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06154592 BTC (31,989.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.15 % (-2,608.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,663.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14510775 BTC (69,270.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.86 CZK over 311 transactions" + } + ] + }, + { + "id": 1433, + "type": "message", + "date": "2022-09-21T18:00:03", + "date_unixtime": "1663776003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022786 BTC for 109.61 CZK @ 481,054 CZK\nFees are 0.38498813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.294859997819446210185705248 CZK)\nThe limits being 0.10 % (69.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06177378 BTC (32,099.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.42 % (-2,382.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,553.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14533561 BTC (69,914.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.88 CZK over 312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022786 BTC for 109.61 CZK @ 481,054 CZK\nFees are 0.38498813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.294859997819446210185705248 CZK)\nThe limits being 0.10 % (69.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06177378 BTC (32,099.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.42 % (-2,382.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,553.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14533561 BTC (69,914.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.88 CZK over 312 transactions" + } + ] + }, + { + "id": 1434, + "type": "message", + "date": "2022-09-21T22:00:03", + "date_unixtime": "1663790403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023041 BTC for 109.61 CZK @ 475,725 CZK\nFees are 0.38498403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.815249999854032867516532723 CZK)\nThe limits being 0.10 % (69.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06200419 BTC (32,209.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 475,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.42 % (-2,712.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,443.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14556602 BTC (69,249.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.90 CZK over 313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023041 BTC for 109.61 CZK @ 475,725 CZK\nFees are 0.38498403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.815249999854032867516532723 CZK)\nThe limits being 0.10 % (69.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06200419 BTC (32,209.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 475,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.42 % (-2,712.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,443.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14556602 BTC (69,249.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.90 CZK over 313 transactions" + } + ] + }, + { + "id": 1435, + "type": "message", + "date": "2022-09-22T02:00:04", + "date_unixtime": "1663804804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023636 BTC for 109.61 CZK @ 463,756 CZK\nFees are 0.38498955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (46.375599996391037191457922318 CZK)\nThe limits being 0.10 % (67.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06224055 BTC (32,319.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 463,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -10.69 % (-3,454.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,333.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14580238 BTC (67,616.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.93 CZK over 314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023636 BTC for 109.61 CZK @ 463,756 CZK\nFees are 0.38498955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (46.375599996391037191457922318 CZK)\nThe limits being 0.10 % (67.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06224055 BTC (32,319.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 463,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -10.69 % (-3,454.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,333.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14580238 BTC (67,616.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.93 CZK over 314 transactions" + } + ] + }, + { + "id": 1436, + "type": "message", + "date": "2022-09-22T06:00:03", + "date_unixtime": "1663819203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023262 BTC for 109.62 CZK @ 471,224 CZK\nFees are 0.38499923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.410158641299172267710421314 CZK)\nThe limits being 0.10 % (68.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06247317 BTC (32,429.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 471,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.22 % (-2,990.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,223.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14603500 BTC (68,815.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.95 CZK over 315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023262 BTC for 109.62 CZK @ 471,224 CZK\nFees are 0.38499923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.410158641299172267710421314 CZK)\nThe limits being 0.10 % (68.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06247317 BTC (32,429.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 471,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.22 % (-2,990.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,223.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14603500 BTC (68,815.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.95 CZK over 315 transactions" + } + ] + }, + { + "id": 1437, + "type": "message", + "date": "2022-09-22T10:00:04", + "date_unixtime": "1663833604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023029 BTC for 109.61 CZK @ 475,983 CZK\nFees are 0.38499221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.039319998659431665232306148 CZK)\nThe limits being 0.10 % (69.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06270346 BTC (32,539.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 475,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.28 % (-2,693.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,113.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14626529 BTC (69,619.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.97 CZK over 316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023029 BTC for 109.61 CZK @ 475,983 CZK\nFees are 0.38499221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.039319998659431665232306148 CZK)\nThe limits being 0.10 % (69.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06270346 BTC (32,539.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 475,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.28 % (-2,693.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,113.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14626529 BTC (69,619.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.97 CZK over 316 transactions" + } + ] + }, + { + "id": 1438, + "type": "message", + "date": "2022-09-22T14:00:04", + "date_unixtime": "1663848004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022766 BTC for 109.62 CZK @ 481,490 CZK\nFees are 0.38499884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.629799999395947093894902936 CZK)\nThe limits being 0.10 % (70.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06293112 BTC (32,649.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.19 % (-2,348.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,003.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14649295 BTC (70,534.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.99 CZK over 317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022766 BTC for 109.62 CZK @ 481,490 CZK\nFees are 0.38499884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.629799999395947093894902936 CZK)\nThe limits being 0.10 % (70.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06293112 BTC (32,649.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.19 % (-2,348.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,003.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14649295 BTC (70,534.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.99 CZK over 317 transactions" + } + ] + }, + { + "id": 1439, + "type": "message", + "date": "2022-09-22T18:00:03", + "date_unixtime": "1663862403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022975 BTC for 109.62 CZK @ 477,110 CZK\nFees are 0.38499887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.168799996963836582841447751 CZK)\nThe limits being 0.10 % (70.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06316087 BTC (32,759.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.01 % (-2,624.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,893.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14672270 BTC (70,002.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.02 CZK over 318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022975 BTC for 109.62 CZK @ 477,110 CZK\nFees are 0.38499887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.168799996963836582841447751 CZK)\nThe limits being 0.10 % (70.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06316087 BTC (32,759.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.01 % (-2,624.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,893.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14672270 BTC (70,002.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.02 CZK over 318 transactions" + } + ] + }, + { + "id": 1440, + "type": "message", + "date": "2022-09-22T22:00:03", + "date_unixtime": "1663876803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022597 BTC for 109.61 CZK @ 485,072 CZK\nFees are 0.38498376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.805759996669619777254804008 CZK)\nThe limits being 0.10 % (71.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06338684 BTC (32,869.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.46 % (-2,121.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,783.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14694867 BTC (71,280.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.04 CZK over 319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022597 BTC for 109.61 CZK @ 485,072 CZK\nFees are 0.38498376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.805759996669619777254804008 CZK)\nThe limits being 0.10 % (71.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06338684 BTC (32,869.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.46 % (-2,121.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,783.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14694867 BTC (71,280.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.04 CZK over 319 transactions" + } + ] + }, + { + "id": 1441, + "type": "message", + "date": "2022-09-23T02:00:03", + "date_unixtime": "1663891203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022488 BTC for 109.62 CZK @ 487,443 CZK\nFees are 0.38499943 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.869869997431614748593370374 CZK)\nThe limits being 0.10 % (71.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06361172 BTC (32,979.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.98 % (-1,972.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,673.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14717355 BTC (71,738.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.06 CZK over 320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022488 BTC for 109.62 CZK @ 487,443 CZK\nFees are 0.38499943 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.869869997431614748593370374 CZK)\nThe limits being 0.10 % (71.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06361172 BTC (32,979.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.98 % (-1,972.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,673.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14717355 BTC (71,738.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.06 CZK over 320 transactions" + } + ] + }, + { + "id": 1442, + "type": "message", + "date": "2022-09-23T06:00:03", + "date_unixtime": "1663905603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022471 BTC for 109.62 CZK @ 487,812 CZK\nFees are 0.38499962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.903079999672722171256904516 CZK)\nThe limits being 0.10 % (71.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06383643 BTC (33,089.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.89 % (-1,948.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,563.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14739826 BTC (71,902.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.08 CZK over 321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022471 BTC for 109.62 CZK @ 487,812 CZK\nFees are 0.38499962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.903079999672722171256904516 CZK)\nThe limits being 0.10 % (71.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06383643 BTC (33,089.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.89 % (-1,948.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,563.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14739826 BTC (71,902.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.08 CZK over 321 transactions" + } + ] + }, + { + "id": 1443, + "type": "message", + "date": "2022-09-23T10:00:05", + "date_unixtime": "1663920005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022559 BTC for 109.61 CZK @ 485,901 CZK\nFees are 0.38499320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.872079998916863366178833324 CZK)\nThe limits being 0.10 % (71.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06406202 BTC (33,199.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.24 % (-2,071.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,453.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14762385 BTC (71,730.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.10 CZK over 322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022559 BTC for 109.61 CZK @ 485,901 CZK\nFees are 0.38499320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.872079998916863366178833324 CZK)\nThe limits being 0.10 % (71.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06406202 BTC (33,199.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.24 % (-2,071.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,453.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14762385 BTC (71,730.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.10 CZK over 322 transactions" + } + ] + }, + { + "id": 1444, + "type": "message", + "date": "2022-09-23T14:00:06", + "date_unixtime": "1663934406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022948 BTC for 109.61 CZK @ 477,661 CZK\nFees are 0.38499053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.989489999226170144080866003 CZK)\nThe limits being 0.10 % (70.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06429150 BTC (33,309.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.80 % (-2,599.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,343.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14785333 BTC (70,623.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.12 CZK over 323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022948 BTC for 109.61 CZK @ 477,661 CZK\nFees are 0.38499053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.989489999226170144080866003 CZK)\nThe limits being 0.10 % (70.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06429150 BTC (33,309.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.80 % (-2,599.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,343.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14785333 BTC (70,623.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.12 CZK over 323 transactions" + } + ] + }, + { + "id": 1445, + "type": "message", + "date": "2022-09-23T18:00:04", + "date_unixtime": "1663948804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023083 BTC for 109.62 CZK @ 474,874 CZK\nFees are 0.38499586 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.738659996514819109592620432 CZK)\nThe limits being 0.10 % (70.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06452233 BTC (33,419.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 474,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -8.32 % (-2,779.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,233.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14808416 BTC (70,321.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.15 CZK over 324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023083 BTC for 109.62 CZK @ 474,874 CZK\nFees are 0.38499586 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.738659996514819109592620432 CZK)\nThe limits being 0.10 % (70.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06452233 BTC (33,419.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 474,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -8.32 % (-2,779.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,233.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14808416 BTC (70,321.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.15 CZK over 324 transactions" + } + ] + }, + { + "id": 1446, + "type": "message", + "date": "2022-09-23T22:00:04", + "date_unixtime": "1663963204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022862 BTC for 109.61 CZK @ 479,463 CZK\nFees are 0.38499469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.535559995444166918715124304 CZK)\nThe limits being 0.10 % (71.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06475095 BTC (33,529.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.41 % (-2,483.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,123.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14831278 BTC (71,110.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.17 CZK over 325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022862 BTC for 109.61 CZK @ 479,463 CZK\nFees are 0.38499469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (57.535559995444166918715124304 CZK)\nThe limits being 0.10 % (71.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06475095 BTC (33,529.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.41 % (-2,483.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,123.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14831278 BTC (71,110.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.17 CZK over 325 transactions" + } + ] + }, + { + "id": 1447, + "type": "message", + "date": "2022-09-24T02:00:03", + "date_unixtime": "1663977603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022311 BTC for 109.61 CZK @ 491,296 CZK\nFees are 0.38498844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.042559996580477137334108084 CZK)\nThe limits being 0.10 % (72.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06497406 BTC (33,639.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.11 % (-1,717.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,013.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14853589 BTC (72,975.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.19 CZK over 326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022311 BTC for 109.61 CZK @ 491,296 CZK\nFees are 0.38498844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.042559996580477137334108084 CZK)\nThe limits being 0.10 % (72.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06497406 BTC (33,639.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.11 % (-1,717.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,013.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14853589 BTC (72,975.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.19 CZK over 326 transactions" + } + ] + }, + { + "id": 1448, + "type": "message", + "date": "2022-09-24T06:00:03", + "date_unixtime": "1663992003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022504 BTC for 109.62 CZK @ 487,096 CZK\nFees are 0.38499909 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.838639998629042928491835631 CZK)\nThe limits being 0.10 % (72.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06519910 BTC (33,749.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.90 % (-1,990.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,903.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14876093 BTC (72,460.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.21 CZK over 327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022504 BTC for 109.62 CZK @ 487,096 CZK\nFees are 0.38499909 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.838639998629042928491835631 CZK)\nThe limits being 0.10 % (72.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06519910 BTC (33,749.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.90 % (-1,990.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,903.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14876093 BTC (72,460.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.21 CZK over 327 transactions" + } + ] + }, + { + "id": 1449, + "type": "message", + "date": "2022-09-24T10:00:03", + "date_unixtime": "1664006403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022658 BTC for 109.61 CZK @ 483,777 CZK\nFees are 0.38499245 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (33.864389998673105600958917598 CZK)\nThe limits being 0.10 % (72.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06542568 BTC (33,859.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.52 % (-2,207.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,793.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14898751 BTC (72,076.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.23 CZK over 328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022658 BTC for 109.61 CZK @ 483,777 CZK\nFees are 0.38499245 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (33.864389998673105600958917598 CZK)\nThe limits being 0.10 % (72.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06542568 BTC (33,859.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.52 % (-2,207.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,793.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14898751 BTC (72,076.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.23 CZK over 328 transactions" + } + ] + }, + { + "id": 1450, + "type": "message", + "date": "2022-09-24T14:00:04", + "date_unixtime": "1664020804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022597 BTC for 109.62 CZK @ 485,089 CZK\nFees are 0.38499726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.701779999589435383027571840 CZK)\nThe limits being 0.10 % (72.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06565165 BTC (33,969.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.25 % (-2,122.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,683.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14921348 BTC (72,381.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.25 CZK over 329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022597 BTC for 109.62 CZK @ 485,089 CZK\nFees are 0.38499726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.701779999589435383027571840 CZK)\nThe limits being 0.10 % (72.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06565165 BTC (33,969.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.25 % (-2,122.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,683.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14921348 BTC (72,381.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.25 CZK over 329 transactions" + } + ] + }, + { + "id": 1451, + "type": "message", + "date": "2022-09-24T18:00:03", + "date_unixtime": "1664035203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022548 BTC for 109.61 CZK @ 486,130 CZK\nFees are 0.38498683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.583899999549209485799170705 CZK)\nThe limits being 0.10 % (72.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06587713 BTC (34,079.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.03 % (-2,054.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,573.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14943896 BTC (72,646.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.27 CZK over 330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022548 BTC for 109.61 CZK @ 486,130 CZK\nFees are 0.38498683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.583899999549209485799170705 CZK)\nThe limits being 0.10 % (72.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06587713 BTC (34,079.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.03 % (-2,054.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,573.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14943896 BTC (72,646.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.27 CZK over 330 transactions" + } + ] + }, + { + "id": 1452, + "type": "message", + "date": "2022-09-24T22:00:05", + "date_unixtime": "1664049605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022532 BTC for 109.62 CZK @ 486,486 CZK\nFees are 0.38499537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.594579998763426179859927499 CZK)\nThe limits being 0.10 % (72.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06610245 BTC (34,189.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.94 % (-2,031.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,463.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14966428 BTC (72,809.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.29 CZK over 331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022532 BTC for 109.62 CZK @ 486,486 CZK\nFees are 0.38499537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.594579998763426179859927499 CZK)\nThe limits being 0.10 % (72.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06610245 BTC (34,189.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.94 % (-2,031.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,463.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14966428 BTC (72,809.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.29 CZK over 331 transactions" + } + ] + }, + { + "id": 1453, + "type": "message", + "date": "2022-09-25T02:00:03", + "date_unixtime": "1664064003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022743 BTC for 109.62 CZK @ 481,977 CZK\nFees are 0.38499890 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.558159999339251458220109491 CZK)\nThe limits being 0.10 % (72.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06632988 BTC (34,299.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.79 % (-2,329.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,353.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14989171 BTC (72,244.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.31 CZK over 332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022743 BTC for 109.62 CZK @ 481,977 CZK\nFees are 0.38499890 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.558159999339251458220109491 CZK)\nThe limits being 0.10 % (72.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06632988 BTC (34,299.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.79 % (-2,329.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,353.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14989171 BTC (72,244.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.31 CZK over 332 transactions" + } + ] + }, + { + "id": 1454, + "type": "message", + "date": "2022-09-25T06:00:03", + "date_unixtime": "1664078403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022625 BTC for 109.61 CZK @ 484,483 CZK\nFees are 0.38499275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.534489999256745038773133811 CZK)\nThe limits being 0.10 % (72.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06655613 BTC (34,409.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.29 % (-2,163.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,243.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15011796 BTC (72,729.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.33 CZK over 333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022625 BTC for 109.61 CZK @ 484,483 CZK\nFees are 0.38499275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.534489999256745038773133811 CZK)\nThe limits being 0.10 % (72.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06655613 BTC (34,409.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.29 % (-2,163.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,243.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15011796 BTC (72,729.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.33 CZK over 333 transactions" + } + ] + }, + { + "id": 1455, + "type": "message", + "date": "2022-09-25T10:00:04", + "date_unixtime": "1664092804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022553 BTC for 109.62 CZK @ 486,037 CZK\nFees are 0.38499853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8603699997289228753766994431 CZK)\nThe limits being 0.10 % (73.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06678166 BTC (34,519.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.97 % (-2,060.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,133.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15034349 BTC (73,072.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.35 CZK over 334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022553 BTC for 109.62 CZK @ 486,037 CZK\nFees are 0.38499853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8603699997289228753766994431 CZK)\nThe limits being 0.10 % (73.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06678166 BTC (34,519.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.97 % (-2,060.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,133.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15034349 BTC (73,072.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.35 CZK over 334 transactions" + } + ] + }, + { + "id": 1456, + "type": "message", + "date": "2022-09-25T14:00:03", + "date_unixtime": "1664107203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022516 BTC for 109.61 CZK @ 486,824 CZK\nFees are 0.38498928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8682399999362685388845560348 CZK)\nThe limits being 0.10 % (73.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06700682 BTC (34,629.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.80 % (-2,008.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,023.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15056865 BTC (73,300.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.37 CZK over 335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022516 BTC for 109.61 CZK @ 486,824 CZK\nFees are 0.38498928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8682399999362685388845560348 CZK)\nThe limits being 0.10 % (73.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06700682 BTC (34,629.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.80 % (-2,008.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,023.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15056865 BTC (73,300.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.37 CZK over 335 transactions" + } + ] + }, + { + "id": 1457, + "type": "message", + "date": "2022-09-25T18:00:04", + "date_unixtime": "1664121604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022674 BTC for 109.61 CZK @ 483,439 CZK\nFees are 0.38499514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.675119997886905401527748057 CZK)\nThe limits being 0.10 % (72.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06723356 BTC (34,739.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.44 % (-2,235.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,913.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15079539 BTC (72,900.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.39 CZK over 336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022674 BTC for 109.61 CZK @ 483,439 CZK\nFees are 0.38499514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.675119997886905401527748057 CZK)\nThe limits being 0.10 % (72.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06723356 BTC (34,739.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.44 % (-2,235.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,913.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15079539 BTC (72,900.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.39 CZK over 336 transactions" + } + ] + }, + { + "id": 1458, + "type": "message", + "date": "2022-09-25T22:00:03", + "date_unixtime": "1664136003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022748 BTC for 109.62 CZK @ 481,871 CZK\nFees are 0.38499885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.368389998903959230437446432 CZK)\nThe limits being 0.10 % (72.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06746104 BTC (34,849.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.72 % (-2,341.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,803.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15102287 BTC (72,773.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.41 CZK over 337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022748 BTC for 109.62 CZK @ 481,871 CZK\nFees are 0.38499885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.368389998903959230437446432 CZK)\nThe limits being 0.10 % (72.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06746104 BTC (34,849.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.72 % (-2,341.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,803.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15102287 BTC (72,773.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.41 CZK over 337 transactions" + } + ] + }, + { + "id": 1459, + "type": "message", + "date": "2022-09-26T02:00:04", + "date_unixtime": "1664150404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022870 BTC for 109.61 CZK @ 479,289 CZK\nFees are 0.38498964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.136009999980392195309420960 CZK)\nThe limits being 0.10 % (72.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06768974 BTC (34,959.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.20 % (-2,516.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,693.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15125157 BTC (72,493.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.43 CZK over 338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022870 BTC for 109.61 CZK @ 479,289 CZK\nFees are 0.38498964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.136009999980392195309420960 CZK)\nThe limits being 0.10 % (72.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06768974 BTC (34,959.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.20 % (-2,516.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,693.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15125157 BTC (72,493.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.43 CZK over 338 transactions" + } + ] + }, + { + "id": 1460, + "type": "message", + "date": "2022-09-26T06:00:03", + "date_unixtime": "1664164803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022670 BTC for 109.61 CZK @ 483,513 CZK\nFees are 0.38498614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.505389998701061503089429608 CZK)\nThe limits being 0.10 % (73.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06791644 BTC (35,069.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.36 % (-2,230.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,583.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15147827 BTC (73,241.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.45 CZK over 339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022670 BTC for 109.61 CZK @ 483,513 CZK\nFees are 0.38498614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.505389998701061503089429608 CZK)\nThe limits being 0.10 % (73.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06791644 BTC (35,069.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.36 % (-2,230.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,583.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15147827 BTC (73,241.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.45 CZK over 339 transactions" + } + ] + }, + { + "id": 1461, + "type": "message", + "date": "2022-09-26T10:00:03", + "date_unixtime": "1664179203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022707 BTC for 109.61 CZK @ 482,724 CZK\nFees are 0.38498523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.308959999055580098623856885 CZK)\nThe limits being 0.10 % (73.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06814351 BTC (35,179.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.49 % (-2,284.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,473.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15170534 BTC (73,231.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.47 CZK over 340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022707 BTC for 109.61 CZK @ 482,724 CZK\nFees are 0.38498523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.308959999055580098623856885 CZK)\nThe limits being 0.10 % (73.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06814351 BTC (35,179.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.49 % (-2,284.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,473.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15170534 BTC (73,231.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.47 CZK over 340 transactions" + } + ] + }, + { + "id": 1462, + "type": "message", + "date": "2022-09-26T14:00:03", + "date_unixtime": "1664193603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022648 BTC for 109.61 CZK @ 483,982 CZK\nFees are 0.38498560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.558379999303039855032289846 CZK)\nThe limits being 0.10 % (73.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06836999 BTC (35,289.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.23 % (-2,199.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,363.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15193182 BTC (73,532.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.49 CZK over 341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022648 BTC for 109.61 CZK @ 483,982 CZK\nFees are 0.38498560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.558379999303039855032289846 CZK)\nThe limits being 0.10 % (73.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06836999 BTC (35,289.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.23 % (-2,199.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,363.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15193182 BTC (73,532.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.49 CZK over 341 transactions" + } + ] + }, + { + "id": 1463, + "type": "message", + "date": "2022-09-26T18:00:03", + "date_unixtime": "1664208003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022386 BTC for 109.61 CZK @ 489,656 CZK\nFees are 0.38499315 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.069039998974374999749603271 CZK)\nThe limits being 0.10 % (74.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06859385 BTC (35,399.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.12 % (-1,811.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,253.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15215568 BTC (74,503.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.51 CZK over 342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022386 BTC for 109.61 CZK @ 489,656 CZK\nFees are 0.38499315 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.069039998974374999749603271 CZK)\nThe limits being 0.10 % (74.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06859385 BTC (35,399.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.12 % (-1,811.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,253.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15215568 BTC (74,503.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.51 CZK over 342 transactions" + } + ] + }, + { + "id": 1464, + "type": "message", + "date": "2022-09-26T22:00:04", + "date_unixtime": "1664222404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022234 BTC for 109.61 CZK @ 493,000 CZK\nFees are 0.38499044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (49.3000 CZK)\nThe limits being 0.10 % (75.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06881619 BTC (35,509.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.46 % (-1,582.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,143.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15237802 BTC (75,122.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.53 CZK over 343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022234 BTC for 109.61 CZK @ 493,000 CZK\nFees are 0.38499044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (49.3000 CZK)\nThe limits being 0.10 % (75.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06881619 BTC (35,509.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.46 % (-1,582.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,143.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15237802 BTC (75,122.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.53 CZK over 343 transactions" + } + ] + }, + { + "id": 1465, + "type": "message", + "date": "2022-09-27T02:00:04", + "date_unixtime": "1664236804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022234 BTC for 109.61 CZK @ 492,999 CZK\nFees are 0.38498966 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.439919999351016606938233052 CZK)\nThe limits being 0.10 % (75.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06903853 BTC (35,619.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 492,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.44 % (-1,583.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,033.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15260036 BTC (75,231.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.54 CZK over 344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022234 BTC for 109.61 CZK @ 492,999 CZK\nFees are 0.38498966 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.439919999351016606938233052 CZK)\nThe limits being 0.10 % (75.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06903853 BTC (35,619.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 492,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.44 % (-1,583.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,033.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15260036 BTC (75,231.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.54 CZK over 344 transactions" + } + ] + }, + { + "id": 1466, + "type": "message", + "date": "2022-09-27T06:00:04", + "date_unixtime": "1664251204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021301 BTC for 109.62 CZK @ 514,601 CZK\nFees are 0.38499584 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (41.168079997554215379732740022 CZK)\nThe limits being 0.10 % (78.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06925154 BTC (35,729.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.26 % (-92.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,923.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15281337 BTC (78,637.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.56 CZK over 345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021301 BTC for 109.62 CZK @ 514,601 CZK\nFees are 0.38499584 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (41.168079997554215379732740022 CZK)\nThe limits being 0.10 % (78.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06925154 BTC (35,729.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.26 % (-92.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,923.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15281337 BTC (78,637.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.56 CZK over 345 transactions" + } + ] + }, + { + "id": 1467, + "type": "message", + "date": "2022-09-27T10:00:04", + "date_unixtime": "1664265604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021273 BTC for 109.61 CZK @ 515,262 CZK\nFees are 0.38498364 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.373579996454378368419599236 CZK)\nThe limits being 0.10 % (78.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06946427 BTC (35,839.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -0.13 % (-46.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,813.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15302610 BTC (78,848.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.58 CZK over 346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021273 BTC for 109.61 CZK @ 515,262 CZK\nFees are 0.38498364 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.373579996454378368419599236 CZK)\nThe limits being 0.10 % (78.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06946427 BTC (35,839.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -0.13 % (-46.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,813.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15302610 BTC (78,848.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.58 CZK over 346 transactions" + } + ] + }, + { + "id": 1468, + "type": "message", + "date": "2022-09-27T14:00:03", + "date_unixtime": "1664280003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021181 BTC for 109.61 CZK @ 517,514 CZK\nFees are 0.38499402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.576259999496121725135247918 CZK)\nThe limits being 0.10 % (79.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06967608 BTC (35,949.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 0.30 % (109.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,703.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15323791 BTC (79,302.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.60 CZK over 347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021181 BTC for 109.61 CZK @ 517,514 CZK\nFees are 0.38499402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.576259999496121725135247918 CZK)\nThe limits being 0.10 % (79.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06967608 BTC (35,949.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 0.30 % (109.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,703.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15323791 BTC (79,302.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.60 CZK over 347 transactions" + } + ] + }, + { + "id": 1469, + "type": "message", + "date": "2022-09-27T18:00:03", + "date_unixtime": "1664294403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021484 BTC for 109.62 CZK @ 510,220 CZK\nFees are 0.38499762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (45.919799997161303896611348272 CZK)\nThe limits being 0.10 % (78.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.06989092 BTC (36,059.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 510,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.11 % (-399.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,593.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15345275 BTC (78,294.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.62 CZK over 348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021484 BTC for 109.62 CZK @ 510,220 CZK\nFees are 0.38499762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (45.919799997161303896611348272 CZK)\nThe limits being 0.10 % (78.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.06989092 BTC (36,059.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 510,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.11 % (-399.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,593.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15345275 BTC (78,294.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.62 CZK over 348 transactions" + } + ] + }, + { + "id": 1470, + "type": "message", + "date": "2022-09-27T22:00:03", + "date_unixtime": "1664308803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022319 BTC for 109.61 CZK @ 491,121 CZK\nFees are 0.38498930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (49.112099997336710732383786993 CZK)\nThe limits being 0.10 % (75.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07011411 BTC (36,169.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.80 % (-1,734.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,483.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15367594 BTC (75,473.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.64 CZK over 349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022319 BTC for 109.61 CZK @ 491,121 CZK\nFees are 0.38498930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (49.112099997336710732383786993 CZK)\nThe limits being 0.10 % (75.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07011411 BTC (36,169.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.80 % (-1,734.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,483.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15367594 BTC (75,473.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.64 CZK over 349 transactions" + } + ] + }, + { + "id": 1471, + "type": "message", + "date": "2022-09-28T02:00:03", + "date_unixtime": "1664323203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022330 BTC for 109.61 CZK @ 490,875 CZK\nFees are 0.38498611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.087499997210836858277711841 CZK)\nThe limits being 0.10 % (75.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07033741 BTC (36,279.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.83 % (-1,752.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,373.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15389924 BTC (75,545.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.65 CZK over 350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022330 BTC for 109.61 CZK @ 490,875 CZK\nFees are 0.38498611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.087499997210836858277711841 CZK)\nThe limits being 0.10 % (75.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07033741 BTC (36,279.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.83 % (-1,752.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,373.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15389924 BTC (75,545.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.65 CZK over 350 transactions" + } + ] + }, + { + "id": 1472, + "type": "message", + "date": "2022-09-28T06:00:03", + "date_unixtime": "1664337603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022639 BTC for 109.61 CZK @ 484,182 CZK\nFees are 0.38499164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.418199999810724745294380573 CZK)\nThe limits being 0.10 % (74.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07056380 BTC (36,389.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.11 % (-2,223.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,263.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15412563 BTC (74,624.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.67 CZK over 351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022639 BTC for 109.61 CZK @ 484,182 CZK\nFees are 0.38499164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.418199999810724745294380573 CZK)\nThe limits being 0.10 % (74.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07056380 BTC (36,389.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.11 % (-2,223.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,263.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15412563 BTC (74,624.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.67 CZK over 351 transactions" + } + ] + }, + { + "id": 1473, + "type": "message", + "date": "2022-09-28T10:00:03", + "date_unixtime": "1664352003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022640 BTC for 109.61 CZK @ 484,157 CZK\nFees are 0.38498877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.415699997006942133627709377 CZK)\nThe limits being 0.10 % (74.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07079020 BTC (36,499.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.10 % (-2,225.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,153.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15435203 BTC (74,730.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.69 CZK over 352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022640 BTC for 109.61 CZK @ 484,157 CZK\nFees are 0.38498877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.415699997006942133627709377 CZK)\nThe limits being 0.10 % (74.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07079020 BTC (36,499.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.10 % (-2,225.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,153.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15435203 BTC (74,730.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.69 CZK over 352 transactions" + } + ] + }, + { + "id": 1474, + "type": "message", + "date": "2022-09-28T14:00:03", + "date_unixtime": "1664366403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022422 BTC for 109.62 CZK @ 488,875 CZK\nFees are 0.38499722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.554999999333347466367046353 CZK)\nThe limits being 0.10 % (75.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07101442 BTC (36,609.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.17 % (-1,891.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,043.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15457625 BTC (75,568.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.71 CZK over 353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022422 BTC for 109.62 CZK @ 488,875 CZK\nFees are 0.38499722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.554999999333347466367046353 CZK)\nThe limits being 0.10 % (75.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07101442 BTC (36,609.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.17 % (-1,891.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,043.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15457625 BTC (75,568.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.71 CZK over 353 transactions" + } + ] + }, + { + "id": 1475, + "type": "message", + "date": "2022-09-28T18:00:04", + "date_unixtime": "1664380804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021998 BTC for 109.61 CZK @ 498,289 CZK\nFees are 0.38499042 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.863119996459342025612420351 CZK)\nThe limits being 0.10 % (77.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07123440 BTC (36,719.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.33 % (-1,223.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,933.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15479623 BTC (77,133.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.73 CZK over 354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021998 BTC for 109.61 CZK @ 498,289 CZK\nFees are 0.38499042 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.863119996459342025612420351 CZK)\nThe limits being 0.10 % (77.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07123440 BTC (36,719.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.33 % (-1,223.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,933.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15479623 BTC (77,133.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.73 CZK over 354 transactions" + } + ] + }, + { + "id": 1476, + "type": "message", + "date": "2022-09-28T22:00:03", + "date_unixtime": "1664395203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022097 BTC for 109.62 CZK @ 496,064 CZK\nFees are 0.38499620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.724479997701848120436687642 CZK)\nThe limits being 0.10 % (76.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07145537 BTC (36,829.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.75 % (-1,382.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,823.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15501720 BTC (76,898.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.74 CZK over 355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022097 BTC for 109.62 CZK @ 496,064 CZK\nFees are 0.38499620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (34.724479997701848120436687642 CZK)\nThe limits being 0.10 % (76.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07145537 BTC (36,829.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.75 % (-1,382.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,823.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15501720 BTC (76,898.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.74 CZK over 355 transactions" + } + ] + }, + { + "id": 1477, + "type": "message", + "date": "2022-09-29T02:00:04", + "date_unixtime": "1664409604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022186 BTC for 109.61 CZK @ 494,061 CZK\nFees are 0.38498606 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.643659998083872227425771273 CZK)\nThe limits being 0.10 % (76.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07167723 BTC (36,939.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.13 % (-1,526.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,713.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15523906 BTC (76,697.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.76 CZK over 356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022186 BTC for 109.61 CZK @ 494,061 CZK\nFees are 0.38498606 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.643659998083872227425771273 CZK)\nThe limits being 0.10 % (76.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07167723 BTC (36,939.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.13 % (-1,526.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,713.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15523906 BTC (76,697.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.76 CZK over 356 transactions" + } + ] + }, + { + "id": 1478, + "type": "message", + "date": "2022-09-29T06:00:03", + "date_unixtime": "1664424003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022036 BTC for 109.61 CZK @ 497,421 CZK\nFees are 0.38498366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.948419999958395751012317300 CZK)\nThe limits being 0.10 % (77.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07189759 BTC (37,049.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 497,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.47 % (-1,285.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,603.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15545942 BTC (77,328.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.78 CZK over 357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022036 BTC for 109.61 CZK @ 497,421 CZK\nFees are 0.38498366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.948419999958395751012317300 CZK)\nThe limits being 0.10 % (77.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07189759 BTC (37,049.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 497,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.47 % (-1,285.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,603.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15545942 BTC (77,328.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.78 CZK over 357 transactions" + } + ] + }, + { + "id": 1479, + "type": "message", + "date": "2022-09-29T10:00:04", + "date_unixtime": "1664438404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022135 BTC for 109.61 CZK @ 495,206 CZK\nFees are 0.38499124 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.856179998872255216072861768 CZK)\nThe limits being 0.10 % (77.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07211894 BTC (37,159.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.89 % (-1,445.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,493.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15568077 BTC (77,094.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.80 CZK over 358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022135 BTC for 109.61 CZK @ 495,206 CZK\nFees are 0.38499124 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.856179998872255216072861768 CZK)\nThe limits being 0.10 % (77.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07211894 BTC (37,159.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.89 % (-1,445.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,493.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15568077 BTC (77,094.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.80 CZK over 358 transactions" + } + ] + }, + { + "id": 1480, + "type": "message", + "date": "2022-09-29T14:00:04", + "date_unixtime": "1664452804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022167 BTC for 109.61 CZK @ 494,486 CZK\nFees are 0.38498725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.834579999909640928559488265 CZK)\nThe limits being 0.10 % (77.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07234061 BTC (37,269.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.02 % (-1,497.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,383.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15590244 BTC (77,091.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.81 CZK over 359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022167 BTC for 109.61 CZK @ 494,486 CZK\nFees are 0.38498725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.834579999909640928559488265 CZK)\nThe limits being 0.10 % (77.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07234061 BTC (37,269.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.02 % (-1,497.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,383.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15590244 BTC (77,091.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.81 CZK over 359 transactions" + } + ] + }, + { + "id": 1481, + "type": "message", + "date": "2022-09-29T18:00:05", + "date_unixtime": "1664467205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022532 BTC for 109.61 CZK @ 486,475 CZK\nFees are 0.38498667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.647499998009806083465548549 CZK)\nThe limits being 0.10 % (75.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07256593 BTC (37,379.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.56 % (-2,077.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,273.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15612776 BTC (75,952.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.83 CZK over 360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022532 BTC for 109.61 CZK @ 486,475 CZK\nFees are 0.38498667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.647499998009806083465548549 CZK)\nThe limits being 0.10 % (75.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07256593 BTC (37,379.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.56 % (-2,077.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,273.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15612776 BTC (75,952.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.83 CZK over 360 transactions" + } + ] + }, + { + "id": 1482, + "type": "message", + "date": "2022-09-29T22:00:04", + "date_unixtime": "1664481604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022508 BTC for 109.62 CZK @ 487,009 CZK\nFees are 0.38499875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.700899999991145262064381207 CZK)\nThe limits being 0.10 % (76.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07279101 BTC (37,489.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.44 % (-2,039.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,163.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15635284 BTC (76,145.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.85 CZK over 361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022508 BTC for 109.62 CZK @ 487,009 CZK\nFees are 0.38499875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.700899999991145262064381207 CZK)\nThe limits being 0.10 % (76.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07279101 BTC (37,489.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.44 % (-2,039.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,163.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15635284 BTC (76,145.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.85 CZK over 361 transactions" + } + ] + }, + { + "id": 1483, + "type": "message", + "date": "2022-09-30T02:00:04", + "date_unixtime": "1664496004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022357 BTC for 109.61 CZK @ 490,291 CZK\nFees are 0.38499303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.029099997305579329527848575 CZK)\nThe limits being 0.10 % (76.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07301458 BTC (37,599.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.79 % (-1,800.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,053.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15657641 BTC (76,768.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.86 CZK over 362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022357 BTC for 109.61 CZK @ 490,291 CZK\nFees are 0.38499303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.029099997305579329527848575 CZK)\nThe limits being 0.10 % (76.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07301458 BTC (37,599.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.79 % (-1,800.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,053.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15657641 BTC (76,768.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.86 CZK over 362 transactions" + } + ] + }, + { + "id": 1484, + "type": "message", + "date": "2022-09-30T06:00:03", + "date_unixtime": "1664510403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022510 BTC for 109.61 CZK @ 486,961 CZK\nFees are 0.38499501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.826489998466052955039414469 CZK)\nThe limits being 0.10 % (76.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07323968 BTC (37,709.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.42 % (-2,044.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,943.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15680151 BTC (76,356.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.88 CZK over 363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022510 BTC for 109.61 CZK @ 486,961 CZK\nFees are 0.38499501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.826489998466052955039414469 CZK)\nThe limits being 0.10 % (76.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07323968 BTC (37,709.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.42 % (-2,044.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,943.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15680151 BTC (76,356.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.88 CZK over 363 transactions" + } + ] + }, + { + "id": 1485, + "type": "message", + "date": "2022-09-30T10:00:03", + "date_unixtime": "1664524803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022360 BTC for 109.61 CZK @ 490,218 CZK\nFees are 0.38498736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.706539999090838594436466999 CZK)\nThe limits being 0.10 % (76.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07346328 BTC (37,819.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.78 % (-1,806.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,833.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15702511 BTC (76,976.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.90 CZK over 364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022360 BTC for 109.61 CZK @ 490,218 CZK\nFees are 0.38498736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.706539999090838594436466999 CZK)\nThe limits being 0.10 % (76.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07346328 BTC (37,819.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.78 % (-1,806.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,833.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15702511 BTC (76,976.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.90 CZK over 364 transactions" + } + ] + }, + { + "id": 1486, + "type": "message", + "date": "2022-09-30T14:00:04", + "date_unixtime": "1664539204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022326 BTC for 109.61 CZK @ 490,970 CZK\nFees are 0.38499164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.729099998968940607899227201 CZK)\nThe limits being 0.10 % (77.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07368654 BTC (37,929.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.62 % (-1,751.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,723.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15724837 BTC (77,204.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.92 CZK over 365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022326 BTC for 109.61 CZK @ 490,970 CZK\nFees are 0.38499164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.729099998968940607899227201 CZK)\nThe limits being 0.10 % (77.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07368654 BTC (37,929.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.62 % (-1,751.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,723.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15724837 BTC (77,204.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.92 CZK over 365 transactions" + } + ] + }, + { + "id": 1487, + "type": "message", + "date": "2022-09-30T18:00:03", + "date_unixtime": "1664553603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021996 BTC for 109.61 CZK @ 498,325 CZK\nFees are 0.38498323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.83249999796130890492115566 CZK)\nThe limits being 0.10 % (78.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07390650 BTC (38,039.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.18 % (-1,209.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,613.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15746833 BTC (78,470.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.93 CZK over 366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021996 BTC for 109.61 CZK @ 498,325 CZK\nFees are 0.38498323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.83249999796130890492115566 CZK)\nThe limits being 0.10 % (78.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07390650 BTC (38,039.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.18 % (-1,209.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,613.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15746833 BTC (78,470.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.93 CZK over 366 transactions" + } + ] + }, + { + "id": 1488, + "type": "message", + "date": "2022-09-30T22:00:05", + "date_unixtime": "1664568005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022325 BTC for 109.62 CZK @ 490,998 CZK\nFees are 0.38499635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (58.919759998794811664214443180 CZK)\nThe limits being 0.10 % (77.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07412975 BTC (38,149.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.59 % (-1,751.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,503.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15769158 BTC (77,426.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.95 CZK over 367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022325 BTC for 109.62 CZK @ 490,998 CZK\nFees are 0.38499635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (58.919759998794811664214443180 CZK)\nThe limits being 0.10 % (77.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07412975 BTC (38,149.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.59 % (-1,751.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,503.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15769158 BTC (77,426.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.95 CZK over 367 transactions" + } + ] + }, + { + "id": 1489, + "type": "message", + "date": "2022-10-01T02:00:05", + "date_unixtime": "1664582405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022409 BTC for 109.61 CZK @ 489,142 CZK\nFees are 0.38498415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (58.697039995875029124602336201 CZK)\nThe limits being 0.10 % (77.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07435384 BTC (38,259.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.94 % (-1,889.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,393.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15791567 BTC (77,243.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.96 CZK over 368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022409 BTC for 109.61 CZK @ 489,142 CZK\nFees are 0.38498415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (58.697039995875029124602336201 CZK)\nThe limits being 0.10 % (77.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07435384 BTC (38,259.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.94 % (-1,889.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,393.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15791567 BTC (77,243.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.96 CZK over 368 transactions" + } + ] + }, + { + "id": 1490, + "type": "message", + "date": "2022-10-01T06:00:04", + "date_unixtime": "1664596804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022458 BTC for 109.61 CZK @ 488,077 CZK\nFees are 0.38498592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.807699998087555608979756176 CZK)\nThe limits being 0.10 % (77.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07457842 BTC (38,369.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.13 % (-1,969.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,283.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15814025 BTC (77,184.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.98 CZK over 369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022458 BTC for 109.61 CZK @ 488,077 CZK\nFees are 0.38498592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.807699998087555608979756176 CZK)\nThe limits being 0.10 % (77.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07457842 BTC (38,369.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.13 % (-1,969.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,283.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15814025 BTC (77,184.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.98 CZK over 369 transactions" + } + ] + }, + { + "id": 1491, + "type": "message", + "date": "2022-10-01T10:00:04", + "date_unixtime": "1664611204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022537 BTC for 109.61 CZK @ 486,366 CZK\nFees are 0.38498582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.863659999603376026123591612 CZK)\nThe limits being 0.10 % (77.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07480379 BTC (38,479.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.45 % (-2,097.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,173.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15836562 BTC (77,023.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.00 CZK over 370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022537 BTC for 109.61 CZK @ 486,366 CZK\nFees are 0.38498582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.863659999603376026123591612 CZK)\nThe limits being 0.10 % (77.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07480379 BTC (38,479.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.45 % (-2,097.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,173.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15836562 BTC (77,023.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.00 CZK over 370 transactions" + } + ] + }, + { + "id": 1492, + "type": "message", + "date": "2022-10-01T14:00:04", + "date_unixtime": "1664625604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022536 BTC for 109.61 CZK @ 486,397 CZK\nFees are 0.38499327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8639699996586317784806779397 CZK)\nThe limits being 0.10 % (77.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07502915 BTC (38,589.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.43 % (-2,095.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,063.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15859098 BTC (77,138.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.01 CZK over 371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022536 BTC for 109.61 CZK @ 486,397 CZK\nFees are 0.38499327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8639699996586317784806779397 CZK)\nThe limits being 0.10 % (77.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07502915 BTC (38,589.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.43 % (-2,095.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,063.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15859098 BTC (77,138.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.01 CZK over 371 transactions" + } + ] + }, + { + "id": 1493, + "type": "message", + "date": "2022-10-01T18:00:05", + "date_unixtime": "1664640005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022544 BTC for 109.61 CZK @ 486,217 CZK\nFees are 0.38498742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.724339999851477953493503752 CZK)\nThe limits being 0.10 % (77.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07525459 BTC (38,699.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.45 % (-2,108.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,953.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15881642 BTC (77,219.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.03 CZK over 372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022544 BTC for 109.61 CZK @ 486,217 CZK\nFees are 0.38498742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.724339999851477953493503752 CZK)\nThe limits being 0.10 % (77.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07525459 BTC (38,699.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.45 % (-2,108.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,953.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15881642 BTC (77,219.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.03 CZK over 372 transactions" + } + ] + }, + { + "id": 1494, + "type": "message", + "date": "2022-10-01T22:00:04", + "date_unixtime": "1664654404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022613 BTC for 109.61 CZK @ 484,738 CZK\nFees are 0.38499108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.694759999665963714184716469 CZK)\nThe limits being 0.10 % (77.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07548072 BTC (38,809.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.72 % (-2,220.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,843.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15904255 BTC (77,093.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.05 CZK over 373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022613 BTC for 109.61 CZK @ 484,738 CZK\nFees are 0.38499108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.694759999665963714184716469 CZK)\nThe limits being 0.10 % (77.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07548072 BTC (38,809.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.72 % (-2,220.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,843.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15904255 BTC (77,093.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.05 CZK over 373 transactions" + } + ] + }, + { + "id": 1495, + "type": "message", + "date": "2022-10-02T02:00:04", + "date_unixtime": "1664668804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022575 BTC for 109.61 CZK @ 485,559 CZK\nFees are 0.38499509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8555899997848063339772589953 CZK)\nThe limits being 0.10 % (77.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07570647 BTC (38,919.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.55 % (-2,159.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,733.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15926830 BTC (77,334.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.06 CZK over 374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022575 BTC for 109.61 CZK @ 485,559 CZK\nFees are 0.38499509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8555899997848063339772589953 CZK)\nThe limits being 0.10 % (77.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07570647 BTC (38,919.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.55 % (-2,159.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,733.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15926830 BTC (77,334.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.06 CZK over 374 transactions" + } + ] + }, + { + "id": 1496, + "type": "message", + "date": "2022-10-02T06:00:03", + "date_unixtime": "1664683203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022573 BTC for 109.61 CZK @ 485,602 CZK\nFees are 0.38499507 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8560199996419743055421737381 CZK)\nThe limits being 0.10 % (77.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07593220 BTC (39,029.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.52 % (-2,156.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,623.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15949403 BTC (77,450.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.08 CZK over 375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022573 BTC for 109.61 CZK @ 485,602 CZK\nFees are 0.38499507 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8560199996419743055421737381 CZK)\nThe limits being 0.10 % (77.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07593220 BTC (39,029.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.52 % (-2,156.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,623.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15949403 BTC (77,450.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.08 CZK over 375 transactions" + } + ] + }, + { + "id": 1497, + "type": "message", + "date": "2022-10-02T10:00:04", + "date_unixtime": "1664697604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022599 BTC for 109.62 CZK @ 485,046 CZK\nFees are 0.38499720 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.551379998757832254572159529 CZK)\nThe limits being 0.10 % (77.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07615819 BTC (39,139.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.62 % (-2,198.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,513.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15972002 BTC (77,471.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.09 CZK over 376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022599 BTC for 109.62 CZK @ 485,046 CZK\nFees are 0.38499720 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.551379998757832254572159529 CZK)\nThe limits being 0.10 % (77.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07615819 BTC (39,139.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.62 % (-2,198.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,513.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15972002 BTC (77,471.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.09 CZK over 376 transactions" + } + ] + }, + { + "id": 1498, + "type": "message", + "date": "2022-10-02T14:00:03", + "date_unixtime": "1664712003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022702 BTC for 109.62 CZK @ 482,844 CZK\nFees are 0.38499614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.656879999378441861729914816 CZK)\nThe limits being 0.10 % (77.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07638521 BTC (39,249.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.03 % (-2,366.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,403.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15994704 BTC (77,229.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.11 CZK over 377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022702 BTC for 109.62 CZK @ 482,844 CZK\nFees are 0.38499614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.656879999378441861729914816 CZK)\nThe limits being 0.10 % (77.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07638521 BTC (39,249.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.03 % (-2,366.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,403.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15994704 BTC (77,229.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.11 CZK over 377 transactions" + } + ] + }, + { + "id": 1499, + "type": "message", + "date": "2022-10-02T18:00:04", + "date_unixtime": "1664726404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022778 BTC for 109.61 CZK @ 481,223 CZK\nFees are 0.38498817 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.624459999799630085638888878 CZK)\nThe limits being 0.10 % (77.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07661299 BTC (39,359.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.33 % (-2,491.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,293.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16017482 BTC (77,079.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.12 CZK over 378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022778 BTC for 109.61 CZK @ 481,223 CZK\nFees are 0.38498817 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.624459999799630085638888878 CZK)\nThe limits being 0.10 % (77.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07661299 BTC (39,359.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.33 % (-2,491.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,293.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16017482 BTC (77,079.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.12 CZK over 378 transactions" + } + ] + }, + { + "id": 1500, + "type": "message", + "date": "2022-10-02T22:00:04", + "date_unixtime": "1664740804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022609 BTC for 109.61 CZK @ 484,824 CZK\nFees are 0.38499127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.392959999372359067999936443 CZK)\nThe limits being 0.10 % (77.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07683908 BTC (39,469.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.61 % (-2,215.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,183.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16040091 BTC (77,766.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.14 CZK over 379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022609 BTC for 109.61 CZK @ 484,824 CZK\nFees are 0.38499127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.392959999372359067999936443 CZK)\nThe limits being 0.10 % (77.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07683908 BTC (39,469.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.61 % (-2,215.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,183.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16040091 BTC (77,766.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.14 CZK over 379 transactions" + } + ] + }, + { + "id": 1501, + "type": "message", + "date": "2022-10-03T02:00:03", + "date_unixtime": "1664755203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022855 BTC for 109.62 CZK @ 479,616 CZK\nFees are 0.38499963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.592319999232613657929035730 CZK)\nThe limits being 0.10 % (77.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07706763 BTC (39,579.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.61 % (-2,616.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,073.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16062946 BTC (77,040.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.16 CZK over 380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022855 BTC for 109.62 CZK @ 479,616 CZK\nFees are 0.38499963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.592319999232613657929035730 CZK)\nThe limits being 0.10 % (77.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07706763 BTC (39,579.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.61 % (-2,616.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,073.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16062946 BTC (77,040.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.16 CZK over 380 transactions" + } + ] + }, + { + "id": 1502, + "type": "message", + "date": "2022-10-03T06:00:04", + "date_unixtime": "1664769604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022749 BTC for 109.61 CZK @ 481,837 CZK\nFees are 0.38498861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.455109999086015771911589143 CZK)\nThe limits being 0.10 % (77.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07729512 BTC (39,689.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.16 % (-2,445.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 963.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16085695 BTC (77,506.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.17 CZK over 381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022749 BTC for 109.61 CZK @ 481,837 CZK\nFees are 0.38498861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.455109999086015771911589143 CZK)\nThe limits being 0.10 % (77.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07729512 BTC (39,689.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.16 % (-2,445.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 963.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16085695 BTC (77,506.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.17 CZK over 381 transactions" + } + ] + }, + { + "id": 1503, + "type": "message", + "date": "2022-10-03T10:00:05", + "date_unixtime": "1664784005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022744 BTC for 109.61 CZK @ 481,940 CZK\nFees are 0.38498627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.638799999334022794997669956 CZK)\nThe limits being 0.10 % (77.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07752256 BTC (39,799.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.13 % (-2,437.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 853.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16108439 BTC (77,633.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.19 CZK over 382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022744 BTC for 109.61 CZK @ 481,940 CZK\nFees are 0.38498627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.638799999334022794997669956 CZK)\nThe limits being 0.10 % (77.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07752256 BTC (39,799.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.13 % (-2,437.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 853.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16108439 BTC (77,633.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.19 CZK over 382 transactions" + } + ] + }, + { + "id": 1504, + "type": "message", + "date": "2022-10-03T14:00:04", + "date_unixtime": "1664798404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022653 BTC for 109.61 CZK @ 483,876 CZK\nFees are 0.38498626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.516279999210814064428321560 CZK)\nThe limits being 0.10 % (78.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07774909 BTC (39,909.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.73 % (-2,288.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 743.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16131092 BTC (78,054.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.20 CZK over 383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022653 BTC for 109.61 CZK @ 483,876 CZK\nFees are 0.38498626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.516279999210814064428321560 CZK)\nThe limits being 0.10 % (78.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07774909 BTC (39,909.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.73 % (-2,288.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 743.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16131092 BTC (78,054.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.20 CZK over 383 transactions" + } + ] + }, + { + "id": 1505, + "type": "message", + "date": "2022-10-03T18:00:07", + "date_unixtime": "1664812807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022606 BTC for 109.62 CZK @ 484,896 CZK\nFees are 0.38499736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.395839999266479557239302360 CZK)\nThe limits being 0.10 % (78.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07797515 BTC (40,019.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.52 % (-2,209.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 633.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16153698 BTC (78,328.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.22 CZK over 384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022606 BTC for 109.62 CZK @ 484,896 CZK\nFees are 0.38499736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.395839999266479557239302360 CZK)\nThe limits being 0.10 % (78.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07797515 BTC (40,019.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.52 % (-2,209.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 633.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16153698 BTC (78,328.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.22 CZK over 384 transactions" + } + ] + }, + { + "id": 1506, + "type": "message", + "date": "2022-10-03T22:00:04", + "date_unixtime": "1664827204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022408 BTC for 109.62 CZK @ 489,180 CZK\nFees are 0.38499688 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.350799999893268953165882993 CZK)\nThe limits being 0.10 % (79.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07819923 BTC (40,129.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.67 % (-1,875.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 523.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16176106 BTC (79,130.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.23 CZK over 385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022408 BTC for 109.62 CZK @ 489,180 CZK\nFees are 0.38499688 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.350799999893268953165882993 CZK)\nThe limits being 0.10 % (79.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07819923 BTC (40,129.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.67 % (-1,875.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 523.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16176106 BTC (79,130.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.23 CZK over 385 transactions" + } + ] + }, + { + "id": 1507, + "type": "message", + "date": "2022-10-04T02:00:04", + "date_unixtime": "1664841604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022312 BTC for 109.61 CZK @ 491,270 CZK\nFees are 0.38498532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.476199997749004336382360555 CZK)\nThe limits being 0.10 % (79.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07842235 BTC (40,239.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.26 % (-1,712.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 413.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16198418 BTC (79,577.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.25 CZK over 386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022312 BTC for 109.61 CZK @ 491,270 CZK\nFees are 0.38498532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.476199997749004336382360555 CZK)\nThe limits being 0.10 % (79.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07842235 BTC (40,239.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.26 % (-1,712.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 413.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16198418 BTC (79,577.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.25 CZK over 386 transactions" + } + ] + }, + { + "id": 1508, + "type": "message", + "date": "2022-10-04T06:00:04", + "date_unixtime": "1664856004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022390 BTC for 109.62 CZK @ 489,572 CZK\nFees are 0.38499588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.791439999305690467463920940 CZK)\nThe limits being 0.10 % (79.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07864625 BTC (40,349.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.58 % (-1,846.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 303.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16220808 BTC (79,412.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.26 CZK over 387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022390 BTC for 109.62 CZK @ 489,572 CZK\nFees are 0.38499588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.791439999305690467463920940 CZK)\nThe limits being 0.10 % (79.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07864625 BTC (40,349.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.58 % (-1,846.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 303.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16220808 BTC (79,412.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.26 CZK over 387 transactions" + } + ] + }, + { + "id": 1509, + "type": "message", + "date": "2022-10-04T10:00:04", + "date_unixtime": "1664870404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022079 BTC for 109.61 CZK @ 496,456 CZK\nFees are 0.38498657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.9645599999620874924538877277 CZK)\nThe limits being 0.10 % (80.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07886704 BTC (40,458.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.23 % (-1,304.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 193.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16242887 BTC (80,638.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.28 CZK over 388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022079 BTC for 109.61 CZK @ 496,456 CZK\nFees are 0.38498657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.9645599999620874924538877277 CZK)\nThe limits being 0.10 % (80.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07886704 BTC (40,458.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.23 % (-1,304.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 193.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16242887 BTC (80,638.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.28 CZK over 388 transactions" + } + ] + }, + { + "id": 1510, + "type": "message", + "date": "2022-10-04T14:00:04", + "date_unixtime": "1664884804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022075 BTC for 109.61 CZK @ 496,547 CZK\nFees are 0.38498738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.930939999469580138823291752 CZK)\nThe limits being 0.10 % (80.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07908779 BTC (40,568.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.20 % (-1,298.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 83.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16264962 BTC (80,763.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.29 CZK over 389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022075 BTC for 109.61 CZK @ 496,547 CZK\nFees are 0.38498738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.930939999469580138823291752 CZK)\nThe limits being 0.10 % (80.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07908779 BTC (40,568.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.20 % (-1,298.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 83.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16264962 BTC (80,763.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.29 CZK over 389 transactions" + } + ] + }, + { + "id": 1511, + "type": "message", + "date": "2022-10-04T18:00:00", + "date_unixtime": "1664899200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1512, + "type": "message", + "date": "2022-10-04T22:00:00", + "date_unixtime": "1664913600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1513, + "type": "message", + "date": "2022-10-05T02:00:00", + "date_unixtime": "1664928000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1514, + "type": "message", + "date": "2022-10-05T06:00:00", + "date_unixtime": "1664942400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1515, + "type": "message", + "date": "2022-10-05T10:00:00", + "date_unixtime": "1664956800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1516, + "type": "message", + "date": "2022-10-05T14:00:00", + "date_unixtime": "1664971200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1517, + "type": "message", + "date": "2022-10-05T18:00:00", + "date_unixtime": "1664985600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1518, + "type": "message", + "date": "2022-10-05T22:00:00", + "date_unixtime": "1665000000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1519, + "type": "message", + "date": "2022-10-06T02:00:00", + "date_unixtime": "1665014400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1520, + "type": "message", + "date": "2022-10-06T06:00:00", + "date_unixtime": "1665028800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1521, + "type": "message", + "date": "2022-10-06T10:00:00", + "date_unixtime": "1665043200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1522, + "type": "message", + "date": "2022-10-06T14:00:00", + "date_unixtime": "1665057600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1523, + "type": "message", + "date": "2022-10-06T18:00:00", + "date_unixtime": "1665072000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1524, + "type": "message", + "date": "2022-10-06T22:00:00", + "date_unixtime": "1665086400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1525, + "type": "message", + "date": "2022-10-07T02:00:01", + "date_unixtime": "1665100801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1526, + "type": "message", + "date": "2022-10-07T06:00:00", + "date_unixtime": "1665115200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1527, + "type": "message", + "date": "2022-10-07T10:00:00", + "date_unixtime": "1665129600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1528, + "type": "message", + "date": "2022-10-07T14:00:00", + "date_unixtime": "1665144000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1529, + "type": "message", + "date": "2022-10-07T18:00:00", + "date_unixtime": "1665158400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1530, + "type": "message", + "date": "2022-10-07T22:00:00", + "date_unixtime": "1665172800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1531, + "type": "message", + "date": "2022-10-08T02:00:01", + "date_unixtime": "1665187201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1532, + "type": "message", + "date": "2022-10-08T06:00:01", + "date_unixtime": "1665201601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1533, + "type": "message", + "date": "2022-10-08T10:00:00", + "date_unixtime": "1665216000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1534, + "type": "message", + "date": "2022-10-08T14:00:00", + "date_unixtime": "1665230400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1535, + "type": "message", + "date": "2022-10-08T18:00:00", + "date_unixtime": "1665244800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1536, + "type": "message", + "date": "2022-10-08T22:00:00", + "date_unixtime": "1665259200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1537, + "type": "message", + "date": "2022-10-09T02:00:00", + "date_unixtime": "1665273600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1538, + "type": "message", + "date": "2022-10-09T06:00:00", + "date_unixtime": "1665288000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1539, + "type": "message", + "date": "2022-10-09T10:00:00", + "date_unixtime": "1665302400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1540, + "type": "message", + "date": "2022-10-09T14:00:00", + "date_unixtime": "1665316800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1541, + "type": "message", + "date": "2022-10-09T18:00:00", + "date_unixtime": "1665331200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1542, + "type": "message", + "date": "2022-10-09T22:00:00", + "date_unixtime": "1665345600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1543, + "type": "message", + "date": "2022-10-10T02:00:01", + "date_unixtime": "1665360001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1544, + "type": "message", + "date": "2022-10-10T06:00:00", + "date_unixtime": "1665374400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1545, + "type": "message", + "date": "2022-10-10T10:00:00", + "date_unixtime": "1665388800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (83.94409486 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1546, + "type": "message", + "date": "2022-10-10T14:00:03", + "date_unixtime": "1665403203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022387 BTC for 109.62 CZK @ 489,640 CZK\nFees are 0.38499777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.896399999830850654949602509 CZK)\nThe limits being 0.10 % (79.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07931166 BTC (40,678.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.54 % (-1,844.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,973.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16287349 BTC (79,749.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.31 CZK over 390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022387 BTC for 109.62 CZK @ 489,640 CZK\nFees are 0.38499777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.896399999830850654949602509 CZK)\nThe limits being 0.10 % (79.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07931166 BTC (40,678.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.54 % (-1,844.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,973.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16287349 BTC (79,749.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.31 CZK over 390 transactions" + } + ] + }, + { + "id": 1547, + "type": "message", + "date": "2022-10-10T18:00:04", + "date_unixtime": "1665417604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022377 BTC for 109.61 CZK @ 489,851 CZK\nFees are 0.38499162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.797019999648635593895691397 CZK)\nThe limits being 0.10 % (79.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07953543 BTC (40,788.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.48 % (-1,828.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,863.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16309726 BTC (79,893.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.32 CZK over 391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022377 BTC for 109.61 CZK @ 489,851 CZK\nFees are 0.38499162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.797019999648635593895691397 CZK)\nThe limits being 0.10 % (79.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07953543 BTC (40,788.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.48 % (-1,828.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,863.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16309726 BTC (79,893.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.32 CZK over 391 transactions" + } + ] + }, + { + "id": 1548, + "type": "message", + "date": "2022-10-10T22:00:04", + "date_unixtime": "1665432004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022496 BTC for 109.61 CZK @ 487,250 CZK\nFees are 0.38498390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.74500 CZK)\nThe limits being 0.10 % (79.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07976039 BTC (40,898.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.98 % (-2,035.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,753.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16332222 BTC (79,578.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.33 CZK over 392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022496 BTC for 109.61 CZK @ 487,250 CZK\nFees are 0.38498390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.74500 CZK)\nThe limits being 0.10 % (79.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07976039 BTC (40,898.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.98 % (-2,035.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,753.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16332222 BTC (79,578.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.33 CZK over 392 transactions" + } + ] + }, + { + "id": 1549, + "type": "message", + "date": "2022-10-11T02:00:03", + "date_unixtime": "1665446403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022613 BTC for 109.61 CZK @ 484,734 CZK\nFees are 0.38498791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.542019998946331451999547597 CZK)\nThe limits being 0.10 % (79.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.07998652 BTC (41,008.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.45 % (-2,236.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,643.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16354835 BTC (79,277.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.35 CZK over 393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022613 BTC for 109.61 CZK @ 484,734 CZK\nFees are 0.38498791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.542019998946331451999547597 CZK)\nThe limits being 0.10 % (79.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.07998652 BTC (41,008.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.45 % (-2,236.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,643.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16354835 BTC (79,277.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.35 CZK over 393 transactions" + } + ] + }, + { + "id": 1550, + "type": "message", + "date": "2022-10-11T06:00:03", + "date_unixtime": "1665460803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022676 BTC for 109.61 CZK @ 483,393 CZK\nFees are 0.38499246 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8339299996317352135755583979 CZK)\nThe limits being 0.10 % (79.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08021328 BTC (41,118.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.70 % (-2,344.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,533.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16377511 BTC (79,167.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.36 CZK over 394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022676 BTC for 109.61 CZK @ 483,393 CZK\nFees are 0.38499246 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8339299996317352135755583979 CZK)\nThe limits being 0.10 % (79.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08021328 BTC (41,118.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.70 % (-2,344.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,533.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16377511 BTC (79,167.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.36 CZK over 394 transactions" + } + ] + }, + { + "id": 1551, + "type": "message", + "date": "2022-10-11T10:00:03", + "date_unixtime": "1665475203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022651 BTC for 109.61 CZK @ 483,916 CZK\nFees are 0.38498409 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.517479999200185778630033063 CZK)\nThe limits being 0.10 % (79.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08043979 BTC (41,228.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.59 % (-2,302.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,423.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16400162 BTC (79,363.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.38 CZK over 395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022651 BTC for 109.61 CZK @ 483,916 CZK\nFees are 0.38498409 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.517479999200185778630033063 CZK)\nThe limits being 0.10 % (79.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08043979 BTC (41,228.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.59 % (-2,302.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,423.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16400162 BTC (79,363.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.38 CZK over 395 transactions" + } + ] + }, + { + "id": 1552, + "type": "message", + "date": "2022-10-11T14:00:04", + "date_unixtime": "1665489604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022666 BTC for 109.62 CZK @ 483,611 CZK\nFees are 0.38499623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.508329999682132566019813034 CZK)\nThe limits being 0.10 % (79.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08066645 BTC (41,338.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.63 % (-2,327.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,313.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16422828 BTC (79,422.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.39 CZK over 396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022666 BTC for 109.62 CZK @ 483,611 CZK\nFees are 0.38499623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.508329999682132566019813034 CZK)\nThe limits being 0.10 % (79.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08066645 BTC (41,338.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.63 % (-2,327.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,313.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16422828 BTC (79,422.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.39 CZK over 396 transactions" + } + ] + }, + { + "id": 1553, + "type": "message", + "date": "2022-10-11T18:00:04", + "date_unixtime": "1665504004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022681 BTC for 109.61 CZK @ 483,281 CZK\nFees are 0.38498813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.498429999652685992747002704 CZK)\nThe limits being 0.10 % (79.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08089326 BTC (41,448.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.68 % (-2,354.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,203.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16445509 BTC (79,478.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.41 CZK over 397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022681 BTC for 109.61 CZK @ 483,281 CZK\nFees are 0.38498813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.498429999652685992747002704 CZK)\nThe limits being 0.10 % (79.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08089326 BTC (41,448.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.68 % (-2,354.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,203.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16445509 BTC (79,478.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.41 CZK over 397 transactions" + } + ] + }, + { + "id": 1554, + "type": "message", + "date": "2022-10-11T22:00:04", + "date_unixtime": "1665518404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022765 BTC for 109.62 CZK @ 481,508 CZK\nFees are 0.38499632 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.260319998826860217221276159 CZK)\nThe limits being 0.10 % (79.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08112091 BTC (41,558.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.01 % (-2,498.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,093.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16468274 BTC (79,296.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.42 CZK over 398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022765 BTC for 109.62 CZK @ 481,508 CZK\nFees are 0.38499632 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.260319998826860217221276159 CZK)\nThe limits being 0.10 % (79.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08112091 BTC (41,558.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.01 % (-2,498.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,093.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16468274 BTC (79,296.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.42 CZK over 398 transactions" + } + ] + }, + { + "id": 1555, + "type": "message", + "date": "2022-10-12T02:00:03", + "date_unixtime": "1665532803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022707 BTC for 109.61 CZK @ 482,726 CZK\nFees are 0.38498683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.136299998931383615310916132 CZK)\nThe limits being 0.10 % (79.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08134798 BTC (41,668.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.76 % (-2,400.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,983.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16490981 BTC (79,606.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.43 CZK over 399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022707 BTC for 109.61 CZK @ 482,726 CZK\nFees are 0.38498683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.136299998931383615310916132 CZK)\nThe limits being 0.10 % (79.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08134798 BTC (41,668.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.76 % (-2,400.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,983.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16490981 BTC (79,606.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.43 CZK over 399 transactions" + } + ] + }, + { + "id": 1556, + "type": "message", + "date": "2022-10-12T06:00:04", + "date_unixtime": "1665547204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022675 BTC for 109.61 CZK @ 483,404 CZK\nFees are 0.38498424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.170199997912488209678473744 CZK)\nThe limits being 0.10 % (79.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08157473 BTC (41,778.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.61 % (-2,345.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,873.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16513656 BTC (79,827.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.45 CZK over 400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022675 BTC for 109.61 CZK @ 483,404 CZK\nFees are 0.38498424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.170199997912488209678473744 CZK)\nThe limits being 0.10 % (79.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08157473 BTC (41,778.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.61 % (-2,345.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,873.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16513656 BTC (79,827.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.45 CZK over 400 transactions" + } + ] + }, + { + "id": 1557, + "type": "message", + "date": "2022-10-12T10:00:04", + "date_unixtime": "1665561604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022601 BTC for 109.61 CZK @ 485,000 CZK\nFees are 0.38499476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.699999999559084904528764606 CZK)\nThe limits being 0.10 % (80.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08180074 BTC (41,888.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.29 % (-2,215.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,763.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16536257 BTC (80,200.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.46 CZK over 401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022601 BTC for 109.61 CZK @ 485,000 CZK\nFees are 0.38499476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.699999999559084904528764606 CZK)\nThe limits being 0.10 % (80.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08180074 BTC (41,888.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.29 % (-2,215.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,763.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16536257 BTC (80,200.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.46 CZK over 401 transactions" + } + ] + }, + { + "id": 1558, + "type": "message", + "date": "2022-10-12T14:00:03", + "date_unixtime": "1665576003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022462 BTC for 109.61 CZK @ 487,990 CZK\nFees are 0.38498585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.639699998895327488151721845 CZK)\nThe limits being 0.10 % (80.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08202536 BTC (41,998.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.69 % (-1,971.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,653.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16558719 BTC (80,804.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.48 CZK over 402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022462 BTC for 109.61 CZK @ 487,990 CZK\nFees are 0.38498585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.639699998895327488151721845 CZK)\nThe limits being 0.10 % (80.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08202536 BTC (41,998.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.69 % (-1,971.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,653.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16558719 BTC (80,804.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.48 CZK over 402 transactions" + } + ] + }, + { + "id": 1559, + "type": "message", + "date": "2022-10-12T18:00:04", + "date_unixtime": "1665590404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022570 BTC for 109.62 CZK @ 485,667 CZK\nFees are 0.38499543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.570009999119166214659855769 CZK)\nThe limits being 0.10 % (80.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08225106 BTC (42,108.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.14 % (-2,162.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,543.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16581289 BTC (80,529.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.49 CZK over 403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022570 BTC for 109.62 CZK @ 485,667 CZK\nFees are 0.38499543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.570009999119166214659855769 CZK)\nThe limits being 0.10 % (80.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08225106 BTC (42,108.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.14 % (-2,162.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,543.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16581289 BTC (80,529.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.49 CZK over 403 transactions" + } + ] + }, + { + "id": 1560, + "type": "message", + "date": "2022-10-12T22:00:03", + "date_unixtime": "1665604803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022549 BTC for 109.62 CZK @ 486,121 CZK\nFees are 0.38499677 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.306049998891855798598205320 CZK)\nThe limits being 0.10 % (80.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08247655 BTC (42,218.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.03 % (-2,125.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,433.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16603838 BTC (80,714.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.50 CZK over 404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022549 BTC for 109.62 CZK @ 486,121 CZK\nFees are 0.38499677 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.306049998891855798598205320 CZK)\nThe limits being 0.10 % (80.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08247655 BTC (42,218.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.03 % (-2,125.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,433.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16603838 BTC (80,714.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.50 CZK over 404 transactions" + } + ] + }, + { + "id": 1561, + "type": "message", + "date": "2022-10-13T02:00:04", + "date_unixtime": "1665619204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022534 BTC for 109.61 CZK @ 486,438 CZK\nFees are 0.38499156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (34.050659998074547727667816058 CZK)\nThe limits being 0.10 % (80.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08270189 BTC (42,328.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.96 % (-2,099.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,323.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16626372 BTC (80,876.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.52 CZK over 405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022534 BTC for 109.61 CZK @ 486,438 CZK\nFees are 0.38499156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (34.050659998074547727667816058 CZK)\nThe limits being 0.10 % (80.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08270189 BTC (42,328.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.96 % (-2,099.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,323.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16626372 BTC (80,876.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.52 CZK over 405 transactions" + } + ] + }, + { + "id": 1562, + "type": "message", + "date": "2022-10-13T06:00:05", + "date_unixtime": "1665633605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022589 BTC for 109.61 CZK @ 485,253 CZK\nFees are 0.38499107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.967709999816261306684737908 CZK)\nThe limits being 0.10 % (80.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08292778 BTC (42,438.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.18 % (-2,197.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,213.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16648961 BTC (80,789.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.53 CZK over 406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022589 BTC for 109.61 CZK @ 485,253 CZK\nFees are 0.38499107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.967709999816261306684737908 CZK)\nThe limits being 0.10 % (80.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08292778 BTC (42,438.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.18 % (-2,197.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,213.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16648961 BTC (80,789.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.53 CZK over 406 transactions" + } + ] + }, + { + "id": 1563, + "type": "message", + "date": "2022-10-13T10:00:04", + "date_unixtime": "1665648004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022662 BTC for 109.62 CZK @ 483,701 CZK\nFees are 0.38499992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.022059999427473791425536171 CZK)\nThe limits being 0.10 % (80.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08315440 BTC (42,548.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.47 % (-2,327.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,103.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16671623 BTC (80,640.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.54 CZK over 407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022662 BTC for 109.62 CZK @ 483,701 CZK\nFees are 0.38499992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.022059999427473791425536171 CZK)\nThe limits being 0.10 % (80.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08315440 BTC (42,548.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.47 % (-2,327.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,103.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16671623 BTC (80,640.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.54 CZK over 407 transactions" + } + ] + }, + { + "id": 1564, + "type": "message", + "date": "2022-10-13T14:00:03", + "date_unixtime": "1665662403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023070 BTC for 109.61 CZK @ 475,134 CZK\nFees are 0.38498971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.508039997848881321097873956 CZK)\nThe limits being 0.10 % (79.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08338510 BTC (42,658.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 475,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -7.13 % (-3,039.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,993.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16694693 BTC (79,322.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.56 CZK over 408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023070 BTC for 109.61 CZK @ 475,134 CZK\nFees are 0.38498971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (28.508039997848881321097873956 CZK)\nThe limits being 0.10 % (79.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08338510 BTC (42,658.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 475,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -7.13 % (-3,039.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,993.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16694693 BTC (79,322.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.56 CZK over 408 transactions" + } + ] + }, + { + "id": 1565, + "type": "message", + "date": "2022-10-13T18:00:03", + "date_unixtime": "1665676803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022934 BTC for 109.61 CZK @ 477,945 CZK\nFees are 0.38498442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.235599999287398613442816716 CZK)\nThe limits being 0.10 % (79.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08361444 BTC (42,768.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.56 % (-2,805.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,884.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16717627 BTC (79,901.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.57 CZK over 409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022934 BTC for 109.61 CZK @ 477,945 CZK\nFees are 0.38498442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.235599999287398613442816716 CZK)\nThe limits being 0.10 % (79.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08361444 BTC (42,768.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.56 % (-2,805.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,884.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16717627 BTC (79,901.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.57 CZK over 409 transactions" + } + ] + }, + { + "id": 1566, + "type": "message", + "date": "2022-10-13T22:00:03", + "date_unixtime": "1665691203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022439 BTC for 109.61 CZK @ 488,500 CZK\nFees are 0.38499358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.079999999111803371563314665 CZK)\nThe limits being 0.10 % (81.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08383883 BTC (42,878.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.49 % (-1,923.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,774.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16740066 BTC (81,775.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.58 CZK over 410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022439 BTC for 109.61 CZK @ 488,500 CZK\nFees are 0.38499358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.079999999111803371563314665 CZK)\nThe limits being 0.10 % (81.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08383883 BTC (42,878.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.49 % (-1,923.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,774.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16740066 BTC (81,775.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.58 CZK over 410 transactions" + } + ] + }, + { + "id": 1567, + "type": "message", + "date": "2022-10-14T02:00:04", + "date_unixtime": "1665705604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022408 BTC for 109.62 CZK @ 489,178 CZK\nFees are 0.38499531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.134239999345382912750749029 CZK)\nThe limits being 0.10 % (82.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08406291 BTC (42,988.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.34 % (-1,867.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,664.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16762474 BTC (81,998.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.60 CZK over 411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022408 BTC for 109.62 CZK @ 489,178 CZK\nFees are 0.38499531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.134239999345382912750749029 CZK)\nThe limits being 0.10 % (82.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08406291 BTC (42,988.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.34 % (-1,867.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,664.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16762474 BTC (81,998.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.60 CZK over 411 transactions" + } + ] + }, + { + "id": 1568, + "type": "message", + "date": "2022-10-14T06:00:04", + "date_unixtime": "1665720004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021963 BTC for 109.62 CZK @ 499,093 CZK\nFees are 0.38499808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.945579998757252226141709862 CZK)\nThe limits being 0.10 % (83.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08428254 BTC (43,098.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -2.40 % (-1,034.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,554.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16784437 BTC (83,769.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.61 CZK over 412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021963 BTC for 109.62 CZK @ 499,093 CZK\nFees are 0.38499808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.945579998757252226141709862 CZK)\nThe limits being 0.10 % (83.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08428254 BTC (43,098.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -2.40 % (-1,034.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,554.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16784437 BTC (83,769.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.61 CZK over 412 transactions" + } + ] + }, + { + "id": 1569, + "type": "message", + "date": "2022-10-14T10:00:05", + "date_unixtime": "1665734405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022139 BTC for 109.61 CZK @ 495,115 CZK\nFees are 0.38499005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.755749998992865050916129335 CZK)\nThe limits being 0.10 % (83.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08450393 BTC (43,208.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.17 % (-1,369.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,444.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16806576 BTC (83,211.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.62 CZK over 413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022139 BTC for 109.61 CZK @ 495,115 CZK\nFees are 0.38499005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.755749998992865050916129335 CZK)\nThe limits being 0.10 % (83.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08450393 BTC (43,208.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.17 % (-1,369.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,444.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16806576 BTC (83,211.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.62 CZK over 413 transactions" + } + ] + }, + { + "id": 1570, + "type": "message", + "date": "2022-10-14T14:00:03", + "date_unixtime": "1665748803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022105 BTC for 109.62 CZK @ 495,886 CZK\nFees are 0.38499739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (34.712019999668655746506769396 CZK)\nThe limits being 0.10 % (83.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08472498 BTC (43,318.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.01 % (-1,305.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,334.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16828681 BTC (83,451.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.64 CZK over 414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022105 BTC for 109.62 CZK @ 495,886 CZK\nFees are 0.38499739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (34.712019999668655746506769396 CZK)\nThe limits being 0.10 % (83.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08472498 BTC (43,318.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.01 % (-1,305.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,334.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16828681 BTC (83,451.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.64 CZK over 414 transactions" + } + ] + }, + { + "id": 1571, + "type": "message", + "date": "2022-10-14T18:00:04", + "date_unixtime": "1665763204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022351 BTC for 109.61 CZK @ 490,416 CZK\nFees are 0.38498784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.233279999800260628670308478 CZK)\nThe limits being 0.10 % (82.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08494849 BTC (43,428.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.07 % (-1,768.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,224.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16851032 BTC (82,640.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.65 CZK over 415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022351 BTC for 109.61 CZK @ 490,416 CZK\nFees are 0.38498784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.233279999800260628670308478 CZK)\nThe limits being 0.10 % (82.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08494849 BTC (43,428.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.07 % (-1,768.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,224.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16851032 BTC (82,640.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.65 CZK over 415 transactions" + } + ] + }, + { + "id": 1572, + "type": "message", + "date": "2022-10-14T22:00:04", + "date_unixtime": "1665777604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022541 BTC for 109.62 CZK @ 486,294 CZK\nFees are 0.38499715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.903519997563206917839820952 CZK)\nThe limits being 0.10 % (82.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08517390 BTC (43,538.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.87 % (-2,119.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,114.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16873573 BTC (82,055.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.66 CZK over 416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022541 BTC for 109.62 CZK @ 486,294 CZK\nFees are 0.38499715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.903519997563206917839820952 CZK)\nThe limits being 0.10 % (82.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08517390 BTC (43,538.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.87 % (-2,119.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,114.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16873573 BTC (82,055.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.66 CZK over 416 transactions" + } + ] + }, + { + "id": 1573, + "type": "message", + "date": "2022-10-15T02:00:03", + "date_unixtime": "1665792003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022511 BTC for 109.61 CZK @ 486,936 CZK\nFees are 0.38499234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.954879999872508766516339894 CZK)\nThe limits being 0.10 % (82.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08539901 BTC (43,648.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.73 % (-2,065.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,004.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16896084 BTC (82,273.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.67 CZK over 417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022511 BTC for 109.61 CZK @ 486,936 CZK\nFees are 0.38499234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.954879999872508766516339894 CZK)\nThe limits being 0.10 % (82.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08539901 BTC (43,648.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.73 % (-2,065.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,004.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16896084 BTC (82,273.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.67 CZK over 417 transactions" + } + ] + }, + { + "id": 1574, + "type": "message", + "date": "2022-10-15T06:00:03", + "date_unixtime": "1665806403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022482 BTC for 109.61 CZK @ 487,553 CZK\nFees are 0.38498357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.502119998384800959297028499 CZK)\nThe limits being 0.10 % (82.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08562383 BTC (43,758.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.60 % (-2,012.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,894.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16918566 BTC (82,486.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.69 CZK over 418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022482 BTC for 109.61 CZK @ 487,553 CZK\nFees are 0.38498357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.502119998384800959297028499 CZK)\nThe limits being 0.10 % (82.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08562383 BTC (43,758.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.60 % (-2,012.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,894.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16918566 BTC (82,486.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.69 CZK over 418 transactions" + } + ] + }, + { + "id": 1575, + "type": "message", + "date": "2022-10-15T10:00:04", + "date_unixtime": "1665820804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022480 BTC for 109.61 CZK @ 487,607 CZK\nFees are 0.38499196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.504279998652403420767527178 CZK)\nThe limits being 0.10 % (82.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08584863 BTC (43,868.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.58 % (-2,008.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,784.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16941046 BTC (82,605.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.70 CZK over 419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022480 BTC for 109.61 CZK @ 487,607 CZK\nFees are 0.38499196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.504279998652403420767527178 CZK)\nThe limits being 0.10 % (82.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08584863 BTC (43,868.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.58 % (-2,008.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,784.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16941046 BTC (82,605.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.70 CZK over 419 transactions" + } + ] + }, + { + "id": 1576, + "type": "message", + "date": "2022-10-15T14:00:03", + "date_unixtime": "1665835203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022480 BTC for 109.61 CZK @ 487,607 CZK\nFees are 0.38499196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.504279998652403420767527178 CZK)\nThe limits being 0.10 % (82.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08607343 BTC (43,978.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.57 % (-2,008.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,674.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16963526 BTC (82,715.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.71 CZK over 420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022480 BTC for 109.61 CZK @ 487,607 CZK\nFees are 0.38499196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.504279998652403420767527178 CZK)\nThe limits being 0.10 % (82.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08607343 BTC (43,978.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.57 % (-2,008.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,674.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16963526 BTC (82,715.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.71 CZK over 420 transactions" + } + ] + }, + { + "id": 1577, + "type": "message", + "date": "2022-10-15T18:00:03", + "date_unixtime": "1665849603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022517 BTC for 109.61 CZK @ 486,807 CZK\nFees are 0.38499294 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.472279999528231108515939647 CZK)\nThe limits being 0.10 % (82.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08629860 BTC (44,088.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.71 % (-2,078.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,564.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16986043 BTC (82,689.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.72 CZK over 421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022517 BTC for 109.61 CZK @ 486,807 CZK\nFees are 0.38499294 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.472279999528231108515939647 CZK)\nThe limits being 0.10 % (82.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08629860 BTC (44,088.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.71 % (-2,078.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,564.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16986043 BTC (82,689.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.72 CZK over 421 transactions" + } + ] + }, + { + "id": 1578, + "type": "message", + "date": "2022-10-15T22:00:04", + "date_unixtime": "1665864004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022598 BTC for 109.62 CZK @ 485,067 CZK\nFees are 0.38499683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.552009999694405274961830425 CZK)\nThe limits being 0.10 % (82.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08652458 BTC (44,198.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.04 % (-2,228.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,454.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17008641 BTC (82,503.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.74 CZK over 422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022598 BTC for 109.62 CZK @ 485,067 CZK\nFees are 0.38499683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.552009999694405274961830425 CZK)\nThe limits being 0.10 % (82.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08652458 BTC (44,198.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.04 % (-2,228.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,454.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17008641 BTC (82,503.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.74 CZK over 422 transactions" + } + ] + }, + { + "id": 1579, + "type": "message", + "date": "2022-10-16T02:00:04", + "date_unixtime": "1665878404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022613 BTC for 109.62 CZK @ 484,746 CZK\nFees are 0.38499744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.694919999521420308185490879 CZK)\nThe limits being 0.10 % (82.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08675071 BTC (44,308.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.09 % (-2,256.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,344.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17031254 BTC (82,558.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.75 CZK over 423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022613 BTC for 109.62 CZK @ 484,746 CZK\nFees are 0.38499744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.694919999521420308185490879 CZK)\nThe limits being 0.10 % (82.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08675071 BTC (44,308.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.09 % (-2,256.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,344.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17031254 BTC (82,558.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.75 CZK over 423 transactions" + } + ] + }, + { + "id": 1580, + "type": "message", + "date": "2022-10-16T06:00:03", + "date_unixtime": "1665892803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022577 BTC for 109.62 CZK @ 485,522 CZK\nFees are 0.38499986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8552199997003003991941302839 CZK)\nThe limits being 0.10 % (82.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08697648 BTC (44,418.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.93 % (-2,189.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,234.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17053831 BTC (82,800.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.76 CZK over 424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022577 BTC for 109.62 CZK @ 485,522 CZK\nFees are 0.38499986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.8552199997003003991941302839 CZK)\nThe limits being 0.10 % (82.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08697648 BTC (44,418.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.93 % (-2,189.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,234.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17053831 BTC (82,800.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.76 CZK over 424 transactions" + } + ] + }, + { + "id": 1581, + "type": "message", + "date": "2022-10-16T10:00:04", + "date_unixtime": "1665907204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022509 BTC for 109.61 CZK @ 486,980 CZK\nFees are 0.38499292 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.739599999229672024231330554 CZK)\nThe limits being 0.10 % (83.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08720157 BTC (44,528.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.63 % (-2,063.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,124.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17076340 BTC (83,158.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.77 CZK over 425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022509 BTC for 109.61 CZK @ 486,980 CZK\nFees are 0.38499292 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.739599999229672024231330554 CZK)\nThe limits being 0.10 % (83.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08720157 BTC (44,528.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.63 % (-2,063.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,124.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17076340 BTC (83,158.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.77 CZK over 425 transactions" + } + ] + }, + { + "id": 1582, + "type": "message", + "date": "2022-10-16T14:00:04", + "date_unixtime": "1665921604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022554 BTC for 109.61 CZK @ 486,000 CZK\nFees are 0.38498629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.86000 CZK)\nThe limits being 0.10 % (83.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08742711 BTC (44,638.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.81 % (-2,149.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,014.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17098894 BTC (83,100.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.79 CZK over 426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022554 BTC for 109.61 CZK @ 486,000 CZK\nFees are 0.38498629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.86000 CZK)\nThe limits being 0.10 % (83.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08742711 BTC (44,638.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.81 % (-2,149.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,014.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17098894 BTC (83,100.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.79 CZK over 426 transactions" + } + ] + }, + { + "id": 1583, + "type": "message", + "date": "2022-10-16T18:00:04", + "date_unixtime": "1665936004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022554 BTC for 109.61 CZK @ 485,996 CZK\nFees are 0.38498312 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.719919999784385050478861804 CZK)\nThe limits being 0.10 % (83.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08765265 BTC (44,748.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.80 % (-2,150.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,904.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17121448 BTC (83,209.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.80 CZK over 427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022554 BTC for 109.61 CZK @ 485,996 CZK\nFees are 0.38498312 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.719919999784385050478861804 CZK)\nThe limits being 0.10 % (83.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08765265 BTC (44,748.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.80 % (-2,150.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,904.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17121448 BTC (83,209.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.80 CZK over 427 transactions" + } + ] + }, + { + "id": 1584, + "type": "message", + "date": "2022-10-16T22:00:04", + "date_unixtime": "1665950404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022307 BTC for 109.61 CZK @ 491,383 CZK\nFees are 0.38498758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.482979999910208027228142574 CZK)\nThe limits being 0.10 % (84.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08787572 BTC (44,858.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.74 % (-1,678.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,794.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17143755 BTC (84,241.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.81 CZK over 428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022307 BTC for 109.61 CZK @ 491,383 CZK\nFees are 0.38498758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.482979999910208027228142574 CZK)\nThe limits being 0.10 % (84.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08787572 BTC (44,858.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.74 % (-1,678.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,794.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17143755 BTC (84,241.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.81 CZK over 428 transactions" + } + ] + }, + { + "id": 1585, + "type": "message", + "date": "2022-10-17T02:00:03", + "date_unixtime": "1665964803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022471 BTC for 109.61 CZK @ 487,804 CZK\nFees are 0.38499331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.268239997621248952062379154 CZK)\nThe limits being 0.10 % (83.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08810043 BTC (44,968.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.43 % (-1,993.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,684.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17166226 BTC (83,737.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.82 CZK over 429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022471 BTC for 109.61 CZK @ 487,804 CZK\nFees are 0.38499331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.268239997621248952062379154 CZK)\nThe limits being 0.10 % (83.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08810043 BTC (44,968.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.43 % (-1,993.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,684.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17166226 BTC (83,737.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.82 CZK over 429 transactions" + } + ] + }, + { + "id": 1586, + "type": "message", + "date": "2022-10-17T06:00:04", + "date_unixtime": "1665979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022579 BTC for 109.61 CZK @ 485,462 CZK\nFees are 0.38498638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.563859999016242654672506452 CZK)\nThe limits being 0.10 % (83.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08832622 BTC (45,078.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.88 % (-2,199.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,574.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17188805 BTC (83,445.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.83 CZK over 430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022579 BTC for 109.61 CZK @ 485,462 CZK\nFees are 0.38498638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.563859999016242654672506452 CZK)\nThe limits being 0.10 % (83.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08832622 BTC (45,078.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.88 % (-2,199.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,574.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17188805 BTC (83,445.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.83 CZK over 430 transactions" + } + ] + }, + { + "id": 1587, + "type": "message", + "date": "2022-10-17T10:00:04", + "date_unixtime": "1665993604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022512 BTC for 109.61 CZK @ 486,914 CZK\nFees are 0.38499205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.738279999213838983600043770 CZK)\nThe limits being 0.10 % (83.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08855134 BTC (45,188.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.59 % (-2,072.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,464.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17211317 BTC (83,804.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.85 CZK over 431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022512 BTC for 109.61 CZK @ 486,914 CZK\nFees are 0.38499205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.738279999213838983600043770 CZK)\nThe limits being 0.10 % (83.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08855134 BTC (45,188.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.59 % (-2,072.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,464.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17211317 BTC (83,804.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.85 CZK over 431 transactions" + } + ] + }, + { + "id": 1588, + "type": "message", + "date": "2022-10-17T14:00:05", + "date_unixtime": "1666008005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022279 BTC for 109.61 CZK @ 492,000 CZK\nFees are 0.38498714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.36000 CZK)\nThe limits being 0.10 % (84.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08877413 BTC (45,298.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 492,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.58 % (-1,622.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,354.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17233596 BTC (84,789.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.86 CZK over 432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022279 BTC for 109.61 CZK @ 492,000 CZK\nFees are 0.38498714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.36000 CZK)\nThe limits being 0.10 % (84.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08877413 BTC (45,298.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 492,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.58 % (-1,622.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,354.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17233596 BTC (84,789.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.86 CZK over 432 transactions" + } + ] + }, + { + "id": 1589, + "type": "message", + "date": "2022-10-17T18:00:04", + "date_unixtime": "1666022404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022383 BTC for 109.61 CZK @ 489,723 CZK\nFees are 0.38499423 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.177839997572718333529559376 CZK)\nThe limits being 0.10 % (84.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08899796 BTC (45,408.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.02 % (-1,824.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,244.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17255979 BTC (84,506.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.87 CZK over 433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022383 BTC for 109.61 CZK @ 489,723 CZK\nFees are 0.38499423 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.177839997572718333529559376 CZK)\nThe limits being 0.10 % (84.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08899796 BTC (45,408.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.02 % (-1,824.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,244.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17255979 BTC (84,506.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.87 CZK over 433 transactions" + } + ] + }, + { + "id": 1590, + "type": "message", + "date": "2022-10-17T22:00:04", + "date_unixtime": "1666036804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022424 BTC for 109.62 CZK @ 488,832 CZK\nFees are 0.38499731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (53.771466014596432998241438588 CZK)\nThe limits being 0.10 % (84.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08922220 BTC (45,518.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.18 % (-1,904.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,134.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17278403 BTC (84,462.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.88 CZK over 434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022424 BTC for 109.62 CZK @ 488,832 CZK\nFees are 0.38499731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (53.771466014596432998241438588 CZK)\nThe limits being 0.10 % (84.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08922220 BTC (45,518.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.18 % (-1,904.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,134.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17278403 BTC (84,462.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.88 CZK over 434 transactions" + } + ] + }, + { + "id": 1591, + "type": "message", + "date": "2022-10-18T02:00:03", + "date_unixtime": "1666051203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022413 BTC for 109.61 CZK @ 489,054 CZK\nFees are 0.38498360 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.014859997771152592215560356 CZK)\nThe limits being 0.10 % (84.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08944633 BTC (45,628.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.13 % (-1,884.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,024.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17300816 BTC (84,610.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.89 CZK over 435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022413 BTC for 109.61 CZK @ 489,054 CZK\nFees are 0.38498360 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.014859997771152592215560356 CZK)\nThe limits being 0.10 % (84.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08944633 BTC (45,628.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.13 % (-1,884.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,024.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17300816 BTC (84,610.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.89 CZK over 435 transactions" + } + ] + }, + { + "id": 1592, + "type": "message", + "date": "2022-10-18T06:00:03", + "date_unixtime": "1666065603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022419 BTC for 109.61 CZK @ 488,931 CZK\nFees are 0.38498981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.003789998753859684600486014 CZK)\nThe limits being 0.10 % (84.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08967052 BTC (45,738.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.15 % (-1,896.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,914.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17323235 BTC (84,698.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.91 CZK over 436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022419 BTC for 109.61 CZK @ 488,931 CZK\nFees are 0.38498981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.003789998753859684600486014 CZK)\nThe limits being 0.10 % (84.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08967052 BTC (45,738.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.15 % (-1,896.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,914.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17323235 BTC (84,698.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.91 CZK over 436 transactions" + } + ] + }, + { + "id": 1593, + "type": "message", + "date": "2022-10-18T10:00:03", + "date_unixtime": "1666080003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022295 BTC for 109.61 CZK @ 491,645 CZK\nFees are 0.38498563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.582249998966389558500842476 CZK)\nThe limits being 0.10 % (85.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.08989347 BTC (45,848.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.61 % (-1,653.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,804.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17345530 BTC (85,278.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.92 CZK over 437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022295 BTC for 109.61 CZK @ 491,645 CZK\nFees are 0.38498563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.582249998966389558500842476 CZK)\nThe limits being 0.10 % (85.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.08989347 BTC (45,848.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.61 % (-1,653.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,804.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17345530 BTC (85,278.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.92 CZK over 437 transactions" + } + ] + }, + { + "id": 1594, + "type": "message", + "date": "2022-10-18T14:00:04", + "date_unixtime": "1666094404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022325 BTC for 109.62 CZK @ 491,001 CZK\nFees are 0.38499870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.190089997438974786455691751 CZK)\nThe limits being 0.10 % (85.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09011672 BTC (45,958.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -3.72 % (-1,711.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,694.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17367855 BTC (85,276.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.93 CZK over 438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022325 BTC for 109.62 CZK @ 491,001 CZK\nFees are 0.38499870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.190089997438974786455691751 CZK)\nThe limits being 0.10 % (85.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09011672 BTC (45,958.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -3.72 % (-1,711.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,694.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17367855 BTC (85,276.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.93 CZK over 438 transactions" + } + ] + }, + { + "id": 1595, + "type": "message", + "date": "2022-10-18T18:00:04", + "date_unixtime": "1666108804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022567 BTC for 109.61 CZK @ 485,723 CZK\nFees are 0.38498864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.572299998703964493131221562 CZK)\nThe limits being 0.10 % (84.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09034239 BTC (46,068.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.75 % (-2,187.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,584.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17390422 BTC (84,469.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.94 CZK over 439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022567 BTC for 109.61 CZK @ 485,723 CZK\nFees are 0.38498864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.572299998703964493131221562 CZK)\nThe limits being 0.10 % (84.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09034239 BTC (46,068.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.75 % (-2,187.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,584.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17390422 BTC (84,469.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.94 CZK over 439 transactions" + } + ] + }, + { + "id": 1596, + "type": "message", + "date": "2022-10-18T22:00:03", + "date_unixtime": "1666123203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022757 BTC for 109.62 CZK @ 481,677 CZK\nFees are 0.38499611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.350929999166471421300221822 CZK)\nThe limits being 0.10 % (83.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09056996 BTC (46,178.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.53 % (-2,553.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,474.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17413179 BTC (83,875.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.95 CZK over 440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022757 BTC for 109.62 CZK @ 481,677 CZK\nFees are 0.38499611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.350929999166471421300221822 CZK)\nThe limits being 0.10 % (83.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09056996 BTC (46,178.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.53 % (-2,553.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,474.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17413179 BTC (83,875.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.95 CZK over 440 transactions" + } + ] + }, + { + "id": 1597, + "type": "message", + "date": "2022-10-19T02:00:04", + "date_unixtime": "1666137604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022672 BTC for 109.61 CZK @ 483,474 CZK\nFees are 0.38498905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.347399996272748977731081651 CZK)\nThe limits being 0.10 % (84.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09079668 BTC (46,288.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.17 % (-2,391.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,364.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17435851 BTC (84,297.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.96 CZK over 441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022672 BTC for 109.61 CZK @ 483,474 CZK\nFees are 0.38498905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.347399996272748977731081651 CZK)\nThe limits being 0.10 % (84.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09079668 BTC (46,288.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.17 % (-2,391.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,364.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17435851 BTC (84,297.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.96 CZK over 441 transactions" + } + ] + }, + { + "id": 1598, + "type": "message", + "date": "2022-10-19T06:00:04", + "date_unixtime": "1666152004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022720 BTC for 109.61 CZK @ 482,459 CZK\nFees are 0.38499418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.421309997315732962799216826 CZK)\nThe limits being 0.10 % (84.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09102388 BTC (46,398.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.35 % (-2,483.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,254.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17458571 BTC (84,230.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.97 CZK over 442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022720 BTC for 109.61 CZK @ 482,459 CZK\nFees are 0.38499418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.421309997315732962799216826 CZK)\nThe limits being 0.10 % (84.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09102388 BTC (46,398.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.35 % (-2,483.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,254.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17458571 BTC (84,230.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.97 CZK over 442 transactions" + } + ] + }, + { + "id": 1599, + "type": "message", + "date": "2022-10-19T10:00:04", + "date_unixtime": "1666166404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022777 BTC for 109.61 CZK @ 481,246 CZK\nFees are 0.38498967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.499679998260467780601673832 CZK)\nThe limits being 0.10 % (84.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09125165 BTC (46,508.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.58 % (-2,594.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,144.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17481348 BTC (84,128.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.99 CZK over 443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022777 BTC for 109.61 CZK @ 481,246 CZK\nFees are 0.38498967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.499679998260467780601673832 CZK)\nThe limits being 0.10 % (84.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09125165 BTC (46,508.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.58 % (-2,594.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,144.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17481348 BTC (84,128.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.99 CZK over 443 transactions" + } + ] + }, + { + "id": 1600, + "type": "message", + "date": "2022-10-19T14:00:03", + "date_unixtime": "1666180803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022713 BTC for 109.61 CZK @ 482,601 CZK\nFees are 0.38498884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.956059997905889681978877654 CZK)\nThe limits being 0.10 % (84.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09147878 BTC (46,618.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.30 % (-2,471.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,034.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17504061 BTC (84,474.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.00 CZK over 444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022713 BTC for 109.61 CZK @ 482,601 CZK\nFees are 0.38498884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.956059997905889681978877654 CZK)\nThe limits being 0.10 % (84.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09147878 BTC (46,618.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.30 % (-2,471.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,034.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17504061 BTC (84,474.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.00 CZK over 444 transactions" + } + ] + }, + { + "id": 1601, + "type": "message", + "date": "2022-10-19T18:00:05", + "date_unixtime": "1666195205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022674 BTC for 109.62 CZK @ 483,442 CZK\nFees are 0.38499753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.675359997616176143487209954 CZK)\nThe limits being 0.10 % (84.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09170552 BTC (46,728.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.12 % (-2,394.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,924.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17526735 BTC (84,731.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.01 CZK over 445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022674 BTC for 109.62 CZK @ 483,442 CZK\nFees are 0.38499753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.675359997616176143487209954 CZK)\nThe limits being 0.10 % (84.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09170552 BTC (46,728.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.12 % (-2,394.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,924.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17526735 BTC (84,731.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.01 CZK over 445 transactions" + } + ] + }, + { + "id": 1602, + "type": "message", + "date": "2022-10-19T22:00:03", + "date_unixtime": "1666209603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022686 BTC for 109.62 CZK @ 483,187 CZK\nFees are 0.38499810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.486829996098026123062800430 CZK)\nThe limits being 0.10 % (84.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09193238 BTC (46,838.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.16 % (-2,418.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,814.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17549421 BTC (84,796.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.02 CZK over 446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022686 BTC for 109.62 CZK @ 483,187 CZK\nFees are 0.38499810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.486829996098026123062800430 CZK)\nThe limits being 0.10 % (84.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09193238 BTC (46,838.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.16 % (-2,418.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,814.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17549421 BTC (84,796.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.02 CZK over 446 transactions" + } + ] + }, + { + "id": 1603, + "type": "message", + "date": "2022-10-20T02:00:03", + "date_unixtime": "1666224003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022756 BTC for 109.61 CZK @ 481,691 CZK\nFees are 0.38499038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.352189998478694230940521672 CZK)\nThe limits being 0.10 % (84.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09215994 BTC (46,948.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.44 % (-2,556.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,704.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17572177 BTC (84,643.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.03 CZK over 447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022756 BTC for 109.61 CZK @ 481,691 CZK\nFees are 0.38499038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.352189998478694230940521672 CZK)\nThe limits being 0.10 % (84.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09215994 BTC (46,948.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.44 % (-2,556.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,704.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17572177 BTC (84,643.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.03 CZK over 447 transactions" + } + ] + }, + { + "id": 1604, + "type": "message", + "date": "2022-10-20T06:00:03", + "date_unixtime": "1666238403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022838 BTC for 109.62 CZK @ 479,969 CZK\nFees are 0.38499641 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.597829999764812996006227961 CZK)\nThe limits being 0.10 % (84.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09238832 BTC (47,058.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.77 % (-2,715.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,594.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17595015 BTC (84,450.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.04 CZK over 448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022838 BTC for 109.62 CZK @ 479,969 CZK\nFees are 0.38499641 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.597829999764812996006227961 CZK)\nThe limits being 0.10 % (84.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09238832 BTC (47,058.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.77 % (-2,715.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,594.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17595015 BTC (84,450.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.04 CZK over 448 transactions" + } + ] + }, + { + "id": 1605, + "type": "message", + "date": "2022-10-20T10:00:03", + "date_unixtime": "1666252803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022779 BTC for 109.61 CZK @ 481,209 CZK\nFees are 0.38499387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.436269999555749529616183998 CZK)\nThe limits being 0.10 % (84.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09261611 BTC (47,168.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.51 % (-2,601.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,484.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17617794 BTC (84,778.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.05 CZK over 449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022779 BTC for 109.61 CZK @ 481,209 CZK\nFees are 0.38499387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.436269999555749529616183998 CZK)\nThe limits being 0.10 % (84.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09261611 BTC (47,168.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.51 % (-2,601.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,484.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17617794 BTC (84,778.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.05 CZK over 449 transactions" + } + ] + }, + { + "id": 1606, + "type": "message", + "date": "2022-10-20T14:00:03", + "date_unixtime": "1666267203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022779 BTC for 109.61 CZK @ 481,199 CZK\nFees are 0.38498587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.307909999710613799942004643 CZK)\nThe limits being 0.10 % (84.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09284390 BTC (47,278.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.50 % (-2,602.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,374.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17640573 BTC (84,886.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.06 CZK over 450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022779 BTC for 109.61 CZK @ 481,199 CZK\nFees are 0.38498587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.307909999710613799942004643 CZK)\nThe limits being 0.10 % (84.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09284390 BTC (47,278.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.50 % (-2,602.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,374.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17640573 BTC (84,886.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.06 CZK over 450 transactions" + } + ] + }, + { + "id": 1607, + "type": "message", + "date": "2022-10-20T18:00:03", + "date_unixtime": "1666281603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022744 BTC for 109.61 CZK @ 481,937 CZK\nFees are 0.38498387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.096849997923202663347997100 CZK)\nThe limits being 0.10 % (85.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09307134 BTC (47,388.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.35 % (-2,534.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,264.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17663317 BTC (85,126.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.08 CZK over 451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022744 BTC for 109.61 CZK @ 481,937 CZK\nFees are 0.38498387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (24.096849997923202663347997100 CZK)\nThe limits being 0.10 % (85.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09307134 BTC (47,388.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.35 % (-2,534.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,264.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17663317 BTC (85,126.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.08 CZK over 451 transactions" + } + ] + }, + { + "id": 1608, + "type": "message", + "date": "2022-10-20T22:00:05", + "date_unixtime": "1666296005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022896 BTC for 109.61 CZK @ 478,741 CZK\nFees are 0.38498664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.299279997298066132616903033 CZK)\nThe limits being 0.10 % (84.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09330030 BTC (47,498.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.96 % (-2,832.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,154.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17686213 BTC (84,671.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.09 CZK over 452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022896 BTC for 109.61 CZK @ 478,741 CZK\nFees are 0.38498664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.299279997298066132616903033 CZK)\nThe limits being 0.10 % (84.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09330030 BTC (47,498.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.96 % (-2,832.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,154.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17686213 BTC (84,671.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.09 CZK over 452 transactions" + } + ] + }, + { + "id": 1609, + "type": "message", + "date": "2022-10-21T02:00:04", + "date_unixtime": "1666310404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022899 BTC for 109.62 CZK @ 478,692 CZK\nFees are 0.38499768 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.295359998684024230403857688 CZK)\nThe limits being 0.10 % (84.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09352929 BTC (47,608.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,026 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.96 % (-2,837.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,044.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17709112 BTC (84,772.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.10 CZK over 453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022899 BTC for 109.62 CZK @ 478,692 CZK\nFees are 0.38499768 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.295359998684024230403857688 CZK)\nThe limits being 0.10 % (84.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09352929 BTC (47,608.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,026 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.96 % (-2,837.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,044.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17709112 BTC (84,772.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.10 CZK over 453 transactions" + } + ] + }, + { + "id": 1610, + "type": "message", + "date": "2022-10-21T06:00:04", + "date_unixtime": "1666324804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022876 BTC for 109.61 CZK @ 479,159 CZK\nFees are 0.38498620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (23.957949998924031669886294978 CZK)\nThe limits being 0.10 % (84.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09375805 BTC (47,718.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.85 % (-2,793.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,934.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17731988 BTC (84,964.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.11 CZK over 454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022876 BTC for 109.61 CZK @ 479,159 CZK\nFees are 0.38498620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (23.957949998924031669886294978 CZK)\nThe limits being 0.10 % (84.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09375805 BTC (47,718.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.85 % (-2,793.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,934.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17731988 BTC (84,964.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.11 CZK over 454 transactions" + } + ] + }, + { + "id": 1611, + "type": "message", + "date": "2022-10-21T10:00:04", + "date_unixtime": "1666339204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022972 BTC for 109.62 CZK @ 477,170 CZK\nFees are 0.38499701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.086799999410039786743264325 CZK)\nThe limits being 0.10 % (84.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09398777 BTC (47,828.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.23 % (-2,980.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,824.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17754960 BTC (84,721.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.12 CZK over 455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022972 BTC for 109.62 CZK @ 477,170 CZK\nFees are 0.38499701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.086799999410039786743264325 CZK)\nThe limits being 0.10 % (84.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09398777 BTC (47,828.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.23 % (-2,980.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,824.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17754960 BTC (84,721.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.12 CZK over 455 transactions" + } + ] + }, + { + "id": 1612, + "type": "message", + "date": "2022-10-21T14:00:04", + "date_unixtime": "1666353604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022944 BTC for 109.61 CZK @ 477,740 CZK\nFees are 0.38498708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.554799999166098571318377311 CZK)\nThe limits being 0.10 % (84.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09421721 BTC (47,938.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.11 % (-2,927.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,714.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17777904 BTC (84,932.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.13 CZK over 456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022944 BTC for 109.61 CZK @ 477,740 CZK\nFees are 0.38498708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.554799999166098571318377311 CZK)\nThe limits being 0.10 % (84.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09421721 BTC (47,938.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.11 % (-2,927.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,714.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17777904 BTC (84,932.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.13 CZK over 456 transactions" + } + ] + }, + { + "id": 1613, + "type": "message", + "date": "2022-10-21T18:00:03", + "date_unixtime": "1666368003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022937 BTC for 109.61 CZK @ 477,882 CZK\nFees are 0.38498402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.336459999975235996069822240 CZK)\nThe limits being 0.10 % (85.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09444658 BTC (48,048.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.07 % (-2,914.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,604.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17800841 BTC (85,067.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.14 CZK over 457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022937 BTC for 109.61 CZK @ 477,882 CZK\nFees are 0.38498402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.336459999975235996069822240 CZK)\nThe limits being 0.10 % (85.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09444658 BTC (48,048.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.07 % (-2,914.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,604.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17800841 BTC (85,067.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.14 CZK over 457 transactions" + } + ] + }, + { + "id": 1614, + "type": "message", + "date": "2022-10-21T22:00:04", + "date_unixtime": "1666382404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022943 BTC for 109.61 CZK @ 477,761 CZK\nFees are 0.38498723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.332829999764803486798080926 CZK)\nThe limits being 0.10 % (85.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09467601 BTC (48,158.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.08 % (-2,926.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,494.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17823784 BTC (85,155.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.15 CZK over 458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022943 BTC for 109.61 CZK @ 477,761 CZK\nFees are 0.38498723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.332829999764803486798080926 CZK)\nThe limits being 0.10 % (85.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09467601 BTC (48,158.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.08 % (-2,926.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,494.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17823784 BTC (85,155.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.15 CZK over 458 transactions" + } + ] + }, + { + "id": 1615, + "type": "message", + "date": "2022-10-22T02:00:03", + "date_unixtime": "1666396803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022970 BTC for 109.61 CZK @ 477,196 CZK\nFees are 0.38498447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (38.175679998542324328932324151 CZK)\nThe limits being 0.10 % (85.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09490571 BTC (48,268.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.17 % (-2,980.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,384.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17846754 BTC (85,164.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.16 CZK over 459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022970 BTC for 109.61 CZK @ 477,196 CZK\nFees are 0.38498447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (38.175679998542324328932324151 CZK)\nThe limits being 0.10 % (85.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09490571 BTC (48,268.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.17 % (-2,980.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,384.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17846754 BTC (85,164.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.16 CZK over 459 transactions" + } + ] + }, + { + "id": 1616, + "type": "message", + "date": "2022-10-22T06:00:05", + "date_unixtime": "1666411205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022983 BTC for 109.61 CZK @ 476,926 CZK\nFees are 0.38498440 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (38.154079996867770010289661684 CZK)\nThe limits being 0.10 % (85.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09513554 BTC (48,378.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 476,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.21 % (-3,006.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,274.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17869737 BTC (85,225.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.17 CZK over 460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022983 BTC for 109.61 CZK @ 476,926 CZK\nFees are 0.38498440 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (38.154079996867770010289661684 CZK)\nThe limits being 0.10 % (85.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09513554 BTC (48,378.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 476,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.21 % (-3,006.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,274.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17869737 BTC (85,225.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.17 CZK over 460 transactions" + } + ] + }, + { + "id": 1617, + "type": "message", + "date": "2022-10-22T10:00:03", + "date_unixtime": "1666425603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022907 BTC for 109.61 CZK @ 478,508 CZK\nFees are 0.38498414 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.495559998032816081854688144 CZK)\nThe limits being 0.10 % (85.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09536461 BTC (48,488.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.89 % (-2,856.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,164.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17892644 BTC (85,617.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.18 CZK over 461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022907 BTC for 109.61 CZK @ 478,508 CZK\nFees are 0.38498414 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.495559998032816081854688144 CZK)\nThe limits being 0.10 % (85.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09536461 BTC (48,488.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.89 % (-2,856.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,164.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17892644 BTC (85,617.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.18 CZK over 461 transactions" + } + ] + }, + { + "id": 1618, + "type": "message", + "date": "2022-10-22T14:00:03", + "date_unixtime": "1666440003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022908 BTC for 109.61 CZK @ 478,496 CZK\nFees are 0.38499129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.569919999749436427715149935 CZK)\nThe limits being 0.10 % (85.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09559369 BTC (48,598.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.88 % (-2,857.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,054.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17915552 BTC (85,725.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.19 CZK over 462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022908 BTC for 109.61 CZK @ 478,496 CZK\nFees are 0.38499129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.569919999749436427715149935 CZK)\nThe limits being 0.10 % (85.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09559369 BTC (48,598.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.88 % (-2,857.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,054.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17915552 BTC (85,725.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.19 CZK over 462 transactions" + } + ] + }, + { + "id": 1619, + "type": "message", + "date": "2022-10-22T18:00:03", + "date_unixtime": "1666454403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022856 BTC for 109.62 CZK @ 479,594 CZK\nFees are 0.38499881 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.387819999183815693026803806 CZK)\nThe limits being 0.10 % (86.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09582225 BTC (48,708.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.65 % (-2,753.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,944.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17938408 BTC (86,031.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.20 CZK over 463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022856 BTC for 109.62 CZK @ 479,594 CZK\nFees are 0.38499881 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.387819999183815693026803806 CZK)\nThe limits being 0.10 % (86.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09582225 BTC (48,708.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.65 % (-2,753.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,944.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17938408 BTC (86,031.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.20 CZK over 463 transactions" + } + ] + }, + { + "id": 1620, + "type": "message", + "date": "2022-10-22T22:00:03", + "date_unixtime": "1666468803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022898 BTC for 109.61 CZK @ 478,707 CZK\nFees are 0.38499293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.361209999868135558212863416 CZK)\nThe limits being 0.10 % (85.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09605123 BTC (48,818.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.81 % (-2,838.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,834.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17961306 BTC (85,982.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.21 CZK over 464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022898 BTC for 109.61 CZK @ 478,707 CZK\nFees are 0.38499293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.361209999868135558212863416 CZK)\nThe limits being 0.10 % (85.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09605123 BTC (48,818.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.81 % (-2,838.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,834.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17961306 BTC (85,982.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.21 CZK over 464 transactions" + } + ] + }, + { + "id": 1621, + "type": "message", + "date": "2022-10-23T02:00:04", + "date_unixtime": "1666483204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022898 BTC for 109.61 CZK @ 478,707 CZK\nFees are 0.38499293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.361209999868135558212863416 CZK)\nThe limits being 0.10 % (86.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09628021 BTC (48,928.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.80 % (-2,838.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,724.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17984204 BTC (86,091.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.22 CZK over 465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022898 BTC for 109.61 CZK @ 478,707 CZK\nFees are 0.38499293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.361209999868135558212863416 CZK)\nThe limits being 0.10 % (86.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09628021 BTC (48,928.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.80 % (-2,838.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,724.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17984204 BTC (86,091.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.22 CZK over 465 transactions" + } + ] + }, + { + "id": 1622, + "type": "message", + "date": "2022-10-23T06:00:03", + "date_unixtime": "1666497603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022898 BTC for 109.61 CZK @ 478,707 CZK\nFees are 0.38499293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.361209999868135558212863416 CZK)\nThe limits being 0.10 % (86.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09650919 BTC (49,038.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.79 % (-2,839.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,614.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18007102 BTC (86,201.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.23 CZK over 466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022898 BTC for 109.61 CZK @ 478,707 CZK\nFees are 0.38499293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.361209999868135558212863416 CZK)\nThe limits being 0.10 % (86.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09650919 BTC (49,038.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.79 % (-2,839.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,614.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18007102 BTC (86,201.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.23 CZK over 466 transactions" + } + ] + }, + { + "id": 1623, + "type": "message", + "date": "2022-10-23T10:00:03", + "date_unixtime": "1666512003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022903 BTC for 109.62 CZK @ 478,610 CZK\nFees are 0.38499897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.572199999212466884178092043 CZK)\nThe limits being 0.10 % (86.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09673822 BTC (49,148.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.80 % (-2,848.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,504.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18030005 BTC (86,293.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.24 CZK over 467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022903 BTC for 109.62 CZK @ 478,610 CZK\nFees are 0.38499897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (9.572199999212466884178092043 CZK)\nThe limits being 0.10 % (86.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09673822 BTC (49,148.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.80 % (-2,848.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,504.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18030005 BTC (86,293.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.24 CZK over 467 transactions" + } + ] + }, + { + "id": 1624, + "type": "message", + "date": "2022-10-23T14:00:04", + "date_unixtime": "1666526404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022904 BTC for 109.62 CZK @ 478,585 CZK\nFees are 0.38499566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.785849999591022758104232114 CZK)\nThe limits being 0.10 % (86.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09696726 BTC (49,258.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 478,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.79 % (-2,851.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,394.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18052909 BTC (86,398.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.25 CZK over 468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022904 BTC for 109.62 CZK @ 478,585 CZK\nFees are 0.38499566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.785849999591022758104232114 CZK)\nThe limits being 0.10 % (86.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09696726 BTC (49,258.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 478,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.79 % (-2,851.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,394.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18052909 BTC (86,398.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.25 CZK over 468 transactions" + } + ] + }, + { + "id": 1625, + "type": "message", + "date": "2022-10-23T18:00:03", + "date_unixtime": "1666540803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022946 BTC for 109.61 CZK @ 477,699 CZK\nFees are 0.38498760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.330969999493188466011772359 CZK)\nThe limits being 0.10 % (86.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09719672 BTC (49,368.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 477,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.95 % (-2,938.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,284.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18075855 BTC (86,348.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.26 CZK over 469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022946 BTC for 109.61 CZK @ 477,699 CZK\nFees are 0.38498760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.330969999493188466011772359 CZK)\nThe limits being 0.10 % (86.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09719672 BTC (49,368.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 477,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.95 % (-2,938.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,284.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18075855 BTC (86,348.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.26 CZK over 469 transactions" + } + ] + }, + { + "id": 1626, + "type": "message", + "date": "2022-10-23T22:00:03", + "date_unixtime": "1666555203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022599 BTC for 109.62 CZK @ 485,044 CZK\nFees are 0.38499561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.102639998026289375741919081 CZK)\nThe limits being 0.10 % (87.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09742271 BTC (49,478.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.50 % (-2,224.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,174.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18098454 BTC (87,785.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.27 CZK over 470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022599 BTC for 109.62 CZK @ 485,044 CZK\nFees are 0.38499561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.102639998026289375741919081 CZK)\nThe limits being 0.10 % (87.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09742271 BTC (49,478.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.50 % (-2,224.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,174.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18098454 BTC (87,785.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.27 CZK over 470 transactions" + } + ] + }, + { + "id": 1627, + "type": "message", + "date": "2022-10-24T02:00:04", + "date_unixtime": "1666569604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022487 BTC for 109.62 CZK @ 487,461 CZK\nFees are 0.38499653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.247659999270131362395532565 CZK)\nThe limits being 0.10 % (88.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09764758 BTC (49,588.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.01 % (-1,989.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,064.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18120941 BTC (88,332.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.28 CZK over 471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022487 BTC for 109.62 CZK @ 487,461 CZK\nFees are 0.38499653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.247659999270131362395532565 CZK)\nThe limits being 0.10 % (88.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09764758 BTC (49,588.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.01 % (-1,989.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,064.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18120941 BTC (88,332.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.28 CZK over 471 transactions" + } + ] + }, + { + "id": 1628, + "type": "message", + "date": "2022-10-24T06:00:03", + "date_unixtime": "1666584003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022658 BTC for 109.61 CZK @ 483,773 CZK\nFees are 0.38498926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.350919999614730031965532587 CZK)\nThe limits being 0.10 % (87.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09787416 BTC (49,698.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.73 % (-2,349.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 954.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18143599 BTC (87,773.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.29 CZK over 472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022658 BTC for 109.61 CZK @ 483,773 CZK\nFees are 0.38498926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.350919999614730031965532587 CZK)\nThe limits being 0.10 % (87.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09787416 BTC (49,698.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.73 % (-2,349.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 954.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18143599 BTC (87,773.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.29 CZK over 472 transactions" + } + ] + }, + { + "id": 1629, + "type": "message", + "date": "2022-10-24T10:00:03", + "date_unixtime": "1666598403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022734 BTC for 109.61 CZK @ 482,163 CZK\nFees are 0.38499506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.929779998035379733876799374 CZK)\nThe limits being 0.10 % (87.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09810150 BTC (49,808.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.04 % (-2,507.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 844.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18166333 BTC (87,591.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.30 CZK over 473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022734 BTC for 109.61 CZK @ 482,163 CZK\nFees are 0.38499506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.929779998035379733876799374 CZK)\nThe limits being 0.10 % (87.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09810150 BTC (49,808.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.04 % (-2,507.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 844.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18166333 BTC (87,591.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.30 CZK over 473 transactions" + } + ] + }, + { + "id": 1630, + "type": "message", + "date": "2022-10-24T14:00:03", + "date_unixtime": "1666612803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022642 BTC for 109.61 CZK @ 484,120 CZK\nFees are 0.38499335 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.047199998309951914170907962 CZK)\nThe limits being 0.10 % (88.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09832792 BTC (49,918.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.64 % (-2,316.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 734.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18188975 BTC (88,056.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.31 CZK over 474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022642 BTC for 109.61 CZK @ 484,120 CZK\nFees are 0.38499335 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.047199998309951914170907962 CZK)\nThe limits being 0.10 % (88.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09832792 BTC (49,918.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.64 % (-2,316.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 734.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18188975 BTC (88,056.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.31 CZK over 474 transactions" + } + ] + }, + { + "id": 1631, + "type": "message", + "date": "2022-10-24T18:00:04", + "date_unixtime": "1666627204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022841 BTC for 109.61 CZK @ 479,897 CZK\nFees are 0.38498922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.793819997854800348859984756 CZK)\nThe limits being 0.10 % (87.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09855633 BTC (50,028.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.46 % (-2,731.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 624.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18211816 BTC (87,397.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.32 CZK over 475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022841 BTC for 109.61 CZK @ 479,897 CZK\nFees are 0.38498922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.793819997854800348859984756 CZK)\nThe limits being 0.10 % (87.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09855633 BTC (50,028.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.46 % (-2,731.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 624.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18211816 BTC (87,397.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.32 CZK over 475 transactions" + } + ] + }, + { + "id": 1632, + "type": "message", + "date": "2022-10-24T22:00:04", + "date_unixtime": "1666641604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022788 BTC for 109.61 CZK @ 481,010 CZK\nFees are 0.38498671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.670699998224574529781187993 CZK)\nThe limits being 0.10 % (87.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09878421 BTC (50,138.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.23 % (-2,622.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 514.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18234604 BTC (87,710.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.33 CZK over 476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022788 BTC for 109.61 CZK @ 481,010 CZK\nFees are 0.38498671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.670699998224574529781187993 CZK)\nThe limits being 0.10 % (87.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09878421 BTC (50,138.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.23 % (-2,622.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 514.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18234604 BTC (87,710.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.33 CZK over 476 transactions" + } + ] + }, + { + "id": 1633, + "type": "message", + "date": "2022-10-25T02:00:04", + "date_unixtime": "1666656004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022822 BTC for 109.61 CZK @ 480,297 CZK\nFees are 0.38498960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.620789998566493043343128600 CZK)\nThe limits being 0.10 % (87.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09901243 BTC (50,248.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 480,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.36 % (-2,693.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 404.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18257426 BTC (87,689.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.34 CZK over 477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022822 BTC for 109.61 CZK @ 480,297 CZK\nFees are 0.38498960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.620789998566493043343128600 CZK)\nThe limits being 0.10 % (87.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09901243 BTC (50,248.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 480,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.36 % (-2,693.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 404.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18257426 BTC (87,689.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.34 CZK over 477 transactions" + } + ] + }, + { + "id": 1634, + "type": "message", + "date": "2022-10-25T06:00:04", + "date_unixtime": "1666670404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022858 BTC for 109.61 CZK @ 479,545 CZK\nFees are 0.38499316 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.772699998339001001961679053 CZK)\nThe limits being 0.10 % (87.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09924101 BTC (50,358.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.50 % (-2,768.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 294.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18280284 BTC (87,662.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.35 CZK over 478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022858 BTC for 109.61 CZK @ 479,545 CZK\nFees are 0.38499316 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (28.772699998339001001961679053 CZK)\nThe limits being 0.10 % (87.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09924101 BTC (50,358.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.50 % (-2,768.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 294.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18280284 BTC (87,662.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.35 CZK over 478 transactions" + } + ] + }, + { + "id": 1635, + "type": "message", + "date": "2022-10-25T10:00:03", + "date_unixtime": "1666684803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022822 BTC for 109.61 CZK @ 480,296 CZK\nFees are 0.38498880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.211839998966023614570980361 CZK)\nThe limits being 0.10 % (87.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09946923 BTC (50,468.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 480,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.34 % (-2,694.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 184.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18303106 BTC (87,909.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.36 CZK over 479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022822 BTC for 109.61 CZK @ 480,296 CZK\nFees are 0.38498880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.211839998966023614570980361 CZK)\nThe limits being 0.10 % (87.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09946923 BTC (50,468.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 480,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.34 % (-2,694.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 184.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18303106 BTC (87,909.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.36 CZK over 479 transactions" + } + ] + }, + { + "id": 1636, + "type": "message", + "date": "2022-10-25T14:00:03", + "date_unixtime": "1666699203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022862 BTC for 109.61 CZK @ 479,456 CZK\nFees are 0.38498907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.178239998688868550659691343 CZK)\nThe limits being 0.10 % (87.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09969785 BTC (50,578.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.49 % (-2,778.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 74.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18325968 BTC (87,864.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.37 CZK over 480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022862 BTC for 109.61 CZK @ 479,456 CZK\nFees are 0.38498907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (19.178239998688868550659691343 CZK)\nThe limits being 0.10 % (87.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09969785 BTC (50,578.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.49 % (-2,778.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 74.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18325968 BTC (87,864.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.37 CZK over 480 transactions" + } + ] + }, + { + "id": 1637, + "type": "message", + "date": "2022-10-25T18:00:00", + "date_unixtime": "1666713600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1638, + "type": "message", + "date": "2022-10-25T22:00:00", + "date_unixtime": "1666728000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1639, + "type": "message", + "date": "2022-10-26T02:00:00", + "date_unixtime": "1666742400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1640, + "type": "message", + "date": "2022-10-26T06:00:00", + "date_unixtime": "1666756800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1641, + "type": "message", + "date": "2022-10-26T10:00:00", + "date_unixtime": "1666771200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1642, + "type": "message", + "date": "2022-10-26T14:00:01", + "date_unixtime": "1666785601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1643, + "type": "message", + "date": "2022-10-26T18:00:00", + "date_unixtime": "1666800000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1644, + "type": "message", + "date": "2022-10-26T22:00:01", + "date_unixtime": "1666814401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1645, + "type": "message", + "date": "2022-10-27T02:00:00", + "date_unixtime": "1666828800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1646, + "type": "message", + "date": "2022-10-27T06:00:00", + "date_unixtime": "1666843200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1647, + "type": "message", + "date": "2022-10-27T10:00:00", + "date_unixtime": "1666857600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1648, + "type": "message", + "date": "2022-10-27T14:00:00", + "date_unixtime": "1666872000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1649, + "type": "message", + "date": "2022-10-27T18:00:00", + "date_unixtime": "1666886400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1650, + "type": "message", + "date": "2022-10-27T22:00:00", + "date_unixtime": "1666900800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1651, + "type": "message", + "date": "2022-10-28T02:00:00", + "date_unixtime": "1666915200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1652, + "type": "message", + "date": "2022-10-28T06:00:00", + "date_unixtime": "1666929600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1653, + "type": "message", + "date": "2022-10-28T10:00:00", + "date_unixtime": "1666944000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1654, + "type": "message", + "date": "2022-10-28T14:00:00", + "date_unixtime": "1666958400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1655, + "type": "message", + "date": "2022-10-28T18:00:01", + "date_unixtime": "1666972801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1656, + "type": "message", + "date": "2022-10-28T22:00:00", + "date_unixtime": "1666987200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1657, + "type": "message", + "date": "2022-10-29T02:00:00", + "date_unixtime": "1667001600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1658, + "type": "message", + "date": "2022-10-29T06:00:00", + "date_unixtime": "1667016000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1659, + "type": "message", + "date": "2022-10-29T10:00:00", + "date_unixtime": "1667030400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1660, + "type": "message", + "date": "2022-10-29T14:00:00", + "date_unixtime": "1667044800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1661, + "type": "message", + "date": "2022-10-29T18:00:00", + "date_unixtime": "1667059200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1662, + "type": "message", + "date": "2022-10-29T22:00:00", + "date_unixtime": "1667073600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1663, + "type": "message", + "date": "2022-10-30T02:00:00", + "date_unixtime": "1667088000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1664, + "type": "message", + "date": "2022-10-30T05:00:00", + "date_unixtime": "1667102400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1665, + "type": "message", + "date": "2022-10-30T09:00:01", + "date_unixtime": "1667116801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1666, + "type": "message", + "date": "2022-10-30T13:00:00", + "date_unixtime": "1667131200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1667, + "type": "message", + "date": "2022-10-30T17:00:00", + "date_unixtime": "1667145600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1668, + "type": "message", + "date": "2022-10-30T21:00:00", + "date_unixtime": "1667160000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1669, + "type": "message", + "date": "2022-10-31T01:00:00", + "date_unixtime": "1667174400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1670, + "type": "message", + "date": "2022-10-31T05:00:00", + "date_unixtime": "1667188800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1671, + "type": "message", + "date": "2022-10-31T09:00:00", + "date_unixtime": "1667203200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1672, + "type": "message", + "date": "2022-10-31T13:00:00", + "date_unixtime": "1667217600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1673, + "type": "message", + "date": "2022-10-31T17:00:00", + "date_unixtime": "1667232000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1674, + "type": "message", + "date": "2022-10-31T21:00:00", + "date_unixtime": "1667246400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1675, + "type": "message", + "date": "2022-11-01T01:00:00", + "date_unixtime": "1667260800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1676, + "type": "message", + "date": "2022-11-01T05:00:00", + "date_unixtime": "1667275200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1677, + "type": "message", + "date": "2022-11-01T09:00:00", + "date_unixtime": "1667289600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1678, + "type": "message", + "date": "2022-11-01T13:00:00", + "date_unixtime": "1667304000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1679, + "type": "message", + "date": "2022-11-01T17:00:00", + "date_unixtime": "1667318400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1680, + "type": "message", + "date": "2022-11-01T21:00:00", + "date_unixtime": "1667332800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1681, + "type": "message", + "date": "2022-11-02T01:00:00", + "date_unixtime": "1667347200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1682, + "type": "message", + "date": "2022-11-02T05:00:00", + "date_unixtime": "1667361600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1683, + "type": "message", + "date": "2022-11-02T09:00:00", + "date_unixtime": "1667376000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1684, + "type": "message", + "date": "2022-11-02T13:00:00", + "date_unixtime": "1667390400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1685, + "type": "message", + "date": "2022-11-02T17:00:00", + "date_unixtime": "1667404800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1686, + "type": "message", + "date": "2022-11-02T21:00:00", + "date_unixtime": "1667419200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1687, + "type": "message", + "date": "2022-11-03T01:00:00", + "date_unixtime": "1667433600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1688, + "type": "message", + "date": "2022-11-03T05:00:00", + "date_unixtime": "1667448000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1689, + "type": "message", + "date": "2022-11-03T09:00:00", + "date_unixtime": "1667462400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1690, + "type": "message", + "date": "2022-11-03T13:00:00", + "date_unixtime": "1667476800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1691, + "type": "message", + "date": "2022-11-03T17:00:00", + "date_unixtime": "1667491200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1692, + "type": "message", + "date": "2022-11-03T21:00:00", + "date_unixtime": "1667505600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1693, + "type": "message", + "date": "2022-11-04T01:00:00", + "date_unixtime": "1667520000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1694, + "type": "message", + "date": "2022-11-04T05:00:00", + "date_unixtime": "1667534400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1695, + "type": "message", + "date": "2022-11-04T09:00:00", + "date_unixtime": "1667548800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1696, + "type": "message", + "date": "2022-11-04T13:00:00", + "date_unixtime": "1667563200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1697, + "type": "message", + "date": "2022-11-04T17:00:00", + "date_unixtime": "1667577600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1698, + "type": "message", + "date": "2022-11-04T21:00:00", + "date_unixtime": "1667592000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1699, + "type": "message", + "date": "2022-11-05T01:00:00", + "date_unixtime": "1667606400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1700, + "type": "message", + "date": "2022-11-05T05:00:00", + "date_unixtime": "1667620800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1701, + "type": "message", + "date": "2022-11-05T09:00:00", + "date_unixtime": "1667635200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1702, + "type": "message", + "date": "2022-11-05T13:00:00", + "date_unixtime": "1667649600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1703, + "type": "message", + "date": "2022-11-05T17:00:00", + "date_unixtime": "1667664000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1704, + "type": "message", + "date": "2022-11-05T21:00:00", + "date_unixtime": "1667678400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1705, + "type": "message", + "date": "2022-11-06T01:00:00", + "date_unixtime": "1667692800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1706, + "type": "message", + "date": "2022-11-06T05:00:00", + "date_unixtime": "1667707200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1707, + "type": "message", + "date": "2022-11-06T09:00:00", + "date_unixtime": "1667721600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1708, + "type": "message", + "date": "2022-11-06T13:00:00", + "date_unixtime": "1667736000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1709, + "type": "message", + "date": "2022-11-06T17:00:00", + "date_unixtime": "1667750400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1710, + "type": "message", + "date": "2022-11-06T21:00:00", + "date_unixtime": "1667764800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1711, + "type": "message", + "date": "2022-11-07T01:00:00", + "date_unixtime": "1667779200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1712, + "type": "message", + "date": "2022-11-07T05:00:00", + "date_unixtime": "1667793600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1713, + "type": "message", + "date": "2022-11-07T09:00:00", + "date_unixtime": "1667808000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1714, + "type": "message", + "date": "2022-11-07T13:00:00", + "date_unixtime": "1667822400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1715, + "type": "message", + "date": "2022-11-07T17:00:07", + "date_unixtime": "1667836807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1716, + "type": "message", + "date": "2022-11-07T21:00:00", + "date_unixtime": "1667851200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1717, + "type": "message", + "date": "2022-11-08T01:00:00", + "date_unixtime": "1667865600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1718, + "type": "message", + "date": "2022-11-08T05:00:01", + "date_unixtime": "1667880001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1719, + "type": "message", + "date": "2022-11-08T09:00:00", + "date_unixtime": "1667894400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1720, + "type": "message", + "date": "2022-11-08T13:00:00", + "date_unixtime": "1667908800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1721, + "type": "message", + "date": "2022-11-08T17:00:00", + "date_unixtime": "1667923200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1722, + "type": "message", + "date": "2022-11-08T21:00:00", + "date_unixtime": "1667937600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (74.16916146 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1723, + "type": "message", + "date": "2022-11-09T01:00:03", + "date_unixtime": "1667952003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024243 BTC for 109.61 CZK @ 452,145 CZK\nFees are 0.38499006 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.257399998409230605885217849 CZK)\nThe limits being 0.10 % (82.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.09994028 BTC (50,688.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 452,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -10.85 % (-5,501.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,964.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18350211 BTC (82,969.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.38 CZK over 481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024243 BTC for 109.61 CZK @ 452,145 CZK\nFees are 0.38499006 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.257399998409230605885217849 CZK)\nThe limits being 0.10 % (82.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.09994028 BTC (50,688.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 452,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -10.85 % (-5,501.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,964.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18350211 BTC (82,969.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.38 CZK over 481 transactions" + } + ] + }, + { + "id": 1724, + "type": "message", + "date": "2022-11-09T05:00:04", + "date_unixtime": "1667966404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024645 BTC for 109.62 CZK @ 444,776 CZK\nFees are 0.38499544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.477599996684357841488650546 CZK)\nThe limits being 0.10 % (81.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10018673 BTC (50,798.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 444,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.28 % (-6,238.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,854.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18374856 BTC (81,726.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.39 CZK over 482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024645 BTC for 109.62 CZK @ 444,776 CZK\nFees are 0.38499544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (44.477599996684357841488650546 CZK)\nThe limits being 0.10 % (81.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10018673 BTC (50,798.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 444,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.28 % (-6,238.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,854.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18374856 BTC (81,726.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.39 CZK over 482 transactions" + } + ] + }, + { + "id": 1725, + "type": "message", + "date": "2022-11-09T09:00:04", + "date_unixtime": "1667980804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024658 BTC for 109.61 CZK @ 444,536 CZK\nFees are 0.38499067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.898959998186249174203856137 CZK)\nThe limits being 0.10 % (81.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10043331 BTC (50,908.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 444,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.30 % (-6,262.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,744.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18399514 BTC (81,792.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.40 CZK over 483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024658 BTC for 109.61 CZK @ 444,536 CZK\nFees are 0.38499067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.898959998186249174203856137 CZK)\nThe limits being 0.10 % (81.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10043331 BTC (50,908.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 444,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.30 % (-6,262.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,744.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18399514 BTC (81,792.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.40 CZK over 483 transactions" + } + ] + }, + { + "id": 1726, + "type": "message", + "date": "2022-11-09T13:00:03", + "date_unixtime": "1667995203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024939 BTC for 109.61 CZK @ 439,528 CZK\nFees are 0.38499138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.348079996606767847878669495 CZK)\nThe limits being 0.10 % (80.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10068270 BTC (51,018.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 439,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.26 % (-6,765.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,634.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18424453 BTC (80,980.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.41 CZK over 484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024939 BTC for 109.61 CZK @ 439,528 CZK\nFees are 0.38499138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.348079996606767847878669495 CZK)\nThe limits being 0.10 % (80.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10068270 BTC (51,018.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 439,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.26 % (-6,765.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,634.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18424453 BTC (80,980.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.41 CZK over 484 transactions" + } + ] + }, + { + "id": 1727, + "type": "message", + "date": "2022-11-09T17:00:04", + "date_unixtime": "1668009604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026241 BTC for 109.62 CZK @ 417,729 CZK\nFees are 0.38499973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.418319998749850163352089189 CZK)\nThe limits being 0.10 % (77.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10094511 BTC (51,128.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 417,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.53 % (-8,961.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,524.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18450694 BTC (77,073.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.42 CZK over 485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026241 BTC for 109.62 CZK @ 417,729 CZK\nFees are 0.38499973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.418319998749850163352089189 CZK)\nThe limits being 0.10 % (77.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10094511 BTC (51,128.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 417,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.53 % (-8,961.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,524.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18450694 BTC (77,073.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.42 CZK over 485 transactions" + } + ] + }, + { + "id": 1728, + "type": "message", + "date": "2022-11-09T21:00:04", + "date_unixtime": "1668024004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026295 BTC for 109.62 CZK @ 416,871 CZK\nFees are 0.38499960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.193229998485051322084057767 CZK)\nThe limits being 0.10 % (77.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10120806 BTC (51,238.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 416,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.66 % (-9,048.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,414.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18476989 BTC (77,025.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.43 CZK over 486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026295 BTC for 109.62 CZK @ 416,871 CZK\nFees are 0.38499960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.193229998485051322084057767 CZK)\nThe limits being 0.10 % (77.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10120806 BTC (51,238.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 416,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.66 % (-9,048.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,414.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18476989 BTC (77,025.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.43 CZK over 486 transactions" + } + ] + }, + { + "id": 1729, + "type": "message", + "date": "2022-11-10T01:00:03", + "date_unixtime": "1668038403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026284 BTC for 109.61 CZK @ 417,031 CZK\nFees are 0.38498625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (66.724959995062176614083245546 CZK)\nThe limits being 0.10 % (77.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10147090 BTC (51,348.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 417,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.59 % (-9,032.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,304.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18503273 BTC (77,164.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.44 CZK over 487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026284 BTC for 109.61 CZK @ 417,031 CZK\nFees are 0.38498625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (66.724959995062176614083245546 CZK)\nThe limits being 0.10 % (77.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10147090 BTC (51,348.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 417,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.59 % (-9,032.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,304.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18503273 BTC (77,164.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.44 CZK over 487 transactions" + } + ] + }, + { + "id": 1730, + "type": "message", + "date": "2022-11-10T05:00:04", + "date_unixtime": "1668052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026501 BTC for 109.61 CZK @ 413,624 CZK\nFees are 0.38499351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (66.179839995884747897659501133 CZK)\nThe limits being 0.10 % (76.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10173591 BTC (51,458.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 413,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.22 % (-9,378.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,194.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18529774 BTC (76,643.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.45 CZK over 488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026501 BTC for 109.61 CZK @ 413,624 CZK\nFees are 0.38499351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (66.179839995884747897659501133 CZK)\nThe limits being 0.10 % (76.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10173591 BTC (51,458.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 413,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.22 % (-9,378.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,194.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18529774 BTC (76,643.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.45 CZK over 488 transactions" + } + ] + }, + { + "id": 1731, + "type": "message", + "date": "2022-11-10T09:00:04", + "date_unixtime": "1668067204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024815 BTC for 109.61 CZK @ 441,726 CZK\nFees are 0.38499285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (70.676159997333531712148724678 CZK)\nThe limits being 0.10 % (81.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10198406 BTC (51,568.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 441,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.64 % (-6,519.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,084.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18554589 BTC (81,960.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.46 CZK over 489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024815 BTC for 109.61 CZK @ 441,726 CZK\nFees are 0.38499285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (70.676159997333531712148724678 CZK)\nThe limits being 0.10 % (81.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10198406 BTC (51,568.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 441,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.64 % (-6,519.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,084.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18554589 BTC (81,960.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.46 CZK over 489 transactions" + } + ] + }, + { + "id": 1732, + "type": "message", + "date": "2022-11-10T13:00:03", + "date_unixtime": "1668081603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025509 BTC for 109.61 CZK @ 429,711 CZK\nFees are 0.38499483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (47.268163733960031652906074963 CZK)\nThe limits being 0.10 % (79.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10223915 BTC (51,678.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 429,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.99 % (-7,745.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,974.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18580098 BTC (79,840.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.47 CZK over 490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025509 BTC for 109.61 CZK @ 429,711 CZK\nFees are 0.38499483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (47.268163733960031652906074963 CZK)\nThe limits being 0.10 % (79.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10223915 BTC (51,678.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 429,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.99 % (-7,745.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,974.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18580098 BTC (79,840.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.47 CZK over 490 transactions" + } + ] + }, + { + "id": 1733, + "type": "message", + "date": "2022-11-10T17:00:06", + "date_unixtime": "1668096006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025525 BTC for 109.61 CZK @ 429,433 CZK\nFees are 0.38498746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.826289996764507377947994944 CZK)\nThe limits being 0.10 % (79.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10249440 BTC (51,788.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 429,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.01 % (-7,774.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,864.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18605623 BTC (79,898.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.48 CZK over 491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025525 BTC for 109.61 CZK @ 429,433 CZK\nFees are 0.38498746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.826289996764507377947994944 CZK)\nThe limits being 0.10 % (79.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10249440 BTC (51,788.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 429,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.01 % (-7,774.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,864.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18605623 BTC (79,898.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.48 CZK over 491 transactions" + } + ] + }, + { + "id": 1734, + "type": "message", + "date": "2022-11-10T21:00:03", + "date_unixtime": "1668110403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025435 BTC for 109.62 CZK @ 430,965 CZK\nFees are 0.38499861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (64.644749995812768148123987902 CZK)\nThe limits being 0.10 % (80.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10274875 BTC (51,898.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 430,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.68 % (-7,617.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,754.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18631058 BTC (80,293.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.49 CZK over 492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025435 BTC for 109.62 CZK @ 430,965 CZK\nFees are 0.38499861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (64.644749995812768148123987902 CZK)\nThe limits being 0.10 % (80.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10274875 BTC (51,898.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 430,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.68 % (-7,617.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,754.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18631058 BTC (80,293.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.49 CZK over 492 transactions" + } + ] + }, + { + "id": 1735, + "type": "message", + "date": "2022-11-11T01:00:03", + "date_unixtime": "1668124803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025784 BTC for 109.61 CZK @ 425,123 CZK\nFees are 0.38499077 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (63.768449999930432750035131464 CZK)\nThe limits being 0.10 % (79.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10300659 BTC (52,008.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 425,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.80 % (-8,218.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,644.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18656842 BTC (79,314.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.49 CZK over 493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025784 BTC for 109.61 CZK @ 425,123 CZK\nFees are 0.38499077 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (63.768449999930432750035131464 CZK)\nThe limits being 0.10 % (79.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10300659 BTC (52,008.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 425,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.80 % (-8,218.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,644.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18656842 BTC (79,314.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.49 CZK over 493 transactions" + } + ] + }, + { + "id": 1736, + "type": "message", + "date": "2022-11-11T05:00:04", + "date_unixtime": "1668139204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026734 BTC for 109.62 CZK @ 410,023 CZK\nFees are 0.38499763 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (61.503517536382070250196728597 CZK)\nThe limits being 0.10 % (76.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10327393 BTC (52,118.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 410,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.75 % (-9,774.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,534.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18683576 BTC (76,607.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.50 CZK over 494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026734 BTC for 109.62 CZK @ 410,023 CZK\nFees are 0.38499763 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (61.503517536382070250196728597 CZK)\nThe limits being 0.10 % (76.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10327393 BTC (52,118.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 410,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.75 % (-9,774.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,534.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18683576 BTC (76,607.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.50 CZK over 494 transactions" + } + ] + }, + { + "id": 1737, + "type": "message", + "date": "2022-11-11T09:00:04", + "date_unixtime": "1668153604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025939 BTC for 109.61 CZK @ 422,586 CZK\nFees are 0.38499382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (42.258599996584681937364334508 CZK)\nThe limits being 0.10 % (79.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10353332 BTC (52,228.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 422,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.23 % (-8,477.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,424.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18709515 BTC (79,063.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.51 CZK over 495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025939 BTC for 109.61 CZK @ 422,586 CZK\nFees are 0.38499382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (42.258599996584681937364334508 CZK)\nThe limits being 0.10 % (79.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10353332 BTC (52,228.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 422,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.23 % (-8,477.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,424.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18709515 BTC (79,063.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.51 CZK over 495 transactions" + } + ] + }, + { + "id": 1738, + "type": "message", + "date": "2022-11-11T13:00:03", + "date_unixtime": "1668168003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026251 BTC for 109.61 CZK @ 417,562 CZK\nFees are 0.38499248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (50.107439999011497547619938343 CZK)\nThe limits being 0.10 % (78.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10379583 BTC (52,338.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 417,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.19 % (-8,997.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,314.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18735766 BTC (78,233.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.52 CZK over 496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026251 BTC for 109.61 CZK @ 417,562 CZK\nFees are 0.38499248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (50.107439999011497547619938343 CZK)\nThe limits being 0.10 % (78.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10379583 BTC (52,338.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 417,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.19 % (-8,997.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,314.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18735766 BTC (78,233.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.52 CZK over 496 transactions" + } + ] + }, + { + "id": 1739, + "type": "message", + "date": "2022-11-11T17:00:04", + "date_unixtime": "1668182404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027266 BTC for 109.62 CZK @ 402,023 CZK\nFees are 0.38499736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.242759995995823464057855748 CZK)\nThe limits being 0.10 % (75.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10406849 BTC (52,448.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 402,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.23 % (-10,610.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,204.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18763032 BTC (75,431.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.53 CZK over 497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027266 BTC for 109.62 CZK @ 402,023 CZK\nFees are 0.38499736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.242759995995823464057855748 CZK)\nThe limits being 0.10 % (75.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10406849 BTC (52,448.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 402,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.23 % (-10,610.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,204.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18763032 BTC (75,431.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.53 CZK over 497 transactions" + } + ] + }, + { + "id": 1740, + "type": "message", + "date": "2022-11-11T21:00:05", + "date_unixtime": "1668196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027429 BTC for 109.61 CZK @ 399,625 CZK\nFees are 0.38498876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (59.943749997615803944642836804 CZK)\nThe limits being 0.10 % (75.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10434278 BTC (52,558.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 399,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.66 % (-10,860.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,094.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18790461 BTC (75,091.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.54 CZK over 498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027429 BTC for 109.61 CZK @ 399,625 CZK\nFees are 0.38498876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (59.943749997615803944642836804 CZK)\nThe limits being 0.10 % (75.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10434278 BTC (52,558.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 399,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.66 % (-10,860.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,094.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18790461 BTC (75,091.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.54 CZK over 498 transactions" + } + ] + }, + { + "id": 1741, + "type": "message", + "date": "2022-11-12T01:00:04", + "date_unixtime": "1668211204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027253 BTC for 109.61 CZK @ 402,203 CZK\nFees are 0.38498609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.330449998593152784101277201 CZK)\nThe limits being 0.10 % (75.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10461531 BTC (52,668.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 402,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.11 % (-10,592.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,984.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18817714 BTC (75,685.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.55 CZK over 499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027253 BTC for 109.61 CZK @ 402,203 CZK\nFees are 0.38498609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.330449998593152784101277201 CZK)\nThe limits being 0.10 % (75.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10461531 BTC (52,668.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 402,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.11 % (-10,592.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,984.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18817714 BTC (75,685.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.55 CZK over 499 transactions" + } + ] + }, + { + "id": 1742, + "type": "message", + "date": "2022-11-12T05:00:03", + "date_unixtime": "1668225603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027510 BTC for 109.61 CZK @ 398,447 CZK\nFees are 0.38498745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (7.968939999713833281080739404 CZK)\nThe limits being 0.10 % (75.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10489041 BTC (52,778.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.81 % (-10,985.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,874.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18845224 BTC (75,088.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.56 CZK over 500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027510 BTC for 109.61 CZK @ 398,447 CZK\nFees are 0.38498745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (7.968939999713833281080739404 CZK)\nThe limits being 0.10 % (75.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10489041 BTC (52,778.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.81 % (-10,985.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,874.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18845224 BTC (75,088.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.56 CZK over 500 transactions" + } + ] + }, + { + "id": 1743, + "type": "message", + "date": "2022-11-12T09:00:04", + "date_unixtime": "1668240004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027574 BTC for 109.61 CZK @ 397,529 CZK\nFees are 0.38499404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.925869999717027250926247868 CZK)\nThe limits being 0.10 % (75.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10516615 BTC (52,888.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.95 % (-11,082.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,764.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18872798 BTC (75,024.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.57 CZK over 501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027574 BTC for 109.61 CZK @ 397,529 CZK\nFees are 0.38499404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.925869999717027250926247868 CZK)\nThe limits being 0.10 % (75.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10516615 BTC (52,888.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.95 % (-11,082.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,764.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18872798 BTC (75,024.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.57 CZK over 501 transactions" + } + ] + }, + { + "id": 1744, + "type": "message", + "date": "2022-11-12T13:00:04", + "date_unixtime": "1668254404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027454 BTC for 109.61 CZK @ 399,263 CZK\nFees are 0.38499059 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.977889999556807239352293926 CZK)\nThe limits being 0.10 % (75.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10544069 BTC (52,998.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 399,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.57 % (-10,900.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,654.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18900252 BTC (75,461.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.58 CZK over 502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027454 BTC for 109.61 CZK @ 399,263 CZK\nFees are 0.38499059 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.977889999556807239352293926 CZK)\nThe limits being 0.10 % (75.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10544069 BTC (52,998.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 399,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.57 % (-10,900.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,654.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18900252 BTC (75,461.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.58 CZK over 502 transactions" + } + ] + }, + { + "id": 1745, + "type": "message", + "date": "2022-11-12T17:00:04", + "date_unixtime": "1668268804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027494 BTC for 109.61 CZK @ 398,686 CZK\nFees are 0.38499433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.960579999897789902359998534 CZK)\nThe limits being 0.10 % (75.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10571563 BTC (53,108.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.64 % (-10,961.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,544.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18927746 BTC (75,462.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.58 CZK over 503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027494 BTC for 109.61 CZK @ 398,686 CZK\nFees are 0.38499433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (11.960579999897789902359998534 CZK)\nThe limits being 0.10 % (75.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10571563 BTC (53,108.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.64 % (-10,961.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,544.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18927746 BTC (75,462.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.58 CZK over 503 transactions" + } + ] + }, + { + "id": 1746, + "type": "message", + "date": "2022-11-12T21:00:03", + "date_unixtime": "1668283203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027563 BTC for 109.61 CZK @ 397,683 CZK\nFees are 0.38498954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (7.953659999384297685669723865 CZK)\nThe limits being 0.10 % (75.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10599126 BTC (53,218.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.80 % (-11,067.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,434.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18955309 BTC (75,382.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.59 CZK over 504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027563 BTC for 109.61 CZK @ 397,683 CZK\nFees are 0.38498954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (7.953659999384297685669723865 CZK)\nThe limits being 0.10 % (75.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10599126 BTC (53,218.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.80 % (-11,067.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,434.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18955309 BTC (75,382.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.59 CZK over 504 transactions" + } + ] + }, + { + "id": 1747, + "type": "message", + "date": "2022-11-13T01:00:05", + "date_unixtime": "1668297605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027748 BTC for 109.61 CZK @ 395,037 CZK\nFees are 0.38499482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.454069998554145110823376653 CZK)\nThe limits being 0.10 % (74.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10626874 BTC (53,328.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.28 % (-11,348.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,324.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18983057 BTC (74,990.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.60 CZK over 505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027748 BTC for 109.61 CZK @ 395,037 CZK\nFees are 0.38499482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.454069998554145110823376653 CZK)\nThe limits being 0.10 % (74.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10626874 BTC (53,328.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.28 % (-11,348.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,324.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18983057 BTC (74,990.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.60 CZK over 505 transactions" + } + ] + }, + { + "id": 1748, + "type": "message", + "date": "2022-11-13T05:00:03", + "date_unixtime": "1668312003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027546 BTC for 109.61 CZK @ 397,927 CZK\nFees are 0.38498816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.792700000010852888338864507 CZK)\nThe limits being 0.10 % (75.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10654420 BTC (53,438.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.66 % (-11,041.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,214.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19010603 BTC (75,648.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.61 CZK over 506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027546 BTC for 109.61 CZK @ 397,927 CZK\nFees are 0.38498816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.792700000010852888338864507 CZK)\nThe limits being 0.10 % (75.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10654420 BTC (53,438.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.66 % (-11,041.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,214.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19010603 BTC (75,648.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.61 CZK over 506 transactions" + } + ] + }, + { + "id": 1749, + "type": "message", + "date": "2022-11-13T09:00:03", + "date_unixtime": "1668326403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027782 BTC for 109.62 CZK @ 394,556 CZK\nFees are 0.38499721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (31.564479997784731339670450810 CZK)\nThe limits being 0.10 % (75.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10682202 BTC (53,548.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.29 % (-11,401.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,104.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19038385 BTC (75,117.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.62 CZK over 507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027782 BTC for 109.62 CZK @ 394,556 CZK\nFees are 0.38499721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (31.564479997784731339670450810 CZK)\nThe limits being 0.10 % (75.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10682202 BTC (53,548.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.29 % (-11,401.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,104.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19038385 BTC (75,117.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.62 CZK over 507 transactions" + } + ] + }, + { + "id": 1750, + "type": "message", + "date": "2022-11-13T13:00:04", + "date_unixtime": "1668340804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027943 BTC for 109.62 CZK @ 392,282 CZK\nFees are 0.38499655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (23.536919998414453253572414952 CZK)\nThe limits being 0.10 % (74.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10710145 BTC (53,658.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.70 % (-11,644.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,994.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19066328 BTC (74,793.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.63 CZK over 508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027943 BTC for 109.62 CZK @ 392,282 CZK\nFees are 0.38499655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (23.536919998414453253572414952 CZK)\nThe limits being 0.10 % (74.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10710145 BTC (53,658.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.70 % (-11,644.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,994.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19066328 BTC (74,793.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.63 CZK over 508 transactions" + } + ] + }, + { + "id": 1751, + "type": "message", + "date": "2022-11-13T17:00:04", + "date_unixtime": "1668355204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028102 BTC for 109.61 CZK @ 390,056 CZK\nFees are 0.38499015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (7.8011200000056736870387846510 CZK)\nThe limits being 0.10 % (74.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10738247 BTC (53,768.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.10 % (-11,883.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,884.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19094430 BTC (74,478.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.64 CZK over 509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028102 BTC for 109.61 CZK @ 390,056 CZK\nFees are 0.38499015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (7.8011200000056736870387846510 CZK)\nThe limits being 0.10 % (74.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10738247 BTC (53,768.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.10 % (-11,883.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,884.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19094430 BTC (74,478.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.64 CZK over 509 transactions" + } + ] + }, + { + "id": 1752, + "type": "message", + "date": "2022-11-13T21:00:04", + "date_unixtime": "1668369604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028185 BTC for 109.62 CZK @ 388,917 CZK\nFees are 0.38499970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.670039996786128804638793494 CZK)\nThe limits being 0.10 % (74.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10766432 BTC (53,878.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.28 % (-12,006.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,774.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19122615 BTC (74,371.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.64 CZK over 510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028185 BTC for 109.62 CZK @ 388,917 CZK\nFees are 0.38499970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (46.670039996786128804638793494 CZK)\nThe limits being 0.10 % (74.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10766432 BTC (53,878.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.28 % (-12,006.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,774.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19122615 BTC (74,371.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.64 CZK over 510 transactions" + } + ] + }, + { + "id": 1753, + "type": "message", + "date": "2022-11-14T01:00:05", + "date_unixtime": "1668384005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028476 BTC for 109.62 CZK @ 384,940 CZK\nFees are 0.38499709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 38.63 % (42.343399999846022836353140464 CZK)\nThe limits being 0.10 % (0.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10794908 BTC (53,988.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.03 % (-12,434.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,664.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00028476 BTC (109.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.65 CZK over 511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028476 BTC for 109.62 CZK @ 384,940 CZK\nFees are 0.38499709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 38.63 % (42.343399999846022836353140464 CZK)\nThe limits being 0.10 % (0.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10794908 BTC (53,988.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.03 % (-12,434.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,664.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00028476 BTC (109.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.65 CZK over 511 transactions" + } + ] + }, + { + "id": 1754, + "type": "message", + "date": "2022-11-14T05:00:03", + "date_unixtime": "1668398403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028681 BTC for 109.62 CZK @ 382,187 CZK\nFees are 0.38499547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 19.25 % (42.040569997269241765254265836 CZK)\nThe limits being 0.10 % (0.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10823589 BTC (54,098.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.54 % (-12,732.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,554.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00057157 BTC (218.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.66 CZK over 512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028681 BTC for 109.62 CZK @ 382,187 CZK\nFees are 0.38499547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 19.25 % (42.040569997269241765254265836 CZK)\nThe limits being 0.10 % (0.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10823589 BTC (54,098.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.54 % (-12,732.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,554.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00057157 BTC (218.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.66 CZK over 512 transactions" + } + ] + }, + { + "id": 1755, + "type": "message", + "date": "2022-11-14T09:00:04", + "date_unixtime": "1668412804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027626 BTC for 109.61 CZK @ 396,779 CZK\nFees are 0.38499236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.26 % (27.774529999270272860596397369 CZK)\nThe limits being 0.10 % (0.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10851215 BTC (54,208.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.57 % (-11,153.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,444.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00084783 BTC (336.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.67 CZK over 513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027626 BTC for 109.61 CZK @ 396,779 CZK\nFees are 0.38499236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.26 % (27.774529999270272860596397369 CZK)\nThe limits being 0.10 % (0.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10851215 BTC (54,208.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.57 % (-11,153.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,444.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00084783 BTC (336.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.67 CZK over 513 transactions" + } + ] + }, + { + "id": 1756, + "type": "message", + "date": "2022-11-14T13:00:04", + "date_unixtime": "1668427204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027581 BTC for 109.62 CZK @ 397,431 CZK\nFees are 0.38499684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.90 % (39.7430999984156825246006838 CZK)\nThe limits being 0.10 % (0.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10878796 BTC (54,318.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.40 % (-11,082.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,334.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00112364 BTC (446.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.68 CZK over 514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027581 BTC for 109.62 CZK @ 397,431 CZK\nFees are 0.38499684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.90 % (39.7430999984156825246006838 CZK)\nThe limits being 0.10 % (0.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10878796 BTC (54,318.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.40 % (-11,082.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,334.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00112364 BTC (446.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.68 CZK over 514 transactions" + } + ] + }, + { + "id": 1757, + "type": "message", + "date": "2022-11-14T17:00:05", + "date_unixtime": "1668441605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027999 BTC for 109.62 CZK @ 391,500 CZK\nFees are 0.38499909 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.12 % (39.149999997330675540355354352 CZK)\nThe limits being 0.10 % (0.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10906795 BTC (54,428.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.55 % (-11,728.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,224.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00140363 BTC (549.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.69 CZK over 515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027999 BTC for 109.62 CZK @ 391,500 CZK\nFees are 0.38499909 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.12 % (39.149999997330675540355354352 CZK)\nThe limits being 0.10 % (0.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10906795 BTC (54,428.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.55 % (-11,728.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,224.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00140363 BTC (549.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.69 CZK over 515 transactions" + } + ] + }, + { + "id": 1758, + "type": "message", + "date": "2022-11-14T21:00:04", + "date_unixtime": "1668456004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028637 BTC for 109.61 CZK @ 382,772 CZK\nFees are 0.38499324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.10 % (45.932639999273416388312589422 CZK)\nThe limits being 0.10 % (0.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10935432 BTC (54,538.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.25 % (-12,680.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,114.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00169000 BTC (646.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.70 CZK over 516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028637 BTC for 109.61 CZK @ 382,772 CZK\nFees are 0.38499324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.10 % (45.932639999273416388312589422 CZK)\nThe limits being 0.10 % (0.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10935432 BTC (54,538.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.25 % (-12,680.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,114.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00169000 BTC (646.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.70 CZK over 516 transactions" + } + ] + }, + { + "id": 1759, + "type": "message", + "date": "2022-11-15T01:00:37", + "date_unixtime": "1668470437", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027914 BTC for 109.62 CZK @ 392,692 CZK\nFees are 0.38499895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.63 % (66.757639995703223856575068866 CZK)\nThe limits being 0.10 % (0.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10963346 BTC (54,648.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.22 % (-11,596.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,004.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00196914 BTC (773.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.70 CZK over 517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027914 BTC for 109.62 CZK @ 392,692 CZK\nFees are 0.38499895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 8.63 % (66.757639995703223856575068866 CZK)\nThe limits being 0.10 % (0.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10963346 BTC (54,648.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.22 % (-11,596.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,004.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00196914 BTC (773.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.70 CZK over 517 transactions" + } + ] + }, + { + "id": 1760, + "type": "message", + "date": "2022-11-15T05:00:04", + "date_unixtime": "1668484804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027545 BTC for 109.61 CZK @ 397,947 CZK\nFees are 0.38499353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.13 % (63.671519997670162056689768782 CZK)\nThe limits being 0.10 % (0.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.10990891 BTC (54,758.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.13 % (-11,020.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,894.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00224459 BTC (893.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.71 CZK over 518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027545 BTC for 109.61 CZK @ 397,947 CZK\nFees are 0.38499353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 7.13 % (63.671519997670162056689768782 CZK)\nThe limits being 0.10 % (0.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.10990891 BTC (54,758.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.13 % (-11,020.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,894.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00224459 BTC (893.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.71 CZK over 518 transactions" + } + ] + }, + { + "id": 1761, + "type": "message", + "date": "2022-11-15T09:00:11", + "date_unixtime": "1668499211", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027735 BTC for 109.61 CZK @ 395,218 CZK\nFees are 0.38499076 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.34 % (63.234879998246627160086623088 CZK)\nThe limits being 0.10 % (1.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11018626 BTC (54,868.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.63 % (-11,321.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,784.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00252194 BTC (996.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.72 CZK over 519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027735 BTC for 109.61 CZK @ 395,218 CZK\nFees are 0.38499076 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 6.34 % (63.234879998246627160086623088 CZK)\nThe limits being 0.10 % (1.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11018626 BTC (54,868.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.63 % (-11,321.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,784.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00252194 BTC (996.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.72 CZK over 519 transactions" + } + ] + }, + { + "id": 1762, + "type": "message", + "date": "2022-11-15T13:00:04", + "date_unixtime": "1668513604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027970 BTC for 109.62 CZK @ 391,903 CZK\nFees are 0.38499623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.71 % (62.704479998945414324800630755 CZK)\nThe limits being 0.10 % (1.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11046596 BTC (54,978.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.26 % (-11,686.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,674.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00280164 BTC (1,097.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.73 CZK over 520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027970 BTC for 109.62 CZK @ 391,903 CZK\nFees are 0.38499623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.71 % (62.704479998945414324800630755 CZK)\nThe limits being 0.10 % (1.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11046596 BTC (54,978.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.26 % (-11,686.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,674.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00280164 BTC (1,097.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.73 CZK over 520 transactions" + } + ] + }, + { + "id": 1763, + "type": "message", + "date": "2022-11-15T17:00:05", + "date_unixtime": "1668528005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027525 BTC for 109.61 CZK @ 398,234 CZK\nFees are 0.38499145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.85 % (71.682119993646216444080595303 CZK)\nThe limits being 0.10 % (1.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11074121 BTC (55,088.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.95 % (-10,987.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,564.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00307689 BTC (1,225.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.74 CZK over 521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027525 BTC for 109.61 CZK @ 398,234 CZK\nFees are 0.38499145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.85 % (71.682119993646216444080595303 CZK)\nThe limits being 0.10 % (1.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11074121 BTC (55,088.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.95 % (-10,987.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,564.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00307689 BTC (1,225.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.74 CZK over 521 transactions" + } + ] + }, + { + "id": 1764, + "type": "message", + "date": "2022-11-15T21:00:04", + "date_unixtime": "1668542404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027620 BTC for 109.61 CZK @ 396,859 CZK\nFees are 0.38498635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.37 % (71.434619996558028074801193650 CZK)\nThe limits being 0.10 % (1.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11101741 BTC (55,198.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.18 % (-11,140.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,454.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00335309 BTC (1,330.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.74 CZK over 522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027620 BTC for 109.61 CZK @ 396,859 CZK\nFees are 0.38498635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 5.37 % (71.434619996558028074801193650 CZK)\nThe limits being 0.10 % (1.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11101741 BTC (55,198.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.18 % (-11,140.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,454.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00335309 BTC (1,330.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.74 CZK over 522 transactions" + } + ] + }, + { + "id": 1765, + "type": "message", + "date": "2022-11-16T01:00:03", + "date_unixtime": "1668556803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027577 BTC for 109.62 CZK @ 397,490 CZK\nFees are 0.38499815 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.96 % (71.548199999642257284983212924 CZK)\nThe limits being 0.10 % (1.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11129318 BTC (55,308.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.02 % (-11,070.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,344.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00362886 BTC (1,442.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.75 CZK over 523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027577 BTC for 109.62 CZK @ 397,490 CZK\nFees are 0.38499815 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.96 % (71.548199999642257284983212924 CZK)\nThe limits being 0.10 % (1.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11129318 BTC (55,308.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.02 % (-11,070.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,344.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00362886 BTC (1,442.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.75 CZK over 523 transactions" + } + ] + }, + { + "id": 1766, + "type": "message", + "date": "2022-11-16T05:00:03", + "date_unixtime": "1668571203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027472 BTC for 109.62 CZK @ 399,008 CZK\nFees are 0.38499696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.84 % (59.851199998824730798060022307 CZK)\nThe limits being 0.10 % (1.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11156790 BTC (55,418.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 399,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.67 % (-10,902.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,234.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00390358 BTC (1,557.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.76 CZK over 524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027472 BTC for 109.62 CZK @ 399,008 CZK\nFees are 0.38499696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.84 % (59.851199998824730798060022307 CZK)\nThe limits being 0.10 % (1.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11156790 BTC (55,418.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 399,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.67 % (-10,902.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,234.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00390358 BTC (1,557.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.76 CZK over 524 transactions" + } + ] + }, + { + "id": 1767, + "type": "message", + "date": "2022-11-16T09:00:04", + "date_unixtime": "1668585604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027730 BTC for 109.61 CZK @ 395,290 CZK\nFees are 0.38499148 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.87 % (47.434799995903267521482240936 CZK)\nThe limits being 0.10 % (1.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11184520 BTC (55,528.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.38 % (-11,317.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,124.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00418088 BTC (1,652.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.77 CZK over 525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027730 BTC for 109.61 CZK @ 395,290 CZK\nFees are 0.38499148 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.87 % (47.434799995903267521482240936 CZK)\nThe limits being 0.10 % (1.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11184520 BTC (55,528.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.38 % (-11,317.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,124.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00418088 BTC (1,652.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.77 CZK over 525 transactions" + } + ] + }, + { + "id": 1768, + "type": "message", + "date": "2022-11-16T13:00:03", + "date_unixtime": "1668600003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027988 BTC for 109.61 CZK @ 391,642 CZK\nFees are 0.38498743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.24 % (39.164199999871822068522640389 CZK)\nThe limits being 0.10 % (1.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11212508 BTC (55,638.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.07 % (-11,725.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,014.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00446076 BTC (1,747.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.78 CZK over 526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027988 BTC for 109.61 CZK @ 391,642 CZK\nFees are 0.38498743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.24 % (39.164199999871822068522640389 CZK)\nThe limits being 0.10 % (1.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11212508 BTC (55,638.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.07 % (-11,725.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,014.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00446076 BTC (1,747.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.78 CZK over 526 transactions" + } + ] + }, + { + "id": 1769, + "type": "message", + "date": "2022-11-16T17:00:04", + "date_unixtime": "1668614404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028388 BTC for 109.61 CZK @ 386,128 CZK\nFees are 0.38499183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.00 % (73.364319994504228858288648602 CZK)\nThe limits being 0.10 % (1.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11240896 BTC (55,748.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.14 % (-12,344.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,904.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00474464 BTC (1,832.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.78 CZK over 527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028388 BTC for 109.61 CZK @ 386,128 CZK\nFees are 0.38499183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 4.00 % (73.364319994504228858288648602 CZK)\nThe limits being 0.10 % (1.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11240896 BTC (55,748.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.14 % (-12,344.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,904.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00474464 BTC (1,832.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.78 CZK over 527 transactions" + } + ] + }, + { + "id": 1770, + "type": "message", + "date": "2022-11-16T21:00:04", + "date_unixtime": "1668628804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028119 BTC for 109.62 CZK @ 389,826 CZK\nFees are 0.38499589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.58 % (70.168679996625488375238037826 CZK)\nThe limits being 0.10 % (1.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11269015 BTC (55,858.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.36 % (-11,929.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,794.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00502583 BTC (1,959.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.79 CZK over 528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028119 BTC for 109.62 CZK @ 389,826 CZK\nFees are 0.38499589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.58 % (70.168679996625488375238037826 CZK)\nThe limits being 0.10 % (1.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11269015 BTC (55,858.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.36 % (-11,929.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,794.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00502583 BTC (1,959.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.79 CZK over 528 transactions" + } + ] + }, + { + "id": 1771, + "type": "message", + "date": "2022-11-17T01:00:03", + "date_unixtime": "1668643203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027931 BTC for 109.61 CZK @ 392,446 CZK\nFees are 0.38499210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.96 % (82.41365999781973932238204557 CZK)\nThe limits being 0.10 % (2.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11296946 BTC (55,968.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.79 % (-11,634.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,684.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00530514 BTC (2,081.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.80 CZK over 529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027931 BTC for 109.61 CZK @ 392,446 CZK\nFees are 0.38499210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.96 % (82.41365999781973932238204557 CZK)\nThe limits being 0.10 % (2.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11296946 BTC (55,968.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.79 % (-11,634.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,684.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00530514 BTC (2,081.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.80 CZK over 529 transactions" + } + ] + }, + { + "id": 1772, + "type": "message", + "date": "2022-11-17T05:00:03", + "date_unixtime": "1668657603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028098 BTC for 109.62 CZK @ 390,120 CZK\nFees are 0.38499851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.76 % (81.92519999880835610490339120 CZK)\nThe limits being 0.10 % (2.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11325044 BTC (56,078.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.22 % (-11,897.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,574.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00558612 BTC (2,179.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.81 CZK over 530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028098 BTC for 109.62 CZK @ 390,120 CZK\nFees are 0.38499851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.76 % (81.92519999880835610490339120 CZK)\nThe limits being 0.10 % (2.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11325044 BTC (56,078.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.22 % (-11,897.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,574.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00558612 BTC (2,179.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.81 CZK over 530 transactions" + } + ] + }, + { + "id": 1773, + "type": "message", + "date": "2022-11-17T09:00:04", + "date_unixtime": "1668672004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028020 BTC for 109.61 CZK @ 391,198 CZK\nFees are 0.38499065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.70 % (39.119799996941468600085283237 CZK)\nThe limits being 0.10 % (2.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11353064 BTC (56,188.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.96 % (-11,775.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,464.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00586632 BTC (2,294.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.82 CZK over 531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028020 BTC for 109.61 CZK @ 391,198 CZK\nFees are 0.38499065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.70 % (39.119799996941468600085283237 CZK)\nThe limits being 0.10 % (2.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11353064 BTC (56,188.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.96 % (-11,775.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,464.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00586632 BTC (2,294.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.82 CZK over 531 transactions" + } + ] + }, + { + "id": 1774, + "type": "message", + "date": "2022-11-17T13:00:05", + "date_unixtime": "1668686405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027982 BTC for 109.62 CZK @ 391,737 CZK\nFees are 0.38499826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.12 % (50.925809997365734830530424624 CZK)\nThe limits being 0.10 % (2.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11381046 BTC (56,298.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.81 % (-11,714.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,354.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00614614 BTC (2,407.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.82 CZK over 532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027982 BTC for 109.62 CZK @ 391,737 CZK\nFees are 0.38499826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.12 % (50.925809997365734830530424624 CZK)\nThe limits being 0.10 % (2.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11381046 BTC (56,298.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.81 % (-11,714.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,354.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00614614 BTC (2,407.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.82 CZK over 532 transactions" + } + ] + }, + { + "id": 1775, + "type": "message", + "date": "2022-11-17T17:00:04", + "date_unixtime": "1668700804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027989 BTC for 109.62 CZK @ 391,638 CZK\nFees are 0.38499725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.33 % (58.745699994995898719767177378 CZK)\nThe limits being 0.10 % (2.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11409035 BTC (56,408.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.79 % (-11,726.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,244.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00642603 BTC (2,516.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.83 CZK over 533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027989 BTC for 109.62 CZK @ 391,638 CZK\nFees are 0.38499725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 2.33 % (58.745699994995898719767177378 CZK)\nThe limits being 0.10 % (2.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11409035 BTC (56,408.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.79 % (-11,726.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,244.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00642603 BTC (2,516.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.83 CZK over 533 transactions" + } + ] + }, + { + "id": 1776, + "type": "message", + "date": "2022-11-17T21:00:06", + "date_unixtime": "1668715206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027927 BTC for 109.61 CZK @ 392,497 CZK\nFees are 0.38498698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.13 % (82.42436999987635926529142844 CZK)\nThe limits being 0.10 % (2.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11436962 BTC (56,518.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.58 % (-11,628.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,134.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00670530 BTC (2,631.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.84 CZK over 534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027927 BTC for 109.61 CZK @ 392,497 CZK\nFees are 0.38498698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.13 % (82.42436999987635926529142844 CZK)\nThe limits being 0.10 % (2.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11436962 BTC (56,518.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.58 % (-11,628.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,134.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00670530 BTC (2,631.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.84 CZK over 534 transactions" + } + ] + }, + { + "id": 1777, + "type": "message", + "date": "2022-11-18T01:00:05", + "date_unixtime": "1668729605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027810 BTC for 109.62 CZK @ 394,160 CZK\nFees are 0.38499843 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.58 % (98.53999999462506900067670381 CZK)\nThe limits being 0.10 % (2.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11464772 BTC (56,628.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.20 % (-11,439.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,024.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00698340 BTC (2,752.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.85 CZK over 535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027810 BTC for 109.62 CZK @ 394,160 CZK\nFees are 0.38499843 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.58 % (98.53999999462506900067670381 CZK)\nThe limits being 0.10 % (2.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11464772 BTC (56,628.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.20 % (-11,439.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,024.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00698340 BTC (2,752.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.85 CZK over 535 transactions" + } + ] + }, + { + "id": 1778, + "type": "message", + "date": "2022-11-18T05:00:04", + "date_unixtime": "1668744004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027585 BTC for 109.61 CZK @ 397,370 CZK\nFees are 0.38499358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.44 % (99.34249999932265347520762704 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11492357 BTC (56,738.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.51 % (-11,071.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,914.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00725925 BTC (2,884.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.86 CZK over 536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027585 BTC for 109.61 CZK @ 397,370 CZK\nFees are 0.38499358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.44 % (99.34249999932265347520762704 CZK)\nThe limits being 0.10 % (2.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11492357 BTC (56,738.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.51 % (-11,071.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,914.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00725925 BTC (2,884.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.86 CZK over 536 transactions" + } + ] + }, + { + "id": 1779, + "type": "message", + "date": "2022-11-18T09:00:03", + "date_unixtime": "1668758403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027756 BTC for 109.62 CZK @ 394,926 CZK\nFees are 0.38499760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.45 % (102.68075999817040416188533963 CZK)\nThe limits being 0.10 % (2.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11520113 BTC (56,848.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.97 % (-11,352.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,804.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00753681 BTC (2,976.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.86 CZK over 537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027756 BTC for 109.62 CZK @ 394,926 CZK\nFees are 0.38499760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.45 % (102.68075999817040416188533963 CZK)\nThe limits being 0.10 % (2.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11520113 BTC (56,848.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.97 % (-11,352.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,804.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00753681 BTC (2,976.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.86 CZK over 537 transactions" + } + ] + }, + { + "id": 1780, + "type": "message", + "date": "2022-11-18T13:00:06", + "date_unixtime": "1668772806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027838 BTC for 109.61 CZK @ 393,753 CZK\nFees are 0.38498812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.58 % (110.25083999950886746591685190 CZK)\nThe limits being 0.10 % (3.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11547951 BTC (56,958.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.17 % (-11,488.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,694.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00781519 BTC (3,077.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.87 CZK over 538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027838 BTC for 109.61 CZK @ 393,753 CZK\nFees are 0.38498812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.58 % (110.25083999950886746591685190 CZK)\nThe limits being 0.10 % (3.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11547951 BTC (56,958.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.17 % (-11,488.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,694.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00781519 BTC (3,077.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.87 CZK over 538 transactions" + } + ] + }, + { + "id": 1781, + "type": "message", + "date": "2022-11-18T17:00:04", + "date_unixtime": "1668787204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027857 BTC for 109.62 CZK @ 393,494 CZK\nFees are 0.38499747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.21 % (102.30843999764689044066054554 CZK)\nThe limits being 0.10 % (3.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11575808 BTC (57,068.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.18 % (-11,518.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,584.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00809376 BTC (3,184.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.88 CZK over 539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027857 BTC for 109.62 CZK @ 393,494 CZK\nFees are 0.38499747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.21 % (102.30843999764689044066054554 CZK)\nThe limits being 0.10 % (3.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11575808 BTC (57,068.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.18 % (-11,518.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,584.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00809376 BTC (3,184.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.88 CZK over 539 transactions" + } + ] + }, + { + "id": 1782, + "type": "message", + "date": "2022-11-18T21:00:04", + "date_unixtime": "1668801604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027925 BTC for 109.61 CZK @ 392,532 CZK\nFees are 0.38499374 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.46 % (113.83427999637794130569863133 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11603733 BTC (57,178.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.34 % (-11,630.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,474.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00837301 BTC (3,286.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.89 CZK over 540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027925 BTC for 109.61 CZK @ 392,532 CZK\nFees are 0.38499374 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.46 % (113.83427999637794130569863133 CZK)\nThe limits being 0.10 % (3.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11603733 BTC (57,178.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.34 % (-11,630.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,474.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00837301 BTC (3,286.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.89 CZK over 540 transactions" + } + ] + }, + { + "id": 1783, + "type": "message", + "date": "2022-11-19T01:00:04", + "date_unixtime": "1668816004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027845 BTC for 109.62 CZK @ 393,666 CZK\nFees are 0.38499984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.12 % (106.28981999811577059748592263 CZK)\nThe limits being 0.10 % (3.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11631578 BTC (57,288.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.07 % (-11,499.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,364.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00865146 BTC (3,405.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.89 CZK over 541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027845 BTC for 109.62 CZK @ 393,666 CZK\nFees are 0.38499984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 3.12 % (106.28981999811577059748592263 CZK)\nThe limits being 0.10 % (3.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11631578 BTC (57,288.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.07 % (-11,499.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,364.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00865146 BTC (3,405.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.89 CZK over 541 transactions" + } + ] + }, + { + "id": 1784, + "type": "message", + "date": "2022-11-19T05:00:03", + "date_unixtime": "1668830403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027878 BTC for 109.61 CZK @ 393,188 CZK\nFees are 0.38498809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.34 % (47.182559996894433583183443642 CZK)\nThe limits being 0.10 % (3.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11659456 BTC (57,398.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.13 % (-11,555.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,254.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00893024 BTC (3,511.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.90 CZK over 542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027878 BTC for 109.61 CZK @ 393,188 CZK\nFees are 0.38498809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.34 % (47.182559996894433583183443642 CZK)\nThe limits being 0.10 % (3.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11659456 BTC (57,398.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.13 % (-11,555.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,254.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00893024 BTC (3,511.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.90 CZK over 542 transactions" + } + ] + }, + { + "id": 1785, + "type": "message", + "date": "2022-11-19T09:00:36", + "date_unixtime": "1668844836", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027916 BTC for 109.62 CZK @ 392,662 CZK\nFees are 0.38499712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.09 % (39.266199998672078588959275863 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11687372 BTC (57,508.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.20 % (-11,616.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,144.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00920940 BTC (3,616.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.91 CZK over 543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027916 BTC for 109.62 CZK @ 392,662 CZK\nFees are 0.38499712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.09 % (39.266199998672078588959275863 CZK)\nThe limits being 0.10 % (3.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11687372 BTC (57,508.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.20 % (-11,616.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,144.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00920940 BTC (3,616.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.91 CZK over 543 transactions" + } + ] + }, + { + "id": 1786, + "type": "message", + "date": "2022-11-19T13:00:07", + "date_unixtime": "1668859207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027838 BTC for 109.61 CZK @ 393,754 CZK\nFees are 0.38498910 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.37 % (51.188019997756970511249995657 CZK)\nThe limits being 0.10 % (3.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11715210 BTC (57,618.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.94 % (-11,489.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,034.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00948778 BTC (3,735.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.92 CZK over 544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027838 BTC for 109.61 CZK @ 393,754 CZK\nFees are 0.38498910 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.37 % (51.188019997756970511249995657 CZK)\nThe limits being 0.10 % (3.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11715210 BTC (57,618.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.94 % (-11,489.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,034.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00948778 BTC (3,735.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.92 CZK over 544 transactions" + } + ] + }, + { + "id": 1787, + "type": "message", + "date": "2022-11-19T17:00:04", + "date_unixtime": "1668873604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027814 BTC for 109.62 CZK @ 394,104 CZK\nFees are 0.38499910 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.23 % (47.292479998727399381520398747 CZK)\nThe limits being 0.10 % (3.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11743024 BTC (57,728.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.83 % (-11,448.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,924.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00976592 BTC (3,848.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.92 CZK over 545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027814 BTC for 109.62 CZK @ 394,104 CZK\nFees are 0.38499910 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.23 % (47.292479998727399381520398747 CZK)\nThe limits being 0.10 % (3.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11743024 BTC (57,728.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.83 % (-11,448.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,924.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00976592 BTC (3,848.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.92 CZK over 545 transactions" + } + ] + }, + { + "id": 1788, + "type": "message", + "date": "2022-11-19T21:00:03", + "date_unixtime": "1668888003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027955 BTC for 109.61 CZK @ 392,104 CZK\nFees are 0.38498711 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (39.210399997789885285243375961 CZK)\nThe limits being 0.10 % (3.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11770979 BTC (57,838.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.20 % (-11,684.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,814.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01004547 BTC (3,938.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.93 CZK over 546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027955 BTC for 109.61 CZK @ 392,104 CZK\nFees are 0.38498711 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.00 % (39.210399997789885285243375961 CZK)\nThe limits being 0.10 % (3.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11770979 BTC (57,838.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.20 % (-11,684.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,814.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01004547 BTC (3,938.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.93 CZK over 546 transactions" + } + ] + }, + { + "id": 1789, + "type": "message", + "date": "2022-11-20T01:00:04", + "date_unixtime": "1668902404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027791 BTC for 109.62 CZK @ 394,429 CZK\nFees are 0.38499796 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (39.442899999331260024264324619 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11798770 BTC (57,948.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.69 % (-11,410.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,704.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01032338 BTC (4,071.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.94 CZK over 547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027791 BTC for 109.62 CZK @ 394,429 CZK\nFees are 0.38499796 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (39.442899999331260024264324619 CZK)\nThe limits being 0.10 % (4.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11798770 BTC (57,948.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.69 % (-11,410.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,704.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01032338 BTC (4,071.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.94 CZK over 547 transactions" + } + ] + }, + { + "id": 1790, + "type": "message", + "date": "2022-11-20T05:00:03", + "date_unixtime": "1668916803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027825 BTC for 109.61 CZK @ 393,936 CZK\nFees are 0.38498718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (27.575519999498610210176332521 CZK)\nThe limits being 0.10 % (4.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11826595 BTC (58,058.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.75 % (-11,469.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,594.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01060163 BTC (4,176.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.95 CZK over 548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027825 BTC for 109.61 CZK @ 393,936 CZK\nFees are 0.38498718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (27.575519999498610210176332521 CZK)\nThe limits being 0.10 % (4.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11826595 BTC (58,058.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.75 % (-11,469.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,594.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01060163 BTC (4,176.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.95 CZK over 548 transactions" + } + ] + }, + { + "id": 1791, + "type": "message", + "date": "2022-11-20T09:00:03", + "date_unixtime": "1668931203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027776 BTC for 109.61 CZK @ 394,634 CZK\nFees are 0.38499016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (7.8926799993226472323825137364 CZK)\nThe limits being 0.10 % (4.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11854371 BTC (58,168.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.58 % (-11,387.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,484.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01087939 BTC (4,293.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.95 CZK over 549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027776 BTC for 109.61 CZK @ 394,634 CZK\nFees are 0.38499016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (7.8926799993226472323825137364 CZK)\nThe limits being 0.10 % (4.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11854371 BTC (58,168.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.58 % (-11,387.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,484.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01087939 BTC (4,293.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.95 CZK over 549 transactions" + } + ] + }, + { + "id": 1792, + "type": "message", + "date": "2022-11-20T13:00:03", + "date_unixtime": "1668945603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028071 BTC for 109.61 CZK @ 390,483 CZK\nFees are 0.38498644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (11.714489999972842725996044943 CZK)\nThe limits being 0.10 % (4.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11882442 BTC (58,278.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.38 % (-11,879.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,374.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01116010 BTC (4,357.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.96 CZK over 550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028071 BTC for 109.61 CZK @ 390,483 CZK\nFees are 0.38498644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (11.714489999972842725996044943 CZK)\nThe limits being 0.10 % (4.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11882442 BTC (58,278.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.38 % (-11,879.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,374.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01116010 BTC (4,357.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.96 CZK over 550 transactions" + } + ] + }, + { + "id": 1793, + "type": "message", + "date": "2022-11-20T17:00:03", + "date_unixtime": "1668960003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027978 BTC for 109.62 CZK @ 391,792 CZK\nFees are 0.38499727 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (70.522559999897421003754711820 CZK)\nThe limits being 0.10 % (4.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11910420 BTC (58,388.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.08 % (-11,724.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,264.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01143988 BTC (4,482.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.97 CZK over 551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027978 BTC for 109.62 CZK @ 391,792 CZK\nFees are 0.38499727 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.57 % (70.522559999897421003754711820 CZK)\nThe limits being 0.10 % (4.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11910420 BTC (58,388.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.08 % (-11,724.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,264.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01143988 BTC (4,482.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.97 CZK over 551 transactions" + } + ] + }, + { + "id": 1794, + "type": "message", + "date": "2022-11-20T21:00:04", + "date_unixtime": "1668974404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028001 BTC for 109.61 CZK @ 391,464 CZK\nFees are 0.38499119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (70.463519999205665780994689011 CZK)\nThe limits being 0.10 % (4.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11938421 BTC (58,498.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.11 % (-11,764.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,154.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01171989 BTC (4,587.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.98 CZK over 552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028001 BTC for 109.61 CZK @ 391,464 CZK\nFees are 0.38499119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.54 % (70.463519999205665780994689011 CZK)\nThe limits being 0.10 % (4.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11938421 BTC (58,498.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.11 % (-11,764.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,154.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01171989 BTC (4,587.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.98 CZK over 552 transactions" + } + ] + }, + { + "id": 1795, + "type": "message", + "date": "2022-11-21T01:00:04", + "date_unixtime": "1668988804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028500 BTC for 109.62 CZK @ 384,615 CZK\nFees are 0.38499625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (38.461499999125866484846895516 CZK)\nThe limits being 0.10 % (4.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11966921 BTC (58,608.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,755 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.47 % (-12,582.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,044.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01200489 BTC (4,617.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.98 CZK over 553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028500 BTC for 109.62 CZK @ 384,615 CZK\nFees are 0.38499625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (38.461499999125866484846895516 CZK)\nThe limits being 0.10 % (4.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11966921 BTC (58,608.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,755 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.47 % (-12,582.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,044.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01200489 BTC (4,617.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.98 CZK over 553 transactions" + } + ] + }, + { + "id": 1796, + "type": "message", + "date": "2022-11-21T05:00:03", + "date_unixtime": "1669003203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028823 BTC for 109.62 CZK @ 380,307 CZK\nFees are 0.38499840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.81 % (38.030699998916120539220178288 CZK)\nThe limits being 0.10 % (4.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.11995744 BTC (58,718.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.31 % (-13,097.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,934.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01229312 BTC (4,675.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.99 CZK over 554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028823 BTC for 109.62 CZK @ 380,307 CZK\nFees are 0.38499840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.81 % (38.030699998916120539220178288 CZK)\nThe limits being 0.10 % (4.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.11995744 BTC (58,718.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.31 % (-13,097.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,934.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01229312 BTC (4,675.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.99 CZK over 554 transactions" + } + ] + }, + { + "id": 1797, + "type": "message", + "date": "2022-11-21T09:00:03", + "date_unixtime": "1669017603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028865 BTC for 109.61 CZK @ 379,743 CZK\nFees are 0.38498762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (26.582009997746498031184980405 CZK)\nThe limits being 0.10 % (4.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12024609 BTC (58,828.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.38 % (-13,166.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,824.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01258177 BTC (4,777.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.00 CZK over 555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028865 BTC for 109.61 CZK @ 379,743 CZK\nFees are 0.38498762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.56 % (26.582009997746498031184980405 CZK)\nThe limits being 0.10 % (4.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12024609 BTC (58,828.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.38 % (-13,166.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,824.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01258177 BTC (4,777.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.00 CZK over 555 transactions" + } + ] + }, + { + "id": 1798, + "type": "message", + "date": "2022-11-21T13:00:04", + "date_unixtime": "1669032004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028633 BTC for 109.61 CZK @ 382,827 CZK\nFees are 0.38499477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (49.767509999011422860069385553 CZK)\nThe limits being 0.10 % (4.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12053242 BTC (58,938.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.71 % (-12,795.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,714.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01286810 BTC (4,926.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.00 CZK over 556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028633 BTC for 109.61 CZK @ 382,827 CZK\nFees are 0.38499477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (49.767509999011422860069385553 CZK)\nThe limits being 0.10 % (4.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12053242 BTC (58,938.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.71 % (-12,795.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,714.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01286810 BTC (4,926.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.00 CZK over 556 transactions" + } + ] + }, + { + "id": 1799, + "type": "message", + "date": "2022-11-21T17:00:04", + "date_unixtime": "1669046404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028525 BTC for 109.61 CZK @ 384,270 CZK\nFees are 0.38498832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (57.64049999934497444745319515 CZK)\nThe limits being 0.10 % (5.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12081767 BTC (59,048.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.38 % (-12,622.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,604.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01315335 BTC (5,054.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.01 CZK over 557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028525 BTC for 109.61 CZK @ 384,270 CZK\nFees are 0.38498832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (57.64049999934497444745319515 CZK)\nThe limits being 0.10 % (5.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12081767 BTC (59,048.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.38 % (-12,622.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,604.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01315335 BTC (5,054.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.01 CZK over 557 transactions" + } + ] + }, + { + "id": 1800, + "type": "message", + "date": "2022-11-21T21:00:03", + "date_unixtime": "1669060803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029216 BTC for 109.61 CZK @ 375,183 CZK\nFees are 0.38498989 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.34 % (67.532939994793687591785814271 CZK)\nThe limits being 0.10 % (5.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12110983 BTC (59,158.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.19 % (-13,720.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,494.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01344551 BTC (5,044.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.02 CZK over 558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029216 BTC for 109.61 CZK @ 375,183 CZK\nFees are 0.38498989 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.34 % (67.532939994793687591785814271 CZK)\nThe limits being 0.10 % (5.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12110983 BTC (59,158.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.19 % (-13,720.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,494.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01344551 BTC (5,044.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.02 CZK over 558 transactions" + } + ] + }, + { + "id": 1801, + "type": "message", + "date": "2022-11-22T01:00:04", + "date_unixtime": "1669075204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029136 BTC for 109.61 CZK @ 376,211 CZK\nFees are 0.38498769 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.31 % (67.717979994237631223173587664 CZK)\nThe limits being 0.10 % (5.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12140119 BTC (59,268.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 376,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.94 % (-13,596.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,384.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01373687 BTC (5,167.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.03 CZK over 559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029136 BTC for 109.61 CZK @ 376,211 CZK\nFees are 0.38498769 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.31 % (67.717979994237631223173587664 CZK)\nThe limits being 0.10 % (5.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12140119 BTC (59,268.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 376,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.94 % (-13,596.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,384.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01373687 BTC (5,167.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.03 CZK over 559 transactions" + } + ] + }, + { + "id": 1802, + "type": "message", + "date": "2022-11-22T05:00:04", + "date_unixtime": "1669089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029067 BTC for 109.62 CZK @ 377,116 CZK\nFees are 0.38499988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (60.338559996149301574944912336 CZK)\nThe limits being 0.10 % (5.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12169186 BTC (59,378.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 377,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -22.71 % (-13,486.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,274.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01402754 BTC (5,290.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.03 CZK over 560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029067 BTC for 109.62 CZK @ 377,116 CZK\nFees are 0.38499988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.14 % (60.338559996149301574944912336 CZK)\nThe limits being 0.10 % (5.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12169186 BTC (59,378.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 377,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -22.71 % (-13,486.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,274.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01402754 BTC (5,290.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.03 CZK over 560 transactions" + } + ] + }, + { + "id": 1803, + "type": "message", + "date": "2022-11-22T09:00:40", + "date_unixtime": "1669104040", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029239 BTC for 109.62 CZK @ 374,897 CZK\nFees are 0.38499927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (59.983519995416705029779403536 CZK)\nThe limits being 0.10 % (5.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12198425 BTC (59,488.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.13 % (-13,757.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,164.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01431993 BTC (5,368.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.04 CZK over 561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029239 BTC for 109.62 CZK @ 374,897 CZK\nFees are 0.38499927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (59.983519995416705029779403536 CZK)\nThe limits being 0.10 % (5.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12198425 BTC (59,488.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.13 % (-13,757.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,164.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01431993 BTC (5,368.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.04 CZK over 561 transactions" + } + ] + }, + { + "id": 1804, + "type": "message", + "date": "2022-11-22T13:00:05", + "date_unixtime": "1669118405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029310 BTC for 109.62 CZK @ 373,985 CZK\nFees are 0.38499530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (48.618049999005527735831447663 CZK)\nThe limits being 0.10 % (5.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12227735 BTC (59,598.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 373,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -23.27 % (-13,868.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,054.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01461303 BTC (5,465.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.05 CZK over 562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029310 BTC for 109.62 CZK @ 373,985 CZK\nFees are 0.38499530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (48.618049999005527735831447663 CZK)\nThe limits being 0.10 % (5.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12227735 BTC (59,598.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 373,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -23.27 % (-13,868.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,054.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01461303 BTC (5,465.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.05 CZK over 562 transactions" + } + ] + }, + { + "id": 1805, + "type": "message", + "date": "2022-11-22T17:00:03", + "date_unixtime": "1669132803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028443 BTC for 109.62 CZK @ 385,388 CZK\nFees are 0.38499848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (50.100439999571867272337838202 CZK)\nThe limits being 0.10 % (5.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12256178 BTC (59,708.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.89 % (-12,474.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 944.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01489746 BTC (5,741.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.05 CZK over 563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028443 BTC for 109.62 CZK @ 385,388 CZK\nFees are 0.38499848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.87 % (50.100439999571867272337838202 CZK)\nThe limits being 0.10 % (5.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12256178 BTC (59,708.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.89 % (-12,474.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 944.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01489746 BTC (5,741.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.05 CZK over 563 transactions" + } + ] + }, + { + "id": 1806, + "type": "message", + "date": "2022-11-22T21:00:04", + "date_unixtime": "1669147204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028581 BTC for 109.61 CZK @ 383,517 CZK\nFees are 0.38498824 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.32 % (76.703399994285422106563907470 CZK)\nThe limits being 0.10 % (5.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12284759 BTC (59,818.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.24 % (-12,704.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 834.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01518327 BTC (5,823.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.06 CZK over 564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028581 BTC for 109.61 CZK @ 383,517 CZK\nFees are 0.38498824 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.32 % (76.703399994285422106563907470 CZK)\nThe limits being 0.10 % (5.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12284759 BTC (59,818.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.24 % (-12,704.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 834.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01518327 BTC (5,823.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.06 CZK over 564 transactions" + } + ] + }, + { + "id": 1807, + "type": "message", + "date": "2022-11-23T01:00:04", + "date_unixtime": "1669161604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028529 BTC for 109.61 CZK @ 384,220 CZK\nFees are 0.38499221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.29 % (76.84399999769463333169337932 CZK)\nThe limits being 0.10 % (5.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12313288 BTC (59,928.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.06 % (-12,618.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 724.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01546856 BTC (5,943.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.07 CZK over 565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028529 BTC for 109.61 CZK @ 384,220 CZK\nFees are 0.38499221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.29 % (76.84399999769463333169337932 CZK)\nThe limits being 0.10 % (5.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12313288 BTC (59,928.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.06 % (-12,618.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 724.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01546856 BTC (5,943.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.07 CZK over 565 transactions" + } + ] + }, + { + "id": 1808, + "type": "message", + "date": "2022-11-23T05:00:04", + "date_unixtime": "1669176004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028001 BTC for 109.61 CZK @ 391,465 CZK\nFees are 0.38499217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.27 % (78.292999999092494507856835564 CZK)\nThe limits being 0.10 % (6.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12341289 BTC (60,038.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.53 % (-11,726.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 614.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01574857 BTC (6,165.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.08 CZK over 566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028001 BTC for 109.61 CZK @ 391,465 CZK\nFees are 0.38499217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.27 % (78.292999999092494507856835564 CZK)\nThe limits being 0.10 % (6.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12341289 BTC (60,038.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.53 % (-11,726.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 614.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01574857 BTC (6,165.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.08 CZK over 566 transactions" + } + ] + }, + { + "id": 1809, + "type": "message", + "date": "2022-11-23T09:00:03", + "date_unixtime": "1669190403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028018 BTC for 109.61 CZK @ 391,226 CZK\nFees are 0.38499072 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (70.420679998476315834119449795 CZK)\nThe limits being 0.10 % (6.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12369307 BTC (60,148.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.55 % (-11,756.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 504.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01602875 BTC (6,270.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.08 CZK over 567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028018 BTC for 109.61 CZK @ 391,226 CZK\nFees are 0.38499072 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.12 % (70.420679998476315834119449795 CZK)\nThe limits being 0.10 % (6.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12369307 BTC (60,148.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.55 % (-11,756.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 504.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01602875 BTC (6,270.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.08 CZK over 567 transactions" + } + ] + }, + { + "id": 1810, + "type": "message", + "date": "2022-11-23T13:00:05", + "date_unixtime": "1669204805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027945 BTC for 109.61 CZK @ 392,244 CZK\nFees are 0.38498680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (27.457079999925114487912809730 CZK)\nThe limits being 0.10 % (6.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12397252 BTC (60,258.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.30 % (-11,631.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 394.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01630820 BTC (6,396.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.09 CZK over 568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027945 BTC for 109.61 CZK @ 392,244 CZK\nFees are 0.38498680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (27.457079999925114487912809730 CZK)\nThe limits being 0.10 % (6.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12397252 BTC (60,258.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.30 % (-11,631.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 394.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01630820 BTC (6,396.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.09 CZK over 568 transactions" + } + ] + }, + { + "id": 1811, + "type": "message", + "date": "2022-11-23T17:00:03", + "date_unixtime": "1669219203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028377 BTC for 109.61 CZK @ 386,279 CZK\nFees are 0.38499315 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (73.393009999062554414730457005 CZK)\nThe limits being 0.10 % (6.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12425629 BTC (60,368.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,839 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.49 % (-12,371.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 284.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01659197 BTC (6,409.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.10 CZK over 569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028377 BTC for 109.61 CZK @ 386,279 CZK\nFees are 0.38499315 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (73.393009999062554414730457005 CZK)\nThe limits being 0.10 % (6.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12425629 BTC (60,368.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,839 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.49 % (-12,371.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 284.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01659197 BTC (6,409.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.10 CZK over 569 transactions" + } + ] + }, + { + "id": 1812, + "type": "message", + "date": "2022-11-23T21:00:03", + "date_unixtime": "1669233603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028276 BTC for 109.61 CZK @ 387,658 CZK\nFees are 0.38499239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (77.531599995573562978013788634 CZK)\nThe limits being 0.10 % (6.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12453905 BTC (60,478.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.17 % (-12,200.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,174.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01687473 BTC (6,541.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.10 CZK over 570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028276 BTC for 109.61 CZK @ 387,658 CZK\nFees are 0.38499239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.19 % (77.531599995573562978013788634 CZK)\nThe limits being 0.10 % (6.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12453905 BTC (60,478.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.17 % (-12,200.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,174.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01687473 BTC (6,541.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.10 CZK over 570 transactions" + } + ] + }, + { + "id": 1813, + "type": "message", + "date": "2022-11-24T01:00:15", + "date_unixtime": "1669248015", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028104 BTC for 109.62 CZK @ 390,035 CZK\nFees are 0.38499682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.11 % (74.106649995014602321989745254 CZK)\nThe limits being 0.10 % (6.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12482009 BTC (60,588.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.65 % (-11,904.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,064.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01715577 BTC (6,691.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.11 CZK over 571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028104 BTC for 109.62 CZK @ 390,035 CZK\nFees are 0.38499682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.11 % (74.106649995014602321989745254 CZK)\nThe limits being 0.10 % (6.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12482009 BTC (60,588.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.65 % (-11,904.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,064.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01715577 BTC (6,691.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.11 CZK over 571 transactions" + } + ] + }, + { + "id": 1814, + "type": "message", + "date": "2022-11-24T05:00:04", + "date_unixtime": "1669262404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028001 BTC for 109.61 CZK @ 391,466 CZK\nFees are 0.38499316 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (78.293199999067582592386238892 CZK)\nThe limits being 0.10 % (6.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12510010 BTC (60,698.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.32 % (-11,726.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,954.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01743578 BTC (6,825.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.12 CZK over 572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028001 BTC for 109.61 CZK @ 391,466 CZK\nFees are 0.38499316 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (78.293199999067582592386238892 CZK)\nThe limits being 0.10 % (6.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12510010 BTC (60,698.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.32 % (-11,726.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,954.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01743578 BTC (6,825.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.12 CZK over 572 transactions" + } + ] + }, + { + "id": 1815, + "type": "message", + "date": "2022-11-24T09:00:03", + "date_unixtime": "1669276803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028106 BTC for 109.62 CZK @ 390,010 CZK\nFees are 0.38499954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (78.00199999496531938258789746 CZK)\nThe limits being 0.10 % (6.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12538116 BTC (60,808.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.58 % (-11,908.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,844.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01771684 BTC (6,909.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.12 CZK over 573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028106 BTC for 109.62 CZK @ 390,010 CZK\nFees are 0.38499954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (78.00199999496531938258789746 CZK)\nThe limits being 0.10 % (6.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12538116 BTC (60,808.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.58 % (-11,908.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,844.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01771684 BTC (6,909.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.12 CZK over 573 transactions" + } + ] + }, + { + "id": 1816, + "type": "message", + "date": "2022-11-24T13:00:04", + "date_unixtime": "1669291204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028163 BTC for 109.61 CZK @ 389,214 CZK\nFees are 0.38499296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (73.950659996053651724698031203 CZK)\nThe limits being 0.10 % (7.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12566279 BTC (60,918.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.71 % (-12,008.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,734.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01799847 BTC (7,005.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.13 CZK over 574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028163 BTC for 109.61 CZK @ 389,214 CZK\nFees are 0.38499296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.06 % (73.950659996053651724698031203 CZK)\nThe limits being 0.10 % (7.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12566279 BTC (60,918.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.71 % (-12,008.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,734.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01799847 BTC (7,005.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.13 CZK over 574 transactions" + } + ] + }, + { + "id": 1817, + "type": "message", + "date": "2022-11-24T17:00:04", + "date_unixtime": "1669305604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028172 BTC for 109.61 CZK @ 389,092 CZK\nFees are 0.38499528 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (81.70931999714756693189625039 CZK)\nThe limits being 0.10 % (7.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12594451 BTC (61,028.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.70 % (-12,024.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,624.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01828019 BTC (7,112.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.14 CZK over 575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028172 BTC for 109.61 CZK @ 389,092 CZK\nFees are 0.38499528 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.15 % (81.70931999714756693189625039 CZK)\nThe limits being 0.10 % (7.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12594451 BTC (61,028.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.70 % (-12,024.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,624.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01828019 BTC (7,112.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.14 CZK over 575 transactions" + } + ] + }, + { + "id": 1818, + "type": "message", + "date": "2022-11-24T21:00:04", + "date_unixtime": "1669320004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028138 BTC for 109.61 CZK @ 389,557 CZK\nFees are 0.38499019 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (81.80696999976944720771351021 CZK)\nThe limits being 0.10 % (7.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12622589 BTC (61,138.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.57 % (-11,966.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,514.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01856157 BTC (7,230.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.14 CZK over 576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028138 BTC for 109.61 CZK @ 389,557 CZK\nFees are 0.38499019 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.13 % (81.80696999976944720771351021 CZK)\nThe limits being 0.10 % (7.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12622589 BTC (61,138.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.57 % (-11,966.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,514.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01856157 BTC (7,230.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.14 CZK over 576 transactions" + } + ] + }, + { + "id": 1819, + "type": "message", + "date": "2022-11-25T01:00:03", + "date_unixtime": "1669334403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028062 BTC for 109.61 CZK @ 390,612 CZK\nFees are 0.38499015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (46.873439996573890037850205487 CZK)\nThe limits being 0.10 % (7.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12650651 BTC (61,248.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.32 % (-11,833.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,404.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01884219 BTC (7,359.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.15 CZK over 577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028062 BTC for 109.61 CZK @ 390,612 CZK\nFees are 0.38499015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (46.873439996573890037850205487 CZK)\nThe limits being 0.10 % (7.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12650651 BTC (61,248.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.32 % (-11,833.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,404.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01884219 BTC (7,359.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.15 CZK over 577 transactions" + } + ] + }, + { + "id": 1820, + "type": "message", + "date": "2022-11-25T05:00:03", + "date_unixtime": "1669348803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028277 BTC for 109.61 CZK @ 387,647 CZK\nFees are 0.38499508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (31.011759997839016566464803961 CZK)\nThe limits being 0.10 % (7.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12678928 BTC (61,358.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.90 % (-12,209.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,294.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01912496 BTC (7,413.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.16 CZK over 578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028277 BTC for 109.61 CZK @ 387,647 CZK\nFees are 0.38499508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (31.011759997839016566464803961 CZK)\nThe limits being 0.10 % (7.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12678928 BTC (61,358.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.90 % (-12,209.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,294.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01912496 BTC (7,413.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.16 CZK over 578 transactions" + } + ] + }, + { + "id": 1821, + "type": "message", + "date": "2022-11-25T09:00:04", + "date_unixtime": "1669363204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028315 BTC for 109.62 CZK @ 387,131 CZK\nFees are 0.38499930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (30.970479997388620668205163265 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12707243 BTC (61,468.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.97 % (-12,274.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,184.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01940811 BTC (7,513.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.16 CZK over 579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028315 BTC for 109.62 CZK @ 387,131 CZK\nFees are 0.38499930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.41 % (30.970479997388620668205163265 CZK)\nThe limits being 0.10 % (7.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12707243 BTC (61,468.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.97 % (-12,274.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,184.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01940811 BTC (7,513.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.16 CZK over 579 transactions" + } + ] + }, + { + "id": 1822, + "type": "message", + "date": "2022-11-25T13:00:03", + "date_unixtime": "1669377603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028254 BTC for 109.62 CZK @ 387,966 CZK\nFees are 0.38499849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (81.47285999426725086110272572 CZK)\nThe limits being 0.10 % (7.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12735497 BTC (61,578.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.76 % (-12,169.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,074.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01969065 BTC (7,639.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.17 CZK over 580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028254 BTC for 109.62 CZK @ 387,966 CZK\nFees are 0.38499849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.07 % (81.47285999426725086110272572 CZK)\nThe limits being 0.10 % (7.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12735497 BTC (61,578.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.76 % (-12,169.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,074.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01969065 BTC (7,639.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.17 CZK over 580 transactions" + } + ] + }, + { + "id": 1823, + "type": "message", + "date": "2022-11-25T17:00:03", + "date_unixtime": "1669392003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028244 BTC for 109.61 CZK @ 388,100 CZK\nFees are 0.38499516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (69.857999997459677137665811638 CZK)\nThe limits being 0.10 % (7.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12763741 BTC (61,688.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.70 % (-12,152.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,964.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01997309 BTC (7,751.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.18 CZK over 581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028244 BTC for 109.61 CZK @ 388,100 CZK\nFees are 0.38499516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (69.857999997459677137665811638 CZK)\nThe limits being 0.10 % (7.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12763741 BTC (61,688.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.70 % (-12,152.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,964.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01997309 BTC (7,751.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.18 CZK over 581 transactions" + } + ] + }, + { + "id": 1824, + "type": "message", + "date": "2022-11-25T21:00:03", + "date_unixtime": "1669406403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028310 BTC for 109.61 CZK @ 387,192 CZK\nFees are 0.38499197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (81.31031999763455950798837766 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12792051 BTC (61,798.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.85 % (-12,268.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,854.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02025619 BTC (7,843.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.18 CZK over 582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028310 BTC for 109.61 CZK @ 387,192 CZK\nFees are 0.38499197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (81.31031999763455950798837766 CZK)\nThe limits being 0.10 % (7.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12792051 BTC (61,798.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.85 % (-12,268.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,854.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02025619 BTC (7,843.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.18 CZK over 582 transactions" + } + ] + }, + { + "id": 1825, + "type": "message", + "date": "2022-11-26T01:00:36", + "date_unixtime": "1669420836", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028256 BTC for 109.62 CZK @ 387,940 CZK\nFees are 0.38499994 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (81.46739999822252918860996704 CZK)\nThe limits being 0.10 % (7.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12820307 BTC (61,908.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.66 % (-12,173.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,744.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02053875 BTC (7,967.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.19 CZK over 583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028256 BTC for 109.62 CZK @ 387,940 CZK\nFees are 0.38499994 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.02 % (81.46739999822252918860996704 CZK)\nThe limits being 0.10 % (7.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12820307 BTC (61,908.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.66 % (-12,173.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,744.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02053875 BTC (7,967.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.19 CZK over 583 transactions" + } + ] + }, + { + "id": 1826, + "type": "message", + "date": "2022-11-26T05:00:04", + "date_unixtime": "1669435204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028084 BTC for 109.61 CZK @ 390,310 CZK\nFees are 0.38499409 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (81.96509999895679180694091120 CZK)\nThe limits being 0.10 % (8.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12848391 BTC (62,018.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.14 % (-11,870.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,634.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02081959 BTC (8,126.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.20 CZK over 584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028084 BTC for 109.61 CZK @ 390,310 CZK\nFees are 0.38499409 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.01 % (81.96509999895679180694091120 CZK)\nThe limits being 0.10 % (8.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12848391 BTC (62,018.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.14 % (-11,870.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,634.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02081959 BTC (8,126.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.20 CZK over 584 transactions" + } + ] + }, + { + "id": 1827, + "type": "message", + "date": "2022-11-26T09:00:04", + "date_unixtime": "1669449604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028122 BTC for 109.61 CZK @ 389,775 CZK\nFees are 0.38498659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (85.75049999278891137968961277 CZK)\nThe limits being 0.10 % (8.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12876513 BTC (62,128.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.22 % (-11,939.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,524.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02110081 BTC (8,224.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.20 CZK over 585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028122 BTC for 109.61 CZK @ 389,775 CZK\nFees are 0.38498659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.04 % (85.75049999278891137968961277 CZK)\nThe limits being 0.10 % (8.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12876513 BTC (62,128.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.22 % (-11,939.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,524.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02110081 BTC (8,224.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.20 CZK over 585 transactions" + } + ] + }, + { + "id": 1828, + "type": "message", + "date": "2022-11-26T13:00:03", + "date_unixtime": "1669464003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028162 BTC for 109.61 CZK @ 389,230 CZK\nFees are 0.38499512 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (85.63059999680827352119297536 CZK)\nThe limits being 0.10 % (8.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12904675 BTC (62,238.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.30 % (-12,009.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,414.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02138243 BTC (8,322.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.21 CZK over 586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028162 BTC for 109.61 CZK @ 389,230 CZK\nFees are 0.38499512 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 1.03 % (85.63059999680827352119297536 CZK)\nThe limits being 0.10 % (8.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12904675 BTC (62,238.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.30 % (-12,009.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,414.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02138243 BTC (8,322.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.21 CZK over 586 transactions" + } + ] + }, + { + "id": 1829, + "type": "message", + "date": "2022-11-26T17:00:03", + "date_unixtime": "1669478403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028234 BTC for 109.61 CZK @ 388,234 CZK\nFees are 0.38499173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (62.117439996351933776868443624 CZK)\nThe limits being 0.10 % (8.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12932909 BTC (62,348.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.47 % (-12,138.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,304.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02166477 BTC (8,411.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.22 CZK over 587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028234 BTC for 109.61 CZK @ 388,234 CZK\nFees are 0.38499173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.74 % (62.117439996351933776868443624 CZK)\nThe limits being 0.10 % (8.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12932909 BTC (62,348.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.47 % (-12,138.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,304.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02166477 BTC (8,411.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.22 CZK over 587 transactions" + } + ] + }, + { + "id": 1830, + "type": "message", + "date": "2022-11-26T21:00:04", + "date_unixtime": "1669492804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028297 BTC for 109.62 CZK @ 387,375 CZK\nFees are 0.38499705 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (77.474999997798988834340788968 CZK)\nThe limits being 0.10 % (8.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12961206 BTC (62,458.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.61 % (-12,250.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,194.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02194774 BTC (8,502.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.22 CZK over 588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028297 BTC for 109.62 CZK @ 387,375 CZK\nFees are 0.38499705 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.91 % (77.474999997798988834340788968 CZK)\nThe limits being 0.10 % (8.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12961206 BTC (62,458.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.61 % (-12,250.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,194.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02194774 BTC (8,502.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.22 CZK over 588 transactions" + } + ] + }, + { + "id": 1831, + "type": "message", + "date": "2022-11-27T01:00:03", + "date_unixtime": "1669507203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028318 BTC for 109.61 CZK @ 387,084 CZK\nFees are 0.38499334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (85.15847999619102756849367492 CZK)\nThe limits being 0.10 % (8.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.12989524 BTC (62,568.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.64 % (-12,288.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,084.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02223092 BTC (8,605.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.23 CZK over 589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028318 BTC for 109.61 CZK @ 387,084 CZK\nFees are 0.38499334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.99 % (85.15847999619102756849367492 CZK)\nThe limits being 0.10 % (8.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.12989524 BTC (62,568.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.64 % (-12,288.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,084.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02223092 BTC (8,605.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.23 CZK over 589 transactions" + } + ] + }, + { + "id": 1832, + "type": "message", + "date": "2022-11-27T05:00:03", + "date_unixtime": "1669521603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028225 BTC for 109.61 CZK @ 388,354 CZK\nFees are 0.38498797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (69.903719995074811234196697738 CZK)\nThe limits being 0.10 % (8.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13017749 BTC (62,678.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.34 % (-12,123.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,974.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02251317 BTC (8,743.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.23 CZK over 590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028225 BTC for 109.61 CZK @ 388,354 CZK\nFees are 0.38498797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.80 % (69.903719995074811234196697738 CZK)\nThe limits being 0.10 % (8.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13017749 BTC (62,678.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.34 % (-12,123.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,974.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02251317 BTC (8,743.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.23 CZK over 590 transactions" + } + ] + }, + { + "id": 1833, + "type": "message", + "date": "2022-11-27T09:00:05", + "date_unixtime": "1669536005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028127 BTC for 109.62 CZK @ 389,715 CZK\nFees are 0.38499577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (66.251549998087718335135519304 CZK)\nThe limits being 0.10 % (8.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13045876 BTC (62,788.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.03 % (-11,946.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,864.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02279444 BTC (8,883.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.24 CZK over 591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028127 BTC for 109.62 CZK @ 389,715 CZK\nFees are 0.38499577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.75 % (66.251549998087718335135519304 CZK)\nThe limits being 0.10 % (8.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13045876 BTC (62,788.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.03 % (-11,946.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,864.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02279444 BTC (8,883.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.24 CZK over 591 transactions" + } + ] + }, + { + "id": 1834, + "type": "message", + "date": "2022-11-27T13:00:35", + "date_unixtime": "1669550435", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028175 BTC for 109.62 CZK @ 389,054 CZK\nFees are 0.38499867 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (7.7810799995932603235614126070 CZK)\nThe limits being 0.10 % (8.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13074051 BTC (62,898.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.13 % (-12,033.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,754.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02307619 BTC (8,977.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.25 CZK over 592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028175 BTC for 109.62 CZK @ 389,054 CZK\nFees are 0.38499867 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (7.7810799995932603235614126070 CZK)\nThe limits being 0.10 % (8.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13074051 BTC (62,898.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.13 % (-12,033.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,754.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02307619 BTC (8,977.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.25 CZK over 592 transactions" + } + ] + }, + { + "id": 1835, + "type": "message", + "date": "2022-11-27T17:00:35", + "date_unixtime": "1669564835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028162 BTC for 109.61 CZK @ 389,225 CZK\nFees are 0.38499017 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (15.568999999186145132898430524 CZK)\nThe limits being 0.10 % (9.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13102213 BTC (63,008.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.06 % (-12,011.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,644.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02335781 BTC (9,091.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.25 CZK over 593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028162 BTC for 109.61 CZK @ 389,225 CZK\nFees are 0.38499017 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (15.568999999186145132898430524 CZK)\nThe limits being 0.10 % (9.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13102213 BTC (63,008.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.06 % (-12,011.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,644.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02335781 BTC (9,091.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.25 CZK over 593 transactions" + } + ] + }, + { + "id": 1836, + "type": "message", + "date": "2022-11-27T21:00:03", + "date_unixtime": "1669579203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028220 BTC for 109.61 CZK @ 388,423 CZK\nFees are 0.38498816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (11.652689999247848688343455595 CZK)\nThe limits being 0.10 % (9.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13130433 BTC (63,118.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.20 % (-12,116.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,534.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02364001 BTC (9,182.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.26 CZK over 594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028220 BTC for 109.61 CZK @ 388,423 CZK\nFees are 0.38498816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (11.652689999247848688343455595 CZK)\nThe limits being 0.10 % (9.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13130433 BTC (63,118.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.20 % (-12,116.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,534.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02364001 BTC (9,182.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.26 CZK over 594 transactions" + } + ] + }, + { + "id": 1837, + "type": "message", + "date": "2022-11-28T01:00:03", + "date_unixtime": "1669593603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028288 BTC for 109.62 CZK @ 387,497 CZK\nFees are 0.38499582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (38.74969999656180742965232546 CZK)\nThe limits being 0.10 % (9.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13158721 BTC (63,228.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.36 % (-12,238.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,424.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02392289 BTC (9,270.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.27 CZK over 595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028288 BTC for 109.62 CZK @ 387,497 CZK\nFees are 0.38499582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (38.74969999656180742965232546 CZK)\nThe limits being 0.10 % (9.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13158721 BTC (63,228.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.36 % (-12,238.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,424.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02392289 BTC (9,270.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.27 CZK over 595 transactions" + } + ] + }, + { + "id": 1838, + "type": "message", + "date": "2022-11-28T05:00:03", + "date_unixtime": "1669608003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028697 BTC for 109.61 CZK @ 381,970 CZK\nFees are 0.38499153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (22.918199998301932364507615339 CZK)\nThe limits being 0.10 % (9.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13187418 BTC (63,338.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.47 % (-12,966.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,314.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02420986 BTC (9,247.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.27 CZK over 596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028697 BTC for 109.61 CZK @ 381,970 CZK\nFees are 0.38499153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (22.918199998301932364507615339 CZK)\nThe limits being 0.10 % (9.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13187418 BTC (63,338.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.47 % (-12,966.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,314.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02420986 BTC (9,247.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.27 CZK over 596 transactions" + } + ] + }, + { + "id": 1839, + "type": "message", + "date": "2022-11-28T09:00:03", + "date_unixtime": "1669622403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028695 BTC for 109.61 CZK @ 381,992 CZK\nFees are 0.38498687 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (15.279679999249881035820524662 CZK)\nThe limits being 0.10 % (9.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13216113 BTC (63,448.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.43 % (-12,964.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,204.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02449681 BTC (9,357.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.28 CZK over 597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028695 BTC for 109.61 CZK @ 381,992 CZK\nFees are 0.38498687 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (15.279679999249881035820524662 CZK)\nThe limits being 0.10 % (9.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13216113 BTC (63,448.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.43 % (-12,964.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,204.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02449681 BTC (9,357.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.28 CZK over 597 transactions" + } + ] + }, + { + "id": 1840, + "type": "message", + "date": "2022-11-28T13:00:05", + "date_unixtime": "1669636805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028986 BTC for 109.62 CZK @ 378,169 CZK\nFees are 0.38499903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (11.345069999774129400338310840 CZK)\nThe limits being 0.10 % (9.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13245099 BTC (63,558.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 378,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -21.19 % (-13,469.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,094.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02478667 BTC (9,373.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.29 CZK over 598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028986 BTC for 109.62 CZK @ 378,169 CZK\nFees are 0.38499903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (11.345069999774129400338310840 CZK)\nThe limits being 0.10 % (9.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13245099 BTC (63,558.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 378,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -21.19 % (-13,469.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,094.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02478667 BTC (9,373.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.29 CZK over 598 transactions" + } + ] + }, + { + "id": 1841, + "type": "message", + "date": "2022-11-28T17:00:03", + "date_unixtime": "1669651203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028882 BTC for 109.61 CZK @ 379,523 CZK\nFees are 0.38499118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (45.542759997925686797959099386 CZK)\nThe limits being 0.10 % (9.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13273981 BTC (63,668.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.87 % (-13,290.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,984.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02507549 BTC (9,516.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.29 CZK over 599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028882 BTC for 109.61 CZK @ 379,523 CZK\nFees are 0.38499118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (45.542759997925686797959099386 CZK)\nThe limits being 0.10 % (9.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13273981 BTC (63,668.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.87 % (-13,290.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,984.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02507549 BTC (9,516.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.29 CZK over 599 transactions" + } + ] + }, + { + "id": 1842, + "type": "message", + "date": "2022-11-28T21:00:03", + "date_unixtime": "1669665603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028705 BTC for 109.62 CZK @ 381,870 CZK\nFees are 0.38499804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (53.461799998906457602189584324 CZK)\nThe limits being 0.10 % (9.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13302686 BTC (63,778.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.35 % (-12,979.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,874.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02536254 BTC (9,685.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.30 CZK over 600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028705 BTC for 109.62 CZK @ 381,870 CZK\nFees are 0.38499804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.55 % (53.461799998906457602189584324 CZK)\nThe limits being 0.10 % (9.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13302686 BTC (63,778.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.35 % (-12,979.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,874.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02536254 BTC (9,685.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.30 CZK over 600 transactions" + } + ] + }, + { + "id": 1843, + "type": "message", + "date": "2022-11-29T01:00:04", + "date_unixtime": "1669680004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028650 BTC for 109.61 CZK @ 382,592 CZK\nFees are 0.38498688 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (65.040639995269610464595556046 CZK)\nThe limits being 0.10 % (9.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13331336 BTC (63,888.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.17 % (-12,883.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,764.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02564904 BTC (9,813.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.30 CZK over 601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028650 BTC for 109.61 CZK @ 382,592 CZK\nFees are 0.38498688 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.66 % (65.040639995269610464595556046 CZK)\nThe limits being 0.10 % (9.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13331336 BTC (63,888.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.17 % (-12,883.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,764.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02564904 BTC (9,813.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.30 CZK over 601 transactions" + } + ] + }, + { + "id": 1844, + "type": "message", + "date": "2022-11-29T05:00:03", + "date_unixtime": "1669694403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028606 BTC for 109.61 CZK @ 383,184 CZK\nFees are 0.38499042 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (57.477599998620503271758660810 CZK)\nThe limits being 0.10 % (9.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13359942 BTC (63,998.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -20.01 % (-12,805.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,654.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02593510 BTC (9,937.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.31 CZK over 602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028606 BTC for 109.61 CZK @ 383,184 CZK\nFees are 0.38499042 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.58 % (57.477599998620503271758660810 CZK)\nThe limits being 0.10 % (9.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13359942 BTC (63,998.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -20.01 % (-12,805.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,654.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02593510 BTC (9,937.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.31 CZK over 602 transactions" + } + ] + }, + { + "id": 1845, + "type": "message", + "date": "2022-11-29T09:00:03", + "date_unixtime": "1669708803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028361 BTC for 109.62 CZK @ 386,500 CZK\nFees are 0.38499621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (57.974999996047120224308534598 CZK)\nThe limits being 0.10 % (10.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13388303 BTC (64,108.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.28 % (-12,362.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,544.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02621871 BTC (10,133.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.32 CZK over 603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028361 BTC for 109.62 CZK @ 386,500 CZK\nFees are 0.38499621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.57 % (57.974999996047120224308534598 CZK)\nThe limits being 0.10 % (10.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13388303 BTC (64,108.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.28 % (-12,362.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,544.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02621871 BTC (10,133.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.32 CZK over 603 transactions" + } + ] + }, + { + "id": 1846, + "type": "message", + "date": "2022-11-29T13:00:04", + "date_unixtime": "1669723204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028255 BTC for 109.61 CZK @ 387,944 CZK\nFees are 0.38499029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (38.794399999929462947635849294 CZK)\nThe limits being 0.10 % (10.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13416558 BTC (64,218.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.95 % (-12,169.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,434.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02650126 BTC (10,281.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.32 CZK over 604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028255 BTC for 109.61 CZK @ 387,944 CZK\nFees are 0.38499029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.38 % (38.794399999929462947635849294 CZK)\nThe limits being 0.10 % (10.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13416558 BTC (64,218.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.95 % (-12,169.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,434.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02650126 BTC (10,281.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.32 CZK over 604 transactions" + } + ] + }, + { + "id": 1847, + "type": "message", + "date": "2022-11-29T17:00:03", + "date_unixtime": "1669737603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028392 BTC for 109.62 CZK @ 386,078 CZK\nFees are 0.38499622 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (34.747019999949458383401122276 CZK)\nThe limits being 0.10 % (10.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13444950 BTC (64,328.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -19.31 % (-12,420.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,324.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02678518 BTC (10,341.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.33 CZK over 605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028392 BTC for 109.62 CZK @ 386,078 CZK\nFees are 0.38499622 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.34 % (34.747019999949458383401122276 CZK)\nThe limits being 0.10 % (10.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13444950 BTC (64,328.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -19.31 % (-12,420.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,324.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02678518 BTC (10,341.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.33 CZK over 605 transactions" + } + ] + }, + { + "id": 1848, + "type": "message", + "date": "2022-11-29T21:00:03", + "date_unixtime": "1669752003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028241 BTC for 109.61 CZK @ 388,135 CZK\nFees are 0.38498898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (65.982949994766202572713571972 CZK)\nThe limits being 0.10 % (10.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13473191 BTC (64,438.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.85 % (-12,144.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,214.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02706759 BTC (10,505.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.33 CZK over 606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028241 BTC for 109.61 CZK @ 388,135 CZK\nFees are 0.38498898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.63 % (65.982949994766202572713571972 CZK)\nThe limits being 0.10 % (10.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13473191 BTC (64,438.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.85 % (-12,144.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,214.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02706759 BTC (10,505.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.33 CZK over 606 transactions" + } + ] + }, + { + "id": 1849, + "type": "message", + "date": "2022-11-30T01:00:06", + "date_unixtime": "1669766406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028199 BTC for 109.61 CZK @ 388,713 CZK\nFees are 0.38498889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (73.855469995941189064629341826 CZK)\nThe limits being 0.10 % (10.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13501390 BTC (64,548.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.69 % (-12,066.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,104.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02734958 BTC (10,631.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.34 CZK over 607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028199 BTC for 109.61 CZK @ 388,713 CZK\nFees are 0.38498889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (73.855469995941189064629341826 CZK)\nThe limits being 0.10 % (10.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13501390 BTC (64,548.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.69 % (-12,066.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,104.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02734958 BTC (10,631.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.34 CZK over 607 transactions" + } + ] + }, + { + "id": 1850, + "type": "message", + "date": "2022-11-30T05:00:04", + "date_unixtime": "1669780804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027561 BTC for 109.61 CZK @ 397,711 CZK\nFees are 0.38498871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (43.748209999807104509059552768 CZK)\nThe limits being 0.10 % (10.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13528951 BTC (64,658.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.78 % (-10,852.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,994.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02762519 BTC (10,986.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.35 CZK over 608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027561 BTC for 109.61 CZK @ 397,711 CZK\nFees are 0.38498871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (43.748209999807104509059552768 CZK)\nThe limits being 0.10 % (10.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13528951 BTC (64,658.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.78 % (-10,852.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,994.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02762519 BTC (10,986.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.35 CZK over 608 transactions" + } + ] + }, + { + "id": 1851, + "type": "message", + "date": "2022-11-30T09:00:03", + "date_unixtime": "1669795203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027509 BTC for 109.61 CZK @ 398,469 CZK\nFees are 0.38499471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (43.83158999990635849882566856 CZK)\nThe limits being 0.10 % (11.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13556460 BTC (64,768.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.60 % (-10,750.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,884.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02790028 BTC (11,117.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.35 CZK over 609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027509 BTC for 109.61 CZK @ 398,469 CZK\nFees are 0.38499471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (43.83158999990635849882566856 CZK)\nThe limits being 0.10 % (11.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13556460 BTC (64,768.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.60 % (-10,750.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,884.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02790028 BTC (11,117.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.35 CZK over 609 transactions" + } + ] + }, + { + "id": 1852, + "type": "message", + "date": "2022-11-30T13:00:03", + "date_unixtime": "1669809603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027537 BTC for 109.61 CZK @ 398,059 CZK\nFees are 0.38499004 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (43.786489998445539388332867501 CZK)\nThe limits being 0.10 % (11.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13583997 BTC (64,878.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.66 % (-10,806.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,774.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02817565 BTC (11,215.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.36 CZK over 610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027537 BTC for 109.61 CZK @ 398,059 CZK\nFees are 0.38499004 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (43.786489998445539388332867501 CZK)\nThe limits being 0.10 % (11.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13583997 BTC (64,878.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.66 % (-10,806.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,774.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02817565 BTC (11,215.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.36 CZK over 610 transactions" + } + ] + }, + { + "id": 1853, + "type": "message", + "date": "2022-11-30T17:00:06", + "date_unixtime": "1669824006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027510 BTC for 109.62 CZK @ 398,459 CZK\nFees are 0.38499904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.77 % (87.66097999350510218959197154 CZK)\nThe limits being 0.10 % (11.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13611507 BTC (64,988.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.54 % (-10,752.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,664.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02845075 BTC (11,336.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.36 CZK over 611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027510 BTC for 109.62 CZK @ 398,459 CZK\nFees are 0.38499904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.77 % (87.66097999350510218959197154 CZK)\nThe limits being 0.10 % (11.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13611507 BTC (64,988.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.54 % (-10,752.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,664.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02845075 BTC (11,336.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.36 CZK over 611 transactions" + } + ] + }, + { + "id": 1854, + "type": "message", + "date": "2022-11-30T21:00:03", + "date_unixtime": "1669838403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027406 BTC for 109.61 CZK @ 399,958 CZK\nFees are 0.38498647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (111.98823999676240797870083330 CZK)\nThe limits being 0.10 % (11.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13638913 BTC (65,098.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 399,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.20 % (-10,548.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,554.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02872481 BTC (11,488.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.37 CZK over 612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027406 BTC for 109.61 CZK @ 399,958 CZK\nFees are 0.38498647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.97 % (111.98823999676240797870083330 CZK)\nThe limits being 0.10 % (11.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13638913 BTC (65,098.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 399,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.20 % (-10,548.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,554.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02872481 BTC (11,488.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.37 CZK over 612 transactions" + } + ] + }, + { + "id": 1855, + "type": "message", + "date": "2022-12-01T01:00:03", + "date_unixtime": "1669852803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027270 BTC for 109.61 CZK @ 401,961 CZK\nFees are 0.38499446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (104.50985999387183362083094209 CZK)\nThe limits being 0.10 % (11.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13666183 BTC (65,208.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 401,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.76 % (-10,275.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,444.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02899751 BTC (11,655.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.38 CZK over 613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027270 BTC for 109.61 CZK @ 401,961 CZK\nFees are 0.38499446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.90 % (104.50985999387183362083094209 CZK)\nThe limits being 0.10 % (11.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13666183 BTC (65,208.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 401,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.76 % (-10,275.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,444.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02899751 BTC (11,655.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.38 CZK over 613 transactions" + } + ] + }, + { + "id": 1856, + "type": "message", + "date": "2022-12-01T05:00:35", + "date_unixtime": "1669867235", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027345 BTC for 109.62 CZK @ 400,860 CZK\nFees are 0.38499587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (104.22359999573626153771727642 CZK)\nThe limits being 0.10 % (11.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13693528 BTC (65,318.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 400,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.96 % (-10,426.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,334.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02927096 BTC (11,733.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.38 CZK over 614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027345 BTC for 109.62 CZK @ 400,860 CZK\nFees are 0.38499587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.89 % (104.22359999573626153771727642 CZK)\nThe limits being 0.10 % (11.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13693528 BTC (65,318.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 400,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.96 % (-10,426.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,334.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02927096 BTC (11,733.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.38 CZK over 614 transactions" + } + ] + }, + { + "id": 1857, + "type": "message", + "date": "2022-12-01T09:00:05", + "date_unixtime": "1669881605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027339 BTC for 109.61 CZK @ 400,940 CZK\nFees are 0.38498821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (44.103399998757047943667954799 CZK)\nThe limits being 0.10 % (11.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13720867 BTC (65,428.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 400,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.92 % (-10,416.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,224.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02954435 BTC (11,845.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.39 CZK over 615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027339 BTC for 109.61 CZK @ 400,940 CZK\nFees are 0.38498821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (44.103399998757047943667954799 CZK)\nThe limits being 0.10 % (11.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13720867 BTC (65,428.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 400,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.92 % (-10,416.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,224.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02954435 BTC (11,845.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.39 CZK over 615 transactions" + } + ] + }, + { + "id": 1858, + "type": "message", + "date": "2022-12-01T13:00:38", + "date_unixtime": "1669896038", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027404 BTC for 109.62 CZK @ 400,000 CZK\nFees are 0.38499880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (12.00000 CZK)\nThe limits being 0.10 % (11.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13748271 BTC (65,538.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 400,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.09 % (-10,545.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,114.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02981839 BTC (11,927.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.39 CZK over 616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027404 BTC for 109.62 CZK @ 400,000 CZK\nFees are 0.38499880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (12.00000 CZK)\nThe limits being 0.10 % (11.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13748271 BTC (65,538.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 400,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.09 % (-10,545.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,114.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02981839 BTC (11,927.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.39 CZK over 616 transactions" + } + ] + }, + { + "id": 1859, + "type": "message", + "date": "2022-12-01T17:00:34", + "date_unixtime": "1669910434", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"Newtonsoft.Json.JsonReaderException\",\"Message\":\"Unexpected characte" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"Newtonsoft.Json.JsonReaderException\",\"Message\":\"Unexpected characte" + } + ] + }, + { + "id": 1860, + "type": "message", + "date": "2022-12-01T21:00:03", + "date_unixtime": "1669924803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027824 BTC for 109.62 CZK @ 393,959 CZK\nFees are 0.38499582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (98.48974999770785001201946150 CZK)\nThe limits being 0.10 % (11.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13776095 BTC (65,648.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.33 % (-11,376.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,004.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03009663 BTC (11,856.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.40 CZK over 617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027824 BTC for 109.62 CZK @ 393,959 CZK\nFees are 0.38499582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.83 % (98.48974999770785001201946150 CZK)\nThe limits being 0.10 % (11.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13776095 BTC (65,648.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.33 % (-11,376.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,004.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03009663 BTC (11,856.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.40 CZK over 617 transactions" + } + ] + }, + { + "id": 1861, + "type": "message", + "date": "2022-12-02T01:00:09", + "date_unixtime": "1669939209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027807 BTC for 109.61 CZK @ 394,194 CZK\nFees are 0.38499011 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (98.54849999146189688268569268 CZK)\nThe limits being 0.10 % (11.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13803902 BTC (65,758.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.25 % (-11,344.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,894.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03037470 BTC (11,973.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.41 CZK over 618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027807 BTC for 109.61 CZK @ 394,194 CZK\nFees are 0.38499011 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (98.54849999146189688268569268 CZK)\nThe limits being 0.10 % (11.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13803902 BTC (65,758.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.25 % (-11,344.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,894.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03037470 BTC (11,973.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.41 CZK over 618 transactions" + } + ] + }, + { + "id": 1862, + "type": "message", + "date": "2022-12-02T05:00:11", + "date_unixtime": "1669953611", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027904 BTC for 109.61 CZK @ 392,821 CZK\nFees are 0.38498746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (98.20524999871436211790842144 CZK)\nThe limits being 0.10 % (12.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13831806 BTC (65,868.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.51 % (-11,534.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,784.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03065374 BTC (12,041.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.41 CZK over 619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027904 BTC for 109.61 CZK @ 392,821 CZK\nFees are 0.38498746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.82 % (98.20524999871436211790842144 CZK)\nThe limits being 0.10 % (12.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13831806 BTC (65,868.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.51 % (-11,534.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,784.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03065374 BTC (12,041.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.41 CZK over 619 transactions" + } + ] + }, + { + "id": 1863, + "type": "message", + "date": "2022-12-02T09:00:07", + "date_unixtime": "1669968007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027808 BTC for 109.61 CZK @ 394,178 CZK\nFees are 0.38498832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (74.893819997385445532122037773 CZK)\nThe limits being 0.10 % (12.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13859614 BTC (65,978.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.20 % (-11,346.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,674.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03093182 BTC (12,192.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.42 CZK over 620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027808 BTC for 109.61 CZK @ 394,178 CZK\nFees are 0.38498832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (74.893819997385445532122037773 CZK)\nThe limits being 0.10 % (12.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13859614 BTC (65,978.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.20 % (-11,346.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,674.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03093182 BTC (12,192.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.42 CZK over 620 transactions" + } + ] + }, + { + "id": 1864, + "type": "message", + "date": "2022-12-02T13:00:09", + "date_unixtime": "1669982409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027861 BTC for 109.61 CZK @ 393,434 CZK\nFees are 0.38499404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (74.752459997560313784207447222 CZK)\nThe limits being 0.10 % (12.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13887475 BTC (66,088.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.33 % (-11,450.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,564.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03121043 BTC (12,279.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.42 CZK over 621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027861 BTC for 109.61 CZK @ 393,434 CZK\nFees are 0.38499404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.61 % (74.752459997560313784207447222 CZK)\nThe limits being 0.10 % (12.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13887475 BTC (66,088.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.33 % (-11,450.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,564.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03121043 BTC (12,279.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.42 CZK over 621 transactions" + } + ] + }, + { + "id": 1865, + "type": "message", + "date": "2022-12-02T17:00:08", + "date_unixtime": "1669996808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027773 BTC for 109.61 CZK @ 394,675 CZK\nFees are 0.38498857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (78.934999994887012942907794492 CZK)\nThe limits being 0.10 % (12.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13915248 BTC (66,198.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.04 % (-11,278.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,454.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03148816 BTC (12,427.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.43 CZK over 622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027773 BTC for 109.61 CZK @ 394,675 CZK\nFees are 0.38498857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (78.934999994887012942907794492 CZK)\nThe limits being 0.10 % (12.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13915248 BTC (66,198.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.04 % (-11,278.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,454.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03148816 BTC (12,427.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.43 CZK over 622 transactions" + } + ] + }, + { + "id": 1866, + "type": "message", + "date": "2022-12-02T21:00:17", + "date_unixtime": "1670011217", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027811 BTC for 109.62 CZK @ 394,143 CZK\nFees are 0.38499567 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (86.71145999680346431228788486 CZK)\nThe limits being 0.10 % (12.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13943059 BTC (66,308.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.12 % (-11,352.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,344.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03176627 BTC (12,520.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.43 CZK over 623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027811 BTC for 109.62 CZK @ 394,143 CZK\nFees are 0.38499567 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.69 % (86.71145999680346431228788486 CZK)\nThe limits being 0.10 % (12.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13943059 BTC (66,308.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.12 % (-11,352.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,344.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03176627 BTC (12,520.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.43 CZK over 623 transactions" + } + ] + }, + { + "id": 1867, + "type": "message", + "date": "2022-12-03T01:00:43", + "date_unixtime": "1670025643", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027677 BTC for 109.62 CZK @ 396,056 CZK\nFees are 0.38499990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (91.09279338984436432237142902 CZK)\nThe limits being 0.10 % (12.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13970736 BTC (66,418.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.69 % (-11,086.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,234.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03204304 BTC (12,690.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.44 CZK over 624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027677 BTC for 109.62 CZK @ 396,056 CZK\nFees are 0.38499990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.72 % (91.09279338984436432237142902 CZK)\nThe limits being 0.10 % (12.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13970736 BTC (66,418.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.69 % (-11,086.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,234.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03204304 BTC (12,690.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.44 CZK over 624 transactions" + } + ] + }, + { + "id": 1868, + "type": "message", + "date": "2022-12-03T05:01:38", + "date_unixtime": "1670040098", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027767 BTC for 109.61 CZK @ 394,760 CZK\nFees are 0.38498829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (90.79479999818404877415307094 CZK)\nThe limits being 0.10 % (12.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.13998503 BTC (66,528.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.94 % (-11,268.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,014.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03259861 BTC (12,868.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.45 CZK over 625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027767 BTC for 109.61 CZK @ 394,760 CZK\nFees are 0.38498829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.71 % (90.79479999818404877415307094 CZK)\nThe limits being 0.10 % (12.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.13998503 BTC (66,528.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.94 % (-11,268.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,014.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03259861 BTC (12,868.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.45 CZK over 625 transactions" + } + ] + }, + { + "id": 1869, + "type": "message", + "date": "2022-12-03T09:00:12", + "date_unixtime": "1670054412", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027858 BTC for 109.61 CZK @ 393,470 CZK\nFees are 0.38498781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (82.62869999692010549765461205 CZK)\nThe limits being 0.10 % (12.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14026361 BTC (66,638.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.18 % (-11,448.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,904.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03287719 BTC (12,936.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.45 CZK over 626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027858 BTC for 109.61 CZK @ 393,470 CZK\nFees are 0.38498781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.64 % (82.62869999692010549765461205 CZK)\nThe limits being 0.10 % (12.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14026361 BTC (66,638.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.18 % (-11,448.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,904.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03287719 BTC (12,936.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.45 CZK over 626 transactions" + } + ] + }, + { + "id": 1870, + "type": "message", + "date": "2022-12-03T13:00:07", + "date_unixtime": "1670068807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027895 BTC for 109.62 CZK @ 392,957 CZK\nFees are 0.38499653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (66.802689998162909472697860765 CZK)\nThe limits being 0.10 % (13.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14054256 BTC (66,748.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.26 % (-11,521.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,794.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03315614 BTC (13,028.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.46 CZK over 627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027895 BTC for 109.62 CZK @ 392,957 CZK\nFees are 0.38499653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (66.802689998162909472697860765 CZK)\nThe limits being 0.10 % (13.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14054256 BTC (66,748.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.26 % (-11,521.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,794.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03315614 BTC (13,028.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.46 CZK over 627 transactions" + } + ] + }, + { + "id": 1871, + "type": "message", + "date": "2022-12-03T17:00:46", + "date_unixtime": "1670083246", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027857 BTC for 109.62 CZK @ 393,496 CZK\nFees are 0.38499898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (11.804866293170442919215920857 CZK)\nThe limits being 0.10 % (13.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14082113 BTC (66,858.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.12 % (-11,445.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,684.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03343471 BTC (13,156.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.46 CZK over 628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027857 BTC for 109.62 CZK @ 393,496 CZK\nFees are 0.38499898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (11.804866293170442919215920857 CZK)\nThe limits being 0.10 % (13.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14082113 BTC (66,858.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.12 % (-11,445.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,684.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03343471 BTC (13,156.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.46 CZK over 628 transactions" + } + ] + }, + { + "id": 1872, + "type": "message", + "date": "2022-12-03T21:00:06", + "date_unixtime": "1670097606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027872 BTC for 109.61 CZK @ 393,275 CZK\nFees are 0.38499039 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (43.260249996853721504012649186 CZK)\nThe limits being 0.10 % (13.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14109985 BTC (66,968.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.14 % (-11,477.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,574.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03371343 BTC (13,258.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.47 CZK over 629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027872 BTC for 109.61 CZK @ 393,275 CZK\nFees are 0.38499039 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (43.260249996853721504012649186 CZK)\nThe limits being 0.10 % (13.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14109985 BTC (66,968.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.14 % (-11,477.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,574.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03371343 BTC (13,258.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.47 CZK over 629 transactions" + } + ] + }, + { + "id": 1873, + "type": "message", + "date": "2022-12-04T01:00:11", + "date_unixtime": "1670112011", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027980 BTC for 109.61 CZK @ 391,761 CZK\nFees are 0.38499433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (47.011319996880111888590077686 CZK)\nThe limits being 0.10 % (13.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14137965 BTC (67,078.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.43 % (-11,691.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,464.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03399323 BTC (13,317.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.47 CZK over 630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027980 BTC for 109.61 CZK @ 391,761 CZK\nFees are 0.38499433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.35 % (47.011319996880111888590077686 CZK)\nThe limits being 0.10 % (13.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14137965 BTC (67,078.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.43 % (-11,691.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,464.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03399323 BTC (13,317.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.47 CZK over 630 transactions" + } + ] + }, + { + "id": 1874, + "type": "message", + "date": "2022-12-04T05:01:45", + "date_unixtime": "1670126505", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027824 BTC for 109.61 CZK @ 393,955 CZK\nFees are 0.38499191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (31.516399997937065010817515350 CZK)\nThe limits being 0.10 % (13.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14165789 BTC (67,188.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.94 % (-11,381.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,244.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03455000 BTC (13,611.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.48 CZK over 631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027824 BTC for 109.61 CZK @ 393,955 CZK\nFees are 0.38499191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (31.516399997937065010817515350 CZK)\nThe limits being 0.10 % (13.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14165789 BTC (67,188.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.94 % (-11,381.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,244.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03455000 BTC (13,611.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.48 CZK over 631 transactions" + } + ] + }, + { + "id": 1875, + "type": "message", + "date": "2022-12-04T09:00:40", + "date_unixtime": "1670140840", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027800 BTC for 109.62 CZK @ 394,299 CZK\nFees are 0.38499571 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (11.828969999247238980116355346 CZK)\nThe limits being 0.10 % (13.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14193589 BTC (67,298.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.84 % (-11,333.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,134.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03482800 BTC (13,732.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.48 CZK over 632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027800 BTC for 109.62 CZK @ 394,299 CZK\nFees are 0.38499571 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (11.828969999247238980116355346 CZK)\nThe limits being 0.10 % (13.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14193589 BTC (67,298.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.84 % (-11,333.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,134.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03482800 BTC (13,732.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.48 CZK over 632 transactions" + } + ] + }, + { + "id": 1876, + "type": "message", + "date": "2022-12-04T13:00:14", + "date_unixtime": "1670155214", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027888 BTC for 109.62 CZK @ 393,055 CZK\nFees are 0.38499591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (7.8610999996855526597814133606 CZK)\nThe limits being 0.10 % (13.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14221477 BTC (67,408.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.08 % (-11,510.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,024.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03510688 BTC (13,798.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.49 CZK over 633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027888 BTC for 109.62 CZK @ 393,055 CZK\nFees are 0.38499591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (7.8610999996855526597814133606 CZK)\nThe limits being 0.10 % (13.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14221477 BTC (67,408.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.08 % (-11,510.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,024.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03510688 BTC (13,798.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.49 CZK over 633 transactions" + } + ] + }, + { + "id": 1877, + "type": "message", + "date": "2022-12-04T17:00:20", + "date_unixtime": "1670169620", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027743 BTC for 109.61 CZK @ 395,106 CZK\nFees are 0.38499268 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (19.755299999725216509186092917 CZK)\nThe limits being 0.10 % (13.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14249220 BTC (67,518.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.62 % (-11,218.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,914.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03538431 BTC (13,980.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.50 CZK over 634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027743 BTC for 109.61 CZK @ 395,106 CZK\nFees are 0.38499268 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (19.755299999725216509186092917 CZK)\nThe limits being 0.10 % (13.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14249220 BTC (67,518.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.62 % (-11,218.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,914.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03538431 BTC (13,980.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.50 CZK over 634 transactions" + } + ] + }, + { + "id": 1878, + "type": "message", + "date": "2022-12-04T21:00:14", + "date_unixtime": "1670184014", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027678 BTC for 109.61 CZK @ 396,034 CZK\nFees are 0.38499279 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (39.603399997544543227974435743 CZK)\nThe limits being 0.10 % (14.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14276898 BTC (67,628.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.39 % (-11,087.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,804.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03566109 BTC (14,123.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.50 CZK over 635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027678 BTC for 109.61 CZK @ 396,034 CZK\nFees are 0.38499279 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (39.603399997544543227974435743 CZK)\nThe limits being 0.10 % (14.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14276898 BTC (67,628.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.39 % (-11,087.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,804.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03566109 BTC (14,123.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.50 CZK over 635 transactions" + } + ] + }, + { + "id": 1879, + "type": "message", + "date": "2022-12-05T01:00:06", + "date_unixtime": "1670198406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027652 BTC for 109.61 CZK @ 396,401 CZK\nFees are 0.38498757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (31.712079998322088515452678246 CZK)\nThe limits being 0.10 % (14.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14304550 BTC (67,738.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.29 % (-11,035.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,694.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03593761 BTC (14,245.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.51 CZK over 636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027652 BTC for 109.61 CZK @ 396,401 CZK\nFees are 0.38498757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (31.712079998322088515452678246 CZK)\nThe limits being 0.10 % (14.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14304550 BTC (67,738.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.29 % (-11,035.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,694.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03593761 BTC (14,245.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.51 CZK over 636 transactions" + } + ] + }, + { + "id": 1880, + "type": "message", + "date": "2022-12-05T05:00:14", + "date_unixtime": "1670212814", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027612 BTC for 109.62 CZK @ 396,986 CZK\nFees are 0.38499800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (15.879439999982676884706222702 CZK)\nThe limits being 0.10 % (14.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14332162 BTC (67,848.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.14 % (-10,951.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,584.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03621373 BTC (14,376.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.51 CZK over 637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027612 BTC for 109.62 CZK @ 396,986 CZK\nFees are 0.38499800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (15.879439999982676884706222702 CZK)\nThe limits being 0.10 % (14.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14332162 BTC (67,848.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.14 % (-10,951.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,584.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03621373 BTC (14,376.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.51 CZK over 637 transactions" + } + ] + }, + { + "id": 1881, + "type": "message", + "date": "2022-12-05T09:00:08", + "date_unixtime": "1670227208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027301 BTC for 109.61 CZK @ 401,500 CZK\nFees are 0.38499007 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (16.059999999634990583760836925 CZK)\nThe limits being 0.10 % (14.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14359463 BTC (67,958.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 401,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.16 % (-10,305.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,474.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03648674 BTC (14,649.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.52 CZK over 638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027301 BTC for 109.61 CZK @ 401,500 CZK\nFees are 0.38499007 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (16.059999999634990583760836925 CZK)\nThe limits being 0.10 % (14.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14359463 BTC (67,958.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 401,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.16 % (-10,305.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,474.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03648674 BTC (14,649.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.52 CZK over 638 transactions" + } + ] + }, + { + "id": 1882, + "type": "message", + "date": "2022-12-05T13:00:05", + "date_unixtime": "1670241605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027405 BTC for 109.62 CZK @ 399,983 CZK\nFees are 0.38499648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (47.997959998243694960359049839 CZK)\nThe limits being 0.10 % (14.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14386868 BTC (68,068.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 399,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.46 % (-10,523.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,364.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03676079 BTC (14,703.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.52 CZK over 639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027405 BTC for 109.62 CZK @ 399,983 CZK\nFees are 0.38499648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (47.997959998243694960359049839 CZK)\nThe limits being 0.10 % (14.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14386868 BTC (68,068.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 399,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.46 % (-10,523.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,364.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03676079 BTC (14,703.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.52 CZK over 639 transactions" + } + ] + }, + { + "id": 1883, + "type": "message", + "date": "2022-12-05T17:00:03", + "date_unixtime": "1670256003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027717 BTC for 109.61 CZK @ 395,471 CZK\nFees are 0.38498720 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (47.456519995795643918220420539 CZK)\nThe limits being 0.10 % (14.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14414585 BTC (68,178.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.39 % (-11,172.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,254.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03703796 BTC (14,647.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.53 CZK over 640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027717 BTC for 109.61 CZK @ 395,471 CZK\nFees are 0.38498720 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (47.456519995795643918220420539 CZK)\nThe limits being 0.10 % (14.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14414585 BTC (68,178.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.39 % (-11,172.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,254.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03703796 BTC (14,647.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.53 CZK over 640 transactions" + } + ] + }, + { + "id": 1884, + "type": "message", + "date": "2022-12-05T21:00:03", + "date_unixtime": "1670270403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027871 BTC for 109.62 CZK @ 393,295 CZK\nFees are 0.38499616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (39.329499998900550738269452919 CZK)\nThe limits being 0.10 % (14.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14442456 BTC (68,288.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.82 % (-11,487.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,144.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03731667 BTC (14,676.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.53 CZK over 641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027871 BTC for 109.62 CZK @ 393,295 CZK\nFees are 0.38499616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (39.329499998900550738269452919 CZK)\nThe limits being 0.10 % (14.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14442456 BTC (68,288.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.82 % (-11,487.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,144.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03731667 BTC (14,676.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.53 CZK over 641 transactions" + } + ] + }, + { + "id": 1885, + "type": "message", + "date": "2022-12-06T01:00:04", + "date_unixtime": "1670284804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027810 BTC for 109.62 CZK @ 394,160 CZK\nFees are 0.38499843 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (43.357599997635030360297749678 CZK)\nThe limits being 0.10 % (14.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14470266 BTC (68,398.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.61 % (-11,362.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,034.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03759477 BTC (14,818.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.54 CZK over 642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027810 BTC for 109.62 CZK @ 394,160 CZK\nFees are 0.38499843 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.29 % (43.357599997635030360297749678 CZK)\nThe limits being 0.10 % (14.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14470266 BTC (68,398.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.61 % (-11,362.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,034.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03759477 BTC (14,818.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.54 CZK over 642 transactions" + } + ] + }, + { + "id": 1886, + "type": "message", + "date": "2022-12-06T05:00:04", + "date_unixtime": "1670299204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027748 BTC for 109.62 CZK @ 395,040 CZK\nFees are 0.38499790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.752008373604306507158633696 CZK)\nThe limits being 0.10 % (14.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14498014 BTC (68,508.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.40 % (-11,235.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,924.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03787225 BTC (14,961.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.55 CZK over 643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027748 BTC for 109.62 CZK @ 395,040 CZK\nFees are 0.38499790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (19.752008373604306507158633696 CZK)\nThe limits being 0.10 % (14.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14498014 BTC (68,508.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.40 % (-11,235.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,924.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03787225 BTC (14,961.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.55 CZK over 643 transactions" + } + ] + }, + { + "id": 1887, + "type": "message", + "date": "2022-12-06T09:00:03", + "date_unixtime": "1670313603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027682 BTC for 109.61 CZK @ 395,971 CZK\nFees are 0.38498718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (11.879129999700851945580109095 CZK)\nThe limits being 0.10 % (15.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14525696 BTC (68,618.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.18 % (-11,100.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,814.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03814907 BTC (15,105.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.55 CZK over 644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027682 BTC for 109.61 CZK @ 395,971 CZK\nFees are 0.38498718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (11.879129999700851945580109095 CZK)\nThe limits being 0.10 % (15.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14525696 BTC (68,618.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.18 % (-11,100.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,814.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03814907 BTC (15,105.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.55 CZK over 644 transactions" + } + ] + }, + { + "id": 1888, + "type": "message", + "date": "2022-12-06T13:00:03", + "date_unixtime": "1670328003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027830 BTC for 109.61 CZK @ 393,870 CZK\nFees are 0.38499185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (55.141799998245451018453021323 CZK)\nThe limits being 0.10 % (15.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14553526 BTC (68,728.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.60 % (-11,406.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,704.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03842737 BTC (15,135.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.56 CZK over 645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027830 BTC for 109.61 CZK @ 393,870 CZK\nFees are 0.38499185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (55.141799998245451018453021323 CZK)\nThe limits being 0.10 % (15.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14553526 BTC (68,728.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.60 % (-11,406.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,704.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03842737 BTC (15,135.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.56 CZK over 645 transactions" + } + ] + }, + { + "id": 1889, + "type": "message", + "date": "2022-12-06T17:00:04", + "date_unixtime": "1670342404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027815 BTC for 109.61 CZK @ 394,081 CZK\nFees are 0.38499047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (59.112149997030884444440861802 CZK)\nThe limits being 0.10 % (15.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14581341 BTC (68,838.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.53 % (-11,376.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,594.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03870552 BTC (15,253.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.56 CZK over 646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027815 BTC for 109.61 CZK @ 394,081 CZK\nFees are 0.38499047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.39 % (59.112149997030884444440861802 CZK)\nThe limits being 0.10 % (15.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14581341 BTC (68,838.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.53 % (-11,376.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,594.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03870552 BTC (15,253.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.56 CZK over 646 transactions" + } + ] + }, + { + "id": 1890, + "type": "message", + "date": "2022-12-06T21:00:04", + "date_unixtime": "1670356804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027756 BTC for 109.61 CZK @ 394,923 CZK\nFees are 0.38499468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (71.086139995101451017418283735 CZK)\nThe limits being 0.10 % (15.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14609097 BTC (68,948.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.32 % (-11,253.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,484.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03898308 BTC (15,395.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.57 CZK over 647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027756 BTC for 109.61 CZK @ 394,923 CZK\nFees are 0.38499468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (71.086139995101451017418283735 CZK)\nThe limits being 0.10 % (15.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14609097 BTC (68,948.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.32 % (-11,253.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,484.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03898308 BTC (15,395.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.57 CZK over 647 transactions" + } + ] + }, + { + "id": 1891, + "type": "message", + "date": "2022-12-07T01:00:05", + "date_unixtime": "1670371205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027592 BTC for 109.62 CZK @ 397,272 CZK\nFees are 0.38499630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (67.536239615751942714850011040 CZK)\nThe limits being 0.10 % (15.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14636689 BTC (69,058.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.80 % (-10,910.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,374.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03925900 BTC (15,596.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.57 CZK over 648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027592 BTC for 109.62 CZK @ 397,272 CZK\nFees are 0.38499630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.43 % (67.536239615751942714850011040 CZK)\nThe limits being 0.10 % (15.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14636689 BTC (69,058.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.80 % (-10,910.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,374.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03925900 BTC (15,596.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.57 CZK over 648 transactions" + } + ] + }, + { + "id": 1892, + "type": "message", + "date": "2022-12-07T05:00:03", + "date_unixtime": "1670385603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027659 BTC for 109.61 CZK @ 396,304 CZK\nFees are 0.38499080 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (39.630399999365898447231212683 CZK)\nThe limits being 0.10 % (15.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14664348 BTC (69,168.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.98 % (-11,053.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,264.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03953559 BTC (15,668.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.58 CZK over 649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027659 BTC for 109.61 CZK @ 396,304 CZK\nFees are 0.38499080 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (39.630399999365898447231212683 CZK)\nThe limits being 0.10 % (15.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14664348 BTC (69,168.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.98 % (-11,053.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,264.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03953559 BTC (15,668.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.58 CZK over 649 transactions" + } + ] + }, + { + "id": 1893, + "type": "message", + "date": "2022-12-07T09:00:03", + "date_unixtime": "1670400003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027977 BTC for 109.61 CZK @ 391,797 CZK\nFees are 0.38498842 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (39.179699998783611828343799882 CZK)\nThe limits being 0.10 % (15.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14692325 BTC (69,278.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.91 % (-11,714.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,154.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03981536 BTC (15,599.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.58 CZK over 650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027977 BTC for 109.61 CZK @ 391,797 CZK\nFees are 0.38498842 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (39.179699998783611828343799882 CZK)\nThe limits being 0.10 % (15.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14692325 BTC (69,278.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.91 % (-11,714.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,154.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03981536 BTC (15,599.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.58 CZK over 650 transactions" + } + ] + }, + { + "id": 1894, + "type": "message", + "date": "2022-12-07T13:00:03", + "date_unixtime": "1670414403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028057 BTC for 109.62 CZK @ 390,687 CZK\nFees are 0.38499546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (7.8137399999598653172391834764 CZK)\nThe limits being 0.10 % (15.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14720382 BTC (69,388.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.12 % (-11,877.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,044.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04009593 BTC (15,664.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.59 CZK over 651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028057 BTC for 109.62 CZK @ 390,687 CZK\nFees are 0.38499546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (7.8137399999598653172391834764 CZK)\nThe limits being 0.10 % (15.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14720382 BTC (69,388.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.12 % (-11,877.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,044.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04009593 BTC (15,664.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.59 CZK over 651 transactions" + } + ] + }, + { + "id": 1895, + "type": "message", + "date": "2022-12-07T17:00:04", + "date_unixtime": "1670428804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028063 BTC for 109.61 CZK @ 390,598 CZK\nFees are 0.38499007 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (42.965779996644676675146235229 CZK)\nThe limits being 0.10 % (15.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14748445 BTC (69,498.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.11 % (-11,891.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 934.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04037656 BTC (15,771.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.59 CZK over 652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028063 BTC for 109.61 CZK @ 390,598 CZK\nFees are 0.38499007 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (42.965779996644676675146235229 CZK)\nThe limits being 0.10 % (15.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14748445 BTC (69,498.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.11 % (-11,891.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 934.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04037656 BTC (15,771.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.59 CZK over 652 transactions" + } + ] + }, + { + "id": 1896, + "type": "message", + "date": "2022-12-07T21:00:03", + "date_unixtime": "1670443203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028136 BTC for 109.61 CZK @ 389,583 CZK\nFees are 0.38498852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (38.958299998200781200968631401 CZK)\nThe limits being 0.10 % (15.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14776581 BTC (69,608.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.30 % (-12,041.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 824.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04065792 BTC (15,839.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.60 CZK over 653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028136 BTC for 109.61 CZK @ 389,583 CZK\nFees are 0.38498852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.25 % (38.958299998200781200968631401 CZK)\nThe limits being 0.10 % (15.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14776581 BTC (69,608.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.30 % (-12,041.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 824.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04065792 BTC (15,839.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.60 CZK over 653 transactions" + } + ] + }, + { + "id": 1897, + "type": "message", + "date": "2022-12-08T01:00:04", + "date_unixtime": "1670457604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028136 BTC for 109.61 CZK @ 389,583 CZK\nFees are 0.38498852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.687489999460234360290589420 CZK)\nThe limits being 0.10 % (15.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14804717 BTC (69,718.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.27 % (-12,041.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 714.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04093928 BTC (15,949.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.60 CZK over 654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028136 BTC for 109.61 CZK @ 389,583 CZK\nFees are 0.38498852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.687489999460234360290589420 CZK)\nThe limits being 0.10 % (15.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14804717 BTC (69,718.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.27 % (-12,041.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 714.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04093928 BTC (15,949.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.60 CZK over 654 transactions" + } + ] + }, + { + "id": 1898, + "type": "message", + "date": "2022-12-08T05:00:04", + "date_unixtime": "1670472004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028063 BTC for 109.61 CZK @ 390,597 CZK\nFees are 0.38498932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.905972388164071226955522045 CZK)\nThe limits being 0.10 % (16.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14832780 BTC (69,828.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.03 % (-11,891.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 604.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04121991 BTC (16,100.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.61 CZK over 655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028063 BTC for 109.61 CZK @ 390,597 CZK\nFees are 0.38498932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.905972388164071226955522045 CZK)\nThe limits being 0.10 % (16.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14832780 BTC (69,828.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.03 % (-11,891.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 604.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04121991 BTC (16,100.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.61 CZK over 655 transactions" + } + ] + }, + { + "id": 1899, + "type": "message", + "date": "2022-12-08T09:00:38", + "date_unixtime": "1670486438", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028124 BTC for 109.62 CZK @ 389,757 CZK\nFees are 0.38499619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.897569999809371509204344317 CZK)\nThe limits being 0.10 % (16.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14860904 BTC (69,938.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.18 % (-12,017.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 494.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04150115 BTC (16,175.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.61 CZK over 656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028124 BTC for 109.62 CZK @ 389,757 CZK\nFees are 0.38499619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.897569999809371509204344317 CZK)\nThe limits being 0.10 % (16.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14860904 BTC (69,938.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.18 % (-12,017.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 494.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04150115 BTC (16,175.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.61 CZK over 656 transactions" + } + ] + }, + { + "id": 1900, + "type": "message", + "date": "2022-12-08T13:00:04", + "date_unixtime": "1670500804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028047 BTC for 109.61 CZK @ 390,826 CZK\nFees are 0.38499501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (15.633033442742891056827896670 CZK)\nThe limits being 0.10 % (16.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14888951 BTC (70,048.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.93 % (-11,858.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 384.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04178162 BTC (16,329.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.62 CZK over 657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028047 BTC for 109.61 CZK @ 390,826 CZK\nFees are 0.38499501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (15.633033442742891056827896670 CZK)\nThe limits being 0.10 % (16.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14888951 BTC (70,048.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.93 % (-11,858.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 384.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04178162 BTC (16,329.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.62 CZK over 657 transactions" + } + ] + }, + { + "id": 1901, + "type": "message", + "date": "2022-12-08T17:00:04", + "date_unixtime": "1670515204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028098 BTC for 109.61 CZK @ 390,110 CZK\nFees are 0.38498864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.505499998705505887767076744 CZK)\nThe limits being 0.10 % (16.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14917049 BTC (70,158.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.05 % (-11,965.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 274.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04206260 BTC (16,409.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.62 CZK over 658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028098 BTC for 109.61 CZK @ 390,110 CZK\nFees are 0.38498864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.505499998705505887767076744 CZK)\nThe limits being 0.10 % (16.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14917049 BTC (70,158.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.05 % (-11,965.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 274.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04206260 BTC (16,409.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.62 CZK over 658 transactions" + } + ] + }, + { + "id": 1902, + "type": "message", + "date": "2022-12-08T21:00:03", + "date_unixtime": "1670529603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027564 BTC for 109.62 CZK @ 397,675 CZK\nFees are 0.38499576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (23.860499997939297786437065396 CZK)\nThe limits being 0.10 % (16.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14944613 BTC (70,268.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.42 % (-10,837.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 164.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04233824 BTC (16,836.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.63 CZK over 659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027564 BTC for 109.62 CZK @ 397,675 CZK\nFees are 0.38499576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (23.860499997939297786437065396 CZK)\nThe limits being 0.10 % (16.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14944613 BTC (70,268.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.42 % (-10,837.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 164.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04233824 BTC (16,836.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.63 CZK over 659 transactions" + } + ] + }, + { + "id": 1903, + "type": "message", + "date": "2022-12-09T01:00:03", + "date_unixtime": "1670544003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027611 BTC for 109.62 CZK @ 397,000 CZK\nFees are 0.38499764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.9699999998195443469496687708 CZK)\nThe limits being 0.10 % (16.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14972224 BTC (70,378.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.54 % (-10,938.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 54.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04261435 BTC (16,917.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.63 CZK over 660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027611 BTC for 109.62 CZK @ 397,000 CZK\nFees are 0.38499764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.9699999998195443469496687708 CZK)\nThe limits being 0.10 % (16.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14972224 BTC (70,378.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.54 % (-10,938.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 54.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04261435 BTC (16,917.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.63 CZK over 660 transactions" + } + ] + }, + { + "id": 1904, + "type": "message", + "date": "2022-12-09T05:00:00", + "date_unixtime": "1670558400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1905, + "type": "message", + "date": "2022-12-09T09:00:00", + "date_unixtime": "1670572800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1906, + "type": "message", + "date": "2022-12-09T13:00:00", + "date_unixtime": "1670587200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1907, + "type": "message", + "date": "2022-12-09T17:00:01", + "date_unixtime": "1670601601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1908, + "type": "message", + "date": "2022-12-09T21:00:00", + "date_unixtime": "1670616000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1909, + "type": "message", + "date": "2022-12-10T01:00:01", + "date_unixtime": "1670630401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1910, + "type": "message", + "date": "2022-12-10T05:00:00", + "date_unixtime": "1670644800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1911, + "type": "message", + "date": "2022-12-10T09:00:00", + "date_unixtime": "1670659200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1912, + "type": "message", + "date": "2022-12-10T13:00:00", + "date_unixtime": "1670673600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1913, + "type": "message", + "date": "2022-12-10T17:00:00", + "date_unixtime": "1670688000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1914, + "type": "message", + "date": "2022-12-10T21:00:00", + "date_unixtime": "1670702400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (54.52521909 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 1915, + "type": "message", + "date": "2022-12-11T01:00:03", + "date_unixtime": "1670716803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027707 BTC for 109.61 CZK @ 395,614 CZK\nFees are 0.38498745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.780699998484029684317254716 CZK)\nThe limits being 0.10 % (16.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.14999931 BTC (70,488.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.81 % (-11,146.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,944.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04289142 BTC (16,968.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.64 CZK over 661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027707 BTC for 109.61 CZK @ 395,614 CZK\nFees are 0.38498745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (19.780699998484029684317254716 CZK)\nThe limits being 0.10 % (16.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.14999931 BTC (70,488.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.81 % (-11,146.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,944.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04289142 BTC (16,968.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.64 CZK over 661 transactions" + } + ] + }, + { + "id": 1916, + "type": "message", + "date": "2022-12-11T05:00:04", + "date_unixtime": "1670731204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027656 BTC for 109.61 CZK @ 396,350 CZK\nFees are 0.38499372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (7.926999999567611133667396971 CZK)\nThe limits being 0.10 % (17.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15027587 BTC (70,598.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.63 % (-11,036.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,834.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04316798 BTC (17,109.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.64 CZK over 662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027656 BTC for 109.61 CZK @ 396,350 CZK\nFees are 0.38499372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (7.926999999567611133667396971 CZK)\nThe limits being 0.10 % (17.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15027587 BTC (70,598.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.63 % (-11,036.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,834.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04316798 BTC (17,109.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.64 CZK over 662 transactions" + } + ] + }, + { + "id": 1917, + "type": "message", + "date": "2022-12-11T09:00:03", + "date_unixtime": "1670745603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027602 BTC for 109.62 CZK @ 397,130 CZK\nFees are 0.38499817 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (7.942599999342927245402629815 CZK)\nThe limits being 0.10 % (17.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15055189 BTC (70,708.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.44 % (-10,919.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,724.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04344400 BTC (17,252.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.65 CZK over 663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027602 BTC for 109.62 CZK @ 397,130 CZK\nFees are 0.38499817 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (7.942599999342927245402629815 CZK)\nThe limits being 0.10 % (17.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15055189 BTC (70,708.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.44 % (-10,919.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,724.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04344400 BTC (17,252.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.65 CZK over 663 transactions" + } + ] + }, + { + "id": 1918, + "type": "message", + "date": "2022-12-11T13:00:04", + "date_unixtime": "1670760004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027649 BTC for 109.61 CZK @ 396,450 CZK\nFees are 0.38499339 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.893499999810781978075469986 CZK)\nThe limits being 0.10 % (17.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15082838 BTC (70,818.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,530 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.56 % (-11,022.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,614.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04372049 BTC (17,332.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.65 CZK over 664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027649 BTC for 109.61 CZK @ 396,450 CZK\nFees are 0.38499339 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.893499999810781978075469986 CZK)\nThe limits being 0.10 % (17.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15082838 BTC (70,818.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,530 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.56 % (-11,022.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,614.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04372049 BTC (17,332.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.65 CZK over 664 transactions" + } + ] + }, + { + "id": 1919, + "type": "message", + "date": "2022-12-11T17:00:04", + "date_unixtime": "1670774404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027649 BTC for 109.61 CZK @ 396,450 CZK\nFees are 0.38499339 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.893499999810781978075469986 CZK)\nThe limits being 0.10 % (17.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15110487 BTC (70,928.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.54 % (-11,022.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,504.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04399698 BTC (17,442.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.66 CZK over 665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027649 BTC for 109.61 CZK @ 396,450 CZK\nFees are 0.38499339 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.893499999810781978075469986 CZK)\nThe limits being 0.10 % (17.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15110487 BTC (70,928.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.54 % (-11,022.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,504.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04399698 BTC (17,442.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.66 CZK over 665 transactions" + } + ] + }, + { + "id": 1920, + "type": "message", + "date": "2022-12-11T21:00:35", + "date_unixtime": "1670788835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027612 BTC for 109.61 CZK @ 396,977 CZK\nFees are 0.38498928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (15.879079999662199251771342674 CZK)\nThe limits being 0.10 % (17.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15138099 BTC (71,038.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.41 % (-10,943.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,394.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04427310 BTC (17,575.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.66 CZK over 666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027612 BTC for 109.61 CZK @ 396,977 CZK\nFees are 0.38498928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (15.879079999662199251771342674 CZK)\nThe limits being 0.10 % (17.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15138099 BTC (71,038.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.41 % (-10,943.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,394.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04427310 BTC (17,575.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.66 CZK over 666 transactions" + } + ] + }, + { + "id": 1921, + "type": "message", + "date": "2022-12-12T01:00:03", + "date_unixtime": "1670803203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027719 BTC for 109.61 CZK @ 395,443 CZK\nFees are 0.38498772 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.9088599994179612310770666964 CZK)\nThe limits being 0.10 % (17.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15165818 BTC (71,148.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 395,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.71 % (-11,176.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,284.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04455029 BTC (17,617.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.67 CZK over 667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027719 BTC for 109.61 CZK @ 395,443 CZK\nFees are 0.38498772 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.9088599994179612310770666964 CZK)\nThe limits being 0.10 % (17.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15165818 BTC (71,148.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 395,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.71 % (-11,176.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,284.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04455029 BTC (17,617.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.67 CZK over 667 transactions" + } + ] + }, + { + "id": 1922, + "type": "message", + "date": "2022-12-12T05:00:04", + "date_unixtime": "1670817604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028038 BTC for 109.62 CZK @ 390,955 CZK\nFees are 0.38499867 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.9095499999946687769779876999 CZK)\nThe limits being 0.10 % (17.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15193856 BTC (71,258.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.64 % (-11,857.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,174.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04483067 BTC (17,526.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.67 CZK over 668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028038 BTC for 109.62 CZK @ 390,955 CZK\nFees are 0.38499867 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (3.9095499999946687769779876999 CZK)\nThe limits being 0.10 % (17.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15193856 BTC (71,258.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.64 % (-11,857.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,174.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04483067 BTC (17,526.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.67 CZK over 668 transactions" + } + ] + }, + { + "id": 1923, + "type": "message", + "date": "2022-12-12T09:00:05", + "date_unixtime": "1670832005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027958 BTC for 109.61 CZK @ 392,069 CZK\nFees are 0.38499406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.762069999083613675905701388 CZK)\nThe limits being 0.10 % (17.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15221814 BTC (71,368.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.38 % (-11,688.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,064.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04511025 BTC (17,686.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.68 CZK over 669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027958 BTC for 109.61 CZK @ 392,069 CZK\nFees are 0.38499406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (11.762069999083613675905701388 CZK)\nThe limits being 0.10 % (17.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15221814 BTC (71,368.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.38 % (-11,688.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,064.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04511025 BTC (17,686.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.68 CZK over 669 transactions" + } + ] + }, + { + "id": 1924, + "type": "message", + "date": "2022-12-12T13:00:04", + "date_unixtime": "1670846404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027989 BTC for 109.61 CZK @ 391,627 CZK\nFees are 0.38498644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.8325399997432972591214610382 CZK)\nThe limits being 0.10 % (17.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15249803 BTC (71,478.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 391,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.45 % (-11,756.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,954.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04539014 BTC (17,776.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.68 CZK over 670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027989 BTC for 109.61 CZK @ 391,627 CZK\nFees are 0.38498644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.8325399997432972591214610382 CZK)\nThe limits being 0.10 % (17.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15249803 BTC (71,478.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 391,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.45 % (-11,756.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,954.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04539014 BTC (17,776.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.68 CZK over 670 transactions" + } + ] + }, + { + "id": 1925, + "type": "message", + "date": "2022-12-12T17:00:05", + "date_unixtime": "1670860805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027876 BTC for 109.62 CZK @ 393,226 CZK\nFees are 0.38499767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (15.729039998690192019136923765 CZK)\nThe limits being 0.10 % (17.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15277679 BTC (71,588.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 393,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.08 % (-11,512.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,844.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04566890 BTC (17,958.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.69 CZK over 671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027876 BTC for 109.62 CZK @ 393,226 CZK\nFees are 0.38499767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (15.729039998690192019136923765 CZK)\nThe limits being 0.10 % (17.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15277679 BTC (71,588.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 393,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.08 % (-11,512.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,844.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04566890 BTC (17,958.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.69 CZK over 671 transactions" + } + ] + }, + { + "id": 1926, + "type": "message", + "date": "2022-12-12T21:00:04", + "date_unixtime": "1670875204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027779 BTC for 109.62 CZK @ 394,600 CZK\nFees are 0.38499856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (27.621999997740009753472192515 CZK)\nThe limits being 0.10 % (18.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15305458 BTC (71,698.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 394,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.76 % (-11,303.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,734.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04594669 BTC (18,130.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.69 CZK over 672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027779 BTC for 109.62 CZK @ 394,600 CZK\nFees are 0.38499856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (27.621999997740009753472192515 CZK)\nThe limits being 0.10 % (18.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15305458 BTC (71,698.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 394,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.76 % (-11,303.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,734.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04594669 BTC (18,130.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.69 CZK over 672 transactions" + } + ] + }, + { + "id": 1927, + "type": "message", + "date": "2022-12-13T01:00:36", + "date_unixtime": "1670889636", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027542 BTC for 109.61 CZK @ 397,986 CZK\nFees are 0.38498933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (31.838879998720620446981784074 CZK)\nThe limits being 0.10 % (18.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15333000 BTC (71,808.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.02 % (-10,785.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,624.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04622211 BTC (18,395.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.70 CZK over 673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027542 BTC for 109.61 CZK @ 397,986 CZK\nFees are 0.38498933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (31.838879998720620446981784074 CZK)\nThe limits being 0.10 % (18.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15333000 BTC (71,808.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.02 % (-10,785.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,624.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04622211 BTC (18,395.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.70 CZK over 673 transactions" + } + ] + }, + { + "id": 1928, + "type": "message", + "date": "2022-12-13T05:00:04", + "date_unixtime": "1670904004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027627 BTC for 109.61 CZK @ 396,766 CZK\nFees are 0.38499368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (11.902979998931960529286599951 CZK)\nThe limits being 0.10 % (18.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15360627 BTC (71,918.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.26 % (-10,972.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,514.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04649838 BTC (18,448.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.70 CZK over 674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027627 BTC for 109.61 CZK @ 396,766 CZK\nFees are 0.38499368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (11.902979998931960529286599951 CZK)\nThe limits being 0.10 % (18.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15360627 BTC (71,918.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.26 % (-10,972.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,514.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04649838 BTC (18,448.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.70 CZK over 674 transactions" + } + ] + }, + { + "id": 1929, + "type": "message", + "date": "2022-12-13T09:00:03", + "date_unixtime": "1670918403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027644 BTC for 109.61 CZK @ 396,516 CZK\nFees are 0.38498785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (23.790959999861575500074727602 CZK)\nThe limits being 0.10 % (18.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15388271 BTC (72,028.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.29 % (-11,011.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,404.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04677482 BTC (18,546.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.71 CZK over 675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027644 BTC for 109.61 CZK @ 396,516 CZK\nFees are 0.38498785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (23.790959999861575500074727602 CZK)\nThe limits being 0.10 % (18.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15388271 BTC (72,028.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.29 % (-11,011.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,404.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04677482 BTC (18,546.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.71 CZK over 675 transactions" + } + ] + }, + { + "id": 1930, + "type": "message", + "date": "2022-12-13T13:00:04", + "date_unixtime": "1670932804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027238 BTC for 109.61 CZK @ 402,434 CZK\nFees are 0.38499519 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (28.17037999866317071540452092 CZK)\nThe limits being 0.10 % (18.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15415509 BTC (72,138.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 402,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.00 % (-10,101.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,294.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04704720 BTC (18,933.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.71 CZK over 676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027238 BTC for 109.61 CZK @ 402,434 CZK\nFees are 0.38499519 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (28.17037999866317071540452092 CZK)\nThe limits being 0.10 % (18.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15415509 BTC (72,138.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 402,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.00 % (-10,101.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,294.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04704720 BTC (18,933.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.71 CZK over 676 transactions" + } + ] + }, + { + "id": 1931, + "type": "message", + "date": "2022-12-13T17:00:38", + "date_unixtime": "1670947238", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026975 BTC for 109.62 CZK @ 406,359 CZK\nFees are 0.38499648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (24.381539999806054157991053556 CZK)\nThe limits being 0.10 % (19.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15442484 BTC (72,248.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 406,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.14 % (-9,496.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,184.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04731695 BTC (19,227.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.72 CZK over 677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026975 BTC for 109.62 CZK @ 406,359 CZK\nFees are 0.38499648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (24.381539999806054157991053556 CZK)\nThe limits being 0.10 % (19.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15442484 BTC (72,248.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 406,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.14 % (-9,496.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,184.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04731695 BTC (19,227.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.72 CZK over 677 transactions" + } + ] + }, + { + "id": 1932, + "type": "message", + "date": "2022-12-13T21:00:04", + "date_unixtime": "1670961604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026995 BTC for 109.61 CZK @ 406,050 CZK\nFees are 0.38498895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (20.302499999769283152603598094 CZK)\nThe limits being 0.10 % (19.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15469479 BTC (72,358.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 406,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.19 % (-9,544.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,074.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04758690 BTC (19,322.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.72 CZK over 678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026995 BTC for 109.61 CZK @ 406,050 CZK\nFees are 0.38498895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (20.302499999769283152603598094 CZK)\nThe limits being 0.10 % (19.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15469479 BTC (72,358.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 406,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.19 % (-9,544.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,074.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04758690 BTC (19,322.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.72 CZK over 678 transactions" + } + ] + }, + { + "id": 1933, + "type": "message", + "date": "2022-12-14T01:00:04", + "date_unixtime": "1670976004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026928 BTC for 109.62 CZK @ 407,068 CZK\nFees are 0.38499624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (12.212039999040790388719694971 CZK)\nThe limits being 0.10 % (19.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15496407 BTC (72,468.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 407,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.95 % (-9,387.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,964.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04785618 BTC (19,480.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.73 CZK over 679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026928 BTC for 109.62 CZK @ 407,068 CZK\nFees are 0.38499624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (12.212039999040790388719694971 CZK)\nThe limits being 0.10 % (19.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15496407 BTC (72,468.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 407,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.95 % (-9,387.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,964.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04785618 BTC (19,480.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.73 CZK over 679 transactions" + } + ] + }, + { + "id": 1934, + "type": "message", + "date": "2022-12-14T05:00:36", + "date_unixtime": "1670990436", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026928 BTC for 109.62 CZK @ 407,068 CZK\nFees are 0.38499624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (12.212039999040790388719694971 CZK)\nThe limits being 0.10 % (19.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15523335 BTC (72,578.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 407,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.93 % (-9,387.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,854.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04812546 BTC (19,590.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.73 CZK over 680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026928 BTC for 109.62 CZK @ 407,068 CZK\nFees are 0.38499624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (12.212039999040790388719694971 CZK)\nThe limits being 0.10 % (19.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15523335 BTC (72,578.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 407,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.93 % (-9,387.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,854.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04812546 BTC (19,590.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.73 CZK over 680 transactions" + } + ] + }, + { + "id": 1935, + "type": "message", + "date": "2022-12-14T09:00:03", + "date_unixtime": "1671004803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026928 BTC for 109.62 CZK @ 407,069 CZK\nFees are 0.38499718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (4.0706899999585526711175176838 CZK)\nThe limits being 0.10 % (19.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15550263 BTC (72,688.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 407,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.92 % (-9,388.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,744.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04839474 BTC (19,700.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.74 CZK over 681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026928 BTC for 109.62 CZK @ 407,069 CZK\nFees are 0.38499718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (4.0706899999585526711175176838 CZK)\nThe limits being 0.10 % (19.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15550263 BTC (72,688.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 407,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.92 % (-9,388.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,744.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04839474 BTC (19,700.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.74 CZK over 681 transactions" + } + ] + }, + { + "id": 1936, + "type": "message", + "date": "2022-12-14T13:00:04", + "date_unixtime": "1671019204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026921 BTC for 109.62 CZK @ 407,173 CZK\nFees are 0.38499544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (24.430379999632429470738970567 CZK)\nThe limits being 0.10 % (19.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15577184 BTC (72,798.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 407,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.87 % (-9,372.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,634.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04866395 BTC (19,814.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.74 CZK over 682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026921 BTC for 109.62 CZK @ 407,173 CZK\nFees are 0.38499544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (24.430379999632429470738970567 CZK)\nThe limits being 0.10 % (19.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15577184 BTC (72,798.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 407,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.87 % (-9,372.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,634.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04866395 BTC (19,814.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.74 CZK over 682 transactions" + } + ] + }, + { + "id": 1937, + "type": "message", + "date": "2022-12-14T17:00:04", + "date_unixtime": "1671033604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026592 BTC for 109.61 CZK @ 412,209 CZK\nFees are 0.38499394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (32.976719999856099320249164028 CZK)\nThe limits being 0.10 % (20.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15603776 BTC (72,908.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 412,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -11.78 % (-8,588.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,524.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04892987 BTC (20,169.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.75 CZK over 683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026592 BTC for 109.61 CZK @ 412,209 CZK\nFees are 0.38499394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (32.976719999856099320249164028 CZK)\nThe limits being 0.10 % (20.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15603776 BTC (72,908.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 412,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -11.78 % (-8,588.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,524.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04892987 BTC (20,169.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.75 CZK over 683 transactions" + } + ] + }, + { + "id": 1938, + "type": "message", + "date": "2022-12-14T21:00:03", + "date_unixtime": "1671048003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027015 BTC for 109.61 CZK @ 405,753 CZK\nFees are 0.38499238 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (36.517769998232172958222014177 CZK)\nThe limits being 0.10 % (19.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15630791 BTC (73,018.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 405,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.14 % (-9,595.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,414.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04920002 BTC (19,963.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.75 CZK over 684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027015 BTC for 109.61 CZK @ 405,753 CZK\nFees are 0.38499238 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (36.517769998232172958222014177 CZK)\nThe limits being 0.10 % (19.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15630791 BTC (73,018.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 405,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.14 % (-9,595.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,414.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04920002 BTC (19,963.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.75 CZK over 684 transactions" + } + ] + }, + { + "id": 1939, + "type": "message", + "date": "2022-12-15T01:00:03", + "date_unixtime": "1671062403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027030 BTC for 109.61 CZK @ 405,526 CZK\nFees are 0.38499064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (40.552599999152061384857032941 CZK)\nThe limits being 0.10 % (20.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15657821 BTC (73,128.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 405,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.17 % (-9,631.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,304.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04947032 BTC (20,061.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.76 CZK over 685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027030 BTC for 109.61 CZK @ 405,526 CZK\nFees are 0.38499064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (40.552599999152061384857032941 CZK)\nThe limits being 0.10 % (20.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15657821 BTC (73,128.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 405,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.17 % (-9,631.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,304.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04947032 BTC (20,061.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.76 CZK over 685 transactions" + } + ] + }, + { + "id": 1940, + "type": "message", + "date": "2022-12-15T05:00:04", + "date_unixtime": "1671076804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027101 BTC for 109.62 CZK @ 404,472 CZK\nFees are 0.38499864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (40.447199996867169474934846227 CZK)\nThe limits being 0.10 % (20.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15684922 BTC (73,238.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 404,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.38 % (-9,797.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,194.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04974133 BTC (20,118.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.76 CZK over 686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027101 BTC for 109.62 CZK @ 404,472 CZK\nFees are 0.38499864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (40.447199996867169474934846227 CZK)\nThe limits being 0.10 % (20.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15684922 BTC (73,238.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 404,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.38 % (-9,797.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,194.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04974133 BTC (20,118.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.76 CZK over 686 transactions" + } + ] + }, + { + "id": 1941, + "type": "message", + "date": "2022-12-15T09:00:07", + "date_unixtime": "1671091207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027072 BTC for 109.61 CZK @ 404,896 CZK\nFees are 0.38498982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (36.440639997376204560633527334 CZK)\nThe limits being 0.10 % (20.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15711994 BTC (73,348.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 404,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.27 % (-9,731.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,084.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05001205 BTC (20,249.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.77 CZK over 687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027072 BTC for 109.61 CZK @ 404,896 CZK\nFees are 0.38498982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (36.440639997376204560633527334 CZK)\nThe limits being 0.10 % (20.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15711994 BTC (73,348.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 404,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.27 % (-9,731.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,084.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05001205 BTC (20,249.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.77 CZK over 687 transactions" + } + ] + }, + { + "id": 1942, + "type": "message", + "date": "2022-12-15T13:00:36", + "date_unixtime": "1671105636", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027047 BTC for 109.61 CZK @ 405,276 CZK\nFees are 0.38499528 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (36.474839997009026472934259430 CZK)\nThe limits being 0.10 % (20.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15739041 BTC (73,458.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 405,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.17 % (-9,671.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,974.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05028252 BTC (20,378.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.77 CZK over 688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027047 BTC for 109.61 CZK @ 405,276 CZK\nFees are 0.38499528 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (36.474839997009026472934259430 CZK)\nThe limits being 0.10 % (20.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15739041 BTC (73,458.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 405,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.17 % (-9,671.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,974.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05028252 BTC (20,378.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.77 CZK over 688 transactions" + } + ] + }, + { + "id": 1943, + "type": "message", + "date": "2022-12-15T17:00:04", + "date_unixtime": "1671120004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027566 BTC for 109.62 CZK @ 397,648 CZK\nFees are 0.38499756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (39.764799997512876737267347784 CZK)\nThe limits being 0.10 % (20.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15766607 BTC (73,568.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.78 % (-10,872.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,864.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05055818 BTC (20,104.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.78 CZK over 689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027566 BTC for 109.62 CZK @ 397,648 CZK\nFees are 0.38499756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (39.764799997512876737267347784 CZK)\nThe limits being 0.10 % (20.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15766607 BTC (73,568.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.78 % (-10,872.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,864.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05055818 BTC (20,104.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.78 CZK over 689 transactions" + } + ] + }, + { + "id": 1944, + "type": "message", + "date": "2022-12-15T21:00:03", + "date_unixtime": "1671134403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027498 BTC for 109.61 CZK @ 398,620 CZK\nFees are 0.38498660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (47.834399997129836103856880580 CZK)\nThe limits being 0.10 % (20.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15794105 BTC (73,678.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 398,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.55 % (-10,719.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,754.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05083316 BTC (20,263.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.78 CZK over 690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027498 BTC for 109.61 CZK @ 398,620 CZK\nFees are 0.38498660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (47.834399997129836103856880580 CZK)\nThe limits being 0.10 % (20.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15794105 BTC (73,678.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 398,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.55 % (-10,719.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,754.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05083316 BTC (20,263.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.78 CZK over 690 transactions" + } + ] + }, + { + "id": 1945, + "type": "message", + "date": "2022-12-16T01:00:04", + "date_unixtime": "1671148804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027680 BTC for 109.61 CZK @ 396,000 CZK\nFees are 0.38498756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (47.52000 CZK)\nThe limits being 0.10 % (20.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15821785 BTC (73,788.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 396,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.09 % (-11,134.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,644.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05110996 BTC (20,239.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.78 CZK over 691 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027680 BTC for 109.61 CZK @ 396,000 CZK\nFees are 0.38498756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (47.52000 CZK)\nThe limits being 0.10 % (20.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15821785 BTC (73,788.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 396,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.09 % (-11,134.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,644.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05110996 BTC (20,239.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.78 CZK over 691 transactions" + } + ] + }, + { + "id": 1946, + "type": "message", + "date": "2022-12-16T05:00:04", + "date_unixtime": "1671163204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027577 BTC for 109.61 CZK @ 397,484 CZK\nFees are 0.38499234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (11.924519998983143434285617339 CZK)\nThe limits being 0.10 % (20.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15849362 BTC (73,898.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 397,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.75 % (-10,899.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,534.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05138573 BTC (20,425.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.79 CZK over 692 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027577 BTC for 109.61 CZK @ 397,484 CZK\nFees are 0.38499234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (11.924519998983143434285617339 CZK)\nThe limits being 0.10 % (20.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15849362 BTC (73,898.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 397,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.75 % (-10,899.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,534.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05138573 BTC (20,425.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.79 CZK over 692 transactions" + } + ] + }, + { + "id": 1947, + "type": "message", + "date": "2022-12-16T09:00:04", + "date_unixtime": "1671177604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027408 BTC for 109.62 CZK @ 399,940 CZK\nFees are 0.38499723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (15.997599999534611928885212324 CZK)\nThe limits being 0.10 % (20.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15876770 BTC (74,008.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 399,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.20 % (-10,510.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,424.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05165981 BTC (20,660.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.79 CZK over 693 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027408 BTC for 109.62 CZK @ 399,940 CZK\nFees are 0.38499723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (15.997599999534611928885212324 CZK)\nThe limits being 0.10 % (20.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15876770 BTC (74,008.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 399,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.20 % (-10,510.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,424.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05165981 BTC (20,660.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.79 CZK over 693 transactions" + } + ] + }, + { + "id": 1948, + "type": "message", + "date": "2022-12-16T13:00:03", + "date_unixtime": "1671192003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028147 BTC for 109.62 CZK @ 389,441 CZK\nFees are 0.38499865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (15.577639999441327223832300878 CZK)\nThe limits being 0.10 % (20.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15904917 BTC (74,118.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 389,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.43 % (-12,178.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,314.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05194128 BTC (20,228.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.80 CZK over 694 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028147 BTC for 109.62 CZK @ 389,441 CZK\nFees are 0.38499865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (15.577639999441327223832300878 CZK)\nThe limits being 0.10 % (20.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15904917 BTC (74,118.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 389,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.43 % (-12,178.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,314.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05194128 BTC (20,228.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.80 CZK over 694 transactions" + } + ] + }, + { + "id": 1949, + "type": "message", + "date": "2022-12-16T17:00:04", + "date_unixtime": "1671206404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028260 BTC for 109.61 CZK @ 387,876 CZK\nFees are 0.38499092 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (34.908839999492223079095776248 CZK)\nThe limits being 0.10 % (20.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15933177 BTC (74,228.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.74 % (-12,427.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,204.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05222388 BTC (20,256.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.80 CZK over 695 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028260 BTC for 109.61 CZK @ 387,876 CZK\nFees are 0.38499092 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (34.908839999492223079095776248 CZK)\nThe limits being 0.10 % (20.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15933177 BTC (74,228.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.74 % (-12,427.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,204.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05222388 BTC (20,256.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.80 CZK over 695 transactions" + } + ] + }, + { + "id": 1950, + "type": "message", + "date": "2022-12-16T21:00:04", + "date_unixtime": "1671220804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028361 BTC for 109.62 CZK @ 386,501 CZK\nFees are 0.38499721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (46.380119999943078531230042898 CZK)\nThe limits being 0.10 % (20.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15961538 BTC (74,338.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.01 % (-12,646.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,094.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05250749 BTC (20,294.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.81 CZK over 696 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028361 BTC for 109.62 CZK @ 386,501 CZK\nFees are 0.38499721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (46.380119999943078531230042898 CZK)\nThe limits being 0.10 % (20.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15961538 BTC (74,338.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.01 % (-12,646.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,094.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05250749 BTC (20,294.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.81 CZK over 696 transactions" + } + ] + }, + { + "id": 1951, + "type": "message", + "date": "2022-12-17T01:00:07", + "date_unixtime": "1671235207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028719 BTC for 109.61 CZK @ 381,678 CZK\nFees are 0.38499214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (53.434919996662678223626687143 CZK)\nThe limits being 0.10 % (20.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.15990257 BTC (74,448.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.02 % (-13,417.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,984.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05279468 BTC (20,150.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.81 CZK over 697 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028719 BTC for 109.61 CZK @ 381,678 CZK\nFees are 0.38499214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (53.434919996662678223626687143 CZK)\nThe limits being 0.10 % (20.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.15990257 BTC (74,448.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.02 % (-13,417.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,984.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05279468 BTC (20,150.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.81 CZK over 697 transactions" + } + ] + }, + { + "id": 1952, + "type": "message", + "date": "2022-12-17T05:00:03", + "date_unixtime": "1671249603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028650 BTC for 109.62 CZK @ 382,601 CZK\nFees are 0.38499594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (49.738129998756533633156552416 CZK)\nThe limits being 0.10 % (20.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16018907 BTC (74,558.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.80 % (-13,269.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,874.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05308118 BTC (20,308.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.82 CZK over 698 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028650 BTC for 109.62 CZK @ 382,601 CZK\nFees are 0.38499594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (49.738129998756533633156552416 CZK)\nThe limits being 0.10 % (20.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16018907 BTC (74,558.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.80 % (-13,269.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,874.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05308118 BTC (20,308.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.82 CZK over 698 transactions" + } + ] + }, + { + "id": 1953, + "type": "message", + "date": "2022-12-17T09:00:04", + "date_unixtime": "1671264004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028538 BTC for 109.62 CZK @ 384,106 CZK\nFees are 0.38499939 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (42.251659997703042504922588027 CZK)\nThe limits being 0.10 % (20.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16047445 BTC (74,668.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.45 % (-13,029.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,764.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05336656 BTC (20,498.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.82 CZK over 699 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028538 BTC for 109.62 CZK @ 384,106 CZK\nFees are 0.38499939 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (42.251659997703042504922588027 CZK)\nThe limits being 0.10 % (20.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16047445 BTC (74,668.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.45 % (-13,029.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,764.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05336656 BTC (20,498.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.82 CZK over 699 transactions" + } + ] + }, + { + "id": 1954, + "type": "message", + "date": "2022-12-17T13:00:05", + "date_unixtime": "1671278405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028601 BTC for 109.62 CZK @ 383,257 CZK\nFees are 0.38499646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (38.325699999653323434062387182 CZK)\nThe limits being 0.10 % (20.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16076046 BTC (74,778.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.61 % (-13,165.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,654.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05365257 BTC (20,562.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.83 CZK over 700 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028601 BTC for 109.62 CZK @ 383,257 CZK\nFees are 0.38499646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (38.325699999653323434062387182 CZK)\nThe limits being 0.10 % (20.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16076046 BTC (74,778.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.61 % (-13,165.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,654.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05365257 BTC (20,562.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.83 CZK over 700 transactions" + } + ] + }, + { + "id": 1955, + "type": "message", + "date": "2022-12-17T17:00:04", + "date_unixtime": "1671292804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028612 BTC for 109.62 CZK @ 383,112 CZK\nFees are 0.38499882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (42.142319996536656861058990305 CZK)\nThe limits being 0.10 % (20.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16104658 BTC (74,888.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.61 % (-13,189.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,544.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05393869 BTC (20,664.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.83 CZK over 701 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028612 BTC for 109.62 CZK @ 383,112 CZK\nFees are 0.38499882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (42.142319996536656861058990305 CZK)\nThe limits being 0.10 % (20.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16104658 BTC (74,888.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.61 % (-13,189.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,544.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05393869 BTC (20,664.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.83 CZK over 701 transactions" + } + ] + }, + { + "id": 1956, + "type": "message", + "date": "2022-12-17T21:00:03", + "date_unixtime": "1671307203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028622 BTC for 109.61 CZK @ 382,966 CZK\nFees are 0.38498660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (42.126259996239143014820916952 CZK)\nThe limits being 0.10 % (20.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16133280 BTC (74,998.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.62 % (-13,213.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,434.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05422491 BTC (20,766.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.84 CZK over 702 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028622 BTC for 109.61 CZK @ 382,966 CZK\nFees are 0.38498660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (42.126259996239143014820916952 CZK)\nThe limits being 0.10 % (20.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16133280 BTC (74,998.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.62 % (-13,213.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,434.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05422491 BTC (20,766.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.84 CZK over 702 transactions" + } + ] + }, + { + "id": 1957, + "type": "message", + "date": "2022-12-18T01:00:36", + "date_unixtime": "1671321636", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028482 BTC for 109.62 CZK @ 384,860 CZK\nFees are 0.38499818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (38.485999997131030089301586711 CZK)\nThe limits being 0.10 % (20.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16161762 BTC (75,108.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.19 % (-12,908.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,324.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05450973 BTC (20,978.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.84 CZK over 703 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028482 BTC for 109.62 CZK @ 384,860 CZK\nFees are 0.38499818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (38.485999997131030089301586711 CZK)\nThe limits being 0.10 % (20.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16161762 BTC (75,108.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.19 % (-12,908.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,324.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05450973 BTC (20,978.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.84 CZK over 703 transactions" + } + ] + }, + { + "id": 1958, + "type": "message", + "date": "2022-12-18T05:00:03", + "date_unixtime": "1671336003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028555 BTC for 109.61 CZK @ 383,865 CZK\nFees are 0.38498703 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.515949999201708396378739898 CZK)\nThe limits being 0.10 % (21.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16190317 BTC (75,218.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.38 % (-13,069.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,214.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05479528 BTC (21,033.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.84 CZK over 704 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028555 BTC for 109.61 CZK @ 383,865 CZK\nFees are 0.38498703 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.515949999201708396378739898 CZK)\nThe limits being 0.10 % (21.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16190317 BTC (75,218.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.38 % (-13,069.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,214.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05479528 BTC (21,033.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.84 CZK over 704 transactions" + } + ] + }, + { + "id": 1959, + "type": "message", + "date": "2022-12-18T09:00:04", + "date_unixtime": "1671350404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028517 BTC for 109.62 CZK @ 384,387 CZK\nFees are 0.38499753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.6877399998067569342417434758 CZK)\nThe limits being 0.10 % (21.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16218834 BTC (75,328.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.24 % (-12,985.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,104.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05508045 BTC (21,172.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.85 CZK over 705 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028517 BTC for 109.62 CZK @ 384,387 CZK\nFees are 0.38499753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.6877399998067569342417434758 CZK)\nThe limits being 0.10 % (21.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16218834 BTC (75,328.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.24 % (-12,985.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,104.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05508045 BTC (21,172.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.85 CZK over 705 transactions" + } + ] + }, + { + "id": 1960, + "type": "message", + "date": "2022-12-18T13:00:03", + "date_unixtime": "1671364803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028580 BTC for 109.62 CZK @ 383,542 CZK\nFees are 0.38499986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.506259999728033757286864763 CZK)\nThe limits being 0.10 % (21.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16247414 BTC (75,438.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.40 % (-13,122.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,994.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05536625 BTC (21,235.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.85 CZK over 706 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028580 BTC for 109.62 CZK @ 383,542 CZK\nFees are 0.38499986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.506259999728033757286864763 CZK)\nThe limits being 0.10 % (21.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16247414 BTC (75,438.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.40 % (-13,122.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,994.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05536625 BTC (21,235.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.85 CZK over 706 transactions" + } + ] + }, + { + "id": 1961, + "type": "message", + "date": "2022-12-18T17:00:04", + "date_unixtime": "1671379204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028623 BTC for 109.62 CZK @ 382,964 CZK\nFees are 0.38499804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (15.318559999997214793118053205 CZK)\nThe limits being 0.10 % (21.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16276037 BTC (75,548.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.49 % (-13,216.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,884.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05565248 BTC (21,312.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.86 CZK over 707 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028623 BTC for 109.62 CZK @ 382,964 CZK\nFees are 0.38499804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (15.318559999997214793118053205 CZK)\nThe limits being 0.10 % (21.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16276037 BTC (75,548.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.49 % (-13,216.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,884.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05565248 BTC (21,312.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.86 CZK over 707 transactions" + } + ] + }, + { + "id": 1962, + "type": "message", + "date": "2022-12-18T21:00:04", + "date_unixtime": "1671393604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028507 BTC for 109.61 CZK @ 384,519 CZK\nFees are 0.38499469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (19.225949998312462665093542790 CZK)\nThe limits being 0.10 % (21.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16304544 BTC (75,658.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.14 % (-12,964.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,774.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05593755 BTC (21,509.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.86 CZK over 708 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028507 BTC for 109.61 CZK @ 384,519 CZK\nFees are 0.38499469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (19.225949998312462665093542790 CZK)\nThe limits being 0.10 % (21.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16304544 BTC (75,658.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.14 % (-12,964.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,774.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05593755 BTC (21,509.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.86 CZK over 708 transactions" + } + ] + }, + { + "id": 1963, + "type": "message", + "date": "2022-12-19T01:00:05", + "date_unixtime": "1671408005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028506 BTC for 109.61 CZK @ 384,532 CZK\nFees are 0.38499420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.6906399998797445452527743444 CZK)\nThe limits being 0.10 % (21.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16333050 BTC (75,768.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.11 % (-12,962.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,664.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05622261 BTC (21,619.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.87 CZK over 709 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028506 BTC for 109.61 CZK @ 384,532 CZK\nFees are 0.38499420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (7.6906399998797445452527743444 CZK)\nThe limits being 0.10 % (21.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16333050 BTC (75,768.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.11 % (-12,962.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,664.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05622261 BTC (21,619.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.87 CZK over 709 transactions" + } + ] + }, + { + "id": 1964, + "type": "message", + "date": "2022-12-19T05:00:04", + "date_unixtime": "1671422404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028674 BTC for 109.62 CZK @ 382,284 CZK\nFees are 0.38499920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.468519999003279273745072827 CZK)\nThe limits being 0.10 % (21.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16361724 BTC (75,878.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,755 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.57 % (-13,330.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,554.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05650935 BTC (21,602.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.87 CZK over 710 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028674 BTC for 109.62 CZK @ 382,284 CZK\nFees are 0.38499920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.468519999003279273745072827 CZK)\nThe limits being 0.10 % (21.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16361724 BTC (75,878.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,755 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.57 % (-13,330.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,554.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05650935 BTC (21,602.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.87 CZK over 710 transactions" + } + ] + }, + { + "id": 1965, + "type": "message", + "date": "2022-12-19T09:00:35", + "date_unixtime": "1671436835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028683 BTC for 109.61 CZK @ 382,152 CZK\nFees are 0.38498706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (19.107599999381587794530321228 CZK)\nThe limits being 0.10 % (21.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16390407 BTC (75,988.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.57 % (-13,352.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,444.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05679618 BTC (21,704.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.88 CZK over 711 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028683 BTC for 109.61 CZK @ 382,152 CZK\nFees are 0.38498706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (19.107599999381587794530321228 CZK)\nThe limits being 0.10 % (21.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16390407 BTC (75,988.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.57 % (-13,352.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,444.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05679618 BTC (21,704.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.88 CZK over 711 transactions" + } + ] + }, + { + "id": 1966, + "type": "message", + "date": "2022-12-19T13:00:35", + "date_unixtime": "1671451235", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028634 BTC for 109.61 CZK @ 382,808 CZK\nFees are 0.38498911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (30.624639997349501651671827238 CZK)\nThe limits being 0.10 % (21.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16419041 BTC (76,098.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.41 % (-13,244.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,334.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05708252 BTC (21,851.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.88 CZK over 712 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028634 BTC for 109.61 CZK @ 382,808 CZK\nFees are 0.38498911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (30.624639997349501651671827238 CZK)\nThe limits being 0.10 % (21.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16419041 BTC (76,098.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.41 % (-13,244.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,334.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05708252 BTC (21,851.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.88 CZK over 712 transactions" + } + ] + }, + { + "id": 1967, + "type": "message", + "date": "2022-12-19T17:00:04", + "date_unixtime": "1671465604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028740 BTC for 109.61 CZK @ 381,402 CZK\nFees are 0.38499505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.140199999375879619661040223 CZK)\nThe limits being 0.10 % (21.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16447781 BTC (76,208.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.68 % (-13,476.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,224.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05736992 BTC (21,881.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.88 CZK over 713 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028740 BTC for 109.61 CZK @ 381,402 CZK\nFees are 0.38499505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.140199999375879619661040223 CZK)\nThe limits being 0.10 % (21.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16447781 BTC (76,208.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.68 % (-13,476.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,224.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05736992 BTC (21,881.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.88 CZK over 713 transactions" + } + ] + }, + { + "id": 1968, + "type": "message", + "date": "2022-12-19T21:00:35", + "date_unixtime": "1671480035", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028915 BTC for 109.61 CZK @ 379,087 CZK\nFees are 0.38498828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (45.490439999514064598908144510 CZK)\nThe limits being 0.10 % (21.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16476696 BTC (76,318.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.16 % (-13,857.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,114.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05765907 BTC (21,857.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.89 CZK over 714 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028915 BTC for 109.61 CZK @ 379,087 CZK\nFees are 0.38498828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (45.490439999514064598908144510 CZK)\nThe limits being 0.10 % (21.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16476696 BTC (76,318.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.16 % (-13,857.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,114.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05765907 BTC (21,857.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.89 CZK over 714 transactions" + } + ] + }, + { + "id": 1969, + "type": "message", + "date": "2022-12-20T01:00:35", + "date_unixtime": "1671494435", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029162 BTC for 109.62 CZK @ 375,885 CZK\nFees are 0.38499733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (45.106199998790325350198248249 CZK)\nThe limits being 0.10 % (21.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16505858 BTC (76,428.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.82 % (-14,385.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,004.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05795069 BTC (21,782.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.89 CZK over 715 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029162 BTC for 109.62 CZK @ 375,885 CZK\nFees are 0.38499733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (45.106199998790325350198248249 CZK)\nThe limits being 0.10 % (21.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16505858 BTC (76,428.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.82 % (-14,385.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,004.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05795069 BTC (21,782.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.89 CZK over 715 transactions" + } + ] + }, + { + "id": 1970, + "type": "message", + "date": "2022-12-20T05:00:03", + "date_unixtime": "1671508803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028638 BTC for 109.61 CZK @ 382,754 CZK\nFees are 0.38498858 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.275399997626854789575963143 CZK)\nThe limits being 0.10 % (22.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16534496 BTC (76,538.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.31 % (-13,251.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,894.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05823707 BTC (22,290.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.90 CZK over 716 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028638 BTC for 109.61 CZK @ 382,754 CZK\nFees are 0.38498858 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.275399997626854789575963143 CZK)\nThe limits being 0.10 % (22.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16534496 BTC (76,538.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.31 % (-13,251.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,894.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05823707 BTC (22,290.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.90 CZK over 716 transactions" + } + ] + }, + { + "id": 1971, + "type": "message", + "date": "2022-12-20T09:00:04", + "date_unixtime": "1671523204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028498 BTC for 109.61 CZK @ 384,640 CZK\nFees are 0.38499426 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (26.924799998727172280693619772 CZK)\nThe limits being 0.10 % (22.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16562994 BTC (76,648.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.88 % (-12,940.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,784.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05852205 BTC (22,509.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.90 CZK over 717 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028498 BTC for 109.61 CZK @ 384,640 CZK\nFees are 0.38499426 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (26.924799998727172280693619772 CZK)\nThe limits being 0.10 % (22.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16562994 BTC (76,648.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.88 % (-12,940.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,784.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05852205 BTC (22,509.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.90 CZK over 717 transactions" + } + ] + }, + { + "id": 1972, + "type": "message", + "date": "2022-12-20T13:00:04", + "date_unixtime": "1671537604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028612 BTC for 109.62 CZK @ 383,111 CZK\nFees are 0.38499781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (45.973319996815284627667277489 CZK)\nThe limits being 0.10 % (22.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16591606 BTC (76,758.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.19 % (-13,194.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,674.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05880817 BTC (22,530.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.91 CZK over 718 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028612 BTC for 109.62 CZK @ 383,111 CZK\nFees are 0.38499781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (45.973319996815284627667277489 CZK)\nThe limits being 0.10 % (22.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16591606 BTC (76,758.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.19 % (-13,194.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,674.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05880817 BTC (22,530.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.91 CZK over 718 transactions" + } + ] + }, + { + "id": 1973, + "type": "message", + "date": "2022-12-20T17:00:04", + "date_unixtime": "1671552004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028437 BTC for 109.62 CZK @ 385,467 CZK\nFees are 0.38499616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.546699997278926296906566723 CZK)\nThe limits being 0.10 % (22.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16620043 BTC (76,868.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.66 % (-12,803.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,564.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05909254 BTC (22,778.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.91 CZK over 719 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028437 BTC for 109.62 CZK @ 385,467 CZK\nFees are 0.38499616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.546699997278926296906566723 CZK)\nThe limits being 0.10 % (22.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16620043 BTC (76,868.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.66 % (-12,803.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,564.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05909254 BTC (22,778.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.91 CZK over 719 transactions" + } + ] + }, + { + "id": 1974, + "type": "message", + "date": "2022-12-20T21:00:39", + "date_unixtime": "1671566439", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028409 BTC for 109.61 CZK @ 385,844 CZK\nFees are 0.38499325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (46.301279997112433211206305754 CZK)\nThe limits being 0.10 % (22.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16648452 BTC (76,978.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.55 % (-12,741.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,454.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05937663 BTC (22,910.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.91 CZK over 720 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028409 BTC for 109.61 CZK @ 385,844 CZK\nFees are 0.38499325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (46.301279997112433211206305754 CZK)\nThe limits being 0.10 % (22.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16648452 BTC (76,978.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.55 % (-12,741.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,454.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05937663 BTC (22,910.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.91 CZK over 720 transactions" + } + ] + }, + { + "id": 1975, + "type": "message", + "date": "2022-12-21T01:00:35", + "date_unixtime": "1671580835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028421 BTC for 109.61 CZK @ 385,675 CZK\nFees are 0.38498718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (50.137749999487210477063082422 CZK)\nThe limits being 0.10 % (23.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16676873 BTC (77,088.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.57 % (-12,769.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,344.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05966084 BTC (23,009.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.92 CZK over 721 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028421 BTC for 109.61 CZK @ 385,675 CZK\nFees are 0.38498718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (50.137749999487210477063082422 CZK)\nThe limits being 0.10 % (23.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16676873 BTC (77,088.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.57 % (-12,769.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,344.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05966084 BTC (23,009.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.92 CZK over 721 transactions" + } + ] + }, + { + "id": 1976, + "type": "message", + "date": "2022-12-21T05:00:04", + "date_unixtime": "1671595204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028495 BTC for 109.61 CZK @ 384,680 CZK\nFees are 0.38499376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (50.008399999545370812613826691 CZK)\nThe limits being 0.10 % (23.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16705368 BTC (77,198.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.76 % (-12,936.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,234.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05994579 BTC (23,059.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.92 CZK over 722 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028495 BTC for 109.61 CZK @ 384,680 CZK\nFees are 0.38499376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (50.008399999545370812613826691 CZK)\nThe limits being 0.10 % (23.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16705368 BTC (77,198.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.76 % (-12,936.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,234.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05994579 BTC (23,059.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.92 CZK over 722 transactions" + } + ] + }, + { + "id": 1977, + "type": "message", + "date": "2022-12-21T09:00:04", + "date_unixtime": "1671609604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028567 BTC for 109.61 CZK @ 383,710 CZK\nFees are 0.38499330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.370999998273274958515430878 CZK)\nThe limits being 0.10 % (23.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16733935 BTC (77,308.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.94 % (-13,098.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,124.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06023146 BTC (23,111.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.93 CZK over 723 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028567 BTC for 109.61 CZK @ 383,710 CZK\nFees are 0.38499330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (38.370999998273274958515430878 CZK)\nThe limits being 0.10 % (23.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16733935 BTC (77,308.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.94 % (-13,098.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,124.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06023146 BTC (23,111.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.93 CZK over 723 transactions" + } + ] + }, + { + "id": 1978, + "type": "message", + "date": "2022-12-21T13:00:03", + "date_unixtime": "1671624003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028388 BTC for 109.62 CZK @ 386,134 CZK\nFees are 0.38499781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.584019998976388052552995613 CZK)\nThe limits being 0.10 % (23.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16762323 BTC (77,418.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.40 % (-12,693.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,014.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06051534 BTC (23,367.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.93 CZK over 724 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028388 BTC for 109.62 CZK @ 386,134 CZK\nFees are 0.38499781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.584019998976388052552995613 CZK)\nThe limits being 0.10 % (23.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16762323 BTC (77,418.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.40 % (-12,693.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,014.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06051534 BTC (23,367.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.93 CZK over 724 transactions" + } + ] + }, + { + "id": 1979, + "type": "message", + "date": "2022-12-21T17:00:04", + "date_unixtime": "1671638404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028498 BTC for 109.62 CZK @ 384,645 CZK\nFees are 0.38499926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (34.618049999260431146611814785 CZK)\nThe limits being 0.10 % (23.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16790821 BTC (77,528.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.69 % (-12,943.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,904.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06080032 BTC (23,386.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.94 CZK over 725 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028498 BTC for 109.62 CZK @ 384,645 CZK\nFees are 0.38499926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (34.618049999260431146611814785 CZK)\nThe limits being 0.10 % (23.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16790821 BTC (77,528.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.69 % (-12,943.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,904.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06080032 BTC (23,386.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.94 CZK over 725 transactions" + } + ] + }, + { + "id": 1980, + "type": "message", + "date": "2022-12-21T21:00:04", + "date_unixtime": "1671652804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028606 BTC for 109.62 CZK @ 383,191 CZK\nFees are 0.38499745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (34.487189999651990598102753067 CZK)\nThe limits being 0.10 % (23.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16819427 BTC (77,638.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.99 % (-13,187.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,794.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06108638 BTC (23,407.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.94 CZK over 726 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028606 BTC for 109.62 CZK @ 383,191 CZK\nFees are 0.38499745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (34.487189999651990598102753067 CZK)\nThe limits being 0.10 % (23.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16819427 BTC (77,638.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.99 % (-13,187.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,794.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06108638 BTC (23,407.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.94 CZK over 726 transactions" + } + ] + }, + { + "id": 1981, + "type": "message", + "date": "2022-12-22T01:00:03", + "date_unixtime": "1671667203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028578 BTC for 109.62 CZK @ 383,566 CZK\nFees are 0.38499701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (30.685279999949787333666619906 CZK)\nThe limits being 0.10 % (23.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16848005 BTC (77,748.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.88 % (-13,125.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,684.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06137216 BTC (23,540.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.94 CZK over 727 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028578 BTC for 109.62 CZK @ 383,566 CZK\nFees are 0.38499701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (30.685279999949787333666619906 CZK)\nThe limits being 0.10 % (23.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16848005 BTC (77,748.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.88 % (-13,125.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,684.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06137216 BTC (23,540.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.94 CZK over 727 transactions" + } + ] + }, + { + "id": 1982, + "type": "message", + "date": "2022-12-22T05:00:04", + "date_unixtime": "1671681604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028540 BTC for 109.62 CZK @ 384,075 CZK\nFees are 0.38499530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.407499997381274858248408076 CZK)\nThe limits being 0.10 % (23.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16876545 BTC (77,858.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.75 % (-13,039.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,574.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06165756 BTC (23,681.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.95 CZK over 728 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028540 BTC for 109.62 CZK @ 384,075 CZK\nFees are 0.38499530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.407499997381274858248408076 CZK)\nThe limits being 0.10 % (23.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16876545 BTC (77,858.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.75 % (-13,039.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,574.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06165756 BTC (23,681.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.95 CZK over 728 transactions" + } + ] + }, + { + "id": 1983, + "type": "message", + "date": "2022-12-22T09:00:04", + "date_unixtime": "1671696004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028532 BTC for 109.62 CZK @ 384,186 CZK\nFees are 0.38499862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.525579999652135791936968682 CZK)\nThe limits being 0.10 % (23.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16905077 BTC (77,968.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.70 % (-13,021.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,464.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06194288 BTC (23,797.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.95 CZK over 729 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028532 BTC for 109.62 CZK @ 384,186 CZK\nFees are 0.38499862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (11.525579999652135791936968682 CZK)\nThe limits being 0.10 % (23.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16905077 BTC (77,968.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.70 % (-13,021.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,464.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06194288 BTC (23,797.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.95 CZK over 729 transactions" + } + ] + }, + { + "id": 1984, + "type": "message", + "date": "2022-12-22T13:00:04", + "date_unixtime": "1671710404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028498 BTC for 109.62 CZK @ 384,644 CZK\nFees are 0.38499826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (42.310839998107542962393920386 CZK)\nThe limits being 0.10 % (23.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16933575 BTC (78,078.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.58 % (-12,944.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,354.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06222786 BTC (23,935.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.96 CZK over 730 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028498 BTC for 109.62 CZK @ 384,644 CZK\nFees are 0.38499826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (42.310839998107542962393920386 CZK)\nThe limits being 0.10 % (23.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16933575 BTC (78,078.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.58 % (-12,944.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,354.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06222786 BTC (23,935.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.96 CZK over 730 transactions" + } + ] + }, + { + "id": 1985, + "type": "message", + "date": "2022-12-22T17:00:03", + "date_unixtime": "1671724803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028742 BTC for 109.61 CZK @ 381,369 CZK\nFees are 0.38498853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (41.950589998882555547962619316 CZK)\nThe limits being 0.10 % (23.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16962317 BTC (78,188.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.27 % (-13,499.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,244.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06251528 BTC (23,841.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.96 CZK over 731 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028742 BTC for 109.61 CZK @ 381,369 CZK\nFees are 0.38498853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (41.950589998882555547962619316 CZK)\nThe limits being 0.10 % (23.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16962317 BTC (78,188.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.27 % (-13,499.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,244.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06251528 BTC (23,841.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.96 CZK over 731 transactions" + } + ] + }, + { + "id": 1986, + "type": "message", + "date": "2022-12-22T21:00:04", + "date_unixtime": "1671739204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028684 BTC for 109.61 CZK @ 382,145 CZK\nFees are 0.38499343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (42.035949999503203020358879189 CZK)\nThe limits being 0.10 % (24.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.16991001 BTC (78,298.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.07 % (-13,368.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,134.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06280212 BTC (23,999.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.96 CZK over 732 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028684 BTC for 109.61 CZK @ 382,145 CZK\nFees are 0.38499343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (42.035949999503203020358879189 CZK)\nThe limits being 0.10 % (24.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.16991001 BTC (78,298.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.07 % (-13,368.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,134.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06280212 BTC (23,999.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.96 CZK over 732 transactions" + } + ] + }, + { + "id": 1987, + "type": "message", + "date": "2022-12-23T01:00:04", + "date_unixtime": "1671753604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028451 BTC for 109.61 CZK @ 385,273 CZK\nFees are 0.38499185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (46.232759998190579570918326577 CZK)\nThe limits being 0.10 % (24.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17019452 BTC (78,408.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.37 % (-12,836.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,024.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06308663 BTC (24,305.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.97 CZK over 733 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028451 BTC for 109.61 CZK @ 385,273 CZK\nFees are 0.38499185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (46.232759998190579570918326577 CZK)\nThe limits being 0.10 % (24.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17019452 BTC (78,408.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.37 % (-12,836.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,024.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06308663 BTC (24,305.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.97 CZK over 733 transactions" + } + ] + }, + { + "id": 1988, + "type": "message", + "date": "2022-12-23T05:00:05", + "date_unixtime": "1671768005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028450 BTC for 109.62 CZK @ 385,292 CZK\nFees are 0.38499730 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.529199996847588799483004562 CZK)\nThe limits being 0.10 % (24.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17047902 BTC (78,518.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.35 % (-12,834.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,914.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06337113 BTC (24,416.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.97 CZK over 734 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028450 BTC for 109.62 CZK @ 385,292 CZK\nFees are 0.38499730 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.529199996847588799483004562 CZK)\nThe limits being 0.10 % (24.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17047902 BTC (78,518.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.35 % (-12,834.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,914.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06337113 BTC (24,416.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.97 CZK over 734 transactions" + } + ] + }, + { + "id": 1989, + "type": "message", + "date": "2022-12-23T09:00:04", + "date_unixtime": "1671782404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028466 BTC for 109.62 CZK @ 385,074 CZK\nFees are 0.38499586 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (15.402959999028202807772739206 CZK)\nThe limits being 0.10 % (24.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17076368 BTC (78,628.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.37 % (-12,871.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,804.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06365579 BTC (24,512.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.98 CZK over 735 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028466 BTC for 109.62 CZK @ 385,074 CZK\nFees are 0.38499586 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (15.402959999028202807772739206 CZK)\nThe limits being 0.10 % (24.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17076368 BTC (78,628.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.37 % (-12,871.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,804.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06365579 BTC (24,512.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.98 CZK over 735 transactions" + } + ] + }, + { + "id": 1990, + "type": "message", + "date": "2022-12-23T13:00:03", + "date_unixtime": "1671796803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028442 BTC for 109.61 CZK @ 385,390 CZK\nFees are 0.38498694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.53899999884379077279868537 CZK)\nThe limits being 0.10 % (24.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17104810 BTC (78,738.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.28 % (-12,818.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,694.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06394021 BTC (24,641.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.98 CZK over 736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028442 BTC for 109.61 CZK @ 385,390 CZK\nFees are 0.38498694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.53899999884379077279868537 CZK)\nThe limits being 0.10 % (24.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17104810 BTC (78,738.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.28 % (-12,818.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,694.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06394021 BTC (24,641.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.98 CZK over 736 transactions" + } + ] + }, + { + "id": 1991, + "type": "message", + "date": "2022-12-23T17:00:04", + "date_unixtime": "1671811204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028482 BTC for 109.61 CZK @ 384,855 CZK\nFees are 0.38499318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.485499998652983639489159613 CZK)\nThe limits being 0.10 % (24.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17133292 BTC (78,848.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.37 % (-12,909.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,584.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06422503 BTC (24,717.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.99 CZK over 737 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028482 BTC for 109.61 CZK @ 384,855 CZK\nFees are 0.38499318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.485499998652983639489159613 CZK)\nThe limits being 0.10 % (24.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17133292 BTC (78,848.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.37 % (-12,909.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,584.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06422503 BTC (24,717.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.99 CZK over 737 transactions" + } + ] + }, + { + "id": 1992, + "type": "message", + "date": "2022-12-23T21:00:04", + "date_unixtime": "1671825604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028479 BTC for 109.62 CZK @ 384,902 CZK\nFees are 0.38499964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.490199999289680192153055093 CZK)\nThe limits being 0.10 % (24.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17161771 BTC (78,958.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.34 % (-12,902.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,474.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06450982 BTC (24,829.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.99 CZK over 738 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028479 BTC for 109.62 CZK @ 384,902 CZK\nFees are 0.38499964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (38.490199999289680192153055093 CZK)\nThe limits being 0.10 % (24.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17161771 BTC (78,958.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.34 % (-12,902.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,474.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06450982 BTC (24,829.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.99 CZK over 738 transactions" + } + ] + }, + { + "id": 1993, + "type": "message", + "date": "2022-12-24T01:00:03", + "date_unixtime": "1671840003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028603 BTC for 109.61 CZK @ 383,225 CZK\nFees are 0.38499123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (42.154749998610777741318314610 CZK)\nThe limits being 0.10 % (24.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17190374 BTC (79,068.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.68 % (-13,190.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,364.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06479585 BTC (24,831.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.99 CZK over 739 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028603 BTC for 109.61 CZK @ 383,225 CZK\nFees are 0.38499123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (42.154749998610777741318314610 CZK)\nThe limits being 0.10 % (24.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17190374 BTC (79,068.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.68 % (-13,190.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,364.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06479585 BTC (24,831.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.99 CZK over 739 transactions" + } + ] + }, + { + "id": 1994, + "type": "message", + "date": "2022-12-24T05:00:04", + "date_unixtime": "1671854404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028491 BTC for 109.61 CZK @ 384,731 CZK\nFees are 0.38499075 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (42.320409999140105555584411073 CZK)\nThe limits being 0.10 % (25.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17218865 BTC (79,178.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.33 % (-12,931.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,254.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06508076 BTC (25,038.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.00 CZK over 740 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028491 BTC for 109.61 CZK @ 384,731 CZK\nFees are 0.38499075 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (42.320409999140105555584411073 CZK)\nThe limits being 0.10 % (25.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17218865 BTC (79,178.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.33 % (-12,931.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,254.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06508076 BTC (25,038.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.00 CZK over 740 transactions" + } + ] + }, + { + "id": 1995, + "type": "message", + "date": "2022-12-24T09:00:04", + "date_unixtime": "1671868804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028461 BTC for 109.61 CZK @ 385,134 CZK\nFees are 0.38498822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.810719998014048262653741665 CZK)\nThe limits being 0.10 % (25.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17247326 BTC (79,288.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.22 % (-12,862.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,144.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06536537 BTC (25,174.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.00 CZK over 741 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028461 BTC for 109.61 CZK @ 385,134 CZK\nFees are 0.38498822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (30.810719998014048262653741665 CZK)\nThe limits being 0.10 % (25.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17247326 BTC (79,288.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.22 % (-12,862.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,144.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06536537 BTC (25,174.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.00 CZK over 741 transactions" + } + ] + }, + { + "id": 1996, + "type": "message", + "date": "2022-12-24T13:00:03", + "date_unixtime": "1671883203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028505 BTC for 109.62 CZK @ 384,551 CZK\nFees are 0.38499972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.991629995943857960041101542 CZK)\nThe limits being 0.10 % (25.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17275831 BTC (79,398.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.33 % (-12,963.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,034.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06565042 BTC (25,245.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.01 CZK over 742 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028505 BTC for 109.62 CZK @ 384,551 CZK\nFees are 0.38499972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (49.991629995943857960041101542 CZK)\nThe limits being 0.10 % (25.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17275831 BTC (79,398.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.33 % (-12,963.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,034.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06565042 BTC (25,245.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.01 CZK over 742 transactions" + } + ] + }, + { + "id": 1997, + "type": "message", + "date": "2022-12-24T17:00:05", + "date_unixtime": "1671897605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028493 BTC for 109.61 CZK @ 384,708 CZK\nFees are 0.38499476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (53.85911999679778690562394970 CZK)\nThe limits being 0.10 % (25.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17304324 BTC (79,508.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.27 % (-12,937.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 924.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06593535 BTC (25,365.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.01 CZK over 743 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028493 BTC for 109.61 CZK @ 384,708 CZK\nFees are 0.38499476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (53.85911999679778690562394970 CZK)\nThe limits being 0.10 % (25.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17304324 BTC (79,508.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.27 % (-12,937.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 924.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06593535 BTC (25,365.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.01 CZK over 743 transactions" + } + ] + }, + { + "id": 1998, + "type": "message", + "date": "2022-12-24T21:00:03", + "date_unixtime": "1671912003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028481 BTC for 109.62 CZK @ 384,875 CZK\nFees are 0.38499967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (69.277499999606377503183225128 CZK)\nThe limits being 0.10 % (25.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17332805 BTC (79,618.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.21 % (-12,908.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 814.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06622016 BTC (25,486.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.01 CZK over 744 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028481 BTC for 109.62 CZK @ 384,875 CZK\nFees are 0.38499967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (69.277499999606377503183225128 CZK)\nThe limits being 0.10 % (25.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17332805 BTC (79,618.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.21 % (-12,908.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 814.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06622016 BTC (25,486.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.01 CZK over 744 transactions" + } + ] + }, + { + "id": 1999, + "type": "message", + "date": "2022-12-25T01:00:35", + "date_unixtime": "1671926435", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028494 BTC for 109.61 CZK @ 384,695 CZK\nFees are 0.38499526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (69.245099995876718283229165389 CZK)\nThe limits being 0.10 % (25.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17361299 BTC (79,728.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.23 % (-12,940.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 704.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06650510 BTC (25,584.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.02 CZK over 745 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028494 BTC for 109.61 CZK @ 384,695 CZK\nFees are 0.38499526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (69.245099995876718283229165389 CZK)\nThe limits being 0.10 % (25.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17361299 BTC (79,728.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.23 % (-12,940.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 704.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06650510 BTC (25,584.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.02 CZK over 745 transactions" + } + ] + }, + { + "id": 2000, + "type": "message", + "date": "2022-12-25T05:00:35", + "date_unixtime": "1671940835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028494 BTC for 109.62 CZK @ 384,698 CZK\nFees are 0.38499826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (69.245639994699537090807568333 CZK)\nThe limits being 0.10 % (25.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17389793 BTC (79,838.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.21 % (-12,940.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 594.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06679004 BTC (25,693.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.02 CZK over 746 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028494 BTC for 109.62 CZK @ 384,698 CZK\nFees are 0.38499826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (69.245639994699537090807568333 CZK)\nThe limits being 0.10 % (25.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17389793 BTC (79,838.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.21 % (-12,940.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 594.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06679004 BTC (25,693.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.02 CZK over 746 transactions" + } + ] + }, + { + "id": 2001, + "type": "message", + "date": "2022-12-25T09:00:05", + "date_unixtime": "1671955205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028499 BTC for 109.61 CZK @ 384,626 CZK\nFees are 0.38499375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (53.847639998487346289810289412 CZK)\nThe limits being 0.10 % (25.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17418292 BTC (79,948.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.20 % (-12,952.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 484.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06707503 BTC (25,798.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.03 CZK over 747 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028499 BTC for 109.61 CZK @ 384,626 CZK\nFees are 0.38499375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (53.847639998487346289810289412 CZK)\nThe limits being 0.10 % (25.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17418292 BTC (79,948.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.20 % (-12,952.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 484.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06707503 BTC (25,798.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.03 CZK over 747 transactions" + } + ] + }, + { + "id": 2002, + "type": "message", + "date": "2022-12-25T13:00:05", + "date_unixtime": "1671969605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028503 BTC for 109.61 CZK @ 384,571 CZK\nFees are 0.38499273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (15.382839999656676494564222220 CZK)\nThe limits being 0.10 % (25.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17446795 BTC (80,058.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.19 % (-12,962.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 374.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06736006 BTC (25,904.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.03 CZK over 748 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028503 BTC for 109.61 CZK @ 384,571 CZK\nFees are 0.38499273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (15.382839999656676494564222220 CZK)\nThe limits being 0.10 % (25.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17446795 BTC (80,058.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.19 % (-12,962.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 374.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06736006 BTC (25,904.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.03 CZK over 748 transactions" + } + ] + }, + { + "id": 2003, + "type": "message", + "date": "2022-12-25T17:00:35", + "date_unixtime": "1671984035", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028547 BTC for 109.61 CZK @ 383,977 CZK\nFees are 0.38499147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (57.596549994939245551209363228 CZK)\nThe limits being 0.10 % (25.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17475342 BTC (80,168.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.30 % (-13,066.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 264.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06764553 BTC (25,974.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.03 CZK over 749 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028547 BTC for 109.61 CZK @ 383,977 CZK\nFees are 0.38499147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (57.596549994939245551209363228 CZK)\nThe limits being 0.10 % (25.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17475342 BTC (80,168.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.30 % (-13,066.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 264.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06764553 BTC (25,974.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.03 CZK over 749 transactions" + } + ] + }, + { + "id": 2004, + "type": "message", + "date": "2022-12-25T21:00:03", + "date_unixtime": "1671998403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028574 BTC for 109.61 CZK @ 383,615 CZK\nFees are 0.38499214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (46.033781516913104128550702486 CZK)\nThe limits being 0.10 % (26.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17503916 BTC (80,278.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.36 % (-13,130.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 154.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06793127 BTC (26,059.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.04 CZK over 750 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028574 BTC for 109.61 CZK @ 383,615 CZK\nFees are 0.38499214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (46.033781516913104128550702486 CZK)\nThe limits being 0.10 % (26.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17503916 BTC (80,278.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.36 % (-13,130.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 154.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06793127 BTC (26,059.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.04 CZK over 750 transactions" + } + ] + }, + { + "id": 2005, + "type": "message", + "date": "2022-12-26T01:00:04", + "date_unixtime": "1672012804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028536 BTC for 109.61 CZK @ 384,123 CZK\nFees are 0.38498976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (19.206165461814403722100207446 CZK)\nThe limits being 0.10 % (26.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17532452 BTC (80,388.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.22 % (-13,042.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 44.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06821663 BTC (26,203.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.04 CZK over 751 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028536 BTC for 109.61 CZK @ 384,123 CZK\nFees are 0.38498976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (19.206165461814403722100207446 CZK)\nThe limits being 0.10 % (26.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17532452 BTC (80,388.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.22 % (-13,042.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 44.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06821663 BTC (26,203.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.04 CZK over 751 transactions" + } + ] + }, + { + "id": 2006, + "type": "message", + "date": "2022-12-26T05:00:00", + "date_unixtime": "1672027200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2007, + "type": "message", + "date": "2022-12-26T09:00:00", + "date_unixtime": "1672041600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2008, + "type": "message", + "date": "2022-12-26T13:00:01", + "date_unixtime": "1672056001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2009, + "type": "message", + "date": "2022-12-26T17:00:01", + "date_unixtime": "1672070401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2010, + "type": "message", + "date": "2022-12-26T21:00:00", + "date_unixtime": "1672084800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2011, + "type": "message", + "date": "2022-12-27T01:00:32", + "date_unixtime": "1672099232", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2012, + "type": "message", + "date": "2022-12-27T05:00:00", + "date_unixtime": "1672113600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2013, + "type": "message", + "date": "2022-12-27T09:00:00", + "date_unixtime": "1672128000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2014, + "type": "message", + "date": "2022-12-27T13:00:00", + "date_unixtime": "1672142400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (44.68200313 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2015, + "type": "message", + "date": "2022-12-27T17:00:04", + "date_unixtime": "1672156804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028574 BTC for 109.61 CZK @ 383,616 CZK\nFees are 0.38499330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (57.542399997154217256470833916 CZK)\nThe limits being 0.10 % (26.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17561026 BTC (80,498.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.31 % (-13,131.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,934.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06850237 BTC (26,278.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.05 CZK over 752 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028574 BTC for 109.61 CZK @ 383,616 CZK\nFees are 0.38499330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (57.542399997154217256470833916 CZK)\nThe limits being 0.10 % (26.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17561026 BTC (80,498.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.31 % (-13,131.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,934.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06850237 BTC (26,278.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.05 CZK over 752 transactions" + } + ] + }, + { + "id": 2016, + "type": "message", + "date": "2022-12-27T21:00:04", + "date_unixtime": "1672171204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028768 BTC for 109.61 CZK @ 381,025 CZK\nFees are 0.38498921 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (72.394749998683694943116223360 CZK)\nThe limits being 0.10 % (26.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17589794 BTC (80,608.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.86 % (-13,586.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,824.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06879005 BTC (26,210.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.05 CZK over 753 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028768 BTC for 109.61 CZK @ 381,025 CZK\nFees are 0.38498921 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (72.394749998683694943116223360 CZK)\nThe limits being 0.10 % (26.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17589794 BTC (80,608.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.86 % (-13,586.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,824.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06879005 BTC (26,210.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.05 CZK over 753 transactions" + } + ] + }, + { + "id": 2017, + "type": "message", + "date": "2022-12-28T01:00:03", + "date_unixtime": "1672185603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028710 BTC for 109.62 CZK @ 381,804 CZK\nFees are 0.38499854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (72.542759993800867982611191726 CZK)\nThe limits being 0.10 % (26.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17618504 BTC (80,718.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.66 % (-13,450.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,714.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06907715 BTC (26,373.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.05 CZK over 754 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028710 BTC for 109.62 CZK @ 381,804 CZK\nFees are 0.38499854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.28 % (72.542759993800867982611191726 CZK)\nThe limits being 0.10 % (26.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17618504 BTC (80,718.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.66 % (-13,450.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,714.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06907715 BTC (26,373.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.05 CZK over 754 transactions" + } + ] + }, + { + "id": 2018, + "type": "message", + "date": "2022-12-28T05:00:03", + "date_unixtime": "1672200003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028801 BTC for 109.61 CZK @ 380,588 CZK\nFees are 0.38498879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (57.088199997622985707449017842 CZK)\nThe limits being 0.10 % (26.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17647305 BTC (80,828.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.91 % (-13,664.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,604.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06936516 BTC (26,399.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.06 CZK over 755 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028801 BTC for 109.61 CZK @ 380,588 CZK\nFees are 0.38498879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (57.088199997622985707449017842 CZK)\nThe limits being 0.10 % (26.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17647305 BTC (80,828.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.91 % (-13,664.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,604.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06936516 BTC (26,399.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.06 CZK over 755 transactions" + } + ] + }, + { + "id": 2019, + "type": "message", + "date": "2022-12-28T09:00:04", + "date_unixtime": "1672214404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028803 BTC for 109.62 CZK @ 380,569 CZK\nFees are 0.38499630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (38.056899999396273373713130316 CZK)\nThe limits being 0.10 % (26.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17676108 BTC (80,938.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.89 % (-13,668.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,494.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06965319 BTC (26,507.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.06 CZK over 756 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028803 BTC for 109.62 CZK @ 380,569 CZK\nFees are 0.38499630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (38.056899999396273373713130316 CZK)\nThe limits being 0.10 % (26.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17676108 BTC (80,938.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.89 % (-13,668.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,494.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06965319 BTC (26,507.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.06 CZK over 756 transactions" + } + ] + }, + { + "id": 2020, + "type": "message", + "date": "2022-12-28T13:00:03", + "date_unixtime": "1672228803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028827 BTC for 109.62 CZK @ 380,253 CZK\nFees are 0.38499715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.407589999680066587632224669 CZK)\nThe limits being 0.10 % (26.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17704935 BTC (81,048.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.93 % (-13,724.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,384.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06994146 BTC (26,595.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.07 CZK over 757 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028827 BTC for 109.62 CZK @ 380,253 CZK\nFees are 0.38499715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.407589999680066587632224669 CZK)\nThe limits being 0.10 % (26.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17704935 BTC (81,048.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.93 % (-13,724.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,384.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06994146 BTC (26,595.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.07 CZK over 757 transactions" + } + ] + }, + { + "id": 2021, + "type": "message", + "date": "2022-12-28T17:00:03", + "date_unixtime": "1672243203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028919 BTC for 109.61 CZK @ 379,033 CZK\nFees are 0.38498669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (60.645279996446615069188060677 CZK)\nThe limits being 0.10 % (26.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17733854 BTC (81,158.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.18 % (-13,941.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,274.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07023065 BTC (26,619.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.07 CZK over 758 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028919 BTC for 109.61 CZK @ 379,033 CZK\nFees are 0.38498669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (60.645279996446615069188060677 CZK)\nThe limits being 0.10 % (26.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17733854 BTC (81,158.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.18 % (-13,941.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,274.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07023065 BTC (26,619.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.07 CZK over 758 transactions" + } + ] + }, + { + "id": 2022, + "type": "message", + "date": "2022-12-28T21:00:04", + "date_unixtime": "1672257604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028873 BTC for 109.61 CZK @ 379,641 CZK\nFees are 0.38499088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (72.131789999504901894041032674 CZK)\nThe limits being 0.10 % (26.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17762727 BTC (81,268.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.02 % (-13,833.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,164.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07051938 BTC (26,772.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.07 CZK over 759 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028873 BTC for 109.61 CZK @ 379,641 CZK\nFees are 0.38499088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (72.131789999504901894041032674 CZK)\nThe limits being 0.10 % (26.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17762727 BTC (81,268.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.02 % (-13,833.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,164.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07051938 BTC (26,772.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.07 CZK over 759 transactions" + } + ] + }, + { + "id": 2023, + "type": "message", + "date": "2022-12-29T01:00:03", + "date_unixtime": "1672272003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029000 BTC for 109.61 CZK @ 377,979 CZK\nFees are 0.38499146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (71.816009996735563458928233937 CZK)\nThe limits being 0.10 % (26.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17791727 BTC (81,378.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 377,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.36 % (-14,129.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,054.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07080938 BTC (26,764.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.08 CZK over 760 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029000 BTC for 109.61 CZK @ 377,979 CZK\nFees are 0.38499146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.27 % (71.816009996735563458928233937 CZK)\nThe limits being 0.10 % (26.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17791727 BTC (81,378.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 377,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.36 % (-14,129.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,054.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07080938 BTC (26,764.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.08 CZK over 760 transactions" + } + ] + }, + { + "id": 2024, + "type": "message", + "date": "2022-12-29T05:00:03", + "date_unixtime": "1672286403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028978 BTC for 109.62 CZK @ 378,271 CZK\nFees are 0.38499658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (30.261679998258562420581728873 CZK)\nThe limits being 0.10 % (26.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17820705 BTC (81,488.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 378,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.28 % (-14,077.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,944.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07109916 BTC (26,894.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.08 CZK over 761 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028978 BTC for 109.62 CZK @ 378,271 CZK\nFees are 0.38499658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (30.261679998258562420581728873 CZK)\nThe limits being 0.10 % (26.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17820705 BTC (81,488.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 378,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.28 % (-14,077.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,944.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07109916 BTC (26,894.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.08 CZK over 761 transactions" + } + ] + }, + { + "id": 2025, + "type": "message", + "date": "2022-12-29T09:00:34", + "date_unixtime": "1672300834", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028918 BTC for 109.61 CZK @ 379,050 CZK\nFees are 0.38499064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (7.5809999995520209317875023002 CZK)\nThe limits being 0.10 % (27.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17849623 BTC (81,598.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.08 % (-13,939.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,834.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07138834 BTC (27,059.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.08 CZK over 762 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028918 BTC for 109.61 CZK @ 379,050 CZK\nFees are 0.38499064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (7.5809999995520209317875023002 CZK)\nThe limits being 0.10 % (27.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17849623 BTC (81,598.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.08 % (-13,939.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,834.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07138834 BTC (27,059.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.08 CZK over 762 transactions" + } + ] + }, + { + "id": 2026, + "type": "message", + "date": "2022-12-29T13:00:04", + "date_unixtime": "1672315204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028932 BTC for 109.61 CZK @ 378,863 CZK\nFees are 0.38498701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (22.731779999780940908396720975 CZK)\nThe limits being 0.10 % (27.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17878555 BTC (81,708.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 378,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.10 % (-13,973.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,724.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07167766 BTC (27,156.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.09 CZK over 763 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028932 BTC for 109.61 CZK @ 378,863 CZK\nFees are 0.38498701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (22.731779999780940908396720975 CZK)\nThe limits being 0.10 % (27.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17878555 BTC (81,708.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 378,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.10 % (-13,973.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,724.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07167766 BTC (27,156.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.09 CZK over 763 transactions" + } + ] + }, + { + "id": 2027, + "type": "message", + "date": "2022-12-29T17:00:04", + "date_unixtime": "1672329604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029054 BTC for 109.62 CZK @ 377,284 CZK\nFees are 0.38499912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (26.409879998376989135808109355 CZK)\nThe limits being 0.10 % (27.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17907609 BTC (81,818.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 377,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.42 % (-14,255.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,614.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07196820 BTC (27,152.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.09 CZK over 764 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029054 BTC for 109.62 CZK @ 377,284 CZK\nFees are 0.38499912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (26.409879998376989135808109355 CZK)\nThe limits being 0.10 % (27.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17907609 BTC (81,818.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 377,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.42 % (-14,255.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,614.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07196820 BTC (27,152.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.09 CZK over 764 transactions" + } + ] + }, + { + "id": 2028, + "type": "message", + "date": "2022-12-29T21:00:04", + "date_unixtime": "1672344004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029034 BTC for 109.61 CZK @ 377,539 CZK\nFees are 0.38499414 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (30.20311999823995501863200504 CZK)\nThe limits being 0.10 % (27.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17936643 BTC (81,928.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 377,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.34 % (-14,210.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,504.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07225854 BTC (27,280.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.10 CZK over 765 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029034 BTC for 109.61 CZK @ 377,539 CZK\nFees are 0.38499414 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (30.20311999823995501863200504 CZK)\nThe limits being 0.10 % (27.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17936643 BTC (81,928.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 377,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.34 % (-14,210.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,504.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07225854 BTC (27,280.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.10 CZK over 765 transactions" + } + ] + }, + { + "id": 2029, + "type": "message", + "date": "2022-12-30T01:00:03", + "date_unixtime": "1672358403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028993 BTC for 109.62 CZK @ 378,078 CZK\nFees are 0.38499934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (60.492479999510560003049376162 CZK)\nThe limits being 0.10 % (27.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17965636 BTC (82,038.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 378,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.20 % (-14,114.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,394.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07254847 BTC (27,428.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.10 CZK over 766 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028993 BTC for 109.62 CZK @ 378,078 CZK\nFees are 0.38499934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.22 % (60.492479999510560003049376162 CZK)\nThe limits being 0.10 % (27.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17965636 BTC (82,038.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 378,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.20 % (-14,114.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,394.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07254847 BTC (27,428.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.10 CZK over 766 transactions" + } + ] + }, + { + "id": 2030, + "type": "message", + "date": "2022-12-30T05:00:40", + "date_unixtime": "1672372840", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029033 BTC for 109.61 CZK @ 377,553 CZK\nFees are 0.38499515 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (18.877649998504356441566905182 CZK)\nThe limits being 0.10 % (27.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.17994669 BTC (82,148.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 377,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.30 % (-14,208.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,284.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07283880 BTC (27,500.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.10 CZK over 767 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029033 BTC for 109.61 CZK @ 377,553 CZK\nFees are 0.38499515 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (18.877649998504356441566905182 CZK)\nThe limits being 0.10 % (27.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.17994669 BTC (82,148.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 377,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.30 % (-14,208.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,284.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07283880 BTC (27,500.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.10 CZK over 767 transactions" + } + ] + }, + { + "id": 2031, + "type": "message", + "date": "2022-12-30T09:00:36", + "date_unixtime": "1672387236", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029188 BTC for 109.61 CZK @ 375,540 CZK\nFees are 0.38498691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (26.287799999235237993594981632 CZK)\nThe limits being 0.10 % (27.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18023857 BTC (82,258.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.71 % (-14,571.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,174.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07313068 BTC (27,463.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.11 CZK over 768 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029188 BTC for 109.61 CZK @ 375,540 CZK\nFees are 0.38498691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (26.287799999235237993594981632 CZK)\nThe limits being 0.10 % (27.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18023857 BTC (82,258.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.71 % (-14,571.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,174.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07313068 BTC (27,463.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.11 CZK over 768 transactions" + } + ] + }, + { + "id": 2032, + "type": "message", + "date": "2022-12-30T13:00:03", + "date_unixtime": "1672401603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029309 BTC for 109.61 CZK @ 373,991 CZK\nFees are 0.38498834 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (48.618829996612048896452576005 CZK)\nThe limits being 0.10 % (27.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18053166 BTC (82,368.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 373,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.03 % (-14,851.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,064.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07342377 BTC (27,459.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.11 CZK over 769 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029309 BTC for 109.61 CZK @ 373,991 CZK\nFees are 0.38498834 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (48.618829996612048896452576005 CZK)\nThe limits being 0.10 % (27.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18053166 BTC (82,368.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 373,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.03 % (-14,851.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,064.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07342377 BTC (27,459.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.11 CZK over 769 transactions" + } + ] + }, + { + "id": 2033, + "type": "message", + "date": "2022-12-30T17:00:04", + "date_unixtime": "1672416004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029166 BTC for 109.62 CZK @ 375,833 CZK\nFees are 0.38499687 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (56.374949997575857467389132895 CZK)\nThe limits being 0.10 % (27.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18082332 BTC (82,478.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.60 % (-14,518.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,954.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07371543 BTC (27,704.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.11 CZK over 770 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029166 BTC for 109.62 CZK @ 375,833 CZK\nFees are 0.38499687 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (56.374949997575857467389132895 CZK)\nThe limits being 0.10 % (27.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18082332 BTC (82,478.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.60 % (-14,518.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,954.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07371543 BTC (27,704.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.11 CZK over 770 transactions" + } + ] + }, + { + "id": 2034, + "type": "message", + "date": "2022-12-30T21:00:04", + "date_unixtime": "1672430404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029329 BTC for 109.61 CZK @ 373,742 CZK\nFees are 0.38499455 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (52.323879995657056485600204937 CZK)\nThe limits being 0.10 % (27.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18111661 BTC (82,588.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 373,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -18.04 % (-14,897.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,844.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07400872 BTC (27,660.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.12 CZK over 771 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029329 BTC for 109.61 CZK @ 373,742 CZK\nFees are 0.38499455 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (52.323879995657056485600204937 CZK)\nThe limits being 0.10 % (27.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18111661 BTC (82,588.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 373,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -18.04 % (-14,897.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,844.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07400872 BTC (27,660.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.12 CZK over 771 transactions" + } + ] + }, + { + "id": 2035, + "type": "message", + "date": "2022-12-31T01:00:07", + "date_unixtime": "1672444807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029187 BTC for 109.62 CZK @ 375,565 CZK\nFees are 0.38499935 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (48.823449996482486375630952407 CZK)\nThe limits being 0.10 % (27.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18140848 BTC (82,698.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.62 % (-14,567.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,734.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07430059 BTC (27,904.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.12 CZK over 772 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029187 BTC for 109.62 CZK @ 375,565 CZK\nFees are 0.38499935 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (48.823449996482486375630952407 CZK)\nThe limits being 0.10 % (27.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18140848 BTC (82,698.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.62 % (-14,567.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,734.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07430059 BTC (27,904.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.12 CZK over 772 transactions" + } + ] + }, + { + "id": 2036, + "type": "message", + "date": "2022-12-31T05:00:03", + "date_unixtime": "1672459203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029270 BTC for 109.62 CZK @ 374,500 CZK\nFees are 0.38499932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.234999999489317283596922217 CZK)\nThe limits being 0.10 % (27.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18170118 BTC (82,808.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.83 % (-14,761.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,624.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07459329 BTC (27,935.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.13 CZK over 773 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029270 BTC for 109.62 CZK @ 374,500 CZK\nFees are 0.38499932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.234999999489317283596922217 CZK)\nThe limits being 0.10 % (27.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18170118 BTC (82,808.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.83 % (-14,761.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,624.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07459329 BTC (27,935.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.13 CZK over 773 transactions" + } + ] + }, + { + "id": 2037, + "type": "message", + "date": "2022-12-31T09:00:04", + "date_unixtime": "1672473604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029228 BTC for 109.61 CZK @ 375,027 CZK\nFees are 0.38498788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.250809999952949676815421378 CZK)\nThe limits being 0.10 % (28.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18199346 BTC (82,918.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.69 % (-14,665.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,514.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07488557 BTC (28,084.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.13 CZK over 774 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029228 BTC for 109.61 CZK @ 375,027 CZK\nFees are 0.38498788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.250809999952949676815421378 CZK)\nThe limits being 0.10 % (28.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18199346 BTC (82,918.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.69 % (-14,665.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,514.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07488557 BTC (28,084.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.13 CZK over 774 transactions" + } + ] + }, + { + "id": 2038, + "type": "message", + "date": "2022-12-31T13:00:04", + "date_unixtime": "1672488004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029231 BTC for 109.61 CZK @ 374,992 CZK\nFees are 0.38499146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.249759999967272699566092246 CZK)\nThe limits being 0.10 % (28.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18228577 BTC (83,028.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.67 % (-14,672.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,404.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07517788 BTC (28,191.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.13 CZK over 775 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029231 BTC for 109.61 CZK @ 374,992 CZK\nFees are 0.38499146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.249759999967272699566092246 CZK)\nThe limits being 0.10 % (28.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18228577 BTC (83,028.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.67 % (-14,672.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,404.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07517788 BTC (28,191.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.13 CZK over 775 transactions" + } + ] + }, + { + "id": 2039, + "type": "message", + "date": "2022-12-31T17:00:35", + "date_unixtime": "1672502435", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029181 BTC for 109.62 CZK @ 375,641 CZK\nFees are 0.38499809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.025639999899600908488840513 CZK)\nThe limits being 0.10 % (28.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18257758 BTC (83,138.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.51 % (-14,554.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,294.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07546969 BTC (28,349.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.14 CZK over 776 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029181 BTC for 109.62 CZK @ 375,641 CZK\nFees are 0.38499809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.025639999899600908488840513 CZK)\nThe limits being 0.10 % (28.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18257758 BTC (83,138.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.51 % (-14,554.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,294.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07546969 BTC (28,349.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.14 CZK over 776 transactions" + } + ] + }, + { + "id": 2040, + "type": "message", + "date": "2022-12-31T21:00:03", + "date_unixtime": "1672516803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029254 BTC for 109.61 CZK @ 374,695 CZK\nFees are 0.38498923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (29.975599999032578564073394722 CZK)\nThe limits being 0.10 % (28.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18287012 BTC (83,248.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.69 % (-14,727.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,184.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07576223 BTC (28,387.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.14 CZK over 777 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029254 BTC for 109.61 CZK @ 374,695 CZK\nFees are 0.38498923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (29.975599999032578564073394722 CZK)\nThe limits being 0.10 % (28.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18287012 BTC (83,248.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.69 % (-14,727.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,184.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07576223 BTC (28,387.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.14 CZK over 777 transactions" + } + ] + }, + { + "id": 2041, + "type": "message", + "date": "2023-01-01T01:00:06", + "date_unixtime": "1672531206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029303 BTC for 109.61 CZK @ 374,073 CZK\nFees are 0.38499392 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (18.703649998441621270915750782 CZK)\nThe limits being 0.10 % (28.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18316315 BTC (83,358.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.80 % (-14,841.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,074.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07605526 BTC (28,450.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.14 CZK over 778 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029303 BTC for 109.61 CZK @ 374,073 CZK\nFees are 0.38499392 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (18.703649998441621270915750782 CZK)\nThe limits being 0.10 % (28.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18316315 BTC (83,358.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.80 % (-14,841.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,074.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07605526 BTC (28,450.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.14 CZK over 778 transactions" + } + ] + }, + { + "id": 2042, + "type": "message", + "date": "2023-01-01T05:00:35", + "date_unixtime": "1672545635", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029320 BTC for 109.62 CZK @ 373,860 CZK\nFees are 0.38499792 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.215799999796075264541363073 CZK)\nThe limits being 0.10 % (28.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18345635 BTC (83,468.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 373,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.83 % (-14,881.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,964.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07634846 BTC (28,543.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.15 CZK over 779 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029320 BTC for 109.62 CZK @ 373,860 CZK\nFees are 0.38499792 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.215799999796075264541363073 CZK)\nThe limits being 0.10 % (28.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18345635 BTC (83,468.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 373,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.83 % (-14,881.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,964.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07634846 BTC (28,543.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.15 CZK over 779 transactions" + } + ] + }, + { + "id": 2043, + "type": "message", + "date": "2023-01-01T09:00:05", + "date_unixtime": "1672560005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029312 BTC for 109.61 CZK @ 373,959 CZK\nFees are 0.38499480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7395899997525037913155484191 CZK)\nThe limits being 0.10 % (28.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18374947 BTC (83,578.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 373,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.78 % (-14,863.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,854.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07664158 BTC (28,660.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.15 CZK over 780 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029312 BTC for 109.61 CZK @ 373,959 CZK\nFees are 0.38499480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7395899997525037913155484191 CZK)\nThe limits being 0.10 % (28.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18374947 BTC (83,578.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 373,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.78 % (-14,863.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,854.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07664158 BTC (28,660.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.15 CZK over 780 transactions" + } + ] + }, + { + "id": 2044, + "type": "message", + "date": "2023-01-01T13:00:03", + "date_unixtime": "1672574403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029238 BTC for 109.61 CZK @ 374,905 CZK\nFees are 0.38499431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7490499998755978672771028196 CZK)\nThe limits being 0.10 % (28.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18404185 BTC (83,688.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.55 % (-14,689.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,744.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07693396 BTC (28,842.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.16 CZK over 781 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029238 BTC for 109.61 CZK @ 374,905 CZK\nFees are 0.38499431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7490499998755978672771028196 CZK)\nThe limits being 0.10 % (28.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18404185 BTC (83,688.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.55 % (-14,689.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,744.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07693396 BTC (28,842.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.16 CZK over 781 transactions" + } + ] + }, + { + "id": 2045, + "type": "message", + "date": "2023-01-01T17:00:04", + "date_unixtime": "1672588804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029265 BTC for 109.61 CZK @ 374,552 CZK\nFees are 0.38498700 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (7.4910399993325939086765430850 CZK)\nThe limits being 0.10 % (28.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18433450 BTC (83,798.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 374,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.61 % (-14,755.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,634.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07722661 BTC (28,925.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.16 CZK over 782 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029265 BTC for 109.61 CZK @ 374,552 CZK\nFees are 0.38498700 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (7.4910399993325939086765430850 CZK)\nThe limits being 0.10 % (28.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18433450 BTC (83,798.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 374,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.61 % (-14,755.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,634.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07722661 BTC (28,925.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.16 CZK over 782 transactions" + } + ] + }, + { + "id": 2046, + "type": "message", + "date": "2023-01-01T21:00:04", + "date_unixtime": "1672603204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029184 BTC for 109.61 CZK @ 375,594 CZK\nFees are 0.38498950 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (7.5118799996339565905296374966 CZK)\nThe limits being 0.10 % (29.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18462634 BTC (83,908.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.36 % (-14,563.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,524.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07751845 BTC (29,115.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.16 CZK over 783 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029184 BTC for 109.61 CZK @ 375,594 CZK\nFees are 0.38498950 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (7.5118799996339565905296374966 CZK)\nThe limits being 0.10 % (29.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18462634 BTC (83,908.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.36 % (-14,563.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,524.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07751845 BTC (29,115.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.16 CZK over 783 transactions" + } + ] + }, + { + "id": 2047, + "type": "message", + "date": "2023-01-02T01:00:04", + "date_unixtime": "1672617604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029170 BTC for 109.61 CZK @ 375,776 CZK\nFees are 0.38499128 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7577599997540319543237339181 CZK)\nThe limits being 0.10 % (29.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18491804 BTC (84,018.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 375,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -17.29 % (-14,530.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,414.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07781015 BTC (29,239.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.17 CZK over 784 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029170 BTC for 109.61 CZK @ 375,776 CZK\nFees are 0.38499128 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7577599997540319543237339181 CZK)\nThe limits being 0.10 % (29.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18491804 BTC (84,018.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 375,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -17.29 % (-14,530.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,414.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07781015 BTC (29,239.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.17 CZK over 784 transactions" + } + ] + }, + { + "id": 2048, + "type": "message", + "date": "2023-01-02T05:00:04", + "date_unixtime": "1672632004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00029059 BTC for 109.61 CZK @ 377,211 CZK\nFees are 0.38499067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.316324112723400580160840753 CZK)\nThe limits being 0.10 % (29.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18520863 BTC (84,128.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 377,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.96 % (-14,265.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,304.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07810074 BTC (29,460.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.17 CZK over 785 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00029059 BTC for 109.61 CZK @ 377,211 CZK\nFees are 0.38499067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.316324112723400580160840753 CZK)\nThe limits being 0.10 % (29.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18520863 BTC (84,128.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 377,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.96 % (-14,265.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,304.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07810074 BTC (29,460.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.17 CZK over 785 transactions" + } + ] + }, + { + "id": 2049, + "type": "message", + "date": "2023-01-02T09:00:03", + "date_unixtime": "1672646403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028848 BTC for 109.61 CZK @ 379,972 CZK\nFees are 0.38499290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7997199996904898302419623388 CZK)\nThe limits being 0.10 % (29.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18549711 BTC (84,238.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.33 % (-13,754.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,194.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07838922 BTC (29,785.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.17 CZK over 786 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028848 BTC for 109.61 CZK @ 379,972 CZK\nFees are 0.38499290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7997199996904898302419623388 CZK)\nThe limits being 0.10 % (29.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18549711 BTC (84,238.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.33 % (-13,754.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,194.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07838922 BTC (29,785.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.17 CZK over 786 transactions" + } + ] + }, + { + "id": 2050, + "type": "message", + "date": "2023-01-02T13:00:04", + "date_unixtime": "1672660804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028902 BTC for 109.61 CZK @ 379,256 CZK\nFees are 0.38498675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7925599999338003100834850495 CZK)\nThe limits being 0.10 % (29.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18578613 BTC (84,348.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,256 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.46 % (-13,887.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,084.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07867824 BTC (29,839.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.18 CZK over 787 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028902 BTC for 109.61 CZK @ 379,256 CZK\nFees are 0.38498675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.7925599999338003100834850495 CZK)\nThe limits being 0.10 % (29.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18578613 BTC (84,348.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,256 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.46 % (-13,887.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,084.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07867824 BTC (29,839.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.18 CZK over 787 transactions" + } + ] + }, + { + "id": 2051, + "type": "message", + "date": "2023-01-02T17:00:05", + "date_unixtime": "1672675205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028859 BTC for 109.61 CZK @ 379,826 CZK\nFees are 0.38499172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.394779999099793019728776650 CZK)\nThe limits being 0.10 % (29.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18607472 BTC (84,458.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.32 % (-13,782.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,974.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07896683 BTC (29,993.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.18 CZK over 788 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028859 BTC for 109.61 CZK @ 379,826 CZK\nFees are 0.38499172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.394779999099793019728776650 CZK)\nThe limits being 0.10 % (29.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18607472 BTC (84,458.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.32 % (-13,782.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,974.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07896683 BTC (29,993.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.18 CZK over 788 transactions" + } + ] + }, + { + "id": 2052, + "type": "message", + "date": "2023-01-02T21:00:04", + "date_unixtime": "1672689604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028869 BTC for 109.62 CZK @ 379,698 CZK\nFees are 0.38499534 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.390939999516396964774800202 CZK)\nThe limits being 0.10 % (30.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18636341 BTC (84,568.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 379,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.33 % (-13,806.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,864.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07925552 BTC (30,093.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.18 CZK over 789 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028869 BTC for 109.62 CZK @ 379,698 CZK\nFees are 0.38499534 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.390939999516396964774800202 CZK)\nThe limits being 0.10 % (30.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18636341 BTC (84,568.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 379,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.33 % (-13,806.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,864.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07925552 BTC (30,093.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.18 CZK over 789 transactions" + } + ] + }, + { + "id": 2053, + "type": "message", + "date": "2023-01-03T01:00:04", + "date_unixtime": "1672704004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028991 BTC for 109.61 CZK @ 378,097 CZK\nFees are 0.38499213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.342909999541633945569108376 CZK)\nThe limits being 0.10 % (30.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18665332 BTC (84,678.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 378,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.66 % (-14,105.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,754.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07954543 BTC (30,075.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.19 CZK over 790 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028991 BTC for 109.61 CZK @ 378,097 CZK\nFees are 0.38499213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.342909999541633945569108376 CZK)\nThe limits being 0.10 % (30.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18665332 BTC (84,678.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 378,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.66 % (-14,105.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,754.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07954543 BTC (30,075.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.19 CZK over 790 transactions" + } + ] + }, + { + "id": 2054, + "type": "message", + "date": "2023-01-03T05:00:05", + "date_unixtime": "1672718405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028950 BTC for 109.61 CZK @ 378,634 CZK\nFees are 0.38499368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.359019999948367243146396937 CZK)\nThe limits being 0.10 % (30.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18694282 BTC (84,788.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 378,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.52 % (-14,005.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,644.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07983493 BTC (30,228.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.19 CZK over 791 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028950 BTC for 109.61 CZK @ 378,634 CZK\nFees are 0.38499368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.359019999948367243146396937 CZK)\nThe limits being 0.10 % (30.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18694282 BTC (84,788.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 378,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.52 % (-14,005.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,644.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07983493 BTC (30,228.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.19 CZK over 791 transactions" + } + ] + }, + { + "id": 2055, + "type": "message", + "date": "2023-01-03T09:00:05", + "date_unixtime": "1672732805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028777 BTC for 109.61 CZK @ 380,907 CZK\nFees are 0.38499039 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.427209999390706734996854582 CZK)\nThe limits being 0.10 % (30.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18723059 BTC (84,898.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.00 % (-13,580.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,534.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08012270 BTC (30,519.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.19 CZK over 792 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028777 BTC for 109.61 CZK @ 380,907 CZK\nFees are 0.38499039 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.427209999390706734996854582 CZK)\nThe limits being 0.10 % (30.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18723059 BTC (84,898.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.00 % (-13,580.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,534.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08012270 BTC (30,519.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.19 CZK over 792 transactions" + } + ] + }, + { + "id": 2056, + "type": "message", + "date": "2023-01-03T13:00:04", + "date_unixtime": "1672747204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028534 BTC for 109.61 CZK @ 384,150 CZK\nFees are 0.38498953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.524499999633301388645732785 CZK)\nThe limits being 0.10 % (30.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18751593 BTC (85,008.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.26 % (-12,973.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,424.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08040804 BTC (30,888.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.20 CZK over 793 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028534 BTC for 109.61 CZK @ 384,150 CZK\nFees are 0.38498953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.524499999633301388645732785 CZK)\nThe limits being 0.10 % (30.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18751593 BTC (85,008.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.26 % (-12,973.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,424.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08040804 BTC (30,888.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.20 CZK over 793 transactions" + } + ] + }, + { + "id": 2057, + "type": "message", + "date": "2023-01-03T17:00:35", + "date_unixtime": "1672761635", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028785 BTC for 109.62 CZK @ 380,808 CZK\nFees are 0.38499733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.232319998642929354693002146 CZK)\nThe limits being 0.10 % (30.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18780378 BTC (85,118.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.98 % (-13,600.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,314.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08069589 BTC (30,729.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.20 CZK over 794 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028785 BTC for 109.62 CZK @ 380,808 CZK\nFees are 0.38499733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.232319998642929354693002146 CZK)\nThe limits being 0.10 % (30.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18780378 BTC (85,118.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.98 % (-13,600.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,314.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08069589 BTC (30,729.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.20 CZK over 794 transactions" + } + ] + }, + { + "id": 2058, + "type": "message", + "date": "2023-01-03T21:00:04", + "date_unixtime": "1672776004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028826 BTC for 109.62 CZK @ 380,267 CZK\nFees are 0.38499797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (38.026699996899079130211400874 CZK)\nThe limits being 0.10 % (30.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18809204 BTC (85,228.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 380,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -16.08 % (-13,702.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,204.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08098415 BTC (30,795.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.21 CZK over 795 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028826 BTC for 109.62 CZK @ 380,267 CZK\nFees are 0.38499797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (38.026699996899079130211400874 CZK)\nThe limits being 0.10 % (30.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18809204 BTC (85,228.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 380,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -16.08 % (-13,702.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,204.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08098415 BTC (30,795.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.21 CZK over 795 transactions" + } + ] + }, + { + "id": 2059, + "type": "message", + "date": "2023-01-04T01:00:03", + "date_unixtime": "1672790403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028736 BTC for 109.61 CZK @ 381,448 CZK\nFees are 0.38498790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.515839999866835785219437982 CZK)\nThe limits being 0.10 % (31.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18837940 BTC (85,338.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.80 % (-13,481.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,094.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08127151 BTC (31,000.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.21 CZK over 796 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028736 BTC for 109.61 CZK @ 381,448 CZK\nFees are 0.38498790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.515839999866835785219437982 CZK)\nThe limits being 0.10 % (31.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18837940 BTC (85,338.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.80 % (-13,481.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,094.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08127151 BTC (31,000.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.21 CZK over 796 transactions" + } + ] + }, + { + "id": 2060, + "type": "message", + "date": "2023-01-04T05:00:04", + "date_unixtime": "1672804804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028534 BTC for 109.61 CZK @ 384,150 CZK\nFees are 0.38498953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (19.207499999388835647742887976 CZK)\nThe limits being 0.10 % (31.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18866474 BTC (85,448.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.18 % (-12,972.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,984.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08155685 BTC (31,330.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.21 CZK over 797 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028534 BTC for 109.61 CZK @ 384,150 CZK\nFees are 0.38498953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (19.207499999388835647742887976 CZK)\nThe limits being 0.10 % (31.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18866474 BTC (85,448.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.18 % (-12,972.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,984.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08155685 BTC (31,330.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.21 CZK over 797 transactions" + } + ] + }, + { + "id": 2061, + "type": "message", + "date": "2023-01-04T09:00:04", + "date_unixtime": "1672819204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028523 BTC for 109.61 CZK @ 384,297 CZK\nFees are 0.38498838 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (23.057819998619633372737193130 CZK)\nThe limits being 0.10 % (31.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18894997 BTC (85,558.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.13 % (-12,945.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,874.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08184208 BTC (31,451.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.22 CZK over 798 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028523 BTC for 109.61 CZK @ 384,297 CZK\nFees are 0.38498838 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (23.057819998619633372737193130 CZK)\nThe limits being 0.10 % (31.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18894997 BTC (85,558.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.13 % (-12,945.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,874.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08184208 BTC (31,451.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.22 CZK over 798 transactions" + } + ] + }, + { + "id": 2062, + "type": "message", + "date": "2023-01-04T13:00:36", + "date_unixtime": "1672833636", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028632 BTC for 109.61 CZK @ 382,836 CZK\nFees are 0.38499038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (22.970159999515526336781866987 CZK)\nThe limits being 0.10 % (31.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18923629 BTC (85,668.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.43 % (-13,221.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,764.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08212840 BTC (31,441.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.22 CZK over 799 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028632 BTC for 109.61 CZK @ 382,836 CZK\nFees are 0.38499038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (22.970159999515526336781866987 CZK)\nThe limits being 0.10 % (31.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18923629 BTC (85,668.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.43 % (-13,221.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,764.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08212840 BTC (31,441.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.22 CZK over 799 transactions" + } + ] + }, + { + "id": 2063, + "type": "message", + "date": "2023-01-04T17:00:36", + "date_unixtime": "1672848036", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028671 BTC for 109.62 CZK @ 382,324 CZK\nFees are 0.38499920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.585919997458582798091650102 CZK)\nThe limits being 0.10 % (31.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18952300 BTC (85,778.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.53 % (-13,318.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,654.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08241511 BTC (31,509.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.22 CZK over 800 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028671 BTC for 109.62 CZK @ 382,324 CZK\nFees are 0.38499920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.585919997458582798091650102 CZK)\nThe limits being 0.10 % (31.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18952300 BTC (85,778.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.53 % (-13,318.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,654.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08241511 BTC (31,509.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.22 CZK over 800 transactions" + } + ] + }, + { + "id": 2064, + "type": "message", + "date": "2023-01-04T21:00:04", + "date_unixtime": "1672862404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028705 BTC for 109.61 CZK @ 381,862 CZK\nFees are 0.38498997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.367579998484662677319852558 CZK)\nThe limits being 0.10 % (31.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.18981005 BTC (85,888.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.61 % (-13,406.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,544.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08270216 BTC (31,580.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.23 CZK over 801 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028705 BTC for 109.61 CZK @ 381,862 CZK\nFees are 0.38498997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.367579998484662677319852558 CZK)\nThe limits being 0.10 % (31.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.18981005 BTC (85,888.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.61 % (-13,406.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,544.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08270216 BTC (31,580.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.23 CZK over 801 transactions" + } + ] + }, + { + "id": 2065, + "type": "message", + "date": "2023-01-05T01:00:04", + "date_unixtime": "1672876804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028732 BTC for 109.61 CZK @ 381,503 CZK\nFees are 0.38498981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (38.150299997620745600061486036 CZK)\nThe limits being 0.10 % (31.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19009737 BTC (85,998.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.67 % (-13,475.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,434.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08298948 BTC (31,660.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.23 CZK over 802 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028732 BTC for 109.61 CZK @ 381,503 CZK\nFees are 0.38498981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (38.150299997620745600061486036 CZK)\nThe limits being 0.10 % (31.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19009737 BTC (85,998.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.67 % (-13,475.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,434.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08298948 BTC (31,660.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.23 CZK over 802 transactions" + } + ] + }, + { + "id": 2066, + "type": "message", + "date": "2023-01-05T05:00:04", + "date_unixtime": "1672891204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028732 BTC for 109.61 CZK @ 381,502 CZK\nFees are 0.38498880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.335179999612937622400673239 CZK)\nThe limits being 0.10 % (31.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19038469 BTC (86,108.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.65 % (-13,476.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,324.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08327680 BTC (31,770.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.23 CZK over 803 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028732 BTC for 109.61 CZK @ 381,502 CZK\nFees are 0.38498880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.335179999612937622400673239 CZK)\nThe limits being 0.10 % (31.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19038469 BTC (86,108.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.65 % (-13,476.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,324.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08327680 BTC (31,770.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.23 CZK over 803 transactions" + } + ] + }, + { + "id": 2067, + "type": "message", + "date": "2023-01-05T09:00:05", + "date_unixtime": "1672905605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028760 BTC for 109.62 CZK @ 381,139 CZK\nFees are 0.38499731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.245559998974382429230655154 CZK)\nThe limits being 0.10 % (31.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19067229 BTC (86,218.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.71 % (-13,545.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,214.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08356440 BTC (31,849.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.24 CZK over 804 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028760 BTC for 109.62 CZK @ 381,139 CZK\nFees are 0.38499731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (15.245559998974382429230655154 CZK)\nThe limits being 0.10 % (31.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19067229 BTC (86,218.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.71 % (-13,545.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,214.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08356440 BTC (31,849.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.24 CZK over 804 transactions" + } + ] + }, + { + "id": 2068, + "type": "message", + "date": "2023-01-05T13:00:05", + "date_unixtime": "1672920005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028699 BTC for 109.61 CZK @ 381,945 CZK\nFees are 0.38499316 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.555599998770809709832444174 CZK)\nThe limits being 0.10 % (32.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19095928 BTC (86,328.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 381,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.51 % (-13,392.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,104.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08385139 BTC (32,026.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.24 CZK over 805 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028699 BTC for 109.61 CZK @ 381,945 CZK\nFees are 0.38499316 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (30.555599998770809709832444174 CZK)\nThe limits being 0.10 % (32.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19095928 BTC (86,328.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 381,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.51 % (-13,392.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,104.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08385139 BTC (32,026.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.24 CZK over 805 transactions" + } + ] + }, + { + "id": 2069, + "type": "message", + "date": "2023-01-05T17:00:04", + "date_unixtime": "1672934404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028381 BTC for 109.62 CZK @ 386,231 CZK\nFees are 0.38499957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (27.036169999905373299087245590 CZK)\nThe limits being 0.10 % (32.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19124309 BTC (86,438.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.55 % (-12,574.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,994.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08413520 BTC (32,495.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.24 CZK over 806 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028381 BTC for 109.62 CZK @ 386,231 CZK\nFees are 0.38499957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (27.036169999905373299087245590 CZK)\nThe limits being 0.10 % (32.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19124309 BTC (86,438.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.55 % (-12,574.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,994.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08413520 BTC (32,495.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.24 CZK over 806 transactions" + } + ] + }, + { + "id": 2070, + "type": "message", + "date": "2023-01-05T21:00:04", + "date_unixtime": "1672948804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028435 BTC for 109.61 CZK @ 385,487 CZK\nFees are 0.38498906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.693829996979973994658575414 CZK)\nThe limits being 0.10 % (32.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19152744 BTC (86,548.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.69 % (-12,716.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,884.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08441955 BTC (32,542.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.25 CZK over 807 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028435 BTC for 109.61 CZK @ 385,487 CZK\nFees are 0.38498906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (34.693829996979973994658575414 CZK)\nThe limits being 0.10 % (32.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19152744 BTC (86,548.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.69 % (-12,716.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,884.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08441955 BTC (32,542.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.25 CZK over 807 transactions" + } + ] + }, + { + "id": 2071, + "type": "message", + "date": "2023-01-06T01:00:04", + "date_unixtime": "1672963204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028423 BTC for 109.61 CZK @ 385,653 CZK\nFees are 0.38499231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (30.852239999252519429367302047 CZK)\nThe limits being 0.10 % (32.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19181167 BTC (86,658.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.64 % (-12,685.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,774.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08470378 BTC (32,666.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.25 CZK over 808 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028423 BTC for 109.61 CZK @ 385,653 CZK\nFees are 0.38499231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (30.852239999252519429367302047 CZK)\nThe limits being 0.10 % (32.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19181167 BTC (86,658.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.64 % (-12,685.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,774.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08470378 BTC (32,666.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.25 CZK over 808 transactions" + } + ] + }, + { + "id": 2072, + "type": "message", + "date": "2023-01-06T05:00:03", + "date_unixtime": "1672977603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028491 BTC for 109.61 CZK @ 384,734 CZK\nFees are 0.38499375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (23.084039999204636987349583397 CZK)\nThe limits being 0.10 % (32.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19209658 BTC (86,768.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.82 % (-12,862.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,664.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08498869 BTC (32,698.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.25 CZK over 809 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028491 BTC for 109.61 CZK @ 384,734 CZK\nFees are 0.38499375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (23.084039999204636987349583397 CZK)\nThe limits being 0.10 % (32.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19209658 BTC (86,768.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.82 % (-12,862.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,664.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08498869 BTC (32,698.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.25 CZK over 809 transactions" + } + ] + }, + { + "id": 2073, + "type": "message", + "date": "2023-01-06T09:00:03", + "date_unixtime": "1672992003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028423 BTC for 109.62 CZK @ 385,656 CZK\nFees are 0.38499530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.569679999255324234510389095 CZK)\nThe limits being 0.10 % (32.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19238081 BTC (86,878.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.60 % (-12,685.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,554.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08527292 BTC (32,886.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.26 CZK over 810 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028423 BTC for 109.62 CZK @ 385,656 CZK\nFees are 0.38499530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.569679999255324234510389095 CZK)\nThe limits being 0.10 % (32.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19238081 BTC (86,878.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.60 % (-12,685.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,554.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08527292 BTC (32,886.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.26 CZK over 810 transactions" + } + ] + }, + { + "id": 2074, + "type": "message", + "date": "2023-01-06T13:00:04", + "date_unixtime": "1673006404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028527 BTC for 109.61 CZK @ 384,247 CZK\nFees are 0.38499227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.527409999380127278785477038 CZK)\nThe limits being 0.10 % (32.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19266608 BTC (86,988.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 384,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.89 % (-12,956.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,444.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08555819 BTC (32,875.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.26 CZK over 811 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028527 BTC for 109.61 CZK @ 384,247 CZK\nFees are 0.38499227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (11.527409999380127278785477038 CZK)\nThe limits being 0.10 % (32.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19266608 BTC (86,988.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 384,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.89 % (-12,956.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,444.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08555819 BTC (32,875.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.26 CZK over 811 transactions" + } + ] + }, + { + "id": 2075, + "type": "message", + "date": "2023-01-06T17:00:04", + "date_unixtime": "1673020804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028659 BTC for 109.61 CZK @ 382,473 CZK\nFees are 0.38498775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (22.948362688091939908217188756 CZK)\nThe limits being 0.10 % (32.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19295267 BTC (87,098.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.27 % (-13,299.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,334.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08584478 BTC (32,833.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.26 CZK over 812 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028659 BTC for 109.61 CZK @ 382,473 CZK\nFees are 0.38498775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (22.948362688091939908217188756 CZK)\nThe limits being 0.10 % (32.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19295267 BTC (87,098.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.27 % (-13,299.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,334.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08584478 BTC (32,833.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.26 CZK over 812 transactions" + } + ] + }, + { + "id": 2076, + "type": "message", + "date": "2023-01-06T21:00:04", + "date_unixtime": "1673035204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028664 BTC for 109.61 CZK @ 382,408 CZK\nFees are 0.38498977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (22.944479999599503885438086429 CZK)\nThe limits being 0.10 % (32.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19323931 BTC (87,208.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.26 % (-13,311.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,224.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08613142 BTC (32,937.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.27 CZK over 813 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028664 BTC for 109.61 CZK @ 382,408 CZK\nFees are 0.38498977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (22.944479999599503885438086429 CZK)\nThe limits being 0.10 % (32.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19323931 BTC (87,208.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.26 % (-13,311.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,224.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08613142 BTC (32,937.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.27 CZK over 813 transactions" + } + ] + }, + { + "id": 2077, + "type": "message", + "date": "2023-01-07T01:00:05", + "date_unixtime": "1673049605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028638 BTC for 109.62 CZK @ 382,765 CZK\nFees are 0.38499964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8276499999147477160478168577 CZK)\nThe limits being 0.10 % (33.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19352569 BTC (87,318.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.17 % (-13,243.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,114.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08641780 BTC (33,077.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.27 CZK over 814 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028638 BTC for 109.62 CZK @ 382,765 CZK\nFees are 0.38499964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8276499999147477160478168577 CZK)\nThe limits being 0.10 % (33.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19352569 BTC (87,318.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.17 % (-13,243.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,114.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08641780 BTC (33,077.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.27 CZK over 814 transactions" + } + ] + }, + { + "id": 2078, + "type": "message", + "date": "2023-01-07T05:00:36", + "date_unixtime": "1673064036", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028638 BTC for 109.62 CZK @ 382,764 CZK\nFees are 0.38499864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8276399999958243779288726625 CZK)\nThe limits being 0.10 % (33.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19381207 BTC (87,428.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.15 % (-13,243.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,004.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08670418 BTC (33,187.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.27 CZK over 815 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028638 BTC for 109.62 CZK @ 382,764 CZK\nFees are 0.38499864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8276399999958243779288726625 CZK)\nThe limits being 0.10 % (33.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19381207 BTC (87,428.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.15 % (-13,243.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,004.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08670418 BTC (33,187.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.27 CZK over 815 transactions" + } + ] + }, + { + "id": 2079, + "type": "message", + "date": "2023-01-07T09:00:05", + "date_unixtime": "1673078405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028648 BTC for 109.61 CZK @ 382,620 CZK\nFees are 0.38498818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8261999999443444732044379161 CZK)\nThe limits being 0.10 % (33.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19409855 BTC (87,538.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.16 % (-13,272.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,894.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08699066 BTC (33,284.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.28 CZK over 816 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028648 BTC for 109.61 CZK @ 382,620 CZK\nFees are 0.38498818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8261999999443444732044379161 CZK)\nThe limits being 0.10 % (33.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19409855 BTC (87,538.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.16 % (-13,272.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,894.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08699066 BTC (33,284.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.28 CZK over 816 transactions" + } + ] + }, + { + "id": 2080, + "type": "message", + "date": "2023-01-07T13:00:04", + "date_unixtime": "1673092804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028684 BTC for 109.61 CZK @ 382,139 CZK\nFees are 0.38498738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.821389999733883575940490531 CZK)\nThe limits being 0.10 % (33.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19438539 BTC (87,648.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.25 % (-13,365.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,784.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08727750 BTC (33,352.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.28 CZK over 817 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028684 BTC for 109.61 CZK @ 382,139 CZK\nFees are 0.38498738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.821389999733883575940490531 CZK)\nThe limits being 0.10 % (33.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19438539 BTC (87,648.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.25 % (-13,365.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,784.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08727750 BTC (33,352.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.28 CZK over 817 transactions" + } + ] + }, + { + "id": 2081, + "type": "message", + "date": "2023-01-07T17:00:04", + "date_unixtime": "1673107204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028652 BTC for 109.61 CZK @ 382,572 CZK\nFees are 0.38499363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.6514399997885385236552702150 CZK)\nThe limits being 0.10 % (33.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19467191 BTC (87,758.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.13 % (-13,282.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,674.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08756402 BTC (33,499.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.28 CZK over 818 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028652 BTC for 109.61 CZK @ 382,572 CZK\nFees are 0.38499363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.6514399997885385236552702150 CZK)\nThe limits being 0.10 % (33.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19467191 BTC (87,758.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.13 % (-13,282.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,674.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08756402 BTC (33,499.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.28 CZK over 818 transactions" + } + ] + }, + { + "id": 2082, + "type": "message", + "date": "2023-01-07T21:00:04", + "date_unixtime": "1673121604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028661 BTC for 109.61 CZK @ 382,450 CZK\nFees are 0.38499175 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (19.122499999869616524989375052 CZK)\nThe limits being 0.10 % (33.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19495852 BTC (87,868.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.14 % (-13,306.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,564.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08785063 BTC (33,598.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.29 CZK over 819 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028661 BTC for 109.61 CZK @ 382,450 CZK\nFees are 0.38499175 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (19.122499999869616524989375052 CZK)\nThe limits being 0.10 % (33.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19495852 BTC (87,868.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.14 % (-13,306.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,564.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08785063 BTC (33,598.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.29 CZK over 819 transactions" + } + ] + }, + { + "id": 2083, + "type": "message", + "date": "2023-01-08T01:00:05", + "date_unixtime": "1673136005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028656 BTC for 109.62 CZK @ 382,524 CZK\nFees are 0.38499907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (19.126199999819170034972515236 CZK)\nThe limits being 0.10 % (33.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19524508 BTC (87,978.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.11 % (-13,292.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,454.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08813719 BTC (33,714.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.29 CZK over 820 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028656 BTC for 109.62 CZK @ 382,524 CZK\nFees are 0.38499907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (19.126199999819170034972515236 CZK)\nThe limits being 0.10 % (33.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19524508 BTC (87,978.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.11 % (-13,292.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,454.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08813719 BTC (33,714.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.29 CZK over 820 transactions" + } + ] + }, + { + "id": 2084, + "type": "message", + "date": "2023-01-08T05:00:04", + "date_unixtime": "1673150404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028656 BTC for 109.62 CZK @ 382,523 CZK\nFees are 0.38499806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.6504599994380361086838165808 CZK)\nThe limits being 0.10 % (33.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19553164 BTC (88,088.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.09 % (-13,292.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,344.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08842375 BTC (33,824.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.29 CZK over 821 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028656 BTC for 109.62 CZK @ 382,523 CZK\nFees are 0.38499806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.6504599994380361086838165808 CZK)\nThe limits being 0.10 % (33.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19553164 BTC (88,088.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.09 % (-13,292.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,344.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08842375 BTC (33,824.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.29 CZK over 821 transactions" + } + ] + }, + { + "id": 2085, + "type": "message", + "date": "2023-01-08T09:00:04", + "date_unixtime": "1673164804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028636 BTC for 109.62 CZK @ 382,789 CZK\nFees are 0.38499689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8278899998907302580373637093 CZK)\nThe limits being 0.10 % (33.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19581800 BTC (88,198.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,409 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.01 % (-13,241.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,234.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08871011 BTC (33,957.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.30 CZK over 822 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028636 BTC for 109.62 CZK @ 382,789 CZK\nFees are 0.38499689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8278899998907302580373637093 CZK)\nThe limits being 0.10 % (33.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19581800 BTC (88,198.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,409 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.01 % (-13,241.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,234.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08871011 BTC (33,957.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.30 CZK over 822 transactions" + } + ] + }, + { + "id": 2086, + "type": "message", + "date": "2023-01-08T13:00:04", + "date_unixtime": "1673179204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028675 BTC for 109.61 CZK @ 382,259 CZK\nFees are 0.38498745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8225899996915764310527799606 CZK)\nThe limits being 0.10 % (34.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19610475 BTC (88,308.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.11 % (-13,345.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,124.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08899686 BTC (34,019.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.30 CZK over 823 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028675 BTC for 109.61 CZK @ 382,259 CZK\nFees are 0.38498745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8225899996915764310527799606 CZK)\nThe limits being 0.10 % (34.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19610475 BTC (88,308.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.11 % (-13,345.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,124.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08899686 BTC (34,019.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.30 CZK over 823 transactions" + } + ] + }, + { + "id": 2087, + "type": "message", + "date": "2023-01-08T17:00:35", + "date_unixtime": "1673193635", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028566 BTC for 109.62 CZK @ 383,726 CZK\nFees are 0.38499588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8372599999281378160405534352 CZK)\nThe limits being 0.10 % (34.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19639041 BTC (88,418.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 383,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.77 % (-13,058.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,014.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08928252 BTC (34,260.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.30 CZK over 824 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028566 BTC for 109.62 CZK @ 383,726 CZK\nFees are 0.38499588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.8372599999281378160405534352 CZK)\nThe limits being 0.10 % (34.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19639041 BTC (88,418.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 383,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.77 % (-13,058.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,014.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08928252 BTC (34,260.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.30 CZK over 824 transactions" + } + ] + }, + { + "id": 2088, + "type": "message", + "date": "2023-01-08T21:00:03", + "date_unixtime": "1673208003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028688 BTC for 109.61 CZK @ 382,092 CZK\nFees are 0.38499371 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.6418399996276278980067254846 CZK)\nThe limits being 0.10 % (34.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19667729 BTC (88,528.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 382,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -15.11 % (-13,379.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,904.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08956940 BTC (34,223.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.31 CZK over 825 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028688 BTC for 109.61 CZK @ 382,092 CZK\nFees are 0.38499371 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.6418399996276278980067254846 CZK)\nThe limits being 0.10 % (34.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19667729 BTC (88,528.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 382,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -15.11 % (-13,379.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,904.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08956940 BTC (34,223.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.31 CZK over 825 transactions" + } + ] + }, + { + "id": 2089, + "type": "message", + "date": "2023-01-09T01:00:05", + "date_unixtime": "1673222405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028394 BTC for 109.62 CZK @ 386,053 CZK\nFees are 0.38499841 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.581589999908399772452400258 CZK)\nThe limits being 0.10 % (34.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19696123 BTC (88,638.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.22 % (-12,600.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,794.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08985334 BTC (34,688.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.31 CZK over 826 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028394 BTC for 109.62 CZK @ 386,053 CZK\nFees are 0.38499841 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.581589999908399772452400258 CZK)\nThe limits being 0.10 % (34.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19696123 BTC (88,638.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.22 % (-12,600.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,794.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08985334 BTC (34,688.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.31 CZK over 826 transactions" + } + ] + }, + { + "id": 2090, + "type": "message", + "date": "2023-01-09T05:00:04", + "date_unixtime": "1673236804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028284 BTC for 109.61 CZK @ 387,549 CZK\nFees are 0.38499303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.626469999253778512583978984 CZK)\nThe limits being 0.10 % (34.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19724407 BTC (88,748.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.87 % (-12,306.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,684.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09013618 BTC (34,932.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.31 CZK over 827 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028284 BTC for 109.61 CZK @ 387,549 CZK\nFees are 0.38499303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.626469999253778512583978984 CZK)\nThe limits being 0.10 % (34.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19724407 BTC (88,748.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.87 % (-12,306.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,684.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09013618 BTC (34,932.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.31 CZK over 827 transactions" + } + ] + }, + { + "id": 2091, + "type": "message", + "date": "2023-01-09T09:00:04", + "date_unixtime": "1673251204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028316 BTC for 109.62 CZK @ 387,118 CZK\nFees are 0.38499997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.6135399994636655587348504 CZK)\nThe limits being 0.10 % (35.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19752723 BTC (88,858.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.95 % (-12,391.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,574.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09041934 BTC (35,002.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.32 CZK over 828 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028316 BTC for 109.62 CZK @ 387,118 CZK\nFees are 0.38499997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.6135399994636655587348504 CZK)\nThe limits being 0.10 % (35.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19752723 BTC (88,858.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.95 % (-12,391.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,574.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09041934 BTC (35,002.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.32 CZK over 828 transactions" + } + ] + }, + { + "id": 2092, + "type": "message", + "date": "2023-01-09T13:00:05", + "date_unixtime": "1673265605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028215 BTC for 109.61 CZK @ 388,499 CZK\nFees are 0.38499526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.654969999472871001468279416 CZK)\nThe limits being 0.10 % (35.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19780938 BTC (88,968.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.62 % (-12,119.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,464.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09070149 BTC (35,237.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.32 CZK over 829 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028215 BTC for 109.61 CZK @ 388,499 CZK\nFees are 0.38499526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.654969999472871001468279416 CZK)\nThe limits being 0.10 % (35.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19780938 BTC (88,968.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.62 % (-12,119.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,464.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09070149 BTC (35,237.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.32 CZK over 829 transactions" + } + ] + }, + { + "id": 2093, + "type": "message", + "date": "2023-01-09T17:00:03", + "date_unixtime": "1673280003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028331 BTC for 109.61 CZK @ 386,905 CZK\nFees are 0.38499197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.476199999377421691124233443 CZK)\nThe limits being 0.10 % (35.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19809269 BTC (89,078.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.96 % (-12,435.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,354.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09098480 BTC (35,202.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.32 CZK over 830 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028331 BTC for 109.61 CZK @ 386,905 CZK\nFees are 0.38499197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.476199999377421691124233443 CZK)\nThe limits being 0.10 % (35.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19809269 BTC (89,078.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.96 % (-12,435.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,354.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09098480 BTC (35,202.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.32 CZK over 830 transactions" + } + ] + }, + { + "id": 2094, + "type": "message", + "date": "2023-01-09T21:00:05", + "date_unixtime": "1673294405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028289 BTC for 109.62 CZK @ 387,483 CZK\nFees are 0.38499552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (19.374149999904008774971786946 CZK)\nThe limits being 0.10 % (35.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19837558 BTC (89,188.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.81 % (-12,320.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,244.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09126769 BTC (35,364.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.33 CZK over 831 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028289 BTC for 109.62 CZK @ 387,483 CZK\nFees are 0.38499552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (19.374149999904008774971786946 CZK)\nThe limits being 0.10 % (35.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19837558 BTC (89,188.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.81 % (-12,320.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,244.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09126769 BTC (35,364.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.33 CZK over 831 transactions" + } + ] + }, + { + "id": 2095, + "type": "message", + "date": "2023-01-10T01:00:04", + "date_unixtime": "1673308804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028455 BTC for 109.61 CZK @ 385,218 CZK\nFees are 0.38499101 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (23.113079998602676609725738514 CZK)\nThe limits being 0.10 % (35.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19866013 BTC (89,298.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.30 % (-12,770.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,134.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09155224 BTC (35,267.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.33 CZK over 832 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028455 BTC for 109.61 CZK @ 385,218 CZK\nFees are 0.38499101 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (23.113079998602676609725738514 CZK)\nThe limits being 0.10 % (35.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19866013 BTC (89,298.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.30 % (-12,770.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,134.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09155224 BTC (35,267.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.33 CZK over 832 transactions" + } + ] + }, + { + "id": 2096, + "type": "message", + "date": "2023-01-10T05:00:03", + "date_unixtime": "1673323203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028412 BTC for 109.61 CZK @ 385,801 CZK\nFees are 0.38499100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.574029999955807215924049018 CZK)\nThe limits being 0.10 % (35.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19894425 BTC (89,408.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 385,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -14.15 % (-12,655.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,024.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09183636 BTC (35,430.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.33 CZK over 833 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028412 BTC for 109.61 CZK @ 385,801 CZK\nFees are 0.38499100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.574029999955807215924049018 CZK)\nThe limits being 0.10 % (35.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19894425 BTC (89,408.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 385,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -14.15 % (-12,655.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,024.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09183636 BTC (35,430.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.33 CZK over 833 transactions" + } + ] + }, + { + "id": 2097, + "type": "message", + "date": "2023-01-10T09:00:04", + "date_unixtime": "1673337604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028351 BTC for 109.61 CZK @ 386,629 CZK\nFees are 0.38498892 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.7325799994892835394977583394 CZK)\nThe limits being 0.10 % (35.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19922776 BTC (89,518.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.95 % (-12,490.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 914.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09211987 BTC (35,616.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.34 CZK over 834 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028351 BTC for 109.61 CZK @ 386,629 CZK\nFees are 0.38498892 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.7325799994892835394977583394 CZK)\nThe limits being 0.10 % (35.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19922776 BTC (89,518.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.95 % (-12,490.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 914.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09211987 BTC (35,616.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.34 CZK over 834 transactions" + } + ] + }, + { + "id": 2098, + "type": "message", + "date": "2023-01-10T13:00:35", + "date_unixtime": "1673352035", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028324 BTC for 109.61 CZK @ 386,999 CZK\nFees are 0.38499036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.609969999085955827390462994 CZK)\nThe limits being 0.10 % (35.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19951100 BTC (89,628.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 386,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.85 % (-12,417.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 804.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09240311 BTC (35,759.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.34 CZK over 835 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028324 BTC for 109.61 CZK @ 386,999 CZK\nFees are 0.38499036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.609969999085955827390462994 CZK)\nThe limits being 0.10 % (35.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19951100 BTC (89,628.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 386,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.85 % (-12,417.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 804.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09240311 BTC (35,759.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.34 CZK over 835 transactions" + } + ] + }, + { + "id": 2099, + "type": "message", + "date": "2023-01-10T17:00:07", + "date_unixtime": "1673366407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028237 BTC for 109.62 CZK @ 388,198 CZK\nFees are 0.38499693 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.645939999744846008478417758 CZK)\nThe limits being 0.10 % (35.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.19979337 BTC (89,738.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 388,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.57 % (-12,178.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 694.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09268548 BTC (35,980.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.34 CZK over 836 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028237 BTC for 109.62 CZK @ 388,198 CZK\nFees are 0.38499693 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (11.645939999744846008478417758 CZK)\nThe limits being 0.10 % (35.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.19979337 BTC (89,738.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 388,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.57 % (-12,178.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 694.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09268548 BTC (35,980.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.34 CZK over 836 transactions" + } + ] + }, + { + "id": 2100, + "type": "message", + "date": "2023-01-10T21:00:03", + "date_unixtime": "1673380803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028078 BTC for 109.62 CZK @ 390,397 CZK\nFees are 0.38499764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.615879999459119380338201578 CZK)\nThe limits being 0.10 % (36.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20007415 BTC (89,848.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.07 % (-11,739.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 584.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09296626 BTC (36,293.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.35 CZK over 837 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028078 BTC for 109.62 CZK @ 390,397 CZK\nFees are 0.38499764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (15.615879999459119380338201578 CZK)\nThe limits being 0.10 % (36.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20007415 BTC (89,848.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.07 % (-11,739.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 584.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09296626 BTC (36,293.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.35 CZK over 837 transactions" + } + ] + }, + { + "id": 2101, + "type": "message", + "date": "2023-01-11T01:00:05", + "date_unixtime": "1673395205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028077 BTC for 109.62 CZK @ 390,410 CZK\nFees are 0.38499674 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (19.520499999121570070518757594 CZK)\nThe limits being 0.10 % (36.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20035492 BTC (89,958.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.05 % (-11,737.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 474.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09324703 BTC (36,404.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.35 CZK over 838 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028077 BTC for 109.62 CZK @ 390,410 CZK\nFees are 0.38499674 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (19.520499999121570070518757594 CZK)\nThe limits being 0.10 % (36.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20035492 BTC (89,958.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.05 % (-11,737.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 474.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09324703 BTC (36,404.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.35 CZK over 838 transactions" + } + ] + }, + { + "id": 2102, + "type": "message", + "date": "2023-01-11T05:00:37", + "date_unixtime": "1673409637", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028096 BTC for 109.62 CZK @ 390,145 CZK\nFees are 0.38499577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.802899999489259119278425284 CZK)\nThe limits being 0.10 % (36.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20063588 BTC (90,068.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.09 % (-11,791.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 364.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09352799 BTC (36,489.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.35 CZK over 839 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028096 BTC for 109.62 CZK @ 390,145 CZK\nFees are 0.38499577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.802899999489259119278425284 CZK)\nThe limits being 0.10 % (36.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20063588 BTC (90,068.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.09 % (-11,791.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 364.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09352799 BTC (36,489.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.35 CZK over 839 transactions" + } + ] + }, + { + "id": 2103, + "type": "message", + "date": "2023-01-11T09:00:04", + "date_unixtime": "1673424004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028089 BTC for 109.61 CZK @ 390,241 CZK\nFees are 0.38499456 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.8048199999492679534193958154 CZK)\nThe limits being 0.10 % (36.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20091677 BTC (90,178.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.05 % (-11,772.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 254.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09380888 BTC (36,608.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.35 CZK over 840 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028089 BTC for 109.61 CZK @ 390,241 CZK\nFees are 0.38499456 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (7.8048199999492679534193958154 CZK)\nThe limits being 0.10 % (36.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20091677 BTC (90,178.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.05 % (-11,772.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 254.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09380888 BTC (36,608.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.35 CZK over 840 transactions" + } + ] + }, + { + "id": 2104, + "type": "message", + "date": "2023-01-11T13:00:04", + "date_unixtime": "1673438404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028089 BTC for 109.61 CZK @ 390,235 CZK\nFees are 0.38498864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.9023499999281591648071863826 CZK)\nThe limits being 0.10 % (36.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20119766 BTC (90,288.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 390,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.04 % (-11,773.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 144.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09408977 BTC (36,717.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.36 CZK over 841 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028089 BTC for 109.61 CZK @ 390,235 CZK\nFees are 0.38498864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (3.9023499999281591648071863826 CZK)\nThe limits being 0.10 % (36.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20119766 BTC (90,288.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 390,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.04 % (-11,773.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 144.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09408977 BTC (36,717.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.36 CZK over 841 transactions" + } + ] + }, + { + "id": 2105, + "type": "message", + "date": "2023-01-11T17:00:35", + "date_unixtime": "1673452835", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00028278 BTC for 109.61 CZK @ 387,633 CZK\nFees are 0.38499479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (19.381649998398349253107440318 CZK)\nThe limits being 0.10 % (36.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20148044 BTC (90,398.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 387,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -13.60 % (-12,297.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 34.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09437255 BTC (36,581.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.36 CZK over 842 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00028278 BTC for 109.61 CZK @ 387,633 CZK\nFees are 0.38499479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (19.381649998398349253107440318 CZK)\nThe limits being 0.10 % (36.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20148044 BTC (90,398.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 387,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -13.60 % (-12,297.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 34.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09437255 BTC (36,581.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.36 CZK over 842 transactions" + } + ] + }, + { + "id": 2106, + "type": "message", + "date": "2023-01-11T21:00:04", + "date_unixtime": "1673467204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027932 BTC for 109.61 CZK @ 392,426 CZK\nFees are 0.38498626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (35.318339998034945855052212003 CZK)\nThe limits being 0.10 % (37.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20175976 BTC (90,508.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 392,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -12.52 % (-11,332.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,924.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09465187 BTC (37,143.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.36 CZK over 843 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027932 BTC for 109.61 CZK @ 392,426 CZK\nFees are 0.38498626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (35.318339998034945855052212003 CZK)\nThe limits being 0.10 % (37.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20175976 BTC (90,508.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 392,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -12.52 % (-11,332.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,924.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09465187 BTC (37,143.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.36 CZK over 843 transactions" + } + ] + }, + { + "id": 2107, + "type": "message", + "date": "2023-01-12T01:00:04", + "date_unixtime": "1673481604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027322 BTC for 109.62 CZK @ 401,199 CZK\nFees are 0.38499736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (40.119899997180645866981850765 CZK)\nThe limits being 0.10 % (38.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20203298 BTC (90,618.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 401,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -10.55 % (-9,562.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,814.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09492509 BTC (38,083.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.37 CZK over 844 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027322 BTC for 109.62 CZK @ 401,199 CZK\nFees are 0.38499736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (40.119899997180645866981850765 CZK)\nThe limits being 0.10 % (38.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20203298 BTC (90,618.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 401,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -10.55 % (-9,562.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,814.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09492509 BTC (38,083.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.37 CZK over 844 transactions" + } + ] + }, + { + "id": 2108, + "type": "message", + "date": "2023-01-12T05:00:05", + "date_unixtime": "1673496005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026910 BTC for 109.61 CZK @ 407,339 CZK\nFees are 0.38499502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (24.440339998411357350721749239 CZK)\nThe limits being 0.10 % (38.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20230208 BTC (90,728.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 407,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.17 % (-8,322.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,704.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09519419 BTC (38,776.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.37 CZK over 845 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026910 BTC for 109.61 CZK @ 407,339 CZK\nFees are 0.38499502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (24.440339998411357350721749239 CZK)\nThe limits being 0.10 % (38.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20230208 BTC (90,728.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 407,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.17 % (-8,322.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,704.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09519419 BTC (38,776.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.37 CZK over 845 transactions" + } + ] + }, + { + "id": 2109, + "type": "message", + "date": "2023-01-12T09:00:04", + "date_unixtime": "1673510404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027025 BTC for 109.61 CZK @ 405,602 CZK\nFees are 0.38499156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (20.280099999677354974517956808 CZK)\nThe limits being 0.10 % (38.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20257233 BTC (90,838.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 405,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.55 % (-8,674.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,594.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09546444 BTC (38,720.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.37 CZK over 846 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027025 BTC for 109.61 CZK @ 405,602 CZK\nFees are 0.38499156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (20.280099999677354974517956808 CZK)\nThe limits being 0.10 % (38.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20257233 BTC (90,838.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 405,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.55 % (-8,674.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,594.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09546444 BTC (38,720.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.37 CZK over 846 transactions" + } + ] + }, + { + "id": 2110, + "type": "message", + "date": "2023-01-12T13:00:04", + "date_unixtime": "1673524804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026956 BTC for 109.61 CZK @ 406,640 CZK\nFees are 0.38499134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.265599999349361372309248835 CZK)\nThe limits being 0.10 % (38.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20284189 BTC (90,948.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 406,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -9.31 % (-8,464.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,484.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09573400 BTC (38,929.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.38 CZK over 847 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026956 BTC for 109.61 CZK @ 406,640 CZK\nFees are 0.38499134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (16.265599999349361372309248835 CZK)\nThe limits being 0.10 % (38.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20284189 BTC (90,948.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 406,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -9.31 % (-8,464.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,484.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09573400 BTC (38,929.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.38 CZK over 847 transactions" + } + ] + }, + { + "id": 2111, + "type": "message", + "date": "2023-01-12T17:00:05", + "date_unixtime": "1673539205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00027193 BTC for 109.61 CZK @ 403,092 CZK\nFees are 0.38498758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (24.185519998579604561690099069 CZK)\nThe limits being 0.10 % (38.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20311382 BTC (91,058.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 403,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -10.09 % (-9,184.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,374.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09600593 BTC (38,699.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.38 CZK over 848 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00027193 BTC for 109.61 CZK @ 403,092 CZK\nFees are 0.38498758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (24.185519998579604561690099069 CZK)\nThe limits being 0.10 % (38.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20311382 BTC (91,058.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 403,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -10.09 % (-9,184.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,374.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09600593 BTC (38,699.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.38 CZK over 848 transactions" + } + ] + }, + { + "id": 2112, + "type": "message", + "date": "2023-01-12T21:00:05", + "date_unixtime": "1673553605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026133 BTC for 109.61 CZK @ 419,443 CZK\nFees are 0.38498840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (41.94429999726781848041859995 CZK)\nThe limits being 0.10 % (40.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20337515 BTC (91,168.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 419,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.43 % (-5,863.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,264.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09626726 BTC (40,378.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.38 CZK over 849 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026133 BTC for 109.61 CZK @ 419,443 CZK\nFees are 0.38498840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (41.94429999726781848041859995 CZK)\nThe limits being 0.10 % (40.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20337515 BTC (91,168.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 419,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.43 % (-5,863.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,264.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09626726 BTC (40,378.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.38 CZK over 849 transactions" + } + ] + }, + { + "id": 2113, + "type": "message", + "date": "2023-01-13T01:00:04", + "date_unixtime": "1673568004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026218 BTC for 109.61 CZK @ 418,083 CZK\nFees are 0.38498826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (45.989129998624464994230468744 CZK)\nThe limits being 0.10 % (40.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20363733 BTC (91,278.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 418,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.73 % (-6,140.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,154.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09652944 BTC (40,357.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.39 CZK over 850 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026218 BTC for 109.61 CZK @ 418,083 CZK\nFees are 0.38498826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (45.989129998624464994230468744 CZK)\nThe limits being 0.10 % (40.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20363733 BTC (91,278.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 418,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.73 % (-6,140.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,154.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09652944 BTC (40,357.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.39 CZK over 850 transactions" + } + ] + }, + { + "id": 2114, + "type": "message", + "date": "2023-01-13T05:00:03", + "date_unixtime": "1673582403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026158 BTC for 109.61 CZK @ 419,041 CZK\nFees are 0.38498736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (41.904099997436146817433424486 CZK)\nThe limits being 0.10 % (40.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20389891 BTC (91,388.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 419,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.51 % (-5,946.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,044.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09679102 BTC (40,559.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.39 CZK over 851 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026158 BTC for 109.61 CZK @ 419,041 CZK\nFees are 0.38498736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (41.904099997436146817433424486 CZK)\nThe limits being 0.10 % (40.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20389891 BTC (91,388.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 419,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.51 % (-5,946.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,044.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09679102 BTC (40,559.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.39 CZK over 851 transactions" + } + ] + }, + { + "id": 2115, + "type": "message", + "date": "2023-01-13T09:00:04", + "date_unixtime": "1673596804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026228 BTC for 109.62 CZK @ 417,933 CZK\nFees are 0.38499692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (29.255309998579776334149676986 CZK)\nThe limits being 0.10 % (40.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20416119 BTC (91,498.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 417,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -6.75 % (-6,172.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,934.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09705330 BTC (40,561.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.39 CZK over 852 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026228 BTC for 109.62 CZK @ 417,933 CZK\nFees are 0.38499692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (29.255309998579776334149676986 CZK)\nThe limits being 0.10 % (40.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20416119 BTC (91,498.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 417,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -6.75 % (-6,172.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,934.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09705330 BTC (40,561.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.39 CZK over 852 transactions" + } + ] + }, + { + "id": 2116, + "type": "message", + "date": "2023-01-13T13:00:04", + "date_unixtime": "1673611204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00026019 BTC for 109.61 CZK @ 421,285 CZK\nFees are 0.38499228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (33.702799998613561554889184214 CZK)\nThe limits being 0.10 % (41.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20442138 BTC (91,608.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 421,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -5.99 % (-5,488.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,824.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09731349 BTC (40,996.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.40 CZK over 853 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00026019 BTC for 109.61 CZK @ 421,285 CZK\nFees are 0.38499228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (33.702799998613561554889184214 CZK)\nThe limits being 0.10 % (41.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20442138 BTC (91,608.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 421,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -5.99 % (-5,488.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,824.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09731349 BTC (40,996.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.40 CZK over 853 transactions" + } + ] + }, + { + "id": 2117, + "type": "message", + "date": "2023-01-13T17:00:04", + "date_unixtime": "1673625604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025621 BTC for 109.61 CZK @ 427,824 CZK\nFees are 0.38498751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.225919998556241632487768165 CZK)\nThe limits being 0.10 % (41.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20467759 BTC (91,718.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 427,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.53 % (-4,152.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,714.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09756970 BTC (41,742.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.40 CZK over 854 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025621 BTC for 109.61 CZK @ 427,824 CZK\nFees are 0.38498751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.225919998556241632487768165 CZK)\nThe limits being 0.10 % (41.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20467759 BTC (91,718.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 427,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.53 % (-4,152.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,714.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09756970 BTC (41,742.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.40 CZK over 854 transactions" + } + ] + }, + { + "id": 2118, + "type": "message", + "date": "2023-01-13T21:00:03", + "date_unixtime": "1673640003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00025481 BTC for 109.61 CZK @ 430,175 CZK\nFees are 0.38498788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.413999999648027555218757034 CZK)\nThe limits being 0.10 % (42.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20493240 BTC (91,828.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 430,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -4.00 % (-3,671.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,604.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09782451 BTC (42,081.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.40 CZK over 855 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00025481 BTC for 109.61 CZK @ 430,175 CZK\nFees are 0.38498788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (34.413999999648027555218757034 CZK)\nThe limits being 0.10 % (42.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20493240 BTC (91,828.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 430,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -4.00 % (-3,671.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,604.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09782451 BTC (42,081.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.40 CZK over 855 transactions" + } + ] + }, + { + "id": 2119, + "type": "message", + "date": "2023-01-14T01:00:03", + "date_unixtime": "1673654403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00024856 BTC for 109.56 CZK @ 440,780 CZK\nFees are 0.38480332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (35.262421524663677130044843048 CZK)\nThe limits being 0.10 % (43.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20518096 BTC (91,937.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 440,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": -1.63 % (-1,498.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,494.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09807307 BTC (43,228.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.40 CZK over 856 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00024856 BTC for 109.56 CZK @ 440,780 CZK\nFees are 0.38480332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (35.262421524663677130044843048 CZK)\nThe limits being 0.10 % (43.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20518096 BTC (91,937.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 440,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": -1.63 % (-1,498.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,494.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09807307 BTC (43,228.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.40 CZK over 856 transactions" + } + ] + }, + { + "id": 2120, + "type": "message", + "date": "2023-01-14T05:00:38", + "date_unixtime": "1673668838", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023566 BTC for 109.62 CZK @ 465,143 CZK\nFees are 0.38499739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (41.862869997020104589381449065 CZK)\nThe limits being 0.10 % (45.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20541662 BTC (92,047.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 465,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.80 % (3,500.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,384.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09830873 BTC (45,727.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.41 CZK over 857 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023566 BTC for 109.62 CZK @ 465,143 CZK\nFees are 0.38499739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (41.862869997020104589381449065 CZK)\nThe limits being 0.10 % (45.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20541662 BTC (92,047.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 465,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.80 % (3,500.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,384.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09830873 BTC (45,727.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.41 CZK over 857 transactions" + } + ] + }, + { + "id": 2121, + "type": "message", + "date": "2023-01-14T09:00:04", + "date_unixtime": "1673683204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023665 BTC for 109.62 CZK @ 463,200 CZK\nFees are 0.38499978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.05600 CZK)\nThe limits being 0.10 % (45.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20565327 BTC (92,157.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 463,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.36 % (3,100.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,274.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09854538 BTC (45,646.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.41 CZK over 858 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023665 BTC for 109.62 CZK @ 463,200 CZK\nFees are 0.38499978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.05600 CZK)\nThe limits being 0.10 % (45.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20565327 BTC (92,157.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 463,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.36 % (3,100.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,274.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09854538 BTC (45,646.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.41 CZK over 858 transactions" + } + ] + }, + { + "id": 2122, + "type": "message", + "date": "2023-01-14T13:00:04", + "date_unixtime": "1673697604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023839 BTC for 109.61 CZK @ 459,803 CZK\nFees are 0.38498628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.794089999988086497794653985 CZK)\nThe limits being 0.10 % (45.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20589166 BTC (92,267.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.60 % (2,401.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,164.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09878377 BTC (45,421.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.41 CZK over 859 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023839 BTC for 109.61 CZK @ 459,803 CZK\nFees are 0.38498628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.794089999988086497794653985 CZK)\nThe limits being 0.10 % (45.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20589166 BTC (92,267.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.60 % (2,401.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,164.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09878377 BTC (45,421.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.41 CZK over 859 transactions" + } + ] + }, + { + "id": 2123, + "type": "message", + "date": "2023-01-14T17:00:05", + "date_unixtime": "1673712005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023790 BTC for 109.62 CZK @ 460,761 CZK\nFees are 0.38499543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.215219999442891452007088264 CZK)\nThe limits being 0.10 % (45.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20612956 BTC (92,377.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 460,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.81 % (2,598.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,054.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09902167 BTC (45,625.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.42 CZK over 860 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023790 BTC for 109.62 CZK @ 460,761 CZK\nFees are 0.38499543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.215219999442891452007088264 CZK)\nThe limits being 0.10 % (45.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20612956 BTC (92,377.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 460,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.81 % (2,598.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,054.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09902167 BTC (45,625.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.42 CZK over 860 transactions" + } + ] + }, + { + "id": 2124, + "type": "message", + "date": "2023-01-14T21:00:04", + "date_unixtime": "1673726404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023793 BTC for 109.61 CZK @ 460,691 CZK\nFees are 0.38498548 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.820729999534475132019648542 CZK)\nThe limits being 0.10 % (45.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20636749 BTC (92,487.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 460,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.79 % (2,583.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,944.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09925960 BTC (45,728.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.42 CZK over 861 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023793 BTC for 109.61 CZK @ 460,691 CZK\nFees are 0.38498548 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.820729999534475132019648542 CZK)\nThe limits being 0.10 % (45.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20636749 BTC (92,487.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 460,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.79 % (2,583.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,944.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09925960 BTC (45,728.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.42 CZK over 861 transactions" + } + ] + }, + { + "id": 2125, + "type": "message", + "date": "2023-01-15T01:00:03", + "date_unixtime": "1673740803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023633 BTC for 109.62 CZK @ 463,827 CZK\nFees are 0.38499962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.276539999815734001362935898 CZK)\nThe limits being 0.10 % (46.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20660382 BTC (92,597.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 463,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.49 % (3,230.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,834.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09949593 BTC (46,148.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.42 CZK over 862 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023633 BTC for 109.62 CZK @ 463,827 CZK\nFees are 0.38499962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.276539999815734001362935898 CZK)\nThe limits being 0.10 % (46.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20660382 BTC (92,597.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 463,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.49 % (3,230.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,834.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09949593 BTC (46,148.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.42 CZK over 862 transactions" + } + ] + }, + { + "id": 2126, + "type": "message", + "date": "2023-01-15T05:00:03", + "date_unixtime": "1673755203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023882 BTC for 109.61 CZK @ 458,983 CZK\nFees are 0.38499290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.5898299999912374355779393179 CZK)\nThe limits being 0.10 % (45.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20684264 BTC (92,707.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 458,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.40 % (2,229.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,724.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09973475 BTC (45,776.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.43 CZK over 863 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023882 BTC for 109.61 CZK @ 458,983 CZK\nFees are 0.38499290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.5898299999912374355779393179 CZK)\nThe limits being 0.10 % (45.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20684264 BTC (92,707.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 458,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.40 % (2,229.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,724.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09973475 BTC (45,776.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.43 CZK over 863 transactions" + } + ] + }, + { + "id": 2127, + "type": "message", + "date": "2023-01-15T09:00:04", + "date_unixtime": "1673769604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023875 BTC for 109.61 CZK @ 459,110 CZK\nFees are 0.38498646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.5910990047921280752966710752 CZK)\nThe limits being 0.10 % (45.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20708139 BTC (92,817.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.43 % (2,255.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,614.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09997350 BTC (45,898.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.43 CZK over 864 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023875 BTC for 109.61 CZK @ 459,110 CZK\nFees are 0.38498646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.5910990047921280752966710752 CZK)\nThe limits being 0.10 % (45.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20708139 BTC (92,817.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.43 % (2,255.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,614.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09997350 BTC (45,898.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.43 CZK over 864 transactions" + } + ] + }, + { + "id": 2128, + "type": "message", + "date": "2023-01-15T13:00:04", + "date_unixtime": "1673784004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023911 BTC for 109.62 CZK @ 458,434 CZK\nFees are 0.38499934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.5843399996628420493977240003 CZK)\nThe limits being 0.10 % (45.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20732050 BTC (92,927.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 458,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.28 % (2,114.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,504.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10021261 BTC (45,940.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.43 CZK over 865 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023911 BTC for 109.62 CZK @ 458,434 CZK\nFees are 0.38499934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.5843399996628420493977240003 CZK)\nThe limits being 0.10 % (45.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20732050 BTC (92,927.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 458,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.28 % (2,114.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,504.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10021261 BTC (45,940.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.43 CZK over 865 transactions" + } + ] + }, + { + "id": 2129, + "type": "message", + "date": "2023-01-15T17:00:03", + "date_unixtime": "1673798403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023675 BTC for 109.61 CZK @ 462,996 CZK\nFees are 0.38499284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.259919999957908671287242276 CZK)\nThe limits being 0.10 % (46.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20755725 BTC (93,037.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 462,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.29 % (3,060.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,394.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10044936 BTC (46,507.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.43 CZK over 866 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023675 BTC for 109.61 CZK @ 462,996 CZK\nFees are 0.38499284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.259919999957908671287242276 CZK)\nThe limits being 0.10 % (46.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20755725 BTC (93,037.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 462,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.29 % (3,060.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,394.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10044936 BTC (46,507.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.43 CZK over 866 transactions" + } + ] + }, + { + "id": 2130, + "type": "message", + "date": "2023-01-15T21:00:03", + "date_unixtime": "1673812803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023723 BTC for 109.61 CZK @ 462,059 CZK\nFees are 0.38499267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.241179999328321451995115271 CZK)\nThe limits being 0.10 % (46.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20779448 BTC (93,147.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 462,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.08 % (2,865.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,284.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10068659 BTC (46,523.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.44 CZK over 867 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023723 BTC for 109.61 CZK @ 462,059 CZK\nFees are 0.38499267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.241179999328321451995115271 CZK)\nThe limits being 0.10 % (46.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20779448 BTC (93,147.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 462,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.08 % (2,865.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,284.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10068659 BTC (46,523.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.44 CZK over 867 transactions" + } + ] + }, + { + "id": 2131, + "type": "message", + "date": "2023-01-16T01:00:03", + "date_unixtime": "1673827203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023673 BTC for 109.61 CZK @ 463,025 CZK\nFees are 0.38498442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.260499999252815795246776105 CZK)\nThe limits being 0.10 % (46.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20803121 BTC (93,257.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 463,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.29 % (3,065.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,174.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10092332 BTC (46,730.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.44 CZK over 868 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023673 BTC for 109.61 CZK @ 463,025 CZK\nFees are 0.38498442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.260499999252815795246776105 CZK)\nThe limits being 0.10 % (46.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20803121 BTC (93,257.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 463,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.29 % (3,065.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,174.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10092332 BTC (46,730.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.44 CZK over 868 transactions" + } + ] + }, + { + "id": 2132, + "type": "message", + "date": "2023-01-16T05:00:03", + "date_unixtime": "1673841603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023519 BTC for 109.61 CZK @ 466,057 CZK\nFees are 0.38498456 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.6605699999828399403058723441 CZK)\nThe limits being 0.10 % (47.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20826640 BTC (93,367.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 466,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.96 % (3,696.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,064.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10115851 BTC (47,145.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.44 CZK over 869 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023519 BTC for 109.61 CZK @ 466,057 CZK\nFees are 0.38498456 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.6605699999828399403058723441 CZK)\nThe limits being 0.10 % (47.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20826640 BTC (93,367.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 466,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.96 % (3,696.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,064.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10115851 BTC (47,145.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.44 CZK over 869 transactions" + } + ] + }, + { + "id": 2133, + "type": "message", + "date": "2023-01-16T09:00:05", + "date_unixtime": "1673856005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023406 BTC for 109.61 CZK @ 468,319 CZK\nFees are 0.38499439 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.6831899996598251501271653632 CZK)\nThe limits being 0.10 % (47.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20850046 BTC (93,477.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 468,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.46 % (4,166.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,954.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10139257 BTC (47,484.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.45 CZK over 870 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023406 BTC for 109.61 CZK @ 468,319 CZK\nFees are 0.38499439 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (4.6831899996598251501271653632 CZK)\nThe limits being 0.10 % (47.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20850046 BTC (93,477.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 468,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.46 % (4,166.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,954.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10139257 BTC (47,484.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.45 CZK over 870 transactions" + } + ] + }, + { + "id": 2134, + "type": "message", + "date": "2023-01-16T13:00:04", + "date_unixtime": "1673870404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023728 BTC for 109.61 CZK @ 461,951 CZK\nFees are 0.38498381 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.239019999455714842958613162 CZK)\nThe limits being 0.10 % (46.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20873774 BTC (93,587.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 461,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.03 % (2,838.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,844.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10162985 BTC (46,948.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.45 CZK over 871 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023728 BTC for 109.61 CZK @ 461,951 CZK\nFees are 0.38498381 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.239019999455714842958613162 CZK)\nThe limits being 0.10 % (46.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20873774 BTC (93,587.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 461,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.03 % (2,838.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,844.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10162985 BTC (46,948.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.45 CZK over 871 transactions" + } + ] + }, + { + "id": 2135, + "type": "message", + "date": "2023-01-16T17:00:04", + "date_unixtime": "1673884804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023537 BTC for 109.62 CZK @ 465,715 CZK\nFees are 0.38499668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.971457533420808112253753322 CZK)\nThe limits being 0.10 % (47.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20897311 BTC (93,697.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 465,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.87 % (3,624.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,734.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10186522 BTC (47,440.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.45 CZK over 872 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023537 BTC for 109.62 CZK @ 465,715 CZK\nFees are 0.38499668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.971457533420808112253753322 CZK)\nThe limits being 0.10 % (47.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20897311 BTC (93,697.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 465,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.87 % (3,624.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,734.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10186522 BTC (47,440.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.45 CZK over 872 transactions" + } + ] + }, + { + "id": 2136, + "type": "message", + "date": "2023-01-16T21:00:03", + "date_unixtime": "1673899203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023157 BTC for 109.61 CZK @ 473,342 CZK\nFees are 0.38498407 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.933679999261555923615706214 CZK)\nThe limits being 0.10 % (48.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20920468 BTC (93,807.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.56 % (5,217.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,624.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10209679 BTC (48,326.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.45 CZK over 873 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023157 BTC for 109.61 CZK @ 473,342 CZK\nFees are 0.38498407 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.933679999261555923615706214 CZK)\nThe limits being 0.10 % (48.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20920468 BTC (93,807.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.56 % (5,217.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,624.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10209679 BTC (48,326.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.45 CZK over 873 transactions" + } + ] + }, + { + "id": 2137, + "type": "message", + "date": "2023-01-17T01:00:04", + "date_unixtime": "1673913604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023314 BTC for 109.62 CZK @ 470,170 CZK\nFees are 0.38499681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.806799998580929686818448204 CZK)\nThe limits being 0.10 % (48.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20943782 BTC (93,917.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 470,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.85 % (4,553.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,514.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10232993 BTC (48,112.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.46 CZK over 874 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023314 BTC for 109.62 CZK @ 470,170 CZK\nFees are 0.38499681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.806799998580929686818448204 CZK)\nThe limits being 0.10 % (48.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20943782 BTC (93,917.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 470,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.85 % (4,553.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,514.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10232993 BTC (48,112.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.46 CZK over 874 transactions" + } + ] + }, + { + "id": 2138, + "type": "message", + "date": "2023-01-17T05:00:04", + "date_unixtime": "1673928004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023372 BTC for 109.61 CZK @ 468,992 CZK\nFees are 0.38498759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.759679999003999436850366521 CZK)\nThe limits being 0.10 % (48.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20967154 BTC (94,027.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 468,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.58 % (4,306.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,405.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10256365 BTC (48,101.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.46 CZK over 875 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023372 BTC for 109.61 CZK @ 468,992 CZK\nFees are 0.38498759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (18.759679999003999436850366521 CZK)\nThe limits being 0.10 % (48.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20967154 BTC (94,027.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 468,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.58 % (4,306.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,405.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10256365 BTC (48,101.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.46 CZK over 875 transactions" + } + ] + }, + { + "id": 2139, + "type": "message", + "date": "2023-01-17T09:00:05", + "date_unixtime": "1673942405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023351 BTC for 109.62 CZK @ 469,427 CZK\nFees are 0.38499844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.388539999513927710125604878 CZK)\nThe limits being 0.10 % (48.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.20990505 BTC (94,137.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 469,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.67 % (4,397.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,295.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10279716 BTC (48,255.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.46 CZK over 876 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023351 BTC for 109.62 CZK @ 469,427 CZK\nFees are 0.38499844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.388539999513927710125604878 CZK)\nThe limits being 0.10 % (48.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.20990505 BTC (94,137.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 469,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.67 % (4,397.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,295.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10279716 BTC (48,255.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.46 CZK over 876 transactions" + } + ] + }, + { + "id": 2140, + "type": "message", + "date": "2023-01-17T13:00:03", + "date_unixtime": "1673956803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023300 BTC for 109.62 CZK @ 470,455 CZK\nFees are 0.38499885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.113649999679234268044676252 CZK)\nThe limits being 0.10 % (48.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21013805 BTC (94,247.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 470,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.89 % (4,612.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,185.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10303016 BTC (48,471.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.47 CZK over 877 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023300 BTC for 109.62 CZK @ 470,455 CZK\nFees are 0.38499885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.113649999679234268044676252 CZK)\nThe limits being 0.10 % (48.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21013805 BTC (94,247.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 470,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.89 % (4,612.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,185.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10303016 BTC (48,471.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.47 CZK over 877 transactions" + } + ] + }, + { + "id": 2141, + "type": "message", + "date": "2023-01-17T17:00:04", + "date_unixtime": "1673971204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023320 BTC for 109.61 CZK @ 470,033 CZK\nFees are 0.38498368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (23.501649999017162059720651818 CZK)\nThe limits being 0.10 % (48.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21037125 BTC (94,357.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 470,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.79 % (4,523.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,075.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10326336 BTC (48,537.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.47 CZK over 878 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023320 BTC for 109.61 CZK @ 470,033 CZK\nFees are 0.38498368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (23.501649999017162059720651818 CZK)\nThe limits being 0.10 % (48.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21037125 BTC (94,357.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 470,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.79 % (4,523.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,075.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10326336 BTC (48,537.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.47 CZK over 878 transactions" + } + ] + }, + { + "id": 2142, + "type": "message", + "date": "2023-01-17T21:00:05", + "date_unixtime": "1673985605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023127 BTC for 109.61 CZK @ 473,966 CZK\nFees are 0.38499218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (33.177619997324623040183502680 CZK)\nThe limits being 0.10 % (49.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21060252 BTC (94,467.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.66 % (5,350.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,965.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10349463 BTC (49,052.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.47 CZK over 879 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023127 BTC for 109.61 CZK @ 473,966 CZK\nFees are 0.38499218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (33.177619997324623040183502680 CZK)\nThe limits being 0.10 % (49.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21060252 BTC (94,467.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.66 % (5,350.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,965.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10349463 BTC (49,052.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.47 CZK over 879 transactions" + } + ] + }, + { + "id": 2143, + "type": "message", + "date": "2023-01-18T01:00:04", + "date_unixtime": "1674000004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023336 BTC for 109.61 CZK @ 469,723 CZK\nFees are 0.38499374 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.577839997444665303252124590 CZK)\nThe limits being 0.10 % (48.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21083588 BTC (94,577.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 469,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.71 % (4,456.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,855.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10372799 BTC (48,723.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.47 CZK over 880 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023336 BTC for 109.61 CZK @ 469,723 CZK\nFees are 0.38499374 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.577839997444665303252124590 CZK)\nThe limits being 0.10 % (48.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21083588 BTC (94,577.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 469,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.71 % (4,456.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,855.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10372799 BTC (48,723.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.47 CZK over 880 transactions" + } + ] + }, + { + "id": 2144, + "type": "message", + "date": "2023-01-18T05:00:38", + "date_unixtime": "1674014438", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023162 BTC for 109.61 CZK @ 473,247 CZK\nFees are 0.38498991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.859759998110404276681730514 CZK)\nThe limits being 0.10 % (49.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21106750 BTC (94,687.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.49 % (5,199.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,745.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10395961 BTC (49,198.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.48 CZK over 881 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023162 BTC for 109.61 CZK @ 473,247 CZK\nFees are 0.38498991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.859759998110404276681730514 CZK)\nThe limits being 0.10 % (49.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21106750 BTC (94,687.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.49 % (5,199.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,745.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10395961 BTC (49,198.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.48 CZK over 881 transactions" + } + ] + }, + { + "id": 2145, + "type": "message", + "date": "2023-01-18T09:00:04", + "date_unixtime": "1674028804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023233 BTC for 109.62 CZK @ 471,809 CZK\nFees are 0.38499664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (33.026629997779690336608853046 CZK)\nThe limits being 0.10 % (49.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21129983 BTC (94,797.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 471,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.16 % (4,895.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,635.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10419194 BTC (49,158.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.48 CZK over 882 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023233 BTC for 109.62 CZK @ 471,809 CZK\nFees are 0.38499664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (33.026629997779690336608853046 CZK)\nThe limits being 0.10 % (49.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21129983 BTC (94,797.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 471,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.16 % (4,895.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,635.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10419194 BTC (49,158.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.48 CZK over 882 transactions" + } + ] + }, + { + "id": 2146, + "type": "message", + "date": "2023-01-18T13:00:04", + "date_unixtime": "1674043204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023315 BTC for 109.61 CZK @ 470,138 CZK\nFees are 0.38498712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.611039999504201518147773807 CZK)\nThe limits being 0.10 % (49.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21153298 BTC (94,907.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 470,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.79 % (4,541.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,525.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10442509 BTC (49,094.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.48 CZK over 883 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023315 BTC for 109.61 CZK @ 470,138 CZK\nFees are 0.38498712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (37.611039999504201518147773807 CZK)\nThe limits being 0.10 % (49.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21153298 BTC (94,907.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 470,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.79 % (4,541.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,525.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10442509 BTC (49,094.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.48 CZK over 883 transactions" + } + ] + }, + { + "id": 2147, + "type": "message", + "date": "2023-01-18T17:00:04", + "date_unixtime": "1674057604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023551 BTC for 109.61 CZK @ 465,433 CZK\nFees are 0.38499221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.962989999948589769783085006 CZK)\nThe limits being 0.10 % (48.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21176849 BTC (95,017.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 465,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.73 % (3,546.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,415.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10466060 BTC (48,712.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.49 CZK over 884 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023551 BTC for 109.61 CZK @ 465,433 CZK\nFees are 0.38499221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.962989999948589769783085006 CZK)\nThe limits being 0.10 % (48.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21176849 BTC (95,017.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 465,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.73 % (3,546.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,415.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10466060 BTC (48,712.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.49 CZK over 884 transactions" + } + ] + }, + { + "id": 2148, + "type": "message", + "date": "2023-01-18T21:00:03", + "date_unixtime": "1674072003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023613 BTC for 109.61 CZK @ 464,210 CZK\nFees are 0.38499145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (41.778899997892017754907752987 CZK)\nThe limits being 0.10 % (48.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21200462 BTC (95,127.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 464,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.46 % (3,286.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,305.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10489673 BTC (48,694.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.49 CZK over 885 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023613 BTC for 109.61 CZK @ 464,210 CZK\nFees are 0.38499145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (41.778899997892017754907752987 CZK)\nThe limits being 0.10 % (48.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21200462 BTC (95,127.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 464,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.46 % (3,286.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,305.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10489673 BTC (48,694.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.49 CZK over 885 transactions" + } + ] + }, + { + "id": 2149, + "type": "message", + "date": "2023-01-19T01:00:04", + "date_unixtime": "1674086404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023876 BTC for 109.62 CZK @ 459,102 CZK\nFees are 0.38499596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (50.501219996639338124905935273 CZK)\nThe limits being 0.10 % (48.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21224338 BTC (95,237.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.31 % (2,203.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,195.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10513549 BTC (48,267.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.49 CZK over 886 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023876 BTC for 109.62 CZK @ 459,102 CZK\nFees are 0.38499596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (50.501219996639338124905935273 CZK)\nThe limits being 0.10 % (48.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21224338 BTC (95,237.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.31 % (2,203.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,195.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10513549 BTC (48,267.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.49 CZK over 886 transactions" + } + ] + }, + { + "id": 2150, + "type": "message", + "date": "2023-01-19T05:00:03", + "date_unixtime": "1674100803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023817 BTC for 109.61 CZK @ 460,229 CZK\nFees are 0.38498735 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (41.420609998774286219418582387 CZK)\nThe limits being 0.10 % (48.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21248155 BTC (95,347.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 460,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.56 % (2,442.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,085.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10537366 BTC (48,496.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.49 CZK over 887 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023817 BTC for 109.61 CZK @ 460,229 CZK\nFees are 0.38498735 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (41.420609998774286219418582387 CZK)\nThe limits being 0.10 % (48.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21248155 BTC (95,347.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 460,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.56 % (2,442.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,085.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10537366 BTC (48,496.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.49 CZK over 887 transactions" + } + ] + }, + { + "id": 2151, + "type": "message", + "date": "2023-01-19T09:00:03", + "date_unixtime": "1674115203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023749 BTC for 109.61 CZK @ 461,545 CZK\nFees are 0.38498588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (32.308149997892550186939924755 CZK)\nThe limits being 0.10 % (48.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21271904 BTC (95,457.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 461,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.85 % (2,721.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,975.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10561115 BTC (48,744.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.50 CZK over 888 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023749 BTC for 109.61 CZK @ 461,545 CZK\nFees are 0.38498588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (32.308149997892550186939924755 CZK)\nThe limits being 0.10 % (48.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21271904 BTC (95,457.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 461,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.85 % (2,721.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,975.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10561115 BTC (48,744.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.50 CZK over 888 transactions" + } + ] + }, + { + "id": 2152, + "type": "message", + "date": "2023-01-19T13:00:05", + "date_unixtime": "1674129605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023875 BTC for 109.62 CZK @ 459,124 CZK\nFees are 0.38499829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.773719999686959516039411797 CZK)\nThe limits being 0.10 % (48.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21295779 BTC (95,567.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 459,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 2.31 % (2,206.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,865.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10584990 BTC (48,598.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.50 CZK over 889 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023875 BTC for 109.62 CZK @ 459,124 CZK\nFees are 0.38499829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (13.773719999686959516039411797 CZK)\nThe limits being 0.10 % (48.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21295779 BTC (95,567.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 459,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 2.31 % (2,206.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,865.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10584990 BTC (48,598.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.50 CZK over 889 transactions" + } + ] + }, + { + "id": 2153, + "type": "message", + "date": "2023-01-19T17:00:04", + "date_unixtime": "1674144004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023702 BTC for 109.61 CZK @ 462,471 CZK\nFees are 0.38499485 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (36.997679997487487574604402271 CZK)\nThe limits being 0.10 % (49.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21319481 BTC (95,677.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 462,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.05 % (2,918.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,755.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10608692 BTC (49,062.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.50 CZK over 890 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023702 BTC for 109.61 CZK @ 462,471 CZK\nFees are 0.38499485 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (36.997679997487487574604402271 CZK)\nThe limits being 0.10 % (49.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21319481 BTC (95,677.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 462,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.05 % (2,918.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,755.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10608692 BTC (49,062.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.50 CZK over 890 transactions" + } + ] + }, + { + "id": 2154, + "type": "message", + "date": "2023-01-19T21:00:04", + "date_unixtime": "1674158404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023522 BTC for 109.61 CZK @ 466,010 CZK\nFees are 0.38499483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (60.581299998512984504917255210 CZK)\nThe limits being 0.10 % (49.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21343003 BTC (95,787.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 466,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.83 % (3,672.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,645.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10632214 BTC (49,547.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.51 CZK over 891 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023522 BTC for 109.61 CZK @ 466,010 CZK\nFees are 0.38499483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (60.581299998512984504917255210 CZK)\nThe limits being 0.10 % (49.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21343003 BTC (95,787.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 466,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.83 % (3,672.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,645.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10632214 BTC (49,547.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.51 CZK over 891 transactions" + } + ] + }, + { + "id": 2155, + "type": "message", + "date": "2023-01-20T01:00:36", + "date_unixtime": "1674172836", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023539 BTC for 109.61 CZK @ 465,660 CZK\nFees are 0.38498372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (55.879199997002716161475110700 CZK)\nThe limits being 0.10 % (49.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21366542 BTC (95,897.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 465,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.75 % (3,597.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,535.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10655753 BTC (49,619.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.51 CZK over 892 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023539 BTC for 109.61 CZK @ 465,660 CZK\nFees are 0.38498372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (55.879199997002716161475110700 CZK)\nThe limits being 0.10 % (49.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21366542 BTC (95,897.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 465,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.75 % (3,597.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,535.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10655753 BTC (49,619.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.51 CZK over 892 transactions" + } + ] + }, + { + "id": 2156, + "type": "message", + "date": "2023-01-20T05:00:03", + "date_unixtime": "1674187203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023538 BTC for 109.61 CZK @ 465,684 CZK\nFees are 0.38498721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (41.911559996296419071612852340 CZK)\nThe limits being 0.10 % (49.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21390080 BTC (96,007.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 465,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.75 % (3,602.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,425.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10679291 BTC (49,731.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.51 CZK over 893 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023538 BTC for 109.61 CZK @ 465,684 CZK\nFees are 0.38498721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (41.911559996296419071612852340 CZK)\nThe limits being 0.10 % (49.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21390080 BTC (96,007.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 465,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.75 % (3,602.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,425.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10679291 BTC (49,731.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.51 CZK over 893 transactions" + } + ] + }, + { + "id": 2157, + "type": "message", + "date": "2023-01-20T09:00:04", + "date_unixtime": "1674201604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023681 BTC for 109.61 CZK @ 462,873 CZK\nFees are 0.38498810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (41.658569998880864737449163138 CZK)\nThe limits being 0.10 % (49.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21413761 BTC (96,117.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 462,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.12 % (3,000.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,315.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10702972 BTC (49,541.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.51 CZK over 894 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023681 BTC for 109.61 CZK @ 462,873 CZK\nFees are 0.38498810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (41.658569998880864737449163138 CZK)\nThe limits being 0.10 % (49.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21413761 BTC (96,117.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 462,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.12 % (3,000.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,315.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10702972 BTC (49,541.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.51 CZK over 894 transactions" + } + ] + }, + { + "id": 2158, + "type": "message", + "date": "2023-01-20T13:00:04", + "date_unixtime": "1674216004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023640 BTC for 109.61 CZK @ 463,674 CZK\nFees are 0.38498662 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (46.367399996796322853093698283 CZK)\nThe limits being 0.10 % (49.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21437401 BTC (96,227.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 463,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 3.30 % (3,171.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,205.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10726612 BTC (49,736.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.52 CZK over 895 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023640 BTC for 109.61 CZK @ 463,674 CZK\nFees are 0.38498662 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (46.367399996796322853093698283 CZK)\nThe limits being 0.10 % (49.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21437401 BTC (96,227.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 463,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 3.30 % (3,171.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,205.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10726612 BTC (49,736.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.52 CZK over 895 transactions" + } + ] + }, + { + "id": 2159, + "type": "message", + "date": "2023-01-20T17:00:03", + "date_unixtime": "1674230403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023473 BTC for 109.61 CZK @ 466,983 CZK\nFees are 0.38499500 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (60.707789995273009341840260832 CZK)\nThe limits being 0.10 % (50.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21460874 BTC (96,337.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 466,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 4.03 % (3,880.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,095.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10750085 BTC (50,201.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.52 CZK over 896 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023473 BTC for 109.61 CZK @ 466,983 CZK\nFees are 0.38499500 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (60.707789995273009341840260832 CZK)\nThe limits being 0.10 % (50.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21460874 BTC (96,337.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 466,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 4.03 % (3,880.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,095.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10750085 BTC (50,201.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.52 CZK over 896 transactions" + } + ] + }, + { + "id": 2160, + "type": "message", + "date": "2023-01-20T21:00:03", + "date_unixtime": "1674244803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00023151 BTC for 109.61 CZK @ 473,464 CZK\nFees are 0.38498352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (71.019599995325418957711764170 CZK)\nThe limits being 0.10 % (51.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21484025 BTC (96,447.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 473,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.47 % (5,271.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,985.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10773236 BTC (51,007.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.52 CZK over 897 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00023151 BTC for 109.61 CZK @ 473,464 CZK\nFees are 0.38498352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (71.019599995325418957711764170 CZK)\nThe limits being 0.10 % (51.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21484025 BTC (96,447.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 473,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.47 % (5,271.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,985.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10773236 BTC (51,007.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.52 CZK over 897 transactions" + } + ] + }, + { + "id": 2161, + "type": "message", + "date": "2023-01-21T01:00:06", + "date_unixtime": "1674259206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021926 BTC for 109.61 CZK @ 499,930 CZK\nFees are 0.38499406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (74.989499999113746782730387999 CZK)\nThe limits being 0.10 % (53.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21505951 BTC (96,557.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 448,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.35 % (10,956.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,875.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10795162 BTC (53,968.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.53 CZK over 898 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021926 BTC for 109.61 CZK @ 499,930 CZK\nFees are 0.38499406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (74.989499999113746782730387999 CZK)\nThe limits being 0.10 % (53.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21505951 BTC (96,557.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 448,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.35 % (10,956.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,875.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10795162 BTC (53,968.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.53 CZK over 898 transactions" + } + ] + }, + { + "id": 2162, + "type": "message", + "date": "2023-01-21T05:00:04", + "date_unixtime": "1674273604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022058 BTC for 109.61 CZK @ 496,933 CZK\nFees are 0.38498995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (74.539949997296162135942462331 CZK)\nThe limits being 0.10 % (53.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21528009 BTC (96,667.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.67 % (10,311.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,765.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10817220 BTC (53,754.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.53 CZK over 899 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022058 BTC for 109.61 CZK @ 496,933 CZK\nFees are 0.38498995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (74.539949997296162135942462331 CZK)\nThe limits being 0.10 % (53.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21528009 BTC (96,667.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.67 % (10,311.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,765.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10817220 BTC (53,754.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.53 CZK over 899 transactions" + } + ] + }, + { + "id": 2163, + "type": "message", + "date": "2023-01-21T09:00:04", + "date_unixtime": "1674288004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021956 BTC for 109.61 CZK @ 499,234 CZK\nFees are 0.38498410 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (74.885099993437071180000985802 CZK)\nThe limits being 0.10 % (54.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21549965 BTC (96,777.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.17 % (10,806.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,655.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10839176 BTC (54,112.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.53 CZK over 900 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021956 BTC for 109.61 CZK @ 499,234 CZK\nFees are 0.38498410 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (74.885099993437071180000985802 CZK)\nThe limits being 0.10 % (54.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21549965 BTC (96,777.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.17 % (10,806.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,655.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10839176 BTC (54,112.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.53 CZK over 900 transactions" + } + ] + }, + { + "id": 2164, + "type": "message", + "date": "2023-01-21T13:00:03", + "date_unixtime": "1674302403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021700 BTC for 109.61 CZK @ 505,124 CZK\nFees are 0.38498442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.409919997060977821863110452 CZK)\nThe limits being 0.10 % (54.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21571665 BTC (96,887.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.46 % (12,075.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,545.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10860876 BTC (54,860.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.53 CZK over 901 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021700 BTC for 109.61 CZK @ 505,124 CZK\nFees are 0.38498442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.409919997060977821863110452 CZK)\nThe limits being 0.10 % (54.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21571665 BTC (96,887.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.46 % (12,075.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,545.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10860876 BTC (54,860.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.53 CZK over 901 transactions" + } + ] + }, + { + "id": 2165, + "type": "message", + "date": "2023-01-21T17:00:05", + "date_unixtime": "1674316805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021586 BTC for 109.62 CZK @ 507,808 CZK\nFees are 0.38499681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.546559999327841298160044032 CZK)\nThe limits being 0.10 % (55.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21593251 BTC (96,997.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.05 % (12,654.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,435.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10882462 BTC (55,262.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.54 CZK over 902 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021586 BTC for 109.62 CZK @ 507,808 CZK\nFees are 0.38499681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.546559999327841298160044032 CZK)\nThe limits being 0.10 % (55.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21593251 BTC (96,997.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.05 % (12,654.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,435.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10882462 BTC (55,262.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.54 CZK over 902 transactions" + } + ] + }, + { + "id": 2166, + "type": "message", + "date": "2023-01-21T21:00:03", + "date_unixtime": "1674331203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021341 BTC for 109.61 CZK @ 513,624 CZK\nFees are 0.38498650 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (30.817439999316389170399735127 CZK)\nThe limits being 0.10 % (56.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21614592 BTC (97,107.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.32 % (13,909.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,325.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10903803 BTC (56,004.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.54 CZK over 903 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021341 BTC for 109.61 CZK @ 513,624 CZK\nFees are 0.38498650 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (30.817439999316389170399735127 CZK)\nThe limits being 0.10 % (56.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21614592 BTC (97,107.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.32 % (13,909.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,325.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10903803 BTC (56,004.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.54 CZK over 903 transactions" + } + ] + }, + { + "id": 2167, + "type": "message", + "date": "2023-01-22T01:00:04", + "date_unixtime": "1674345604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021818 BTC for 109.61 CZK @ 502,396 CZK\nFees are 0.38498741 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.167719997608516858882809240 CZK)\nThe limits being 0.10 % (54.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21636410 BTC (97,217.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.81 % (11,482.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,215.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10925621 BTC (54,889.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.54 CZK over 904 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021818 BTC for 109.61 CZK @ 502,396 CZK\nFees are 0.38498741 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.167719997608516858882809240 CZK)\nThe limits being 0.10 % (54.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21636410 BTC (97,217.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.81 % (11,482.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,215.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10925621 BTC (54,889.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.54 CZK over 904 transactions" + } + ] + }, + { + "id": 2168, + "type": "message", + "date": "2023-01-22T05:00:04", + "date_unixtime": "1674360004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021831 BTC for 109.61 CZK @ 502,106 CZK\nFees are 0.38499444 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.210599998626035571482587728 CZK)\nThe limits being 0.10 % (54.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21658241 BTC (97,327.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.73 % (11,419.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,105.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10947452 BTC (54,967.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.54 CZK over 905 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021831 BTC for 109.61 CZK @ 502,106 CZK\nFees are 0.38499444 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.210599998626035571482587728 CZK)\nThe limits being 0.10 % (54.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21658241 BTC (97,327.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.73 % (11,419.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,105.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10947452 BTC (54,967.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.54 CZK over 905 transactions" + } + ] + }, + { + "id": 2169, + "type": "message", + "date": "2023-01-22T09:00:04", + "date_unixtime": "1674374404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021689 BTC for 109.61 CZK @ 505,386 CZK\nFees are 0.38498885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.215439999376978858838916024 CZK)\nThe limits being 0.10 % (55.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21679930 BTC (97,437.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.45 % (12,129.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,995.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10969141 BTC (55,436.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.55 CZK over 906 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021689 BTC for 109.61 CZK @ 505,386 CZK\nFees are 0.38498885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.215439999376978858838916024 CZK)\nThe limits being 0.10 % (55.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21679930 BTC (97,437.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.45 % (12,129.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,995.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10969141 BTC (55,436.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.55 CZK over 906 transactions" + } + ] + }, + { + "id": 2170, + "type": "message", + "date": "2023-01-22T13:00:04", + "date_unixtime": "1674388804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021812 BTC for 109.61 CZK @ 502,544 CZK\nFees are 0.38499492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.076319999934211554260254158 CZK)\nThe limits being 0.10 % (55.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21701742 BTC (97,547.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.80 % (11,512.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,885.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.10990953 BTC (55,234.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.55 CZK over 907 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021812 BTC for 109.61 CZK @ 502,544 CZK\nFees are 0.38499492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.076319999934211554260254158 CZK)\nThe limits being 0.10 % (55.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21701742 BTC (97,547.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.80 % (11,512.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,885.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.10990953 BTC (55,234.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.55 CZK over 907 transactions" + } + ] + }, + { + "id": 2171, + "type": "message", + "date": "2023-01-22T17:00:04", + "date_unixtime": "1674403204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021810 BTC for 109.62 CZK @ 502,591 CZK\nFees are 0.38499562 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.051819999099894980132580444 CZK)\nThe limits being 0.10 % (55.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21723552 BTC (97,657.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.80 % (11,522.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,775.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11012763 BTC (55,349.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.55 CZK over 908 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021810 BTC for 109.62 CZK @ 502,591 CZK\nFees are 0.38499562 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.051819999099894980132580444 CZK)\nThe limits being 0.10 % (55.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21723552 BTC (97,657.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.80 % (11,522.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,775.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11012763 BTC (55,349.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.55 CZK over 908 transactions" + } + ] + }, + { + "id": 2172, + "type": "message", + "date": "2023-01-22T21:00:03", + "date_unixtime": "1674417603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021877 BTC for 109.61 CZK @ 501,036 CZK\nFees are 0.38498350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.031079999997266959252343907 CZK)\nThe limits being 0.10 % (55.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21745429 BTC (97,767.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.44 % (11,184.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,665.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11034640 BTC (55,287.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.56 CZK over 909 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021877 BTC for 109.61 CZK @ 501,036 CZK\nFees are 0.38498350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.031079999997266959252343907 CZK)\nThe limits being 0.10 % (55.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21745429 BTC (97,767.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.44 % (11,184.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,665.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11034640 BTC (55,287.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.56 CZK over 909 transactions" + } + ] + }, + { + "id": 2173, + "type": "message", + "date": "2023-01-23T01:00:04", + "date_unixtime": "1674432004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021903 BTC for 109.62 CZK @ 500,461 CZK\nFees are 0.38499870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (60.055319997322069647072119244 CZK)\nThe limits being 0.10 % (55.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21767332 BTC (97,877.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 500,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.30 % (11,059.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,555.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11056543 BTC (55,333.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.56 CZK over 910 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021903 BTC for 109.62 CZK @ 500,461 CZK\nFees are 0.38499870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (60.055319997322069647072119244 CZK)\nThe limits being 0.10 % (55.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21767332 BTC (97,877.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 500,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.30 % (11,059.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,555.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11056543 BTC (55,333.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.56 CZK over 910 transactions" + } + ] + }, + { + "id": 2174, + "type": "message", + "date": "2023-01-23T05:00:03", + "date_unixtime": "1674446403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022025 BTC for 109.62 CZK @ 497,685 CZK\nFees are 0.38499571 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.907399999208219585593442248 CZK)\nThe limits being 0.10 % (55.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21789357 BTC (97,987.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 497,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.67 % (10,454.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,445.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11078568 BTC (55,136.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.56 CZK over 911 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022025 BTC for 109.62 CZK @ 497,685 CZK\nFees are 0.38499571 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.907399999208219585593442248 CZK)\nThe limits being 0.10 % (55.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21789357 BTC (97,987.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 497,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.67 % (10,454.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,445.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11078568 BTC (55,136.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.56 CZK over 911 transactions" + } + ] + }, + { + "id": 2175, + "type": "message", + "date": "2023-01-23T09:00:05", + "date_unixtime": "1674460805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022012 BTC for 109.61 CZK @ 497,964 CZK\nFees are 0.38498417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.959279999558151956069439318 CZK)\nThe limits being 0.10 % (55.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21811369 BTC (98,097.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 497,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.72 % (10,514.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,335.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11100580 BTC (55,276.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.56 CZK over 912 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022012 BTC for 109.61 CZK @ 497,964 CZK\nFees are 0.38498417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.959279999558151956069439318 CZK)\nThe limits being 0.10 % (55.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21811369 BTC (98,097.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 497,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.72 % (10,514.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,335.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11100580 BTC (55,276.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.56 CZK over 912 transactions" + } + ] + }, + { + "id": 2176, + "type": "message", + "date": "2023-01-23T13:00:05", + "date_unixtime": "1674475205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021803 BTC for 109.61 CZK @ 502,748 CZK\nFees are 0.38499258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.192386624340835603571693907 CZK)\nThe limits being 0.10 % (55.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21833172 BTC (98,207.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.77 % (11,558.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,225.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11122383 BTC (55,917.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.57 CZK over 913 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021803 BTC for 109.61 CZK @ 502,748 CZK\nFees are 0.38499258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (35.192386624340835603571693907 CZK)\nThe limits being 0.10 % (55.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21833172 BTC (98,207.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.77 % (11,558.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,225.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11122383 BTC (55,917.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.57 CZK over 913 transactions" + } + ] + }, + { + "id": 2177, + "type": "message", + "date": "2023-01-23T17:00:04", + "date_unixtime": "1674489604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021804 BTC for 109.61 CZK @ 502,719 CZK\nFees are 0.38498774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.271899996499136164133659141 CZK)\nThe limits being 0.10 % (56.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21854976 BTC (98,317.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.75 % (11,551.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,115.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11144187 BTC (56,023.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.57 CZK over 914 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021804 BTC for 109.61 CZK @ 502,719 CZK\nFees are 0.38498774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.271899996499136164133659141 CZK)\nThe limits being 0.10 % (56.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21854976 BTC (98,317.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.75 % (11,551.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,115.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11144187 BTC (56,023.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.57 CZK over 914 transactions" + } + ] + }, + { + "id": 2178, + "type": "message", + "date": "2023-01-23T21:00:04", + "date_unixtime": "1674504004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021851 BTC for 109.61 CZK @ 501,633 CZK\nFees are 0.38498414 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.163299998219129481759610434 CZK)\nThe limits being 0.10 % (56.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21876827 BTC (98,427.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.49 % (11,313.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,005.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11166038 BTC (56,012.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.57 CZK over 915 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021851 BTC for 109.61 CZK @ 501,633 CZK\nFees are 0.38498414 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.163299998219129481759610434 CZK)\nThe limits being 0.10 % (56.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21876827 BTC (98,427.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.49 % (11,313.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,005.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11166038 BTC (56,012.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.57 CZK over 915 transactions" + } + ] + }, + { + "id": 2179, + "type": "message", + "date": "2023-01-24T01:00:04", + "date_unixtime": "1674518404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021783 BTC for 109.61 CZK @ 503,202 CZK\nFees are 0.38498647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.352219999592392059550284925 CZK)\nThe limits being 0.10 % (56.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21898610 BTC (98,537.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 449,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.83 % (11,656.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,895.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11187821 BTC (56,297.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.57 CZK over 916 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021783 BTC for 109.61 CZK @ 503,202 CZK\nFees are 0.38498647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.352219999592392059550284925 CZK)\nThe limits being 0.10 % (56.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21898610 BTC (98,537.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 449,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.83 % (11,656.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,895.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11187821 BTC (56,297.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.57 CZK over 916 transactions" + } + ] + }, + { + "id": 2180, + "type": "message", + "date": "2023-01-24T05:00:03", + "date_unixtime": "1674532803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021610 BTC for 109.62 CZK @ 507,248 CZK\nFees are 0.38499982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.797279997565208489398627250 CZK)\nThe limits being 0.10 % (56.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21920220 BTC (98,647.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.71 % (12,542.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,785.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11209431 BTC (56,859.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.58 CZK over 917 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021610 BTC for 109.62 CZK @ 507,248 CZK\nFees are 0.38499982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.797279997565208489398627250 CZK)\nThe limits being 0.10 % (56.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21920220 BTC (98,647.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.71 % (12,542.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,785.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11209431 BTC (56,859.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.58 CZK over 917 transactions" + } + ] + }, + { + "id": 2181, + "type": "message", + "date": "2023-01-24T09:00:05", + "date_unixtime": "1674547205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021640 BTC for 109.62 CZK @ 506,540 CZK\nFees are 0.38499618 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.261599998894810860693671963 CZK)\nThe limits being 0.10 % (56.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21941860 BTC (98,757.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.54 % (12,386.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,675.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11231071 BTC (56,889.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.58 CZK over 918 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021640 BTC for 109.62 CZK @ 506,540 CZK\nFees are 0.38499618 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (20.261599998894810860693671963 CZK)\nThe limits being 0.10 % (56.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21941860 BTC (98,757.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.54 % (12,386.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,675.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11231071 BTC (56,889.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.58 CZK over 918 transactions" + } + ] + }, + { + "id": 2182, + "type": "message", + "date": "2023-01-24T13:00:04", + "date_unixtime": "1674561604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021770 BTC for 109.61 CZK @ 503,502 CZK\nFees are 0.38498610 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.385219995518670413772283913 CZK)\nThe limits being 0.10 % (56.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21963630 BTC (98,867.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.85 % (11,719.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,565.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11252841 BTC (56,658.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.58 CZK over 919 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021770 BTC for 109.61 CZK @ 503,502 CZK\nFees are 0.38498610 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.385219995518670413772283913 CZK)\nThe limits being 0.10 % (56.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21963630 BTC (98,867.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.85 % (11,719.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,565.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11252841 BTC (56,658.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.58 CZK over 919 transactions" + } + ] + }, + { + "id": 2183, + "type": "message", + "date": "2023-01-24T17:00:04", + "date_unixtime": "1674576004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021770 BTC for 109.61 CZK @ 503,509 CZK\nFees are 0.38499145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.385989998716023545519025166 CZK)\nThe limits being 0.10 % (56.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.21985400 BTC (98,977.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.84 % (11,720.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,455.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11274611 BTC (56,768.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.58 CZK over 920 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021770 BTC for 109.61 CZK @ 503,509 CZK\nFees are 0.38499145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (55.385989998716023545519025166 CZK)\nThe limits being 0.10 % (56.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.21985400 BTC (98,977.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.84 % (11,720.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,455.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11274611 BTC (56,768.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.58 CZK over 920 transactions" + } + ] + }, + { + "id": 2184, + "type": "message", + "date": "2023-01-24T21:00:03", + "date_unixtime": "1674590403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021710 BTC for 109.62 CZK @ 504,911 CZK\nFees are 0.38499942 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (60.589319998154777027524805510 CZK)\nThe limits being 0.10 % (57.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22007110 BTC (99,087.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.14 % (12,028.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,345.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11296321 BTC (57,036.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.59 CZK over 921 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021710 BTC for 109.62 CZK @ 504,911 CZK\nFees are 0.38499942 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (60.589319998154777027524805510 CZK)\nThe limits being 0.10 % (57.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22007110 BTC (99,087.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.14 % (12,028.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,345.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11296321 BTC (57,036.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.59 CZK over 921 transactions" + } + ] + }, + { + "id": 2185, + "type": "message", + "date": "2023-01-25T01:00:04", + "date_unixtime": "1674604804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022085 BTC for 109.62 CZK @ 496,336 CZK\nFees are 0.38499811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.706879996534655308187249086 CZK)\nThe limits being 0.10 % (56.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22029195 BTC (99,197.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.22 % (10,141.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,235.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11318406 BTC (56,177.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.59 CZK over 922 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022085 BTC for 109.62 CZK @ 496,336 CZK\nFees are 0.38499811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.706879996534655308187249086 CZK)\nThe limits being 0.10 % (56.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22029195 BTC (99,197.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.22 % (10,141.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,235.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11318406 BTC (56,177.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.59 CZK over 922 transactions" + } + ] + }, + { + "id": 2186, + "type": "message", + "date": "2023-01-25T05:00:03", + "date_unixtime": "1674619203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022081 BTC for 109.61 CZK @ 496,408 CZK\nFees are 0.38498422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.712639997588260841594521523 CZK)\nThe limits being 0.10 % (56.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22051276 BTC (99,307.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.23 % (10,156.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,125.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11340487 BTC (56,295.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.59 CZK over 923 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022081 BTC for 109.61 CZK @ 496,408 CZK\nFees are 0.38498422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (39.712639997588260841594521523 CZK)\nThe limits being 0.10 % (56.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22051276 BTC (99,307.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.23 % (10,156.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,125.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11340487 BTC (56,295.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.59 CZK over 923 transactions" + } + ] + }, + { + "id": 2187, + "type": "message", + "date": "2023-01-25T09:00:04", + "date_unixtime": "1674633604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021938 BTC for 109.61 CZK @ 499,656 CZK\nFees are 0.38499364 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.986239998822609334827420284 CZK)\nThe limits being 0.10 % (56.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22073214 BTC (99,417.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.94 % (10,872.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,015.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11362425 BTC (56,773.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.60 CZK over 924 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021938 BTC for 109.61 CZK @ 499,656 CZK\nFees are 0.38499364 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (19.986239998822609334827420284 CZK)\nThe limits being 0.10 % (56.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22073214 BTC (99,417.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.94 % (10,872.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,015.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11362425 BTC (56,773.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.60 CZK over 924 transactions" + } + ] + }, + { + "id": 2188, + "type": "message", + "date": "2023-01-25T13:00:05", + "date_unixtime": "1674648005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022085 BTC for 109.61 CZK @ 496,327 CZK\nFees are 0.38499113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.889809999617593798657381980 CZK)\nThe limits being 0.10 % (56.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22095299 BTC (99,527.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.19 % (10,137.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 905.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11384510 BTC (56,504.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.60 CZK over 925 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022085 BTC for 109.61 CZK @ 496,327 CZK\nFees are 0.38499113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (14.889809999617593798657381980 CZK)\nThe limits being 0.10 % (56.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22095299 BTC (99,527.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.19 % (10,137.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 905.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11384510 BTC (56,504.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.60 CZK over 925 transactions" + } + ] + }, + { + "id": 2189, + "type": "message", + "date": "2023-01-25T17:00:05", + "date_unixtime": "1674662405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022215 BTC for 109.61 CZK @ 493,424 CZK\nFees are 0.38499227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.868479999497594565767506727 CZK)\nThe limits being 0.10 % (56.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22117514 BTC (99,637.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.53 % (9,495.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 795.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11406725 BTC (56,283.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.60 CZK over 926 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022215 BTC for 109.61 CZK @ 493,424 CZK\nFees are 0.38499227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (9.868479999497594565767506727 CZK)\nThe limits being 0.10 % (56.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22117514 BTC (99,637.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.53 % (9,495.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 795.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11406725 BTC (56,283.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.60 CZK over 926 transactions" + } + ] + }, + { + "id": 2190, + "type": "message", + "date": "2023-01-25T21:00:04", + "date_unixtime": "1674676804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022074 BTC for 109.61 CZK @ 496,575 CZK\nFees are 0.38499165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (34.760249997076915582992370771 CZK)\nThe limits being 0.10 % (56.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22139588 BTC (99,747.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.22 % (10,191.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 685.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11428799 BTC (56,752.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.60 CZK over 927 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022074 BTC for 109.61 CZK @ 496,575 CZK\nFees are 0.38499165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (34.760249997076915582992370771 CZK)\nThe limits being 0.10 % (56.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22139588 BTC (99,747.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.22 % (10,191.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 685.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11428799 BTC (56,752.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.60 CZK over 927 transactions" + } + ] + }, + { + "id": 2191, + "type": "message", + "date": "2023-01-26T01:00:36", + "date_unixtime": "1674691236", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021775 BTC for 109.61 CZK @ 503,386 CZK\nFees are 0.38498581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (20.135439999038954932134772842 CZK)\nThe limits being 0.10 % (57.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22161363 BTC (99,857.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.72 % (11,699.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 575.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11450574 BTC (57,640.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.61 CZK over 928 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021775 BTC for 109.61 CZK @ 503,386 CZK\nFees are 0.38498581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (20.135439999038954932134772842 CZK)\nThe limits being 0.10 % (57.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22161363 BTC (99,857.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.72 % (11,699.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 575.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11450574 BTC (57,640.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.61 CZK over 928 transactions" + } + ] + }, + { + "id": 2192, + "type": "message", + "date": "2023-01-26T05:00:03", + "date_unixtime": "1674705603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021716 BTC for 109.61 CZK @ 504,766 CZK\nFees are 0.38499523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.095319999453010429604323714 CZK)\nThe limits being 0.10 % (57.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22183079 BTC (99,967.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.01 % (12,004.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 465.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11472290 BTC (57,908.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.61 CZK over 929 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021716 BTC for 109.61 CZK @ 504,766 CZK\nFees are 0.38499523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.095319999453010429604323714 CZK)\nThe limits being 0.10 % (57.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22183079 BTC (99,967.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.01 % (12,004.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 465.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11472290 BTC (57,908.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.61 CZK over 929 transactions" + } + ] + }, + { + "id": 2193, + "type": "message", + "date": "2023-01-26T09:00:04", + "date_unixtime": "1674720004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021844 BTC for 109.61 CZK @ 501,797 CZK\nFees are 0.38498663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0179699996177086478227138908 CZK)\nThe limits being 0.10 % (57.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22204923 BTC (100,077.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.34 % (11,345.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 355.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11494134 BTC (57,677.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.61 CZK over 930 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021844 BTC for 109.61 CZK @ 501,797 CZK\nFees are 0.38498663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0179699996177086478227138908 CZK)\nThe limits being 0.10 % (57.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22204923 BTC (100,077.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.34 % (11,345.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 355.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11494134 BTC (57,677.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.61 CZK over 930 transactions" + } + ] + }, + { + "id": 2194, + "type": "message", + "date": "2023-01-26T13:00:04", + "date_unixtime": "1674734404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021819 BTC for 109.62 CZK @ 502,388 CZK\nFees are 0.38499893 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.119399999538715188896244326 CZK)\nThe limits being 0.10 % (57.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22226742 BTC (100,187.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.46 % (11,476.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 245.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11515953 BTC (57,854.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.61 CZK over 931 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021819 BTC for 109.62 CZK @ 502,388 CZK\nFees are 0.38499893 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.119399999538715188896244326 CZK)\nThe limits being 0.10 % (57.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22226742 BTC (100,187.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.46 % (11,476.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 245.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11515953 BTC (57,854.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.61 CZK over 931 transactions" + } + ] + }, + { + "id": 2195, + "type": "message", + "date": "2023-01-26T17:00:04", + "date_unixtime": "1674748804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021746 BTC for 109.61 CZK @ 504,054 CZK\nFees are 0.38498328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.243240000016497029091273526 CZK)\nThe limits being 0.10 % (58.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22248488 BTC (100,297.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.81 % (11,846.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 135.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11537699 BTC (58,156.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.62 CZK over 932 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021746 BTC for 109.61 CZK @ 504,054 CZK\nFees are 0.38498328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.243240000016497029091273526 CZK)\nThe limits being 0.10 % (58.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22248488 BTC (100,297.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.81 % (11,846.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 135.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11537699 BTC (58,156.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.62 CZK over 932 transactions" + } + ] + }, + { + "id": 2196, + "type": "message", + "date": "2023-01-26T21:00:05", + "date_unixtime": "1674763205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021706 BTC for 109.62 CZK @ 505,002 CZK\nFees are 0.38499786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.400159996540257995936180430 CZK)\nThe limits being 0.10 % (58.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22270194 BTC (100,407.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.01 % (12,057.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 25.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11559405 BTC (58,375.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.62 CZK over 933 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021706 BTC for 109.62 CZK @ 505,002 CZK\nFees are 0.38499786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.400159996540257995936180430 CZK)\nThe limits being 0.10 % (58.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22270194 BTC (100,407.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.01 % (12,057.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 25.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11559405 BTC (58,375.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.62 CZK over 933 transactions" + } + ] + }, + { + "id": 2197, + "type": "message", + "date": "2023-01-27T01:00:00", + "date_unixtime": "1674777600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2198, + "type": "message", + "date": "2023-01-27T05:00:01", + "date_unixtime": "1674792001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2199, + "type": "message", + "date": "2023-01-27T09:00:00", + "date_unixtime": "1674806400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2200, + "type": "message", + "date": "2023-01-27T13:00:00", + "date_unixtime": "1674820800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (25.14273801 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2201, + "type": "message", + "date": "2023-01-27T17:00:04", + "date_unixtime": "1674835204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021719 BTC for 109.61 CZK @ 504,689 CZK\nFees are 0.38498968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.375119998647397215780956166 CZK)\nThe limits being 0.10 % (58.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22291913 BTC (100,517.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.93 % (11,987.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,415.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11581124 BTC (58,448.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.62 CZK over 934 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021719 BTC for 109.61 CZK @ 504,689 CZK\nFees are 0.38498968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.375119998647397215780956166 CZK)\nThe limits being 0.10 % (58.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22291913 BTC (100,517.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.93 % (11,987.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,415.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11581124 BTC (58,448.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.62 CZK over 934 transactions" + } + ] + }, + { + "id": 2202, + "type": "message", + "date": "2023-01-27T21:00:04", + "date_unixtime": "1674849604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021500 BTC for 109.62 CZK @ 509,839 CZK\nFees are 0.38499664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (61.180679995828553550943789758 CZK)\nThe limits being 0.10 % (59.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22313413 BTC (100,627.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 450,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 509,839 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.05 % (13,134.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,305.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11602624 BTC (59,154.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.62 CZK over 935 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021500 BTC for 109.62 CZK @ 509,839 CZK\nFees are 0.38499664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (61.180679995828553550943789758 CZK)\nThe limits being 0.10 % (59.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22313413 BTC (100,627.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 450,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 509,839 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.05 % (13,134.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,305.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11602624 BTC (59,154.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.62 CZK over 935 transactions" + } + ] + }, + { + "id": 2203, + "type": "message", + "date": "2023-01-28T01:00:07", + "date_unixtime": "1674864007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021658 BTC for 109.61 CZK @ 506,101 CZK\nFees are 0.38498248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (65.793129999383909019512139682 CZK)\nThe limits being 0.10 % (58.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22335071 BTC (100,737.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.21 % (12,300.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,195.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11624282 BTC (58,830.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.63 CZK over 936 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021658 BTC for 109.61 CZK @ 506,101 CZK\nFees are 0.38498248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (65.793129999383909019512139682 CZK)\nThe limits being 0.10 % (58.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22335071 BTC (100,737.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.21 % (12,300.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,195.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11624282 BTC (58,830.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.63 CZK over 936 transactions" + } + ] + }, + { + "id": 2204, + "type": "message", + "date": "2023-01-28T05:00:04", + "date_unixtime": "1674878404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021615 BTC for 109.62 CZK @ 507,126 CZK\nFees are 0.38499628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.712599996703649187132567819 CZK)\nThe limits being 0.10 % (59.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22356686 BTC (100,847.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.42 % (12,528.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,085.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11645897 BTC (59,059.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.63 CZK over 937 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021615 BTC for 109.62 CZK @ 507,126 CZK\nFees are 0.38499628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (50.712599996703649187132567819 CZK)\nThe limits being 0.10 % (59.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22356686 BTC (100,847.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.42 % (12,528.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,085.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11645897 BTC (59,059.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.63 CZK over 937 transactions" + } + ] + }, + { + "id": 2205, + "type": "message", + "date": "2023-01-28T09:00:04", + "date_unixtime": "1674892804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021771 BTC for 109.61 CZK @ 503,474 CZK\nFees are 0.38498237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.173699998652001079223040884 CZK)\nThe limits being 0.10 % (58.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22378457 BTC (100,957.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.60 % (11,711.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,975.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11667668 BTC (58,743.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.63 CZK over 938 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021771 BTC for 109.61 CZK @ 503,474 CZK\nFees are 0.38498237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.173699998652001079223040884 CZK)\nThe limits being 0.10 % (58.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22378457 BTC (100,957.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.60 % (11,711.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,975.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11667668 BTC (58,743.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.63 CZK over 938 transactions" + } + ] + }, + { + "id": 2206, + "type": "message", + "date": "2023-01-28T13:00:05", + "date_unixtime": "1674907205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021773 BTC for 109.61 CZK @ 503,436 CZK\nFees are 0.38498868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.068719999910294220995816072 CZK)\nThe limits being 0.10 % (58.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22400230 BTC (101,067.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.58 % (11,703.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,865.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11689441 BTC (58,848.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.63 CZK over 939 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021773 BTC for 109.61 CZK @ 503,436 CZK\nFees are 0.38498868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.068719999910294220995816072 CZK)\nThe limits being 0.10 % (58.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22400230 BTC (101,067.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.58 % (11,703.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,865.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11689441 BTC (58,848.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.63 CZK over 939 transactions" + } + ] + }, + { + "id": 2207, + "type": "message", + "date": "2023-01-28T17:00:04", + "date_unixtime": "1674921604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021745 BTC for 109.61 CZK @ 504,085 CZK\nFees are 0.38498925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.122549999810962848700507066 CZK)\nThe limits being 0.10 % (59.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22421975 BTC (101,177.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.71 % (11,848.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,755.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11711186 BTC (59,034.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.64 CZK over 940 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021745 BTC for 109.61 CZK @ 504,085 CZK\nFees are 0.38498925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.122549999810962848700507066 CZK)\nThe limits being 0.10 % (59.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22421975 BTC (101,177.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.71 % (11,848.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,755.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11711186 BTC (59,034.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.64 CZK over 940 transactions" + } + ] + }, + { + "id": 2208, + "type": "message", + "date": "2023-01-28T21:00:05", + "date_unixtime": "1674936005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021718 BTC for 109.61 CZK @ 504,719 CZK\nFees are 0.38499484 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0471899998407819615414563625 CZK)\nThe limits being 0.10 % (59.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22443693 BTC (101,287.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.84 % (11,989.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,645.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11732904 BTC (59,218.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.64 CZK over 941 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021718 BTC for 109.61 CZK @ 504,719 CZK\nFees are 0.38499484 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0471899998407819615414563625 CZK)\nThe limits being 0.10 % (59.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22443693 BTC (101,287.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.84 % (11,989.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,645.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11732904 BTC (59,218.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.64 CZK over 941 transactions" + } + ] + }, + { + "id": 2209, + "type": "message", + "date": "2023-01-29T01:00:04", + "date_unixtime": "1674950404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021728 BTC for 109.62 CZK @ 504,489 CZK\nFees are 0.38499644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0448881689308333938725506383 CZK)\nThe limits being 0.10 % (59.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22465421 BTC (101,397.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 504,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.77 % (11,937.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,535.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11754632 BTC (59,300.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.64 CZK over 942 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021728 BTC for 109.62 CZK @ 504,489 CZK\nFees are 0.38499644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0448881689308333938725506383 CZK)\nThe limits being 0.10 % (59.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22465421 BTC (101,397.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 504,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.77 % (11,937.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,535.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11754632 BTC (59,300.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.64 CZK over 942 transactions" + } + ] + }, + { + "id": 2210, + "type": "message", + "date": "2023-01-29T05:00:03", + "date_unixtime": "1674964803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021578 BTC for 109.61 CZK @ 507,984 CZK\nFees are 0.38498751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0798399997081306353705122259 CZK)\nThe limits being 0.10 % (59.82 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22486999 BTC (101,507.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.53 % (12,722.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,425.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11776210 BTC (59,821.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.64 CZK over 943 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021578 BTC for 109.61 CZK @ 507,984 CZK\nFees are 0.38498751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0798399997081306353705122259 CZK)\nThe limits being 0.10 % (59.82 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22486999 BTC (101,507.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.53 % (12,722.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,425.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11776210 BTC (59,821.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.64 CZK over 943 transactions" + } + ] + }, + { + "id": 2211, + "type": "message", + "date": "2023-01-29T09:00:04", + "date_unixtime": "1674979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021561 BTC for 109.61 CZK @ 508,389 CZK\nFees are 0.38499090 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0838899998606519036717807416 CZK)\nThe limits being 0.10 % (59.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22508560 BTC (101,617.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 508,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.61 % (12,813.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,315.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11797771 BTC (59,978.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.65 CZK over 944 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021561 BTC for 109.61 CZK @ 508,389 CZK\nFees are 0.38499090 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.0838899998606519036717807416 CZK)\nThe limits being 0.10 % (59.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22508560 BTC (101,617.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 508,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.61 % (12,813.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,315.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11797771 BTC (59,978.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.65 CZK over 944 transactions" + } + ] + }, + { + "id": 2212, + "type": "message", + "date": "2023-01-29T13:00:36", + "date_unixtime": "1674993636", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021378 BTC for 109.61 CZK @ 512,744 CZK\nFees are 0.38499322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1274399998545645950651809323 CZK)\nThe limits being 0.10 % (60.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22529938 BTC (101,727.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 512,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.56 % (13,793.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,205.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11819149 BTC (60,601.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.65 CZK over 945 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021378 BTC for 109.61 CZK @ 512,744 CZK\nFees are 0.38499322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1274399998545645950651809323 CZK)\nThe limits being 0.10 % (60.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22529938 BTC (101,727.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 512,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.56 % (13,793.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,205.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11819149 BTC (60,601.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.65 CZK over 945 transactions" + } + ] + }, + { + "id": 2213, + "type": "message", + "date": "2023-01-29T17:00:04", + "date_unixtime": "1675008004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021345 BTC for 109.62 CZK @ 513,544 CZK\nFees are 0.38499868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1354399998225932823779222942 CZK)\nThe limits being 0.10 % (60.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22551283 BTC (101,837.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.72 % (13,972.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,095.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11840494 BTC (60,806.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.65 CZK over 946 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021345 BTC for 109.62 CZK @ 513,544 CZK\nFees are 0.38499868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1354399998225932823779222942 CZK)\nThe limits being 0.10 % (60.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22551283 BTC (101,837.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.72 % (13,972.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,095.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11840494 BTC (60,806.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.65 CZK over 946 transactions" + } + ] + }, + { + "id": 2214, + "type": "message", + "date": "2023-01-29T21:00:04", + "date_unixtime": "1675022404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020960 BTC for 109.61 CZK @ 522,968 CZK\nFees are 0.38499210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.459359999543582195141432468 CZK)\nThe limits being 0.10 % (62.03 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22572243 BTC (101,947.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 522,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.79 % (16,097.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 985.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11861454 BTC (62,031.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.65 CZK over 947 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020960 BTC for 109.61 CZK @ 522,968 CZK\nFees are 0.38499210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.459359999543582195141432468 CZK)\nThe limits being 0.10 % (62.03 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22572243 BTC (101,947.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 522,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.79 % (16,097.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 985.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11861454 BTC (62,031.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.65 CZK over 947 transactions" + } + ] + }, + { + "id": 2215, + "type": "message", + "date": "2023-01-30T01:00:04", + "date_unixtime": "1675036804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021104 BTC for 109.61 CZK @ 519,402 CZK\nFees are 0.38499387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1940199998451213021294309946 CZK)\nThe limits being 0.10 % (61.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22593347 BTC (102,057.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 519,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.98 % (15,292.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 875.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11882558 BTC (61,718.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.66 CZK over 948 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021104 BTC for 109.61 CZK @ 519,402 CZK\nFees are 0.38499387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1940199998451213021294309946 CZK)\nThe limits being 0.10 % (61.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22593347 BTC (102,057.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 519,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.98 % (15,292.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 875.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11882558 BTC (61,718.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.66 CZK over 948 transactions" + } + ] + }, + { + "id": 2216, + "type": "message", + "date": "2023-01-30T05:00:36", + "date_unixtime": "1675051236", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021148 BTC for 109.61 CZK @ 518,308 CZK\nFees are 0.38498396 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1830799997436624547203757906 CZK)\nThe limits being 0.10 % (61.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22614495 BTC (102,167.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.73 % (15,044.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 765.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11903706 BTC (61,697.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.66 CZK over 949 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021148 BTC for 109.61 CZK @ 518,308 CZK\nFees are 0.38498396 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1830799997436624547203757906 CZK)\nThe limits being 0.10 % (61.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22614495 BTC (102,167.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.73 % (15,044.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 765.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11903706 BTC (61,697.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.66 CZK over 949 transactions" + } + ] + }, + { + "id": 2217, + "type": "message", + "date": "2023-01-30T09:00:35", + "date_unixtime": "1675065635", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021154 BTC for 109.61 CZK @ 518,160 CZK\nFees are 0.38498322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1815999998869419827238870251 CZK)\nThe limits being 0.10 % (61.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22635649 BTC (102,277.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.68 % (15,011.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 655.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11924860 BTC (61,789.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.66 CZK over 950 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021154 BTC for 109.61 CZK @ 518,160 CZK\nFees are 0.38498322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1815999998869419827238870251 CZK)\nThe limits being 0.10 % (61.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22635649 BTC (102,277.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.68 % (15,011.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 655.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11924860 BTC (61,789.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.66 CZK over 950 transactions" + } + ] + }, + { + "id": 2218, + "type": "message", + "date": "2023-01-30T13:00:03", + "date_unixtime": "1675080003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021680 BTC for 109.62 CZK @ 505,610 CZK\nFees are 0.38499967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.112199999264566636697757113 CZK)\nThe limits being 0.10 % (60.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22657329 BTC (102,387.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.89 % (12,169.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 545.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11946540 BTC (60,402.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.66 CZK over 951 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021680 BTC for 109.62 CZK @ 505,610 CZK\nFees are 0.38499967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.112199999264566636697757113 CZK)\nThe limits being 0.10 % (60.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22657329 BTC (102,387.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.89 % (12,169.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 545.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11946540 BTC (60,402.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.66 CZK over 951 transactions" + } + ] + }, + { + "id": 2219, + "type": "message", + "date": "2023-01-30T17:00:03", + "date_unixtime": "1675094403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021528 BTC for 109.61 CZK @ 509,164 CZK\nFees are 0.38498765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.27491999990001549759787233 CZK)\nThe limits being 0.10 % (60.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22678857 BTC (102,497.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 451,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 509,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.66 % (12,974.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 435.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11968068 BTC (60,937.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.67 CZK over 952 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021528 BTC for 109.61 CZK @ 509,164 CZK\nFees are 0.38498765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (15.27491999990001549759787233 CZK)\nThe limits being 0.10 % (60.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22678857 BTC (102,497.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 451,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 509,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.66 % (12,974.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 435.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11968068 BTC (60,937.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.67 CZK over 952 transactions" + } + ] + }, + { + "id": 2220, + "type": "message", + "date": "2023-01-30T21:00:04", + "date_unixtime": "1675108804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021864 BTC for 109.61 CZK @ 501,333 CZK\nFees are 0.38498281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.079979998654544440233059155 CZK)\nThe limits being 0.10 % (60.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22700721 BTC (102,607.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.91 % (11,198.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 325.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.11989932 BTC (60,109.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.67 CZK over 953 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021864 BTC for 109.61 CZK @ 501,333 CZK\nFees are 0.38498281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.079979998654544440233059155 CZK)\nThe limits being 0.10 % (60.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22700721 BTC (102,607.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.91 % (11,198.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 325.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.11989932 BTC (60,109.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.67 CZK over 953 transactions" + } + ] + }, + { + "id": 2221, + "type": "message", + "date": "2023-01-31T01:00:06", + "date_unixtime": "1675123206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021819 BTC for 109.62 CZK @ 502,385 CZK\nFees are 0.38499663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.214649999578677981937411279 CZK)\nThe limits being 0.10 % (60.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22722540 BTC (102,717.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.13 % (11,436.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 215.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12011751 BTC (60,345.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.67 CZK over 954 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021819 BTC for 109.62 CZK @ 502,385 CZK\nFees are 0.38499663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.214649999578677981937411279 CZK)\nThe limits being 0.10 % (60.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22722540 BTC (102,717.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.13 % (11,436.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 215.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12011751 BTC (60,345.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.67 CZK over 954 transactions" + } + ] + }, + { + "id": 2222, + "type": "message", + "date": "2023-01-31T05:00:04", + "date_unixtime": "1675137604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021819 BTC for 109.62 CZK @ 502,386 CZK\nFees are 0.38499740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.214739998072194863694106239 CZK)\nThe limits being 0.10 % (60.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22744359 BTC (102,827.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 502,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.12 % (11,436.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 105.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12033570 BTC (60,454.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.67 CZK over 955 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021819 BTC for 109.62 CZK @ 502,386 CZK\nFees are 0.38499740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.214739998072194863694106239 CZK)\nThe limits being 0.10 % (60.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22744359 BTC (102,827.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 502,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.12 % (11,436.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 105.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12033570 BTC (60,454.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.67 CZK over 955 transactions" + } + ] + }, + { + "id": 2223, + "type": "message", + "date": "2023-01-31T09:00:00", + "date_unixtime": "1675152000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2224, + "type": "message", + "date": "2023-01-31T13:00:00", + "date_unixtime": "1675166400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2225, + "type": "message", + "date": "2023-01-31T17:00:00", + "date_unixtime": "1675180800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2226, + "type": "message", + "date": "2023-01-31T21:00:00", + "date_unixtime": "1675195200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2227, + "type": "message", + "date": "2023-02-01T01:00:00", + "date_unixtime": "1675209600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2228, + "type": "message", + "date": "2023-02-01T05:00:00", + "date_unixtime": "1675224000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2229, + "type": "message", + "date": "2023-02-01T09:00:00", + "date_unixtime": "1675238400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2230, + "type": "message", + "date": "2023-02-01T13:00:00", + "date_unixtime": "1675252800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2231, + "type": "message", + "date": "2023-02-01T17:00:00", + "date_unixtime": "1675267200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (105.19865814 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2232, + "type": "message", + "date": "2023-02-01T21:00:05", + "date_unixtime": "1675281605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021541 BTC for 109.62 CZK @ 508,871 CZK\nFees are 0.38499845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (66.153229995558694839636408359 CZK)\nThe limits being 0.10 % (61.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22765900 BTC (102,937.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 508,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.54 % (12,911.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,995.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12055111 BTC (61,344.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.68 CZK over 956 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021541 BTC for 109.62 CZK @ 508,871 CZK\nFees are 0.38499845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (66.153229995558694839636408359 CZK)\nThe limits being 0.10 % (61.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22765900 BTC (102,937.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 508,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.54 % (12,911.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,995.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12055111 BTC (61,344.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.68 CZK over 956 transactions" + } + ] + }, + { + "id": 2233, + "type": "message", + "date": "2023-02-02T01:00:05", + "date_unixtime": "1675296005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021362 BTC for 109.61 CZK @ 513,128 CZK\nFees are 0.38499319 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (66.706639998932674875833655326 CZK)\nThe limits being 0.10 % (61.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22787262 BTC (103,047.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.47 % (13,880.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,885.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12076473 BTC (61,967.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.68 CZK over 957 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021362 BTC for 109.61 CZK @ 513,128 CZK\nFees are 0.38499319 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (66.706639998932674875833655326 CZK)\nThe limits being 0.10 % (61.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22787262 BTC (103,047.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.47 % (13,880.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,885.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12076473 BTC (61,967.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.68 CZK over 957 transactions" + } + ] + }, + { + "id": 2234, + "type": "message", + "date": "2023-02-02T05:00:05", + "date_unixtime": "1675310405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021271 BTC for 109.61 CZK @ 515,315 CZK\nFees are 0.38498704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.225199997086029839101295999 CZK)\nThe limits being 0.10 % (62.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22808533 BTC (103,157.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.94 % (14,378.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,775.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12097744 BTC (62,341.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.68 CZK over 958 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021271 BTC for 109.61 CZK @ 515,315 CZK\nFees are 0.38498704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (41.225199997086029839101295999 CZK)\nThe limits being 0.10 % (62.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22808533 BTC (103,157.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.94 % (14,378.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,775.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12097744 BTC (62,341.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.68 CZK over 958 transactions" + } + ] + }, + { + "id": 2235, + "type": "message", + "date": "2023-02-02T09:00:04", + "date_unixtime": "1675324804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021311 BTC for 109.62 CZK @ 514,364 CZK\nFees are 0.38499919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (36.005479999299528278120567036 CZK)\nThe limits being 0.10 % (62.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22829844 BTC (103,267.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.71 % (14,160.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,665.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12119055 BTC (62,336.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.68 CZK over 959 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021311 BTC for 109.62 CZK @ 514,364 CZK\nFees are 0.38499919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (36.005479999299528278120567036 CZK)\nThe limits being 0.10 % (62.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22829844 BTC (103,267.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.71 % (14,160.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,665.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12119055 BTC (62,336.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.68 CZK over 959 transactions" + } + ] + }, + { + "id": 2236, + "type": "message", + "date": "2023-02-02T13:00:04", + "date_unixtime": "1675339204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021252 BTC for 109.62 CZK @ 515,790 CZK\nFees are 0.38499771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (46.421099996708302420916965664 CZK)\nThe limits being 0.10 % (62.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22851096 BTC (103,377.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.01 % (14,485.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,555.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12140307 BTC (62,618.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.69 CZK over 960 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021252 BTC for 109.62 CZK @ 515,790 CZK\nFees are 0.38499771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (46.421099996708302420916965664 CZK)\nThe limits being 0.10 % (62.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22851096 BTC (103,377.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.01 % (14,485.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,555.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12140307 BTC (62,618.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.69 CZK over 960 transactions" + } + ] + }, + { + "id": 2237, + "type": "message", + "date": "2023-02-02T17:00:04", + "date_unixtime": "1675353604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021152 BTC for 109.61 CZK @ 518,209 CZK\nFees are 0.38498323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.185079996110436467824037954 CZK)\nThe limits being 0.10 % (63.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22872248 BTC (103,487.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.53 % (15,038.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,445.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12161459 BTC (63,021.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.69 CZK over 961 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021152 BTC for 109.61 CZK @ 518,209 CZK\nFees are 0.38498323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.185079996110436467824037954 CZK)\nThe limits being 0.10 % (63.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22872248 BTC (103,487.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.53 % (15,038.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,445.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12161459 BTC (63,021.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.69 CZK over 961 transactions" + } + ] + }, + { + "id": 2238, + "type": "message", + "date": "2023-02-02T21:00:05", + "date_unixtime": "1675368005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021134 BTC for 109.61 CZK @ 518,660 CZK\nFees are 0.38499038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (93.35879999541681714076439852 CZK)\nThe limits being 0.10 % (63.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22893382 BTC (103,597.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.62 % (15,141.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,335.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12182593 BTC (63,186.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.69 CZK over 962 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021134 BTC for 109.61 CZK @ 518,660 CZK\nFees are 0.38499038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (93.35879999541681714076439852 CZK)\nThe limits being 0.10 % (63.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22893382 BTC (103,597.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.62 % (15,141.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,335.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12182593 BTC (63,186.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.69 CZK over 962 transactions" + } + ] + }, + { + "id": 2239, + "type": "message", + "date": "2023-02-03T01:00:05", + "date_unixtime": "1675382405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021404 BTC for 109.61 CZK @ 512,122 CZK\nFees are 0.38499385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.212199997634889734183022477 CZK)\nThe limits being 0.10 % (62.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22914786 BTC (103,707.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 512,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.16 % (13,643.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,225.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12203997 BTC (62,499.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.69 CZK over 963 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021404 BTC for 109.61 CZK @ 512,122 CZK\nFees are 0.38499385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.212199997634889734183022477 CZK)\nThe limits being 0.10 % (62.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22914786 BTC (103,707.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 512,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.16 % (13,643.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,225.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12203997 BTC (62,499.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.69 CZK over 963 transactions" + } + ] + }, + { + "id": 2240, + "type": "message", + "date": "2023-02-03T05:00:05", + "date_unixtime": "1675396805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021348 BTC for 109.61 CZK @ 513,454 CZK\nFees are 0.38498531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.345399995462760607687595943 CZK)\nThe limits being 0.10 % (62.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22936134 BTC (103,817.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.44 % (13,948.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,115.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12225345 BTC (62,771.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.69 CZK over 964 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021348 BTC for 109.61 CZK @ 513,454 CZK\nFees are 0.38498531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.345399995462760607687595943 CZK)\nThe limits being 0.10 % (62.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22936134 BTC (103,817.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.44 % (13,948.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,115.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12225345 BTC (62,771.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.69 CZK over 964 transactions" + } + ] + }, + { + "id": 2241, + "type": "message", + "date": "2023-02-03T09:00:04", + "date_unixtime": "1675411204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021422 BTC for 109.62 CZK @ 511,694 CZK\nFees are 0.38499560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.935519999858584767523359216 CZK)\nThe limits being 0.10 % (62.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22957556 BTC (103,927.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 511,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.03 % (13,544.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,005.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12246767 BTC (62,665.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.70 CZK over 965 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021422 BTC for 109.62 CZK @ 511,694 CZK\nFees are 0.38499560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (40.935519999858584767523359216 CZK)\nThe limits being 0.10 % (62.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22957556 BTC (103,927.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 511,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.03 % (13,544.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,005.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12246767 BTC (62,665.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.70 CZK over 965 transactions" + } + ] + }, + { + "id": 2242, + "type": "message", + "date": "2023-02-03T13:00:03", + "date_unixtime": "1675425603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021373 BTC for 109.61 CZK @ 512,850 CZK\nFees are 0.38498275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.284999996852824872922313662 CZK)\nThe limits being 0.10 % (62.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.22978929 BTC (104,037.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 512,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.27 % (13,809.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,895.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12268140 BTC (62,917.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.70 CZK over 966 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021373 BTC for 109.61 CZK @ 512,850 CZK\nFees are 0.38498275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.284999996852824872922313662 CZK)\nThe limits being 0.10 % (62.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.22978929 BTC (104,037.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 512,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.27 % (13,809.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,895.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12268140 BTC (62,917.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.70 CZK over 966 transactions" + } + ] + }, + { + "id": 2243, + "type": "message", + "date": "2023-02-03T17:00:05", + "date_unixtime": "1675440005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021187 BTC for 109.62 CZK @ 517,375 CZK\nFees are 0.38499964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (77.606249996913384924605105523 CZK)\nThe limits being 0.10 % (63.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23000116 BTC (104,147.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.26 % (14,849.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,785.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12289327 BTC (63,581.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.70 CZK over 967 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021187 BTC for 109.62 CZK @ 517,375 CZK\nFees are 0.38499964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (77.606249996913384924605105523 CZK)\nThe limits being 0.10 % (63.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23000116 BTC (104,147.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.26 % (14,849.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,785.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12289327 BTC (63,581.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.70 CZK over 967 transactions" + } + ] + }, + { + "id": 2244, + "type": "message", + "date": "2023-02-03T21:00:03", + "date_unixtime": "1675454403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021326 BTC for 109.61 CZK @ 513,991 CZK\nFees are 0.38499079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (97.65828999794912685092002618 CZK)\nThe limits being 0.10 % (63.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23021442 BTC (104,257.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.50 % (14,070.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,675.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12310653 BTC (63,275.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.70 CZK over 968 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021326 BTC for 109.61 CZK @ 513,991 CZK\nFees are 0.38499079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (97.65828999794912685092002618 CZK)\nThe limits being 0.10 % (63.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23021442 BTC (104,257.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.50 % (14,070.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,675.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12310653 BTC (63,275.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.70 CZK over 968 transactions" + } + ] + }, + { + "id": 2245, + "type": "message", + "date": "2023-02-04T01:00:04", + "date_unixtime": "1675468804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021197 BTC for 109.61 CZK @ 517,109 CZK\nFees are 0.38498332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (129.27724999817241062141823334 CZK)\nThe limits being 0.10 % (63.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23042639 BTC (104,367.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.17 % (14,787.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,565.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12331850 BTC (63,769.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.71 CZK over 969 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021197 BTC for 109.61 CZK @ 517,109 CZK\nFees are 0.38498332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.20 % (129.27724999817241062141823334 CZK)\nThe limits being 0.10 % (63.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23042639 BTC (104,367.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.17 % (14,787.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,565.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12331850 BTC (63,769.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.71 CZK over 969 transactions" + } + ] + }, + { + "id": 2246, + "type": "message", + "date": "2023-02-04T05:00:04", + "date_unixtime": "1675483204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021284 BTC for 109.61 CZK @ 514,999 CZK\nFees are 0.38498611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (113.29977999478802203938161558 CZK)\nThe limits being 0.10 % (63.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23063923 BTC (104,477.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 452,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.69 % (14,301.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,455.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12353134 BTC (63,618.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.71 CZK over 970 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021284 BTC for 109.61 CZK @ 514,999 CZK\nFees are 0.38498611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (113.29977999478802203938161558 CZK)\nThe limits being 0.10 % (63.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23063923 BTC (104,477.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 452,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.69 % (14,301.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,455.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12353134 BTC (63,618.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.71 CZK over 970 transactions" + } + ] + }, + { + "id": 2247, + "type": "message", + "date": "2023-02-04T09:00:03", + "date_unixtime": "1675497603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021284 BTC for 109.61 CZK @ 515,011 CZK\nFees are 0.38499508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (82.40175999674883444497538076 CZK)\nThe limits being 0.10 % (63.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23085207 BTC (104,587.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.68 % (14,303.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,345.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12374418 BTC (63,729.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.71 CZK over 971 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021284 BTC for 109.61 CZK @ 515,011 CZK\nFees are 0.38499508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (82.40175999674883444497538076 CZK)\nThe limits being 0.10 % (63.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23085207 BTC (104,587.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.68 % (14,303.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,345.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12374418 BTC (63,729.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.71 CZK over 971 transactions" + } + ] + }, + { + "id": 2248, + "type": "message", + "date": "2023-02-04T13:00:04", + "date_unixtime": "1675512004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021257 BTC for 109.61 CZK @ 515,662 CZK\nFees are 0.38499272 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (61.879439994548880864567746713 CZK)\nThe limits being 0.10 % (63.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23106464 BTC (104,697.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.81 % (14,453.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,235.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12395675 BTC (63,919.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.71 CZK over 972 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021257 BTC for 109.61 CZK @ 515,662 CZK\nFees are 0.38499272 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (61.879439994548880864567746713 CZK)\nThe limits being 0.10 % (63.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23106464 BTC (104,697.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.81 % (14,453.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,235.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12395675 BTC (63,919.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.71 CZK over 972 transactions" + } + ] + }, + { + "id": 2249, + "type": "message", + "date": "2023-02-04T17:00:03", + "date_unixtime": "1675526403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021220 BTC for 109.62 CZK @ 516,569 CZK\nFees are 0.38499859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (56.822589996745603394716043331 CZK)\nThe limits being 0.10 % (64.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23127684 BTC (104,807.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.99 % (14,662.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,125.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12416895 BTC (64,141.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.72 CZK over 973 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021220 BTC for 109.62 CZK @ 516,569 CZK\nFees are 0.38499859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (56.822589996745603394716043331 CZK)\nThe limits being 0.10 % (64.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23127684 BTC (104,807.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.99 % (14,662.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,125.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12416895 BTC (64,141.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.72 CZK over 973 transactions" + } + ] + }, + { + "id": 2250, + "type": "message", + "date": "2023-02-04T21:00:04", + "date_unixtime": "1675540804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021195 BTC for 109.61 CZK @ 517,170 CZK\nFees are 0.38499241 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.232099996791131958174697126 CZK)\nThe limits being 0.10 % (64.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23148879 BTC (104,917.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.11 % (14,801.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,015.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12438090 BTC (64,326.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.72 CZK over 974 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021195 BTC for 109.61 CZK @ 517,170 CZK\nFees are 0.38499241 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.232099996791131958174697126 CZK)\nThe limits being 0.10 % (64.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23148879 BTC (104,917.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.11 % (14,801.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,015.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12438090 BTC (64,326.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.72 CZK over 974 transactions" + } + ] + }, + { + "id": 2251, + "type": "message", + "date": "2023-02-05T01:00:04", + "date_unixtime": "1675555204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021289 BTC for 109.61 CZK @ 514,883 CZK\nFees are 0.38498981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.190639997549092058204008267 CZK)\nThe limits being 0.10 % (64.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23170168 BTC (105,027.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.59 % (14,271.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,905.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12459379 BTC (64,151.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.72 CZK over 975 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021289 BTC for 109.61 CZK @ 514,883 CZK\nFees are 0.38498981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.190639997549092058204008267 CZK)\nThe limits being 0.10 % (64.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23170168 BTC (105,027.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.59 % (14,271.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,905.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12459379 BTC (64,151.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.72 CZK over 975 transactions" + } + ] + }, + { + "id": 2252, + "type": "message", + "date": "2023-02-05T05:00:04", + "date_unixtime": "1675569604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021300 BTC for 109.62 CZK @ 514,626 CZK\nFees are 0.38499647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.292519999719292335979003067 CZK)\nThe limits being 0.10 % (64.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23191468 BTC (105,137.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 514,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.52 % (14,211.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,795.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12480679 BTC (64,228.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.72 CZK over 976 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021300 BTC for 109.62 CZK @ 514,626 CZK\nFees are 0.38499647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.292519999719292335979003067 CZK)\nThe limits being 0.10 % (64.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23191468 BTC (105,137.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 514,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.52 % (14,211.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,795.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12480679 BTC (64,228.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.72 CZK over 976 transactions" + } + ] + }, + { + "id": 2253, + "type": "message", + "date": "2023-02-05T09:00:04", + "date_unixtime": "1675584004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021234 BTC for 109.61 CZK @ 516,220 CZK\nFees are 0.38499232 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.324399999831051900433816483 CZK)\nThe limits being 0.10 % (64.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23212702 BTC (105,247.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.85 % (14,580.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,685.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12501913 BTC (64,537.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.73 CZK over 977 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021234 BTC for 109.61 CZK @ 516,220 CZK\nFees are 0.38499232 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.324399999831051900433816483 CZK)\nThe limits being 0.10 % (64.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23212702 BTC (105,247.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.85 % (14,580.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,685.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12501913 BTC (64,537.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.73 CZK over 977 transactions" + } + ] + }, + { + "id": 2254, + "type": "message", + "date": "2023-02-05T13:00:04", + "date_unixtime": "1675598404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021254 BTC for 109.61 CZK @ 515,738 CZK\nFees are 0.38499512 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1573799999615535894436283961 CZK)\nThe limits being 0.10 % (64.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23233956 BTC (105,357.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.73 % (14,468.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,575.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12523167 BTC (64,586.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.73 CZK over 978 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021254 BTC for 109.61 CZK @ 515,738 CZK\nFees are 0.38499512 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (5.1573799999615535894436283961 CZK)\nThe limits being 0.10 % (64.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23233956 BTC (105,357.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.73 % (14,468.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,575.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12523167 BTC (64,586.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.73 CZK over 978 transactions" + } + ] + }, + { + "id": 2255, + "type": "message", + "date": "2023-02-05T17:00:04", + "date_unixtime": "1675612804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021496 BTC for 109.61 CZK @ 509,931 CZK\nFees are 0.38499447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.198619999336153014134192403 CZK)\nThe limits being 0.10 % (63.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23255452 BTC (105,467.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 509,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.44 % (13,119.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,465.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12544663 BTC (63,969.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.73 CZK over 979 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021496 BTC for 109.61 CZK @ 509,931 CZK\nFees are 0.38499447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (10.198619999336153014134192403 CZK)\nThe limits being 0.10 % (63.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23255452 BTC (105,467.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 509,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.44 % (13,119.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,465.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12544663 BTC (63,969.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.73 CZK over 979 transactions" + } + ] + }, + { + "id": 2256, + "type": "message", + "date": "2023-02-05T21:00:04", + "date_unixtime": "1675627204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021688 BTC for 109.61 CZK @ 505,410 CZK\nFees are 0.38498939 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (55.595099998584812984873856293 CZK)\nThe limits being 0.10 % (63.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23277140 BTC (105,577.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.43 % (12,067.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,355.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12566351 BTC (63,511.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.73 CZK over 980 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021688 BTC for 109.61 CZK @ 505,410 CZK\nFees are 0.38498939 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (55.595099998584812984873856293 CZK)\nThe limits being 0.10 % (63.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23277140 BTC (105,577.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.43 % (12,067.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,355.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12566351 BTC (63,511.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.73 CZK over 980 transactions" + } + ] + }, + { + "id": 2257, + "type": "message", + "date": "2023-02-06T01:00:04", + "date_unixtime": "1675641604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021642 BTC for 109.62 CZK @ 506,497 CZK\nFees are 0.38499908 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (60.779639998568912327784277073 CZK)\nThe limits being 0.10 % (63.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23298782 BTC (105,687.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.66 % (12,319.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,245.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12587993 BTC (63,757.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.73 CZK over 981 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021642 BTC for 109.62 CZK @ 506,497 CZK\nFees are 0.38499908 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (60.779639998568912327784277073 CZK)\nThe limits being 0.10 % (63.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23298782 BTC (105,687.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.66 % (12,319.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,245.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12587993 BTC (63,757.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.73 CZK over 981 transactions" + } + ] + }, + { + "id": 2258, + "type": "message", + "date": "2023-02-06T05:00:04", + "date_unixtime": "1675656004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021681 BTC for 109.61 CZK @ 505,575 CZK\nFees are 0.38499077 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.501749997879981294195926547 CZK)\nThe limits being 0.10 % (63.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23320463 BTC (105,797.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 505,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.44 % (12,104.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,135.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12609674 BTC (63,751.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.74 CZK over 982 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021681 BTC for 109.61 CZK @ 505,575 CZK\nFees are 0.38499077 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.501749997879981294195926547 CZK)\nThe limits being 0.10 % (63.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23320463 BTC (105,797.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 505,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.44 % (12,104.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,135.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12609674 BTC (63,751.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.74 CZK over 982 transactions" + } + ] + }, + { + "id": 2259, + "type": "message", + "date": "2023-02-06T09:00:03", + "date_unixtime": "1675670403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021661 BTC for 109.61 CZK @ 506,042 CZK\nFees are 0.38499092 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.302099999615859058642611070 CZK)\nThe limits being 0.10 % (63.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23342124 BTC (105,907.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.53 % (12,213.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,025.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12631335 BTC (63,919.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.74 CZK over 983 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021661 BTC for 109.61 CZK @ 506,042 CZK\nFees are 0.38499092 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (25.302099999615859058642611070 CZK)\nThe limits being 0.10 % (63.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23342124 BTC (105,907.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.53 % (12,213.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,025.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12631335 BTC (63,919.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.74 CZK over 983 transactions" + } + ] + }, + { + "id": 2260, + "type": "message", + "date": "2023-02-06T13:00:05", + "date_unixtime": "1675684805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021620 BTC for 109.61 CZK @ 507,000 CZK\nFees are 0.38498966 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.63000 CZK)\nThe limits being 0.10 % (64.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23363744 BTC (106,017.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.73 % (12,436.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,915.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12652955 BTC (64,150.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.74 CZK over 984 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021620 BTC for 109.61 CZK @ 507,000 CZK\nFees are 0.38498966 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (45.63000 CZK)\nThe limits being 0.10 % (64.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23363744 BTC (106,017.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.73 % (12,436.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,915.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12652955 BTC (64,150.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.74 CZK over 984 transactions" + } + ] + }, + { + "id": 2261, + "type": "message", + "date": "2023-02-06T17:00:04", + "date_unixtime": "1675699204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021408 BTC for 109.62 CZK @ 512,031 CZK\nFees are 0.38499738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (61.443719995710081977652208302 CZK)\nThe limits being 0.10 % (64.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23385152 BTC (106,127.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 512,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.83 % (13,611.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,805.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12674363 BTC (64,896.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.74 CZK over 985 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021408 BTC for 109.62 CZK @ 512,031 CZK\nFees are 0.38499738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (61.443719995710081977652208302 CZK)\nThe limits being 0.10 % (64.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23385152 BTC (106,127.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 512,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.83 % (13,611.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,805.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12674363 BTC (64,896.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.74 CZK over 985 transactions" + } + ] + }, + { + "id": 2262, + "type": "message", + "date": "2023-02-06T21:00:05", + "date_unixtime": "1675713605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021355 BTC for 109.61 CZK @ 513,297 CZK\nFees are 0.38499379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.063759999916004590349137420 CZK)\nThe limits being 0.10 % (65.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23406507 BTC (106,237.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.09 % (13,907.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,695.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12695718 BTC (65,166.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.75 CZK over 986 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021355 BTC for 109.61 CZK @ 513,297 CZK\nFees are 0.38499379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.063759999916004590349137420 CZK)\nThe limits being 0.10 % (65.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23406507 BTC (106,237.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.09 % (13,907.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,695.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12695718 BTC (65,166.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.75 CZK over 986 transactions" + } + ] + }, + { + "id": 2263, + "type": "message", + "date": "2023-02-07T01:00:04", + "date_unixtime": "1675728004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021641 BTC for 109.61 CZK @ 506,510 CZK\nFees are 0.38499117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (60.781199998977747285176527502 CZK)\nThe limits being 0.10 % (64.41 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23428148 BTC (106,347.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.58 % (12,318.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,585.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12717359 BTC (64,414.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.75 CZK over 987 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021641 BTC for 109.61 CZK @ 506,510 CZK\nFees are 0.38499117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (60.781199998977747285176527502 CZK)\nThe limits being 0.10 % (64.41 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23428148 BTC (106,347.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.58 % (12,318.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,585.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12717359 BTC (64,414.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.75 CZK over 987 transactions" + } + ] + }, + { + "id": 2264, + "type": "message", + "date": "2023-02-07T05:00:03", + "date_unixtime": "1675742403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021551 BTC for 109.61 CZK @ 508,615 CZK\nFees are 0.38498341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.119949996829111196053476885 CZK)\nThe limits being 0.10 % (64.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23449699 BTC (106,457.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 453,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 508,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.03 % (12,811.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,475.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12738910 BTC (64,792.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.75 CZK over 988 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021551 BTC for 109.61 CZK @ 508,615 CZK\nFees are 0.38498341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.119949996829111196053476885 CZK)\nThe limits being 0.10 % (64.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23449699 BTC (106,457.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 453,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 508,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.03 % (12,811.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,475.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12738910 BTC (64,792.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.75 CZK over 988 transactions" + } + ] + }, + { + "id": 2265, + "type": "message", + "date": "2023-02-07T09:00:05", + "date_unixtime": "1675756805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021474 BTC for 109.61 CZK @ 510,454 CZK\nFees are 0.38499490 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.045399999136857266680337734 CZK)\nThe limits being 0.10 % (65.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23471173 BTC (106,567.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 510,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.43 % (13,241.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,365.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12760384 BTC (65,135.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.75 CZK over 989 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021474 BTC for 109.61 CZK @ 510,454 CZK\nFees are 0.38499490 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (51.045399999136857266680337734 CZK)\nThe limits being 0.10 % (65.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23471173 BTC (106,567.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 510,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.43 % (13,241.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,365.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12760384 BTC (65,135.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.75 CZK over 989 transactions" + } + ] + }, + { + "id": 2266, + "type": "message", + "date": "2023-02-07T13:00:04", + "date_unixtime": "1675771204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021395 BTC for 109.61 CZK @ 512,329 CZK\nFees are 0.38498752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (61.479479998085690501566554918 CZK)\nThe limits being 0.10 % (65.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23492568 BTC (106,677.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 512,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.83 % (13,681.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,255.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12781779 BTC (65,484.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.76 CZK over 990 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021395 BTC for 109.61 CZK @ 512,329 CZK\nFees are 0.38498752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (61.479479998085690501566554918 CZK)\nThe limits being 0.10 % (65.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23492568 BTC (106,677.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 512,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.83 % (13,681.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,255.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12781779 BTC (65,484.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.76 CZK over 990 transactions" + } + ] + }, + { + "id": 2267, + "type": "message", + "date": "2023-02-07T17:00:03", + "date_unixtime": "1675785603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021484 BTC for 109.62 CZK @ 510,223 CZK\nFees are 0.38499988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.328989998420163573833047745 CZK)\nThe limits being 0.10 % (65.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23514052 BTC (106,787.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 510,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.35 % (13,186.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,145.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12803263 BTC (65,325.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.76 CZK over 991 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021484 BTC for 109.62 CZK @ 510,223 CZK\nFees are 0.38499988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.328989998420163573833047745 CZK)\nThe limits being 0.10 % (65.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23514052 BTC (106,787.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 510,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.35 % (13,186.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,145.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12803263 BTC (65,325.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.76 CZK over 991 transactions" + } + ] + }, + { + "id": 2268, + "type": "message", + "date": "2023-02-07T21:00:03", + "date_unixtime": "1675800003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021356 BTC for 109.62 CZK @ 513,277 CZK\nFees are 0.38499682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.726009996105595204198677916 CZK)\nThe limits being 0.10 % (65.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23535408 BTC (106,897.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.01 % (13,904.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,035.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12824619 BTC (65,825.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.76 CZK over 992 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021356 BTC for 109.62 CZK @ 513,277 CZK\nFees are 0.38499682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.726009996105595204198677916 CZK)\nThe limits being 0.10 % (65.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23535408 BTC (106,897.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.01 % (13,904.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,035.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12824619 BTC (65,825.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.76 CZK over 992 transactions" + } + ] + }, + { + "id": 2269, + "type": "message", + "date": "2023-02-08T01:00:04", + "date_unixtime": "1675814404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021237 BTC for 109.62 CZK @ 516,152 CZK\nFees are 0.38499599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.099759999487596491809673344 CZK)\nThe limits being 0.10 % (66.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23556645 BTC (107,007.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.63 % (14,580.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,925.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12845856 BTC (66,304.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.76 CZK over 993 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021237 BTC for 109.62 CZK @ 516,152 CZK\nFees are 0.38499599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (67.099759999487596491809673344 CZK)\nThe limits being 0.10 % (66.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23556645 BTC (107,007.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.63 % (14,580.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,925.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12845856 BTC (66,304.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.76 CZK over 993 transactions" + } + ] + }, + { + "id": 2270, + "type": "message", + "date": "2023-02-08T05:00:04", + "date_unixtime": "1675828804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021220 BTC for 109.61 CZK @ 516,564 CZK\nFees are 0.38499487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (46.490759998816583052624015755 CZK)\nThe limits being 0.10 % (66.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23577865 BTC (107,117.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.70 % (14,677.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,815.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12867076 BTC (66,466.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.76 CZK over 994 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021220 BTC for 109.61 CZK @ 516,564 CZK\nFees are 0.38499487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (46.490759998816583052624015755 CZK)\nThe limits being 0.10 % (66.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23577865 BTC (107,117.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.70 % (14,677.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,815.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12867076 BTC (66,466.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.76 CZK over 994 transactions" + } + ] + }, + { + "id": 2271, + "type": "message", + "date": "2023-02-08T09:00:04", + "date_unixtime": "1675843204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021250 BTC for 109.61 CZK @ 515,830 CZK\nFees are 0.38499133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (56.741299998710395967056478796 CZK)\nThe limits being 0.10 % (66.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23599115 BTC (107,227.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.53 % (14,503.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,705.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12888326 BTC (66,481.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.77 CZK over 995 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021250 BTC for 109.61 CZK @ 515,830 CZK\nFees are 0.38499133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (56.741299998710395967056478796 CZK)\nThe limits being 0.10 % (66.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23599115 BTC (107,227.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.53 % (14,503.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,705.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12888326 BTC (66,481.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.77 CZK over 995 transactions" + } + ] + }, + { + "id": 2272, + "type": "message", + "date": "2023-02-08T13:00:04", + "date_unixtime": "1675857604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021338 BTC for 109.61 CZK @ 513,701 CZK\nFees are 0.38499008 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.096079997074630955868538285 CZK)\nThe limits being 0.10 % (66.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23620453 BTC (107,337.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.04 % (14,000.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,595.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12909664 BTC (66,317.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.77 CZK over 996 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021338 BTC for 109.61 CZK @ 513,701 CZK\nFees are 0.38499008 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (41.096079997074630955868538285 CZK)\nThe limits being 0.10 % (66.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23620453 BTC (107,337.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.04 % (14,000.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,595.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12909664 BTC (66,317.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.77 CZK over 996 transactions" + } + ] + }, + { + "id": 2273, + "type": "message", + "date": "2023-02-08T17:00:04", + "date_unixtime": "1675872004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021581 BTC for 109.61 CZK @ 507,908 CZK\nFees are 0.38498343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (50.790799995761094452166132682 CZK)\nThe limits being 0.10 % (65.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23642034 BTC (107,447.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 507,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.76 % (12,632.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,485.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12931245 BTC (65,678.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.77 CZK over 997 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021581 BTC for 109.61 CZK @ 507,908 CZK\nFees are 0.38498343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (50.790799995761094452166132682 CZK)\nThe limits being 0.10 % (65.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23642034 BTC (107,447.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 507,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.76 % (12,632.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,485.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12931245 BTC (65,678.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.77 CZK over 997 transactions" + } + ] + }, + { + "id": 2274, + "type": "message", + "date": "2023-02-08T21:00:05", + "date_unixtime": "1675886405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021568 BTC for 109.61 CZK @ 508,216 CZK\nFees are 0.38498484 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (60.985919997737887719391624862 CZK)\nThe limits being 0.10 % (65.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23663602 BTC (107,557.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 508,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.81 % (12,704.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,375.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12952813 BTC (65,828.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.77 CZK over 998 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021568 BTC for 109.61 CZK @ 508,216 CZK\nFees are 0.38498484 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (60.985919997737887719391624862 CZK)\nThe limits being 0.10 % (65.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23663602 BTC (107,557.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 508,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.81 % (12,704.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,375.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12952813 BTC (65,828.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.77 CZK over 998 transactions" + } + ] + }, + { + "id": 2275, + "type": "message", + "date": "2023-02-09T01:00:04", + "date_unixtime": "1675900804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021545 BTC for 109.61 CZK @ 508,770 CZK\nFees are 0.38499352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.140099995340050829291723569 CZK)\nThe limits being 0.10 % (66.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23685147 BTC (107,667.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 508,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.92 % (12,835.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,265.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12974358 BTC (66,009.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.78 CZK over 999 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021545 BTC for 109.61 CZK @ 508,770 CZK\nFees are 0.38499352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (66.140099995340050829291723569 CZK)\nThe limits being 0.10 % (66.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23685147 BTC (107,667.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 508,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.92 % (12,835.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,265.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12974358 BTC (66,009.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.78 CZK over 999 transactions" + } + ] + }, + { + "id": 2276, + "type": "message", + "date": "2023-02-09T05:00:04", + "date_unixtime": "1675915204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021924 BTC for 109.61 CZK @ 499,962 CZK\nFees are 0.38498358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (44.996579999558196558351189556 CZK)\nThe limits being 0.10 % (64.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23707071 BTC (107,777.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 499,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.97 % (10,748.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,155.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.12996282 BTC (64,976.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.78 CZK over 1000 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021924 BTC for 109.61 CZK @ 499,962 CZK\nFees are 0.38498358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (44.996579999558196558351189556 CZK)\nThe limits being 0.10 % (64.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23707071 BTC (107,777.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 499,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.97 % (10,748.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,155.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.12996282 BTC (64,976.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.78 CZK over 1000 transactions" + } + ] + }, + { + "id": 2277, + "type": "message", + "date": "2023-02-09T09:00:04", + "date_unixtime": "1675929604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021769 BTC for 109.62 CZK @ 503,540 CZK\nFees are 0.38499747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (35.247799997084026477863560958 CZK)\nThe limits being 0.10 % (65.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23728840 BTC (107,887.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 503,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.75 % (11,596.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,045.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13018051 BTC (65,551.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.78 CZK over 1001 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021769 BTC for 109.62 CZK @ 503,540 CZK\nFees are 0.38499747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (35.247799997084026477863560958 CZK)\nThe limits being 0.10 % (65.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23728840 BTC (107,887.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 503,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.75 % (11,596.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,045.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13018051 BTC (65,551.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.78 CZK over 1001 transactions" + } + ] + }, + { + "id": 2278, + "type": "message", + "date": "2023-02-09T13:00:04", + "date_unixtime": "1675944004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021864 BTC for 109.61 CZK @ 501,345 CZK\nFees are 0.38499202 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.080699997866960697930459638 CZK)\nThe limits being 0.10 % (65.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23750704 BTC (107,997.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 501,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 10.26 % (11,075.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,935.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13039915 BTC (65,374.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.78 CZK over 1002 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021864 BTC for 109.61 CZK @ 501,345 CZK\nFees are 0.38499202 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (30.080699997866960697930459638 CZK)\nThe limits being 0.10 % (65.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23750704 BTC (107,997.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 501,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 10.26 % (11,075.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,935.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13039915 BTC (65,374.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.78 CZK over 1002 transactions" + } + ] + }, + { + "id": 2279, + "type": "message", + "date": "2023-02-09T17:00:04", + "date_unixtime": "1675958404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021976 BTC for 109.61 CZK @ 498,785 CZK\nFees are 0.38498823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (29.927099999836756282026376919 CZK)\nThe limits being 0.10 % (65.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23772680 BTC (108,107.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.68 % (10,466.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,825.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13061891 BTC (65,150.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.78 CZK over 1003 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021976 BTC for 109.61 CZK @ 498,785 CZK\nFees are 0.38498823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (29.927099999836756282026376919 CZK)\nThe limits being 0.10 % (65.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23772680 BTC (108,107.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.68 % (10,466.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,825.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13061891 BTC (65,150.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.78 CZK over 1003 transactions" + } + ] + }, + { + "id": 2280, + "type": "message", + "date": "2023-02-09T21:00:05", + "date_unixtime": "1675972805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022489 BTC for 109.62 CZK @ 487,417 CZK\nFees are 0.38499602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.993359999306974479889110598 CZK)\nThe limits being 0.10 % (63.78 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23795169 BTC (108,217.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.17 % (7,764.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,715.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13084380 BTC (63,775.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.79 CZK over 1004 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022489 BTC for 109.62 CZK @ 487,417 CZK\nFees are 0.38499602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.993359999306974479889110598 CZK)\nThe limits being 0.10 % (63.78 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23795169 BTC (108,217.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.17 % (7,764.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,715.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13084380 BTC (63,775.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.79 CZK over 1004 transactions" + } + ] + }, + { + "id": 2281, + "type": "message", + "date": "2023-02-10T01:00:04", + "date_unixtime": "1675987204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022739 BTC for 109.61 CZK @ 482,042 CZK\nFees are 0.38498310 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (33.742939998058161928654082056 CZK)\nThe limits being 0.10 % (63.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23817908 BTC (108,327.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.99 % (6,484.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,605.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13107119 BTC (63,181.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.79 CZK over 1005 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022739 BTC for 109.61 CZK @ 482,042 CZK\nFees are 0.38498310 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (33.742939998058161928654082056 CZK)\nThe limits being 0.10 % (63.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23817908 BTC (108,327.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.99 % (6,484.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,605.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13107119 BTC (63,181.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.79 CZK over 1005 transactions" + } + ] + }, + { + "id": 2282, + "type": "message", + "date": "2023-02-10T05:00:04", + "date_unixtime": "1676001604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022676 BTC for 109.61 CZK @ 483,394 CZK\nFees are 0.38499326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.671519999282806525722328527 CZK)\nThe limits being 0.10 % (63.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23840584 BTC (108,437.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.28 % (6,806.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,495.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13129795 BTC (63,468.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.79 CZK over 1006 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022676 BTC for 109.61 CZK @ 483,394 CZK\nFees are 0.38499326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.671519999282806525722328527 CZK)\nThe limits being 0.10 % (63.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23840584 BTC (108,437.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.28 % (6,806.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,495.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13129795 BTC (63,468.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.79 CZK over 1006 transactions" + } + ] + }, + { + "id": 2283, + "type": "message", + "date": "2023-02-10T09:00:03", + "date_unixtime": "1676016003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022607 BTC for 109.61 CZK @ 484,858 CZK\nFees are 0.38498421 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (29.091479997828628684463051413 CZK)\nThe limits being 0.10 % (63.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23863191 BTC (108,547.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.59 % (7,154.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,385.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13152402 BTC (63,770.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.79 CZK over 1007 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022607 BTC for 109.61 CZK @ 484,858 CZK\nFees are 0.38498421 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (29.091479997828628684463051413 CZK)\nThe limits being 0.10 % (63.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23863191 BTC (108,547.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.59 % (7,154.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,385.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13152402 BTC (63,770.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.79 CZK over 1007 transactions" + } + ] + }, + { + "id": 2284, + "type": "message", + "date": "2023-02-10T13:00:05", + "date_unixtime": "1676030405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022709 BTC for 109.62 CZK @ 482,696 CZK\nFees are 0.38499681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (53.096559999401452001090989762 CZK)\nThe limits being 0.10 % (63.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23885900 BTC (108,657.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.11 % (6,638.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,275.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13175111 BTC (63,595.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.80 CZK over 1008 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022709 BTC for 109.62 CZK @ 482,696 CZK\nFees are 0.38499681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (53.096559999401452001090989762 CZK)\nThe limits being 0.10 % (63.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23885900 BTC (108,657.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.11 % (6,638.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,275.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13175111 BTC (63,595.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.80 CZK over 1008 transactions" + } + ] + }, + { + "id": 2285, + "type": "message", + "date": "2023-02-10T17:00:03", + "date_unixtime": "1676044803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022773 BTC for 109.62 CZK @ 481,339 CZK\nFees are 0.38499644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.574069996219922406999031251 CZK)\nThe limits being 0.10 % (63.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23908673 BTC (108,767.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.81 % (6,314.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,165.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13197884 BTC (63,526.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.80 CZK over 1009 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022773 BTC for 109.62 CZK @ 481,339 CZK\nFees are 0.38499644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.574069996219922406999031251 CZK)\nThe limits being 0.10 % (63.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23908673 BTC (108,767.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.81 % (6,314.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,165.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13197884 BTC (63,526.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.80 CZK over 1009 transactions" + } + ] + }, + { + "id": 2286, + "type": "message", + "date": "2023-02-10T21:00:03", + "date_unixtime": "1676059203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022584 BTC for 109.62 CZK @ 485,366 CZK\nFees are 0.38499549 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (77.658559999265765004912844010 CZK)\nThe limits being 0.10 % (64.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23931257 BTC (108,877.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.68 % (7,276.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,055.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13220468 BTC (64,167.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.80 CZK over 1010 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022584 BTC for 109.62 CZK @ 485,366 CZK\nFees are 0.38499549 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (77.658559999265765004912844010 CZK)\nThe limits being 0.10 % (64.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23931257 BTC (108,877.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.68 % (7,276.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,055.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13220468 BTC (64,167.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.80 CZK over 1010 transactions" + } + ] + }, + { + "id": 2287, + "type": "message", + "date": "2023-02-11T01:00:04", + "date_unixtime": "1676073604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022739 BTC for 109.61 CZK @ 482,043 CZK\nFees are 0.38498390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (86.76773999826851676373556268 CZK)\nThe limits being 0.10 % (63.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23953996 BTC (108,987.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 454,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.95 % (6,480.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,945.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13243207 BTC (63,837.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.80 CZK over 1011 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022739 BTC for 109.61 CZK @ 482,043 CZK\nFees are 0.38498390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (86.76773999826851676373556268 CZK)\nThe limits being 0.10 % (63.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23953996 BTC (108,987.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 454,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.95 % (6,480.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,945.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13243207 BTC (63,837.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.80 CZK over 1011 transactions" + } + ] + }, + { + "id": 2288, + "type": "message", + "date": "2023-02-11T05:00:03", + "date_unixtime": "1676088003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022691 BTC for 109.61 CZK @ 483,074 CZK\nFees are 0.38499290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (82.12257999649852724489890249 CZK)\nThe limits being 0.10 % (64.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23976687 BTC (109,097.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.17 % (6,727.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,835.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13265898 BTC (64,084.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.80 CZK over 1012 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022691 BTC for 109.61 CZK @ 483,074 CZK\nFees are 0.38499290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (82.12257999649852724489890249 CZK)\nThe limits being 0.10 % (64.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23976687 BTC (109,097.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.17 % (6,727.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,835.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13265898 BTC (64,084.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.80 CZK over 1012 transactions" + } + ] + }, + { + "id": 2289, + "type": "message", + "date": "2023-02-11T09:00:04", + "date_unixtime": "1676102404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022671 BTC for 109.61 CZK @ 483,501 CZK\nFees are 0.38499357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (72.525149999350559399123050794 CZK)\nThe limits being 0.10 % (64.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.23999358 BTC (109,207.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.25 % (6,829.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,725.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13288569 BTC (64,250.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.81 CZK over 1013 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022671 BTC for 109.61 CZK @ 483,501 CZK\nFees are 0.38499357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (72.525149999350559399123050794 CZK)\nThe limits being 0.10 % (64.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.23999358 BTC (109,207.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.25 % (6,829.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,725.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13288569 BTC (64,250.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.81 CZK over 1013 transactions" + } + ] + }, + { + "id": 2290, + "type": "message", + "date": "2023-02-11T13:00:04", + "date_unixtime": "1676116804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022691 BTC for 109.61 CZK @ 483,074 CZK\nFees are 0.38499290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.799619997322403187275631319 CZK)\nThe limits being 0.10 % (64.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24022049 BTC (109,317.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.15 % (6,726.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,615.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13311260 BTC (64,303.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.81 CZK over 1014 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022691 BTC for 109.61 CZK @ 483,074 CZK\nFees are 0.38499290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.799619997322403187275631319 CZK)\nThe limits being 0.10 % (64.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24022049 BTC (109,317.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.15 % (6,726.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,615.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13311260 BTC (64,303.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.81 CZK over 1014 transactions" + } + ] + }, + { + "id": 2291, + "type": "message", + "date": "2023-02-11T17:00:04", + "date_unixtime": "1676131204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022630 BTC for 109.62 CZK @ 484,380 CZK\nFees are 0.38499597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.750399996829479499612602026 CZK)\nThe limits being 0.10 % (64.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24044679 BTC (109,427.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 484,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.43 % (7,040.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,505.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13333890 BTC (64,586.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.81 CZK over 1015 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022630 BTC for 109.62 CZK @ 484,380 CZK\nFees are 0.38499597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.750399996829479499612602026 CZK)\nThe limits being 0.10 % (64.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24044679 BTC (109,427.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 484,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.43 % (7,040.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,505.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13333890 BTC (64,586.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.81 CZK over 1015 transactions" + } + ] + }, + { + "id": 2292, + "type": "message", + "date": "2023-02-11T21:00:04", + "date_unixtime": "1676145604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022698 BTC for 109.61 CZK @ 482,913 CZK\nFees are 0.38498332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.316519999193939372386970741 CZK)\nThe limits being 0.10 % (64.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24067377 BTC (109,537.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.10 % (6,686.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,395.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13356588 BTC (64,500.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.81 CZK over 1016 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022698 BTC for 109.61 CZK @ 482,913 CZK\nFees are 0.38498332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.316519999193939372386970741 CZK)\nThe limits being 0.10 % (64.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24067377 BTC (109,537.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.10 % (6,686.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,395.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13356588 BTC (64,500.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.81 CZK over 1016 transactions" + } + ] + }, + { + "id": 2293, + "type": "message", + "date": "2023-02-12T01:00:04", + "date_unixtime": "1676160004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022517 BTC for 109.61 CZK @ 486,806 CZK\nFees are 0.38499215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.680599997977501093731561154 CZK)\nThe limits being 0.10 % (65.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24089894 BTC (109,647.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.95 % (7,623.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,285.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13379105 BTC (65,130.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.81 CZK over 1017 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022517 BTC for 109.61 CZK @ 486,806 CZK\nFees are 0.38499215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.680599997977501093731561154 CZK)\nThe limits being 0.10 % (65.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24089894 BTC (109,647.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.95 % (7,623.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,285.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13379105 BTC (65,130.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.81 CZK over 1017 transactions" + } + ] + }, + { + "id": 2294, + "type": "message", + "date": "2023-02-12T05:00:04", + "date_unixtime": "1676174404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022568 BTC for 109.61 CZK @ 485,709 CZK\nFees are 0.38499461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.57089999782752567361275592 CZK)\nThe limits being 0.10 % (65.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24112462 BTC (109,757.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.70 % (7,358.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,175.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13401673 BTC (65,093.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.82 CZK over 1018 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022568 BTC for 109.61 CZK @ 485,709 CZK\nFees are 0.38499461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.57089999782752567361275592 CZK)\nThe limits being 0.10 % (65.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24112462 BTC (109,757.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.70 % (7,358.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,175.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13401673 BTC (65,093.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.82 CZK over 1018 transactions" + } + ] + }, + { + "id": 2295, + "type": "message", + "date": "2023-02-12T09:00:04", + "date_unixtime": "1676188804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022568 BTC for 109.62 CZK @ 485,710 CZK\nFees are 0.38499540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.142599998728307711383076638 CZK)\nThe limits being 0.10 % (65.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24135030 BTC (109,867.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.70 % (7,358.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,065.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13424241 BTC (65,202.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.82 CZK over 1019 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022568 BTC for 109.62 CZK @ 485,710 CZK\nFees are 0.38499540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.142599998728307711383076638 CZK)\nThe limits being 0.10 % (65.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24135030 BTC (109,867.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.70 % (7,358.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,065.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13424241 BTC (65,202.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.82 CZK over 1019 transactions" + } + ] + }, + { + "id": 2296, + "type": "message", + "date": "2023-02-12T13:00:04", + "date_unixtime": "1676203204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022461 BTC for 109.61 CZK @ 488,011 CZK\nFees are 0.38498528 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.520439998671671987631908595 CZK)\nThe limits being 0.10 % (65.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24157491 BTC (109,977.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.20 % (7,913.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,955.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13446702 BTC (65,621.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.82 CZK over 1020 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022461 BTC for 109.61 CZK @ 488,011 CZK\nFees are 0.38498528 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.520439998671671987631908595 CZK)\nThe limits being 0.10 % (65.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24157491 BTC (109,977.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.20 % (7,913.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,955.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13446702 BTC (65,621.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.82 CZK over 1020 transactions" + } + ] + }, + { + "id": 2297, + "type": "message", + "date": "2023-02-12T17:00:03", + "date_unixtime": "1676217603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022420 BTC for 109.61 CZK @ 488,915 CZK\nFees are 0.38499438 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.891499999777762665639041231 CZK)\nThe limits being 0.10 % (65.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24179911 BTC (110,087.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 488,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.39 % (8,131.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,845.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13469122 BTC (65,852.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.82 CZK over 1021 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022420 BTC for 109.61 CZK @ 488,915 CZK\nFees are 0.38499438 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.891499999777762665639041231 CZK)\nThe limits being 0.10 % (65.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24179911 BTC (110,087.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 488,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.39 % (8,131.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,845.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13469122 BTC (65,852.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.82 CZK over 1021 transactions" + } + ] + }, + { + "id": 2298, + "type": "message", + "date": "2023-02-12T21:00:04", + "date_unixtime": "1676232004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022343 BTC for 109.61 CZK @ 490,587 CZK\nFees are 0.38498423 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (53.964569996597639809697076657 CZK)\nThe limits being 0.10 % (66.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24202254 BTC (110,197.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.75 % (8,535.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,735.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13491465 BTC (66,187.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.83 CZK over 1022 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022343 BTC for 109.61 CZK @ 490,587 CZK\nFees are 0.38498423 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (53.964569996597639809697076657 CZK)\nThe limits being 0.10 % (66.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24202254 BTC (110,197.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.75 % (8,535.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,735.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13491465 BTC (66,187.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.83 CZK over 1022 transactions" + } + ] + }, + { + "id": 2299, + "type": "message", + "date": "2023-02-13T01:00:04", + "date_unixtime": "1676246404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022600 BTC for 109.61 CZK @ 485,012 CZK\nFees are 0.38498725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.501199999118130790022531757 CZK)\nThe limits being 0.10 % (65.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24224854 BTC (110,307.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 485,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.51 % (7,185.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,625.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13514065 BTC (65,544.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.83 CZK over 1023 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022600 BTC for 109.61 CZK @ 485,012 CZK\nFees are 0.38498725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.501199999118130790022531757 CZK)\nThe limits being 0.10 % (65.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24224854 BTC (110,307.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 485,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.51 % (7,185.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,625.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13514065 BTC (65,544.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.83 CZK over 1023 transactions" + } + ] + }, + { + "id": 2300, + "type": "message", + "date": "2023-02-13T05:00:05", + "date_unixtime": "1676260805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022532 BTC for 109.61 CZK @ 486,476 CZK\nFees are 0.38498746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (24.323799999310066108934723498 CZK)\nThe limits being 0.10 % (65.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24247386 BTC (110,417.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 486,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.83 % (7,540.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,515.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13536597 BTC (65,852.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.83 CZK over 1024 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022532 BTC for 109.61 CZK @ 486,476 CZK\nFees are 0.38498746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (24.323799999310066108934723498 CZK)\nThe limits being 0.10 % (65.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24247386 BTC (110,417.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 486,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.83 % (7,540.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,515.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13536597 BTC (65,852.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.83 CZK over 1024 transactions" + } + ] + }, + { + "id": 2301, + "type": "message", + "date": "2023-02-13T09:00:03", + "date_unixtime": "1676275203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022468 BTC for 109.62 CZK @ 487,875 CZK\nFees are 0.38499794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (24.393749999445593617993068413 CZK)\nThe limits being 0.10 % (66.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24269854 BTC (110,527.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.13 % (7,878.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,405.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13559065 BTC (66,151.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.83 CZK over 1025 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022468 BTC for 109.62 CZK @ 487,875 CZK\nFees are 0.38499794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (24.393749999445593617993068413 CZK)\nThe limits being 0.10 % (66.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24269854 BTC (110,527.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.13 % (7,878.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,405.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13559065 BTC (66,151.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.83 CZK over 1025 transactions" + } + ] + }, + { + "id": 2302, + "type": "message", + "date": "2023-02-13T13:00:04", + "date_unixtime": "1676289604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022737 BTC for 109.62 CZK @ 482,104 CZK\nFees are 0.38499875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.568319999060332421868930881 CZK)\nThe limits being 0.10 % (65.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24292591 BTC (110,637.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.86 % (6,477.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,295.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13581802 BTC (65,478.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.83 CZK over 1026 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022737 BTC for 109.62 CZK @ 482,104 CZK\nFees are 0.38499875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.568319999060332421868930881 CZK)\nThe limits being 0.10 % (65.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24292591 BTC (110,637.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.86 % (6,477.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,295.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13581802 BTC (65,478.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.83 CZK over 1026 transactions" + } + ] + }, + { + "id": 2303, + "type": "message", + "date": "2023-02-13T17:00:03", + "date_unixtime": "1676304003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022844 BTC for 109.61 CZK @ 479,828 CZK\nFees are 0.38498442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (57.579359995225954475392857620 CZK)\nThe limits being 0.10 % (65.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24315435 BTC (110,747.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 479,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.35 % (5,924.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,185.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13604646 BTC (65,278.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.84 CZK over 1027 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022844 BTC for 109.61 CZK @ 479,828 CZK\nFees are 0.38498442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (57.579359995225954475392857620 CZK)\nThe limits being 0.10 % (65.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24315435 BTC (110,747.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 479,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.35 % (5,924.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,185.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13604646 BTC (65,278.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.84 CZK over 1027 transactions" + } + ] + }, + { + "id": 2304, + "type": "message", + "date": "2023-02-13T21:00:03", + "date_unixtime": "1676318403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022809 BTC for 109.61 CZK @ 480,566 CZK\nFees are 0.38498580 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.473579996427515314619708744 CZK)\nThe limits being 0.10 % (65.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24338244 BTC (110,857.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 480,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.51 % (6,103.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,075.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13627455 BTC (65,488.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.84 CZK over 1028 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022809 BTC for 109.61 CZK @ 480,566 CZK\nFees are 0.38498580 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (62.473579996427515314619708744 CZK)\nThe limits being 0.10 % (65.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24338244 BTC (110,857.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 480,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.51 % (6,103.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,075.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13627455 BTC (65,488.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.84 CZK over 1028 transactions" + } + ] + }, + { + "id": 2305, + "type": "message", + "date": "2023-02-14T01:00:04", + "date_unixtime": "1676332804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022656 BTC for 109.61 CZK @ 483,810 CZK\nFees are 0.38498472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (58.057199995988616114784694248 CZK)\nThe limits being 0.10 % (66.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24360900 BTC (110,967.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.21 % (6,892.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,965.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13650111 BTC (66,040.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.84 CZK over 1029 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022656 BTC for 109.61 CZK @ 483,810 CZK\nFees are 0.38498472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (58.057199995988616114784694248 CZK)\nThe limits being 0.10 % (66.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24360900 BTC (110,967.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.21 % (6,892.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,965.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13650111 BTC (66,040.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.84 CZK over 1029 transactions" + } + ] + }, + { + "id": 2306, + "type": "message", + "date": "2023-02-14T05:00:04", + "date_unixtime": "1676347204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022745 BTC for 109.61 CZK @ 481,922 CZK\nFees are 0.38498882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.553759997844431716952854500 CZK)\nThe limits being 0.10 % (65.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24383645 BTC (111,077.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 481,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.79 % (6,432.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,855.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13672856 BTC (65,892.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.84 CZK over 1030 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022745 BTC for 109.61 CZK @ 481,922 CZK\nFees are 0.38498882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (38.553759997844431716952854500 CZK)\nThe limits being 0.10 % (65.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24383645 BTC (111,077.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 481,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.79 % (6,432.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,855.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13672856 BTC (65,892.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.84 CZK over 1030 transactions" + } + ] + }, + { + "id": 2307, + "type": "message", + "date": "2023-02-14T09:00:04", + "date_unixtime": "1676361604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022676 BTC for 109.61 CZK @ 483,385 CZK\nFees are 0.38498609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.338499996000943250044846565 CZK)\nThe limits being 0.10 % (66.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24406321 BTC (111,187.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 483,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.11 % (6,788.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,745.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13695532 BTC (66,202.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.84 CZK over 1031 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022676 BTC for 109.61 CZK @ 483,385 CZK\nFees are 0.38498609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (48.338499996000943250044846565 CZK)\nThe limits being 0.10 % (66.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24406321 BTC (111,187.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 483,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.11 % (6,788.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,745.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13695532 BTC (66,202.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.84 CZK over 1031 transactions" + } + ] + }, + { + "id": 2308, + "type": "message", + "date": "2023-02-14T13:00:04", + "date_unixtime": "1676376004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022719 BTC for 109.61 CZK @ 482,481 CZK\nFees are 0.38499479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (53.072909997893941915036445463 CZK)\nThe limits being 0.10 % (66.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24429040 BTC (111,297.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 482,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 5.90 % (6,567.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,635.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13718251 BTC (66,187.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.85 CZK over 1032 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022719 BTC for 109.61 CZK @ 482,481 CZK\nFees are 0.38499479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (53.072909997893941915036445463 CZK)\nThe limits being 0.10 % (66.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24429040 BTC (111,297.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 482,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 5.90 % (6,567.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,635.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13718251 BTC (66,187.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.85 CZK over 1032 transactions" + } + ] + }, + { + "id": 2309, + "type": "message", + "date": "2023-02-14T17:00:04", + "date_unixtime": "1676390404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022475 BTC for 109.61 CZK @ 487,709 CZK\nFees are 0.38498685 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (63.402169998775143504962885737 CZK)\nThe limits being 0.10 % (67.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24451515 BTC (111,407.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 487,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.04 % (7,844.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,525.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13740726 BTC (67,014.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.85 CZK over 1033 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022475 BTC for 109.61 CZK @ 487,709 CZK\nFees are 0.38498685 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (63.402169998775143504962885737 CZK)\nThe limits being 0.10 % (67.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24451515 BTC (111,407.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 487,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.04 % (7,844.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,525.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13740726 BTC (67,014.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.85 CZK over 1033 transactions" + } + ] + }, + { + "id": 2310, + "type": "message", + "date": "2023-02-14T21:00:04", + "date_unixtime": "1676404804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022316 BTC for 109.61 CZK @ 491,185 CZK\nFees are 0.38498771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (73.677749995914103469904089942 CZK)\nThe limits being 0.10 % (67.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24473831 BTC (111,517.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.80 % (8,694.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,415.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13763042 BTC (67,602.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.85 CZK over 1034 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022316 BTC for 109.61 CZK @ 491,185 CZK\nFees are 0.38498771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (73.677749995914103469904089942 CZK)\nThe limits being 0.10 % (67.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24473831 BTC (111,517.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.80 % (8,694.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,415.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13763042 BTC (67,602.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.85 CZK over 1034 transactions" + } + ] + }, + { + "id": 2311, + "type": "message", + "date": "2023-02-15T01:00:05", + "date_unixtime": "1676419205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022320 BTC for 109.61 CZK @ 491,106 CZK\nFees are 0.38499479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (73.665899995178166738994165584 CZK)\nThe limits being 0.10 % (67.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24496151 BTC (111,627.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 491,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.77 % (8,674.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,305.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13785362 BTC (67,700.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.85 CZK over 1035 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022320 BTC for 109.61 CZK @ 491,106 CZK\nFees are 0.38499479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (73.665899995178166738994165584 CZK)\nThe limits being 0.10 % (67.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24496151 BTC (111,627.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 491,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.77 % (8,674.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,305.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13785362 BTC (67,700.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.85 CZK over 1035 transactions" + } + ] + }, + { + "id": 2312, + "type": "message", + "date": "2023-02-15T05:00:03", + "date_unixtime": "1676433603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022403 BTC for 109.62 CZK @ 489,291 CZK\nFees are 0.38499831 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (83.17946999277469712142839080 CZK)\nThe limits being 0.10 % (67.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24518554 BTC (111,737.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 489,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.37 % (8,229.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,195.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13807765 BTC (67,560.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.85 CZK over 1036 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022403 BTC for 109.62 CZK @ 489,291 CZK\nFees are 0.38499831 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (83.17946999277469712142839080 CZK)\nThe limits being 0.10 % (67.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24518554 BTC (111,737.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 489,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.37 % (8,229.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,195.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13807765 BTC (67,560.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.85 CZK over 1036 transactions" + } + ] + }, + { + "id": 2313, + "type": "message", + "date": "2023-02-15T09:00:06", + "date_unixtime": "1676448006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022350 BTC for 109.61 CZK @ 490,442 CZK\nFees are 0.38499102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (83.37513999658911929053681243 CZK)\nThe limits being 0.10 % (67.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24540904 BTC (111,847.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 490,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.61 % (8,511.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,085.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13830115 BTC (67,828.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.86 CZK over 1037 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022350 BTC for 109.61 CZK @ 490,442 CZK\nFees are 0.38499102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (83.37513999658911929053681243 CZK)\nThe limits being 0.10 % (67.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24540904 BTC (111,847.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 490,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.61 % (8,511.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,085.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13830115 BTC (67,828.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.86 CZK over 1037 transactions" + } + ] + }, + { + "id": 2314, + "type": "message", + "date": "2023-02-15T13:00:04", + "date_unixtime": "1676462404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022035 BTC for 109.61 CZK @ 497,450 CZK\nFees are 0.38498864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (84.56649999519494340717405125 CZK)\nThe limits being 0.10 % (68.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24562939 BTC (111,957.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 497,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 9.14 % (10,230.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,975.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13852150 BTC (68,907.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.86 CZK over 1038 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022035 BTC for 109.61 CZK @ 497,450 CZK\nFees are 0.38498864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (84.56649999519494340717405125 CZK)\nThe limits being 0.10 % (68.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24562939 BTC (111,957.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 497,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 9.14 % (10,230.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,975.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13852150 BTC (68,907.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.86 CZK over 1038 transactions" + } + ] + }, + { + "id": 2315, + "type": "message", + "date": "2023-02-15T17:00:05", + "date_unixtime": "1676476805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021645 BTC for 109.62 CZK @ 506,422 CZK\nFees are 0.38499543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (86.09173999479530122280495973 CZK)\nThe limits being 0.10 % (70.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24584584 BTC (112,067.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 506,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.10 % (12,434.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,865.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13873795 BTC (70,259.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.86 CZK over 1039 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021645 BTC for 109.62 CZK @ 506,422 CZK\nFees are 0.38499543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (86.09173999479530122280495973 CZK)\nThe limits being 0.10 % (70.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24584584 BTC (112,067.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 506,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.10 % (12,434.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,865.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13873795 BTC (70,259.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.86 CZK over 1039 transactions" + } + ] + }, + { + "id": 2316, + "type": "message", + "date": "2023-02-15T21:00:04", + "date_unixtime": "1676491204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021252 BTC for 109.62 CZK @ 515,792 CZK\nFees are 0.38499920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (92.84255999540850388968930595 CZK)\nThe limits being 0.10 % (71.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24605836 BTC (112,177.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,898 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.14 % (14,737.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,755.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13895047 BTC (71,669.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.86 CZK over 1040 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021252 BTC for 109.62 CZK @ 515,792 CZK\nFees are 0.38499920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (92.84255999540850388968930595 CZK)\nThe limits being 0.10 % (71.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24605836 BTC (112,177.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,898 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.14 % (14,737.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,755.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13895047 BTC (71,669.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.86 CZK over 1040 transactions" + } + ] + }, + { + "id": 2317, + "type": "message", + "date": "2023-02-16T01:00:06", + "date_unixtime": "1676505606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020393 BTC for 109.61 CZK @ 537,506 CZK\nFees are 0.38499036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (102.12613999532993322957741857 CZK)\nThe limits being 0.10 % (74.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24626229 BTC (112,287.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 455,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 537,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.88 % (20,079.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,645.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13915440 BTC (74,796.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.87 CZK over 1041 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020393 BTC for 109.61 CZK @ 537,506 CZK\nFees are 0.38499036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (102.12613999532993322957741857 CZK)\nThe limits being 0.10 % (74.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24626229 BTC (112,287.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 455,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 537,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.88 % (20,079.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,645.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13915440 BTC (74,796.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.87 CZK over 1041 transactions" + } + ] + }, + { + "id": 2318, + "type": "message", + "date": "2023-02-16T05:00:03", + "date_unixtime": "1676520003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020094 BTC for 109.61 CZK @ 545,499 CZK\nFees are 0.38498675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (98.18981999847354206529758566 CZK)\nThe limits being 0.10 % (76.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24646323 BTC (112,397.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.62 % (22,047.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,535.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13935534 BTC (76,018.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.87 CZK over 1042 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020094 BTC for 109.61 CZK @ 545,499 CZK\nFees are 0.38498675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (98.18981999847354206529758566 CZK)\nThe limits being 0.10 % (76.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24646323 BTC (112,397.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.62 % (22,047.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,535.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13935534 BTC (76,018.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.87 CZK over 1042 transactions" + } + ] + }, + { + "id": 2319, + "type": "message", + "date": "2023-02-16T09:00:04", + "date_unixtime": "1676534404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020178 BTC for 109.61 CZK @ 543,238 CZK\nFees are 0.38499375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (70.620939998240868033347255268 CZK)\nThe limits being 0.10 % (75.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24666501 BTC (112,507.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.10 % (21,490.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,425.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13955712 BTC (75,812.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.87 CZK over 1043 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020178 BTC for 109.61 CZK @ 543,238 CZK\nFees are 0.38499375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (70.620939998240868033347255268 CZK)\nThe limits being 0.10 % (75.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24666501 BTC (112,507.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.10 % (21,490.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,425.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13955712 BTC (75,812.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.87 CZK over 1043 transactions" + } + ] + }, + { + "id": 2320, + "type": "message", + "date": "2023-02-16T13:00:07", + "date_unixtime": "1676548807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020143 BTC for 109.61 CZK @ 544,179 CZK\nFees are 0.38499169 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.767159998833452919250676052 CZK)\nThe limits being 0.10 % (76.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24686644 BTC (112,617.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.29 % (21,722.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,315.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13975855 BTC (76,053.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.87 CZK over 1044 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020143 BTC for 109.61 CZK @ 544,179 CZK\nFees are 0.38499169 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.767159998833452919250676052 CZK)\nThe limits being 0.10 % (76.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24686644 BTC (112,617.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.29 % (21,722.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,315.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13975855 BTC (76,053.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.87 CZK over 1044 transactions" + } + ] + }, + { + "id": 2321, + "type": "message", + "date": "2023-02-16T17:00:03", + "date_unixtime": "1676563203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019776 BTC for 109.61 CZK @ 554,265 CZK\nFees are 0.38498280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.13974999818596078772838754 CZK)\nThe limits being 0.10 % (77.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24706420 BTC (112,727.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.48 % (24,211.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,205.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.13995631 BTC (77,572.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.87 CZK over 1045 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019776 BTC for 109.61 CZK @ 554,265 CZK\nFees are 0.38498280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.13974999818596078772838754 CZK)\nThe limits being 0.10 % (77.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24706420 BTC (112,727.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.48 % (24,211.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,205.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.13995631 BTC (77,572.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.87 CZK over 1045 transactions" + } + ] + }, + { + "id": 2322, + "type": "message", + "date": "2023-02-16T21:00:03", + "date_unixtime": "1676577603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019866 BTC for 109.62 CZK @ 551,774 CZK\nFees are 0.38499677 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.80158000005116492758582653 CZK)\nThe limits being 0.10 % (77.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24726286 BTC (112,837.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.91 % (23,595.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,095.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14015497 BTC (77,333.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.88 CZK over 1046 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019866 BTC for 109.62 CZK @ 551,774 CZK\nFees are 0.38499677 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.80158000005116492758582653 CZK)\nThe limits being 0.10 % (77.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24726286 BTC (112,837.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.91 % (23,595.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,095.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14015497 BTC (77,333.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.88 CZK over 1046 transactions" + } + ] + }, + { + "id": 2323, + "type": "message", + "date": "2023-02-17T01:00:04", + "date_unixtime": "1676592004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020967 BTC for 109.61 CZK @ 522,796 CZK\nFees are 0.38499401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (99.33123999944012430000982159 CZK)\nThe limits being 0.10 % (73.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24747253 BTC (112,947.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 522,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.55 % (16,430.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,985.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14036464 BTC (73,382.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.88 CZK over 1047 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020967 BTC for 109.61 CZK @ 522,796 CZK\nFees are 0.38499401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (99.33123999944012430000982159 CZK)\nThe limits being 0.10 % (73.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24747253 BTC (112,947.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 522,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.55 % (16,430.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,985.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14036464 BTC (73,382.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.88 CZK over 1047 transactions" + } + ] + }, + { + "id": 2324, + "type": "message", + "date": "2023-02-17T05:00:03", + "date_unixtime": "1676606403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020675 BTC for 109.62 CZK @ 530,184 CZK\nFees are 0.38499719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (79.52759999493911575507489205 CZK)\nThe limits being 0.10 % (74.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24767928 BTC (113,057.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 530,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.15 % (18,258.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,875.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14057139 BTC (74,528.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.88 CZK over 1048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020675 BTC for 109.62 CZK @ 530,184 CZK\nFees are 0.38499719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (79.52759999493911575507489205 CZK)\nThe limits being 0.10 % (74.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24767928 BTC (113,057.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 530,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.15 % (18,258.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,875.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14057139 BTC (74,528.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.88 CZK over 1048 transactions" + } + ] + }, + { + "id": 2325, + "type": "message", + "date": "2023-02-17T09:00:04", + "date_unixtime": "1676620804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020812 BTC for 109.61 CZK @ 526,676 CZK\nFees are 0.38498408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (79.001399998621009438328525538 CZK)\nThe limits being 0.10 % (74.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24788740 BTC (113,167.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 526,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.37 % (17,388.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,765.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14077951 BTC (74,145.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.88 CZK over 1049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020812 BTC for 109.61 CZK @ 526,676 CZK\nFees are 0.38498408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (79.001399998621009438328525538 CZK)\nThe limits being 0.10 % (74.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24788740 BTC (113,167.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 526,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.37 % (17,388.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,765.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14077951 BTC (74,145.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.88 CZK over 1049 transactions" + } + ] + }, + { + "id": 2326, + "type": "message", + "date": "2023-02-17T13:00:04", + "date_unixtime": "1676635204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020634 BTC for 109.61 CZK @ 531,219 CZK\nFees are 0.38498379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (74.370659993502435186259741575 CZK)\nThe limits being 0.10 % (74.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24809374 BTC (113,277.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 531,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.34 % (18,514.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,655.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14098585 BTC (74,894.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.88 CZK over 1050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020634 BTC for 109.61 CZK @ 531,219 CZK\nFees are 0.38498379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (74.370659993502435186259741575 CZK)\nThe limits being 0.10 % (74.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24809374 BTC (113,277.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 531,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.34 % (18,514.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,655.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14098585 BTC (74,894.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.88 CZK over 1050 transactions" + } + ] + }, + { + "id": 2327, + "type": "message", + "date": "2023-02-17T17:00:04", + "date_unixtime": "1676649604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020386 BTC for 109.62 CZK @ 537,700 CZK\nFees are 0.38499712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (80.65499999486737065810720068 CZK)\nThe limits being 0.10 % (75.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24829760 BTC (113,387.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 537,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.75 % (20,122.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,545.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14118971 BTC (75,917.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.89 CZK over 1051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020386 BTC for 109.62 CZK @ 537,700 CZK\nFees are 0.38499712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (80.65499999486737065810720068 CZK)\nThe limits being 0.10 % (75.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24829760 BTC (113,387.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 537,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.75 % (20,122.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,545.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14118971 BTC (75,917.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.89 CZK over 1051 transactions" + } + ] + }, + { + "id": 2328, + "type": "message", + "date": "2023-02-17T21:00:04", + "date_unixtime": "1676664004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020151 BTC for 109.62 CZK @ 543,971 CZK\nFees are 0.38499738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (81.59564999500408685723237984 CZK)\nThe limits being 0.10 % (76.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24849911 BTC (113,497.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.10 % (21,678.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,435.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14139122 BTC (76,912.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.89 CZK over 1052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020151 BTC for 109.62 CZK @ 543,971 CZK\nFees are 0.38499738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (81.59564999500408685723237984 CZK)\nThe limits being 0.10 % (76.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24849911 BTC (113,497.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.10 % (21,678.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,435.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14139122 BTC (76,912.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.89 CZK over 1052 transactions" + } + ] + }, + { + "id": 2329, + "type": "message", + "date": "2023-02-18T01:00:04", + "date_unixtime": "1676678404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020101 BTC for 109.61 CZK @ 545,301 CZK\nFees are 0.38498107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (81.79514999328131352216895113 CZK)\nThe limits being 0.10 % (77.21 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24870012 BTC (113,607.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.37 % (22,008.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,325.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14159223 BTC (77,210.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.89 CZK over 1053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020101 BTC for 109.61 CZK @ 545,301 CZK\nFees are 0.38498107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (81.79514999328131352216895113 CZK)\nThe limits being 0.10 % (77.21 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24870012 BTC (113,607.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.37 % (22,008.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,325.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14159223 BTC (77,210.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.89 CZK over 1053 transactions" + } + ] + }, + { + "id": 2330, + "type": "message", + "date": "2023-02-18T05:00:04", + "date_unixtime": "1676692804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020070 BTC for 109.61 CZK @ 546,162 CZK\nFees are 0.38499428 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (65.539439995888828561916699623 CZK)\nThe limits being 0.10 % (77.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24890082 BTC (113,717.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 546,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.54 % (22,222.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,215.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14179293 BTC (77,441.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.89 CZK over 1054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020070 BTC for 109.61 CZK @ 546,162 CZK\nFees are 0.38499428 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (65.539439995888828561916699623 CZK)\nThe limits being 0.10 % (77.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24890082 BTC (113,717.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 546,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.54 % (22,222.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,215.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14179293 BTC (77,441.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.89 CZK over 1054 transactions" + } + ] + }, + { + "id": 2331, + "type": "message", + "date": "2023-02-18T09:00:04", + "date_unixtime": "1676707204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020136 BTC for 109.62 CZK @ 544,375 CZK\nFees are 0.38499651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.549999998020436616459000568 CZK)\nThe limits being 0.10 % (77.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24910218 BTC (113,827.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 456,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.13 % (21,777.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,105.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14199429 BTC (77,298.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.89 CZK over 1055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020136 BTC for 109.62 CZK @ 544,375 CZK\nFees are 0.38499651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (43.549999998020436616459000568 CZK)\nThe limits being 0.10 % (77.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24910218 BTC (113,827.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 456,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.13 % (21,777.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,105.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14199429 BTC (77,298.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.89 CZK over 1055 transactions" + } + ] + }, + { + "id": 2332, + "type": "message", + "date": "2023-02-18T13:00:04", + "date_unixtime": "1676721604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020228 BTC for 109.61 CZK @ 541,879 CZK\nFees are 0.38498223 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (37.931529998475771816636630405 CZK)\nThe limits being 0.10 % (77.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24930446 BTC (113,937.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 541,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.57 % (21,155.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,995.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14219657 BTC (77,053.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.90 CZK over 1056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020228 BTC for 109.61 CZK @ 541,879 CZK\nFees are 0.38498223 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (37.931529998475771816636630405 CZK)\nThe limits being 0.10 % (77.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24930446 BTC (113,937.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 541,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.57 % (21,155.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,995.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14219657 BTC (77,053.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.90 CZK over 1056 transactions" + } + ] + }, + { + "id": 2333, + "type": "message", + "date": "2023-02-18T17:00:05", + "date_unixtime": "1676736005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020117 BTC for 109.61 CZK @ 544,867 CZK\nFees are 0.38498086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.692019999891516541535455551 CZK)\nThe limits being 0.10 % (77.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24950563 BTC (114,047.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.20 % (21,899.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,885.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14239774 BTC (77,587.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.90 CZK over 1057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020117 BTC for 109.61 CZK @ 544,867 CZK\nFees are 0.38498086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.692019999891516541535455551 CZK)\nThe limits being 0.10 % (77.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24950563 BTC (114,047.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.20 % (21,899.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,885.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14239774 BTC (77,587.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.90 CZK over 1057 transactions" + } + ] + }, + { + "id": 2334, + "type": "message", + "date": "2023-02-18T21:00:03", + "date_unixtime": "1676750403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020151 BTC for 109.61 CZK @ 543,960 CZK\nFees are 0.38498959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.077199997022974796390886080 CZK)\nThe limits being 0.10 % (77.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24970714 BTC (114,157.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.99 % (21,673.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,775.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14259925 BTC (77,568.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.90 CZK over 1058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020151 BTC for 109.61 CZK @ 543,960 CZK\nFees are 0.38498959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.077199997022974796390886080 CZK)\nThe limits being 0.10 % (77.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24970714 BTC (114,157.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.99 % (21,673.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,775.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14259925 BTC (77,568.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.90 CZK over 1058 transactions" + } + ] + }, + { + "id": 2335, + "type": "message", + "date": "2023-02-19T01:00:04", + "date_unixtime": "1676764804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020137 BTC for 109.61 CZK @ 544,338 CZK\nFees are 0.38498946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.990419999683780453668157872 CZK)\nThe limits being 0.10 % (77.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.24990851 BTC (114,267.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.05 % (21,767.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,665.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14280062 BTC (77,731.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.90 CZK over 1059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020137 BTC for 109.61 CZK @ 544,338 CZK\nFees are 0.38498946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (48.990419999683780453668157872 CZK)\nThe limits being 0.10 % (77.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.24990851 BTC (114,267.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.05 % (21,767.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,665.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14280062 BTC (77,731.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.90 CZK over 1059 transactions" + } + ] + }, + { + "id": 2336, + "type": "message", + "date": "2023-02-19T05:00:04", + "date_unixtime": "1676779204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020098 BTC for 109.61 CZK @ 545,402 CZK\nFees are 0.38499491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.816079998242790694307410381 CZK)\nThe limits being 0.10 % (77.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25010949 BTC (114,377.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.26 % (22,032.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,555.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14300160 BTC (77,993.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.90 CZK over 1060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020098 BTC for 109.61 CZK @ 545,402 CZK\nFees are 0.38499491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.816079998242790694307410381 CZK)\nThe limits being 0.10 % (77.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25010949 BTC (114,377.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.26 % (22,032.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,555.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14300160 BTC (77,993.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.90 CZK over 1060 transactions" + } + ] + }, + { + "id": 2337, + "type": "message", + "date": "2023-02-19T09:00:06", + "date_unixtime": "1676793606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020176 BTC for 109.61 CZK @ 543,288 CZK\nFees are 0.38499102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.298639999395454529290228056 CZK)\nThe limits being 0.10 % (77.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25031125 BTC (114,487.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.78 % (21,503.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,445.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14320336 BTC (77,800.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.91 CZK over 1061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020176 BTC for 109.61 CZK @ 543,288 CZK\nFees are 0.38499102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.298639999395454529290228056 CZK)\nThe limits being 0.10 % (77.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25031125 BTC (114,487.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.78 % (21,503.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,445.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14320336 BTC (77,800.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.91 CZK over 1061 transactions" + } + ] + }, + { + "id": 2338, + "type": "message", + "date": "2023-02-19T13:00:04", + "date_unixtime": "1676808004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020110 BTC for 109.62 CZK @ 545,078 CZK\nFees are 0.38499594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (10.901559999970268158907771086 CZK)\nThe limits being 0.10 % (78.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25051235 BTC (114,597.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.16 % (21,951.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,335.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14340446 BTC (78,166.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.91 CZK over 1062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020110 BTC for 109.62 CZK @ 545,078 CZK\nFees are 0.38499594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (10.901559999970268158907771086 CZK)\nThe limits being 0.10 % (78.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25051235 BTC (114,597.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.16 % (21,951.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,335.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14340446 BTC (78,166.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.91 CZK over 1062 transactions" + } + ] + }, + { + "id": 2339, + "type": "message", + "date": "2023-02-19T17:00:04", + "date_unixtime": "1676822404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019914 BTC for 109.62 CZK @ 550,445 CZK\nFees are 0.38499745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.531149999807342974891685469 CZK)\nThe limits being 0.10 % (79.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25071149 BTC (114,707.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 550,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.31 % (23,295.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,225.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14360360 BTC (79,045.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.91 CZK over 1063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019914 BTC for 109.62 CZK @ 550,445 CZK\nFees are 0.38499745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.531149999807342974891685469 CZK)\nThe limits being 0.10 % (79.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25071149 BTC (114,707.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 550,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.31 % (23,295.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,225.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14360360 BTC (79,045.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.91 CZK over 1063 transactions" + } + ] + }, + { + "id": 2340, + "type": "message", + "date": "2023-02-19T21:00:04", + "date_unixtime": "1676836804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020214 BTC for 109.61 CZK @ 542,257 CZK\nFees are 0.38498415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (37.957989998298721862419889937 CZK)\nThe limits being 0.10 % (77.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25091363 BTC (114,817.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 542,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.50 % (21,242.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,115.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14380574 BTC (77,979.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.91 CZK over 1064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020214 BTC for 109.61 CZK @ 542,257 CZK\nFees are 0.38498415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (37.957989998298721862419889937 CZK)\nThe limits being 0.10 % (77.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25091363 BTC (114,817.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 542,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.50 % (21,242.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,115.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14380574 BTC (77,979.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.91 CZK over 1064 transactions" + } + ] + }, + { + "id": 2341, + "type": "message", + "date": "2023-02-20T01:00:04", + "date_unixtime": "1676851204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020406 BTC for 109.62 CZK @ 537,174 CZK\nFees are 0.38499784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.973919999007687540340162952 CZK)\nThe limits being 0.10 % (77.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25111769 BTC (114,927.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 537,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.37 % (19,966.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,005.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14400980 BTC (77,358.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.91 CZK over 1065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020406 BTC for 109.62 CZK @ 537,174 CZK\nFees are 0.38499784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (42.973919999007687540340162952 CZK)\nThe limits being 0.10 % (77.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25111769 BTC (114,927.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 537,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.37 % (19,966.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,005.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14400980 BTC (77,358.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.91 CZK over 1065 transactions" + } + ] + }, + { + "id": 2342, + "type": "message", + "date": "2023-02-20T05:00:05", + "date_unixtime": "1676865605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020289 BTC for 109.62 CZK @ 540,271 CZK\nFees are 0.38499733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.610839999771119972108070764 CZK)\nThe limits being 0.10 % (77.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25132058 BTC (115,037.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 540,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.03 % (20,743.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,895.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14421269 BTC (77,913.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020289 BTC for 109.62 CZK @ 540,271 CZK\nFees are 0.38499733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.610839999771119972108070764 CZK)\nThe limits being 0.10 % (77.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25132058 BTC (115,037.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 540,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.03 % (20,743.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,895.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14421269 BTC (77,913.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1066 transactions" + } + ] + }, + { + "id": 2343, + "type": "message", + "date": "2023-02-20T09:00:04", + "date_unixtime": "1676880004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020170 BTC for 109.62 CZK @ 543,458 CZK\nFees are 0.38499696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.738319998992124490411472587 CZK)\nThe limits being 0.10 % (78.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25152228 BTC (115,147.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 543,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.71 % (21,544.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,785.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14441439 BTC (78,483.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020170 BTC for 109.62 CZK @ 543,458 CZK\nFees are 0.38499696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.738319998992124490411472587 CZK)\nThe limits being 0.10 % (78.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25152228 BTC (115,147.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 543,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.71 % (21,544.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,785.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14441439 BTC (78,483.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1067 transactions" + } + ] + }, + { + "id": 2344, + "type": "message", + "date": "2023-02-20T13:00:04", + "date_unixtime": "1676894404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019831 BTC for 109.61 CZK @ 552,733 CZK\nFees are 0.38498644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.109319999134691129581586228 CZK)\nThe limits being 0.10 % (79.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25172059 BTC (115,257.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 552,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.72 % (23,876.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,675.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14461270 BTC (79,932.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019831 BTC for 109.61 CZK @ 552,733 CZK\nFees are 0.38498644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (22.109319999134691129581586228 CZK)\nThe limits being 0.10 % (79.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25172059 BTC (115,257.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 552,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.72 % (23,876.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,675.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14461270 BTC (79,932.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1068 transactions" + } + ] + }, + { + "id": 2345, + "type": "message", + "date": "2023-02-20T17:00:04", + "date_unixtime": "1676908804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019791 BTC for 109.61 CZK @ 553,858 CZK\nFees are 0.38499190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.308639996483431228535505448 CZK)\nThe limits being 0.10 % (80.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25191850 BTC (115,367.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 457,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 553,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.94 % (24,159.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,565.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14481061 BTC (80,204.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019791 BTC for 109.61 CZK @ 553,858 CZK\nFees are 0.38499190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.308639996483431228535505448 CZK)\nThe limits being 0.10 % (80.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25191850 BTC (115,367.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 457,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 553,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.94 % (24,159.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,565.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14481061 BTC (80,204.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1069 transactions" + } + ] + }, + { + "id": 2346, + "type": "message", + "date": "2023-02-20T21:00:03", + "date_unixtime": "1676923203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019867 BTC for 109.62 CZK @ 551,750 CZK\nFees are 0.38499940 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.692499997930934285494803525 CZK)\nThe limits being 0.10 % (80.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25211717 BTC (115,477.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.46 % (23,628.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,455.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14500928 BTC (80,008.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019867 BTC for 109.62 CZK @ 551,750 CZK\nFees are 0.38499940 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.692499997930934285494803525 CZK)\nThe limits being 0.10 % (80.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25211717 BTC (115,477.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.46 % (23,628.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,455.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14500928 BTC (80,008.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1070 transactions" + } + ] + }, + { + "id": 2347, + "type": "message", + "date": "2023-02-21T01:00:06", + "date_unixtime": "1676937606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019874 BTC for 109.61 CZK @ 551,547 CZK\nFees are 0.38499335 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.670169995736468099801043537 CZK)\nThe limits being 0.10 % (80.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25231591 BTC (115,587.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.40 % (23,576.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,345.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14520802 BTC (80,089.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019874 BTC for 109.61 CZK @ 551,547 CZK\nFees are 0.38499335 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (60.670169995736468099801043537 CZK)\nThe limits being 0.10 % (80.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25231591 BTC (115,587.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.40 % (23,576.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,345.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14520802 BTC (80,089.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1071 transactions" + } + ] + }, + { + "id": 2348, + "type": "message", + "date": "2023-02-21T05:00:03", + "date_unixtime": "1676952003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019782 BTC for 109.61 CZK @ 554,109 CZK\nFees are 0.38499122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.410899995803787945305373162 CZK)\nThe limits being 0.10 % (80.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25251373 BTC (115,697.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.94 % (24,222.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,235.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14540584 BTC (80,570.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.93 CZK over 1072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019782 BTC for 109.61 CZK @ 554,109 CZK\nFees are 0.38499122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (55.410899995803787945305373162 CZK)\nThe limits being 0.10 % (80.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25251373 BTC (115,697.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.94 % (24,222.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,235.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14540584 BTC (80,570.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.93 CZK over 1072 transactions" + } + ] + }, + { + "id": 2349, + "type": "message", + "date": "2023-02-21T09:00:03", + "date_unixtime": "1676966403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019721 BTC for 109.61 CZK @ 555,809 CZK\nFees are 0.38498156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.348539998449218617653485860 CZK)\nThe limits being 0.10 % (80.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25271094 BTC (115,807.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.29 % (24,651.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,125.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14560305 BTC (80,927.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.93 CZK over 1073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019721 BTC for 109.61 CZK @ 555,809 CZK\nFees are 0.38498156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (33.348539998449218617653485860 CZK)\nThe limits being 0.10 % (80.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25271094 BTC (115,807.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.29 % (24,651.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,125.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14560305 BTC (80,927.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.93 CZK over 1073 transactions" + } + ] + }, + { + "id": 2350, + "type": "message", + "date": "2023-02-21T13:00:04", + "date_unixtime": "1676980804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020038 BTC for 109.62 CZK @ 547,040 CZK\nFees are 0.38499836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.292799998886022884372208997 CZK)\nThe limits being 0.10 % (79.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25291132 BTC (115,917.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 547,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.35 % (22,435.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,015.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14580343 BTC (79,760.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.93 CZK over 1074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020038 BTC for 109.62 CZK @ 547,040 CZK\nFees are 0.38499836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.292799998886022884372208997 CZK)\nThe limits being 0.10 % (79.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25291132 BTC (115,917.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 547,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.35 % (22,435.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,015.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14580343 BTC (79,760.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.93 CZK over 1074 transactions" + } + ] + }, + { + "id": 2351, + "type": "message", + "date": "2023-02-21T17:00:04", + "date_unixtime": "1676995204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020091 BTC for 109.62 CZK @ 545,593 CZK\nFees are 0.38499560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.191509998713625797836584945 CZK)\nThe limits being 0.10 % (79.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25311223 BTC (116,027.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.02 % (22,068.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,905.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14600434 BTC (79,658.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.93 CZK over 1075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020091 BTC for 109.62 CZK @ 545,593 CZK\nFees are 0.38499560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (38.191509998713625797836584945 CZK)\nThe limits being 0.10 % (79.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25311223 BTC (116,027.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.02 % (22,068.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,905.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14600434 BTC (79,658.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.93 CZK over 1075 transactions" + } + ] + }, + { + "id": 2352, + "type": "message", + "date": "2023-02-21T21:00:03", + "date_unixtime": "1677009603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019986 BTC for 109.61 CZK @ 548,451 CZK\nFees are 0.38498972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.907059997304540682214470906 CZK)\nThe limits being 0.10 % (80.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25331209 BTC (116,137.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 548,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.62 % (22,791.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,795.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14620420 BTC (80,185.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.93 CZK over 1076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019986 BTC for 109.61 CZK @ 548,451 CZK\nFees are 0.38498972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.907059997304540682214470906 CZK)\nThe limits being 0.10 % (80.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25331209 BTC (116,137.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 548,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.62 % (22,791.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,795.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14620420 BTC (80,185.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.93 CZK over 1076 transactions" + } + ] + }, + { + "id": 2353, + "type": "message", + "date": "2023-02-22T01:00:04", + "date_unixtime": "1677024004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020147 BTC for 109.61 CZK @ 544,062 CZK\nFees are 0.38498535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.524959996442688343317374644 CZK)\nThe limits being 0.10 % (79.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25351356 BTC (116,247.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.65 % (21,679.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,685.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14640567 BTC (79,653.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.94 CZK over 1077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020147 BTC for 109.61 CZK @ 544,062 CZK\nFees are 0.38498535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (43.524959996442688343317374644 CZK)\nThe limits being 0.10 % (79.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25351356 BTC (116,247.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.65 % (21,679.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,685.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14640567 BTC (79,653.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.94 CZK over 1077 transactions" + } + ] + }, + { + "id": 2354, + "type": "message", + "date": "2023-02-22T05:00:04", + "date_unixtime": "1677038404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020336 BTC for 109.61 CZK @ 539,017 CZK\nFees are 0.38499352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (26.950850000019600948215470872 CZK)\nThe limits being 0.10 % (79.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25371692 BTC (116,357.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 539,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.53 % (20,400.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,575.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14660903 BTC (79,024.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.94 CZK over 1078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020336 BTC for 109.61 CZK @ 539,017 CZK\nFees are 0.38499352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (26.950850000019600948215470872 CZK)\nThe limits being 0.10 % (79.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25371692 BTC (116,357.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 539,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.53 % (20,400.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,575.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14660903 BTC (79,024.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.94 CZK over 1078 transactions" + } + ] + }, + { + "id": 2355, + "type": "message", + "date": "2023-02-22T09:00:03", + "date_unixtime": "1677052803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020441 BTC for 109.61 CZK @ 536,237 CZK\nFees are 0.38498547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (42.898959996842907365437153126 CZK)\nThe limits being 0.10 % (78.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25392133 BTC (116,467.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 536,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.91 % (19,694.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,465.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14681344 BTC (78,726.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.94 CZK over 1079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020441 BTC for 109.61 CZK @ 536,237 CZK\nFees are 0.38498547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (42.898959996842907365437153126 CZK)\nThe limits being 0.10 % (78.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25392133 BTC (116,467.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 536,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.91 % (19,694.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,465.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14681344 BTC (78,726.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.94 CZK over 1079 transactions" + } + ] + }, + { + "id": 2356, + "type": "message", + "date": "2023-02-22T13:00:04", + "date_unixtime": "1677067204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020326 BTC for 109.61 CZK @ 539,265 CZK\nFees are 0.38498125 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (53.926499998210533525262192384 CZK)\nThe limits being 0.10 % (79.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25412459 BTC (116,577.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 539,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.55 % (20,463.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,355.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14701670 BTC (79,280.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.94 CZK over 1080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020326 BTC for 109.61 CZK @ 539,265 CZK\nFees are 0.38498125 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (53.926499998210533525262192384 CZK)\nThe limits being 0.10 % (79.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25412459 BTC (116,577.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 539,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.55 % (20,463.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,355.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14701670 BTC (79,280.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.94 CZK over 1080 transactions" + } + ] + }, + { + "id": 2357, + "type": "message", + "date": "2023-02-22T17:00:06", + "date_unixtime": "1677081606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020713 BTC for 109.61 CZK @ 529,192 CZK\nFees are 0.38498313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (52.919199996940173978532289499 CZK)\nThe limits being 0.10 % (77.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25433172 BTC (116,687.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 529,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.34 % (17,902.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,245.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14722383 BTC (77,909.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.94 CZK over 1081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020713 BTC for 109.61 CZK @ 529,192 CZK\nFees are 0.38498313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (52.919199996940173978532289499 CZK)\nThe limits being 0.10 % (77.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25433172 BTC (116,687.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 529,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.34 % (17,902.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,245.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14722383 BTC (77,909.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.94 CZK over 1081 transactions" + } + ] + }, + { + "id": 2358, + "type": "message", + "date": "2023-02-22T21:00:03", + "date_unixtime": "1677096003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020572 BTC for 109.62 CZK @ 532,836 CZK\nFees are 0.38499536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (53.283599996744817211313969065 CZK)\nThe limits being 0.10 % (78.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25453744 BTC (116,797.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 532,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.12 % (18,829.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,135.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14742955 BTC (78,555.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.95 CZK over 1082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020572 BTC for 109.62 CZK @ 532,836 CZK\nFees are 0.38499536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (53.283599996744817211313969065 CZK)\nThe limits being 0.10 % (78.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25453744 BTC (116,797.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 532,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.12 % (18,829.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,135.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14742955 BTC (78,555.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.95 CZK over 1082 transactions" + } + ] + }, + { + "id": 2359, + "type": "message", + "date": "2023-02-23T01:00:03", + "date_unixtime": "1677110403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020268 BTC for 109.61 CZK @ 540,817 CZK\nFees are 0.38498752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.081699998298829565240820342 CZK)\nThe limits being 0.10 % (79.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25474012 BTC (116,907.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 540,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.84 % (20,860.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,025.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14763223 BTC (79,842.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.95 CZK over 1083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020268 BTC for 109.61 CZK @ 540,817 CZK\nFees are 0.38498752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.081699998298829565240820342 CZK)\nThe limits being 0.10 % (79.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25474012 BTC (116,907.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 540,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.84 % (20,860.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,025.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14763223 BTC (79,842.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.95 CZK over 1083 transactions" + } + ] + }, + { + "id": 2360, + "type": "message", + "date": "2023-02-23T05:00:04", + "date_unixtime": "1677124804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020076 BTC for 109.61 CZK @ 545,982 CZK\nFees are 0.38498245 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.758919999368617489712485679 CZK)\nThe limits being 0.10 % (80.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25494088 BTC (117,017.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 458,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 545,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.95 % (22,175.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 915.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14783299 BTC (80,714.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.95 CZK over 1084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020076 BTC for 109.61 CZK @ 545,982 CZK\nFees are 0.38498245 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.758919999368617489712485679 CZK)\nThe limits being 0.10 % (80.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25494088 BTC (117,017.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 458,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 545,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.95 % (22,175.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 915.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14783299 BTC (80,714.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.95 CZK over 1084 transactions" + } + ] + }, + { + "id": 2361, + "type": "message", + "date": "2023-02-23T09:00:04", + "date_unixtime": "1677139204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020120 BTC for 109.62 CZK @ 544,810 CZK\nFees are 0.38499800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.344299999702829361647751755 CZK)\nThe limits being 0.10 % (80.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25514208 BTC (117,127.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 544,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.68 % (21,876.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 805.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14803419 BTC (80,650.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.95 CZK over 1085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020120 BTC for 109.62 CZK @ 544,810 CZK\nFees are 0.38499800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (16.344299999702829361647751755 CZK)\nThe limits being 0.10 % (80.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25514208 BTC (117,127.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 544,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.68 % (21,876.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 805.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14803419 BTC (80,650.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.95 CZK over 1085 transactions" + } + ] + }, + { + "id": 2362, + "type": "message", + "date": "2023-02-23T13:00:05", + "date_unixtime": "1677153605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020593 BTC for 109.62 CZK @ 532,299 CZK\nFees are 0.38499997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (58.552889996941941973548560229 CZK)\nThe limits being 0.10 % (78.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25534801 BTC (117,237.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 532,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.94 % (18,684.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 695.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14824012 BTC (78,908.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.95 CZK over 1086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020593 BTC for 109.62 CZK @ 532,299 CZK\nFees are 0.38499997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (58.552889996941941973548560229 CZK)\nThe limits being 0.10 % (78.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25534801 BTC (117,237.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 532,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.94 % (18,684.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 695.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14824012 BTC (78,908.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.95 CZK over 1086 transactions" + } + ] + }, + { + "id": 2363, + "type": "message", + "date": "2023-02-23T17:00:04", + "date_unixtime": "1677168004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020442 BTC for 109.61 CZK @ 536,215 CZK\nFees are 0.38498851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (58.983649996755802397313346154 CZK)\nThe limits being 0.10 % (79.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25555243 BTC (117,347.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 536,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.77 % (19,683.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 585.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14844454 BTC (79,598.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020442 BTC for 109.61 CZK @ 536,215 CZK\nFees are 0.38498851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (58.983649996755802397313346154 CZK)\nThe limits being 0.10 % (79.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25555243 BTC (117,347.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 536,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.77 % (19,683.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 585.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14844454 BTC (79,598.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1087 transactions" + } + ] + }, + { + "id": 2364, + "type": "message", + "date": "2023-02-23T21:00:04", + "date_unixtime": "1677182404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020430 BTC for 109.61 CZK @ 536,537 CZK\nFees are 0.38499356 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (59.019069999007389945274749342 CZK)\nThe limits being 0.10 % (79.76 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25575673 BTC (117,457.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 536,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.83 % (19,765.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 475.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14864884 BTC (79,755.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020430 BTC for 109.61 CZK @ 536,537 CZK\nFees are 0.38499356 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (59.019069999007389945274749342 CZK)\nThe limits being 0.10 % (79.76 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25575673 BTC (117,457.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 536,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.83 % (19,765.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 475.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14864884 BTC (79,755.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1088 transactions" + } + ] + }, + { + "id": 2365, + "type": "message", + "date": "2023-02-24T01:00:05", + "date_unixtime": "1677196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020472 BTC for 109.62 CZK @ 535,443 CZK\nFees are 0.38499841 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (64.253159995116739711128284297 CZK)\nThe limits being 0.10 % (79.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25596145 BTC (117,567.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 535,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.57 % (19,485.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 365.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14885356 BTC (79,702.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020472 BTC for 109.62 CZK @ 535,443 CZK\nFees are 0.38499841 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (64.253159995116739711128284297 CZK)\nThe limits being 0.10 % (79.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25596145 BTC (117,567.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 535,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.57 % (19,485.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 365.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14885356 BTC (79,702.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1089 transactions" + } + ] + }, + { + "id": 2366, + "type": "message", + "date": "2023-02-24T05:00:04", + "date_unixtime": "1677211204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020456 BTC for 109.62 CZK @ 535,858 CZK\nFees are 0.38499568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (53.585799998207291297042283956 CZK)\nThe limits being 0.10 % (79.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25616601 BTC (117,677.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 535,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.65 % (19,591.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 255.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14905812 BTC (79,873.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020456 BTC for 109.62 CZK @ 535,858 CZK\nFees are 0.38499568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (53.585799998207291297042283956 CZK)\nThe limits being 0.10 % (79.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25616601 BTC (117,677.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 535,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.65 % (19,591.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 255.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14905812 BTC (79,873.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1090 transactions" + } + ] + }, + { + "id": 2367, + "type": "message", + "date": "2023-02-24T09:00:04", + "date_unixtime": "1677225604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020546 BTC for 109.62 CZK @ 533,513 CZK\nFees are 0.38499732 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.340519999334559160721956749 CZK)\nThe limits being 0.10 % (79.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25637147 BTC (117,787.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 533,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.12 % (18,990.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 145.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14926358 BTC (79,634.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020546 BTC for 109.62 CZK @ 533,513 CZK\nFees are 0.38499732 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (21.340519999334559160721956749 CZK)\nThe limits being 0.10 % (79.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25637147 BTC (117,787.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 533,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.12 % (18,990.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 145.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14926358 BTC (79,634.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1091 transactions" + } + ] + }, + { + "id": 2368, + "type": "message", + "date": "2023-02-24T13:00:05", + "date_unixtime": "1677240005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020493 BTC for 109.61 CZK @ 534,886 CZK\nFees are 0.38499243 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.093159997686329438241225246 CZK)\nThe limits being 0.10 % (79.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25657640 BTC (117,897.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 534,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.41 % (19,341.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 35.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14946851 BTC (79,948.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020493 BTC for 109.61 CZK @ 534,886 CZK\nFees are 0.38499243 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (32.093159997686329438241225246 CZK)\nThe limits being 0.10 % (79.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25657640 BTC (117,897.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 534,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.41 % (19,341.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 35.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14946851 BTC (79,948.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1092 transactions" + } + ] + }, + { + "id": 2369, + "type": "message", + "date": "2023-02-24T17:00:00", + "date_unixtime": "1677254400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2370, + "type": "message", + "date": "2023-02-24T21:00:00", + "date_unixtime": "1677268800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2371, + "type": "message", + "date": "2023-02-25T01:00:00", + "date_unixtime": "1677283200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2372, + "type": "message", + "date": "2023-02-25T05:00:00", + "date_unixtime": "1677297600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2373, + "type": "message", + "date": "2023-02-25T09:00:00", + "date_unixtime": "1677312000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2374, + "type": "message", + "date": "2023-02-25T13:00:00", + "date_unixtime": "1677326400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2375, + "type": "message", + "date": "2023-02-25T17:00:00", + "date_unixtime": "1677340800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2376, + "type": "message", + "date": "2023-02-25T21:00:00", + "date_unixtime": "1677355200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2377, + "type": "message", + "date": "2023-02-26T01:00:00", + "date_unixtime": "1677369600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2378, + "type": "message", + "date": "2023-02-26T05:00:00", + "date_unixtime": "1677384000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2379, + "type": "message", + "date": "2023-02-26T09:00:00", + "date_unixtime": "1677398400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2380, + "type": "message", + "date": "2023-02-26T13:00:00", + "date_unixtime": "1677412800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2381, + "type": "message", + "date": "2023-02-26T17:00:00", + "date_unixtime": "1677427200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2382, + "type": "message", + "date": "2023-02-26T21:00:00", + "date_unixtime": "1677441600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2383, + "type": "message", + "date": "2023-02-27T01:00:00", + "date_unixtime": "1677456000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2384, + "type": "message", + "date": "2023-02-27T05:00:00", + "date_unixtime": "1677470400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2385, + "type": "message", + "date": "2023-02-27T09:00:00", + "date_unixtime": "1677484800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2386, + "type": "message", + "date": "2023-02-27T13:00:00", + "date_unixtime": "1677499200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (35.53114969 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2387, + "type": "message", + "date": "2023-02-27T17:00:04", + "date_unixtime": "1677513604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020827 BTC for 109.61 CZK @ 526,297 CZK\nFees are 0.38498431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (68.418609995854285293162604242 CZK)\nThe limits being 0.10 % (78.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25678467 BTC (118,007.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 526,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.52 % (17,137.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,925.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14967678 BTC (78,774.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.97 CZK over 1093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020827 BTC for 109.61 CZK @ 526,297 CZK\nFees are 0.38498431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (68.418609995854285293162604242 CZK)\nThe limits being 0.10 % (78.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25678467 BTC (118,007.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 526,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.52 % (17,137.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,925.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14967678 BTC (78,774.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.97 CZK over 1093 transactions" + } + ] + }, + { + "id": 2388, + "type": "message", + "date": "2023-02-27T21:00:04", + "date_unixtime": "1677528004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021090 BTC for 109.62 CZK @ 519,752 CZK\nFees are 0.38499773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.16031999334713519278069667 CZK)\nThe limits being 0.10 % (77.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25699557 BTC (118,117.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 519,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.09 % (15,456.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,815.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.14988768 BTC (77,904.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.97 CZK over 1094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021090 BTC for 109.62 CZK @ 519,752 CZK\nFees are 0.38499773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.16031999334713519278069667 CZK)\nThe limits being 0.10 % (77.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25699557 BTC (118,117.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 519,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.09 % (15,456.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,815.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.14988768 BTC (77,904.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.97 CZK over 1094 transactions" + } + ] + }, + { + "id": 2389, + "type": "message", + "date": "2023-02-28T01:00:04", + "date_unixtime": "1677542404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020905 BTC for 109.61 CZK @ 524,347 CZK\nFees are 0.38499437 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (99.62592999889051319663645550 CZK)\nThe limits being 0.10 % (78.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25720462 BTC (118,227.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 524,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.07 % (16,637.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,705.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15009673 BTC (78,702.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.97 CZK over 1095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020905 BTC for 109.61 CZK @ 524,347 CZK\nFees are 0.38499437 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (99.62592999889051319663645550 CZK)\nThe limits being 0.10 % (78.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25720462 BTC (118,227.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 524,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.07 % (16,637.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,705.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15009673 BTC (78,702.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.97 CZK over 1095 transactions" + } + ] + }, + { + "id": 2390, + "type": "message", + "date": "2023-02-28T05:00:04", + "date_unixtime": "1677556804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020900 BTC for 109.61 CZK @ 524,470 CZK\nFees are 0.38499258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (99.64929999547039905784300403 CZK)\nThe limits being 0.10 % (78.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25741362 BTC (118,337.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 524,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.09 % (16,668.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,595.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15030573 BTC (78,830.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.97 CZK over 1096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020900 BTC for 109.61 CZK @ 524,470 CZK\nFees are 0.38499258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (99.64929999547039905784300403 CZK)\nThe limits being 0.10 % (78.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25741362 BTC (118,337.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 524,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.09 % (16,668.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,595.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15030573 BTC (78,830.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.97 CZK over 1096 transactions" + } + ] + }, + { + "id": 2391, + "type": "message", + "date": "2023-02-28T09:00:03", + "date_unixtime": "1677571203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021107 BTC for 109.61 CZK @ 519,326 CZK\nFees are 0.38499226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (62.319119996674358275433811764 CZK)\nThe limits being 0.10 % (78.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25762469 BTC (118,447.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 519,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.95 % (15,343.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,485.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15051680 BTC (78,167.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.97 CZK over 1097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021107 BTC for 109.61 CZK @ 519,326 CZK\nFees are 0.38499226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (62.319119996674358275433811764 CZK)\nThe limits being 0.10 % (78.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25762469 BTC (118,447.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 519,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.95 % (15,343.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,485.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15051680 BTC (78,167.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.97 CZK over 1097 transactions" + } + ] + }, + { + "id": 2392, + "type": "message", + "date": "2023-02-28T13:00:03", + "date_unixtime": "1677585603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021066 BTC for 109.61 CZK @ 520,331 CZK\nFees are 0.38498801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (41.626479996363246060226594178 CZK)\nThe limits being 0.10 % (78.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25783535 BTC (118,557.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,818 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 520,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.16 % (15,602.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,375.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15072746 BTC (78,428.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021066 BTC for 109.61 CZK @ 520,331 CZK\nFees are 0.38498801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (41.626479996363246060226594178 CZK)\nThe limits being 0.10 % (78.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25783535 BTC (118,557.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,818 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 520,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.16 % (15,602.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,375.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15072746 BTC (78,428.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1098 transactions" + } + ] + }, + { + "id": 2393, + "type": "message", + "date": "2023-02-28T17:00:03", + "date_unixtime": "1677600003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021019 BTC for 109.61 CZK @ 521,498 CZK\nFees are 0.38499059 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.43967999531967814348244439 CZK)\nThe limits being 0.10 % (78.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25804554 BTC (118,667.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 521,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.40 % (15,902.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,265.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15093765 BTC (78,713.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021019 BTC for 109.61 CZK @ 521,498 CZK\nFees are 0.38499059 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.43967999531967814348244439 CZK)\nThe limits being 0.10 % (78.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25804554 BTC (118,667.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 521,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.40 % (15,902.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,265.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15093765 BTC (78,713.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1099 transactions" + } + ] + }, + { + "id": 2394, + "type": "message", + "date": "2023-02-28T21:00:04", + "date_unixtime": "1677614404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021164 BTC for 109.61 CZK @ 517,919 CZK\nFees are 0.38498607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (88.04622999995197304614344973 CZK)\nThe limits being 0.10 % (78.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25825718 BTC (118,777.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.61 % (14,978.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,155.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15114929 BTC (78,283.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021164 BTC for 109.61 CZK @ 517,919 CZK\nFees are 0.38498607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (88.04622999995197304614344973 CZK)\nThe limits being 0.10 % (78.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25825718 BTC (118,777.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.61 % (14,978.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,155.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15114929 BTC (78,283.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1100 transactions" + } + ] + }, + { + "id": 2395, + "type": "message", + "date": "2023-03-01T01:00:04", + "date_unixtime": "1677628804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021266 BTC for 109.61 CZK @ 515,446 CZK\nFees are 0.38499439 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (97.93473999798785694628191904 CZK)\nThe limits being 0.10 % (78.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25846984 BTC (118,887.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 459,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 515,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.06 % (14,339.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,045.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15136195 BTC (78,018.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021266 BTC for 109.61 CZK @ 515,446 CZK\nFees are 0.38499439 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (97.93473999798785694628191904 CZK)\nThe limits being 0.10 % (78.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25846984 BTC (118,887.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 459,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 515,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.06 % (14,339.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,045.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15136195 BTC (78,018.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1101 transactions" + } + ] + }, + { + "id": 2396, + "type": "message", + "date": "2023-03-01T05:00:04", + "date_unixtime": "1677643204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021041 BTC for 109.61 CZK @ 520,941 CZK\nFees are 0.38498192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (98.97878999519930327026359692 CZK)\nThe limits being 0.10 % (78.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25868025 BTC (118,997.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 520,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.24 % (15,759.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,935.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15157236 BTC (78,960.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021041 BTC for 109.61 CZK @ 520,941 CZK\nFees are 0.38498192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (98.97878999519930327026359692 CZK)\nThe limits being 0.10 % (78.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25868025 BTC (118,997.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 520,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.24 % (15,759.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,935.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15157236 BTC (78,960.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1102 transactions" + } + ] + }, + { + "id": 2397, + "type": "message", + "date": "2023-03-01T09:00:05", + "date_unixtime": "1677657605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020882 BTC for 109.62 CZK @ 524,929 CZK\nFees are 0.38499765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (78.739349994108829039936698903 CZK)\nThe limits being 0.10 % (79.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25888907 BTC (119,107.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 524,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.10 % (16,791.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,825.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15178118 BTC (79,674.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020882 BTC for 109.62 CZK @ 524,929 CZK\nFees are 0.38499765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (78.739349994108829039936698903 CZK)\nThe limits being 0.10 % (79.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25888907 BTC (119,107.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 524,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.10 % (16,791.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,825.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15178118 BTC (79,674.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1103 transactions" + } + ] + }, + { + "id": 2398, + "type": "message", + "date": "2023-03-01T13:00:04", + "date_unixtime": "1677672004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00020990 BTC for 109.61 CZK @ 522,209 CZK\nFees are 0.38498358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (78.331349998682552941788067632 CZK)\nThe limits being 0.10 % (79.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25909897 BTC (119,217.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 522,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.49 % (16,086.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,715.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15199108 BTC (79,371.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.99 CZK over 1104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00020990 BTC for 109.61 CZK @ 522,209 CZK\nFees are 0.38498358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (78.331349998682552941788067632 CZK)\nThe limits being 0.10 % (79.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25909897 BTC (119,217.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 522,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.49 % (16,086.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,715.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15199108 BTC (79,371.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.99 CZK over 1104 transactions" + } + ] + }, + { + "id": 2399, + "type": "message", + "date": "2023-03-01T17:00:04", + "date_unixtime": "1677686404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021054 BTC for 109.62 CZK @ 520,639 CZK\nFees are 0.38499646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (36.444729999102126124631993588 CZK)\nThe limits being 0.10 % (79.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25930951 BTC (119,327.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 520,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.14 % (15,679.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,605.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15220162 BTC (79,242.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.99 CZK over 1105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021054 BTC for 109.62 CZK @ 520,639 CZK\nFees are 0.38499646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (36.444729999102126124631993588 CZK)\nThe limits being 0.10 % (79.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25930951 BTC (119,327.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 520,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.14 % (15,679.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,605.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15220162 BTC (79,242.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.99 CZK over 1105 transactions" + } + ] + }, + { + "id": 2400, + "type": "message", + "date": "2023-03-01T21:00:04", + "date_unixtime": "1677700804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021339 BTC for 109.61 CZK @ 513,679 CZK\nFees are 0.38499164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (35.957529997929128176972236892 CZK)\nThe limits being 0.10 % (78.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25952290 BTC (119,437.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 513,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.62 % (13,874.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,495.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15241501 BTC (78,292.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.99 CZK over 1106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021339 BTC for 109.61 CZK @ 513,679 CZK\nFees are 0.38499164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (35.957529997929128176972236892 CZK)\nThe limits being 0.10 % (78.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25952290 BTC (119,437.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 513,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.62 % (13,874.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,495.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15241501 BTC (78,292.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.99 CZK over 1106 transactions" + } + ] + }, + { + "id": 2401, + "type": "message", + "date": "2023-03-02T01:00:04", + "date_unixtime": "1677715204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021135 BTC for 109.61 CZK @ 518,638 CZK\nFees are 0.38499227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (25.931899998927340775230860430 CZK)\nThe limits being 0.10 % (79.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25973425 BTC (119,547.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.68 % (15,160.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,385.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15262636 BTC (79,157.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.99 CZK over 1107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021135 BTC for 109.61 CZK @ 518,638 CZK\nFees are 0.38499227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (25.931899998927340775230860430 CZK)\nThe limits being 0.10 % (79.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25973425 BTC (119,547.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.68 % (15,160.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,385.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15262636 BTC (79,157.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.99 CZK over 1107 transactions" + } + ] + }, + { + "id": 2402, + "type": "message", + "date": "2023-03-02T05:00:04", + "date_unixtime": "1677729604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021210 BTC for 109.62 CZK @ 516,812 CZK\nFees are 0.38499818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (20.672479998458953305110566576 CZK)\nThe limits being 0.10 % (78.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.25994635 BTC (119,657.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 516,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.27 % (14,686.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,275.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15283846 BTC (78,988.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.99 CZK over 1108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021210 BTC for 109.62 CZK @ 516,812 CZK\nFees are 0.38499818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (20.672479998458953305110566576 CZK)\nThe limits being 0.10 % (78.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.25994635 BTC (119,657.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 516,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.27 % (14,686.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,275.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15283846 BTC (78,988.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.99 CZK over 1108 transactions" + } + ] + }, + { + "id": 2403, + "type": "message", + "date": "2023-03-02T09:00:01", + "date_unixtime": "1677744001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (405) Method Not Allowed.\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (405) Method Not Allowed.\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + } + ] + }, + { + "id": 2404, + "type": "message", + "date": "2023-03-02T13:00:04", + "date_unixtime": "1677758404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021144 BTC for 109.61 CZK @ 518,404 CZK\nFees are 0.38498244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (41.472319997677444117740763927 CZK)\nThe limits being 0.10 % (79.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26015779 BTC (119,767.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 518,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.61 % (15,099.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,165.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15304990 BTC (79,341.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021144 BTC for 109.61 CZK @ 518,404 CZK\nFees are 0.38498244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (41.472319997677444117740763927 CZK)\nThe limits being 0.10 % (79.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26015779 BTC (119,767.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 518,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.61 % (15,099.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,165.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15304990 BTC (79,341.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1109 transactions" + } + ] + }, + { + "id": 2405, + "type": "message", + "date": "2023-03-02T17:00:04", + "date_unixtime": "1677772804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021196 BTC for 109.61 CZK @ 517,138 CZK\nFees are 0.38498675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (77.570699995289180828037893037 CZK)\nThe limits being 0.10 % (79.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26036975 BTC (119,877.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 517,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.32 % (14,769.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,055.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15326186 BTC (79,257.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021196 BTC for 109.61 CZK @ 517,138 CZK\nFees are 0.38498675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (77.570699995289180828037893037 CZK)\nThe limits being 0.10 % (79.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26036975 BTC (119,877.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 517,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.32 % (14,769.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,055.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15326186 BTC (79,257.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1110 transactions" + } + ] + }, + { + "id": 2406, + "type": "message", + "date": "2023-03-02T21:00:04", + "date_unixtime": "1677787204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021088 BTC for 109.61 CZK @ 519,780 CZK\nFees are 0.38498196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.56039999795858652531012473 CZK)\nThe limits being 0.10 % (79.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26058063 BTC (119,987.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 519,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.88 % (15,457.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,945.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15347274 BTC (79,772.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021088 BTC for 109.61 CZK @ 519,780 CZK\nFees are 0.38498196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.56039999795858652531012473 CZK)\nThe limits being 0.10 % (79.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26058063 BTC (119,987.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 519,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.88 % (15,457.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,945.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15347274 BTC (79,772.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1111 transactions" + } + ] + }, + { + "id": 2407, + "type": "message", + "date": "2023-03-03T01:00:04", + "date_unixtime": "1677801604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00021100 BTC for 109.61 CZK @ 519,499 CZK\nFees are 0.38499279 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.50981999872484219922215374 CZK)\nThe limits being 0.10 % (79.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26079163 BTC (120,097.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 519,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.81 % (15,383.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,835.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15368374 BTC (79,838.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00021100 BTC for 109.61 CZK @ 519,499 CZK\nFees are 0.38499279 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.50981999872484219922215374 CZK)\nThe limits being 0.10 % (79.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26079163 BTC (120,097.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 519,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.81 % (15,383.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,835.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15368374 BTC (79,838.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1112 transactions" + } + ] + }, + { + "id": 2408, + "type": "message", + "date": "2023-03-03T05:00:04", + "date_unixtime": "1677816004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022182 BTC for 109.61 CZK @ 494,161 CZK\nFees are 0.38499456 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.89058999524565472473787421 CZK)\nThe limits being 0.10 % (76.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26101345 BTC (120,207.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.30 % (8,775.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,725.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15390556 BTC (76,054.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022182 BTC for 109.61 CZK @ 494,161 CZK\nFees are 0.38499456 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.89058999524565472473787421 CZK)\nThe limits being 0.10 % (76.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26101345 BTC (120,207.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.30 % (8,775.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,725.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15390556 BTC (76,054.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1113 transactions" + } + ] + }, + { + "id": 2409, + "type": "message", + "date": "2023-03-03T09:00:03", + "date_unixtime": "1677830403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022157 BTC for 109.62 CZK @ 494,725 CZK\nFees are 0.38499956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.99774999668871186259024497 CZK)\nThe limits being 0.10 % (76.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26123502 BTC (120,317.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.42 % (8,922.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,615.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15412713 BTC (76,250.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022157 BTC for 109.62 CZK @ 494,725 CZK\nFees are 0.38499956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (93.99774999668871186259024497 CZK)\nThe limits being 0.10 % (76.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26123502 BTC (120,317.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.42 % (8,922.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,615.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15412713 BTC (76,250.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1114 transactions" + } + ] + }, + { + "id": 2410, + "type": "message", + "date": "2023-03-03T13:00:04", + "date_unixtime": "1677844804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022106 BTC for 109.61 CZK @ 495,846 CZK\nFees are 0.38498375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (59.501519995315409907718714166 CZK)\nThe limits being 0.10 % (76.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26145608 BTC (120,427.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.65 % (9,214.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,505.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15434819 BTC (76,532.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.01 CZK over 1115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022106 BTC for 109.61 CZK @ 495,846 CZK\nFees are 0.38498375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (59.501519995315409907718714166 CZK)\nThe limits being 0.10 % (76.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26145608 BTC (120,427.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.65 % (9,214.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,505.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15434819 BTC (76,532.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.01 CZK over 1115 transactions" + } + ] + }, + { + "id": 2411, + "type": "message", + "date": "2023-03-03T17:00:04", + "date_unixtime": "1677859204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022124 BTC for 109.61 CZK @ 495,451 CZK\nFees are 0.38499029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (84.22666999437964232400483680 CZK)\nThe limits being 0.10 % (76.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26167732 BTC (120,537.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.56 % (9,110.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,395.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15456943 BTC (76,581.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.01 CZK over 1116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022124 BTC for 109.61 CZK @ 495,451 CZK\nFees are 0.38499029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (84.22666999437964232400483680 CZK)\nThe limits being 0.10 % (76.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26167732 BTC (120,537.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.56 % (9,110.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,395.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15456943 BTC (76,581.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.01 CZK over 1116 transactions" + } + ] + }, + { + "id": 2412, + "type": "message", + "date": "2023-03-03T21:00:04", + "date_unixtime": "1677873604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022166 BTC for 109.61 CZK @ 494,510 CZK\nFees are 0.38498856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (84.06669999763077716668013123 CZK)\nThe limits being 0.10 % (76.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26189898 BTC (120,647.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.35 % (8,864.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,285.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15479109 BTC (76,545.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.01 CZK over 1117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022166 BTC for 109.61 CZK @ 494,510 CZK\nFees are 0.38498856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (84.06669999763077716668013123 CZK)\nThe limits being 0.10 % (76.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26189898 BTC (120,647.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.35 % (8,864.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,285.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15479109 BTC (76,545.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.01 CZK over 1117 transactions" + } + ] + }, + { + "id": 2413, + "type": "message", + "date": "2023-03-04T01:00:04", + "date_unixtime": "1677888004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022199 BTC for 109.62 CZK @ 493,787 CZK\nFees are 0.38499801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.94378999507400031238922701 CZK)\nThe limits being 0.10 % (76.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26212097 BTC (120,757.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 493,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.18 % (8,674.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,175.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15501308 BTC (76,543.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.01 CZK over 1118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022199 BTC for 109.62 CZK @ 493,787 CZK\nFees are 0.38499801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (83.94378999507400031238922701 CZK)\nThe limits being 0.10 % (76.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26212097 BTC (120,757.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 493,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.18 % (8,674.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,175.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15501308 BTC (76,543.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.01 CZK over 1118 transactions" + } + ] + }, + { + "id": 2414, + "type": "message", + "date": "2023-03-04T05:00:04", + "date_unixtime": "1677902404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022153 BTC for 109.61 CZK @ 494,808 CZK\nFees are 0.38499464 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (74.221199995384726562254876858 CZK)\nThe limits being 0.10 % (76.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26234250 BTC (120,867.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.40 % (8,941.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,065.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15523461 BTC (76,811.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.01 CZK over 1119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022153 BTC for 109.61 CZK @ 494,808 CZK\nFees are 0.38499464 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (74.221199995384726562254876858 CZK)\nThe limits being 0.10 % (76.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26234250 BTC (120,867.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.40 % (8,941.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,065.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15523461 BTC (76,811.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.01 CZK over 1119 transactions" + } + ] + }, + { + "id": 2415, + "type": "message", + "date": "2023-03-04T09:00:04", + "date_unixtime": "1677916804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022135 BTC for 109.62 CZK @ 495,212 CZK\nFees are 0.38499590 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.473319996682044288405984519 CZK)\nThe limits being 0.10 % (76.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26256385 BTC (120,977.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.48 % (9,047.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,955.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15545596 BTC (76,983.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022135 BTC for 109.62 CZK @ 495,212 CZK\nFees are 0.38499590 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.473319996682044288405984519 CZK)\nThe limits being 0.10 % (76.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26256385 BTC (120,977.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.48 % (9,047.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,955.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15545596 BTC (76,983.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1120 transactions" + } + ] + }, + { + "id": 2416, + "type": "message", + "date": "2023-03-04T13:00:04", + "date_unixtime": "1677931204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022150 BTC for 109.61 CZK @ 494,863 CZK\nFees are 0.38498529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.794519999865032206689678676 CZK)\nThe limits being 0.10 % (77.04 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26278535 BTC (121,087.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.40 % (8,955.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,845.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15567746 BTC (77,039.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022150 BTC for 109.61 CZK @ 494,863 CZK\nFees are 0.38498529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.794519999865032206689678676 CZK)\nThe limits being 0.10 % (77.04 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26278535 BTC (121,087.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.40 % (8,955.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,845.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15567746 BTC (77,039.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1121 transactions" + } + ] + }, + { + "id": 2417, + "type": "message", + "date": "2023-03-04T17:00:04", + "date_unixtime": "1677945604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022169 BTC for 109.61 CZK @ 494,440 CZK\nFees are 0.38498616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.555199999065025309607541454 CZK)\nThe limits being 0.10 % (77.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26300704 BTC (121,197.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 494,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.30 % (8,843.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,735.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15589915 BTC (77,082.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022169 BTC for 109.61 CZK @ 494,440 CZK\nFees are 0.38498616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.555199999065025309607541454 CZK)\nThe limits being 0.10 % (77.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26300704 BTC (121,197.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 494,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.30 % (8,843.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,735.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15589915 BTC (77,082.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1122 transactions" + } + ] + }, + { + "id": 2418, + "type": "message", + "date": "2023-03-04T21:00:03", + "date_unixtime": "1677960003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022243 BTC for 109.61 CZK @ 492,796 CZK\nFees are 0.38498690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.711840000003584092819402199 CZK)\nThe limits being 0.10 % (76.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26322947 BTC (121,307.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 492,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 6.93 % (8,411.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,625.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15612158 BTC (76,936.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022243 BTC for 109.61 CZK @ 492,796 CZK\nFees are 0.38498690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.711840000003584092819402199 CZK)\nThe limits being 0.10 % (76.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26322947 BTC (121,307.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 492,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 6.93 % (8,411.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,625.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15612158 BTC (76,936.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1123 transactions" + } + ] + }, + { + "id": 2419, + "type": "message", + "date": "2023-03-05T01:00:05", + "date_unixtime": "1677974405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022144 BTC for 109.61 CZK @ 495,008 CZK\nFees are 0.38499378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.600639999884796276615660217 CZK)\nThe limits being 0.10 % (77.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26345091 BTC (121,417.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.41 % (8,992.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,515.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15634302 BTC (77,391.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022144 BTC for 109.61 CZK @ 495,008 CZK\nFees are 0.38499378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (39.600639999884796276615660217 CZK)\nThe limits being 0.10 % (77.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26345091 BTC (121,417.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.41 % (8,992.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,515.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15634302 BTC (77,391.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1124 transactions" + } + ] + }, + { + "id": 2420, + "type": "message", + "date": "2023-03-05T05:00:04", + "date_unixtime": "1677988804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022112 BTC for 109.61 CZK @ 495,724 CZK\nFees are 0.38499350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.828959998543448148556751804 CZK)\nThe limits being 0.10 % (77.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26367203 BTC (121,527.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.55 % (9,181.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,405.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15656414 BTC (77,612.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022112 BTC for 109.61 CZK @ 495,724 CZK\nFees are 0.38499350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.828959998543448148556751804 CZK)\nThe limits being 0.10 % (77.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26367203 BTC (121,527.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.55 % (9,181.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,405.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15656414 BTC (77,612.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1125 transactions" + } + ] + }, + { + "id": 2421, + "type": "message", + "date": "2023-03-05T09:00:04", + "date_unixtime": "1678003204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022117 BTC for 109.62 CZK @ 495,619 CZK\nFees are 0.38499899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.868569998674666248723580594 CZK)\nThe limits being 0.10 % (77.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26389320 BTC (121,637.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.52 % (9,153.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,295.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15678531 BTC (77,705.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022117 BTC for 109.62 CZK @ 495,619 CZK\nFees are 0.38499899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (14.868569998674666248723580594 CZK)\nThe limits being 0.10 % (77.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26389320 BTC (121,637.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.52 % (9,153.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,295.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15678531 BTC (77,705.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1126 transactions" + } + ] + }, + { + "id": 2422, + "type": "message", + "date": "2023-03-05T13:00:04", + "date_unixtime": "1678017604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022099 BTC for 109.61 CZK @ 496,013 CZK\nFees are 0.38499147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.840519999090021433422317783 CZK)\nThe limits being 0.10 % (77.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26411419 BTC (121,747.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.60 % (9,256.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,185.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15700630 BTC (77,877.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022099 BTC for 109.61 CZK @ 496,013 CZK\nFees are 0.38499147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (19.840519999090021433422317783 CZK)\nThe limits being 0.10 % (77.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26411419 BTC (121,747.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.60 % (9,256.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,185.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15700630 BTC (77,877.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1127 transactions" + } + ] + }, + { + "id": 2423, + "type": "message", + "date": "2023-03-05T17:00:03", + "date_unixtime": "1678032003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022062 BTC for 109.61 CZK @ 496,843 CZK\nFees are 0.38499002 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (74.526449993692188842992956800 CZK)\nThe limits being 0.10 % (78.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26433481 BTC (121,857.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 460,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.78 % (9,475.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,075.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15722692 BTC (78,117.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022062 BTC for 109.61 CZK @ 496,843 CZK\nFees are 0.38499002 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (74.526449993692188842992956800 CZK)\nThe limits being 0.10 % (78.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26433481 BTC (121,857.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 460,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.78 % (9,475.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,075.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15722692 BTC (78,117.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1128 transactions" + } + ] + }, + { + "id": 2424, + "type": "message", + "date": "2023-03-05T21:00:03", + "date_unixtime": "1678046403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022086 BTC for 109.62 CZK @ 496,311 CZK\nFees are 0.38499615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.631099997243190443517416472 CZK)\nThe limits being 0.10 % (78.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26455567 BTC (121,967.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.65 % (9,334.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 965.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15744778 BTC (78,143.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022086 BTC for 109.62 CZK @ 496,311 CZK\nFees are 0.38499615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.631099997243190443517416472 CZK)\nThe limits being 0.10 % (78.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26455567 BTC (121,967.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.65 % (9,334.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 965.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15744778 BTC (78,143.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1129 transactions" + } + ] + }, + { + "id": 2425, + "type": "message", + "date": "2023-03-06T01:00:04", + "date_unixtime": "1678060804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022063 BTC for 109.62 CZK @ 496,833 CZK\nFees are 0.38499973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.714969997250027387938616058 CZK)\nThe limits being 0.10 % (78.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26477630 BTC (122,077.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.76 % (9,472.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 855.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15766841 BTC (78,334.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022063 BTC for 109.62 CZK @ 496,833 CZK\nFees are 0.38499973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (44.714969997250027387938616058 CZK)\nThe limits being 0.10 % (78.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26477630 BTC (122,077.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.76 % (9,472.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 855.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15766841 BTC (78,334.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1130 transactions" + } + ] + }, + { + "id": 2426, + "type": "message", + "date": "2023-03-06T05:00:04", + "date_unixtime": "1678075204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022124 BTC for 109.61 CZK @ 495,457 CZK\nFees are 0.38499496 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.545699998477575817850324444 CZK)\nThe limits being 0.10 % (78.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26499754 BTC (122,187.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.45 % (9,107.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 745.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15788965 BTC (78,227.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022124 BTC for 109.61 CZK @ 495,457 CZK\nFees are 0.38499496 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (49.545699998477575817850324444 CZK)\nThe limits being 0.10 % (78.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26499754 BTC (122,187.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.45 % (9,107.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 745.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15788965 BTC (78,227.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1131 transactions" + } + ] + }, + { + "id": 2427, + "type": "message", + "date": "2023-03-06T09:00:04", + "date_unixtime": "1678089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022124 BTC for 109.61 CZK @ 495,451 CZK\nFees are 0.38499029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.727059998016344349648765931 CZK)\nThe limits being 0.10 % (78.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26521878 BTC (122,297.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.45 % (9,105.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 635.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15811089 BTC (78,336.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.04 CZK over 1132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022124 BTC for 109.61 CZK @ 495,451 CZK\nFees are 0.38499029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (29.727059998016344349648765931 CZK)\nThe limits being 0.10 % (78.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26521878 BTC (122,297.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.45 % (9,105.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 635.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15811089 BTC (78,336.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.04 CZK over 1132 transactions" + } + ] + }, + { + "id": 2428, + "type": "message", + "date": "2023-03-06T13:00:04", + "date_unixtime": "1678104004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022104 BTC for 109.61 CZK @ 495,895 CZK\nFees are 0.38498696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (34.712649997538474189414140628 CZK)\nThe limits being 0.10 % (78.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26543982 BTC (122,407.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.53 % (9,222.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 525.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15833193 BTC (78,516.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.04 CZK over 1133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022104 BTC for 109.61 CZK @ 495,895 CZK\nFees are 0.38498696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (34.712649997538474189414140628 CZK)\nThe limits being 0.10 % (78.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26543982 BTC (122,407.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.53 % (9,222.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 525.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15833193 BTC (78,516.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.04 CZK over 1133 transactions" + } + ] + }, + { + "id": 2429, + "type": "message", + "date": "2023-03-06T17:00:04", + "date_unixtime": "1678118404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022007 BTC for 109.61 CZK @ 498,075 CZK\nFees are 0.38498252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.788249995828432448985917400 CZK)\nThe limits being 0.10 % (78.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26565989 BTC (122,517.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 498,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 8.00 % (9,801.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 415.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15855200 BTC (78,970.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.04 CZK over 1134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022007 BTC for 109.61 CZK @ 498,075 CZK\nFees are 0.38498252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (54.788249995828432448985917400 CZK)\nThe limits being 0.10 % (78.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26565989 BTC (122,517.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 498,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 8.00 % (9,801.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 415.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15855200 BTC (78,970.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.04 CZK over 1134 transactions" + } + ] + }, + { + "id": 2430, + "type": "message", + "date": "2023-03-06T21:00:04", + "date_unixtime": "1678132804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022131 BTC for 109.61 CZK @ 495,286 CZK\nFees are 0.38498385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (99.05719999431748043206150486 CZK)\nThe limits being 0.10 % (78.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26588120 BTC (122,627.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.39 % (9,059.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 305.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15877331 BTC (78,638.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.04 CZK over 1135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022131 BTC for 109.61 CZK @ 495,286 CZK\nFees are 0.38498385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (99.05719999431748043206150486 CZK)\nThe limits being 0.10 % (78.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26588120 BTC (122,627.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.39 % (9,059.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 305.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15877331 BTC (78,638.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.04 CZK over 1135 transactions" + } + ] + }, + { + "id": 2431, + "type": "message", + "date": "2023-03-07T01:00:04", + "date_unixtime": "1678147204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022136 BTC for 109.61 CZK @ 495,176 CZK\nFees are 0.38498531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (103.98695999266391266274580349 CZK)\nThe limits being 0.10 % (78.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26610256 BTC (122,737.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 495,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.36 % (9,030.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 195.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15899467 BTC (78,730.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.04 CZK over 1136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022136 BTC for 109.61 CZK @ 495,176 CZK\nFees are 0.38498531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (103.98695999266391266274580349 CZK)\nThe limits being 0.10 % (78.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26610256 BTC (122,737.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 495,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.36 % (9,030.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 195.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15899467 BTC (78,730.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.04 CZK over 1136 transactions" + } + ] + }, + { + "id": 2432, + "type": "message", + "date": "2023-03-07T05:00:04", + "date_unixtime": "1678161604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00022091 BTC for 109.61 CZK @ 496,183 CZK\nFees are 0.38498400 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (104.19842999729546469661196901 CZK)\nThe limits being 0.10 % (79.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26632347 BTC (122,847.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 496,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 7.57 % (9,297.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 85.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15921558 BTC (79,000.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00022091 BTC for 109.61 CZK @ 496,183 CZK\nFees are 0.38498400 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (104.19842999729546469661196901 CZK)\nThe limits being 0.10 % (79.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26632347 BTC (122,847.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 496,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 7.57 % (9,297.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 85.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15921558 BTC (79,000.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1137 transactions" + } + ] + }, + { + "id": 2433, + "type": "message", + "date": "2023-03-07T09:00:00", + "date_unixtime": "1678176000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2434, + "type": "message", + "date": "2023-03-07T13:00:00", + "date_unixtime": "1678190400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2435, + "type": "message", + "date": "2023-03-07T17:00:00", + "date_unixtime": "1678204800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2436, + "type": "message", + "date": "2023-03-07T21:00:00", + "date_unixtime": "1678219200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2437, + "type": "message", + "date": "2023-03-08T01:00:01", + "date_unixtime": "1678233601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2438, + "type": "message", + "date": "2023-03-08T05:00:00", + "date_unixtime": "1678248000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2439, + "type": "message", + "date": "2023-03-08T09:00:01", + "date_unixtime": "1678262401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2440, + "type": "message", + "date": "2023-03-08T13:00:00", + "date_unixtime": "1678276800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2441, + "type": "message", + "date": "2023-03-08T17:00:00", + "date_unixtime": "1678291200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2442, + "type": "message", + "date": "2023-03-08T21:00:00", + "date_unixtime": "1678305600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2443, + "type": "message", + "date": "2023-03-09T01:00:01", + "date_unixtime": "1678320001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2444, + "type": "message", + "date": "2023-03-09T05:00:00", + "date_unixtime": "1678334400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2445, + "type": "message", + "date": "2023-03-09T09:00:00", + "date_unixtime": "1678348800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2446, + "type": "message", + "date": "2023-03-09T13:00:00", + "date_unixtime": "1678363200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2447, + "type": "message", + "date": "2023-03-09T17:00:00", + "date_unixtime": "1678377600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2448, + "type": "message", + "date": "2023-03-09T21:00:00", + "date_unixtime": "1678392000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2449, + "type": "message", + "date": "2023-03-10T01:00:00", + "date_unixtime": "1678406400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2450, + "type": "message", + "date": "2023-03-10T05:00:01", + "date_unixtime": "1678420801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2451, + "type": "message", + "date": "2023-03-10T09:00:00", + "date_unixtime": "1678435200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2452, + "type": "message", + "date": "2023-03-10T13:00:00", + "date_unixtime": "1678449600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2453, + "type": "message", + "date": "2023-03-10T17:00:00", + "date_unixtime": "1678464000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2454, + "type": "message", + "date": "2023-03-10T21:00:01", + "date_unixtime": "1678478401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2455, + "type": "message", + "date": "2023-03-11T01:00:00", + "date_unixtime": "1678492800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2456, + "type": "message", + "date": "2023-03-11T05:00:00", + "date_unixtime": "1678507200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2457, + "type": "message", + "date": "2023-03-11T09:00:00", + "date_unixtime": "1678521600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2458, + "type": "message", + "date": "2023-03-11T13:00:00", + "date_unixtime": "1678536000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2459, + "type": "message", + "date": "2023-03-11T17:00:00", + "date_unixtime": "1678550400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2460, + "type": "message", + "date": "2023-03-11T21:00:00", + "date_unixtime": "1678564800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2461, + "type": "message", + "date": "2023-03-12T01:00:00", + "date_unixtime": "1678579200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2462, + "type": "message", + "date": "2023-03-12T05:00:00", + "date_unixtime": "1678593600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2463, + "type": "message", + "date": "2023-03-12T09:00:00", + "date_unixtime": "1678608000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2464, + "type": "message", + "date": "2023-03-12T13:00:00", + "date_unixtime": "1678622400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2465, + "type": "message", + "date": "2023-03-12T17:00:00", + "date_unixtime": "1678636800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2466, + "type": "message", + "date": "2023-03-12T21:00:00", + "date_unixtime": "1678651200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2467, + "type": "message", + "date": "2023-03-13T01:00:00", + "date_unixtime": "1678665600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2468, + "type": "message", + "date": "2023-03-13T05:00:00", + "date_unixtime": "1678680000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2469, + "type": "message", + "date": "2023-03-13T09:00:00", + "date_unixtime": "1678694400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2470, + "type": "message", + "date": "2023-03-13T13:00:00", + "date_unixtime": "1678708800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2471, + "type": "message", + "date": "2023-03-13T17:00:00", + "date_unixtime": "1678723200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2472, + "type": "message", + "date": "2023-03-13T21:00:00", + "date_unixtime": "1678737600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2473, + "type": "message", + "date": "2023-03-14T01:00:00", + "date_unixtime": "1678752000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2474, + "type": "message", + "date": "2023-03-14T05:00:00", + "date_unixtime": "1678766400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2475, + "type": "message", + "date": "2023-03-14T09:00:00", + "date_unixtime": "1678780800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2476, + "type": "message", + "date": "2023-03-14T13:00:01", + "date_unixtime": "1678795201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2477, + "type": "message", + "date": "2023-03-14T17:00:01", + "date_unixtime": "1678809601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2478, + "type": "message", + "date": "2023-03-14T21:00:00", + "date_unixtime": "1678824000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2479, + "type": "message", + "date": "2023-03-15T01:00:00", + "date_unixtime": "1678838400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2480, + "type": "message", + "date": "2023-03-15T05:00:00", + "date_unixtime": "1678852800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2481, + "type": "message", + "date": "2023-03-15T09:00:00", + "date_unixtime": "1678867200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2482, + "type": "message", + "date": "2023-03-15T13:00:01", + "date_unixtime": "1678881601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2483, + "type": "message", + "date": "2023-03-15T17:00:00", + "date_unixtime": "1678896000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2484, + "type": "message", + "date": "2023-03-15T21:00:00", + "date_unixtime": "1678910400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2485, + "type": "message", + "date": "2023-03-16T01:00:00", + "date_unixtime": "1678924800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2486, + "type": "message", + "date": "2023-03-16T05:00:00", + "date_unixtime": "1678939200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2487, + "type": "message", + "date": "2023-03-16T09:00:00", + "date_unixtime": "1678953600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2488, + "type": "message", + "date": "2023-03-16T13:00:00", + "date_unixtime": "1678968000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2489, + "type": "message", + "date": "2023-03-16T17:00:00", + "date_unixtime": "1678982400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2490, + "type": "message", + "date": "2023-03-16T21:02:13", + "date_unixtime": "1678996933", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2491, + "type": "message", + "date": "2023-03-17T01:00:00", + "date_unixtime": "1679011200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2492, + "type": "message", + "date": "2023-03-17T05:00:00", + "date_unixtime": "1679025600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2493, + "type": "message", + "date": "2023-03-17T09:00:00", + "date_unixtime": "1679040000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2494, + "type": "message", + "date": "2023-03-17T13:00:00", + "date_unixtime": "1679054400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2495, + "type": "message", + "date": "2023-03-17T17:00:00", + "date_unixtime": "1679068800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2496, + "type": "message", + "date": "2023-03-17T21:00:00", + "date_unixtime": "1679083200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2497, + "type": "message", + "date": "2023-03-18T01:00:01", + "date_unixtime": "1679097601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2498, + "type": "message", + "date": "2023-03-18T05:00:00", + "date_unixtime": "1679112000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2499, + "type": "message", + "date": "2023-03-18T09:00:00", + "date_unixtime": "1679126400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2500, + "type": "message", + "date": "2023-03-18T13:00:01", + "date_unixtime": "1679140801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2501, + "type": "message", + "date": "2023-03-18T17:00:00", + "date_unixtime": "1679155200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2502, + "type": "message", + "date": "2023-03-18T21:00:00", + "date_unixtime": "1679169600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2503, + "type": "message", + "date": "2023-03-19T01:00:00", + "date_unixtime": "1679184000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2504, + "type": "message", + "date": "2023-03-19T05:00:00", + "date_unixtime": "1679198400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2505, + "type": "message", + "date": "2023-03-19T09:00:00", + "date_unixtime": "1679212800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2506, + "type": "message", + "date": "2023-03-19T13:00:00", + "date_unixtime": "1679227200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2507, + "type": "message", + "date": "2023-03-19T17:00:00", + "date_unixtime": "1679241600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2508, + "type": "message", + "date": "2023-03-19T21:00:00", + "date_unixtime": "1679256000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2509, + "type": "message", + "date": "2023-03-20T01:00:00", + "date_unixtime": "1679270400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2510, + "type": "message", + "date": "2023-03-20T05:00:00", + "date_unixtime": "1679284800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2511, + "type": "message", + "date": "2023-03-20T09:00:00", + "date_unixtime": "1679299200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2512, + "type": "message", + "date": "2023-03-20T13:00:00", + "date_unixtime": "1679313600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2513, + "type": "message", + "date": "2023-03-20T17:00:00", + "date_unixtime": "1679328000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2514, + "type": "message", + "date": "2023-03-20T21:00:00", + "date_unixtime": "1679342400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2515, + "type": "message", + "date": "2023-03-21T01:00:00", + "date_unixtime": "1679356800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2516, + "type": "message", + "date": "2023-03-21T05:00:00", + "date_unixtime": "1679371200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2517, + "type": "message", + "date": "2023-03-21T09:00:00", + "date_unixtime": "1679385600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2518, + "type": "message", + "date": "2023-03-21T13:00:00", + "date_unixtime": "1679400000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2519, + "type": "message", + "date": "2023-03-21T17:00:00", + "date_unixtime": "1679414400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2520, + "type": "message", + "date": "2023-03-21T21:00:00", + "date_unixtime": "1679428800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2521, + "type": "message", + "date": "2023-03-22T01:00:00", + "date_unixtime": "1679443200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2522, + "type": "message", + "date": "2023-03-22T05:00:00", + "date_unixtime": "1679457600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2523, + "type": "message", + "date": "2023-03-22T09:00:00", + "date_unixtime": "1679472000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2524, + "type": "message", + "date": "2023-03-22T13:00:00", + "date_unixtime": "1679486400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2525, + "type": "message", + "date": "2023-03-22T17:00:00", + "date_unixtime": "1679500800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2526, + "type": "message", + "date": "2023-03-22T21:00:00", + "date_unixtime": "1679515200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2527, + "type": "message", + "date": "2023-03-23T01:00:00", + "date_unixtime": "1679529600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2528, + "type": "message", + "date": "2023-03-23T05:00:00", + "date_unixtime": "1679544000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2529, + "type": "message", + "date": "2023-03-23T09:00:00", + "date_unixtime": "1679558400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2530, + "type": "message", + "date": "2023-03-23T13:00:01", + "date_unixtime": "1679572801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2531, + "type": "message", + "date": "2023-03-23T17:00:00", + "date_unixtime": "1679587200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2532, + "type": "message", + "date": "2023-03-23T21:00:00", + "date_unixtime": "1679601600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2533, + "type": "message", + "date": "2023-03-24T01:00:00", + "date_unixtime": "1679616000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2534, + "type": "message", + "date": "2023-03-24T05:00:00", + "date_unixtime": "1679630400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2535, + "type": "message", + "date": "2023-03-24T09:00:00", + "date_unixtime": "1679644800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2536, + "type": "message", + "date": "2023-03-24T13:00:01", + "date_unixtime": "1679659201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2537, + "type": "message", + "date": "2023-03-24T17:00:01", + "date_unixtime": "1679673601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2538, + "type": "message", + "date": "2023-03-24T21:00:00", + "date_unixtime": "1679688000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2539, + "type": "message", + "date": "2023-03-25T01:00:01", + "date_unixtime": "1679702401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2540, + "type": "message", + "date": "2023-03-25T05:00:00", + "date_unixtime": "1679716800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2541, + "type": "message", + "date": "2023-03-25T09:00:01", + "date_unixtime": "1679731201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2542, + "type": "message", + "date": "2023-03-25T13:00:00", + "date_unixtime": "1679745600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2543, + "type": "message", + "date": "2023-03-25T17:00:00", + "date_unixtime": "1679760000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2544, + "type": "message", + "date": "2023-03-25T21:00:00", + "date_unixtime": "1679774400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2545, + "type": "message", + "date": "2023-03-26T01:00:00", + "date_unixtime": "1679788800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2546, + "type": "message", + "date": "2023-03-26T06:00:01", + "date_unixtime": "1679803201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2547, + "type": "message", + "date": "2023-03-26T10:00:00", + "date_unixtime": "1679817600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2548, + "type": "message", + "date": "2023-03-26T14:00:00", + "date_unixtime": "1679832000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2549, + "type": "message", + "date": "2023-03-26T18:00:00", + "date_unixtime": "1679846400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2550, + "type": "message", + "date": "2023-03-26T22:00:00", + "date_unixtime": "1679860800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2551, + "type": "message", + "date": "2023-03-27T02:00:00", + "date_unixtime": "1679875200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2552, + "type": "message", + "date": "2023-03-27T06:00:01", + "date_unixtime": "1679889601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2553, + "type": "message", + "date": "2023-03-27T10:00:01", + "date_unixtime": "1679904001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2554, + "type": "message", + "date": "2023-03-27T14:00:00", + "date_unixtime": "1679918400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2555, + "type": "message", + "date": "2023-03-27T18:00:01", + "date_unixtime": "1679932801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2556, + "type": "message", + "date": "2023-03-27T22:00:00", + "date_unixtime": "1679947200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2557, + "type": "message", + "date": "2023-03-28T02:00:00", + "date_unixtime": "1679961600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2558, + "type": "message", + "date": "2023-03-28T06:00:00", + "date_unixtime": "1679976000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2559, + "type": "message", + "date": "2023-03-28T10:00:00", + "date_unixtime": "1679990400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2560, + "type": "message", + "date": "2023-03-28T14:00:00", + "date_unixtime": "1680004800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2561, + "type": "message", + "date": "2023-03-28T18:00:00", + "date_unixtime": "1680019200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2562, + "type": "message", + "date": "2023-03-28T22:00:00", + "date_unixtime": "1680033600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2563, + "type": "message", + "date": "2023-03-29T02:00:00", + "date_unixtime": "1680048000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2564, + "type": "message", + "date": "2023-03-29T06:00:00", + "date_unixtime": "1680062400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2565, + "type": "message", + "date": "2023-03-29T10:00:00", + "date_unixtime": "1680076800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2566, + "type": "message", + "date": "2023-03-29T14:00:00", + "date_unixtime": "1680091200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2567, + "type": "message", + "date": "2023-03-29T18:00:00", + "date_unixtime": "1680105600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2568, + "type": "message", + "date": "2023-03-29T22:00:00", + "date_unixtime": "1680120000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2569, + "type": "message", + "date": "2023-03-30T02:00:00", + "date_unixtime": "1680134400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2570, + "type": "message", + "date": "2023-03-30T06:00:01", + "date_unixtime": "1680148801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2571, + "type": "message", + "date": "2023-03-30T10:00:00", + "date_unixtime": "1680163200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2572, + "type": "message", + "date": "2023-03-30T14:00:00", + "date_unixtime": "1680177600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2573, + "type": "message", + "date": "2023-03-30T18:00:00", + "date_unixtime": "1680192000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2574, + "type": "message", + "date": "2023-03-30T22:00:00", + "date_unixtime": "1680206400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2575, + "type": "message", + "date": "2023-03-31T02:00:01", + "date_unixtime": "1680220801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2576, + "type": "message", + "date": "2023-03-31T06:00:00", + "date_unixtime": "1680235200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2577, + "type": "message", + "date": "2023-03-31T10:00:00", + "date_unixtime": "1680249600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2578, + "type": "message", + "date": "2023-03-31T14:00:01", + "date_unixtime": "1680264001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2579, + "type": "message", + "date": "2023-03-31T18:00:01", + "date_unixtime": "1680278401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2580, + "type": "message", + "date": "2023-03-31T22:00:00", + "date_unixtime": "1680292800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2581, + "type": "message", + "date": "2023-04-01T02:00:00", + "date_unixtime": "1680307200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2582, + "type": "message", + "date": "2023-04-01T06:00:00", + "date_unixtime": "1680321600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2583, + "type": "message", + "date": "2023-04-01T10:00:00", + "date_unixtime": "1680336000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2584, + "type": "message", + "date": "2023-04-01T14:00:00", + "date_unixtime": "1680350400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2585, + "type": "message", + "date": "2023-04-01T18:00:01", + "date_unixtime": "1680364801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2586, + "type": "message", + "date": "2023-04-01T22:00:00", + "date_unixtime": "1680379200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2587, + "type": "message", + "date": "2023-04-02T02:00:00", + "date_unixtime": "1680393600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2588, + "type": "message", + "date": "2023-04-02T06:00:01", + "date_unixtime": "1680408001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2589, + "type": "message", + "date": "2023-04-02T10:00:00", + "date_unixtime": "1680422400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2590, + "type": "message", + "date": "2023-04-02T14:00:00", + "date_unixtime": "1680436800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2591, + "type": "message", + "date": "2023-04-02T18:07:00", + "date_unixtime": "1680451620", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2592, + "type": "message", + "date": "2023-04-02T22:00:00", + "date_unixtime": "1680465600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2593, + "type": "message", + "date": "2023-04-03T02:00:01", + "date_unixtime": "1680480001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2594, + "type": "message", + "date": "2023-04-03T06:00:00", + "date_unixtime": "1680494400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2595, + "type": "message", + "date": "2023-04-03T10:00:00", + "date_unixtime": "1680508800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2596, + "type": "message", + "date": "2023-04-03T14:00:00", + "date_unixtime": "1680523200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (85.65083316 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2597, + "type": "message", + "date": "2023-04-03T18:00:04", + "date_unixtime": "1680537604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018098 BTC for 109.61 CZK @ 605,661 CZK\nFees are 0.38498660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (96.90575999363042700091067054 CZK)\nThe limits being 0.10 % (96.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26650445 BTC (122,957.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.27 % (38,454.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,975.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15939656 BTC (96,540.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018098 BTC for 109.61 CZK @ 605,661 CZK\nFees are 0.38498660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (96.90575999363042700091067054 CZK)\nThe limits being 0.10 % (96.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26650445 BTC (122,957.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.27 % (38,454.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,975.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15939656 BTC (96,540.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1138 transactions" + } + ] + }, + { + "id": 2598, + "type": "message", + "date": "2023-04-03T22:00:01", + "date_unixtime": "1680552001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (521) .\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (521) .\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + } + ] + }, + { + "id": 2599, + "type": "message", + "date": "2023-04-04T02:00:04", + "date_unixtime": "1680566404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018288 BTC for 109.61 CZK @ 599,372 CZK\nFees are 0.38498879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (113.88067998989538365502020270 CZK)\nThe limits being 0.10 % (95.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26668733 BTC (123,067.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.88 % (36,777.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,865.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15957944 BTC (95,647.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018288 BTC for 109.61 CZK @ 599,372 CZK\nFees are 0.38498879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (113.88067998989538365502020270 CZK)\nThe limits being 0.10 % (95.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26668733 BTC (123,067.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.88 % (36,777.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,865.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15957944 BTC (95,647.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1139 transactions" + } + ] + }, + { + "id": 2600, + "type": "message", + "date": "2023-04-04T06:00:04", + "date_unixtime": "1680580804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018227 BTC for 109.61 CZK @ 601,366 CZK\nFees are 0.38498117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.25953999701871889709328920 CZK)\nThe limits being 0.10 % (96.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26686960 BTC (123,177.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.29 % (37,309.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,755.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15976171 BTC (96,075.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018227 BTC for 109.61 CZK @ 601,366 CZK\nFees are 0.38498117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.25953999701871889709328920 CZK)\nThe limits being 0.10 % (96.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26686960 BTC (123,177.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.29 % (37,309.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,755.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15976171 BTC (96,075.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1140 transactions" + } + ] + }, + { + "id": 2601, + "type": "message", + "date": "2023-04-04T10:00:04", + "date_unixtime": "1680595204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018196 BTC for 109.62 CZK @ 602,418 CZK\nFees are 0.38499872 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (96.38687999344567042390542751 CZK)\nThe limits being 0.10 % (96.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26705156 BTC (123,287.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.49 % (37,589.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,645.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.15994367 BTC (96,352.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018196 BTC for 109.62 CZK @ 602,418 CZK\nFees are 0.38499872 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (96.38687999344567042390542751 CZK)\nThe limits being 0.10 % (96.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26705156 BTC (123,287.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.49 % (37,589.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,645.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.15994367 BTC (96,352.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1141 transactions" + } + ] + }, + { + "id": 2602, + "type": "message", + "date": "2023-04-04T14:00:04", + "date_unixtime": "1680609604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018000 BTC for 109.61 CZK @ 608,950 CZK\nFees are 0.38498123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (97.43200 CZK)\nThe limits being 0.10 % (97.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26723156 BTC (123,397.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.88 % (39,333.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,535.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16012367 BTC (97,507.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018000 BTC for 109.61 CZK @ 608,950 CZK\nFees are 0.38498123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (97.43200 CZK)\nThe limits being 0.10 % (97.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26723156 BTC (123,397.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.88 % (39,333.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,535.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16012367 BTC (97,507.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1142 transactions" + } + ] + }, + { + "id": 2603, + "type": "message", + "date": "2023-04-04T18:00:04", + "date_unixtime": "1680624004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018207 BTC for 109.62 CZK @ 602,050 CZK\nFees are 0.38499614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (108.36899999778333913359593376 CZK)\nThe limits being 0.10 % (96.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26741363 BTC (123,507.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.35 % (37,489.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,425.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16030574 BTC (96,512.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018207 BTC for 109.62 CZK @ 602,050 CZK\nFees are 0.38499614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (108.36899999778333913359593376 CZK)\nThe limits being 0.10 % (96.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26741363 BTC (123,507.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.35 % (37,489.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,425.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16030574 BTC (96,512.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1143 transactions" + } + ] + }, + { + "id": 2604, + "type": "message", + "date": "2023-04-04T22:00:03", + "date_unixtime": "1680638403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018112 BTC for 109.61 CZK @ 605,194 CZK\nFees are 0.38498734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (108.93491999952463198592910679 CZK)\nThe limits being 0.10 % (97.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26759475 BTC (123,617.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 461,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.01 % (38,329.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,315.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16048686 BTC (97,125.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018112 BTC for 109.61 CZK @ 605,194 CZK\nFees are 0.38498734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (108.93491999952463198592910679 CZK)\nThe limits being 0.10 % (97.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26759475 BTC (123,617.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 461,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.01 % (38,329.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,315.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16048686 BTC (97,125.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1144 transactions" + } + ] + }, + { + "id": 2605, + "type": "message", + "date": "2023-04-05T02:00:04", + "date_unixtime": "1680652804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018130 BTC for 109.62 CZK @ 604,610 CZK\nFees are 0.38499807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.87589999425617619083346182 CZK)\nThe limits being 0.10 % (97.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26777605 BTC (123,727.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.85 % (38,172.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,205.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16066816 BTC (97,141.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018130 BTC for 109.62 CZK @ 604,610 CZK\nFees are 0.38499807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.87589999425617619083346182 CZK)\nThe limits being 0.10 % (97.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26777605 BTC (123,727.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.85 % (38,172.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,205.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16066816 BTC (97,141.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1145 transactions" + } + ] + }, + { + "id": 2606, + "type": "message", + "date": "2023-04-05T06:00:04", + "date_unixtime": "1680667204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017890 BTC for 109.61 CZK @ 612,708 CZK\nFees are 0.38498988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (73.524959997192609544626228544 CZK)\nThe limits being 0.10 % (98.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26795495 BTC (123,837.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.58 % (40,340.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,095.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16084706 BTC (98,552.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017890 BTC for 109.61 CZK @ 612,708 CZK\nFees are 0.38498988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (73.524959997192609544626228544 CZK)\nThe limits being 0.10 % (98.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26795495 BTC (123,837.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.58 % (40,340.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,095.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16084706 BTC (98,552.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1146 transactions" + } + ] + }, + { + "id": 2607, + "type": "message", + "date": "2023-04-05T10:00:05", + "date_unixtime": "1680681605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017921 BTC for 109.61 CZK @ 611,636 CZK\nFees are 0.38498224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (116.21083999317493955019937890 CZK)\nThe limits being 0.10 % (98.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26813416 BTC (123,947.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.31 % (40,053.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,985.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16102627 BTC (98,489.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017921 BTC for 109.61 CZK @ 611,636 CZK\nFees are 0.38498224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (116.21083999317493955019937890 CZK)\nThe limits being 0.10 % (98.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26813416 BTC (123,947.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.31 % (40,053.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,985.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16102627 BTC (98,489.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1147 transactions" + } + ] + }, + { + "id": 2608, + "type": "message", + "date": "2023-04-05T14:00:03", + "date_unixtime": "1680696003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017905 BTC for 109.61 CZK @ 612,178 CZK\nFees are 0.38497938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (79.58313999410329693601019721 CZK)\nThe limits being 0.10 % (98.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26831321 BTC (124,057.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.40 % (40,198.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,875.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16120532 BTC (98,686.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017905 BTC for 109.61 CZK @ 612,178 CZK\nFees are 0.38497938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (79.58313999410329693601019721 CZK)\nThe limits being 0.10 % (98.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26831321 BTC (124,057.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.40 % (40,198.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,875.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16120532 BTC (98,686.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1148 transactions" + } + ] + }, + { + "id": 2609, + "type": "message", + "date": "2023-04-05T18:00:06", + "date_unixtime": "1680710406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018176 BTC for 109.62 CZK @ 603,076 CZK\nFees are 0.38499561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.58443999149982104886418662 CZK)\nThe limits being 0.10 % (97.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26849497 BTC (124,167.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.41 % (37,755.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,765.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16138708 BTC (97,328.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018176 BTC for 109.62 CZK @ 603,076 CZK\nFees are 0.38499561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.58443999149982104886418662 CZK)\nThe limits being 0.10 % (97.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26849497 BTC (124,167.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.41 % (37,755.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,765.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16138708 BTC (97,328.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1149 transactions" + } + ] + }, + { + "id": 2610, + "type": "message", + "date": "2023-04-05T22:00:03", + "date_unixtime": "1680724803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018024 BTC for 109.62 CZK @ 608,168 CZK\nFees are 0.38499950 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (115.55191999882346983073667375 CZK)\nThe limits being 0.10 % (98.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26867521 BTC (124,277.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.48 % (39,122.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,655.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16156732 BTC (98,260.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018024 BTC for 109.62 CZK @ 608,168 CZK\nFees are 0.38499950 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (115.55191999882346983073667375 CZK)\nThe limits being 0.10 % (98.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26867521 BTC (124,277.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.48 % (39,122.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,655.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16156732 BTC (98,260.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1150 transactions" + } + ] + }, + { + "id": 2611, + "type": "message", + "date": "2023-04-06T02:00:04", + "date_unixtime": "1680739204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018074 BTC for 109.62 CZK @ 606,486 CZK\nFees are 0.38499978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (97.03775999228990444476753626 CZK)\nThe limits being 0.10 % (98.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26885595 BTC (124,387.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.09 % (38,670.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,545.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16174806 BTC (98,097.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018074 BTC for 109.62 CZK @ 606,486 CZK\nFees are 0.38499978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (97.03775999228990444476753626 CZK)\nThe limits being 0.10 % (98.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26885595 BTC (124,387.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.09 % (38,670.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,545.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16174806 BTC (98,097.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1151 transactions" + } + ] + }, + { + "id": 2612, + "type": "message", + "date": "2023-04-06T06:00:03", + "date_unixtime": "1680753603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018085 BTC for 109.61 CZK @ 606,095 CZK\nFees are 0.38498573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (84.85329999797501666478632500 CZK)\nThe limits being 0.10 % (98.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26903680 BTC (124,497.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.98 % (38,564.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,435.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16192891 BTC (98,144.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018085 BTC for 109.61 CZK @ 606,095 CZK\nFees are 0.38498573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (84.85329999797501666478632500 CZK)\nThe limits being 0.10 % (98.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26903680 BTC (124,497.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.98 % (38,564.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,435.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16192891 BTC (98,144.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1152 transactions" + } + ] + }, + { + "id": 2613, + "type": "message", + "date": "2023-04-06T10:00:04", + "date_unixtime": "1680768004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018261 BTC for 109.61 CZK @ 600,254 CZK\nFees are 0.38498609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.030479999810094601537955419 CZK)\nThe limits being 0.10 % (97.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26921941 BTC (124,607.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.69 % (36,992.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,325.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16211152 BTC (97,308.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018261 BTC for 109.61 CZK @ 600,254 CZK\nFees are 0.38498609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.030479999810094601537955419 CZK)\nThe limits being 0.10 % (97.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26921941 BTC (124,607.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.69 % (36,992.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,325.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16211152 BTC (97,308.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1153 transactions" + } + ] + }, + { + "id": 2614, + "type": "message", + "date": "2023-04-06T14:00:04", + "date_unixtime": "1680782404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018247 BTC for 109.61 CZK @ 600,717 CZK\nFees are 0.38498767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.086039994452473830495550880 CZK)\nThe limits being 0.10 % (97.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26940188 BTC (124,717.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 462,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.76 % (37,117.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,215.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16229399 BTC (97,492.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018247 BTC for 109.61 CZK @ 600,717 CZK\nFees are 0.38498767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.086039994452473830495550880 CZK)\nThe limits being 0.10 % (97.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26940188 BTC (124,717.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 462,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.76 % (37,117.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,215.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16229399 BTC (97,492.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1154 transactions" + } + ] + }, + { + "id": 2615, + "type": "message", + "date": "2023-04-06T18:00:04", + "date_unixtime": "1680796804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018169 BTC for 109.61 CZK @ 603,292 CZK\nFees are 0.38498518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.62547999772824395259445153 CZK)\nThe limits being 0.10 % (98.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26958357 BTC (124,827.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.29 % (37,810.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,105.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16247568 BTC (98,020.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.08 CZK over 1155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018169 BTC for 109.61 CZK @ 603,292 CZK\nFees are 0.38498518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.62547999772824395259445153 CZK)\nThe limits being 0.10 % (98.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26958357 BTC (124,827.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.29 % (37,810.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,105.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16247568 BTC (98,020.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.08 CZK over 1155 transactions" + } + ] + }, + { + "id": 2616, + "type": "message", + "date": "2023-04-06T22:00:04", + "date_unixtime": "1680811204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018225 BTC for 109.62 CZK @ 601,459 CZK\nFees are 0.38499845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.27720999000070398324656569 CZK)\nThe limits being 0.10 % (97.83 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26976582 BTC (124,937.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.87 % (37,315.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,995.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16265793 BTC (97,832.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.08 CZK over 1156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018225 BTC for 109.62 CZK @ 601,459 CZK\nFees are 0.38499845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (114.27720999000070398324656569 CZK)\nThe limits being 0.10 % (97.83 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26976582 BTC (124,937.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.87 % (37,315.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,995.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16265793 BTC (97,832.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.08 CZK over 1156 transactions" + } + ] + }, + { + "id": 2617, + "type": "message", + "date": "2023-04-07T02:00:03", + "date_unixtime": "1680825603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018168 BTC for 109.61 CZK @ 603,336 CZK\nFees are 0.38499207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (78.433679995949886537585206512 CZK)\nThe limits being 0.10 % (98.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.26994750 BTC (125,047.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.25 % (37,821.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,885.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16283961 BTC (98,247.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.08 CZK over 1157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018168 BTC for 109.61 CZK @ 603,336 CZK\nFees are 0.38499207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (78.433679995949886537585206512 CZK)\nThe limits being 0.10 % (98.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.26994750 BTC (125,047.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.25 % (37,821.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,885.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16283961 BTC (98,247.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.08 CZK over 1157 transactions" + } + ] + }, + { + "id": 2618, + "type": "message", + "date": "2023-04-07T06:00:04", + "date_unixtime": "1680840004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018202 BTC for 109.62 CZK @ 602,219 CZK\nFees are 0.38499845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.266279994527449717659436890 CZK)\nThe limits being 0.10 % (98.17 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27012952 BTC (125,157.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.98 % (37,519.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,775.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16302163 BTC (98,174.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.08 CZK over 1158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018202 BTC for 109.62 CZK @ 602,219 CZK\nFees are 0.38499845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.266279994527449717659436890 CZK)\nThe limits being 0.10 % (98.17 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27012952 BTC (125,157.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.98 % (37,519.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,775.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16302163 BTC (98,174.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.08 CZK over 1158 transactions" + } + ] + }, + { + "id": 2619, + "type": "message", + "date": "2023-04-07T10:00:07", + "date_unixtime": "1680854407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018291 BTC for 109.61 CZK @ 599,261 CZK\nFees are 0.38498064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (95.88175999713647796105462928 CZK)\nThe limits being 0.10 % (97.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27031243 BTC (125,267.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.31 % (36,720.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,665.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16320454 BTC (97,802.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.08 CZK over 1159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018291 BTC for 109.61 CZK @ 599,261 CZK\nFees are 0.38498064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (95.88175999713647796105462928 CZK)\nThe limits being 0.10 % (97.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27031243 BTC (125,267.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.31 % (36,720.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,665.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16320454 BTC (97,802.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.08 CZK over 1159 transactions" + } + ] + }, + { + "id": 2620, + "type": "message", + "date": "2023-04-07T14:00:04", + "date_unixtime": "1680868804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018281 BTC for 109.62 CZK @ 599,617 CZK\nFees are 0.38499874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (77.95020999773589330292938121 CZK)\nThe limits being 0.10 % (97.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27049524 BTC (125,377.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.36 % (36,816.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,555.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16338735 BTC (97,969.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.08 CZK over 1160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018281 BTC for 109.62 CZK @ 599,617 CZK\nFees are 0.38499874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (77.95020999773589330292938121 CZK)\nThe limits being 0.10 % (97.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27049524 BTC (125,377.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.36 % (36,816.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,555.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16338735 BTC (97,969.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.08 CZK over 1160 transactions" + } + ] + }, + { + "id": 2621, + "type": "message", + "date": "2023-04-07T18:00:03", + "date_unixtime": "1680883203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018241 BTC for 109.61 CZK @ 600,921 CZK\nFees are 0.38499177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (78.119729993867470104292342080 CZK)\nThe limits being 0.10 % (98.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27067765 BTC (125,487.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.62 % (37,168.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,445.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16356976 BTC (98,292.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018241 BTC for 109.61 CZK @ 600,921 CZK\nFees are 0.38499177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (78.119729993867470104292342080 CZK)\nThe limits being 0.10 % (98.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27067765 BTC (125,487.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.62 % (37,168.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,445.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16356976 BTC (98,292.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1161 transactions" + } + ] + }, + { + "id": 2622, + "type": "message", + "date": "2023-04-07T22:00:04", + "date_unixtime": "1680897604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018247 BTC for 109.62 CZK @ 600,732 CZK\nFees are 0.38499728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (96.11711999288728284784150961 CZK)\nThe limits being 0.10 % (98.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27086012 BTC (125,597.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.55 % (37,117.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,335.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16375223 BTC (98,371.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018247 BTC for 109.62 CZK @ 600,732 CZK\nFees are 0.38499728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (96.11711999288728284784150961 CZK)\nThe limits being 0.10 % (98.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27086012 BTC (125,597.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.55 % (37,117.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,335.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16375223 BTC (98,371.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1162 transactions" + } + ] + }, + { + "id": 2623, + "type": "message", + "date": "2023-04-08T02:00:05", + "date_unixtime": "1680912005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018229 BTC for 109.61 CZK @ 601,311 CZK\nFees are 0.38498820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (84.18353999413375802498048208 CZK)\nThe limits being 0.10 % (98.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27104241 BTC (125,707.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.65 % (37,273.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,225.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16393452 BTC (98,575.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018229 BTC for 109.61 CZK @ 601,311 CZK\nFees are 0.38498820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (84.18353999413375802498048208 CZK)\nThe limits being 0.10 % (98.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27104241 BTC (125,707.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.65 % (37,273.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,225.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16393452 BTC (98,575.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1163 transactions" + } + ] + }, + { + "id": 2624, + "type": "message", + "date": "2023-04-08T06:00:04", + "date_unixtime": "1680926404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018155 BTC for 109.62 CZK @ 603,776 CZK\nFees are 0.38499716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (66.415359997101853784406738356 CZK)\nThe limits being 0.10 % (99.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27122396 BTC (125,817.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.16 % (37,941.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,115.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16411607 BTC (99,089.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018155 BTC for 109.62 CZK @ 603,776 CZK\nFees are 0.38499716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (66.415359997101853784406738356 CZK)\nThe limits being 0.10 % (99.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27122396 BTC (125,817.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.16 % (37,941.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,115.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16411607 BTC (99,089.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1164 transactions" + } + ] + }, + { + "id": 2625, + "type": "message", + "date": "2023-04-08T10:00:03", + "date_unixtime": "1680940803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018105 BTC for 109.62 CZK @ 605,445 CZK\nFees are 0.38499815 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (60.544499999793597305866914018 CZK)\nThe limits being 0.10 % (99.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27140501 BTC (125,927.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 463,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.49 % (38,393.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,005.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16429712 BTC (99,472.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018105 BTC for 109.62 CZK @ 605,445 CZK\nFees are 0.38499815 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (60.544499999793597305866914018 CZK)\nThe limits being 0.10 % (99.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27140501 BTC (125,927.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 463,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.49 % (38,393.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,005.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16429712 BTC (99,472.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1165 transactions" + } + ] + }, + { + "id": 2626, + "type": "message", + "date": "2023-04-08T14:00:03", + "date_unixtime": "1680955203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018147 BTC for 109.61 CZK @ 604,021 CZK\nFees are 0.38498366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (36.241259997349333540246762387 CZK)\nThe limits being 0.10 % (99.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27158648 BTC (126,037.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.16 % (38,006.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,895.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16447859 BTC (99,348.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018147 BTC for 109.61 CZK @ 604,021 CZK\nFees are 0.38498366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (36.241259997349333540246762387 CZK)\nThe limits being 0.10 % (99.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27158648 BTC (126,037.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.16 % (38,006.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,895.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16447859 BTC (99,348.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1166 transactions" + } + ] + }, + { + "id": 2627, + "type": "message", + "date": "2023-04-08T18:00:05", + "date_unixtime": "1680969605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018143 BTC for 109.62 CZK @ 604,173 CZK\nFees are 0.38499566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (36.250379998067173864631481486 CZK)\nThe limits being 0.10 % (99.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27176791 BTC (126,147.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.16 % (38,047.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,785.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16466002 BTC (99,483.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018143 BTC for 109.62 CZK @ 604,173 CZK\nFees are 0.38499566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (36.250379998067173864631481486 CZK)\nThe limits being 0.10 % (99.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27176791 BTC (126,147.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.16 % (38,047.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,785.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16466002 BTC (99,483.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1167 transactions" + } + ] + }, + { + "id": 2628, + "type": "message", + "date": "2023-04-08T22:00:04", + "date_unixtime": "1680984004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018207 BTC for 109.61 CZK @ 602,041 CZK\nFees are 0.38499038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.244919995372925687758030614 CZK)\nThe limits being 0.10 % (99.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27194998 BTC (126,257.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.68 % (37,467.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,675.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16484209 BTC (99,241.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018207 BTC for 109.61 CZK @ 602,041 CZK\nFees are 0.38499038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.244919995372925687758030614 CZK)\nThe limits being 0.10 % (99.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27194998 BTC (126,257.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.68 % (37,467.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,675.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16484209 BTC (99,241.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1168 transactions" + } + ] + }, + { + "id": 2629, + "type": "message", + "date": "2023-04-09T02:00:05", + "date_unixtime": "1680998405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018187 BTC for 109.61 CZK @ 602,697 CZK\nFees are 0.38498652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.323639998773742607422654346 CZK)\nThe limits being 0.10 % (99.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27213185 BTC (126,367.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.79 % (37,645.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,565.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16502396 BTC (99,459.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018187 BTC for 109.61 CZK @ 602,697 CZK\nFees are 0.38498652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.323639998773742607422654346 CZK)\nThe limits being 0.10 % (99.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27213185 BTC (126,367.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.79 % (37,645.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,565.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16502396 BTC (99,459.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1169 transactions" + } + ] + }, + { + "id": 2630, + "type": "message", + "date": "2023-04-09T06:00:04", + "date_unixtime": "1681012804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018131 BTC for 109.61 CZK @ 604,550 CZK\nFees are 0.38498110 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (54.409499999134351813767911806 CZK)\nThe limits being 0.10 % (99.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27231316 BTC (126,477.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.16 % (38,149.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,455.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16520527 BTC (99,874.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018131 BTC for 109.61 CZK @ 604,550 CZK\nFees are 0.38498110 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (54.409499999134351813767911806 CZK)\nThe limits being 0.10 % (99.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27231316 BTC (126,477.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.16 % (38,149.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,455.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16520527 BTC (99,874.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1170 transactions" + } + ] + }, + { + "id": 2631, + "type": "message", + "date": "2023-04-09T10:00:03", + "date_unixtime": "1681027203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018242 BTC for 109.61 CZK @ 600,880 CZK\nFees are 0.38498661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (30.043999999016707612600498627 CZK)\nThe limits being 0.10 % (99.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27249558 BTC (126,587.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.35 % (37,149.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,345.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16538769 BTC (99,378.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018242 BTC for 109.61 CZK @ 600,880 CZK\nFees are 0.38498661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (30.043999999016707612600498627 CZK)\nThe limits being 0.10 % (99.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27249558 BTC (126,587.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.35 % (37,149.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,345.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16538769 BTC (99,378.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1171 transactions" + } + ] + }, + { + "id": 2632, + "type": "message", + "date": "2023-04-09T14:00:04", + "date_unixtime": "1681041604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018242 BTC for 109.61 CZK @ 600,880 CZK\nFees are 0.38498661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (24.035199999213366090080398902 CZK)\nThe limits being 0.10 % (99.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27267800 BTC (126,697.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.32 % (37,149.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,235.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16557011 BTC (99,487.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018242 BTC for 109.61 CZK @ 600,880 CZK\nFees are 0.38498661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (24.035199999213366090080398902 CZK)\nThe limits being 0.10 % (99.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27267800 BTC (126,697.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.32 % (37,149.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,235.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16557011 BTC (99,487.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1172 transactions" + } + ] + }, + { + "id": 2633, + "type": "message", + "date": "2023-04-09T18:00:04", + "date_unixtime": "1681056004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018254 BTC for 109.61 CZK @ 600,484 CZK\nFees are 0.38498597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (18.014519999547982848897053585 CZK)\nThe limits being 0.10 % (99.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27286054 BTC (126,807.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.21 % (37,041.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,125.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16575265 BTC (99,531.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018254 BTC for 109.61 CZK @ 600,484 CZK\nFees are 0.38498597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (18.014519999547982848897053585 CZK)\nThe limits being 0.10 % (99.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27286054 BTC (126,807.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.21 % (37,041.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,125.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16575265 BTC (99,531.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1173 transactions" + } + ] + }, + { + "id": 2634, + "type": "message", + "date": "2023-04-09T22:00:05", + "date_unixtime": "1681070405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018101 BTC for 109.61 CZK @ 605,556 CZK\nFees are 0.38498362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.666712204208093615883438956 CZK)\nThe limits being 0.10 % (100.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27304155 BTC (126,917.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.28 % (38,424.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,015.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16593366 BTC (100,482.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018101 BTC for 109.61 CZK @ 605,556 CZK\nFees are 0.38498362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.666712204208093615883438956 CZK)\nThe limits being 0.10 % (100.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27304155 BTC (126,917.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.28 % (38,424.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,015.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16593366 BTC (100,482.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1174 transactions" + } + ] + }, + { + "id": 2635, + "type": "message", + "date": "2023-04-10T02:00:04", + "date_unixtime": "1681084804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017993 BTC for 109.61 CZK @ 609,185 CZK\nFees are 0.38498003 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (73.102199993569995705853721389 CZK)\nThe limits being 0.10 % (101.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27322148 BTC (127,027.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 464,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.03 % (39,415.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,905.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16611359 BTC (101,193.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017993 BTC for 109.61 CZK @ 609,185 CZK\nFees are 0.38498003 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (73.102199993569995705853721389 CZK)\nThe limits being 0.10 % (101.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27322148 BTC (127,027.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 464,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.03 % (39,415.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,905.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16611359 BTC (101,193.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1175 transactions" + } + ] + }, + { + "id": 2636, + "type": "message", + "date": "2023-04-10T06:00:04", + "date_unixtime": "1681099204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018019 BTC for 109.61 CZK @ 608,328 CZK\nFees are 0.38499396 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.999359994611235391707026406 CZK)\nThe limits being 0.10 % (101.16 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27340167 BTC (127,137.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.82 % (39,180.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,795.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16629378 BTC (101,161.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018019 BTC for 109.61 CZK @ 608,328 CZK\nFees are 0.38499396 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (72.999359994611235391707026406 CZK)\nThe limits being 0.10 % (101.16 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27340167 BTC (127,137.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.82 % (39,180.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,795.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16629378 BTC (101,161.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1176 transactions" + } + ] + }, + { + "id": 2637, + "type": "message", + "date": "2023-04-10T10:00:03", + "date_unixtime": "1681113603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018067 BTC for 109.61 CZK @ 606,704 CZK\nFees are 0.38498900 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (60.670399999514622935516912371 CZK)\nThe limits being 0.10 % (101.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27358234 BTC (127,247.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.44 % (38,736.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,685.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16647445 BTC (101,000.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018067 BTC for 109.61 CZK @ 606,704 CZK\nFees are 0.38498900 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (60.670399999514622935516912371 CZK)\nThe limits being 0.10 % (101.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27358234 BTC (127,247.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.44 % (38,736.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,685.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16647445 BTC (101,000.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1177 transactions" + } + ] + }, + { + "id": 2638, + "type": "message", + "date": "2023-04-10T14:00:03", + "date_unixtime": "1681128003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018030 BTC for 109.61 CZK @ 607,954 CZK\nFees are 0.38499214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (60.795399999060415556091671387 CZK)\nThe limits being 0.10 % (101.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27376264 BTC (127,357.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.68 % (39,077.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,575.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16665475 BTC (101,318.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018030 BTC for 109.61 CZK @ 607,954 CZK\nFees are 0.38499214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (60.795399999060415556091671387 CZK)\nThe limits being 0.10 % (101.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27376264 BTC (127,357.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.68 % (39,077.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,575.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16665475 BTC (101,318.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1178 transactions" + } + ] + }, + { + "id": 2639, + "type": "message", + "date": "2023-04-10T18:00:04", + "date_unixtime": "1681142404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017856 BTC for 109.62 CZK @ 613,885 CZK\nFees are 0.38499636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (67.527349994106648236548424597 CZK)\nThe limits being 0.10 % (102.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27394120 BTC (127,467.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.93 % (40,701.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,465.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16683331 BTC (102,416.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.11 CZK over 1179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017856 BTC for 109.62 CZK @ 613,885 CZK\nFees are 0.38499636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (67.527349994106648236548424597 CZK)\nThe limits being 0.10 % (102.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27394120 BTC (127,467.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.93 % (40,701.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,465.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16683331 BTC (102,416.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.11 CZK over 1179 transactions" + } + ] + }, + { + "id": 2640, + "type": "message", + "date": "2023-04-10T22:00:03", + "date_unixtime": "1681156803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017454 BTC for 109.61 CZK @ 627,999 CZK\nFees are 0.38498104 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (75.359879993758524435702267913 CZK)\nThe limits being 0.10 % (104.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27411574 BTC (127,577.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 627,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.93 % (44,567.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,355.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16700785 BTC (104,880.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017454 BTC for 109.61 CZK @ 627,999 CZK\nFees are 0.38498104 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (75.359879993758524435702267913 CZK)\nThe limits being 0.10 % (104.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27411574 BTC (127,577.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 627,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.93 % (44,567.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,355.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16700785 BTC (104,880.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1180 transactions" + } + ] + }, + { + "id": 2641, + "type": "message", + "date": "2023-04-11T02:00:03", + "date_unixtime": "1681171203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017185 BTC for 109.62 CZK @ 637,857 CZK\nFees are 0.38499783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (102.05711999158024018060732737 CZK)\nThe limits being 0.10 % (106.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27428759 BTC (127,687.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.02 % (47,269.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,245.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16717970 BTC (106,636.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017185 BTC for 109.62 CZK @ 637,857 CZK\nFees are 0.38499783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (102.05711999158024018060732737 CZK)\nThe limits being 0.10 % (106.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27428759 BTC (127,687.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.02 % (47,269.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,245.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16717970 BTC (106,636.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1181 transactions" + } + ] + }, + { + "id": 2642, + "type": "message", + "date": "2023-04-11T06:00:03", + "date_unixtime": "1681185603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016938 BTC for 109.61 CZK @ 647,125 CZK\nFees are 0.38497784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (103.53999999647002406208098083 CZK)\nThe limits being 0.10 % (108.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27445697 BTC (127,797.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.98 % (49,810.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,135.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16734908 BTC (108,295.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016938 BTC for 109.61 CZK @ 647,125 CZK\nFees are 0.38497784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (103.53999999647002406208098083 CZK)\nThe limits being 0.10 % (108.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27445697 BTC (127,797.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.98 % (49,810.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,135.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16734908 BTC (108,295.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1182 transactions" + } + ] + }, + { + "id": 2643, + "type": "message", + "date": "2023-04-11T10:00:03", + "date_unixtime": "1681200003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016946 BTC for 109.62 CZK @ 646,855 CZK\nFees are 0.38499897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (97.02824999201719980304976487 CZK)\nThe limits being 0.10 % (108.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27462643 BTC (127,907.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.88 % (49,736.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,025.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16751854 BTC (108,360.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016946 BTC for 109.62 CZK @ 646,855 CZK\nFees are 0.38499897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (97.02824999201719980304976487 CZK)\nThe limits being 0.10 % (108.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27462643 BTC (127,907.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.88 % (49,736.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,025.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16751854 BTC (108,360.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1183 transactions" + } + ] + }, + { + "id": 2644, + "type": "message", + "date": "2023-04-11T14:00:04", + "date_unixtime": "1681214404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016936 BTC for 109.61 CZK @ 647,218 CZK\nFees are 0.38498770 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (103.55487999841838402624352791 CZK)\nThe limits being 0.10 % (108.53 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27479579 BTC (128,017.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.93 % (49,835.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,915.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16768790 BTC (108,530.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016936 BTC for 109.61 CZK @ 647,218 CZK\nFees are 0.38498770 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (103.55487999841838402624352791 CZK)\nThe limits being 0.10 % (108.53 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27479579 BTC (128,017.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.93 % (49,835.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,915.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16768790 BTC (108,530.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1184 transactions" + } + ] + }, + { + "id": 2645, + "type": "message", + "date": "2023-04-11T18:00:05", + "date_unixtime": "1681228805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016865 BTC for 109.61 CZK @ 649,937 CZK\nFees are 0.38498431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (110.48928999731299183956064831 CZK)\nThe limits being 0.10 % (109.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27496444 BTC (128,127.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 465,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.48 % (50,582.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,805.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16785655 BTC (109,096.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016865 BTC for 109.61 CZK @ 649,937 CZK\nFees are 0.38498431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (110.48928999731299183956064831 CZK)\nThe limits being 0.10 % (109.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27496444 BTC (128,127.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 465,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.48 % (50,582.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,805.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16785655 BTC (109,096.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1185 transactions" + } + ] + }, + { + "id": 2646, + "type": "message", + "date": "2023-04-11T22:00:04", + "date_unixtime": "1681243204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016898 BTC for 109.61 CZK @ 648,670 CZK\nFees are 0.38498565 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (129.73399999044650387155430605 CZK)\nThe limits being 0.10 % (108.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27513342 BTC (128,237.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.17 % (50,233.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,695.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16802553 BTC (108,993.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016898 BTC for 109.61 CZK @ 648,670 CZK\nFees are 0.38498565 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (129.73399999044650387155430605 CZK)\nThe limits being 0.10 % (108.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27513342 BTC (128,237.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.17 % (50,233.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,695.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16802553 BTC (108,993.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1186 transactions" + } + ] + }, + { + "id": 2647, + "type": "message", + "date": "2023-04-12T02:00:04", + "date_unixtime": "1681257604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016866 BTC for 109.61 CZK @ 649,898 CZK\nFees are 0.38498403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (110.48265999158288100033612937 CZK)\nThe limits being 0.10 % (109.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27530208 BTC (128,347.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,898 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.40 % (50,571.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,585.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16819419 BTC (109,309.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016866 BTC for 109.61 CZK @ 649,898 CZK\nFees are 0.38498403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (110.48265999158288100033612937 CZK)\nThe limits being 0.10 % (109.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27530208 BTC (128,347.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,898 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.40 % (50,571.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,585.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16819419 BTC (109,309.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1187 transactions" + } + ] + }, + { + "id": 2648, + "type": "message", + "date": "2023-04-12T06:00:04", + "date_unixtime": "1681272004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017033 BTC for 109.62 CZK @ 643,552 CZK\nFees are 0.38499954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (90.09727999790318807557567769 CZK)\nThe limits being 0.10 % (108.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27547241 BTC (128,457.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.01 % (48,823.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,475.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16836452 BTC (108,351.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017033 BTC for 109.62 CZK @ 643,552 CZK\nFees are 0.38499954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (90.09727999790318807557567769 CZK)\nThe limits being 0.10 % (108.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27547241 BTC (128,457.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.01 % (48,823.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,475.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16836452 BTC (108,351.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1188 transactions" + } + ] + }, + { + "id": 2649, + "type": "message", + "date": "2023-04-12T10:00:01", + "date_unixtime": "1681286401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (525) .\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (525) .\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + } + ] + }, + { + "id": 2650, + "type": "message", + "date": "2023-04-12T14:00:03", + "date_unixtime": "1681300803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016981 BTC for 109.61 CZK @ 645,500 CZK\nFees are 0.38498599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (45.184999998973030821076236119 CZK)\nThe limits being 0.10 % (108.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27564222 BTC (128,567.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.39 % (49,359.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,365.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16853433 BTC (108,788.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016981 BTC for 109.61 CZK @ 645,500 CZK\nFees are 0.38498599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (45.184999998973030821076236119 CZK)\nThe limits being 0.10 % (108.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27564222 BTC (128,567.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.39 % (49,359.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,365.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16853433 BTC (108,788.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1189 transactions" + } + ] + }, + { + "id": 2651, + "type": "message", + "date": "2023-04-12T18:00:04", + "date_unixtime": "1681315204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017153 BTC for 109.61 CZK @ 639,016 CZK\nFees are 0.38497918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (63.901599999604950562031897277 CZK)\nThe limits being 0.10 % (107.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27581375 BTC (128,677.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.97 % (47,572.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,255.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16870586 BTC (107,805.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017153 BTC for 109.61 CZK @ 639,016 CZK\nFees are 0.38497918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (63.901599999604950562031897277 CZK)\nThe limits being 0.10 % (107.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27581375 BTC (128,677.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.97 % (47,572.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,255.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16870586 BTC (107,805.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1190 transactions" + } + ] + }, + { + "id": 2652, + "type": "message", + "date": "2023-04-12T22:00:03", + "date_unixtime": "1681329603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017291 BTC for 109.61 CZK @ 633,942 CZK\nFees are 0.38499497 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (88.75187999252053934069228581 CZK)\nThe limits being 0.10 % (107.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27598666 BTC (128,787.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 633,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.85 % (46,172.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,145.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16887877 BTC (107,059.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017291 BTC for 109.61 CZK @ 633,942 CZK\nFees are 0.38499497 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (88.75187999252053934069228581 CZK)\nThe limits being 0.10 % (107.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27598666 BTC (128,787.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 633,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.85 % (46,172.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,145.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16887877 BTC (107,059.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1191 transactions" + } + ] + }, + { + "id": 2653, + "type": "message", + "date": "2023-04-13T02:00:03", + "date_unixtime": "1681344003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017246 BTC for 109.61 CZK @ 635,578 CZK\nFees are 0.38498398 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (63.557799996197929766979898318 CZK)\nThe limits being 0.10 % (107.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27615912 BTC (128,897.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.17 % (46,623.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,035.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16905123 BTC (107,445.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017246 BTC for 109.61 CZK @ 635,578 CZK\nFees are 0.38498398 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (63.557799996197929766979898318 CZK)\nThe limits being 0.10 % (107.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27615912 BTC (128,897.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.17 % (46,623.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,035.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16905123 BTC (107,445.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1192 transactions" + } + ] + }, + { + "id": 2654, + "type": "message", + "date": "2023-04-13T06:00:04", + "date_unixtime": "1681358404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017120 BTC for 109.61 CZK @ 640,268 CZK\nFees are 0.38499136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (96.04019999511057094561557912 CZK)\nThe limits being 0.10 % (108.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27633032 BTC (129,007.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.14 % (47,918.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,925.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16922243 BTC (108,347.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017120 BTC for 109.61 CZK @ 640,268 CZK\nFees are 0.38499136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (96.04019999511057094561557912 CZK)\nThe limits being 0.10 % (108.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27633032 BTC (129,007.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.14 % (47,918.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,925.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16922243 BTC (108,347.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1193 transactions" + } + ] + }, + { + "id": 2655, + "type": "message", + "date": "2023-04-13T10:00:03", + "date_unixtime": "1681372803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017111 BTC for 109.61 CZK @ 640,609 CZK\nFees are 0.38499390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (70.466989999381802520003551362 CZK)\nThe limits being 0.10 % (108.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27650143 BTC (129,117.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 466,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.18 % (48,012.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,815.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16939354 BTC (108,515.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017111 BTC for 109.61 CZK @ 640,609 CZK\nFees are 0.38499390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (70.466989999381802520003551362 CZK)\nThe limits being 0.10 % (108.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27650143 BTC (129,117.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 466,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.18 % (48,012.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,815.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16939354 BTC (108,515.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1194 transactions" + } + ] + }, + { + "id": 2656, + "type": "message", + "date": "2023-04-13T14:00:04", + "date_unixtime": "1681387204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017128 BTC for 109.62 CZK @ 639,978 CZK\nFees are 0.38499680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (102.39647999865952584915895720 CZK)\nThe limits being 0.10 % (108.52 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27667271 BTC (129,227.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.02 % (47,837.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,705.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16956482 BTC (108,517.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017128 BTC for 109.62 CZK @ 639,978 CZK\nFees are 0.38499680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (102.39647999865952584915895720 CZK)\nThe limits being 0.10 % (108.52 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27667271 BTC (129,227.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.02 % (47,837.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,705.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16956482 BTC (108,517.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1195 transactions" + } + ] + }, + { + "id": 2657, + "type": "message", + "date": "2023-04-13T18:00:04", + "date_unixtime": "1681401604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017077 BTC for 109.62 CZK @ 641,891 CZK\nFees are 0.38499783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (109.12146999876493641348213267 CZK)\nThe limits being 0.10 % (108.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27684348 BTC (129,337.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.40 % (48,366.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,595.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16973559 BTC (108,951.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017077 BTC for 109.62 CZK @ 641,891 CZK\nFees are 0.38499783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (109.12146999876493641348213267 CZK)\nThe limits being 0.10 % (108.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27684348 BTC (129,337.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.40 % (48,366.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,595.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16973559 BTC (108,951.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1196 transactions" + } + ] + }, + { + "id": 2658, + "type": "message", + "date": "2023-04-13T22:00:04", + "date_unixtime": "1681416004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017142 BTC for 109.61 CZK @ 639,451 CZK\nFees are 0.38499420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (115.10117999322985581267105209 CZK)\nThe limits being 0.10 % (108.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27701490 BTC (129,447.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.84 % (47,690.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,485.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.16990701 BTC (108,647.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017142 BTC for 109.61 CZK @ 639,451 CZK\nFees are 0.38499420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (115.10117999322985581267105209 CZK)\nThe limits being 0.10 % (108.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27701490 BTC (129,447.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.84 % (47,690.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,485.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.16990701 BTC (108,647.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1197 transactions" + } + ] + }, + { + "id": 2659, + "type": "message", + "date": "2023-04-14T02:00:04", + "date_unixtime": "1681430404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017115 BTC for 109.61 CZK @ 640,449 CZK\nFees are 0.38498772 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (108.87632999779765853110374280 CZK)\nThe limits being 0.10 % (108.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27718605 BTC (129,557.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.02 % (47,966.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,375.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17007816 BTC (108,926.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.14 CZK over 1198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017115 BTC for 109.61 CZK @ 640,449 CZK\nFees are 0.38498772 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (108.87632999779765853110374280 CZK)\nThe limits being 0.10 % (108.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27718605 BTC (129,557.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.02 % (47,966.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,375.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17007816 BTC (108,926.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.14 CZK over 1198 transactions" + } + ] + }, + { + "id": 2660, + "type": "message", + "date": "2023-04-14T06:00:05", + "date_unixtime": "1681444805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016968 BTC for 109.62 CZK @ 646,017 CZK\nFees are 0.38499937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (64.601699996499756744839549087 CZK)\nThe limits being 0.10 % (109.98 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27735573 BTC (129,667.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.18 % (49,509.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,265.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17024784 BTC (109,983.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016968 BTC for 109.62 CZK @ 646,017 CZK\nFees are 0.38499937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (64.601699996499756744839549087 CZK)\nThe limits being 0.10 % (109.98 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27735573 BTC (129,667.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.18 % (49,509.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,265.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17024784 BTC (109,983.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1199 transactions" + } + ] + }, + { + "id": 2661, + "type": "message", + "date": "2023-04-14T10:00:05", + "date_unixtime": "1681459205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016918 BTC for 109.61 CZK @ 647,918 CZK\nFees are 0.38499447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (38.875079998112764444906239913 CZK)\nThe limits being 0.10 % (110.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27752491 BTC (129,777.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.56 % (50,036.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,155.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17041702 BTC (110,416.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016918 BTC for 109.61 CZK @ 647,918 CZK\nFees are 0.38499447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (38.875079998112764444906239913 CZK)\nThe limits being 0.10 % (110.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27752491 BTC (129,777.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.56 % (50,036.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,155.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17041702 BTC (110,416.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1200 transactions" + } + ] + }, + { + "id": 2662, + "type": "message", + "date": "2023-04-14T14:00:04", + "date_unixtime": "1681473604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016795 BTC for 109.61 CZK @ 652,636 CZK\nFees are 0.38497848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (78.316319995229557519209708560 CZK)\nThe limits being 0.10 % (111.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27769286 BTC (129,887.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 652,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 39.53 % (51,345.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,045.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17058497 BTC (111,329.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016795 BTC for 109.61 CZK @ 652,636 CZK\nFees are 0.38497848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (78.316319995229557519209708560 CZK)\nThe limits being 0.10 % (111.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27769286 BTC (129,887.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 652,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 39.53 % (51,345.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,045.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17058497 BTC (111,329.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1201 transactions" + } + ] + }, + { + "id": 2663, + "type": "message", + "date": "2023-04-14T18:00:04", + "date_unixtime": "1681488004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017039 BTC for 109.61 CZK @ 643,290 CZK\nFees are 0.38497837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (102.92639999920461494108024344 CZK)\nThe limits being 0.10 % (109.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27786325 BTC (129,997.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.50 % (48,749.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,935.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17075536 BTC (109,845.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017039 BTC for 109.61 CZK @ 643,290 CZK\nFees are 0.38497837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (102.92639999920461494108024344 CZK)\nThe limits being 0.10 % (109.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27786325 BTC (129,997.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.50 % (48,749.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,935.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17075536 BTC (109,845.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1202 transactions" + } + ] + }, + { + "id": 2664, + "type": "message", + "date": "2023-04-14T22:00:04", + "date_unixtime": "1681502404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016982 BTC for 109.61 CZK @ 645,450 CZK\nFees are 0.38497884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (122.63549999275295856798930747 CZK)\nThe limits being 0.10 % (110.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27803307 BTC (130,107.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 467,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.93 % (49,349.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,825.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17092518 BTC (110,323.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016982 BTC for 109.61 CZK @ 645,450 CZK\nFees are 0.38497884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (122.63549999275295856798930747 CZK)\nThe limits being 0.10 % (110.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27803307 BTC (130,107.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 467,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.93 % (49,349.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,825.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17092518 BTC (110,323.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1203 transactions" + } + ] + }, + { + "id": 2665, + "type": "message", + "date": "2023-04-15T02:00:04", + "date_unixtime": "1681516804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016912 BTC for 109.61 CZK @ 648,130 CZK\nFees are 0.38498385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (136.10729998812104653580019600 CZK)\nThe limits being 0.10 % (110.89 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27820219 BTC (130,217.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.47 % (50,094.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,715.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17109430 BTC (110,891.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016912 BTC for 109.61 CZK @ 648,130 CZK\nFees are 0.38498385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (136.10729998812104653580019600 CZK)\nThe limits being 0.10 % (110.89 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27820219 BTC (130,217.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.47 % (50,094.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,715.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17109430 BTC (110,891.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1204 transactions" + } + ] + }, + { + "id": 2666, + "type": "message", + "date": "2023-04-15T06:00:04", + "date_unixtime": "1681531204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016953 BTC for 109.61 CZK @ 646,580 CZK\nFees are 0.38499426 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (129.31599999306385651752518048 CZK)\nThe limits being 0.10 % (110.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27837172 BTC (130,327.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.11 % (49,662.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,605.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17126383 BTC (110,735.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016953 BTC for 109.61 CZK @ 646,580 CZK\nFees are 0.38499426 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (129.31599999306385651752518048 CZK)\nThe limits being 0.10 % (110.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27837172 BTC (130,327.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.11 % (49,662.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,605.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17126383 BTC (110,735.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1205 transactions" + } + ] + }, + { + "id": 2667, + "type": "message", + "date": "2023-04-15T10:00:05", + "date_unixtime": "1681545605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016922 BTC for 109.61 CZK @ 647,760 CZK\nFees are 0.38499159 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (77.731199996325353874605174290 CZK)\nThe limits being 0.10 % (111.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27854094 BTC (130,437.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.33 % (49,990.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,495.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17143305 BTC (111,047.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016922 BTC for 109.61 CZK @ 647,760 CZK\nFees are 0.38499159 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (77.731199996325353874605174290 CZK)\nThe limits being 0.10 % (111.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27854094 BTC (130,437.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.33 % (49,990.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,495.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17143305 BTC (111,047.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1206 transactions" + } + ] + }, + { + "id": 2668, + "type": "message", + "date": "2023-04-15T14:00:03", + "date_unixtime": "1681560003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016904 BTC for 109.61 CZK @ 648,426 CZK\nFees are 0.38497748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.937039997962644233115944643 CZK)\nThe limits being 0.10 % (111.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27870998 BTC (130,547.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.43 % (50,175.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,385.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17160209 BTC (111,271.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016904 BTC for 109.61 CZK @ 648,426 CZK\nFees are 0.38497748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.937039997962644233115944643 CZK)\nThe limits being 0.10 % (111.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27870998 BTC (130,547.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.43 % (50,175.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,385.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17160209 BTC (111,271.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1207 transactions" + } + ] + }, + { + "id": 2669, + "type": "message", + "date": "2023-04-15T18:00:05", + "date_unixtime": "1681574405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016934 BTC for 109.61 CZK @ 647,285 CZK\nFees are 0.38498208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (32.364249998043342925954976644 CZK)\nThe limits being 0.10 % (111.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27887932 BTC (130,657.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.16 % (49,857.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,275.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17177143 BTC (111,185.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016934 BTC for 109.61 CZK @ 647,285 CZK\nFees are 0.38498208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (32.364249998043342925954976644 CZK)\nThe limits being 0.10 % (111.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27887932 BTC (130,657.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.16 % (49,857.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,275.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17177143 BTC (111,185.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1208 transactions" + } + ] + }, + { + "id": 2670, + "type": "message", + "date": "2023-04-15T22:00:03", + "date_unixtime": "1681588803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016935 BTC for 109.61 CZK @ 647,246 CZK\nFees are 0.38498162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (84.14197999590744469938327751 CZK)\nThe limits being 0.10 % (111.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27904867 BTC (130,767.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.12 % (49,846.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,165.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17194078 BTC (111,287.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016935 BTC for 109.61 CZK @ 647,246 CZK\nFees are 0.38498162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (84.14197999590744469938327751 CZK)\nThe limits being 0.10 % (111.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27904867 BTC (130,767.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.12 % (49,846.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,165.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17194078 BTC (111,287.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1209 transactions" + } + ] + }, + { + "id": 2671, + "type": "message", + "date": "2023-04-16T02:00:04", + "date_unixtime": "1681603204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016924 BTC for 109.62 CZK @ 647,690 CZK\nFees are 0.38499548 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (97.15349999593716956381805727 CZK)\nThe limits being 0.10 % (111.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27921791 BTC (130,877.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.18 % (49,969.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,055.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17211002 BTC (111,473.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016924 BTC for 109.62 CZK @ 647,690 CZK\nFees are 0.38499548 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (97.15349999593716956381805727 CZK)\nThe limits being 0.10 % (111.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27921791 BTC (130,877.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.18 % (49,969.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,055.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17211002 BTC (111,473.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1210 transactions" + } + ] + }, + { + "id": 2672, + "type": "message", + "date": "2023-04-16T06:00:03", + "date_unixtime": "1681617603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016941 BTC for 109.61 CZK @ 647,010 CZK\nFees are 0.38497760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (64.700999997441220647161179895 CZK)\nThe limits being 0.10 % (111.47 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27938732 BTC (130,987.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.00 % (49,779.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,945.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17227943 BTC (111,466.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016941 BTC for 109.61 CZK @ 647,010 CZK\nFees are 0.38497760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (64.700999997441220647161179895 CZK)\nThe limits being 0.10 % (111.47 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27938732 BTC (130,987.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.00 % (49,779.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,945.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17227943 BTC (111,466.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1211 transactions" + } + ] + }, + { + "id": 2673, + "type": "message", + "date": "2023-04-16T10:00:04", + "date_unixtime": "1681632004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016890 BTC for 109.62 CZK @ 649,000 CZK\nFees are 0.38499915 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.92000 CZK)\nThe limits being 0.10 % (111.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27955622 BTC (131,097.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 468,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.40 % (50,334.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,835.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17244833 BTC (111,918.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016890 BTC for 109.62 CZK @ 649,000 CZK\nFees are 0.38499915 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.92000 CZK)\nThe limits being 0.10 % (111.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27955622 BTC (131,097.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 468,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.40 % (50,334.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,835.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17244833 BTC (111,918.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1212 transactions" + } + ] + }, + { + "id": 2674, + "type": "message", + "date": "2023-04-16T14:00:04", + "date_unixtime": "1681646404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016922 BTC for 109.61 CZK @ 647,746 CZK\nFees are 0.38498327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.909839999194404503278826671 CZK)\nThe limits being 0.10 % (111.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27972544 BTC (131,207.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.10 % (49,983.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,725.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17261755 BTC (111,812.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016922 BTC for 109.61 CZK @ 647,746 CZK\nFees are 0.38498327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.909839999194404503278826671 CZK)\nThe limits being 0.10 % (111.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27972544 BTC (131,207.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.10 % (49,983.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,725.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17261755 BTC (111,812.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1213 transactions" + } + ] + }, + { + "id": 2675, + "type": "message", + "date": "2023-04-16T18:00:03", + "date_unixtime": "1681660803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016824 BTC for 109.61 CZK @ 651,510 CZK\nFees are 0.38497787 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (45.605699996517182727785134341 CZK)\nThe limits being 0.10 % (112.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.27989368 BTC (131,317.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 651,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.87 % (51,036.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,615.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17278579 BTC (112,571.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016824 BTC for 109.61 CZK @ 651,510 CZK\nFees are 0.38497787 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (45.605699996517182727785134341 CZK)\nThe limits being 0.10 % (112.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.27989368 BTC (131,317.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 651,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.87 % (51,036.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,615.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17278579 BTC (112,571.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1214 transactions" + } + ] + }, + { + "id": 2676, + "type": "message", + "date": "2023-04-16T22:00:04", + "date_unixtime": "1681675204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016867 BTC for 109.61 CZK @ 649,859 CZK\nFees are 0.38498375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.988719999359566471402383115 CZK)\nThe limits being 0.10 % (112.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28006235 BTC (131,427.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.48 % (50,573.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,505.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17295446 BTC (112,396.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016867 BTC for 109.61 CZK @ 649,859 CZK\nFees are 0.38498375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.988719999359566471402383115 CZK)\nThe limits being 0.10 % (112.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28006235 BTC (131,427.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.48 % (50,573.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,505.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17295446 BTC (112,396.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1215 transactions" + } + ] + }, + { + "id": 2677, + "type": "message", + "date": "2023-04-17T02:00:05", + "date_unixtime": "1681689605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016895 BTC for 109.61 CZK @ 648,782 CZK\nFees are 0.38498376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (77.853839995647078964376384339 CZK)\nThe limits being 0.10 % (112.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28023130 BTC (131,537.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.22 % (50,271.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,395.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17312341 BTC (112,319.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016895 BTC for 109.61 CZK @ 648,782 CZK\nFees are 0.38498376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (77.853839995647078964376384339 CZK)\nThe limits being 0.10 % (112.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28023130 BTC (131,537.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.22 % (50,271.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,395.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17312341 BTC (112,319.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1216 transactions" + } + ] + }, + { + "id": 2678, + "type": "message", + "date": "2023-04-17T06:04:45", + "date_unixtime": "1681704285", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017068 BTC for 109.61 CZK @ 642,202 CZK\nFees are 0.38498137 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.376159999645020258950714914 CZK)\nThe limits being 0.10 % (111.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28040198 BTC (131,647.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.79 % (48,427.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,285.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17329409 BTC (111,289.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017068 BTC for 109.61 CZK @ 642,202 CZK\nFees are 0.38498137 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.376159999645020258950714914 CZK)\nThe limits being 0.10 % (111.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28040198 BTC (131,647.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.79 % (48,427.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,285.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17329409 BTC (111,289.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1217 transactions" + } + ] + }, + { + "id": 2679, + "type": "message", + "date": "2023-04-17T10:00:04", + "date_unixtime": "1681718404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017008 BTC for 109.62 CZK @ 644,493 CZK\nFees are 0.38499658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.779719999287535957169661594 CZK)\nThe limits being 0.10 % (111.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28057206 BTC (131,757.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.24 % (49,069.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,175.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17346417 BTC (111,796.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017008 BTC for 109.62 CZK @ 644,493 CZK\nFees are 0.38499658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.779719999287535957169661594 CZK)\nThe limits being 0.10 % (111.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28057206 BTC (131,757.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.24 % (49,069.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,175.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17346417 BTC (111,796.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1218 transactions" + } + ] + }, + { + "id": 2680, + "type": "message", + "date": "2023-04-17T14:00:03", + "date_unixtime": "1681732803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017316 BTC for 109.61 CZK @ 633,007 CZK\nFees are 0.38498296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (18.990209999582196891613931973 CZK)\nThe limits being 0.10 % (109.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28074522 BTC (131,867.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 633,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.77 % (45,846.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,065.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17363733 BTC (109,913.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.18 CZK over 1219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017316 BTC for 109.61 CZK @ 633,007 CZK\nFees are 0.38498296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (18.990209999582196891613931973 CZK)\nThe limits being 0.10 % (109.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28074522 BTC (131,867.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 633,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.77 % (45,846.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,065.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17363733 BTC (109,913.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.18 CZK over 1219 transactions" + } + ] + }, + { + "id": 2681, + "type": "message", + "date": "2023-04-17T18:00:03", + "date_unixtime": "1681747203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017242 BTC for 109.61 CZK @ 635,715 CZK\nFees are 0.38497771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (76.285810381678277519229038696 CZK)\nThe limits being 0.10 % (110.49 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28091764 BTC (131,977.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.31 % (46,606.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 955.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17380975 BTC (110,493.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.18 CZK over 1220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017242 BTC for 109.61 CZK @ 635,715 CZK\nFees are 0.38497771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (76.285810381678277519229038696 CZK)\nThe limits being 0.10 % (110.49 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28091764 BTC (131,977.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.31 % (46,606.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 955.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17380975 BTC (110,493.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.18 CZK over 1220 transactions" + } + ] + }, + { + "id": 2682, + "type": "message", + "date": "2023-04-17T22:00:04", + "date_unixtime": "1681761604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017103 BTC for 109.61 CZK @ 640,892 CZK\nFees are 0.38498390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (96.13379999505327215122444187 CZK)\nThe limits being 0.10 % (111.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28108867 BTC (132,087.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 469,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.39 % (48,060.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 845.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17398078 BTC (111,502.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.18 CZK over 1221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017103 BTC for 109.61 CZK @ 640,892 CZK\nFees are 0.38498390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (96.13379999505327215122444187 CZK)\nThe limits being 0.10 % (111.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28108867 BTC (132,087.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 469,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.39 % (48,060.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 845.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17398078 BTC (111,502.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.18 CZK over 1221 transactions" + } + ] + }, + { + "id": 2683, + "type": "message", + "date": "2023-04-18T02:00:05", + "date_unixtime": "1681776005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017198 BTC for 109.61 CZK @ 637,347 CZK\nFees are 0.38498101 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (101.97551999099789879508242838 CZK)\nThe limits being 0.10 % (111.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28126065 BTC (132,197.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.60 % (47,063.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 735.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17415276 BTC (110,995.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.18 CZK over 1222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017198 BTC for 109.61 CZK @ 637,347 CZK\nFees are 0.38498101 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (101.97551999099789879508242838 CZK)\nThe limits being 0.10 % (111.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28126065 BTC (132,197.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.60 % (47,063.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 735.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17415276 BTC (110,995.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.18 CZK over 1222 transactions" + } + ] + }, + { + "id": 2684, + "type": "message", + "date": "2023-04-18T06:00:04", + "date_unixtime": "1681790404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017263 BTC for 109.61 CZK @ 634,965 CZK\nFees are 0.38499180 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (101.59439999277278987714926160 CZK)\nThe limits being 0.10 % (110.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28143328 BTC (132,307.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 634,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.06 % (46,393.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 625.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17432539 BTC (110,690.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.18 CZK over 1223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017263 BTC for 109.61 CZK @ 634,965 CZK\nFees are 0.38499180 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (101.59439999277278987714926160 CZK)\nThe limits being 0.10 % (110.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28143328 BTC (132,307.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 634,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.06 % (46,393.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 625.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17432539 BTC (110,690.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.18 CZK over 1223 transactions" + } + ] + }, + { + "id": 2685, + "type": "message", + "date": "2023-04-18T10:00:03", + "date_unixtime": "1681804803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017127 BTC for 109.61 CZK @ 639,999 CZK\nFees are 0.38498696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (31.999949999838540236165887426 CZK)\nThe limits being 0.10 % (111.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28160455 BTC (132,417.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.11 % (47,809.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 515.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17449666 BTC (111,677.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.18 CZK over 1224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017127 BTC for 109.61 CZK @ 639,999 CZK\nFees are 0.38498696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (31.999949999838540236165887426 CZK)\nThe limits being 0.10 % (111.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28160455 BTC (132,417.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.11 % (47,809.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 515.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17449666 BTC (111,677.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.18 CZK over 1224 transactions" + } + ] + }, + { + "id": 2686, + "type": "message", + "date": "2023-04-18T14:00:04", + "date_unixtime": "1681819204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016890 BTC for 109.62 CZK @ 649,000 CZK\nFees are 0.38499915 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.96000 CZK)\nThe limits being 0.10 % (113.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28177345 BTC (132,527.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.99 % (50,343.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 405.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17466556 BTC (113,357.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016890 BTC for 109.62 CZK @ 649,000 CZK\nFees are 0.38499915 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (25.96000 CZK)\nThe limits being 0.10 % (113.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28177345 BTC (132,527.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.99 % (50,343.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 405.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17466556 BTC (113,357.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1225 transactions" + } + ] + }, + { + "id": 2687, + "type": "message", + "date": "2023-04-18T18:00:04", + "date_unixtime": "1681833604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016947 BTC for 109.61 CZK @ 646,799 CZK\nFees are 0.38498835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.211909998489090625720228800 CZK)\nThe limits being 0.10 % (113.08 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28194292 BTC (132,637.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.49 % (49,723.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 295.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17483503 BTC (113,083.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016947 BTC for 109.61 CZK @ 646,799 CZK\nFees are 0.38498835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.211909998489090625720228800 CZK)\nThe limits being 0.10 % (113.08 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28194292 BTC (132,637.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.49 % (49,723.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 295.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17483503 BTC (113,083.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1226 transactions" + } + ] + }, + { + "id": 2688, + "type": "message", + "date": "2023-04-18T22:00:03", + "date_unixtime": "1681848003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016960 BTC for 109.61 CZK @ 646,309 CZK\nFees are 0.38499179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.167809998730857094508841696 CZK)\nThe limits being 0.10 % (113.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28211252 BTC (132,747.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.35 % (49,584.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 185.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17500463 BTC (113,107.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016960 BTC for 109.61 CZK @ 646,309 CZK\nFees are 0.38499179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.167809998730857094508841696 CZK)\nThe limits being 0.10 % (113.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28211252 BTC (132,747.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.35 % (49,584.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 185.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17500463 BTC (113,107.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1227 transactions" + } + ] + }, + { + "id": 2689, + "type": "message", + "date": "2023-04-19T02:00:05", + "date_unixtime": "1681862405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016864 BTC for 109.62 CZK @ 650,000 CZK\nFees are 0.38499880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (78.00000 CZK)\nThe limits being 0.10 % (113.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28228116 BTC (132,857.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.11 % (50,625.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 75.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17517327 BTC (113,862.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016864 BTC for 109.62 CZK @ 650,000 CZK\nFees are 0.38499880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (78.00000 CZK)\nThe limits being 0.10 % (113.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28228116 BTC (132,857.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.11 % (50,625.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 75.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17517327 BTC (113,862.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1228 transactions" + } + ] + }, + { + "id": 2690, + "type": "message", + "date": "2023-04-19T06:00:00", + "date_unixtime": "1681876800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2691, + "type": "message", + "date": "2023-04-19T10:00:00", + "date_unixtime": "1681891200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2692, + "type": "message", + "date": "2023-04-19T14:00:00", + "date_unixtime": "1681905600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2693, + "type": "message", + "date": "2023-04-19T18:00:00", + "date_unixtime": "1681920000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2694, + "type": "message", + "date": "2023-04-19T22:00:00", + "date_unixtime": "1681934400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2695, + "type": "message", + "date": "2023-04-20T02:00:00", + "date_unixtime": "1681948800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2696, + "type": "message", + "date": "2023-04-20T06:00:00", + "date_unixtime": "1681963200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2697, + "type": "message", + "date": "2023-04-20T10:00:00", + "date_unixtime": "1681977600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2698, + "type": "message", + "date": "2023-04-20T14:00:00", + "date_unixtime": "1681992000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (75.94050607 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2699, + "type": "message", + "date": "2023-04-20T18:00:04", + "date_unixtime": "1682006404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017886 BTC for 109.61 CZK @ 612,828 CZK\nFees are 0.38497918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (67.411079996151232065384928887 CZK)\nThe limits being 0.10 % (107.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28246002 BTC (132,966.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.18 % (40,132.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,965.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17535213 BTC (107,460.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017886 BTC for 109.61 CZK @ 612,828 CZK\nFees are 0.38497918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (67.411079996151232065384928887 CZK)\nThe limits being 0.10 % (107.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28246002 BTC (132,966.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.18 % (40,132.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,965.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17535213 BTC (107,460.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1229 transactions" + } + ] + }, + { + "id": 2700, + "type": "message", + "date": "2023-04-20T22:00:04", + "date_unixtime": "1682020804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018163 BTC for 109.61 CZK @ 603,486 CZK\nFees are 0.38498180 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (108.62747999246484685640669483 CZK)\nThe limits being 0.10 % (105.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28264165 BTC (133,076.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.17 % (37,493.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,855.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17553376 BTC (105,932.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018163 BTC for 109.61 CZK @ 603,486 CZK\nFees are 0.38498180 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (108.62747999246484685640669483 CZK)\nThe limits being 0.10 % (105.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28264165 BTC (133,076.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.17 % (37,493.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,855.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17553376 BTC (105,932.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1230 transactions" + } + ] + }, + { + "id": 2701, + "type": "message", + "date": "2023-04-21T02:00:04", + "date_unixtime": "1682035204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018073 BTC for 109.61 CZK @ 606,507 CZK\nFees are 0.38499181 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (115.23632999435853779188322529 CZK)\nThe limits being 0.10 % (106.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28282238 BTC (133,186.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 470,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.79 % (38,346.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,745.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17571449 BTC (106,572.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018073 BTC for 109.61 CZK @ 606,507 CZK\nFees are 0.38499181 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (115.23632999435853779188322529 CZK)\nThe limits being 0.10 % (106.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28282238 BTC (133,186.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 470,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.79 % (38,346.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,745.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17571449 BTC (106,572.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1231 transactions" + } + ] + }, + { + "id": 2702, + "type": "message", + "date": "2023-04-21T06:00:03", + "date_unixtime": "1682049603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018035 BTC for 109.61 CZK @ 607,777 CZK\nFees are 0.38498679 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (97.24431999396622494957695197 CZK)\nThe limits being 0.10 % (106.90 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28300273 BTC (133,296.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.04 % (38,705.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,635.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17589484 BTC (106,904.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018035 BTC for 109.61 CZK @ 607,777 CZK\nFees are 0.38498679 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (97.24431999396622494957695197 CZK)\nThe limits being 0.10 % (106.90 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28300273 BTC (133,296.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.04 % (38,705.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,635.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17589484 BTC (106,904.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1232 transactions" + } + ] + }, + { + "id": 2703, + "type": "message", + "date": "2023-04-21T10:00:06", + "date_unixtime": "1682064006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018082 BTC for 109.61 CZK @ 606,208 CZK\nFees are 0.38499363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (78.807039995013581212576025938 CZK)\nThe limits being 0.10 % (106.74 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28318355 BTC (133,406.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.68 % (38,261.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,525.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17607566 BTC (106,738.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018082 BTC for 109.61 CZK @ 606,208 CZK\nFees are 0.38499363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (78.807039995013581212576025938 CZK)\nThe limits being 0.10 % (106.74 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28318355 BTC (133,406.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.68 % (38,261.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,525.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17607566 BTC (106,738.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1233 transactions" + } + ] + }, + { + "id": 2704, + "type": "message", + "date": "2023-04-21T14:00:04", + "date_unixtime": "1682078404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018035 BTC for 109.61 CZK @ 607,777 CZK\nFees are 0.38498679 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (85.08877999472044683087983297 CZK)\nThe limits being 0.10 % (107.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28336390 BTC (133,516.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.99 % (38,705.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,415.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17625601 BTC (107,124.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018035 BTC for 109.61 CZK @ 607,777 CZK\nFees are 0.38498679 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (85.08877999472044683087983297 CZK)\nThe limits being 0.10 % (107.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28336390 BTC (133,516.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.99 % (38,705.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,415.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17625601 BTC (107,124.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1234 transactions" + } + ] + }, + { + "id": 2705, + "type": "message", + "date": "2023-04-21T18:00:04", + "date_unixtime": "1682092804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018214 BTC for 109.61 CZK @ 601,815 CZK\nFees are 0.38499382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (90.27224999643008556469398940 CZK)\nThe limits being 0.10 % (106.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28354604 BTC (133,626.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.70 % (37,015.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,305.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17643815 BTC (106,183.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018214 BTC for 109.61 CZK @ 601,815 CZK\nFees are 0.38499382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (90.27224999643008556469398940 CZK)\nThe limits being 0.10 % (106.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28354604 BTC (133,626.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.70 % (37,015.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,305.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17643815 BTC (106,183.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1235 transactions" + } + ] + }, + { + "id": 2706, + "type": "message", + "date": "2023-04-21T22:00:03", + "date_unixtime": "1682107203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018739 BTC for 109.61 CZK @ 584,951 CZK\nFees are 0.38499166 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (87.74264999392568403458379688 CZK)\nThe limits being 0.10 % (103.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28373343 BTC (133,736.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.10 % (32,233.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,195.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17662554 BTC (103,317.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018739 BTC for 109.61 CZK @ 584,951 CZK\nFees are 0.38499166 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (87.74264999392568403458379688 CZK)\nThe limits being 0.10 % (103.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28373343 BTC (133,736.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.10 % (32,233.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,195.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17662554 BTC (103,317.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1236 transactions" + } + ] + }, + { + "id": 2707, + "type": "message", + "date": "2023-04-22T02:00:04", + "date_unixtime": "1682121604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018761 BTC for 109.61 CZK @ 584,263 CZK\nFees are 0.38499030 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (81.79681999627815093205442377 CZK)\nThe limits being 0.10 % (103.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28392104 BTC (133,846.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.94 % (32,037.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,085.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17681315 BTC (103,305.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018761 BTC for 109.61 CZK @ 584,263 CZK\nFees are 0.38499030 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (81.79681999627815093205442377 CZK)\nThe limits being 0.10 % (103.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28392104 BTC (133,846.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.94 % (32,037.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,085.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17681315 BTC (103,305.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1237 transactions" + } + ] + }, + { + "id": 2708, + "type": "message", + "date": "2023-04-22T06:00:05", + "date_unixtime": "1682136005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018723 BTC for 109.61 CZK @ 585,442 CZK\nFees are 0.38498582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (58.544199994778729502022523794 CZK)\nThe limits being 0.10 % (103.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28410827 BTC (133,956.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.17 % (32,371.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,975.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17700038 BTC (103,623.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018723 BTC for 109.61 CZK @ 585,442 CZK\nFees are 0.38498582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (58.544199994778729502022523794 CZK)\nThe limits being 0.10 % (103.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28410827 BTC (133,956.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.17 % (32,371.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,975.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17700038 BTC (103,623.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1238 transactions" + } + ] + }, + { + "id": 2709, + "type": "message", + "date": "2023-04-22T10:00:04", + "date_unixtime": "1682150404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018684 BTC for 109.61 CZK @ 586,677 CZK\nFees are 0.38499434 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (23.467079998425549113747356316 CZK)\nThe limits being 0.10 % (103.95 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28429511 BTC (134,066.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.41 % (32,722.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,865.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17718722 BTC (103,951.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018684 BTC for 109.61 CZK @ 586,677 CZK\nFees are 0.38499434 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (23.467079998425549113747356316 CZK)\nThe limits being 0.10 % (103.95 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28429511 BTC (134,066.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.41 % (32,722.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,865.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17718722 BTC (103,951.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1239 transactions" + } + ] + }, + { + "id": 2710, + "type": "message", + "date": "2023-04-22T14:00:04", + "date_unixtime": "1682164804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018685 BTC for 109.61 CZK @ 586,633 CZK\nFees are 0.38498607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.197979998024041890311925388 CZK)\nThe limits being 0.10 % (104.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28448196 BTC (134,176.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.38 % (32,709.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,755.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17737407 BTC (104,053.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018685 BTC for 109.61 CZK @ 586,633 CZK\nFees are 0.38498607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.197979998024041890311925388 CZK)\nThe limits being 0.10 % (104.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28448196 BTC (134,176.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.38 % (32,709.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,755.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17737407 BTC (104,053.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1240 transactions" + } + ] + }, + { + "id": 2711, + "type": "message", + "date": "2023-04-22T18:00:07", + "date_unixtime": "1682179207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018541 BTC for 109.61 CZK @ 591,202 CZK\nFees are 0.38499445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (17.736059998408568768815106890 CZK)\nThe limits being 0.10 % (104.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28466737 BTC (134,286.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.33 % (34,008.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,645.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17755948 BTC (104,973.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018541 BTC for 109.61 CZK @ 591,202 CZK\nFees are 0.38499445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (17.736059998408568768815106890 CZK)\nThe limits being 0.10 % (104.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28466737 BTC (134,286.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.33 % (34,008.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,645.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17755948 BTC (104,973.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1241 transactions" + } + ] + }, + { + "id": 2712, + "type": "message", + "date": "2023-04-22T22:00:07", + "date_unixtime": "1682193607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018448 BTC for 109.61 CZK @ 594,165 CZK\nFees are 0.38498320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.649899997666450165098650820 CZK)\nThe limits being 0.10 % (105.61 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28485185 BTC (134,396.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.93 % (34,852.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,535.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17774396 BTC (105,609.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018448 BTC for 109.61 CZK @ 594,165 CZK\nFees are 0.38498320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.649899997666450165098650820 CZK)\nThe limits being 0.10 % (105.61 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28485185 BTC (134,396.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.93 % (34,852.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,535.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17774396 BTC (105,609.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1242 transactions" + } + ] + }, + { + "id": 2713, + "type": "message", + "date": "2023-04-23T02:00:04", + "date_unixtime": "1682208004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018317 BTC for 109.61 CZK @ 598,431 CZK\nFees are 0.38499390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (23.937239999576739369296505198 CZK)\nThe limits being 0.10 % (106.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28503502 BTC (134,506.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.81 % (36,066.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,425.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17792713 BTC (106,477.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018317 BTC for 109.61 CZK @ 598,431 CZK\nFees are 0.38499390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (23.937239999576739369296505198 CZK)\nThe limits being 0.10 % (106.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28503502 BTC (134,506.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.81 % (36,066.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,425.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17792713 BTC (106,477.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1243 transactions" + } + ] + }, + { + "id": 2714, + "type": "message", + "date": "2023-04-23T06:00:03", + "date_unixtime": "1682222403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018510 BTC for 109.61 CZK @ 592,184 CZK\nFees are 0.38498917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (23.687359999052478938517996305 CZK)\nThe limits being 0.10 % (105.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28522012 BTC (134,616.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 471,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.47 % (34,285.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,315.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17811223 BTC (105,475.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018510 BTC for 109.61 CZK @ 592,184 CZK\nFees are 0.38498917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.02 % (23.687359999052478938517996305 CZK)\nThe limits being 0.10 % (105.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28522012 BTC (134,616.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 471,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.47 % (34,285.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,315.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17811223 BTC (105,475.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1244 transactions" + } + ] + }, + { + "id": 2715, + "type": "message", + "date": "2023-04-23T10:00:04", + "date_unixtime": "1682236804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018324 BTC for 109.61 CZK @ 598,195 CZK\nFees are 0.38498914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.963899999858604467424481461 CZK)\nThe limits being 0.10 % (106.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28540336 BTC (134,726.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.72 % (35,999.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,205.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17829547 BTC (106,655.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.21 CZK over 1245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018324 BTC for 109.61 CZK @ 598,195 CZK\nFees are 0.38498914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.963899999858604467424481461 CZK)\nThe limits being 0.10 % (106.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28540336 BTC (134,726.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.72 % (35,999.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,205.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17829547 BTC (106,655.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.21 CZK over 1245 transactions" + } + ] + }, + { + "id": 2716, + "type": "message", + "date": "2023-04-23T14:00:05", + "date_unixtime": "1682251205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018392 BTC for 109.62 CZK @ 595,998 CZK\nFees are 0.38499863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.919959999722589033207609816 CZK)\nThe limits being 0.10 % (106.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28558728 BTC (134,836.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.23 % (35,372.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,095.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17847939 BTC (106,373.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018392 BTC for 109.62 CZK @ 595,998 CZK\nFees are 0.38499863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.01 % (11.919959999722589033207609816 CZK)\nThe limits being 0.10 % (106.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28558728 BTC (134,836.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.23 % (35,372.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,095.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17847939 BTC (106,373.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1246 transactions" + } + ] + }, + { + "id": 2717, + "type": "message", + "date": "2023-04-23T18:00:06", + "date_unixtime": "1682265606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018489 BTC for 109.61 CZK @ 592,855 CZK\nFees are 0.38498812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.428399998566324586862310542 CZK)\nThe limits being 0.10 % (105.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28577217 BTC (134,946.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.55 % (34,474.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,986.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17866428 BTC (105,922.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018489 BTC for 109.61 CZK @ 592,855 CZK\nFees are 0.38498812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.428399998566324586862310542 CZK)\nThe limits being 0.10 % (105.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28577217 BTC (134,946.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.55 % (34,474.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,986.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17866428 BTC (105,922.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1247 transactions" + } + ] + }, + { + "id": 2718, + "type": "message", + "date": "2023-04-23T22:00:04", + "date_unixtime": "1682280004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018495 BTC for 109.61 CZK @ 592,656 CZK\nFees are 0.38498379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (53.339039997478411932930606623 CZK)\nThe limits being 0.10 % (106.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28595712 BTC (135,056.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.48 % (34,417.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,876.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17884923 BTC (105,996.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018495 BTC for 109.61 CZK @ 592,656 CZK\nFees are 0.38498379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (53.339039997478411932930606623 CZK)\nThe limits being 0.10 % (106.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28595712 BTC (135,056.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.48 % (34,417.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,876.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17884923 BTC (105,996.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1248 transactions" + } + ] + }, + { + "id": 2719, + "type": "message", + "date": "2023-04-24T02:00:04", + "date_unixtime": "1682294404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018448 BTC for 109.61 CZK @ 594,159 CZK\nFees are 0.38497931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.532719998651726762056998252 CZK)\nThe limits being 0.10 % (106.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28614160 BTC (135,166.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.78 % (34,846.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,766.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17903371 BTC (106,374.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018448 BTC for 109.61 CZK @ 594,159 CZK\nFees are 0.38497931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.532719998651726762056998252 CZK)\nThe limits being 0.10 % (106.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28614160 BTC (135,166.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.78 % (34,846.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,766.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17903371 BTC (106,374.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1249 transactions" + } + ] + }, + { + "id": 2720, + "type": "message", + "date": "2023-04-24T06:00:03", + "date_unixtime": "1682308803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018307 BTC for 109.61 CZK @ 598,749 CZK\nFees are 0.38498819 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.937449997821303266719646692 CZK)\nThe limits being 0.10 % (107.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28632467 BTC (135,276.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.73 % (36,159.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,656.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17921678 BTC (107,305.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018307 BTC for 109.61 CZK @ 598,749 CZK\nFees are 0.38498819 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.937449997821303266719646692 CZK)\nThe limits being 0.10 % (107.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28632467 BTC (135,276.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.73 % (36,159.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,656.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17921678 BTC (107,305.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1250 transactions" + } + ] + }, + { + "id": 2721, + "type": "message", + "date": "2023-04-24T10:00:04", + "date_unixtime": "1682323204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018624 BTC for 109.62 CZK @ 588,574 CZK\nFees are 0.38499887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.085919997363180757383521933 CZK)\nThe limits being 0.10 % (105.59 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28651091 BTC (135,386.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.56 % (33,245.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,546.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17940302 BTC (105,591.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018624 BTC for 109.62 CZK @ 588,574 CZK\nFees are 0.38499887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.085919997363180757383521933 CZK)\nThe limits being 0.10 % (105.59 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28651091 BTC (135,386.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.56 % (33,245.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,546.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17940302 BTC (105,591.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1251 transactions" + } + ] + }, + { + "id": 2722, + "type": "message", + "date": "2023-04-24T14:00:05", + "date_unixtime": "1682337605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018624 BTC for 109.62 CZK @ 588,575 CZK\nFees are 0.38499953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (58.85749999571944928146675639 CZK)\nThe limits being 0.10 % (105.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28669715 BTC (135,496.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.54 % (33,245.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,436.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17958926 BTC (105,701.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018624 BTC for 109.62 CZK @ 588,575 CZK\nFees are 0.38499953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (58.85749999571944928146675639 CZK)\nThe limits being 0.10 % (105.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28669715 BTC (135,496.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.54 % (33,245.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,436.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17958926 BTC (105,701.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1252 transactions" + } + ] + }, + { + "id": 2723, + "type": "message", + "date": "2023-04-24T18:00:04", + "date_unixtime": "1682352004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018823 BTC for 109.61 CZK @ 582,328 CZK\nFees are 0.38498334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (58.232799995743527521390163911 CZK)\nThe limits being 0.10 % (104.69 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28688538 BTC (135,606.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.20 % (31,454.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,326.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17977749 BTC (104,689.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018823 BTC for 109.61 CZK @ 582,328 CZK\nFees are 0.38498334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (58.232799995743527521390163911 CZK)\nThe limits being 0.10 % (104.69 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28688538 BTC (135,606.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.20 % (31,454.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,326.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17977749 BTC (104,689.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1253 transactions" + } + ] + }, + { + "id": 2724, + "type": "message", + "date": "2023-04-24T22:00:05", + "date_unixtime": "1682366405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018785 BTC for 109.61 CZK @ 583,501 CZK\nFees are 0.38498005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (70.020120000015914488271618939 CZK)\nThe limits being 0.10 % (105.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28707323 BTC (135,716.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.42 % (31,790.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,216.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.17996534 BTC (105,009.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018785 BTC for 109.61 CZK @ 583,501 CZK\nFees are 0.38498005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (70.020120000015914488271618939 CZK)\nThe limits being 0.10 % (105.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28707323 BTC (135,716.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.42 % (31,790.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,216.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.17996534 BTC (105,009.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1254 transactions" + } + ] + }, + { + "id": 2725, + "type": "message", + "date": "2023-04-25T02:00:04", + "date_unixtime": "1682380804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018727 BTC for 109.61 CZK @ 585,322 CZK\nFees are 0.38498914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (93.65151999294188181914375672 CZK)\nThe limits being 0.10 % (105.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28726050 BTC (135,826.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.79 % (32,312.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,106.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18015261 BTC (105,447.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018727 BTC for 109.61 CZK @ 585,322 CZK\nFees are 0.38498914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (93.65151999294188181914375672 CZK)\nThe limits being 0.10 % (105.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28726050 BTC (135,826.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.79 % (32,312.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,106.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18015261 BTC (105,447.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1255 transactions" + } + ] + }, + { + "id": 2726, + "type": "message", + "date": "2023-04-25T06:00:04", + "date_unixtime": "1682395204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018824 BTC for 109.61 CZK @ 582,306 CZK\nFees are 0.38498925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (98.99201999546423895456425249 CZK)\nThe limits being 0.10 % (105.01 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28744874 BTC (135,936.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.13 % (31,446.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,996.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18034085 BTC (105,013.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018824 BTC for 109.61 CZK @ 582,306 CZK\nFees are 0.38498925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (98.99201999546423895456425249 CZK)\nThe limits being 0.10 % (105.01 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28744874 BTC (135,936.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.13 % (31,446.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,996.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18034085 BTC (105,013.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1256 transactions" + } + ] + }, + { + "id": 2727, + "type": "message", + "date": "2023-04-25T10:00:04", + "date_unixtime": "1682409604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018860 BTC for 109.61 CZK @ 581,195 CZK\nFees are 0.38498958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (87.17924999247067923983977606 CZK)\nThe limits being 0.10 % (104.92 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28763734 BTC (136,046.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 472,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.88 % (31,126.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,886.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18052945 BTC (104,922.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018860 BTC for 109.61 CZK @ 581,195 CZK\nFees are 0.38498958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (87.17924999247067923983977606 CZK)\nThe limits being 0.10 % (104.92 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28763734 BTC (136,046.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 472,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.88 % (31,126.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,886.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18052945 BTC (104,922.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1257 transactions" + } + ] + }, + { + "id": 2728, + "type": "message", + "date": "2023-04-25T14:00:04", + "date_unixtime": "1682424004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018712 BTC for 109.61 CZK @ 585,796 CZK\nFees are 0.38499229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.289799998317134151887802696 CZK)\nThe limits being 0.10 % (105.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28782446 BTC (136,156.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.83 % (32,449.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,776.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18071657 BTC (105,863.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018712 BTC for 109.61 CZK @ 585,796 CZK\nFees are 0.38499229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.289799998317134151887802696 CZK)\nThe limits being 0.10 % (105.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28782446 BTC (136,156.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.83 % (32,449.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,776.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18071657 BTC (105,863.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1258 transactions" + } + ] + }, + { + "id": 2729, + "type": "message", + "date": "2023-04-25T18:00:04", + "date_unixtime": "1682438404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018676 BTC for 109.61 CZK @ 586,923 CZK\nFees are 0.38499086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (99.77690999258004992805753860 CZK)\nThe limits being 0.10 % (106.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28801122 BTC (136,266.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.05 % (32,773.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,666.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18090333 BTC (106,176.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018676 BTC for 109.61 CZK @ 586,923 CZK\nFees are 0.38499086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (99.77690999258004992805753860 CZK)\nThe limits being 0.10 % (106.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28801122 BTC (136,266.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.05 % (32,773.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,666.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18090333 BTC (106,176.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1259 transactions" + } + ] + }, + { + "id": 2730, + "type": "message", + "date": "2023-04-25T22:00:05", + "date_unixtime": "1682452805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018463 BTC for 109.61 CZK @ 593,688 CZK\nFees are 0.38498691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (106.86383999607504914082194203 CZK)\nThe limits being 0.10 % (107.51 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28819585 BTC (136,376.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.46 % (34,721.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,556.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18108796 BTC (107,509.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018463 BTC for 109.61 CZK @ 593,688 CZK\nFees are 0.38498691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (106.86383999607504914082194203 CZK)\nThe limits being 0.10 % (107.51 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28819585 BTC (136,376.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.46 % (34,721.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,556.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18108796 BTC (107,509.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1260 transactions" + } + ] + }, + { + "id": 2731, + "type": "message", + "date": "2023-04-26T02:00:04", + "date_unixtime": "1682467204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018034 BTC for 109.61 CZK @ 607,805 CZK\nFees are 0.38498318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (109.40489999209266403121955489 CZK)\nThe limits being 0.10 % (110.18 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28837619 BTC (136,486.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.42 % (38,789.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,446.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18126830 BTC (110,175.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018034 BTC for 109.61 CZK @ 607,805 CZK\nFees are 0.38498318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (109.40489999209266403121955489 CZK)\nThe limits being 0.10 % (110.18 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28837619 BTC (136,486.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.42 % (38,789.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,446.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18126830 BTC (110,175.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1261 transactions" + } + ] + }, + { + "id": 2732, + "type": "message", + "date": "2023-04-26T06:00:03", + "date_unixtime": "1682481603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018009 BTC for 109.61 CZK @ 608,643 CZK\nFees are 0.38497954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (103.46930999760596920163624106 CZK)\nThe limits being 0.10 % (110.44 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28855628 BTC (136,596.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.57 % (39,030.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,336.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18144839 BTC (110,437.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018009 BTC for 109.61 CZK @ 608,643 CZK\nFees are 0.38497954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (103.46930999760596920163624106 CZK)\nThe limits being 0.10 % (110.44 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28855628 BTC (136,596.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.57 % (39,030.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,336.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18144839 BTC (110,437.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1262 transactions" + } + ] + }, + { + "id": 2733, + "type": "message", + "date": "2023-04-26T10:00:03", + "date_unixtime": "1682496003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018108 BTC for 109.61 CZK @ 605,325 CZK\nFees are 0.38498563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (54.479249995790082623343149871 CZK)\nThe limits being 0.10 % (109.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28873736 BTC (136,706.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.85 % (38,073.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,226.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18162947 BTC (109,944.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018108 BTC for 109.61 CZK @ 605,325 CZK\nFees are 0.38498563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (54.479249995790082623343149871 CZK)\nThe limits being 0.10 % (109.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28873736 BTC (136,706.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.85 % (38,073.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,226.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18162947 BTC (109,944.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1263 transactions" + } + ] + }, + { + "id": 2734, + "type": "message", + "date": "2023-04-26T14:00:03", + "date_unixtime": "1682510403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017755 BTC for 109.61 CZK @ 617,349 CZK\nFees are 0.38497883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (98.77583999791212311401786229 CZK)\nThe limits being 0.10 % (112.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28891491 BTC (136,816.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 617,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.37 % (41,544.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,116.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18180702 BTC (112,238.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017755 BTC for 109.61 CZK @ 617,349 CZK\nFees are 0.38497883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (98.77583999791212311401786229 CZK)\nThe limits being 0.10 % (112.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28891491 BTC (136,816.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 617,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.37 % (41,544.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,116.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18180702 BTC (112,238.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1264 transactions" + } + ] + }, + { + "id": 2735, + "type": "message", + "date": "2023-04-26T18:00:05", + "date_unixtime": "1682524805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017233 BTC for 109.61 CZK @ 636,050 CZK\nFees are 0.38497947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (127.20999999103699923823167396 CZK)\nThe limits being 0.10 % (115.75 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28908724 BTC (136,926.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.29 % (46,947.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,006.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18197935 BTC (115,747.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017233 BTC for 109.61 CZK @ 636,050 CZK\nFees are 0.38497947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (127.20999999103699923823167396 CZK)\nThe limits being 0.10 % (115.75 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28908724 BTC (136,926.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.29 % (46,947.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,006.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18197935 BTC (115,747.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1265 transactions" + } + ] + }, + { + "id": 2736, + "type": "message", + "date": "2023-04-26T22:00:03", + "date_unixtime": "1682539203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018386 BTC for 109.62 CZK @ 596,189 CZK\nFees are 0.38499637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (137.12346999577406413569042671 CZK)\nThe limits being 0.10 % (108.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28927110 BTC (137,036.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.85 % (35,423.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 896.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18216321 BTC (108,603.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.24 CZK over 1266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018386 BTC for 109.62 CZK @ 596,189 CZK\nFees are 0.38499637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (137.12346999577406413569042671 CZK)\nThe limits being 0.10 % (108.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28927110 BTC (137,036.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.85 % (35,423.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 896.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18216321 BTC (108,603.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.24 CZK over 1266 transactions" + } + ] + }, + { + "id": 2737, + "type": "message", + "date": "2023-04-27T02:00:05", + "date_unixtime": "1682553605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018064 BTC for 109.61 CZK @ 606,792 CZK\nFees are 0.38498091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (157.7659199941480284019218828 CZK)\nThe limits being 0.10 % (110.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28945174 BTC (137,146.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.06 % (38,490.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 786.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18234385 BTC (110,644.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018064 BTC for 109.61 CZK @ 606,792 CZK\nFees are 0.38498091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (157.7659199941480284019218828 CZK)\nThe limits being 0.10 % (110.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28945174 BTC (137,146.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.06 % (38,490.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 786.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18234385 BTC (110,644.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1267 transactions" + } + ] + }, + { + "id": 2738, + "type": "message", + "date": "2023-04-27T06:00:03", + "date_unixtime": "1682568003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017772 BTC for 109.62 CZK @ 616,787 CZK\nFees are 0.38499664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (154.19674998634645946031114821 CZK)\nThe limits being 0.10 % (112.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28962946 BTC (137,256.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.15 % (41,382.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 676.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18252157 BTC (112,576.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017772 BTC for 109.62 CZK @ 616,787 CZK\nFees are 0.38499664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (154.19674998634645946031114821 CZK)\nThe limits being 0.10 % (112.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28962946 BTC (137,256.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.15 % (41,382.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 676.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18252157 BTC (112,576.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1268 transactions" + } + ] + }, + { + "id": 2739, + "type": "message", + "date": "2023-04-27T10:00:04", + "date_unixtime": "1682582404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017779 BTC for 109.61 CZK @ 616,534 CZK\nFees are 0.38499030 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.47213998880626284297214656 CZK)\nThe limits being 0.10 % (112.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28980725 BTC (137,366.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 473,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.07 % (41,309.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 566.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18269936 BTC (112,640.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017779 BTC for 109.61 CZK @ 616,534 CZK\nFees are 0.38499030 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.47213998880626284297214656 CZK)\nThe limits being 0.10 % (112.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28980725 BTC (137,366.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 473,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.07 % (41,309.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 566.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18269936 BTC (112,640.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1269 transactions" + } + ] + }, + { + "id": 2740, + "type": "message", + "date": "2023-04-27T14:00:04", + "date_unixtime": "1682596804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017751 BTC for 109.61 CZK @ 617,504 CZK\nFees are 0.38498873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (117.32575999718409935683111476 CZK)\nThe limits being 0.10 % (112.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.28998476 BTC (137,476.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 617,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.25 % (41,589.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 456.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18287687 BTC (112,927.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017751 BTC for 109.61 CZK @ 617,504 CZK\nFees are 0.38498873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (117.32575999718409935683111476 CZK)\nThe limits being 0.10 % (112.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.28998476 BTC (137,476.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 617,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.25 % (41,589.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 456.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18287687 BTC (112,927.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1270 transactions" + } + ] + }, + { + "id": 2741, + "type": "message", + "date": "2023-04-27T18:00:04", + "date_unixtime": "1682611204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017593 BTC for 109.62 CZK @ 623,066 CZK\nFees are 0.38499880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (155.76649999316041328776214415 CZK)\nThe limits being 0.10 % (114.05 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29016069 BTC (137,586.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.40 % (43,202.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 346.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18305280 BTC (114,053.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017593 BTC for 109.62 CZK @ 623,066 CZK\nFees are 0.38499880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (155.76649999316041328776214415 CZK)\nThe limits being 0.10 % (114.05 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29016069 BTC (137,586.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.40 % (43,202.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 346.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18305280 BTC (114,053.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1271 transactions" + } + ] + }, + { + "id": 2742, + "type": "message", + "date": "2023-04-27T22:00:04", + "date_unixtime": "1682625604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017305 BTC for 109.61 CZK @ 633,427 CZK\nFees are 0.38499368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (177.35955998673812416438449247 CZK)\nThe limits being 0.10 % (116.06 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29033374 BTC (137,696.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 633,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.56 % (46,208.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 236.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18322585 BTC (116,060.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017305 BTC for 109.61 CZK @ 633,427 CZK\nFees are 0.38499368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (177.35955998673812416438449247 CZK)\nThe limits being 0.10 % (116.06 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29033374 BTC (137,696.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 633,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.56 % (46,208.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 236.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18322585 BTC (116,060.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1272 transactions" + } + ] + }, + { + "id": 2743, + "type": "message", + "date": "2023-04-28T02:00:03", + "date_unixtime": "1682640003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017428 BTC for 109.61 CZK @ 628,942 CZK\nFees are 0.38498479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (188.68259999801017759851078947 CZK)\nThe limits being 0.10 % (115.35 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29050802 BTC (137,806.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.59 % (44,905.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 126.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18340013 BTC (115,348.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017428 BTC for 109.61 CZK @ 628,942 CZK\nFees are 0.38498479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (188.68259999801017759851078947 CZK)\nThe limits being 0.10 % (115.35 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29050802 BTC (137,806.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.59 % (44,905.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 126.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18340013 BTC (115,348.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1273 transactions" + } + ] + }, + { + "id": 2744, + "type": "message", + "date": "2023-04-28T06:00:04", + "date_unixtime": "1682654404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017451 BTC for 109.61 CZK @ 628,126 CZK\nFees are 0.38499271 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (188.43779998473624932642918429 CZK)\nThe limits being 0.10 % (115.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29068253 BTC (137,916.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.39 % (44,668.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18357464 BTC (115,308.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017451 BTC for 109.61 CZK @ 628,126 CZK\nFees are 0.38499271 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (188.43779998473624932642918429 CZK)\nThe limits being 0.10 % (115.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29068253 BTC (137,916.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.39 % (44,668.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18357464 BTC (115,308.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1274 transactions" + } + ] + }, + { + "id": 2745, + "type": "message", + "date": "2023-04-28T10:00:01", + "date_unixtime": "1682668801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2746, + "type": "message", + "date": "2023-04-28T14:00:00", + "date_unixtime": "1682683200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2747, + "type": "message", + "date": "2023-04-28T18:00:00", + "date_unixtime": "1682697600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2748, + "type": "message", + "date": "2023-04-28T22:00:00", + "date_unixtime": "1682712000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2749, + "type": "message", + "date": "2023-04-29T02:00:01", + "date_unixtime": "1682726401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2750, + "type": "message", + "date": "2023-04-29T06:00:00", + "date_unixtime": "1682740800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2751, + "type": "message", + "date": "2023-04-29T10:00:00", + "date_unixtime": "1682755200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2752, + "type": "message", + "date": "2023-04-29T14:00:00", + "date_unixtime": "1682769600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2753, + "type": "message", + "date": "2023-04-29T18:00:00", + "date_unixtime": "1682784000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2754, + "type": "message", + "date": "2023-04-29T22:00:00", + "date_unixtime": "1682798400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2755, + "type": "message", + "date": "2023-04-30T02:00:01", + "date_unixtime": "1682812801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2756, + "type": "message", + "date": "2023-04-30T06:00:00", + "date_unixtime": "1682827200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2757, + "type": "message", + "date": "2023-04-30T10:00:00", + "date_unixtime": "1682841600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2758, + "type": "message", + "date": "2023-04-30T14:00:00", + "date_unixtime": "1682856000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2759, + "type": "message", + "date": "2023-04-30T18:00:00", + "date_unixtime": "1682870400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2760, + "type": "message", + "date": "2023-04-30T22:00:00", + "date_unixtime": "1682884800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2761, + "type": "message", + "date": "2023-05-01T02:00:00", + "date_unixtime": "1682899200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2762, + "type": "message", + "date": "2023-05-01T06:00:01", + "date_unixtime": "1682913601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2763, + "type": "message", + "date": "2023-05-01T10:00:00", + "date_unixtime": "1682928000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2764, + "type": "message", + "date": "2023-05-01T14:00:00", + "date_unixtime": "1682942400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2765, + "type": "message", + "date": "2023-05-01T18:00:00", + "date_unixtime": "1682956800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2766, + "type": "message", + "date": "2023-05-01T22:00:00", + "date_unixtime": "1682971200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2767, + "type": "message", + "date": "2023-05-02T02:00:00", + "date_unixtime": "1682985600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2768, + "type": "message", + "date": "2023-05-02T06:00:00", + "date_unixtime": "1683000000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.08927624 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2769, + "type": "message", + "date": "2023-05-02T10:00:05", + "date_unixtime": "1683014405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018097 BTC for 109.61 CZK @ 605,707 CZK\nFees are 0.38499457 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (254.39693998782346552496994894 CZK)\nThe limits being 0.10 % (111.30 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29086350 BTC (138,026.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.64 % (38,151.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,906.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18375561 BTC (111,302.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018097 BTC for 109.61 CZK @ 605,707 CZK\nFees are 0.38499457 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (254.39693998782346552496994894 CZK)\nThe limits being 0.10 % (111.30 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29086350 BTC (138,026.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.64 % (38,151.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,906.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18375561 BTC (111,302.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1275 transactions" + } + ] + }, + { + "id": 2770, + "type": "message", + "date": "2023-05-02T14:00:05", + "date_unixtime": "1683028805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018104 BTC for 109.61 CZK @ 605,471 CZK\nFees are 0.38499342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (290.62607998826907414856662750 CZK)\nThe limits being 0.10 % (111.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29104454 BTC (138,136.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.57 % (38,082.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,796.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18393665 BTC (111,368.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018104 BTC for 109.61 CZK @ 605,471 CZK\nFees are 0.38499342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.26 % (290.62607998826907414856662750 CZK)\nThe limits being 0.10 % (111.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29104454 BTC (138,136.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.57 % (38,082.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,796.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18393665 BTC (111,368.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1276 transactions" + } + ] + }, + { + "id": 2771, + "type": "message", + "date": "2023-05-02T18:00:03", + "date_unixtime": "1683043203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017874 BTC for 109.61 CZK @ 613,264 CZK\nFees are 0.38499461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (374.09103998041095842296172862 CZK)\nThe limits being 0.10 % (112.91 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29122328 BTC (138,246.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.19 % (40,349.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,686.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18411539 BTC (112,911.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017874 BTC for 109.61 CZK @ 613,264 CZK\nFees are 0.38499461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (374.09103998041095842296172862 CZK)\nThe limits being 0.10 % (112.91 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29122328 BTC (138,246.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.19 % (40,349.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,686.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18411539 BTC (112,911.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1277 transactions" + } + ] + }, + { + "id": 2772, + "type": "message", + "date": "2023-05-02T22:00:07", + "date_unixtime": "1683057607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017776 BTC for 109.61 CZK @ 616,621 CZK\nFees are 0.38497965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (561.12510999306208647770606659 CZK)\nThe limits being 0.10 % (113.64 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29140104 BTC (138,356.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.87 % (41,327.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,576.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18429315 BTC (113,639.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017776 BTC for 109.61 CZK @ 616,621 CZK\nFees are 0.38497965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (561.12510999306208647770606659 CZK)\nThe limits being 0.10 % (113.64 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29140104 BTC (138,356.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.87 % (41,327.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,576.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18429315 BTC (113,639.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1278 transactions" + } + ] + }, + { + "id": 2773, + "type": "message", + "date": "2023-05-03T02:00:07", + "date_unixtime": "1683072007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017800 BTC for 109.61 CZK @ 615,802 CZK\nFees are 0.38498740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (585.01189996808921583446700592 CZK)\nThe limits being 0.10 % (113.60 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29157904 BTC (138,466.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.67 % (41,088.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,466.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18447115 BTC (113,597.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017800 BTC for 109.61 CZK @ 615,802 CZK\nFees are 0.38498740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.51 % (585.01189996808921583446700592 CZK)\nThe limits being 0.10 % (113.60 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29157904 BTC (138,466.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.67 % (41,088.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,466.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18447115 BTC (113,597.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1279 transactions" + } + ] + }, + { + "id": 2774, + "type": "message", + "date": "2023-05-03T06:00:04", + "date_unixtime": "1683086404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017912 BTC for 109.61 CZK @ 611,956 CZK\nFees are 0.38499022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (587.47775997051854908000648914 CZK)\nThe limits being 0.10 % (113.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29175816 BTC (138,576.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 474,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.84 % (39,966.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,356.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18465027 BTC (112,997.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017912 BTC for 109.61 CZK @ 611,956 CZK\nFees are 0.38499022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (587.47775997051854908000648914 CZK)\nThe limits being 0.10 % (113.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29175816 BTC (138,576.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 474,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.84 % (39,966.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,356.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18465027 BTC (112,997.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1280 transactions" + } + ] + }, + { + "id": 2775, + "type": "message", + "date": "2023-05-03T10:00:04", + "date_unixtime": "1683100804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017840 BTC for 109.61 CZK @ 614,431 CZK\nFees are 0.38499349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (589.85375996568065582121766644 CZK)\nThe limits being 0.10 % (113.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29193656 BTC (138,686.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.34 % (40,688.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,246.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18482867 BTC (113,564.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017840 BTC for 109.61 CZK @ 614,431 CZK\nFees are 0.38499349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (589.85375996568065582121766644 CZK)\nThe limits being 0.10 % (113.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29193656 BTC (138,686.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.34 % (40,688.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,246.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18482867 BTC (113,564.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1281 transactions" + } + ] + }, + { + "id": 2776, + "type": "message", + "date": "2023-05-03T14:00:04", + "date_unixtime": "1683115204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017915 BTC for 109.62 CZK @ 611,868 CZK\nFees are 0.38499933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (526.20647998708400030537828733 CZK)\nThe limits being 0.10 % (113.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29211571 BTC (138,796.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.78 % (39,939.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,136.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18500782 BTC (113,200.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017915 BTC for 109.62 CZK @ 611,868 CZK\nFees are 0.38499933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (526.20647998708400030537828733 CZK)\nThe limits being 0.10 % (113.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29211571 BTC (138,796.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.78 % (39,939.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,136.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18500782 BTC (113,200.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1282 transactions" + } + ] + }, + { + "id": 2777, + "type": "message", + "date": "2023-05-03T18:00:04", + "date_unixtime": "1683129604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018102 BTC for 109.61 CZK @ 605,521 CZK\nFees are 0.38498268 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (411.75428000011230167400508560 CZK)\nThe limits being 0.10 % (112.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29229673 BTC (138,906.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.42 % (38,084.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,026.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18518884 BTC (112,135.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018102 BTC for 109.61 CZK @ 605,521 CZK\nFees are 0.38498268 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.37 % (411.75428000011230167400508560 CZK)\nThe limits being 0.10 % (112.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29229673 BTC (138,906.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.42 % (38,084.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,026.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18518884 BTC (112,135.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1283 transactions" + } + ] + }, + { + "id": 2778, + "type": "message", + "date": "2023-05-03T22:00:05", + "date_unixtime": "1683144005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018139 BTC for 109.61 CZK @ 604,288 CZK\nFees are 0.38498405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (543.85919999446229502766009466 CZK)\nThe limits being 0.10 % (112.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29247812 BTC (139,016.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.14 % (37,724.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,916.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18537023 BTC (112,017.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018139 BTC for 109.61 CZK @ 604,288 CZK\nFees are 0.38498405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.49 % (543.85919999446229502766009466 CZK)\nThe limits being 0.10 % (112.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29247812 BTC (139,016.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.14 % (37,724.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,916.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18537023 BTC (112,017.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1284 transactions" + } + ] + }, + { + "id": 2779, + "type": "message", + "date": "2023-05-04T02:00:05", + "date_unixtime": "1683158405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017731 BTC for 109.61 CZK @ 618,209 CZK\nFees are 0.38499401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (377.10748999223489317477374674 CZK)\nThe limits being 0.10 % (114.71 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29265543 BTC (139,126.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 618,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.04 % (41,795.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,806.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18554754 BTC (114,707.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017731 BTC for 109.61 CZK @ 618,209 CZK\nFees are 0.38499401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.33 % (377.10748999223489317477374674 CZK)\nThe limits being 0.10 % (114.71 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29265543 BTC (139,126.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 618,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.04 % (41,795.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,806.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18554754 BTC (114,707.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1285 transactions" + } + ] + }, + { + "id": 2780, + "type": "message", + "date": "2023-05-04T06:00:04", + "date_unixtime": "1683172804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017702 BTC for 109.61 CZK @ 619,218 CZK\nFees are 0.38499167 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (272.45591998449444569135131322 CZK)\nThe limits being 0.10 % (115.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29283245 BTC (139,236.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.23 % (42,090.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,696.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18572456 BTC (115,003.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017702 BTC for 109.61 CZK @ 619,218 CZK\nFees are 0.38499167 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.24 % (272.45591998449444569135131322 CZK)\nThe limits being 0.10 % (115.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29283245 BTC (139,236.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.23 % (42,090.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,696.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18572456 BTC (115,003.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1286 transactions" + } + ] + }, + { + "id": 2781, + "type": "message", + "date": "2023-05-04T10:00:04", + "date_unixtime": "1683187204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017706 BTC for 109.61 CZK @ 619,069 CZK\nFees are 0.38498600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (74.288280000006753725566076171 CZK)\nThe limits being 0.10 % (115.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29300951 BTC (139,346.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.17 % (42,046.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,586.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18590162 BTC (115,085.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017706 BTC for 109.61 CZK @ 619,069 CZK\nFees are 0.38498600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (74.288280000006753725566076171 CZK)\nThe limits being 0.10 % (115.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29300951 BTC (139,346.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.17 % (42,046.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,586.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18590162 BTC (115,085.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1287 transactions" + } + ] + }, + { + "id": 2782, + "type": "message", + "date": "2023-05-04T14:00:04", + "date_unixtime": "1683201604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017693 BTC for 109.61 CZK @ 619,514 CZK\nFees are 0.38497987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (173.46391999673555374816976845 CZK)\nThe limits being 0.10 % (115.28 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29318644 BTC (139,456.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.24 % (42,176.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,476.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18607855 BTC (115,278.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017693 BTC for 109.61 CZK @ 619,514 CZK\nFees are 0.38497987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (173.46391999673555374816976845 CZK)\nThe limits being 0.10 % (115.28 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29318644 BTC (139,456.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.24 % (42,176.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,476.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18607855 BTC (115,278.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1288 transactions" + } + ] + }, + { + "id": 2783, + "type": "message", + "date": "2023-05-04T18:00:03", + "date_unixtime": "1683216003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017776 BTC for 109.61 CZK @ 616,644 CZK\nFees are 0.38499401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (591.97823999440302774672086041 CZK)\nThe limits being 0.10 % (114.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29336420 BTC (139,566.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.62 % (41,334.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,366.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18625631 BTC (114,853.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017776 BTC for 109.61 CZK @ 616,644 CZK\nFees are 0.38499401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.52 % (591.97823999440302774672086041 CZK)\nThe limits being 0.10 % (114.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29336420 BTC (139,566.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.62 % (41,334.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,366.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18625631 BTC (114,853.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1289 transactions" + } + ] + }, + { + "id": 2784, + "type": "message", + "date": "2023-05-04T22:00:05", + "date_unixtime": "1683230405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017794 BTC for 109.61 CZK @ 616,018 CZK\nFees are 0.38499262 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (172.48503999965502331140771267 CZK)\nThe limits being 0.10 % (114.85 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29354214 BTC (139,676.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.46 % (41,150.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,256.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18643425 BTC (114,846.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017794 BTC for 109.61 CZK @ 616,018 CZK\nFees are 0.38499262 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (172.48503999965502331140771267 CZK)\nThe limits being 0.10 % (114.85 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29354214 BTC (139,676.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.46 % (41,150.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,256.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18643425 BTC (114,846.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1290 transactions" + } + ] + }, + { + "id": 2785, + "type": "message", + "date": "2023-05-05T02:00:04", + "date_unixtime": "1683244804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017812 BTC for 109.62 CZK @ 615,401 CZK\nFees are 0.38499608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.23420999833168683915749178 CZK)\nThe limits being 0.10 % (114.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29372026 BTC (139,786.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 475,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.31 % (40,968.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,146.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18661237 BTC (114,841.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017812 BTC for 109.62 CZK @ 615,401 CZK\nFees are 0.38499608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.23420999833168683915749178 CZK)\nThe limits being 0.10 % (114.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29372026 BTC (139,786.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 475,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.31 % (40,968.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,146.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18661237 BTC (114,841.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1291 transactions" + } + ] + }, + { + "id": 2786, + "type": "message", + "date": "2023-05-05T06:00:06", + "date_unixtime": "1683259206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017629 BTC for 109.61 CZK @ 621,774 CZK\nFees are 0.38498664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (130.57253999452763362719109810 CZK)\nThe limits being 0.10 % (116.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29389655 BTC (139,896.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.62 % (42,840.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,036.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18678866 BTC (116,140.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017629 BTC for 109.61 CZK @ 621,774 CZK\nFees are 0.38498664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (130.57253999452763362719109810 CZK)\nThe limits being 0.10 % (116.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29389655 BTC (139,896.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.62 % (42,840.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,036.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18678866 BTC (116,140.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1292 transactions" + } + ] + }, + { + "id": 2787, + "type": "message", + "date": "2023-05-05T10:00:05", + "date_unixtime": "1683273605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017687 BTC for 109.61 CZK @ 619,733 CZK\nFees are 0.38498536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (111.55193999494447671404170325 CZK)\nThe limits being 0.10 % (115.87 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29407342 BTC (140,006.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.17 % (42,240.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,926.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18696553 BTC (115,868.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017687 BTC for 109.61 CZK @ 619,733 CZK\nFees are 0.38498536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (111.55193999494447671404170325 CZK)\nThe limits being 0.10 % (115.87 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29407342 BTC (140,006.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.17 % (42,240.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,926.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18696553 BTC (115,868.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1293 transactions" + } + ] + }, + { + "id": 2788, + "type": "message", + "date": "2023-05-05T14:00:04", + "date_unixtime": "1683288004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017632 BTC for 109.61 CZK @ 621,659 CZK\nFees are 0.38498094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (105.68202999800154992914997147 CZK)\nThe limits being 0.10 % (116.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29424974 BTC (140,116.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.55 % (42,806.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,816.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18714185 BTC (116,338.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017632 BTC for 109.61 CZK @ 621,659 CZK\nFees are 0.38498094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (105.68202999800154992914997147 CZK)\nThe limits being 0.10 % (116.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29424974 BTC (140,116.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.55 % (42,806.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,816.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18714185 BTC (116,338.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1294 transactions" + } + ] + }, + { + "id": 2789, + "type": "message", + "date": "2023-05-05T18:00:04", + "date_unixtime": "1683302404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017559 BTC for 109.61 CZK @ 624,265 CZK\nFees are 0.38499417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (131.09563860675232789797472046 CZK)\nThe limits being 0.10 % (116.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29442533 BTC (140,226.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.07 % (43,572.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,706.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18731744 BTC (116,935.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017559 BTC for 109.61 CZK @ 624,265 CZK\nFees are 0.38499417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (131.09563860675232789797472046 CZK)\nThe limits being 0.10 % (116.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29442533 BTC (140,226.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.07 % (43,572.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,706.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18731744 BTC (116,935.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1295 transactions" + } + ] + }, + { + "id": 2790, + "type": "message", + "date": "2023-05-05T22:00:04", + "date_unixtime": "1683316804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017426 BTC for 109.61 CZK @ 629,003 CZK\nFees are 0.38497794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (157.25074998608965945027363484 CZK)\nThe limits being 0.10 % (117.93 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29459959 BTC (140,336.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 629,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.04 % (44,967.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,596.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18749170 BTC (117,932.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.28 CZK over 1296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017426 BTC for 109.61 CZK @ 629,003 CZK\nFees are 0.38497794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (157.25074998608965945027363484 CZK)\nThe limits being 0.10 % (117.93 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29459959 BTC (140,336.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 629,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.04 % (44,967.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,596.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18749170 BTC (117,932.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.28 CZK over 1296 transactions" + } + ] + }, + { + "id": 2791, + "type": "message", + "date": "2023-05-06T02:00:07", + "date_unixtime": "1683331207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017457 BTC for 109.61 CZK @ 627,903 CZK\nFees are 0.38498835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (163.25477999482763526945374411 CZK)\nThe limits being 0.10 % (117.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29477416 BTC (140,446.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 627,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.79 % (44,642.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,486.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18766627 BTC (117,836.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017457 BTC for 109.61 CZK @ 627,903 CZK\nFees are 0.38498835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (163.25477999482763526945374411 CZK)\nThe limits being 0.10 % (117.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29477416 BTC (140,446.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 627,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.79 % (44,642.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,486.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18766627 BTC (117,836.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1297 transactions" + } + ] + }, + { + "id": 2792, + "type": "message", + "date": "2023-05-06T06:00:04", + "date_unixtime": "1683345604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017539 BTC for 109.61 CZK @ 624,968 CZK\nFees are 0.38498874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (143.74263999827503788056017974 CZK)\nThe limits being 0.10 % (117.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29494955 BTC (140,556.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.15 % (43,777.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,376.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18784166 BTC (117,395.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017539 BTC for 109.61 CZK @ 624,968 CZK\nFees are 0.38498874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (143.74263999827503788056017974 CZK)\nThe limits being 0.10 % (117.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29494955 BTC (140,556.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.15 % (43,777.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,376.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18784166 BTC (117,395.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1298 transactions" + } + ] + }, + { + "id": 2793, + "type": "message", + "date": "2023-05-06T10:00:03", + "date_unixtime": "1683360003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017494 BTC for 109.61 CZK @ 626,574 CZK\nFees are 0.38498775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (144.11201999415672675075899039 CZK)\nThe limits being 0.10 % (117.81 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29512449 BTC (140,666.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 626,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.46 % (44,250.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,266.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18801660 BTC (117,806.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017494 BTC for 109.61 CZK @ 626,574 CZK\nFees are 0.38498775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (144.11201999415672675075899039 CZK)\nThe limits being 0.10 % (117.81 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29512449 BTC (140,666.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 626,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.46 % (44,250.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,266.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18801660 BTC (117,806.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1299 transactions" + } + ] + }, + { + "id": 2794, + "type": "message", + "date": "2023-05-06T14:00:05", + "date_unixtime": "1683374405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017572 BTC for 109.61 CZK @ 623,801 CZK\nFees are 0.38499287 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (112.28417999895880012943543489 CZK)\nThe limits being 0.10 % (117.39 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29530021 BTC (140,776.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.85 % (43,431.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,156.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18819232 BTC (117,394.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017572 BTC for 109.61 CZK @ 623,801 CZK\nFees are 0.38499287 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (112.28417999895880012943543489 CZK)\nThe limits being 0.10 % (117.39 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29530021 BTC (140,776.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.85 % (43,431.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,156.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18819232 BTC (117,394.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1300 transactions" + } + ] + }, + { + "id": 2795, + "type": "message", + "date": "2023-05-06T18:00:05", + "date_unixtime": "1683388805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017952 BTC for 109.61 CZK @ 610,587 CZK\nFees are 0.38498678 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (122.11739999573684617208753321 CZK)\nThe limits being 0.10 % (115.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29547973 BTC (140,886.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.06 % (39,529.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,046.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18837184 BTC (115,017.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017952 BTC for 109.61 CZK @ 610,587 CZK\nFees are 0.38498678 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (122.11739999573684617208753321 CZK)\nThe limits being 0.10 % (115.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29547973 BTC (140,886.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.06 % (39,529.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,046.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18837184 BTC (115,017.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1301 transactions" + } + ] + }, + { + "id": 2796, + "type": "message", + "date": "2023-05-06T22:00:04", + "date_unixtime": "1683403204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017778 BTC for 109.61 CZK @ 616,558 CZK\nFees are 0.38498363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (141.80833999440477846044861659 CZK)\nThe limits being 0.10 % (116.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29565751 BTC (140,996.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.29 % (41,293.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,936.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18854962 BTC (116,251.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017778 BTC for 109.61 CZK @ 616,558 CZK\nFees are 0.38498363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (141.80833999440477846044861659 CZK)\nThe limits being 0.10 % (116.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29565751 BTC (140,996.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.29 % (41,293.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,936.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18854962 BTC (116,251.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1302 transactions" + } + ] + }, + { + "id": 2797, + "type": "message", + "date": "2023-05-07T02:00:03", + "date_unixtime": "1683417603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017775 BTC for 109.61 CZK @ 616,666 CZK\nFees are 0.38498609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (147.99983999293611599906655819 CZK)\nThe limits being 0.10 % (116.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29583526 BTC (141,106.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 476,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.29 % (41,324.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,826.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18872737 BTC (116,381.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017775 BTC for 109.61 CZK @ 616,666 CZK\nFees are 0.38498609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (147.99983999293611599906655819 CZK)\nThe limits being 0.10 % (116.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29583526 BTC (141,106.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 476,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.29 % (41,324.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,826.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18872737 BTC (116,381.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1303 transactions" + } + ] + }, + { + "id": 2798, + "type": "message", + "date": "2023-05-07T06:00:03", + "date_unixtime": "1683432003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017813 BTC for 109.61 CZK @ 615,362 CZK\nFees are 0.38499329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (141.53325999265300914043871208 CZK)\nThe limits being 0.10 % (116.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29601339 BTC (141,216.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.99 % (40,938.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,716.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18890550 BTC (116,245.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017813 BTC for 109.61 CZK @ 615,362 CZK\nFees are 0.38499329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (141.53325999265300914043871208 CZK)\nThe limits being 0.10 % (116.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29601339 BTC (141,216.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.99 % (40,938.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,716.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18890550 BTC (116,245.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1304 transactions" + } + ] + }, + { + "id": 2799, + "type": "message", + "date": "2023-05-07T10:00:04", + "date_unixtime": "1683446404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017686 BTC for 109.62 CZK @ 619,791 CZK\nFees are 0.38499963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (210.72893998676237826659051119 CZK)\nThe limits being 0.10 % (117.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29619025 BTC (141,326.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.89 % (42,249.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,606.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18908236 BTC (117,191.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017686 BTC for 109.62 CZK @ 619,791 CZK\nFees are 0.38499963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (210.72893998676237826659051119 CZK)\nThe limits being 0.10 % (117.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29619025 BTC (141,326.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.89 % (42,249.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,606.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18908236 BTC (117,191.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1305 transactions" + } + ] + }, + { + "id": 2800, + "type": "message", + "date": "2023-05-07T14:00:04", + "date_unixtime": "1683460804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017774 BTC for 109.61 CZK @ 616,708 CZK\nFees are 0.38499065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (197.34655998256131670132369496 CZK)\nThe limits being 0.10 % (116.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29636799 BTC (141,436.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.23 % (41,335.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,496.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18926010 BTC (116,718.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017774 BTC for 109.61 CZK @ 616,708 CZK\nFees are 0.38499065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.17 % (197.34655998256131670132369496 CZK)\nThe limits being 0.10 % (116.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29636799 BTC (141,436.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.23 % (41,335.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,496.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18926010 BTC (116,718.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1306 transactions" + } + ] + }, + { + "id": 2801, + "type": "message", + "date": "2023-05-07T18:00:04", + "date_unixtime": "1683475204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017678 BTC for 109.61 CZK @ 620,045 CZK\nFees are 0.38498318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (210.81529999453772865228516574 CZK)\nThe limits being 0.10 % (117.46 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29654477 BTC (141,546.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.90 % (42,324.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,386.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18943688 BTC (117,459.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017678 BTC for 109.61 CZK @ 620,045 CZK\nFees are 0.38498318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (210.81529999453772865228516574 CZK)\nThe limits being 0.10 % (117.46 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29654477 BTC (141,546.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.90 % (42,324.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,386.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18943688 BTC (117,459.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1307 transactions" + } + ] + }, + { + "id": 2802, + "type": "message", + "date": "2023-05-07T22:00:03", + "date_unixtime": "1683489603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017774 BTC for 109.61 CZK @ 616,708 CZK\nFees are 0.38499065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (425.52851996239783913722921726 CZK)\nThe limits being 0.10 % (116.94 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29672251 BTC (141,656.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.18 % (41,334.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,276.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18961462 BTC (116,936.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017774 BTC for 109.61 CZK @ 616,708 CZK\nFees are 0.38499065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.36 % (425.52851996239783913722921726 CZK)\nThe limits being 0.10 % (116.94 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29672251 BTC (141,656.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.18 % (41,334.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,276.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18961462 BTC (116,936.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1308 transactions" + } + ] + }, + { + "id": 2803, + "type": "message", + "date": "2023-05-08T02:00:04", + "date_unixtime": "1683504004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018006 BTC for 109.61 CZK @ 608,768 CZK\nFees are 0.38499446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (511.36511999404948392057322865 CZK)\nThe limits being 0.10 % (115.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29690257 BTC (141,766.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.49 % (38,978.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,166.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18979468 BTC (115,540.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018006 BTC for 109.61 CZK @ 608,768 CZK\nFees are 0.38499446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.44 % (511.36511999404948392057322865 CZK)\nThe limits being 0.10 % (115.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29690257 BTC (141,766.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.49 % (38,978.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,166.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18979468 BTC (115,540.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1309 transactions" + } + ] + }, + { + "id": 2804, + "type": "message", + "date": "2023-05-08T06:00:03", + "date_unixtime": "1683518403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018152 BTC for 109.62 CZK @ 603,875 CZK\nFees are 0.38499665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (483.09999997804071821783739282 CZK)\nThe limits being 0.10 % (114.72 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29708409 BTC (141,876.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.45 % (37,524.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,056.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.18997620 BTC (114,721.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018152 BTC for 109.62 CZK @ 603,875 CZK\nFees are 0.38499665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.42 % (483.09999997804071821783739282 CZK)\nThe limits being 0.10 % (114.72 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29708409 BTC (141,876.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.45 % (37,524.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,056.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.18997620 BTC (114,721.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1310 transactions" + } + ] + }, + { + "id": 2805, + "type": "message", + "date": "2023-05-08T10:00:03", + "date_unixtime": "1683532803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018352 BTC for 109.62 CZK @ 597,297 CZK\nFees are 0.38499860 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (453.94571996269378013917287750 CZK)\nThe limits being 0.10 % (113.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29726761 BTC (141,986.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 597,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.05 % (35,570.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,946.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19015972 BTC (113,581.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018352 BTC for 109.62 CZK @ 597,297 CZK\nFees are 0.38499860 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (453.94571996269378013917287750 CZK)\nThe limits being 0.10 % (113.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29726761 BTC (141,986.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 597,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.05 % (35,570.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,946.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19015972 BTC (113,581.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1311 transactions" + } + ] + }, + { + "id": 2806, + "type": "message", + "date": "2023-05-08T14:00:06", + "date_unixtime": "1683547206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018391 BTC for 109.61 CZK @ 596,016 CZK\nFees are 0.38498932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (524.49407995727638816857002884 CZK)\nThe limits being 0.10 % (113.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29745152 BTC (142,096.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.76 % (35,189.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,836.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19034363 BTC (113,447.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018391 BTC for 109.61 CZK @ 596,016 CZK\nFees are 0.38498932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.46 % (524.49407995727638816857002884 CZK)\nThe limits being 0.10 % (113.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29745152 BTC (142,096.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.76 % (35,189.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,836.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19034363 BTC (113,447.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1312 transactions" + } + ] + }, + { + "id": 2807, + "type": "message", + "date": "2023-05-08T18:00:04", + "date_unixtime": "1683561604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018392 BTC for 109.61 CZK @ 595,984 CZK\nFees are 0.38498958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (548.30527999760733041141563469 CZK)\nThe limits being 0.10 % (113.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29763544 BTC (142,206.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.74 % (35,179.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,726.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19052755 BTC (113,551.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018392 BTC for 109.61 CZK @ 595,984 CZK\nFees are 0.38498958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (548.30527999760733041141563469 CZK)\nThe limits being 0.10 % (113.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29763544 BTC (142,206.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.74 % (35,179.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,726.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19052755 BTC (113,551.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1313 transactions" + } + ] + }, + { + "id": 2808, + "type": "message", + "date": "2023-05-08T22:00:03", + "date_unixtime": "1683576003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018735 BTC for 109.61 CZK @ 585,080 CZK\nFees are 0.38499436 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (538.27359998531959598570735013 CZK)\nThe limits being 0.10 % (111.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29782279 BTC (142,316.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.44 % (31,933.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,616.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19071490 BTC (111,583.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018735 BTC for 109.61 CZK @ 585,080 CZK\nFees are 0.38499436 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.48 % (538.27359998531959598570735013 CZK)\nThe limits being 0.10 % (111.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29782279 BTC (142,316.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.44 % (31,933.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,616.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19071490 BTC (111,583.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1314 transactions" + } + ] + }, + { + "id": 2809, + "type": "message", + "date": "2023-05-09T02:00:04", + "date_unixtime": "1683590404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018504 BTC for 109.61 CZK @ 592,385 CZK\nFees are 0.38499500 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (450.21259999426994710041012961 CZK)\nThe limits being 0.10 % (113.09 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29800783 BTC (142,426.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 477,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.95 % (34,108.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,506.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19089994 BTC (113,086.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018504 BTC for 109.61 CZK @ 592,385 CZK\nFees are 0.38499500 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.40 % (450.21259999426994710041012961 CZK)\nThe limits being 0.10 % (113.09 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29800783 BTC (142,426.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 477,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.95 % (34,108.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,506.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19089994 BTC (113,086.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1315 transactions" + } + ] + }, + { + "id": 2810, + "type": "message", + "date": "2023-05-09T06:00:03", + "date_unixtime": "1683604803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018513 BTC for 109.61 CZK @ 592,081 CZK\nFees are 0.38498459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (367.09021998546598276420902576 CZK)\nThe limits being 0.10 % (113.14 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29819296 BTC (142,536.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.87 % (34,017.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,396.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19108507 BTC (113,137.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018513 BTC for 109.61 CZK @ 592,081 CZK\nFees are 0.38498459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (367.09021998546598276420902576 CZK)\nThe limits being 0.10 % (113.14 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29819296 BTC (142,536.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.87 % (34,017.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,396.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19108507 BTC (113,137.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1316 transactions" + } + ] + }, + { + "id": 2811, + "type": "message", + "date": "2023-05-09T10:00:04", + "date_unixtime": "1683619204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018533 BTC for 109.62 CZK @ 591,463 CZK\nFees are 0.38499823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (366.70705999244913347717242068 CZK)\nThe limits being 0.10 % (113.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29837829 BTC (142,646.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.72 % (33,832.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,286.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19127040 BTC (113,129.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018533 BTC for 109.62 CZK @ 591,463 CZK\nFees are 0.38499823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.32 % (366.70705999244913347717242068 CZK)\nThe limits being 0.10 % (113.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29837829 BTC (142,646.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.72 % (33,832.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,286.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19127040 BTC (113,129.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1317 transactions" + } + ] + }, + { + "id": 2812, + "type": "message", + "date": "2023-05-09T14:00:04", + "date_unixtime": "1683633604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018527 BTC for 109.61 CZK @ 591,635 CZK\nFees are 0.38498551 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (236.65399998370253150514463479 CZK)\nThe limits being 0.10 % (113.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29856356 BTC (142,756.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.74 % (33,883.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,176.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19145567 BTC (113,271.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018527 BTC for 109.61 CZK @ 591,635 CZK\nFees are 0.38498551 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (236.65399998370253150514463479 CZK)\nThe limits being 0.10 % (113.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29856356 BTC (142,756.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.74 % (33,883.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,176.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19145567 BTC (113,271.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1318 transactions" + } + ] + }, + { + "id": 2813, + "type": "message", + "date": "2023-05-09T18:00:07", + "date_unixtime": "1683648007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018694 BTC for 109.61 CZK @ 586,342 CZK\nFees are 0.38498044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (205.21969998660406987867274639 CZK)\nThe limits being 0.10 % (112.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29875050 BTC (142,866.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.61 % (32,303.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,066.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19164261 BTC (112,368.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.31 CZK over 1319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018694 BTC for 109.61 CZK @ 586,342 CZK\nFees are 0.38498044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (205.21969998660406987867274639 CZK)\nThe limits being 0.10 % (112.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29875050 BTC (142,866.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.61 % (32,303.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,066.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19164261 BTC (112,368.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.31 CZK over 1319 transactions" + } + ] + }, + { + "id": 2814, + "type": "message", + "date": "2023-05-09T22:00:03", + "date_unixtime": "1683662403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018494 BTC for 109.61 CZK @ 592,702 CZK\nFees are 0.38499285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (237.08079998366267431352653514 CZK)\nThe limits being 0.10 % (113.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29893544 BTC (142,976.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.92 % (34,202.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,956.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19182755 BTC (113,696.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018494 BTC for 109.61 CZK @ 592,702 CZK\nFees are 0.38499285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (237.08079998366267431352653514 CZK)\nThe limits being 0.10 % (113.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29893544 BTC (142,976.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.92 % (34,202.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,956.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19182755 BTC (113,696.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1320 transactions" + } + ] + }, + { + "id": 2815, + "type": "message", + "date": "2023-05-10T02:00:04", + "date_unixtime": "1683676804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018553 BTC for 109.61 CZK @ 590,819 CZK\nFees are 0.38499430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (206.78678189104264541038935278 CZK)\nThe limits being 0.10 % (113.45 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29912097 BTC (143,086.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.51 % (33,639.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,846.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19201308 BTC (113,445.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018553 BTC for 109.61 CZK @ 590,819 CZK\nFees are 0.38499430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (206.78678189104264541038935278 CZK)\nThe limits being 0.10 % (113.45 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29912097 BTC (143,086.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.51 % (33,639.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,846.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19201308 BTC (113,445.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1321 transactions" + } + ] + }, + { + "id": 2816, + "type": "message", + "date": "2023-05-10T06:00:04", + "date_unixtime": "1683691204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018536 BTC for 109.61 CZK @ 591,362 CZK\nFees are 0.38499479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (206.97669999789257237132272694 CZK)\nThe limits being 0.10 % (113.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29930633 BTC (143,196.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.61 % (33,801.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,736.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19219844 BTC (113,658.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018536 BTC for 109.61 CZK @ 591,362 CZK\nFees are 0.38499479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.18 % (206.97669999789257237132272694 CZK)\nThe limits being 0.10 % (113.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29930633 BTC (143,196.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.61 % (33,801.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,736.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19219844 BTC (113,658.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1322 transactions" + } + ] + }, + { + "id": 2817, + "type": "message", + "date": "2023-05-10T10:00:03", + "date_unixtime": "1683705603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018566 BTC for 109.61 CZK @ 590,387 CZK\nFees are 0.38498211 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (265.67414998437280355768705900 CZK)\nThe limits being 0.10 % (113.58 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29949199 BTC (143,306.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.38 % (33,509.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,626.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19238410 BTC (113,581.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018566 BTC for 109.61 CZK @ 590,387 CZK\nFees are 0.38498211 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.23 % (265.67414998437280355768705900 CZK)\nThe limits being 0.10 % (113.58 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29949199 BTC (143,306.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.38 % (33,509.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,626.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19238410 BTC (113,581.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1323 transactions" + } + ] + }, + { + "id": 2818, + "type": "message", + "date": "2023-05-10T14:00:04", + "date_unixtime": "1683720004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018496 BTC for 109.62 CZK @ 592,648 CZK\nFees are 0.38499941 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (337.80935997150113012759838834 CZK)\nThe limits being 0.10 % (114.13 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29967695 BTC (143,416.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.84 % (34,186.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,516.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19256906 BTC (114,125.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018496 BTC for 109.62 CZK @ 592,648 CZK\nFees are 0.38499941 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.30 % (337.80935997150113012759838834 CZK)\nThe limits being 0.10 % (114.13 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29967695 BTC (143,416.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.84 % (34,186.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,516.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19256906 BTC (114,125.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1324 transactions" + } + ] + }, + { + "id": 2819, + "type": "message", + "date": "2023-05-10T18:00:04", + "date_unixtime": "1683734404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018147 BTC for 109.61 CZK @ 604,028 CZK\nFees are 0.38498812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (247.65147999085912701697692287 CZK)\nThe limits being 0.10 % (116.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.29985842 BTC (143,526.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.19 % (37,596.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,406.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19275053 BTC (116,426.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018147 BTC for 109.61 CZK @ 604,028 CZK\nFees are 0.38498812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.21 % (247.65147999085912701697692287 CZK)\nThe limits being 0.10 % (116.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.29985842 BTC (143,526.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.19 % (37,596.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,406.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19275053 BTC (116,426.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1325 transactions" + } + ] + }, + { + "id": 2820, + "type": "message", + "date": "2023-05-10T22:00:03", + "date_unixtime": "1683748803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018489 BTC for 109.61 CZK @ 592,861 CZK\nFees are 0.38499202 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (142.28663999221934651727229885 CZK)\nThe limits being 0.10 % (114.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30004331 BTC (143,636.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.84 % (34,247.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,296.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19293542 BTC (114,383.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018489 BTC for 109.61 CZK @ 592,861 CZK\nFees are 0.38499202 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (142.28663999221934651727229885 CZK)\nThe limits being 0.10 % (114.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30004331 BTC (143,636.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.84 % (34,247.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,296.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19293542 BTC (114,383.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1326 transactions" + } + ] + }, + { + "id": 2821, + "type": "message", + "date": "2023-05-11T02:00:04", + "date_unixtime": "1683763204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018550 BTC for 109.61 CZK @ 590,905 CZK\nFees are 0.38498783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (124.09004999858984121612093522 CZK)\nThe limits being 0.10 % (114.12 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30022881 BTC (143,746.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.42 % (33,660.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,186.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19312092 BTC (114,116.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018550 BTC for 109.61 CZK @ 590,905 CZK\nFees are 0.38498783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (124.09004999858984121612093522 CZK)\nThe limits being 0.10 % (114.12 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30022881 BTC (143,746.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.42 % (33,660.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,186.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19312092 BTC (114,116.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1327 transactions" + } + ] + }, + { + "id": 2822, + "type": "message", + "date": "2023-05-11T06:00:04", + "date_unixtime": "1683777604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018639 BTC for 109.61 CZK @ 588,074 CZK\nFees are 0.38498163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (123.49553999437507112359277535 CZK)\nThe limits being 0.10 % (113.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30041520 BTC (143,856.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.81 % (32,809.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,076.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19330731 BTC (113,679.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018639 BTC for 109.61 CZK @ 588,074 CZK\nFees are 0.38498163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (123.49553999437507112359277535 CZK)\nThe limits being 0.10 % (113.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30041520 BTC (143,856.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.81 % (32,809.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,076.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19330731 BTC (113,679.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1328 transactions" + } + ] + }, + { + "id": 2823, + "type": "message", + "date": "2023-05-11T10:00:04", + "date_unixtime": "1683792004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018518 BTC for 109.62 CZK @ 591,939 CZK\nFees are 0.38499621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (71.032679997371764974441705893 CZK)\nThe limits being 0.10 % (114.54 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30060038 BTC (143,966.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 478,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.60 % (33,970.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,966.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19349249 BTC (114,535.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018518 BTC for 109.62 CZK @ 591,939 CZK\nFees are 0.38499621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (71.032679997371764974441705893 CZK)\nThe limits being 0.10 % (114.54 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30060038 BTC (143,966.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 478,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.60 % (33,970.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,966.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19349249 BTC (114,535.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1329 transactions" + } + ] + }, + { + "id": 2824, + "type": "message", + "date": "2023-05-11T14:00:04", + "date_unixtime": "1683806404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018570 BTC for 109.62 CZK @ 590,286 CZK\nFees are 0.38499918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (70.834319996329486538633361589 CZK)\nThe limits being 0.10 % (114.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30078608 BTC (144,076.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.23 % (33,473.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,856.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19367819 BTC (114,325.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018570 BTC for 109.62 CZK @ 590,286 CZK\nFees are 0.38499918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (70.834319996329486538633361589 CZK)\nThe limits being 0.10 % (114.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30078608 BTC (144,076.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.23 % (33,473.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,856.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19367819 BTC (114,325.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1330 transactions" + } + ] + }, + { + "id": 2825, + "type": "message", + "date": "2023-05-11T18:00:04", + "date_unixtime": "1683820804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018690 BTC for 109.61 CZK @ 586,476 CZK\nFees are 0.38498603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (64.512359996832914654247853221 CZK)\nThe limits being 0.10 % (113.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30097298 BTC (144,186.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.42 % (32,326.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,746.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19386509 BTC (113,697.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018690 BTC for 109.61 CZK @ 586,476 CZK\nFees are 0.38498603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (64.512359996832914654247853221 CZK)\nThe limits being 0.10 % (113.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30097298 BTC (144,186.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.42 % (32,326.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,746.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19386509 BTC (113,697.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1331 transactions" + } + ] + }, + { + "id": 2826, + "type": "message", + "date": "2023-05-11T22:00:04", + "date_unixtime": "1683835204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018897 BTC for 109.61 CZK @ 580,058 CZK\nFees are 0.38499023 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (133.41333999889627980641074755 CZK)\nThe limits being 0.10 % (112.56 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30116195 BTC (144,296.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.06 % (30,394.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,636.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19405406 BTC (112,562.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018897 BTC for 109.61 CZK @ 580,058 CZK\nFees are 0.38499023 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (133.41333999889627980641074755 CZK)\nThe limits being 0.10 % (112.56 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30116195 BTC (144,296.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.06 % (30,394.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,636.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19405406 BTC (112,562.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1332 transactions" + } + ] + }, + { + "id": 2827, + "type": "message", + "date": "2023-05-12T02:00:05", + "date_unixtime": "1683849605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018798 BTC for 109.61 CZK @ 583,099 CZK\nFees are 0.38498106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (122.45078999435585409572719548 CZK)\nThe limits being 0.10 % (113.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30134993 BTC (144,406.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.68 % (31,310.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,526.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19424204 BTC (113,262.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018798 BTC for 109.61 CZK @ 583,099 CZK\nFees are 0.38498106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (122.45078999435585409572719548 CZK)\nThe limits being 0.10 % (113.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30134993 BTC (144,406.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.68 % (31,310.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,526.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19424204 BTC (113,262.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1333 transactions" + } + ] + }, + { + "id": 2828, + "type": "message", + "date": "2023-05-12T06:00:04", + "date_unixtime": "1683864004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019084 BTC for 109.62 CZK @ 574,385 CZK\nFees are 0.38499751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (86.15774999459552434222831701 CZK)\nThe limits being 0.10 % (111.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30154077 BTC (144,516.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.85 % (28,683.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,416.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19443288 BTC (111,679.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019084 BTC for 109.62 CZK @ 574,385 CZK\nFees are 0.38499751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (86.15774999459552434222831701 CZK)\nThe limits being 0.10 % (111.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30154077 BTC (144,516.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.85 % (28,683.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,416.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19443288 BTC (111,679.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1334 transactions" + } + ] + }, + { + "id": 2829, + "type": "message", + "date": "2023-05-12T10:00:03", + "date_unixtime": "1683878403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019255 BTC for 109.61 CZK @ 569,278 CZK\nFees are 0.38499345 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.235019997135447900667580371 CZK)\nThe limits being 0.10 % (110.80 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30173332 BTC (144,626.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.77 % (27,143.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,306.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19462543 BTC (110,795.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019255 BTC for 109.61 CZK @ 569,278 CZK\nFees are 0.38499345 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (51.235019997135447900667580371 CZK)\nThe limits being 0.10 % (110.80 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30173332 BTC (144,626.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.77 % (27,143.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,306.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19462543 BTC (110,795.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1335 transactions" + } + ] + }, + { + "id": 2830, + "type": "message", + "date": "2023-05-12T14:00:04", + "date_unixtime": "1683892804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019156 BTC for 109.61 CZK @ 572,212 CZK\nFees are 0.38498802 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (45.776959996870423136895162193 CZK)\nThe limits being 0.10 % (111.48 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30192488 BTC (144,736.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.37 % (28,028.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,196.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19481699 BTC (111,476.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019156 BTC for 109.61 CZK @ 572,212 CZK\nFees are 0.38498802 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (45.776959996870423136895162193 CZK)\nThe limits being 0.10 % (111.48 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30192488 BTC (144,736.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.37 % (28,028.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,196.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19481699 BTC (111,476.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1336 transactions" + } + ] + }, + { + "id": 2831, + "type": "message", + "date": "2023-05-12T18:00:04", + "date_unixtime": "1683907204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019125 BTC for 109.61 CZK @ 573,150 CZK\nFees are 0.38499506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (85.97249999902302724777005969 CZK)\nThe limits being 0.10 % (111.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30211613 BTC (144,846.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.55 % (28,311.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,086.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19500824 BTC (111,768.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019125 BTC for 109.61 CZK @ 573,150 CZK\nFees are 0.38499506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (85.97249999902302724777005969 CZK)\nThe limits being 0.10 % (111.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30211613 BTC (144,846.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.55 % (28,311.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,086.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19500824 BTC (111,768.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1337 transactions" + } + ] + }, + { + "id": 2832, + "type": "message", + "date": "2023-05-12T22:00:04", + "date_unixtime": "1683921604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019049 BTC for 109.61 CZK @ 575,434 CZK\nFees are 0.38499326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (212.91057998197970706914481137 CZK)\nThe limits being 0.10 % (112.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30230662 BTC (144,956.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.01 % (29,000.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,976.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19519873 BTC (112,323.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019049 BTC for 109.61 CZK @ 575,434 CZK\nFees are 0.38499326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.19 % (212.91057998197970706914481137 CZK)\nThe limits being 0.10 % (112.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30230662 BTC (144,956.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.01 % (29,000.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,976.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19519873 BTC (112,323.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1338 transactions" + } + ] + }, + { + "id": 2833, + "type": "message", + "date": "2023-05-13T02:00:06", + "date_unixtime": "1683936006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018825 BTC for 109.61 CZK @ 582,272 CZK\nFees are 0.38498722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (186.32703999322424634628733034 CZK)\nThe limits being 0.10 % (113.77 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30249487 BTC (145,066.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.42 % (31,067.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,866.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19538698 BTC (113,768.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018825 BTC for 109.61 CZK @ 582,272 CZK\nFees are 0.38498722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (186.32703999322424634628733034 CZK)\nThe limits being 0.10 % (113.77 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30249487 BTC (145,066.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.42 % (31,067.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,866.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19538698 BTC (113,768.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1339 transactions" + } + ] + }, + { + "id": 2834, + "type": "message", + "date": "2023-05-13T06:00:07", + "date_unixtime": "1683950407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018761 BTC for 109.61 CZK @ 584,258 CZK\nFees are 0.38498701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (186.96255999688951789041111825 CZK)\nThe limits being 0.10 % (114.27 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30268248 BTC (145,176.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.81 % (31,668.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,756.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19557459 BTC (114,266.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018761 BTC for 109.61 CZK @ 584,258 CZK\nFees are 0.38498701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.16 % (186.96255999688951789041111825 CZK)\nThe limits being 0.10 % (114.27 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30268248 BTC (145,176.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.81 % (31,668.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,756.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19557459 BTC (114,266.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1340 transactions" + } + ] + }, + { + "id": 2835, + "type": "message", + "date": "2023-05-13T10:00:04", + "date_unixtime": "1683964804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018780 BTC for 109.61 CZK @ 583,662 CZK\nFees are 0.38498378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.366199998620377135828646597 CZK)\nThe limits being 0.10 % (114.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30287028 BTC (145,286.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.67 % (31,487.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,646.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19576239 BTC (114,259.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018780 BTC for 109.61 CZK @ 583,662 CZK\nFees are 0.38498378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.366199998620377135828646597 CZK)\nThe limits being 0.10 % (114.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30287028 BTC (145,286.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.67 % (31,487.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,646.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19576239 BTC (114,259.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1341 transactions" + } + ] + }, + { + "id": 2836, + "type": "message", + "date": "2023-05-13T14:00:04", + "date_unixtime": "1683979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018700 BTC for 109.61 CZK @ 586,159 CZK\nFees are 0.38498381 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.61589999706908174331017908 CZK)\nThe limits being 0.10 % (114.86 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30305728 BTC (145,396.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.18 % (32,243.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,536.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19594939 BTC (114,857.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018700 BTC for 109.61 CZK @ 586,159 CZK\nFees are 0.38498381 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (58.61589999706908174331017908 CZK)\nThe limits being 0.10 % (114.86 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30305728 BTC (145,396.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.18 % (32,243.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,536.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19594939 BTC (114,857.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1342 transactions" + } + ] + }, + { + "id": 2837, + "type": "message", + "date": "2023-05-13T18:00:04", + "date_unixtime": "1683993604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018739 BTC for 109.61 CZK @ 584,934 CZK\nFees are 0.38498047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (52.644059996214221461344018388 CZK)\nThe limits being 0.10 % (114.73 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30324467 BTC (145,506.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.90 % (31,871.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,426.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19613678 BTC (114,727.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.34 CZK over 1343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018739 BTC for 109.61 CZK @ 584,934 CZK\nFees are 0.38498047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (52.644059996214221461344018388 CZK)\nThe limits being 0.10 % (114.73 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30324467 BTC (145,506.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.90 % (31,871.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,426.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19613678 BTC (114,727.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.34 CZK over 1343 transactions" + } + ] + }, + { + "id": 2838, + "type": "message", + "date": "2023-05-13T22:00:04", + "date_unixtime": "1684008004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018662 BTC for 109.61 CZK @ 587,350 CZK\nFees are 0.38498214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (46.987999995941757166816794954 CZK)\nThe limits being 0.10 % (115.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30343129 BTC (145,616.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.39 % (32,603.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,316.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19632340 BTC (115,310.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018662 BTC for 109.61 CZK @ 587,350 CZK\nFees are 0.38498214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (46.987999995941757166816794954 CZK)\nThe limits being 0.10 % (115.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30343129 BTC (145,616.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.39 % (32,603.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,316.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19632340 BTC (115,310.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1344 transactions" + } + ] + }, + { + "id": 2839, + "type": "message", + "date": "2023-05-14T02:00:05", + "date_unixtime": "1684022405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018698 BTC for 109.62 CZK @ 586,240 CZK\nFees are 0.38499583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (76.211199997782922888938879715 CZK)\nThe limits being 0.10 % (115.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30361827 BTC (145,726.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 479,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.14 % (32,266.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,206.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19651038 BTC (115,202.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018698 BTC for 109.62 CZK @ 586,240 CZK\nFees are 0.38499583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (76.211199997782922888938879715 CZK)\nThe limits being 0.10 % (115.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30361827 BTC (145,726.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 479,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.14 % (32,266.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,206.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19651038 BTC (115,202.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1345 transactions" + } + ] + }, + { + "id": 2840, + "type": "message", + "date": "2023-05-14T06:00:04", + "date_unixtime": "1684036804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018716 BTC for 109.61 CZK @ 585,661 CZK\nFees are 0.38498585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (105.41897999553390446964157187 CZK)\nThe limits being 0.10 % (115.20 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30380543 BTC (145,836.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.00 % (32,090.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,096.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19669754 BTC (115,198.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018716 BTC for 109.61 CZK @ 585,661 CZK\nFees are 0.38498585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (105.41897999553390446964157187 CZK)\nThe limits being 0.10 % (115.20 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30380543 BTC (145,836.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.00 % (32,090.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,096.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19669754 BTC (115,198.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1346 transactions" + } + ] + }, + { + "id": 2841, + "type": "message", + "date": "2023-05-14T10:00:04", + "date_unixtime": "1684051204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018685 BTC for 109.61 CZK @ 586,644 CZK\nFees are 0.38499329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (105.59591999049620148052861279 CZK)\nThe limits being 0.10 % (115.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30399228 BTC (145,946.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.19 % (32,388.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,986.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19688439 BTC (115,501.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018685 BTC for 109.61 CZK @ 586,644 CZK\nFees are 0.38499329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (105.59591999049620148052861279 CZK)\nThe limits being 0.10 % (115.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30399228 BTC (145,946.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.19 % (32,388.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,986.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19688439 BTC (115,501.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1347 transactions" + } + ] + }, + { + "id": 2842, + "type": "message", + "date": "2023-05-14T14:00:04", + "date_unixtime": "1684065604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018723 BTC for 109.61 CZK @ 585,448 CZK\nFees are 0.38498977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (87.81719999869069057848882859 CZK)\nThe limits being 0.10 % (115.38 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30417951 BTC (146,056.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.93 % (32,024.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,876.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19707162 BTC (115,375.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018723 BTC for 109.61 CZK @ 585,448 CZK\nFees are 0.38498977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (87.81719999869069057848882859 CZK)\nThe limits being 0.10 % (115.38 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30417951 BTC (146,056.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.93 % (32,024.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,876.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19707162 BTC (115,375.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1348 transactions" + } + ] + }, + { + "id": 2843, + "type": "message", + "date": "2023-05-14T18:00:04", + "date_unixtime": "1684080004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018552 BTC for 109.62 CZK @ 590,856 CZK\nFees are 0.38499741 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.451359997447484902453315077 CZK)\nThe limits being 0.10 % (116.55 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30436503 BTC (146,166.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.03 % (33,669.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,766.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19725714 BTC (116,550.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018552 BTC for 109.62 CZK @ 590,856 CZK\nFees are 0.38499741 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.451359997447484902453315077 CZK)\nThe limits being 0.10 % (116.55 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30436503 BTC (146,166.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.03 % (33,669.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,766.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19725714 BTC (116,550.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1349 transactions" + } + ] + }, + { + "id": 2844, + "type": "message", + "date": "2023-05-14T22:00:05", + "date_unixtime": "1684094405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018684 BTC for 109.61 CZK @ 586,678 CZK\nFees are 0.38499499 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.333899999647988622992295111 CZK)\nThe limits being 0.10 % (115.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30455187 BTC (146,276.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.15 % (32,397.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,656.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19744398 BTC (115,836.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018684 BTC for 109.61 CZK @ 586,678 CZK\nFees are 0.38499499 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.333899999647988622992295111 CZK)\nThe limits being 0.10 % (115.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30455187 BTC (146,276.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.15 % (32,397.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,656.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19744398 BTC (115,836.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1350 transactions" + } + ] + }, + { + "id": 2845, + "type": "message", + "date": "2023-05-15T02:00:04", + "date_unixtime": "1684108804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018659 BTC for 109.61 CZK @ 587,447 CZK\nFees are 0.38498382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.372349998650150273923362662 CZK)\nThe limits being 0.10 % (116.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30473846 BTC (146,386.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.29 % (32,631.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,546.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19763057 BTC (116,097.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018659 BTC for 109.61 CZK @ 587,447 CZK\nFees are 0.38498382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.372349998650150273923362662 CZK)\nThe limits being 0.10 % (116.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30473846 BTC (146,386.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.29 % (32,631.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,546.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19763057 BTC (116,097.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1351 transactions" + } + ] + }, + { + "id": 2846, + "type": "message", + "date": "2023-05-15T06:00:04", + "date_unixtime": "1684123204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018453 BTC for 109.61 CZK @ 593,999 CZK\nFees are 0.38497995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.699949998880793611024504248 CZK)\nThe limits being 0.10 % (117.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30492299 BTC (146,496.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.64 % (34,627.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,436.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19781510 BTC (117,501.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018453 BTC for 109.61 CZK @ 593,999 CZK\nFees are 0.38497995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.699949998880793611024504248 CZK)\nThe limits being 0.10 % (117.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30492299 BTC (146,496.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.64 % (34,627.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,436.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19781510 BTC (117,501.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1352 transactions" + } + ] + }, + { + "id": 2847, + "type": "message", + "date": "2023-05-15T10:00:04", + "date_unixtime": "1684137604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018393 BTC for 109.61 CZK @ 595,952 CZK\nFees are 0.38498984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.797599997356070477083808585 CZK)\nThe limits being 0.10 % (118.00 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30510692 BTC (146,606.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.03 % (35,222.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,326.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19799903 BTC (117,997.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018393 BTC for 109.61 CZK @ 595,952 CZK\nFees are 0.38498984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (29.797599997356070477083808585 CZK)\nThe limits being 0.10 % (118.00 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30510692 BTC (146,606.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.03 % (35,222.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,326.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19799903 BTC (117,997.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1353 transactions" + } + ] + }, + { + "id": 2848, + "type": "message", + "date": "2023-05-15T14:00:04", + "date_unixtime": "1684152004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018442 BTC for 109.61 CZK @ 594,356 CZK\nFees are 0.38498170 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.661359997626785807206498326 CZK)\nThe limits being 0.10 % (117.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30529134 BTC (146,716.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.67 % (34,735.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,216.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19818345 BTC (117,791.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018442 BTC for 109.61 CZK @ 594,356 CZK\nFees are 0.38498170 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.03 % (35.661359997626785807206498326 CZK)\nThe limits being 0.10 % (117.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30529134 BTC (146,716.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.67 % (34,735.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,216.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19818345 BTC (117,791.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1354 transactions" + } + ] + }, + { + "id": 2849, + "type": "message", + "date": "2023-05-15T18:00:03", + "date_unixtime": "1684166403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018304 BTC for 109.61 CZK @ 598,855 CZK\nFees are 0.38499324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (53.896949996472137727743108911 CZK)\nThe limits being 0.10 % (118.79 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30547438 BTC (146,826.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.59 % (36,108.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,106.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19836649 BTC (118,792.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018304 BTC for 109.61 CZK @ 598,855 CZK\nFees are 0.38499324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.05 % (53.896949996472137727743108911 CZK)\nThe limits being 0.10 % (118.79 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30547438 BTC (146,826.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.59 % (36,108.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,106.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19836649 BTC (118,792.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1355 transactions" + } + ] + }, + { + "id": 2850, + "type": "message", + "date": "2023-05-15T22:00:04", + "date_unixtime": "1684180804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018392 BTC for 109.61 CZK @ 595,975 CZK\nFees are 0.38498377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (65.557249995827999132223819504 CZK)\nThe limits being 0.10 % (118.33 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30565830 BTC (146,936.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.98 % (35,228.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 996.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19855041 BTC (118,331.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018392 BTC for 109.61 CZK @ 595,975 CZK\nFees are 0.38498377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (65.557249995827999132223819504 CZK)\nThe limits being 0.10 % (118.33 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30565830 BTC (146,936.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.98 % (35,228.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 996.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19855041 BTC (118,331.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1356 transactions" + } + ] + }, + { + "id": 2851, + "type": "message", + "date": "2023-05-16T02:00:03", + "date_unixtime": "1684195203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018513 BTC for 109.61 CZK @ 592,093 CZK\nFees are 0.38499239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (100.65580999101857914196547162 CZK)\nThe limits being 0.10 % (117.67 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30584343 BTC (147,046.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.15 % (34,041.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 886.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19873554 BTC (117,669.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018513 BTC for 109.61 CZK @ 592,093 CZK\nFees are 0.38499239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (100.65580999101857914196547162 CZK)\nThe limits being 0.10 % (117.67 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30584343 BTC (147,046.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.15 % (34,041.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 886.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19873554 BTC (117,669.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1357 transactions" + } + ] + }, + { + "id": 2852, + "type": "message", + "date": "2023-05-16T06:00:04", + "date_unixtime": "1684209604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018570 BTC for 109.62 CZK @ 590,287 CZK\nFees are 0.38499984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (76.737309996058491027231292522 CZK)\nThe limits being 0.10 % (117.42 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30602913 BTC (147,156.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.76 % (33,488.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 776.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19892124 BTC (117,420.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018570 BTC for 109.62 CZK @ 590,287 CZK\nFees are 0.38499984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (76.737309996058491027231292522 CZK)\nThe limits being 0.10 % (117.42 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30602913 BTC (147,156.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.76 % (33,488.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 776.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19892124 BTC (117,420.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1358 transactions" + } + ] + }, + { + "id": 2853, + "type": "message", + "date": "2023-05-16T10:00:03", + "date_unixtime": "1684224003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018439 BTC for 109.61 CZK @ 594,457 CZK\nFees are 0.38498449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (142.66967999765882592227707390 CZK)\nThe limits being 0.10 % (118.36 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30621352 BTC (147,266.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.61 % (34,764.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 666.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19910563 BTC (118,359.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018439 BTC for 109.61 CZK @ 594,457 CZK\nFees are 0.38498449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (142.66967999765882592227707390 CZK)\nThe limits being 0.10 % (118.36 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30621352 BTC (147,266.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.61 % (34,764.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 666.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19910563 BTC (118,359.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1359 transactions" + } + ] + }, + { + "id": 2854, + "type": "message", + "date": "2023-05-16T14:00:03", + "date_unixtime": "1684238403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018566 BTC for 109.61 CZK @ 590,388 CZK\nFees are 0.38498277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (147.59699999157317588376049549 CZK)\nThe limits being 0.10 % (117.66 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30639918 BTC (147,376.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 480,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.74 % (33,517.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 556.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19929129 BTC (117,659.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018566 BTC for 109.61 CZK @ 590,388 CZK\nFees are 0.38498277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.13 % (147.59699999157317588376049549 CZK)\nThe limits being 0.10 % (117.66 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30639918 BTC (147,376.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 480,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.74 % (33,517.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 556.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19929129 BTC (117,659.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1360 transactions" + } + ] + }, + { + "id": 2855, + "type": "message", + "date": "2023-05-16T18:00:03", + "date_unixtime": "1684252803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018535 BTC for 109.61 CZK @ 591,390 CZK\nFees are 0.38499225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (141.93359998999993145114301186 CZK)\nThe limits being 0.10 % (117.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30658453 BTC (147,486.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.93 % (33,824.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 446.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19947664 BTC (117,968.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018535 BTC for 109.61 CZK @ 591,390 CZK\nFees are 0.38499225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (141.93359998999993145114301186 CZK)\nThe limits being 0.10 % (117.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30658453 BTC (147,486.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.93 % (33,824.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 446.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19947664 BTC (117,968.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1361 transactions" + } + ] + }, + { + "id": 2856, + "type": "message", + "date": "2023-05-16T22:00:04", + "date_unixtime": "1684267204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018625 BTC for 109.61 CZK @ 588,516 CZK\nFees are 0.38498160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.47351999117183816374233806 CZK)\nThe limits being 0.10 % (117.50 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30677078 BTC (147,596.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.32 % (32,942.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 336.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19966289 BTC (117,504.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018625 BTC for 109.61 CZK @ 588,516 CZK\nFees are 0.38498160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.47351999117183816374233806 CZK)\nThe limits being 0.10 % (117.50 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30677078 BTC (147,596.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.32 % (32,942.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 336.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19966289 BTC (117,504.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1362 transactions" + } + ] + }, + { + "id": 2857, + "type": "message", + "date": "2023-05-17T02:00:05", + "date_unixtime": "1684281605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018561 BTC for 109.61 CZK @ 590,553 CZK\nFees are 0.38498665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.92165999036774661348391453 CZK)\nThe limits being 0.10 % (118.02 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30695639 BTC (147,706.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.73 % (33,567.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 226.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.19984850 BTC (118,021.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018561 BTC for 109.61 CZK @ 590,553 CZK\nFees are 0.38498665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (129.92165999036774661348391453 CZK)\nThe limits being 0.10 % (118.02 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30695639 BTC (147,706.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.73 % (33,567.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 226.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.19984850 BTC (118,021.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1363 transactions" + } + ] + }, + { + "id": 2858, + "type": "message", + "date": "2023-05-17T06:00:04", + "date_unixtime": "1684296004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018542 BTC for 109.61 CZK @ 591,159 CZK\nFees are 0.38498721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (94.58543999464284668206633272 CZK)\nThe limits being 0.10 % (118.25 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30714181 BTC (147,816.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.83 % (33,753.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 116.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20003392 BTC (118,251.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018542 BTC for 109.61 CZK @ 591,159 CZK\nFees are 0.38498721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (94.58543999464284668206633272 CZK)\nThe limits being 0.10 % (118.25 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30714181 BTC (147,816.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.83 % (33,753.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 116.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20003392 BTC (118,251.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1364 transactions" + } + ] + }, + { + "id": 2859, + "type": "message", + "date": "2023-05-17T10:00:03", + "date_unixtime": "1684310403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018649 BTC for 109.61 CZK @ 587,777 CZK\nFees are 0.38499364 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (52.899929997809425817082967937 CZK)\nThe limits being 0.10 % (117.68 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30732830 BTC (147,926.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.11 % (32,713.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20022041 BTC (117,684.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018649 BTC for 109.61 CZK @ 587,777 CZK\nFees are 0.38499364 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (52.899929997809425817082967937 CZK)\nThe limits being 0.10 % (117.68 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30732830 BTC (147,926.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.11 % (32,713.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20022041 BTC (117,684.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1365 transactions" + } + ] + }, + { + "id": 2860, + "type": "message", + "date": "2023-05-17T14:00:01", + "date_unixtime": "1684324801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2861, + "type": "message", + "date": "2023-05-17T18:00:00", + "date_unixtime": "1684339200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2862, + "type": "message", + "date": "2023-05-17T22:00:00", + "date_unixtime": "1684353600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2863, + "type": "message", + "date": "2023-05-18T02:00:00", + "date_unixtime": "1684368000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2864, + "type": "message", + "date": "2023-05-18T06:00:01", + "date_unixtime": "1684382401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2865, + "type": "message", + "date": "2023-05-18T10:00:00", + "date_unixtime": "1684396800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2866, + "type": "message", + "date": "2023-05-18T14:00:00", + "date_unixtime": "1684411200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2867, + "type": "message", + "date": "2023-05-18T18:00:00", + "date_unixtime": "1684425600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2868, + "type": "message", + "date": "2023-05-18T22:00:00", + "date_unixtime": "1684440000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2869, + "type": "message", + "date": "2023-05-19T02:00:00", + "date_unixtime": "1684454400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2870, + "type": "message", + "date": "2023-05-19T06:00:00", + "date_unixtime": "1684468800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2871, + "type": "message", + "date": "2023-05-19T10:00:00", + "date_unixtime": "1684483200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2872, + "type": "message", + "date": "2023-05-19T14:00:00", + "date_unixtime": "1684497600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2873, + "type": "message", + "date": "2023-05-19T18:00:00", + "date_unixtime": "1684512000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2874, + "type": "message", + "date": "2023-05-19T22:00:01", + "date_unixtime": "1684526401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2875, + "type": "message", + "date": "2023-05-20T02:00:00", + "date_unixtime": "1684540800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2876, + "type": "message", + "date": "2023-05-20T06:00:00", + "date_unixtime": "1684555200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2877, + "type": "message", + "date": "2023-05-20T10:00:00", + "date_unixtime": "1684569600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2878, + "type": "message", + "date": "2023-05-20T14:00:00", + "date_unixtime": "1684584000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2879, + "type": "message", + "date": "2023-05-20T18:00:01", + "date_unixtime": "1684598401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2880, + "type": "message", + "date": "2023-05-20T22:00:00", + "date_unixtime": "1684612800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2881, + "type": "message", + "date": "2023-05-21T02:00:00", + "date_unixtime": "1684627200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2882, + "type": "message", + "date": "2023-05-21T06:00:00", + "date_unixtime": "1684641600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2883, + "type": "message", + "date": "2023-05-21T10:00:00", + "date_unixtime": "1684656000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2884, + "type": "message", + "date": "2023-05-21T14:00:01", + "date_unixtime": "1684670401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2885, + "type": "message", + "date": "2023-05-21T18:00:00", + "date_unixtime": "1684684800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2886, + "type": "message", + "date": "2023-05-21T22:00:00", + "date_unixtime": "1684699200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2887, + "type": "message", + "date": "2023-05-22T02:00:00", + "date_unixtime": "1684713600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2888, + "type": "message", + "date": "2023-05-22T06:00:00", + "date_unixtime": "1684728000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2889, + "type": "message", + "date": "2023-05-22T10:00:00", + "date_unixtime": "1684742400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2890, + "type": "message", + "date": "2023-05-22T14:00:00", + "date_unixtime": "1684756800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2891, + "type": "message", + "date": "2023-05-22T18:00:01", + "date_unixtime": "1684771201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (6.36216428 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2892, + "type": "message", + "date": "2023-05-22T22:00:04", + "date_unixtime": "1684785604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018570 BTC for 109.61 CZK @ 590,264 CZK\nFees are 0.38498483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (106.24751999343171275334391021 CZK)\nThe limits being 0.10 % (118.29 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30751400 BTC (148,036.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.61 % (33,477.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,896.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20040611 BTC (118,292.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018570 BTC for 109.61 CZK @ 590,264 CZK\nFees are 0.38498483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (106.24751999343171275334391021 CZK)\nThe limits being 0.10 % (118.29 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30751400 BTC (148,036.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.61 % (33,477.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,896.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20040611 BTC (118,292.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1366 transactions" + } + ] + }, + { + "id": 2893, + "type": "message", + "date": "2023-05-23T02:00:04", + "date_unixtime": "1684800004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018567 BTC for 109.62 CZK @ 590,382 CZK\nFees are 0.38499959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (82.65347999940639710171506422 CZK)\nThe limits being 0.10 % (118.43 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30769967 BTC (148,146.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.62 % (33,513.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,786.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20059178 BTC (118,425.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018567 BTC for 109.62 CZK @ 590,382 CZK\nFees are 0.38499959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (82.65347999940639710171506422 CZK)\nThe limits being 0.10 % (118.43 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30769967 BTC (148,146.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.62 % (33,513.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,786.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20059178 BTC (118,425.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1367 transactions" + } + ] + }, + { + "id": 2894, + "type": "message", + "date": "2023-05-23T06:00:04", + "date_unixtime": "1684814404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018212 BTC for 109.62 CZK @ 601,890 CZK\nFees are 0.38499952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (84.26459999708903747929906211 CZK)\nThe limits being 0.10 % (120.84 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30788179 BTC (148,256.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.99 % (37,054.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,676.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20077390 BTC (120,843.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018212 BTC for 109.62 CZK @ 601,890 CZK\nFees are 0.38499952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (84.26459999708903747929906211 CZK)\nThe limits being 0.10 % (120.84 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30788179 BTC (148,256.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.99 % (37,054.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,676.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20077390 BTC (120,843.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1368 transactions" + } + ] + }, + { + "id": 2895, + "type": "message", + "date": "2023-05-23T10:00:04", + "date_unixtime": "1684828804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018258 BTC for 109.62 CZK @ 600,367 CZK\nFees are 0.38499531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (54.033029998030226445364327059 CZK)\nThe limits being 0.10 % (120.65 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30806437 BTC (148,366.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.66 % (36,585.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,566.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20095648 BTC (120,647.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018258 BTC for 109.62 CZK @ 600,367 CZK\nFees are 0.38499531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (54.033029998030226445364327059 CZK)\nThe limits being 0.10 % (120.65 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30806437 BTC (148,366.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.66 % (36,585.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,566.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20095648 BTC (120,647.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1369 transactions" + } + ] + }, + { + "id": 2896, + "type": "message", + "date": "2023-05-23T14:00:05", + "date_unixtime": "1684843205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018239 BTC for 109.61 CZK @ 600,988 CZK\nFees are 0.38499248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (48.079039997980640869517683777 CZK)\nThe limits being 0.10 % (120.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30824676 BTC (148,476.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.77 % (36,776.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,456.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20113887 BTC (120,882.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018239 BTC for 109.61 CZK @ 600,988 CZK\nFees are 0.38499248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (48.079039997980640869517683777 CZK)\nThe limits being 0.10 % (120.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30824676 BTC (148,476.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.77 % (36,776.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,456.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20113887 BTC (120,882.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1370 transactions" + } + ] + }, + { + "id": 2897, + "type": "message", + "date": "2023-05-23T18:00:04", + "date_unixtime": "1684857604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018202 BTC for 109.61 CZK @ 602,197 CZK\nFees are 0.38498439 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (114.41742999709784023142383702 CZK)\nThe limits being 0.10 % (121.23 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30842878 BTC (148,586.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.00 % (37,148.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,346.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20132089 BTC (121,234.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018202 BTC for 109.61 CZK @ 602,197 CZK\nFees are 0.38498439 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (114.41742999709784023142383702 CZK)\nThe limits being 0.10 % (121.23 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30842878 BTC (148,586.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.00 % (37,148.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,346.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20132089 BTC (121,234.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1371 transactions" + } + ] + }, + { + "id": 2898, + "type": "message", + "date": "2023-05-23T22:00:04", + "date_unixtime": "1684872004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018273 BTC for 109.62 CZK @ 599,880 CZK\nFees are 0.38499905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (119.97599999629164176136000331 CZK)\nThe limits being 0.10 % (120.88 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30861151 BTC (148,696.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.50 % (36,433.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,236.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20150362 BTC (120,877.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018273 BTC for 109.62 CZK @ 599,880 CZK\nFees are 0.38499905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (119.97599999629164176136000331 CZK)\nThe limits being 0.10 % (120.88 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30861151 BTC (148,696.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.50 % (36,433.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,236.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20150362 BTC (120,877.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1372 transactions" + } + ] + }, + { + "id": 2899, + "type": "message", + "date": "2023-05-24T02:00:05", + "date_unixtime": "1684886405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018272 BTC for 109.61 CZK @ 599,890 CZK\nFees are 0.38498440 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (101.98129999740400716581282499 CZK)\nThe limits being 0.10 % (120.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30879423 BTC (148,806.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.49 % (36,436.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,126.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20168634 BTC (120,989.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018272 BTC for 109.61 CZK @ 599,890 CZK\nFees are 0.38498440 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (101.98129999740400716581282499 CZK)\nThe limits being 0.10 % (120.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30879423 BTC (148,806.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.49 % (36,436.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,126.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20168634 BTC (120,989.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1373 transactions" + } + ] + }, + { + "id": 2900, + "type": "message", + "date": "2023-05-24T06:00:04", + "date_unixtime": "1684900804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018565 BTC for 109.61 CZK @ 590,434 CZK\nFees are 0.38499202 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (82.66075999823402899976663954 CZK)\nThe limits being 0.10 % (119.19 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30897988 BTC (148,916.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 481,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.51 % (33,515.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,016.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20187199 BTC (119,192.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018565 BTC for 109.61 CZK @ 590,434 CZK\nFees are 0.38499202 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (82.66075999823402899976663954 CZK)\nThe limits being 0.10 % (119.19 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30897988 BTC (148,916.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 481,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.51 % (33,515.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,016.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20187199 BTC (119,192.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1374 transactions" + } + ] + }, + { + "id": 2901, + "type": "message", + "date": "2023-05-24T10:00:05", + "date_unixtime": "1684915205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018554 BTC for 109.61 CZK @ 590,786 CZK\nFees are 0.38499330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.26287999976797818608246152 CZK)\nThe limits being 0.10 % (119.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30916542 BTC (149,026.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.56 % (33,624.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,906.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20205753 BTC (119,372.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018554 BTC for 109.61 CZK @ 590,786 CZK\nFees are 0.38499330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.26287999976797818608246152 CZK)\nThe limits being 0.10 % (119.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30916542 BTC (149,026.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.56 % (33,624.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,906.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20205753 BTC (119,372.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1375 transactions" + } + ] + }, + { + "id": 2902, + "type": "message", + "date": "2023-05-24T14:00:05", + "date_unixtime": "1684929605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018581 BTC for 109.61 CZK @ 589,919 CZK\nFees are 0.38498773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (76.689469998002524236588977488 CZK)\nThe limits being 0.10 % (119.31 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30935123 BTC (149,136.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.37 % (33,355.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,796.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20224334 BTC (119,307.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.38 CZK over 1376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018581 BTC for 109.61 CZK @ 589,919 CZK\nFees are 0.38498773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.06 % (76.689469998002524236588977488 CZK)\nThe limits being 0.10 % (119.31 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30935123 BTC (149,136.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.37 % (33,355.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,796.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20224334 BTC (119,307.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.38 CZK over 1376 transactions" + } + ] + }, + { + "id": 2903, + "type": "message", + "date": "2023-05-24T18:00:03", + "date_unixtime": "1684944003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018852 BTC for 109.61 CZK @ 581,449 CZK\nFees are 0.38499446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (110.47530999078020055204619605 CZK)\nThe limits being 0.10 % (117.70 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30953975 BTC (149,246.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.59 % (30,735.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,686.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20243186 BTC (117,703.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018852 BTC for 109.61 CZK @ 581,449 CZK\nFees are 0.38499446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (110.47530999078020055204619605 CZK)\nThe limits being 0.10 % (117.70 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30953975 BTC (149,246.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.59 % (30,735.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,686.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20243186 BTC (117,703.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1377 transactions" + } + ] + }, + { + "id": 2904, + "type": "message", + "date": "2023-05-24T22:00:04", + "date_unixtime": "1684958404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018882 BTC for 109.62 CZK @ 580,528 CZK\nFees are 0.38499633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (98.68975999160231848207156743 CZK)\nThe limits being 0.10 % (117.63 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30972857 BTC (149,356.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.39 % (30,449.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,576.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20262068 BTC (117,626.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018882 BTC for 109.62 CZK @ 580,528 CZK\nFees are 0.38499633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (98.68975999160231848207156743 CZK)\nThe limits being 0.10 % (117.63 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30972857 BTC (149,356.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.39 % (30,449.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,576.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20262068 BTC (117,626.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1378 transactions" + } + ] + }, + { + "id": 2905, + "type": "message", + "date": "2023-05-25T02:00:05", + "date_unixtime": "1684972805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018829 BTC for 109.61 CZK @ 582,154 CZK\nFees are 0.38499099 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (81.50155999384278346198311751 CZK)\nThe limits being 0.10 % (118.07 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.30991686 BTC (149,466.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.71 % (30,952.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,466.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20280897 BTC (118,066.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018829 BTC for 109.61 CZK @ 582,154 CZK\nFees are 0.38499099 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (81.50155999384278346198311751 CZK)\nThe limits being 0.10 % (118.07 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.30991686 BTC (149,466.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.71 % (30,952.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,466.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20280897 BTC (118,066.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1379 transactions" + } + ] + }, + { + "id": 2906, + "type": "message", + "date": "2023-05-25T06:00:03", + "date_unixtime": "1684987203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018918 BTC for 109.61 CZK @ 579,413 CZK\nFees are 0.38498949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (110.08846999030194193459586657 CZK)\nThe limits being 0.10 % (117.62 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31010604 BTC (149,576.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.13 % (30,102.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,356.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20299815 BTC (117,619.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018918 BTC for 109.61 CZK @ 579,413 CZK\nFees are 0.38498949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (110.08846999030194193459586657 CZK)\nThe limits being 0.10 % (117.62 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31010604 BTC (149,576.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.13 % (30,102.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,356.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20299815 BTC (117,619.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1380 transactions" + } + ] + }, + { + "id": 2907, + "type": "message", + "date": "2023-05-25T10:00:06", + "date_unixtime": "1685001606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018944 BTC for 109.62 CZK @ 578,631 CZK\nFees are 0.38499829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (109.93988999176446625998195505 CZK)\nThe limits being 0.10 % (117.57 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31029548 BTC (149,686.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.95 % (29,860.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,246.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20318759 BTC (117,570.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018944 BTC for 109.62 CZK @ 578,631 CZK\nFees are 0.38499829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (109.93988999176446625998195505 CZK)\nThe limits being 0.10 % (117.57 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31029548 BTC (149,686.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.95 % (29,860.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,246.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20318759 BTC (117,570.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1381 transactions" + } + ] + }, + { + "id": 2908, + "type": "message", + "date": "2023-05-25T14:00:04", + "date_unixtime": "1685016004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018857 BTC for 109.61 CZK @ 581,280 CZK\nFees are 0.38498464 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (110.44319999638535106445466005 CZK)\nThe limits being 0.10 % (118.22 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31048405 BTC (149,796.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.48 % (30,681.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,136.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20337616 BTC (118,218.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018857 BTC for 109.61 CZK @ 581,280 CZK\nFees are 0.38498464 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (110.44319999638535106445466005 CZK)\nThe limits being 0.10 % (118.22 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31048405 BTC (149,796.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.48 % (30,681.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,136.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20337616 BTC (118,218.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1382 transactions" + } + ] + }, + { + "id": 2909, + "type": "message", + "date": "2023-05-25T18:00:04", + "date_unixtime": "1685030404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018916 BTC for 109.62 CZK @ 579,487 CZK\nFees are 0.38499796 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (86.92304999745551175664198355 CZK)\nThe limits being 0.10 % (117.96 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31067321 BTC (149,906.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.10 % (30,124.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,026.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20356532 BTC (117,963.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018916 BTC for 109.62 CZK @ 579,487 CZK\nFees are 0.38499796 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (86.92304999745551175664198355 CZK)\nThe limits being 0.10 % (117.96 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31067321 BTC (149,906.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.10 % (30,124.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,026.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20356532 BTC (117,963.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1383 transactions" + } + ] + }, + { + "id": 2910, + "type": "message", + "date": "2023-05-25T22:00:06", + "date_unixtime": "1685044806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018745 BTC for 109.61 CZK @ 584,763 CZK\nFees are 0.38499115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (146.19074999305577983060887320 CZK)\nThe limits being 0.10 % (119.15 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31086066 BTC (150,016.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.17 % (31,763.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,916.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20375277 BTC (119,147.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018745 BTC for 109.61 CZK @ 584,763 CZK\nFees are 0.38499115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.12 % (146.19074999305577983060887320 CZK)\nThe limits being 0.10 % (119.15 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31086066 BTC (150,016.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.17 % (31,763.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,916.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20375277 BTC (119,147.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1384 transactions" + } + ] + }, + { + "id": 2911, + "type": "message", + "date": "2023-05-26T02:00:05", + "date_unixtime": "1685059205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018745 BTC for 109.61 CZK @ 584,763 CZK\nFees are 0.38499115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (128.64785999388908625093580842 CZK)\nThe limits being 0.10 % (119.26 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31104811 BTC (150,126.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.16 % (31,762.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,806.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20394022 BTC (119,256.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018745 BTC for 109.61 CZK @ 584,763 CZK\nFees are 0.38499115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.11 % (128.64785999388908625093580842 CZK)\nThe limits being 0.10 % (119.26 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31104811 BTC (150,126.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.16 % (31,762.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,806.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20394022 BTC (119,256.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1385 transactions" + } + ] + }, + { + "id": 2912, + "type": "message", + "date": "2023-05-26T06:00:03", + "date_unixtime": "1685073603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018786 BTC for 109.61 CZK @ 583,474 CZK\nFees are 0.38498273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (169.20745998501677642570178229 CZK)\nThe limits being 0.10 % (119.10 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31123597 BTC (150,236.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.87 % (31,361.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,696.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20412808 BTC (119,103.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018786 BTC for 109.61 CZK @ 583,474 CZK\nFees are 0.38498273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (169.20745998501677642570178229 CZK)\nThe limits being 0.10 % (119.10 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31123597 BTC (150,236.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.87 % (31,361.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,696.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20412808 BTC (119,103.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1386 transactions" + } + ] + }, + { + "id": 2913, + "type": "message", + "date": "2023-05-26T10:00:04", + "date_unixtime": "1685088004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018756 BTC for 109.61 CZK @ 584,406 CZK\nFees are 0.38498190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (169.47773999574744950574460916 CZK)\nThe limits being 0.10 % (119.40 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31142353 BTC (150,346.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.05 % (31,651.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,586.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20431564 BTC (119,403.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018756 BTC for 109.61 CZK @ 584,406 CZK\nFees are 0.38498190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.14 % (169.47773999574744950574460916 CZK)\nThe limits being 0.10 % (119.40 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31142353 BTC (150,346.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.05 % (31,651.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,586.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20431564 BTC (119,403.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1387 transactions" + } + ] + }, + { + "id": 2914, + "type": "message", + "date": "2023-05-26T14:00:05", + "date_unixtime": "1685102405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018779 BTC for 109.61 CZK @ 583,689 CZK\nFees are 0.38498108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (175.10669999906870497695999992 CZK)\nThe limits being 0.10 % (119.37 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31161132 BTC (150,456.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.89 % (31,427.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,476.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20450343 BTC (119,366.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018779 BTC for 109.61 CZK @ 583,689 CZK\nFees are 0.38498108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (175.10669999906870497695999992 CZK)\nThe limits being 0.10 % (119.37 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31161132 BTC (150,456.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.89 % (31,427.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,476.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20450343 BTC (119,366.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1388 transactions" + } + ] + }, + { + "id": 2915, + "type": "message", + "date": "2023-05-26T18:00:04", + "date_unixtime": "1685116804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018544 BTC for 109.61 CZK @ 591,102 CZK\nFees are 0.38499161 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (177.33059999664676651564218934 CZK)\nThe limits being 0.10 % (120.99 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31179676 BTC (150,566.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.41 % (33,737.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,366.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20468887 BTC (120,992.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018544 BTC for 109.61 CZK @ 591,102 CZK\nFees are 0.38499161 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.15 % (177.33059999664676651564218934 CZK)\nThe limits being 0.10 % (120.99 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31179676 BTC (150,566.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.41 % (33,737.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,366.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20468887 BTC (120,992.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1389 transactions" + } + ] + }, + { + "id": 2916, + "type": "message", + "date": "2023-05-26T22:00:04", + "date_unixtime": "1685131204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018543 BTC for 109.61 CZK @ 591,123 CZK\nFees are 0.38498453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (124.13582999704883417664448496 CZK)\nThe limits being 0.10 % (121.11 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31198219 BTC (150,676.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 482,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.39 % (33,743.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,256.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20487430 BTC (121,105.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018543 BTC for 109.61 CZK @ 591,123 CZK\nFees are 0.38498453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.10 % (124.13582999704883417664448496 CZK)\nThe limits being 0.10 % (121.11 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31198219 BTC (150,676.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 482,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.39 % (33,743.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,256.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20487430 BTC (121,105.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1390 transactions" + } + ] + }, + { + "id": 2917, + "type": "message", + "date": "2023-05-27T02:00:05", + "date_unixtime": "1685145605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018580 BTC for 109.61 CZK @ 589,944 CZK\nFees are 0.38498333 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (112.08935999673907738416081927 CZK)\nThe limits being 0.10 % (120.97 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31216799 BTC (150,786.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.13 % (33,375.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,146.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20506010 BTC (120,973.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018580 BTC for 109.61 CZK @ 589,944 CZK\nFees are 0.38498333 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.09 % (112.08935999673907738416081927 CZK)\nThe limits being 0.10 % (120.97 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31216799 BTC (150,786.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.13 % (33,375.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,146.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20506010 BTC (120,973.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1391 transactions" + } + ] + }, + { + "id": 2918, + "type": "message", + "date": "2023-05-27T06:00:05", + "date_unixtime": "1685160005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018557 BTC for 109.62 CZK @ 590,700 CZK\nFees are 0.38499949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (100.41899999406614221566866562 CZK)\nThe limits being 0.10 % (121.24 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31235356 BTC (150,896.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.27 % (33,610.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,036.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20524567 BTC (121,238.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018557 BTC for 109.62 CZK @ 590,700 CZK\nFees are 0.38499949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.08 % (100.41899999406614221566866562 CZK)\nThe limits being 0.10 % (121.24 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31235356 BTC (150,896.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.27 % (33,610.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,036.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20524567 BTC (121,238.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1392 transactions" + } + ] + }, + { + "id": 2919, + "type": "message", + "date": "2023-05-27T10:00:05", + "date_unixtime": "1685174405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018562 BTC for 109.62 CZK @ 590,541 CZK\nFees are 0.38499957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (82.67573999889515024104568392 CZK)\nThe limits being 0.10 % (121.32 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31253918 BTC (151,006.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.22 % (33,560.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,926.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20543129 BTC (121,315.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018562 BTC for 109.62 CZK @ 590,541 CZK\nFees are 0.38499957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.07 % (82.67573999889515024104568392 CZK)\nThe limits being 0.10 % (121.32 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31253918 BTC (151,006.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.22 % (33,560.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,926.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20543129 BTC (121,315.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1393 transactions" + } + ] + }, + { + "id": 2920, + "type": "message", + "date": "2023-05-27T14:00:05", + "date_unixtime": "1685188805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018574 BTC for 109.61 CZK @ 590,140 CZK\nFees are 0.38498687 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.211199998884060842505092413 CZK)\nThe limits being 0.10 % (121.34 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31272492 BTC (151,116.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.13 % (33,434.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,816.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20561703 BTC (121,342.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018574 BTC for 109.61 CZK @ 590,140 CZK\nFees are 0.38498687 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded, No address, Turned off]\nFees would have been 0.04 % (47.211199998884060842505092413 CZK)\nThe limits being 0.10 % (121.34 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31272492 BTC (151,116.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.13 % (33,434.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,816.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20561703 BTC (121,342.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1394 transactions" + } + ] + }, + { + "id": 2921, + "type": "message", + "date": "2023-05-27T18:00:04", + "date_unixtime": "1685203204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018585 BTC for 109.61 CZK @ 589,783 CZK\nFees are 0.38498183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.182639997029498182243235573 CZK)\nThe limits being 0.10 % (121.38 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31291077 BTC (151,226.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.04 % (33,322.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,706.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20580288 BTC (121,379.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018585 BTC for 109.61 CZK @ 589,783 CZK\nFees are 0.38498183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.182639997029498182243235573 CZK)\nThe limits being 0.10 % (121.38 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31291077 BTC (151,226.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.04 % (33,322.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,706.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20580288 BTC (121,379.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1395 transactions" + } + ] + }, + { + "id": 2922, + "type": "message", + "date": "2023-05-27T22:00:04", + "date_unixtime": "1685217604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018553 BTC for 109.62 CZK @ 590,824 CZK\nFees are 0.38499731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.807119994050897855994828216 CZK)\nThe limits being 0.10 % (121.70 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31309630 BTC (151,336.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.23 % (33,648.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,596.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20598841 BTC (121,702.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018553 BTC for 109.62 CZK @ 590,824 CZK\nFees are 0.38499731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.807119994050897855994828216 CZK)\nThe limits being 0.10 % (121.70 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31309630 BTC (151,336.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.23 % (33,648.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,596.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20598841 BTC (121,702.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1396 transactions" + } + ] + }, + { + "id": 2923, + "type": "message", + "date": "2023-05-28T02:00:04", + "date_unixtime": "1685232004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018465 BTC for 109.61 CZK @ 593,613 CZK\nFees are 0.38497997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.361299999150009896313350068 CZK)\nThe limits being 0.10 % (122.39 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31328095 BTC (151,446.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.79 % (34,521.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,486.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20617306 BTC (122,387.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018465 BTC for 109.61 CZK @ 593,613 CZK\nFees are 0.38497997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.361299999150009896313350068 CZK)\nThe limits being 0.10 % (122.39 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31328095 BTC (151,446.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.79 % (34,521.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,486.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20617306 BTC (122,387.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1397 transactions" + } + ] + }, + { + "id": 2924, + "type": "message", + "date": "2023-05-28T06:00:05", + "date_unixtime": "1685246405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018251 BTC for 109.61 CZK @ 600,574 CZK\nFees are 0.38498039 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.045919998868679363611393874 CZK)\nThe limits being 0.10 % (123.93 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31346346 BTC (151,556.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.22 % (36,701.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,376.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20635557 BTC (123,931.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018251 BTC for 109.61 CZK @ 600,574 CZK\nFees are 0.38498039 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.045919998868679363611393874 CZK)\nThe limits being 0.10 % (123.93 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31346346 BTC (151,556.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.22 % (36,701.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,376.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20635557 BTC (123,931.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1398 transactions" + } + ] + }, + { + "id": 2925, + "type": "message", + "date": "2023-05-28T10:00:04", + "date_unixtime": "1685260804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018272 BTC for 109.61 CZK @ 599,900 CZK\nFees are 0.38499082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.991999996509589466639092426 CZK)\nThe limits being 0.10 % (123.90 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31364618 BTC (151,666.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.06 % (36,489.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,266.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20653829 BTC (123,902.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018272 BTC for 109.61 CZK @ 599,900 CZK\nFees are 0.38499082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.991999996509589466639092426 CZK)\nThe limits being 0.10 % (123.90 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31364618 BTC (151,666.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.06 % (36,489.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,266.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20653829 BTC (123,902.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1399 transactions" + } + ] + }, + { + "id": 2926, + "type": "message", + "date": "2023-05-28T14:00:04", + "date_unixtime": "1685275204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018276 BTC for 109.61 CZK @ 599,758 CZK\nFees are 0.38498395 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.980639999005450718938083090 CZK)\nThe limits being 0.10 % (123.98 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31382894 BTC (151,776.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.01 % (36,444.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,156.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20672105 BTC (123,982.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018276 BTC for 109.61 CZK @ 599,758 CZK\nFees are 0.38498395 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.980639999005450718938083090 CZK)\nThe limits being 0.10 % (123.98 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31382894 BTC (151,776.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.01 % (36,444.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,156.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20672105 BTC (123,982.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1400 transactions" + } + ] + }, + { + "id": 2927, + "type": "message", + "date": "2023-05-28T18:00:04", + "date_unixtime": "1685289604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018269 BTC for 109.61 CZK @ 600,000 CZK\nFees are 0.38499177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.00000 CZK)\nThe limits being 0.10 % (124.14 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31401163 BTC (151,886.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.04 % (36,520.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,046.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20690374 BTC (124,142.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018269 BTC for 109.61 CZK @ 600,000 CZK\nFees are 0.38499177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.00000 CZK)\nThe limits being 0.10 % (124.14 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31401163 BTC (151,886.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.04 % (36,520.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,046.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20690374 BTC (124,142.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1401 transactions" + } + ] + }, + { + "id": 2928, + "type": "message", + "date": "2023-05-28T22:05:58", + "date_unixtime": "1685304358", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018020 BTC for 109.61 CZK @ 608,275 CZK\nFees are 0.38498178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (109.48949999751148449903694450 CZK)\nThe limits being 0.10 % (125.96 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31419183 BTC (151,996.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.74 % (39,118.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,936.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20708394 BTC (125,963.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.41 CZK over 1402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018020 BTC for 109.61 CZK @ 608,275 CZK\nFees are 0.38498178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (109.48949999751148449903694450 CZK)\nThe limits being 0.10 % (125.96 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31419183 BTC (151,996.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.74 % (39,118.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,936.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20708394 BTC (125,963.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.41 CZK over 1402 transactions" + } + ] + }, + { + "id": 2929, + "type": "message", + "date": "2023-05-29T02:00:05", + "date_unixtime": "1685318405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017725 BTC for 109.61 CZK @ 618,413 CZK\nFees are 0.38499073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.13020999534070808587433404 CZK)\nThe limits being 0.10 % (128.17 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31436908 BTC (152,106.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 618,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.81 % (42,303.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,826.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20726119 BTC (128,173.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017725 BTC for 109.61 CZK @ 618,413 CZK\nFees are 0.38499073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.13020999534070808587433404 CZK)\nThe limits being 0.10 % (128.17 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31436908 BTC (152,106.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 618,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.81 % (42,303.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,826.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20726119 BTC (128,173.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1403 transactions" + } + ] + }, + { + "id": 2930, + "type": "message", + "date": "2023-05-29T06:00:03", + "date_unixtime": "1685332803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017759 BTC for 109.62 CZK @ 617,240 CZK\nFees are 0.38499757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (86.41359999952865011875071071 CZK)\nThe limits being 0.10 % (128.04 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31454667 BTC (152,216.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 617,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.55 % (41,934.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,716.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20743878 BTC (128,039.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017759 BTC for 109.62 CZK @ 617,240 CZK\nFees are 0.38499757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (86.41359999952865011875071071 CZK)\nThe limits being 0.10 % (128.04 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31454667 BTC (152,216.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 617,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.55 % (41,934.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,716.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20743878 BTC (128,039.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1404 transactions" + } + ] + }, + { + "id": 2931, + "type": "message", + "date": "2023-05-29T10:00:04", + "date_unixtime": "1685347204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017780 BTC for 109.61 CZK @ 616,486 CZK\nFees are 0.38498198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.483739996065514232245632974 CZK)\nThe limits being 0.10 % (127.99 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31472447 BTC (152,326.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 483,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.37 % (41,696.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,606.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20761658 BTC (127,992.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017780 BTC for 109.61 CZK @ 616,486 CZK\nFees are 0.38498198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.483739996065514232245632974 CZK)\nThe limits being 0.10 % (127.99 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31472447 BTC (152,326.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 483,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.37 % (41,696.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,606.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20761658 BTC (127,992.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1405 transactions" + } + ] + }, + { + "id": 2932, + "type": "message", + "date": "2023-05-29T14:00:04", + "date_unixtime": "1685361604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017852 BTC for 109.61 CZK @ 614,000 CZK\nFees are 0.38498222 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (67.54000 CZK)\nThe limits being 0.10 % (127.59 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31490299 BTC (152,436.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.84 % (40,913.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,496.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20779510 BTC (127,586.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017852 BTC for 109.61 CZK @ 614,000 CZK\nFees are 0.38498222 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (67.54000 CZK)\nThe limits being 0.10 % (127.59 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31490299 BTC (152,436.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.84 % (40,913.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,496.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20779510 BTC (127,586.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1406 transactions" + } + ] + }, + { + "id": 2933, + "type": "message", + "date": "2023-05-29T18:00:04", + "date_unixtime": "1685376004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017974 BTC for 109.61 CZK @ 609,827 CZK\nFees are 0.38497879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (67.080969995468735801683093261 CZK)\nThe limits being 0.10 % (126.83 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31508273 BTC (152,546.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.96 % (39,599.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,386.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20797484 BTC (126,828.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017974 BTC for 109.61 CZK @ 609,827 CZK\nFees are 0.38497879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (67.080969995468735801683093261 CZK)\nThe limits being 0.10 % (126.83 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31508273 BTC (152,546.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.96 % (39,599.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,386.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20797484 BTC (126,828.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1407 transactions" + } + ] + }, + { + "id": 2934, + "type": "message", + "date": "2023-05-29T22:00:03", + "date_unixtime": "1685390403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017992 BTC for 109.61 CZK @ 609,228 CZK\nFees are 0.38498581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.199639995564656649702918396 CZK)\nThe limits being 0.10 % (126.81 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31526265 BTC (152,656.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.82 % (39,410.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,276.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20815476 BTC (126,813.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017992 BTC for 109.61 CZK @ 609,228 CZK\nFees are 0.38498581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.199639995564656649702918396 CZK)\nThe limits being 0.10 % (126.81 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31526265 BTC (152,656.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.82 % (39,410.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,276.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20815476 BTC (126,813.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1408 transactions" + } + ] + }, + { + "id": 2935, + "type": "message", + "date": "2023-05-30T02:00:04", + "date_unixtime": "1685404804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017969 BTC for 109.61 CZK @ 610,000 CZK\nFees are 0.38498088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.30000 CZK)\nThe limits being 0.10 % (127.08 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31544234 BTC (152,766.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.96 % (39,653.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,166.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20833445 BTC (127,084.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017969 BTC for 109.61 CZK @ 610,000 CZK\nFees are 0.38498088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.30000 CZK)\nThe limits being 0.10 % (127.08 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31544234 BTC (152,766.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.96 % (39,653.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,166.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20833445 BTC (127,084.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1409 transactions" + } + ] + }, + { + "id": 2936, + "type": "message", + "date": "2023-05-30T06:00:05", + "date_unixtime": "1685419205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017969 BTC for 109.61 CZK @ 610,000 CZK\nFees are 0.38498088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (97.60000 CZK)\nThe limits being 0.10 % (127.19 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31562203 BTC (152,876.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.94 % (39,653.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,056.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20851414 BTC (127,193.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017969 BTC for 109.61 CZK @ 610,000 CZK\nFees are 0.38498088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (97.60000 CZK)\nThe limits being 0.10 % (127.19 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31562203 BTC (152,876.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.94 % (39,653.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,056.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20851414 BTC (127,193.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1410 transactions" + } + ] + }, + { + "id": 2937, + "type": "message", + "date": "2023-05-30T10:00:04", + "date_unixtime": "1685433604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017916 BTC for 109.61 CZK @ 611,815 CZK\nFees are 0.38498747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (122.36299999566153426169825570 CZK)\nThe limits being 0.10 % (127.68 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31580119 BTC (152,986.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.29 % (40,225.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,946.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20869330 BTC (127,681.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017916 BTC for 109.61 CZK @ 611,815 CZK\nFees are 0.38498747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (122.36299999566153426169825570 CZK)\nThe limits being 0.10 % (127.68 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31580119 BTC (152,986.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.29 % (40,225.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,946.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20869330 BTC (127,681.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1411 transactions" + } + ] + }, + { + "id": 2938, + "type": "message", + "date": "2023-05-30T14:00:04", + "date_unixtime": "1685448004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017867 BTC for 109.62 CZK @ 613,510 CZK\nFees are 0.38499820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (85.89139999925820717765985503 CZK)\nThe limits being 0.10 % (128.15 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31597986 BTC (153,096.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.62 % (40,760.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,836.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20887197 BTC (128,145.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017867 BTC for 109.62 CZK @ 613,510 CZK\nFees are 0.38499820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (85.89139999925820717765985503 CZK)\nThe limits being 0.10 % (128.15 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31597986 BTC (153,096.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.62 % (40,760.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,836.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20887197 BTC (128,145.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1412 transactions" + } + ] + }, + { + "id": 2939, + "type": "message", + "date": "2023-05-30T18:00:04", + "date_unixtime": "1685462404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017943 BTC for 109.61 CZK @ 610,900 CZK\nFees are 0.38499102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (85.52599999650112751165936777 CZK)\nThe limits being 0.10 % (127.71 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31615929 BTC (153,206.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.07 % (39,935.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,726.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20905140 BTC (127,709.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017943 BTC for 109.61 CZK @ 610,900 CZK\nFees are 0.38499102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (85.52599999650112751165936777 CZK)\nThe limits being 0.10 % (127.71 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31615929 BTC (153,206.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.07 % (39,935.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,726.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20905140 BTC (127,709.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1413 transactions" + } + ] + }, + { + "id": 2940, + "type": "message", + "date": "2023-05-30T22:00:04", + "date_unixtime": "1685476804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017908 BTC for 109.61 CZK @ 612,100 CZK\nFees are 0.38499482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.81499999332245561352777008 CZK)\nThe limits being 0.10 % (128.07 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31633837 BTC (153,316.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.29 % (40,314.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,616.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20923048 BTC (128,069.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017908 BTC for 109.61 CZK @ 612,100 CZK\nFees are 0.38499482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.81499999332245561352777008 CZK)\nThe limits being 0.10 % (128.07 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31633837 BTC (153,316.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.29 % (40,314.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,616.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20923048 BTC (128,069.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1414 transactions" + } + ] + }, + { + "id": 2941, + "type": "message", + "date": "2023-05-31T02:00:05", + "date_unixtime": "1685491205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017975 BTC for 109.61 CZK @ 609,803 CZK\nFees are 0.38498506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (109.76453999762999182970867610 CZK)\nThe limits being 0.10 % (127.70 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31651812 BTC (153,426.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.80 % (39,587.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,506.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20941023 BTC (127,698.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017975 BTC for 109.61 CZK @ 609,803 CZK\nFees are 0.38498506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (109.76453999762999182970867610 CZK)\nThe limits being 0.10 % (127.70 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31651812 BTC (153,426.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.80 % (39,587.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,506.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20941023 BTC (127,698.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1415 transactions" + } + ] + }, + { + "id": 2942, + "type": "message", + "date": "2023-05-31T06:00:04", + "date_unixtime": "1685505604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017932 BTC for 109.61 CZK @ 611,265 CZK\nFees are 0.38498489 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (110.02769999069729291223746110 CZK)\nThe limits being 0.10 % (128.11 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31669744 BTC (153,536.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.08 % (40,049.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,396.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20958955 BTC (128,114.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017932 BTC for 109.61 CZK @ 611,265 CZK\nFees are 0.38498489 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (110.02769999069729291223746110 CZK)\nThe limits being 0.10 % (128.11 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31669744 BTC (153,536.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.08 % (40,049.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,396.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20958955 BTC (128,114.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1416 transactions" + } + ] + }, + { + "id": 2943, + "type": "message", + "date": "2023-05-31T10:00:06", + "date_unixtime": "1685520006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018194 BTC for 109.61 CZK @ 602,476 CZK\nFees are 0.38499347 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.297119998659194303941919453 CZK)\nThe limits being 0.10 % (126.38 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31687938 BTC (153,646.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.25 % (37,265.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,286.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20977149 BTC (126,382.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018194 BTC for 109.61 CZK @ 602,476 CZK\nFees are 0.38499347 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.297119998659194303941919453 CZK)\nThe limits being 0.10 % (126.38 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31687938 BTC (153,646.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.25 % (37,265.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,286.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20977149 BTC (126,382.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1417 transactions" + } + ] + }, + { + "id": 2944, + "type": "message", + "date": "2023-05-31T14:00:04", + "date_unixtime": "1685534404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018210 BTC for 109.62 CZK @ 601,953 CZK\nFees are 0.38499754 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (42.136709998257061295898183925 CZK)\nThe limits being 0.10 % (126.38 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31706148 BTC (153,756.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 484,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.13 % (37,099.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,176.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.20995359 BTC (126,382.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018210 BTC for 109.62 CZK @ 601,953 CZK\nFees are 0.38499754 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (42.136709998257061295898183925 CZK)\nThe limits being 0.10 % (126.38 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31706148 BTC (153,756.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 484,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.13 % (37,099.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,176.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.20995359 BTC (126,382.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1418 transactions" + } + ] + }, + { + "id": 2945, + "type": "message", + "date": "2023-05-31T18:00:04", + "date_unixtime": "1685548804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018294 BTC for 109.62 CZK @ 599,186 CZK\nFees are 0.38499559 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.86161999635146017037014158 CZK)\nThe limits being 0.10 % (125.91 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31724442 BTC (153,866.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.54 % (36,222.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,066.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21013653 BTC (125,910.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018294 BTC for 109.62 CZK @ 599,186 CZK\nFees are 0.38499559 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.86161999635146017037014158 CZK)\nThe limits being 0.10 % (125.91 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31724442 BTC (153,866.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.54 % (36,222.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,066.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21013653 BTC (125,910.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1419 transactions" + } + ] + }, + { + "id": 2946, + "type": "message", + "date": "2023-05-31T22:00:04", + "date_unixtime": "1685563204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018291 BTC for 109.61 CZK @ 599,264 CZK\nFees are 0.38498256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.87487999644347947674364916 CZK)\nThe limits being 0.10 % (126.04 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31742733 BTC (153,976.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.54 % (36,246.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,956.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21031944 BTC (126,036.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018291 BTC for 109.61 CZK @ 599,264 CZK\nFees are 0.38498256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.87487999644347947674364916 CZK)\nThe limits being 0.10 % (126.04 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31742733 BTC (153,976.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.54 % (36,246.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,956.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21031944 BTC (126,036.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1420 transactions" + } + ] + }, + { + "id": 2947, + "type": "message", + "date": "2023-06-01T02:00:06", + "date_unixtime": "1685577606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018165 BTC for 109.61 CZK @ 603,436 CZK\nFees are 0.38499230 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (132.75591999650000116575196282 CZK)\nThe limits being 0.10 % (127.02 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31760898 BTC (154,086.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.38 % (37,570.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,846.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21050109 BTC (127,023.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018165 BTC for 109.61 CZK @ 603,436 CZK\nFees are 0.38499230 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (132.75591999650000116575196282 CZK)\nThe limits being 0.10 % (127.02 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31760898 BTC (154,086.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.38 % (37,570.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,846.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21050109 BTC (127,023.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1421 transactions" + } + ] + }, + { + "id": 2948, + "type": "message", + "date": "2023-06-01T06:00:05", + "date_unixtime": "1685592005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018450 BTC for 109.62 CZK @ 594,120 CZK\nFees are 0.38499578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (130.70640 CZK)\nThe limits being 0.10 % (125.17 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31779348 BTC (154,196.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.45 % (34,611.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,736.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21068559 BTC (125,172.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018450 BTC for 109.62 CZK @ 594,120 CZK\nFees are 0.38499578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (130.70640 CZK)\nThe limits being 0.10 % (125.17 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31779348 BTC (154,196.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.45 % (34,611.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,736.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21068559 BTC (125,172.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1422 transactions" + } + ] + }, + { + "id": 2949, + "type": "message", + "date": "2023-06-01T10:00:04", + "date_unixtime": "1685606404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018371 BTC for 109.61 CZK @ 596,657 CZK\nFees are 0.38498425 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (131.26453999863359955901988786 CZK)\nThe limits being 0.10 % (125.82 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31797719 BTC (154,306.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.95 % (35,416.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,626.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21086930 BTC (125,816.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018371 BTC for 109.61 CZK @ 596,657 CZK\nFees are 0.38498425 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (131.26453999863359955901988786 CZK)\nThe limits being 0.10 % (125.82 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31797719 BTC (154,306.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.95 % (35,416.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,626.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21086930 BTC (125,816.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1423 transactions" + } + ] + }, + { + "id": 2950, + "type": "message", + "date": "2023-06-01T14:00:04", + "date_unixtime": "1685620804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018393 BTC for 109.61 CZK @ 595,958 CZK\nFees are 0.38499372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (107.27243999776674641527447930 CZK)\nThe limits being 0.10 % (125.78 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31816112 BTC (154,416.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.79 % (35,194.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,516.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21105323 BTC (125,778.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018393 BTC for 109.61 CZK @ 595,958 CZK\nFees are 0.38499372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (107.27243999776674641527447930 CZK)\nThe limits being 0.10 % (125.78 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31816112 BTC (154,416.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.79 % (35,194.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,516.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21105323 BTC (125,778.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1424 transactions" + } + ] + }, + { + "id": 2951, + "type": "message", + "date": "2023-06-01T18:00:07", + "date_unixtime": "1685635207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018487 BTC for 109.61 CZK @ 592,923 CZK\nFees are 0.38499063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (106.72613999754038773094946613 CZK)\nThe limits being 0.10 % (125.25 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31834599 BTC (154,526.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.15 % (34,228.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,406.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21123810 BTC (125,247.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018487 BTC for 109.61 CZK @ 592,923 CZK\nFees are 0.38499063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (106.72613999754038773094946613 CZK)\nThe limits being 0.10 % (125.25 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31834599 BTC (154,526.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.15 % (34,228.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,406.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21123810 BTC (125,247.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1425 transactions" + } + ] + }, + { + "id": 2952, + "type": "message", + "date": "2023-06-01T22:00:04", + "date_unixtime": "1685649604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018536 BTC for 109.61 CZK @ 591,345 CZK\nFees are 0.38498373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (112.35554999775279400819617313 CZK)\nThe limits being 0.10 % (125.02 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31853135 BTC (154,636.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.81 % (33,725.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,296.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21142346 BTC (125,024.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018536 BTC for 109.61 CZK @ 591,345 CZK\nFees are 0.38498373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (112.35554999775279400819617313 CZK)\nThe limits being 0.10 % (125.02 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31853135 BTC (154,636.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.81 % (33,725.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,296.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21142346 BTC (125,024.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1426 transactions" + } + ] + }, + { + "id": 2953, + "type": "message", + "date": "2023-06-02T02:00:04", + "date_unixtime": "1685664004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018562 BTC for 109.62 CZK @ 590,541 CZK\nFees are 0.38499957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (112.20278999850056104141914247 CZK)\nThe limits being 0.10 % (124.96 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31871697 BTC (154,746.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.63 % (33,469.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,186.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21160908 BTC (124,963.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018562 BTC for 109.62 CZK @ 590,541 CZK\nFees are 0.38499957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (112.20278999850056104141914247 CZK)\nThe limits being 0.10 % (124.96 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31871697 BTC (154,746.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.63 % (33,469.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,186.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21160908 BTC (124,963.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1427 transactions" + } + ] + }, + { + "id": 2954, + "type": "message", + "date": "2023-06-02T06:00:05", + "date_unixtime": "1685678405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018474 BTC for 109.62 CZK @ 593,350 CZK\nFees are 0.38499697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (112.73649999333824523122195623 CZK)\nThe limits being 0.10 % (125.67 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31890171 BTC (154,856.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.19 % (34,363.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,076.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21179382 BTC (125,667.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018474 BTC for 109.62 CZK @ 593,350 CZK\nFees are 0.38499697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (112.73649999333824523122195623 CZK)\nThe limits being 0.10 % (125.67 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31890171 BTC (154,856.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.19 % (34,363.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,076.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21179382 BTC (125,667.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1428 transactions" + } + ] + }, + { + "id": 2955, + "type": "message", + "date": "2023-06-02T10:00:04", + "date_unixtime": "1685692804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018380 BTC for 109.61 CZK @ 596,372 CZK\nFees are 0.38498887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.637199995879492505284821948 CZK)\nThe limits being 0.10 % (126.42 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31908551 BTC (154,966.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.80 % (35,327.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,966.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21197762 BTC (126,417.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.44 CZK over 1429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018380 BTC for 109.61 CZK @ 596,372 CZK\nFees are 0.38498887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.637199995879492505284821948 CZK)\nThe limits being 0.10 % (126.42 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31908551 BTC (154,966.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.80 % (35,327.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,966.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21197762 BTC (126,417.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.44 CZK over 1429 transactions" + } + ] + }, + { + "id": 2956, + "type": "message", + "date": "2023-06-02T14:00:04", + "date_unixtime": "1685707204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018321 BTC for 109.61 CZK @ 598,280 CZK\nFees are 0.38498081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (89.74199999526791321254926571 CZK)\nThe limits being 0.10 % (126.93 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31926872 BTC (155,076.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.17 % (35,935.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,856.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21216083 BTC (126,931.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018321 BTC for 109.61 CZK @ 598,280 CZK\nFees are 0.38498081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (89.74199999526791321254926571 CZK)\nThe limits being 0.10 % (126.93 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31926872 BTC (155,076.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.17 % (35,935.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,856.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21216083 BTC (126,931.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1430 transactions" + } + ] + }, + { + "id": 2957, + "type": "message", + "date": "2023-06-02T18:00:03", + "date_unixtime": "1685721603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018305 BTC for 109.62 CZK @ 598,827 CZK\nFees are 0.38499628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.894429995970127498306596127 CZK)\nThe limits being 0.10 % (127.16 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31945177 BTC (155,186.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.27 % (36,109.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,746.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21234388 BTC (127,157.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018305 BTC for 109.62 CZK @ 598,827 CZK\nFees are 0.38499628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.894429995970127498306596127 CZK)\nThe limits being 0.10 % (127.16 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31945177 BTC (155,186.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.27 % (36,109.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,746.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21234388 BTC (127,157.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1431 transactions" + } + ] + }, + { + "id": 2958, + "type": "message", + "date": "2023-06-02T22:00:04", + "date_unixtime": "1685736004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018199 BTC for 109.61 CZK @ 602,299 CZK\nFees are 0.38498613 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.298869998195501962155479068 CZK)\nThe limits being 0.10 % (128.00 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31963376 BTC (155,296.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.97 % (37,218.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,636.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21252587 BTC (128,004.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018199 BTC for 109.61 CZK @ 602,299 CZK\nFees are 0.38498613 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.298869998195501962155479068 CZK)\nThe limits being 0.10 % (128.00 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31963376 BTC (155,296.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.97 % (37,218.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,636.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21252587 BTC (128,004.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1432 transactions" + } + ] + }, + { + "id": 2959, + "type": "message", + "date": "2023-06-03T02:00:04", + "date_unixtime": "1685750404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018200 BTC for 109.61 CZK @ 602,258 CZK\nFees are 0.38498108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.293539995729233397394832371 CZK)\nThe limits being 0.10 % (128.11 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31981576 BTC (155,406.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.94 % (37,205.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,526.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21270787 BTC (128,105.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018200 BTC for 109.61 CZK @ 602,258 CZK\nFees are 0.38498108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.293539995729233397394832371 CZK)\nThe limits being 0.10 % (128.11 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31981576 BTC (155,406.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.94 % (37,205.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,526.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21270787 BTC (128,105.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1433 transactions" + } + ] + }, + { + "id": 2960, + "type": "message", + "date": "2023-06-03T06:00:03", + "date_unixtime": "1685764803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018257 BTC for 109.61 CZK @ 600,380 CZK\nFees are 0.38498256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (66.041799995136701666858660513 CZK)\nThe limits being 0.10 % (127.82 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.31999833 BTC (155,516.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 485,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.54 % (36,604.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,416.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21289044 BTC (127,815.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018257 BTC for 109.61 CZK @ 600,380 CZK\nFees are 0.38498256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (66.041799995136701666858660513 CZK)\nThe limits being 0.10 % (127.82 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.31999833 BTC (155,516.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 485,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.54 % (36,604.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,416.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21289044 BTC (127,815.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1434 transactions" + } + ] + }, + { + "id": 2961, + "type": "message", + "date": "2023-06-03T10:00:04", + "date_unixtime": "1685779204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018238 BTC for 109.61 CZK @ 601,023 CZK\nFees are 0.38499379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (60.102299999131234559948175683 CZK)\nThe limits being 0.10 % (128.06 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32018071 BTC (155,626.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.65 % (36,809.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,306.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21307282 BTC (128,061.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018238 BTC for 109.61 CZK @ 601,023 CZK\nFees are 0.38499379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (60.102299999131234559948175683 CZK)\nThe limits being 0.10 % (128.06 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32018071 BTC (155,626.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.65 % (36,809.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,306.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21307282 BTC (128,061.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1435 transactions" + } + ] + }, + { + "id": 2962, + "type": "message", + "date": "2023-06-03T14:00:05", + "date_unixtime": "1685793605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018269 BTC for 109.61 CZK @ 600,003 CZK\nFees are 0.38499370 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (54.000269995952368036520489632 CZK)\nThe limits being 0.10 % (127.95 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32036340 BTC (155,736.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.43 % (36,482.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,196.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21325551 BTC (127,953.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018269 BTC for 109.61 CZK @ 600,003 CZK\nFees are 0.38499370 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (54.000269995952368036520489632 CZK)\nThe limits being 0.10 % (127.95 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32036340 BTC (155,736.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.43 % (36,482.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,196.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21325551 BTC (127,953.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1436 transactions" + } + ] + }, + { + "id": 2963, + "type": "message", + "date": "2023-06-03T18:00:04", + "date_unixtime": "1685808004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018193 BTC for 109.61 CZK @ 602,509 CZK\nFees are 0.38499340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (42.175629996819519523146478669 CZK)\nThe limits being 0.10 % (128.60 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32054533 BTC (155,846.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.92 % (37,285.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,086.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21343744 BTC (128,597.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018193 BTC for 109.61 CZK @ 602,509 CZK\nFees are 0.38499340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (42.175629996819519523146478669 CZK)\nThe limits being 0.10 % (128.60 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32054533 BTC (155,846.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.92 % (37,285.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,086.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21343744 BTC (128,597.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1437 transactions" + } + ] + }, + { + "id": 2964, + "type": "message", + "date": "2023-06-03T22:00:04", + "date_unixtime": "1685822404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018296 BTC for 109.62 CZK @ 599,121 CZK\nFees are 0.38499591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.885729997479307774777783662 CZK)\nThe limits being 0.10 % (127.98 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32072829 BTC (155,956.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.21 % (36,198.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,976.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21362040 BTC (127,984.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018296 BTC for 109.62 CZK @ 599,121 CZK\nFees are 0.38499591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.885729997479307774777783662 CZK)\nThe limits being 0.10 % (127.98 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32072829 BTC (155,956.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.21 % (36,198.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,976.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21362040 BTC (127,984.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1438 transactions" + } + ] + }, + { + "id": 2965, + "type": "message", + "date": "2023-06-04T02:00:06", + "date_unixtime": "1685836806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018362 BTC for 109.62 CZK @ 596,973 CZK\nFees are 0.38499944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.69729999570721514021261062 CZK)\nThe limits being 0.10 % (127.64 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32091191 BTC (156,066.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.75 % (35,509.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,866.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21380402 BTC (127,635.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018362 BTC for 109.62 CZK @ 596,973 CZK\nFees are 0.38499944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.69729999570721514021261062 CZK)\nThe limits being 0.10 % (127.64 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32091191 BTC (156,066.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.75 % (35,509.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,866.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21380402 BTC (127,635.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1439 transactions" + } + ] + }, + { + "id": 2966, + "type": "message", + "date": "2023-06-04T06:00:04", + "date_unixtime": "1685851204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018339 BTC for 109.61 CZK @ 597,696 CZK\nFees are 0.38498290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.769602166450902402146497835 CZK)\nThe limits being 0.10 % (127.90 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32109530 BTC (156,176.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 597,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.89 % (35,741.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,756.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21398741 BTC (127,899.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018339 BTC for 109.61 CZK @ 597,696 CZK\nFees are 0.38498290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.769602166450902402146497835 CZK)\nThe limits being 0.10 % (127.90 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32109530 BTC (156,176.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 597,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.89 % (35,741.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,756.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21398741 BTC (127,899.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1440 transactions" + } + ] + }, + { + "id": 2967, + "type": "message", + "date": "2023-06-04T10:00:04", + "date_unixtime": "1685865604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018301 BTC for 109.61 CZK @ 598,938 CZK\nFees are 0.38498349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.904419999103188019572063864 CZK)\nThe limits being 0.10 % (128.27 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32127831 BTC (156,286.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.12 % (36,139.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,646.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21417042 BTC (128,274.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018301 BTC for 109.61 CZK @ 598,938 CZK\nFees are 0.38498349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.904419999103188019572063864 CZK)\nThe limits being 0.10 % (128.27 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32127831 BTC (156,286.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.12 % (36,139.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,646.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21417042 BTC (128,274.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1441 transactions" + } + ] + }, + { + "id": 2968, + "type": "message", + "date": "2023-06-04T14:00:04", + "date_unixtime": "1685880004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018229 BTC for 109.61 CZK @ 601,308 CZK\nFees are 0.38498628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.104639998416863595223509094 CZK)\nThe limits being 0.10 % (128.89 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32146060 BTC (156,396.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.59 % (36,900.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,536.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21435271 BTC (128,892.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018229 BTC for 109.61 CZK @ 601,308 CZK\nFees are 0.38498628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.104639998416863595223509094 CZK)\nThe limits being 0.10 % (128.89 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32146060 BTC (156,396.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.59 % (36,900.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,536.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21435271 BTC (128,892.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1442 transactions" + } + ] + }, + { + "id": 2969, + "type": "message", + "date": "2023-06-04T18:00:04", + "date_unixtime": "1685894404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018235 BTC for 109.61 CZK @ 601,100 CZK\nFees are 0.38497978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (36.065999997540825372780133803 CZK)\nThe limits being 0.10 % (128.96 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32164295 BTC (156,506.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.53 % (36,833.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,426.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21453506 BTC (128,957.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018235 BTC for 109.61 CZK @ 601,100 CZK\nFees are 0.38497978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (36.065999997540825372780133803 CZK)\nThe limits being 0.10 % (128.96 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32164295 BTC (156,506.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.53 % (36,833.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,426.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21453506 BTC (128,957.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1443 transactions" + } + ] + }, + { + "id": 2970, + "type": "message", + "date": "2023-06-04T22:00:03", + "date_unixtime": "1685908803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018248 BTC for 109.61 CZK @ 600,672 CZK\nFees are 0.38497992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (36.040319999030137176611364828 CZK)\nThe limits being 0.10 % (128.97 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32182543 BTC (156,616.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.43 % (36,695.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,316.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21471754 BTC (128,974.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018248 BTC for 109.61 CZK @ 600,672 CZK\nFees are 0.38497992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (36.040319999030137176611364828 CZK)\nThe limits being 0.10 % (128.97 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32182543 BTC (156,616.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.43 % (36,695.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,316.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21471754 BTC (128,974.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1444 transactions" + } + ] + }, + { + "id": 2971, + "type": "message", + "date": "2023-06-05T02:00:05", + "date_unixtime": "1685923205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018254 BTC for 109.62 CZK @ 600,500 CZK\nFees are 0.38499623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (36.029999998362256698902368061 CZK)\nThe limits being 0.10 % (129.05 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32200797 BTC (156,726.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.38 % (36,639.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,206.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21490008 BTC (129,047.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018254 BTC for 109.62 CZK @ 600,500 CZK\nFees are 0.38499623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (36.029999998362256698902368061 CZK)\nThe limits being 0.10 % (129.05 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32200797 BTC (156,726.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.38 % (36,639.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,206.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21490008 BTC (129,047.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1445 transactions" + } + ] + }, + { + "id": 2972, + "type": "message", + "date": "2023-06-05T06:00:03", + "date_unixtime": "1685937603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018454 BTC for 109.61 CZK @ 593,974 CZK\nFees are 0.38498461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (35.638439997777368459335643767 CZK)\nThe limits being 0.10 % (127.75 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32219251 BTC (156,836.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.02 % (34,537.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,096.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21508462 BTC (127,754.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018454 BTC for 109.61 CZK @ 593,974 CZK\nFees are 0.38498461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (35.638439997777368459335643767 CZK)\nThe limits being 0.10 % (127.75 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32219251 BTC (156,836.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.02 % (34,537.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,096.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21508462 BTC (127,754.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1446 transactions" + } + ] + }, + { + "id": 2973, + "type": "message", + "date": "2023-06-05T10:00:03", + "date_unixtime": "1685952003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018464 BTC for 109.61 CZK @ 593,661 CZK\nFees are 0.38499025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (35.619659998497459930105980888 CZK)\nThe limits being 0.10 % (127.80 CZK) and 30.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32237715 BTC (156,946.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.94 % (34,436.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 986.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21526926 BTC (127,796.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018464 BTC for 109.61 CZK @ 593,661 CZK\nFees are 0.38499025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.03 % (35.619659998497459930105980888 CZK)\nThe limits being 0.10 % (127.80 CZK) and 30.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32237715 BTC (156,946.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.94 % (34,436.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 986.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21526926 BTC (127,796.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1447 transactions" + } + ] + }, + { + "id": 2974, + "type": "message", + "date": "2023-06-05T14:00:05", + "date_unixtime": "1685966405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018538 BTC for 109.61 CZK @ 591,277 CZK\nFees are 0.38498099 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.127699996823073068835620801 CZK)\nThe limits being 0.10 % (127.39 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32256253 BTC (157,056.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.44 % (33,667.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 876.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21545464 BTC (127,393.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018538 BTC for 109.61 CZK @ 591,277 CZK\nFees are 0.38498099 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (59.127699996823073068835620801 CZK)\nThe limits being 0.10 % (127.39 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32256253 BTC (157,056.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.44 % (33,667.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 876.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21545464 BTC (127,393.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1448 transactions" + } + ] + }, + { + "id": 2975, + "type": "message", + "date": "2023-06-05T18:00:05", + "date_unixtime": "1685980805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019127 BTC for 109.61 CZK @ 573,071 CZK\nFees are 0.38498225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.69135999533602902727993196 CZK)\nThe limits being 0.10 % (123.58 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32275380 BTC (157,166.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 486,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.68 % (27,794.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 766.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21564591 BTC (123,580.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019127 BTC for 109.61 CZK @ 573,071 CZK\nFees are 0.38498225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.69135999533602902727993196 CZK)\nThe limits being 0.10 % (123.58 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32275380 BTC (157,166.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 486,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.68 % (27,794.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 766.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21564591 BTC (123,580.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1449 transactions" + } + ] + }, + { + "id": 2976, + "type": "message", + "date": "2023-06-05T22:00:05", + "date_unixtime": "1685995205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019437 BTC for 109.61 CZK @ 563,938 CZK\nFees are 0.38498696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (129.70573999798359699994301470 CZK)\nThe limits being 0.10 % (121.72 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32294817 BTC (157,276.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 563,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.80 % (24,846.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 656.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21584028 BTC (121,720.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019437 BTC for 109.61 CZK @ 563,938 CZK\nFees are 0.38498696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (129.70573999798359699994301470 CZK)\nThe limits being 0.10 % (121.72 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32294817 BTC (157,276.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 563,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.80 % (24,846.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 656.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21584028 BTC (121,720.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1450 transactions" + } + ] + }, + { + "id": 2977, + "type": "message", + "date": "2023-06-06T02:00:05", + "date_unixtime": "1686009605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019331 BTC for 109.61 CZK @ 567,022 CZK\nFees are 0.38498131 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (130.41505998829764439638957508 CZK)\nThe limits being 0.10 % (122.50 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32314148 BTC (157,386.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 567,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.42 % (25,842.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 546.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21603359 BTC (122,495.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019331 BTC for 109.61 CZK @ 567,022 CZK\nFees are 0.38498131 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (130.41505998829764439638957508 CZK)\nThe limits being 0.10 % (122.50 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32314148 BTC (157,386.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 567,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.42 % (25,842.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 546.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21603359 BTC (122,495.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1451 transactions" + } + ] + }, + { + "id": 2978, + "type": "message", + "date": "2023-06-06T06:00:04", + "date_unixtime": "1686024004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019340 BTC for 109.61 CZK @ 566,763 CZK\nFees are 0.38498462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.68785999467221498282381881 CZK)\nThe limits being 0.10 % (122.55 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32333488 BTC (157,496.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.35 % (25,757.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 436.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21622699 BTC (122,549.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019340 BTC for 109.61 CZK @ 566,763 CZK\nFees are 0.38498462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.68785999467221498282381881 CZK)\nThe limits being 0.10 % (122.55 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32333488 BTC (157,496.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.35 % (25,757.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 436.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21622699 BTC (122,549.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1452 transactions" + } + ] + }, + { + "id": 2979, + "type": "message", + "date": "2023-06-06T10:00:04", + "date_unixtime": "1686038404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019370 BTC for 109.61 CZK @ 565,890 CZK\nFees are 0.38498788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.49579999377501408981831530 CZK)\nThe limits being 0.10 % (122.47 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32352858 BTC (157,606.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 565,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.16 % (25,475.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 326.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21642069 BTC (122,470.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019370 BTC for 109.61 CZK @ 565,890 CZK\nFees are 0.38498788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.49579999377501408981831530 CZK)\nThe limits being 0.10 % (122.47 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32352858 BTC (157,606.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 565,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.16 % (25,475.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 326.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21642069 BTC (122,470.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1453 transactions" + } + ] + }, + { + "id": 2980, + "type": "message", + "date": "2023-06-06T14:00:04", + "date_unixtime": "1686052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019359 BTC for 109.61 CZK @ 566,211 CZK\nFees are 0.38498751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (135.89063999232192980850920739 CZK)\nThe limits being 0.10 % (122.65 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32372217 BTC (157,716.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.22 % (25,578.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 216.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21661428 BTC (122,649.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019359 BTC for 109.61 CZK @ 566,211 CZK\nFees are 0.38498751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (135.89063999232192980850920739 CZK)\nThe limits being 0.10 % (122.65 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32372217 BTC (157,716.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.22 % (25,578.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 216.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21661428 BTC (122,649.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1454 transactions" + } + ] + }, + { + "id": 2981, + "type": "message", + "date": "2023-06-06T18:00:06", + "date_unixtime": "1686067206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019043 BTC for 109.61 CZK @ 575,604 CZK\nFees are 0.38498569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (126.63287999537197187358293131 CZK)\nThe limits being 0.10 % (124.79 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32391260 BTC (157,826.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.13 % (28,619.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 106.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21680471 BTC (124,793.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019043 BTC for 109.61 CZK @ 575,604 CZK\nFees are 0.38498569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (126.63287999537197187358293131 CZK)\nThe limits being 0.10 % (124.79 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32391260 BTC (157,826.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.13 % (28,619.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 106.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21680471 BTC (124,793.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1455 transactions" + } + ] + }, + { + "id": 2982, + "type": "message", + "date": "2023-06-06T22:00:00", + "date_unixtime": "1686081600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2983, + "type": "message", + "date": "2023-06-07T02:00:00", + "date_unixtime": "1686096000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2984, + "type": "message", + "date": "2023-06-07T06:00:00", + "date_unixtime": "1686110400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2985, + "type": "message", + "date": "2023-06-07T10:00:00", + "date_unixtime": "1686124800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2986, + "type": "message", + "date": "2023-06-07T14:00:00", + "date_unixtime": "1686139200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (106.64642505 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 2987, + "type": "message", + "date": "2023-06-07T18:00:03", + "date_unixtime": "1686153603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018811 BTC for 109.61 CZK @ 582,715 CZK\nFees are 0.38499359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (168.98734999189615358525210670 CZK)\nThe limits being 0.10 % (126.44 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32410071 BTC (157,936.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.58 % (30,922.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,996.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21699282 BTC (126,444.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018811 BTC for 109.61 CZK @ 582,715 CZK\nFees are 0.38499359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (168.98734999189615358525210670 CZK)\nThe limits being 0.10 % (126.44 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32410071 BTC (157,936.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.58 % (30,922.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,996.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21699282 BTC (126,444.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1456 transactions" + } + ] + }, + { + "id": 2988, + "type": "message", + "date": "2023-06-07T22:00:04", + "date_unixtime": "1686168004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018717 BTC for 109.61 CZK @ 585,626 CZK\nFees are 0.38498341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (169.83153999309836632852495029 CZK)\nThe limits being 0.10 % (127.19 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32428788 BTC (158,046.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.16 % (31,865.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,886.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21717999 BTC (127,186.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018717 BTC for 109.61 CZK @ 585,626 CZK\nFees are 0.38498341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (169.83153999309836632852495029 CZK)\nThe limits being 0.10 % (127.19 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32428788 BTC (158,046.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.16 % (31,865.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,886.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21717999 BTC (127,186.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1457 transactions" + } + ] + }, + { + "id": 2989, + "type": "message", + "date": "2023-06-08T02:00:03", + "date_unixtime": "1686182403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018831 BTC for 109.61 CZK @ 582,089 CZK\nFees are 0.38498889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (168.80580998685578649015525477 CZK)\nThe limits being 0.10 % (126.53 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32447619 BTC (158,156.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.42 % (30,717.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,776.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21736830 BTC (126,527.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.47 CZK over 1458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018831 BTC for 109.61 CZK @ 582,089 CZK\nFees are 0.38498889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (168.80580998685578649015525477 CZK)\nThe limits being 0.10 % (126.53 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32447619 BTC (158,156.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.42 % (30,717.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,776.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21736830 BTC (126,527.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.47 CZK over 1458 transactions" + } + ] + }, + { + "id": 2990, + "type": "message", + "date": "2023-06-08T06:00:05", + "date_unixtime": "1686196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018827 BTC for 109.62 CZK @ 582,223 CZK\nFees are 0.38499572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (133.91128999423566357182590524 CZK)\nThe limits being 0.10 % (126.67 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32466446 BTC (158,266.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.44 % (30,760.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,666.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21755657 BTC (126,666.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018827 BTC for 109.62 CZK @ 582,223 CZK\nFees are 0.38499572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (133.91128999423566357182590524 CZK)\nThe limits being 0.10 % (126.67 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32466446 BTC (158,266.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.44 % (30,760.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,666.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21755657 BTC (126,666.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1459 transactions" + } + ] + }, + { + "id": 2991, + "type": "message", + "date": "2023-06-08T10:00:04", + "date_unixtime": "1686211204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018748 BTC for 109.62 CZK @ 584,678 CZK\nFees are 0.38499680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (111.08881999995960372959629562 CZK)\nThe limits being 0.10 % (127.31 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32485194 BTC (158,376.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.93 % (31,557.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,556.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21774405 BTC (127,310.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018748 BTC for 109.62 CZK @ 584,678 CZK\nFees are 0.38499680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (111.08881999995960372959629562 CZK)\nThe limits being 0.10 % (127.31 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32485194 BTC (158,376.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.93 % (31,557.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,556.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21774405 BTC (127,310.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1460 transactions" + } + ] + }, + { + "id": 2992, + "type": "message", + "date": "2023-06-08T14:00:03", + "date_unixtime": "1686225603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018831 BTC for 109.61 CZK @ 582,090 CZK\nFees are 0.38498955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (93.13439999352275003077884406 CZK)\nThe limits being 0.10 % (126.86 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32504025 BTC (158,486.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.38 % (30,716.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,446.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21793236 BTC (126,856.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018831 BTC for 109.61 CZK @ 582,090 CZK\nFees are 0.38498955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (93.13439999352275003077884406 CZK)\nThe limits being 0.10 % (126.86 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32504025 BTC (158,486.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.38 % (30,716.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,446.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21793236 BTC (126,856.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1461 transactions" + } + ] + }, + { + "id": 2993, + "type": "message", + "date": "2023-06-08T18:00:03", + "date_unixtime": "1686240003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018719 BTC for 109.62 CZK @ 585,587 CZK\nFees are 0.38499890 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (46.846959997080574312359862975 CZK)\nThe limits being 0.10 % (127.73 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32522744 BTC (158,596.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.08 % (31,852.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,336.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21811955 BTC (127,727.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018719 BTC for 109.62 CZK @ 585,587 CZK\nFees are 0.38499890 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (46.846959997080574312359862975 CZK)\nThe limits being 0.10 % (127.73 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32522744 BTC (158,596.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.08 % (31,852.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,336.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21811955 BTC (127,727.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1462 transactions" + } + ] + }, + { + "id": 2994, + "type": "message", + "date": "2023-06-08T22:00:04", + "date_unixtime": "1686254404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018840 BTC for 109.61 CZK @ 581,803 CZK\nFees are 0.38498364 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.362269996096464920548779906 CZK)\nThe limits being 0.10 % (127.01 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32541584 BTC (158,706.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.29 % (30,621.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,226.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21830795 BTC (127,012.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018840 BTC for 109.61 CZK @ 581,803 CZK\nFees are 0.38498364 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.362269996096464920548779906 CZK)\nThe limits being 0.10 % (127.01 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32541584 BTC (158,706.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.29 % (30,621.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,226.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21830795 BTC (127,012.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1463 transactions" + } + ] + }, + { + "id": 2995, + "type": "message", + "date": "2023-06-09T02:00:04", + "date_unixtime": "1686268804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018877 BTC for 109.62 CZK @ 580,681 CZK\nFees are 0.38499582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.488529997738750839720035866 CZK)\nThe limits being 0.10 % (126.88 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32560461 BTC (158,816.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.05 % (30,256.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,116.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21849672 BTC (126,876.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018877 BTC for 109.62 CZK @ 580,681 CZK\nFees are 0.38499582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.488529997738750839720035866 CZK)\nThe limits being 0.10 % (126.88 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32560461 BTC (158,816.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.05 % (30,256.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,116.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21849672 BTC (126,876.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1464 transactions" + } + ] + }, + { + "id": 2996, + "type": "message", + "date": "2023-06-09T06:00:04", + "date_unixtime": "1686283204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018882 BTC for 109.61 CZK @ 580,516 CZK\nFees are 0.38498837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (58.051599995292400757923477974 CZK)\nThe limits being 0.10 % (126.95 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32579343 BTC (158,926.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.00 % (30,202.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,006.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21868554 BTC (126,950.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018882 BTC for 109.61 CZK @ 580,516 CZK\nFees are 0.38498837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (58.051599995292400757923477974 CZK)\nThe limits being 0.10 % (126.95 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32579343 BTC (158,926.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.00 % (30,202.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,006.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21868554 BTC (126,950.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1465 transactions" + } + ] + }, + { + "id": 2997, + "type": "message", + "date": "2023-06-09T10:00:04", + "date_unixtime": "1686297604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018831 BTC for 109.61 CZK @ 582,075 CZK\nFees are 0.38497963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.21887385 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.03 % (34.924499999563420651584358362 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32598174 BTC (159,036.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.31 % (30,709.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,896.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.21887385 BTC (127,401.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018831 BTC for 109.61 CZK @ 582,075 CZK\nFees are 0.38497963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.21887385 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.03 % (34.924499999563420651584358362 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32598174 BTC (159,036.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.31 % (30,709.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,896.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.21887385 BTC (127,401.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1466 transactions" + } + ] + }, + { + "id": 2998, + "type": "message", + "date": "2023-06-09T14:00:04", + "date_unixtime": "1686312004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018783 BTC for 109.61 CZK @ 583,586 CZK\nFees are 0.38499514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 58.56 % (64.194459997473040705292748871 CZK)\nThe limits being 0.10 % (0.11 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32616957 BTC (159,146.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.61 % (31,201.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,786.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00018783 BTC (109.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018783 BTC for 109.61 CZK @ 583,586 CZK\nFees are 0.38499514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 58.56 % (64.194459997473040705292748871 CZK)\nThe limits being 0.10 % (0.11 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32616957 BTC (159,146.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.61 % (31,201.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,786.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00018783 BTC (109.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1467 transactions" + } + ] + }, + { + "id": 2999, + "type": "message", + "date": "2023-06-09T18:00:07", + "date_unixtime": "1686326407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018799 BTC for 109.61 CZK @ 583,066 CZK\nFees are 0.38497975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 21.29 % (46.645279999707391489751824250 CZK)\nThe limits being 0.10 % (0.22 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32635756 BTC (159,256.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 487,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.49 % (31,031.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,676.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00037582 BTC (219.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018799 BTC for 109.61 CZK @ 583,066 CZK\nFees are 0.38497975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 21.29 % (46.645279999707391489751824250 CZK)\nThe limits being 0.10 % (0.22 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32635756 BTC (159,256.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 487,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.49 % (31,031.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,676.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00037582 BTC (219.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1468 transactions" + } + ] + }, + { + "id": 3000, + "type": "message", + "date": "2023-06-09T22:00:04", + "date_unixtime": "1686340804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018856 BTC for 109.62 CZK @ 581,334 CZK\nFees are 0.38499999 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 44.30 % (145.33349999122714115360768494 CZK)\nThe limits being 0.10 % (0.33 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32654612 BTC (159,366.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.12 % (30,466.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,566.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00056438 BTC (328.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018856 BTC for 109.62 CZK @ 581,334 CZK\nFees are 0.38499999 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 44.30 % (145.33349999122714115360768494 CZK)\nThe limits being 0.10 % (0.33 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32654612 BTC (159,366.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.12 % (30,466.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,566.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00056438 BTC (328.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1469 transactions" + } + ] + }, + { + "id": 3001, + "type": "message", + "date": "2023-06-10T02:00:06", + "date_unixtime": "1686355206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018806 BTC for 109.61 CZK @ 582,849 CZK\nFees are 0.38497977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 26.58 % (116.56979999969266346898902867 CZK)\nThe limits being 0.10 % (0.44 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32673418 BTC (159,476.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.41 % (30,960.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,456.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00075244 BTC (438.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018806 BTC for 109.61 CZK @ 582,849 CZK\nFees are 0.38497977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 26.58 % (116.56979999969266346898902867 CZK)\nThe limits being 0.10 % (0.44 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32673418 BTC (159,476.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.41 % (30,960.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,456.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00075244 BTC (438.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1470 transactions" + } + ] + }, + { + "id": 3002, + "type": "message", + "date": "2023-06-10T06:00:04", + "date_unixtime": "1686369604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018913 BTC for 109.61 CZK @ 579,570 CZK\nFees are 0.38499203 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 21.24 % (115.91399999014710607728341277 CZK)\nThe limits being 0.10 % (0.55 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32692331 BTC (159,586.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.73 % (29,888.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,346.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00094157 BTC (545.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018913 BTC for 109.61 CZK @ 579,570 CZK\nFees are 0.38499203 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 21.24 % (115.91399999014710607728341277 CZK)\nThe limits being 0.10 % (0.55 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32692331 BTC (159,586.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.73 % (29,888.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,346.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00094157 BTC (545.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1471 transactions" + } + ] + }, + { + "id": 3003, + "type": "message", + "date": "2023-06-10T10:00:04", + "date_unixtime": "1686384004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019359 BTC for 109.61 CZK @ 566,205 CZK\nFees are 0.38498343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 16.74 % (107.57894999919312315465528175 CZK)\nThe limits being 0.10 % (0.64 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32711690 BTC (159,696.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.98 % (25,518.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,236.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00113516 BTC (642.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019359 BTC for 109.61 CZK @ 566,205 CZK\nFees are 0.38498343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 16.74 % (107.57894999919312315465528175 CZK)\nThe limits being 0.10 % (0.64 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32711690 BTC (159,696.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.98 % (25,518.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,236.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00113516 BTC (642.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1472 transactions" + } + ] + }, + { + "id": 3004, + "type": "message", + "date": "2023-06-10T14:00:04", + "date_unixtime": "1686398404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019310 BTC for 109.61 CZK @ 567,650 CZK\nFees are 0.38498901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.53 % (56.764999998709849550395469819 CZK)\nThe limits being 0.10 % (0.75 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32731000 BTC (159,806.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 567,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.26 % (25,991.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,126.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00132826 BTC (753.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019310 BTC for 109.61 CZK @ 567,650 CZK\nFees are 0.38498901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.53 % (56.764999998709849550395469819 CZK)\nThe limits being 0.10 % (0.75 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32731000 BTC (159,806.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 567,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.26 % (25,991.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,126.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00132826 BTC (753.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1473 transactions" + } + ] + }, + { + "id": 3005, + "type": "message", + "date": "2023-06-10T18:00:04", + "date_unixtime": "1686412804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019367 BTC for 109.61 CZK @ 565,970 CZK\nFees are 0.38498267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.57 % (56.596999997607382783174158682 CZK)\nThe limits being 0.10 % (0.86 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32750367 BTC (159,916.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 565,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.91 % (25,441.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,016.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00152193 BTC (861.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019367 BTC for 109.61 CZK @ 565,970 CZK\nFees are 0.38498267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.57 % (56.596999997607382783174158682 CZK)\nThe limits being 0.10 % (0.86 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32750367 BTC (159,916.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 565,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.91 % (25,441.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,016.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00152193 BTC (861.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1474 transactions" + } + ] + }, + { + "id": 3006, + "type": "message", + "date": "2023-06-10T22:00:06", + "date_unixtime": "1686427206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019288 BTC for 109.61 CZK @ 568,301 CZK\nFees are 0.38499141 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 4.08 % (39.781069996716180221154619139 CZK)\nThe limits being 0.10 % (0.97 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32769655 BTC (160,026.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.37 % (26,204.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,906.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00171481 BTC (974.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019288 BTC for 109.61 CZK @ 568,301 CZK\nFees are 0.38499141 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 4.08 % (39.781069996716180221154619139 CZK)\nThe limits being 0.10 % (0.97 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32769655 BTC (160,026.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.37 % (26,204.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,906.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00171481 BTC (974.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1475 transactions" + } + ] + }, + { + "id": 3007, + "type": "message", + "date": "2023-06-11T02:00:04", + "date_unixtime": "1686441604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019206 BTC for 109.61 CZK @ 570,728 CZK\nFees are 0.38499184 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.62 % (28.536399997696285431480290711 CZK)\nThe limits being 0.10 % (1.09 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32788861 BTC (160,136.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 570,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.86 % (26,998.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,796.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00190687 BTC (1,088.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019206 BTC for 109.61 CZK @ 570,728 CZK\nFees are 0.38499184 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.62 % (28.536399997696285431480290711 CZK)\nThe limits being 0.10 % (1.09 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32788861 BTC (160,136.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 570,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.86 % (26,998.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,796.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00190687 BTC (1,088.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1476 transactions" + } + ] + }, + { + "id": 3008, + "type": "message", + "date": "2023-06-11T06:00:05", + "date_unixtime": "1686456005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019292 BTC for 109.61 CZK @ 568,177 CZK\nFees are 0.38498723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.38 % (28.408849998982412892219136401 CZK)\nThe limits being 0.10 % (1.19 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32808153 BTC (160,246.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.33 % (26,162.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,686.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00209979 BTC (1,193.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019292 BTC for 109.61 CZK @ 568,177 CZK\nFees are 0.38498723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.38 % (28.408849998982412892219136401 CZK)\nThe limits being 0.10 % (1.19 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32808153 BTC (160,246.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.33 % (26,162.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,686.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00209979 BTC (1,193.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1477 transactions" + } + ] + }, + { + "id": 3009, + "type": "message", + "date": "2023-06-11T10:00:06", + "date_unixtime": "1686470406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019288 BTC for 109.61 CZK @ 568,289 CZK\nFees are 0.38498328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.74 % (22.731559998321924694510730485 CZK)\nThe limits being 0.10 % (1.30 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32827441 BTC (160,356.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.34 % (26,198.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,576.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00229267 BTC (1,302.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019288 BTC for 109.61 CZK @ 568,289 CZK\nFees are 0.38498328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.74 % (22.731559998321924694510730485 CZK)\nThe limits being 0.10 % (1.30 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32827441 BTC (160,356.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.34 % (26,198.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,576.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00229267 BTC (1,302.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1478 transactions" + } + ] + }, + { + "id": 3010, + "type": "message", + "date": "2023-06-11T14:00:06", + "date_unixtime": "1686484806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019238 BTC for 109.61 CZK @ 569,774 CZK\nFees are 0.38498869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.61 % (22.790959998462600981811606150 CZK)\nThe limits being 0.10 % (1.42 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32846679 BTC (160,466.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.63 % (26,685.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,466.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00248505 BTC (1,415.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019238 BTC for 109.61 CZK @ 569,774 CZK\nFees are 0.38498869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.61 % (22.790959998462600981811606150 CZK)\nThe limits being 0.10 % (1.42 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32846679 BTC (160,466.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.63 % (26,685.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,466.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00248505 BTC (1,415.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1479 transactions" + } + ] + }, + { + "id": 3011, + "type": "message", + "date": "2023-06-11T18:00:05", + "date_unixtime": "1686499205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019283 BTC for 109.61 CZK @ 568,452 CZK\nFees are 0.38499388 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.49 % (22.738079998540605469406576541 CZK)\nThe limits being 0.10 % (1.52 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32865962 BTC (160,576.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.35 % (26,251.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,356.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00267788 BTC (1,522.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019283 BTC for 109.61 CZK @ 568,452 CZK\nFees are 0.38499388 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.49 % (22.738079998540605469406576541 CZK)\nThe limits being 0.10 % (1.52 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32865962 BTC (160,576.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.35 % (26,251.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,356.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00267788 BTC (1,522.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1480 transactions" + } + ] + }, + { + "id": 3012, + "type": "message", + "date": "2023-06-11T22:00:04", + "date_unixtime": "1686513604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019087 BTC for 109.61 CZK @ 574,276 CZK\nFees are 0.38498496 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.74 % (28.713799999890361207351782252 CZK)\nThe limits being 0.10 % (1.65 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32885049 BTC (160,686.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.53 % (28,164.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,246.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00286875 BTC (1,647.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019087 BTC for 109.61 CZK @ 574,276 CZK\nFees are 0.38498496 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.74 % (28.713799999890361207351782252 CZK)\nThe limits being 0.10 % (1.65 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32885049 BTC (160,686.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.53 % (28,164.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,246.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00286875 BTC (1,647.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1481 transactions" + } + ] + }, + { + "id": 3013, + "type": "message", + "date": "2023-06-12T02:00:04", + "date_unixtime": "1686528004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019183 BTC for 109.61 CZK @ 571,414 CZK\nFees are 0.38499299 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.63 % (28.570699998267545112203207038 CZK)\nThe limits being 0.10 % (1.75 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32904232 BTC (160,796.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.93 % (27,223.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,136.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00306058 BTC (1,748.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019183 BTC for 109.61 CZK @ 571,414 CZK\nFees are 0.38499299 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.63 % (28.570699998267545112203207038 CZK)\nThe limits being 0.10 % (1.75 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32904232 BTC (160,796.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.93 % (27,223.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,136.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00306058 BTC (1,748.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1482 transactions" + } + ] + }, + { + "id": 3014, + "type": "message", + "date": "2023-06-12T06:00:04", + "date_unixtime": "1686542404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019270 BTC for 109.62 CZK @ 568,839 CZK\nFees are 0.38499625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.84 % (34.130339998898510118580815615 CZK)\nThe limits being 0.10 % (1.85 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32923502 BTC (160,906.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,839 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.39 % (26,375.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,026.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00325328 BTC (1,850.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019270 BTC for 109.62 CZK @ 568,839 CZK\nFees are 0.38499625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.84 % (34.130339998898510118580815615 CZK)\nThe limits being 0.10 % (1.85 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32923502 BTC (160,906.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,839 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.39 % (26,375.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,026.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00325328 BTC (1,850.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1483 transactions" + } + ] + }, + { + "id": 3015, + "type": "message", + "date": "2023-06-12T10:00:04", + "date_unixtime": "1686556804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019330 BTC for 109.61 CZK @ 567,070 CZK\nFees are 0.38499399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.45 % (28.353499997809013512200314936 CZK)\nThe limits being 0.10 % (1.95 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32942832 BTC (161,016.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 567,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.02 % (25,792.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,916.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00344658 BTC (1,954.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019330 BTC for 109.61 CZK @ 567,070 CZK\nFees are 0.38499399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.45 % (28.353499997809013512200314936 CZK)\nThe limits being 0.10 % (1.95 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32942832 BTC (161,016.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 567,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.02 % (25,792.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,916.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00344658 BTC (1,954.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1484 transactions" + } + ] + }, + { + "id": 3016, + "type": "message", + "date": "2023-06-12T14:00:04", + "date_unixtime": "1686571204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019166 BTC for 109.61 CZK @ 571,910 CZK\nFees are 0.38498570 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.37 % (28.595499998154221884678798993 CZK)\nThe limits being 0.10 % (2.08 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32961998 BTC (161,126.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.00 % (27,386.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,806.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00363824 BTC (2,080.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019166 BTC for 109.61 CZK @ 571,910 CZK\nFees are 0.38498570 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.37 % (28.595499998154221884678798993 CZK)\nThe limits being 0.10 % (2.08 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32961998 BTC (161,126.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.00 % (27,386.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,806.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00363824 BTC (2,080.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1485 transactions" + } + ] + }, + { + "id": 3017, + "type": "message", + "date": "2023-06-12T18:00:05", + "date_unixtime": "1686585605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019231 BTC for 109.62 CZK @ 569,995 CZK\nFees are 0.38499788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.83 % (39.899649998340528134888091358 CZK)\nThe limits being 0.10 % (2.18 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.32981229 BTC (161,236.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.59 % (26,755.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,696.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00383055 BTC (2,183.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019231 BTC for 109.62 CZK @ 569,995 CZK\nFees are 0.38499788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.83 % (39.899649998340528134888091358 CZK)\nThe limits being 0.10 % (2.18 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.32981229 BTC (161,236.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.59 % (26,755.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,696.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00383055 BTC (2,183.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1486 transactions" + } + ] + }, + { + "id": 3018, + "type": "message", + "date": "2023-06-12T22:00:04", + "date_unixtime": "1686600004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019264 BTC for 109.61 CZK @ 569,000 CZK\nFees are 0.38498531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.49 % (56.9000 CZK)\nThe limits being 0.10 % (2.29 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33000493 BTC (161,346.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 569,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.38 % (26,426.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,586.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00402319 BTC (2,289.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.50 CZK over 1487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019264 BTC for 109.61 CZK @ 569,000 CZK\nFees are 0.38498531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.49 % (56.9000 CZK)\nThe limits being 0.10 % (2.29 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33000493 BTC (161,346.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 569,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.38 % (26,426.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,586.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00402319 BTC (2,289.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.50 CZK over 1487 transactions" + } + ] + }, + { + "id": 3019, + "type": "message", + "date": "2023-06-13T02:00:06", + "date_unixtime": "1686614406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019194 BTC for 109.62 CZK @ 571,091 CZK\nFees are 0.38499601 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.37 % (57.109099998499572637791279546 CZK)\nThe limits being 0.10 % (2.41 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33019687 BTC (161,456.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 488,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.79 % (27,116.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,476.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00421513 BTC (2,407.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019194 BTC for 109.62 CZK @ 571,091 CZK\nFees are 0.38499601 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.37 % (57.109099998499572637791279546 CZK)\nThe limits being 0.10 % (2.41 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33019687 BTC (161,456.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 488,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.79 % (27,116.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,476.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00421513 BTC (2,407.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1488 transactions" + } + ] + }, + { + "id": 3020, + "type": "message", + "date": "2023-06-13T06:00:04", + "date_unixtime": "1686628804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019111 BTC for 109.61 CZK @ 573,568 CZK\nFees are 0.38499381 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.82 % (45.88543999929919292209880144 CZK)\nThe limits being 0.10 % (2.53 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33038798 BTC (161,566.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.29 % (27,933.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,366.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00440624 BTC (2,527.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019111 BTC for 109.61 CZK @ 573,568 CZK\nFees are 0.38499381 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.82 % (45.88543999929919292209880144 CZK)\nThe limits being 0.10 % (2.53 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33038798 BTC (161,566.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.29 % (27,933.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,366.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00440624 BTC (2,527.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1489 transactions" + } + ] + }, + { + "id": 3021, + "type": "message", + "date": "2023-06-13T10:00:04", + "date_unixtime": "1686643204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019102 BTC for 109.62 CZK @ 573,846 CZK\nFees are 0.38499902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (40.169219999919661354873689132 CZK)\nThe limits being 0.10 % (2.64 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33057900 BTC (161,676.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.33 % (28,025.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,256.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00459726 BTC (2,638.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019102 BTC for 109.62 CZK @ 573,846 CZK\nFees are 0.38499902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (40.169219999919661354873689132 CZK)\nThe limits being 0.10 % (2.64 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33057900 BTC (161,676.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.33 % (28,025.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,256.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00459726 BTC (2,638.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1490 transactions" + } + ] + }, + { + "id": 3022, + "type": "message", + "date": "2023-06-13T14:00:05", + "date_unixtime": "1686657605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019025 BTC for 109.61 CZK @ 576,149 CZK\nFees are 0.38498576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.04 % (28.807434774609497507737373856 CZK)\nThe limits being 0.10 % (2.76 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33076925 BTC (161,786.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.79 % (28,786.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,146.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00478751 BTC (2,758.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019025 BTC for 109.61 CZK @ 576,149 CZK\nFees are 0.38498576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.04 % (28.807434774609497507737373856 CZK)\nThe limits being 0.10 % (2.76 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33076925 BTC (161,786.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.79 % (28,786.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,146.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00478751 BTC (2,758.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1491 transactions" + } + ] + }, + { + "id": 3023, + "type": "message", + "date": "2023-06-13T18:00:04", + "date_unixtime": "1686672004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019339 BTC for 109.61 CZK @ 566,798 CZK\nFees are 0.38498849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (45.343839996590865730736671609 CZK)\nThe limits being 0.10 % (2.82 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33096264 BTC (161,896.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 566,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.87 % (25,692.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,036.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00498090 BTC (2,823.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019339 BTC for 109.61 CZK @ 566,798 CZK\nFees are 0.38498849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (45.343839996590865730736671609 CZK)\nThe limits being 0.10 % (2.82 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33096264 BTC (161,896.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 566,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.87 % (25,692.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,036.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00498090 BTC (2,823.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1492 transactions" + } + ] + }, + { + "id": 3024, + "type": "message", + "date": "2023-06-13T22:00:04", + "date_unixtime": "1686686404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019200 BTC for 109.62 CZK @ 570,915 CZK\nFees are 0.38499767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (62.80065 CZK)\nThe limits being 0.10 % (2.95 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33115464 BTC (162,006.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 570,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.70 % (27,054.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,926.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00517290 BTC (2,953.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019200 BTC for 109.62 CZK @ 570,915 CZK\nFees are 0.38499767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (62.80065 CZK)\nThe limits being 0.10 % (2.95 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33115464 BTC (162,006.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 570,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.70 % (27,054.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,926.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00517290 BTC (2,953.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1493 transactions" + } + ] + }, + { + "id": 3025, + "type": "message", + "date": "2023-06-14T02:00:04", + "date_unixtime": "1686700804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019171 BTC for 109.61 CZK @ 571,768 CZK\nFees are 0.38499084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.05 % (62.894532448724077382179948810 CZK)\nThe limits being 0.10 % (3.07 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33134635 BTC (162,116.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.86 % (27,337.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,816.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00536461 BTC (3,067.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019171 BTC for 109.61 CZK @ 571,768 CZK\nFees are 0.38499084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.05 % (62.894532448724077382179948810 CZK)\nThe limits being 0.10 % (3.07 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33134635 BTC (162,116.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.86 % (27,337.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,816.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00536461 BTC (3,067.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1494 transactions" + } + ] + }, + { + "id": 3026, + "type": "message", + "date": "2023-06-14T06:00:04", + "date_unixtime": "1686715204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019130 BTC for 109.61 CZK @ 572,982 CZK\nFees are 0.38498284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.80 % (57.298199995780580826490451218 CZK)\nThe limits being 0.10 % (3.18 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33153765 BTC (162,226.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.10 % (27,738.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,706.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00555591 BTC (3,183.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019130 BTC for 109.61 CZK @ 572,982 CZK\nFees are 0.38498284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.80 % (57.298199995780580826490451218 CZK)\nThe limits being 0.10 % (3.18 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33153765 BTC (162,226.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.10 % (27,738.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,706.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00555591 BTC (3,183.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1495 transactions" + } + ] + }, + { + "id": 3027, + "type": "message", + "date": "2023-06-14T10:00:05", + "date_unixtime": "1686729605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019149 BTC for 109.62 CZK @ 572,435 CZK\nFees are 0.38499731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.87 % (28.621749999082796613232348851 CZK)\nThe limits being 0.10 % (3.29 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33172914 BTC (162,336.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 572,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.98 % (27,557.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,596.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00574740 BTC (3,290.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019149 BTC for 109.62 CZK @ 572,435 CZK\nFees are 0.38499731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.87 % (28.621749999082796613232348851 CZK)\nThe limits being 0.10 % (3.29 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33172914 BTC (162,336.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 572,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.98 % (27,557.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,596.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00574740 BTC (3,290.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1496 transactions" + } + ] + }, + { + "id": 3028, + "type": "message", + "date": "2023-06-14T14:00:04", + "date_unixtime": "1686744004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019174 BTC for 109.61 CZK @ 571,682 CZK\nFees are 0.38499285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.19 % (74.318659997716347846685968050 CZK)\nThe limits being 0.10 % (3.40 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33192088 BTC (162,446.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.81 % (27,307.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,486.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00593914 BTC (3,395.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019174 BTC for 109.61 CZK @ 571,682 CZK\nFees are 0.38499285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.19 % (74.318659997716347846685968050 CZK)\nThe limits being 0.10 % (3.40 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33192088 BTC (162,446.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.81 % (27,307.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,486.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00593914 BTC (3,395.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1497 transactions" + } + ] + }, + { + "id": 3029, + "type": "message", + "date": "2023-06-14T18:00:04", + "date_unixtime": "1686758404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019289 BTC for 109.61 CZK @ 568,276 CZK\nFees are 0.38499443 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (73.875879998831400999090151133 CZK)\nThe limits being 0.10 % (3.48 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33211377 BTC (162,556.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.10 % (26,176.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,376.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00613203 BTC (3,484.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019289 BTC for 109.61 CZK @ 568,276 CZK\nFees are 0.38499443 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (73.875879998831400999090151133 CZK)\nThe limits being 0.10 % (3.48 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33211377 BTC (162,556.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.10 % (26,176.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,376.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00613203 BTC (3,484.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1498 transactions" + } + ] + }, + { + "id": 3030, + "type": "message", + "date": "2023-06-14T22:00:04", + "date_unixtime": "1686772804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019293 BTC for 109.62 CZK @ 568,165 CZK\nFees are 0.38499905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.06 % (73.861449995249354156218538589 CZK)\nThe limits being 0.10 % (3.59 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33230670 BTC (162,666.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 568,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.07 % (26,138.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,266.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00632496 BTC (3,593.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019293 BTC for 109.62 CZK @ 568,165 CZK\nFees are 0.38499905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.06 % (73.861449995249354156218538589 CZK)\nThe limits being 0.10 % (3.59 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33230670 BTC (162,666.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 568,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.07 % (26,138.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,266.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00632496 BTC (3,593.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1499 transactions" + } + ] + }, + { + "id": 3031, + "type": "message", + "date": "2023-06-15T02:00:04", + "date_unixtime": "1686787204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019436 BTC for 109.61 CZK @ 563,979 CZK\nFees are 0.38499514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.84 % (67.677479997206730548862065711 CZK)\nThe limits being 0.10 % (3.68 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33250106 BTC (162,776.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 563,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.20 % (24,747.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,156.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00651932 BTC (3,676.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019436 BTC for 109.61 CZK @ 563,979 CZK\nFees are 0.38499514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.84 % (67.677479997206730548862065711 CZK)\nThe limits being 0.10 % (3.68 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33250106 BTC (162,776.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 563,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.20 % (24,747.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,156.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00651932 BTC (3,676.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1500 transactions" + } + ] + }, + { + "id": 3032, + "type": "message", + "date": "2023-06-15T06:00:04", + "date_unixtime": "1686801604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019414 BTC for 109.61 CZK @ 564,598 CZK\nFees are 0.38498143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.64 % (62.105779997165581328644274758 CZK)\nThe limits being 0.10 % (3.79 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33269520 BTC (162,886.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 564,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.32 % (24,952.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,046.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00671346 BTC (3,790.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019414 BTC for 109.61 CZK @ 564,598 CZK\nFees are 0.38498143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.64 % (62.105779997165581328644274758 CZK)\nThe limits being 0.10 % (3.79 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33269520 BTC (162,886.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 564,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.32 % (24,952.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,046.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00671346 BTC (3,790.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1501 transactions" + } + ] + }, + { + "id": 3033, + "type": "message", + "date": "2023-06-15T10:00:05", + "date_unixtime": "1686816005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019598 BTC for 109.61 CZK @ 559,313 CZK\nFees are 0.38499234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.72 % (27.965649998451689115649060312 CZK)\nThe limits being 0.10 % (3.86 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33289118 BTC (162,996.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 559,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.23 % (23,194.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,936.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00690944 BTC (3,864.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019598 BTC for 109.61 CZK @ 559,313 CZK\nFees are 0.38499234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.72 % (27.965649998451689115649060312 CZK)\nThe limits being 0.10 % (3.86 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33289118 BTC (162,996.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 559,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.23 % (23,194.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,936.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00690944 BTC (3,864.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1502 transactions" + } + ] + }, + { + "id": 3034, + "type": "message", + "date": "2023-06-15T14:00:04", + "date_unixtime": "1686830404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019700 BTC for 109.61 CZK @ 556,400 CZK\nFees are 0.38498053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.84 % (33.38400 CZK)\nThe limits being 0.10 % (3.95 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33308818 BTC (163,106.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.63 % (22,224.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,826.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00710644 BTC (3,954.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019700 BTC for 109.61 CZK @ 556,400 CZK\nFees are 0.38498053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.84 % (33.38400 CZK)\nThe limits being 0.10 % (3.95 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33308818 BTC (163,106.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.63 % (22,224.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,826.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00710644 BTC (3,954.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1503 transactions" + } + ] + }, + { + "id": 3035, + "type": "message", + "date": "2023-06-15T18:00:04", + "date_unixtime": "1686844804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019888 BTC for 109.62 CZK @ 551,165 CZK\nFees are 0.38499773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (71.651449997915581867325984157 CZK)\nThe limits being 0.10 % (4.03 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33328706 BTC (163,216.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 551,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.55 % (20,480.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,716.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00730532 BTC (4,026.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019888 BTC for 109.62 CZK @ 551,165 CZK\nFees are 0.38499773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (71.651449997915581867325984157 CZK)\nThe limits being 0.10 % (4.03 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33328706 BTC (163,216.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 551,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.55 % (20,480.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,716.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00730532 BTC (4,026.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1504 transactions" + } + ] + }, + { + "id": 3036, + "type": "message", + "date": "2023-06-15T22:00:04", + "date_unixtime": "1686859204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019772 BTC for 109.62 CZK @ 554,396 CZK\nFees are 0.38499591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.73 % (72.071480000052416179221399994 CZK)\nThe limits being 0.10 % (4.16 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33348478 BTC (163,326.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 554,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.20 % (21,556.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,606.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00750304 BTC (4,159.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019772 BTC for 109.62 CZK @ 554,396 CZK\nFees are 0.38499591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.73 % (72.071480000052416179221399994 CZK)\nThe limits being 0.10 % (4.16 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33348478 BTC (163,326.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 554,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.20 % (21,556.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,606.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00750304 BTC (4,159.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1505 transactions" + } + ] + }, + { + "id": 3037, + "type": "message", + "date": "2023-06-16T02:00:05", + "date_unixtime": "1686873605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019663 BTC for 109.61 CZK @ 557,449 CZK\nFees are 0.38498193 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (55.744899995416033710624926878 CZK)\nThe limits being 0.10 % (4.29 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33368141 BTC (163,436.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 557,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.81 % (22,574.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,496.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00769967 BTC (4,292.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019663 BTC for 109.61 CZK @ 557,449 CZK\nFees are 0.38498193 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (55.744899995416033710624926878 CZK)\nThe limits being 0.10 % (4.29 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33368141 BTC (163,436.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 557,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.81 % (22,574.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,496.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00769967 BTC (4,292.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1506 transactions" + } + ] + }, + { + "id": 3038, + "type": "message", + "date": "2023-06-16T06:00:04", + "date_unixtime": "1686888004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019683 BTC for 109.61 CZK @ 556,891 CZK\nFees are 0.38498775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (27.844549998897573880333125580 CZK)\nThe limits being 0.10 % (4.40 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33387824 BTC (163,546.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 556,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.69 % (22,387.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,386.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00789650 BTC (4,397.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019683 BTC for 109.61 CZK @ 556,891 CZK\nFees are 0.38498775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (27.844549998897573880333125580 CZK)\nThe limits being 0.10 % (4.40 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33387824 BTC (163,546.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 556,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.69 % (22,387.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,386.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00789650 BTC (4,397.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1507 transactions" + } + ] + }, + { + "id": 3039, + "type": "message", + "date": "2023-06-16T10:00:04", + "date_unixtime": "1686902404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019618 BTC for 109.62 CZK @ 558,752 CZK\nFees are 0.38499868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (22.350079998829664529737721421 CZK)\nThe limits being 0.10 % (4.52 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33407442 BTC (163,656.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 558,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.06 % (23,008.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,276.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00809268 BTC (4,521.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019618 BTC for 109.62 CZK @ 558,752 CZK\nFees are 0.38499868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (22.350079998829664529737721421 CZK)\nThe limits being 0.10 % (4.52 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33407442 BTC (163,656.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 558,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.06 % (23,008.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,276.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00809268 BTC (4,521.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1508 transactions" + } + ] + }, + { + "id": 3040, + "type": "message", + "date": "2023-06-16T14:00:04", + "date_unixtime": "1686916804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019723 BTC for 109.61 CZK @ 555,763 CZK\nFees are 0.38498874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (27.788149998050983197504672398 CZK)\nThe limits being 0.10 % (4.61 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33427165 BTC (163,766.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 555,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.44 % (22,009.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,166.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00828991 BTC (4,607.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019723 BTC for 109.61 CZK @ 555,763 CZK\nFees are 0.38498874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (27.788149998050983197504672398 CZK)\nThe limits being 0.10 % (4.61 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33427165 BTC (163,766.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 555,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.44 % (22,009.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,166.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00828991 BTC (4,607.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1509 transactions" + } + ] + }, + { + "id": 3041, + "type": "message", + "date": "2023-06-16T18:00:04", + "date_unixtime": "1686931204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019491 BTC for 109.61 CZK @ 562,376 CZK\nFees are 0.38498723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (78.732639998883390969838595542 CZK)\nThe limits being 0.10 % (4.77 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33446656 BTC (163,876.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 489,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 562,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.78 % (24,219.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,056.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00848482 BTC (4,771.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019491 BTC for 109.61 CZK @ 562,376 CZK\nFees are 0.38498723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (78.732639998883390969838595542 CZK)\nThe limits being 0.10 % (4.77 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33446656 BTC (163,876.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 489,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 562,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.78 % (24,219.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,056.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00848482 BTC (4,771.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1510 transactions" + } + ] + }, + { + "id": 3042, + "type": "message", + "date": "2023-06-16T22:00:04", + "date_unixtime": "1686945604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019074 BTC for 109.61 CZK @ 574,672 CZK\nFees are 0.38498804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (80.45407999964891674358367921 CZK)\nThe limits being 0.10 % (4.99 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33465730 BTC (163,986.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.28 % (28,332.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,946.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00867556 BTC (4,985.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019074 BTC for 109.61 CZK @ 574,672 CZK\nFees are 0.38498804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (80.45407999964891674358367921 CZK)\nThe limits being 0.10 % (4.99 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33465730 BTC (163,986.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.28 % (28,332.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,946.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00867556 BTC (4,985.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1511 transactions" + } + ] + }, + { + "id": 3043, + "type": "message", + "date": "2023-06-17T02:00:05", + "date_unixtime": "1686960005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019109 BTC for 109.61 CZK @ 573,625 CZK\nFees are 0.38499178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.47 % (74.571249997034034654417321050 CZK)\nThe limits being 0.10 % (5.09 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33484839 BTC (164,096.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.05 % (27,981.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,836.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00886665 BTC (5,086.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019109 BTC for 109.61 CZK @ 573,625 CZK\nFees are 0.38499178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.47 % (74.571249997034034654417321050 CZK)\nThe limits being 0.10 % (5.09 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33484839 BTC (164,096.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.05 % (27,981.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,836.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00886665 BTC (5,086.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1512 transactions" + } + ] + }, + { + "id": 3044, + "type": "message", + "date": "2023-06-17T06:00:05", + "date_unixtime": "1686974405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019170 BTC for 109.61 CZK @ 571,800 CZK\nFees are 0.38499198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.66 % (85.77000 CZK)\nThe limits being 0.10 % (5.18 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33504009 BTC (164,206.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 571,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.67 % (27,369.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,726.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00905835 BTC (5,179.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019170 BTC for 109.61 CZK @ 571,800 CZK\nFees are 0.38499198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.66 % (85.77000 CZK)\nThe limits being 0.10 % (5.18 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33504009 BTC (164,206.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 571,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.67 % (27,369.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,726.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00905835 BTC (5,179.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1513 transactions" + } + ] + }, + { + "id": 3045, + "type": "message", + "date": "2023-06-17T10:00:04", + "date_unixtime": "1686988804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018908 BTC for 109.62 CZK @ 579,730 CZK\nFees are 0.38499651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (57.972999995045898694531062164 CZK)\nThe limits being 0.10 % (5.36 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33522917 BTC (164,316.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.27 % (30,026.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,616.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00924743 BTC (5,361.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018908 BTC for 109.62 CZK @ 579,730 CZK\nFees are 0.38499651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (57.972999995045898694531062164 CZK)\nThe limits being 0.10 % (5.36 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33522917 BTC (164,316.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.27 % (30,026.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,616.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00924743 BTC (5,361.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1514 transactions" + } + ] + }, + { + "id": 3046, + "type": "message", + "date": "2023-06-17T14:02:13", + "date_unixtime": "1687003333", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019011 BTC for 109.61 CZK @ 576,568 CZK\nFees are 0.38498244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (57.656799995450146778631844984 CZK)\nThe limits being 0.10 % (5.44 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33541928 BTC (164,426.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.62 % (28,965.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,506.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00943754 BTC (5,441.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019011 BTC for 109.61 CZK @ 576,568 CZK\nFees are 0.38498244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (57.656799995450146778631844984 CZK)\nThe limits being 0.10 % (5.44 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33541928 BTC (164,426.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.62 % (28,965.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,506.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00943754 BTC (5,441.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1515 transactions" + } + ] + }, + { + "id": 3047, + "type": "message", + "date": "2023-06-17T18:00:04", + "date_unixtime": "1687017604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019060 BTC for 109.61 CZK @ 575,100 CZK\nFees are 0.38499198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (46.00800 CZK)\nThe limits being 0.10 % (5.54 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33560988 BTC (164,536.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.31 % (28,473.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,396.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00962814 BTC (5,537.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019060 BTC for 109.61 CZK @ 575,100 CZK\nFees are 0.38499198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (46.00800 CZK)\nThe limits being 0.10 % (5.54 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33560988 BTC (164,536.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.31 % (28,473.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,396.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00962814 BTC (5,537.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1516 transactions" + } + ] + }, + { + "id": 3048, + "type": "message", + "date": "2023-06-17T22:00:06", + "date_unixtime": "1687032006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018986 BTC for 109.62 CZK @ 577,353 CZK\nFees are 0.38499964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (46.188239999147616230583666112 CZK)\nThe limits being 0.10 % (5.67 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33579974 BTC (164,646.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.75 % (29,228.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,286.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00981800 BTC (5,668.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018986 BTC for 109.62 CZK @ 577,353 CZK\nFees are 0.38499964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (46.188239999147616230583666112 CZK)\nThe limits being 0.10 % (5.67 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33579974 BTC (164,646.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.75 % (29,228.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,286.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00981800 BTC (5,668.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1517 transactions" + } + ] + }, + { + "id": 3049, + "type": "message", + "date": "2023-06-18T02:00:04", + "date_unixtime": "1687046404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018984 BTC for 109.62 CZK @ 577,412 CZK\nFees are 0.38499842 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (40.418839996590105721420456132 CZK)\nThe limits being 0.10 % (5.78 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33598958 BTC (164,756.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.75 % (29,248.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,176.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01000784 BTC (5,778.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.53 CZK over 1518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018984 BTC for 109.62 CZK @ 577,412 CZK\nFees are 0.38499842 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (40.418839996590105721420456132 CZK)\nThe limits being 0.10 % (5.78 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33598958 BTC (164,756.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.75 % (29,248.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,176.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01000784 BTC (5,778.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.53 CZK over 1518 transactions" + } + ] + }, + { + "id": 3050, + "type": "message", + "date": "2023-06-18T06:00:04", + "date_unixtime": "1687060804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018962 BTC for 109.61 CZK @ 578,056 CZK\nFees are 0.38498116 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (40.463919997969347553576194953 CZK)\nThe limits being 0.10 % (5.89 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33617920 BTC (164,866.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.87 % (29,464.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,066.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01019746 BTC (5,894.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018962 BTC for 109.61 CZK @ 578,056 CZK\nFees are 0.38498116 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (40.463919997969347553576194953 CZK)\nThe limits being 0.10 % (5.89 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33617920 BTC (164,866.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.87 % (29,464.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,066.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01019746 BTC (5,894.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1519 transactions" + } + ] + }, + { + "id": 3051, + "type": "message", + "date": "2023-06-18T10:00:05", + "date_unixtime": "1687075205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018905 BTC for 109.61 CZK @ 579,809 CZK\nFees are 0.38498788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.58 % (34.788539999976279794061172040 CZK)\nThe limits being 0.10 % (6.02 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33636825 BTC (164,976.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.22 % (30,053.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,956.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01038651 BTC (6,022.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018905 BTC for 109.61 CZK @ 579,809 CZK\nFees are 0.38498788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.58 % (34.788539999976279794061172040 CZK)\nThe limits being 0.10 % (6.02 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33636825 BTC (164,976.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.22 % (30,053.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,956.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01038651 BTC (6,022.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1520 transactions" + } + ] + }, + { + "id": 3052, + "type": "message", + "date": "2023-06-18T14:00:04", + "date_unixtime": "1687089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018974 BTC for 109.61 CZK @ 577,702 CZK\nFees are 0.38498888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (28.885099999690132706708138466 CZK)\nThe limits being 0.10 % (6.11 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33655799 BTC (165,086.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.78 % (29,344.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,846.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01057625 BTC (6,109.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018974 BTC for 109.61 CZK @ 577,702 CZK\nFees are 0.38498888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (28.885099999690132706708138466 CZK)\nThe limits being 0.10 % (6.11 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33655799 BTC (165,086.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.78 % (29,344.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,846.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01057625 BTC (6,109.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1521 transactions" + } + ] + }, + { + "id": 3053, + "type": "message", + "date": "2023-06-18T18:00:05", + "date_unixtime": "1687104005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018977 BTC for 109.61 CZK @ 577,600 CZK\nFees are 0.38498177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (28.879999999474884224442989348 CZK)\nThe limits being 0.10 % (6.22 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33674776 BTC (165,196.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.74 % (29,309.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,736.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01076602 BTC (6,218.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018977 BTC for 109.61 CZK @ 577,600 CZK\nFees are 0.38498177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (28.879999999474884224442989348 CZK)\nThe limits being 0.10 % (6.22 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33674776 BTC (165,196.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.74 % (29,309.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,736.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01076602 BTC (6,218.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1522 transactions" + } + ] + }, + { + "id": 3054, + "type": "message", + "date": "2023-06-18T22:00:05", + "date_unixtime": "1687118405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018899 BTC for 109.61 CZK @ 579,999 CZK\nFees are 0.38499181 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (28.999949997749819649429019702 CZK)\nThe limits being 0.10 % (6.35 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33693675 BTC (165,306.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.22 % (30,116.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,626.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01095501 BTC (6,353.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018899 BTC for 109.61 CZK @ 579,999 CZK\nFees are 0.38499181 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (28.999949997749819649429019702 CZK)\nThe limits being 0.10 % (6.35 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33693675 BTC (165,306.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.22 % (30,116.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,626.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01095501 BTC (6,353.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1523 transactions" + } + ] + }, + { + "id": 3055, + "type": "message", + "date": "2023-06-19T02:00:04", + "date_unixtime": "1687132804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019106 BTC for 109.61 CZK @ 573,711 CZK\nFees are 0.38498904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (28.685549999267193734313447370 CZK)\nThe limits being 0.10 % (6.39 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33712781 BTC (165,416.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.93 % (27,997.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,516.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01114607 BTC (6,394.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019106 BTC for 109.61 CZK @ 573,711 CZK\nFees are 0.38498904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (28.685549999267193734313447370 CZK)\nThe limits being 0.10 % (6.39 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33712781 BTC (165,416.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.93 % (27,997.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,516.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01114607 BTC (6,394.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1524 transactions" + } + ] + }, + { + "id": 3056, + "type": "message", + "date": "2023-06-19T06:00:04", + "date_unixtime": "1687147204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019074 BTC for 109.61 CZK @ 574,664 CZK\nFees are 0.38498268 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (28.733199997450466828405289468 CZK)\nThe limits being 0.10 % (6.51 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33731855 BTC (165,526.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.11 % (28,318.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,406.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01133681 BTC (6,514.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019074 BTC for 109.61 CZK @ 574,664 CZK\nFees are 0.38498268 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (28.733199997450466828405289468 CZK)\nThe limits being 0.10 % (6.51 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33731855 BTC (165,526.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.11 % (28,318.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,406.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01133681 BTC (6,514.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1525 transactions" + } + ] + }, + { + "id": 3057, + "type": "message", + "date": "2023-06-19T10:00:05", + "date_unixtime": "1687161605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019043 BTC for 109.62 CZK @ 575,621 CZK\nFees are 0.38499706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (28.781049998795111401958921226 CZK)\nThe limits being 0.10 % (6.64 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33750898 BTC (165,636.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.29 % (28,641.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,296.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01152724 BTC (6,635.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019043 BTC for 109.62 CZK @ 575,621 CZK\nFees are 0.38499706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (28.781049998795111401958921226 CZK)\nThe limits being 0.10 % (6.64 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33750898 BTC (165,636.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.29 % (28,641.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,296.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01152724 BTC (6,635.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1526 transactions" + } + ] + }, + { + "id": 3058, + "type": "message", + "date": "2023-06-19T14:00:05", + "date_unixtime": "1687176005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019033 BTC for 109.61 CZK @ 575,907 CZK\nFees are 0.38498608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (28.795349998014357933017028538 CZK)\nThe limits being 0.10 % (6.75 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33769931 BTC (165,746.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.34 % (28,737.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,186.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01171757 BTC (6,748.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019033 BTC for 109.61 CZK @ 575,907 CZK\nFees are 0.38498608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (28.795349998014357933017028538 CZK)\nThe limits being 0.10 % (6.75 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33769931 BTC (165,746.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.34 % (28,737.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,186.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01171757 BTC (6,748.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1527 transactions" + } + ] + }, + { + "id": 3059, + "type": "message", + "date": "2023-06-19T18:00:04", + "date_unixtime": "1687190404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00019063 BTC for 109.61 CZK @ 575,001 CZK\nFees are 0.38498629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (28.750049999423671663158905015 CZK)\nThe limits being 0.10 % (6.85 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33788994 BTC (165,856.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.14 % (28,430.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,076.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01190820 BTC (6,847.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00019063 BTC for 109.61 CZK @ 575,001 CZK\nFees are 0.38498629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (28.750049999423671663158905015 CZK)\nThe limits being 0.10 % (6.85 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33788994 BTC (165,856.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.14 % (28,430.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,076.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01190820 BTC (6,847.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1528 transactions" + } + ] + }, + { + "id": 3060, + "type": "message", + "date": "2023-06-19T22:00:04", + "date_unixtime": "1687204804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018906 BTC for 109.61 CZK @ 579,780 CZK\nFees are 0.38498899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (46.382399998397653067748546015 CZK)\nThe limits being 0.10 % (7.01 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33807900 BTC (165,966.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.10 % (30,045.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,966.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01209726 BTC (7,013.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018906 BTC for 109.61 CZK @ 579,780 CZK\nFees are 0.38498899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (46.382399998397653067748546015 CZK)\nThe limits being 0.10 % (7.01 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33807900 BTC (165,966.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.10 % (30,045.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,966.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01209726 BTC (7,013.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1529 transactions" + } + ] + }, + { + "id": 3061, + "type": "message", + "date": "2023-06-20T02:00:04", + "date_unixtime": "1687219204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018767 BTC for 109.61 CZK @ 584,083 CZK\nFees are 0.38499478 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (46.726639996544305725506100841 CZK)\nThe limits being 0.10 % (7.18 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33826667 BTC (166,076.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 490,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.97 % (31,499.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,856.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01228493 BTC (7,175.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018767 BTC for 109.61 CZK @ 584,083 CZK\nFees are 0.38499478 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (46.726639996544305725506100841 CZK)\nThe limits being 0.10 % (7.18 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33826667 BTC (166,076.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 490,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.97 % (31,499.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,856.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01228493 BTC (7,175.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1530 transactions" + } + ] + }, + { + "id": 3062, + "type": "message", + "date": "2023-06-20T06:00:03", + "date_unixtime": "1687233603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018740 BTC for 109.61 CZK @ 584,914 CZK\nFees are 0.38498785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (35.094839999170459421905933290 CZK)\nThe limits being 0.10 % (7.30 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33845407 BTC (166,186.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.12 % (31,780.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,746.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01247233 BTC (7,295.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018740 BTC for 109.61 CZK @ 584,914 CZK\nFees are 0.38498785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (35.094839999170459421905933290 CZK)\nThe limits being 0.10 % (7.30 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33845407 BTC (166,186.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.12 % (31,780.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,746.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01247233 BTC (7,295.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1531 transactions" + } + ] + }, + { + "id": 3063, + "type": "message", + "date": "2023-06-20T10:00:04", + "date_unixtime": "1687248004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018799 BTC for 109.61 CZK @ 583,083 CZK\nFees are 0.38499097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (34.984979998061468619605835665 CZK)\nThe limits being 0.10 % (7.38 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33864206 BTC (166,296.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.74 % (31,160.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,636.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01266032 BTC (7,382.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018799 BTC for 109.61 CZK @ 583,083 CZK\nFees are 0.38499097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (34.984979998061468619605835665 CZK)\nThe limits being 0.10 % (7.38 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33864206 BTC (166,296.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.74 % (31,160.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,636.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01266032 BTC (7,382.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1532 transactions" + } + ] + }, + { + "id": 3064, + "type": "message", + "date": "2023-06-20T14:00:04", + "date_unixtime": "1687262404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018727 BTC for 109.62 CZK @ 585,337 CZK\nFees are 0.38499901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (35.120220000011174644285131266 CZK)\nThe limits being 0.10 % (7.52 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33882933 BTC (166,406.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.18 % (31,923.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,526.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01284759 BTC (7,520.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018727 BTC for 109.62 CZK @ 585,337 CZK\nFees are 0.38499901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (35.120220000011174644285131266 CZK)\nThe limits being 0.10 % (7.52 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33882933 BTC (166,406.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.18 % (31,923.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,526.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01284759 BTC (7,520.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1533 transactions" + } + ] + }, + { + "id": 3065, + "type": "message", + "date": "2023-06-20T18:00:05", + "date_unixtime": "1687276805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00018491 BTC for 109.61 CZK @ 592,780 CZK\nFees are 0.38498106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (53.350199997914389572141870980 CZK)\nThe limits being 0.10 % (7.73 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33901424 BTC (166,516.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.69 % (34,444.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,416.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01303250 BTC (7,725.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00018491 BTC for 109.61 CZK @ 592,780 CZK\nFees are 0.38498106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (53.350199997914389572141870980 CZK)\nThe limits being 0.10 % (7.73 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33901424 BTC (166,516.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.69 % (34,444.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,416.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01303250 BTC (7,725.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1534 transactions" + } + ] + }, + { + "id": 3066, + "type": "message", + "date": "2023-06-20T22:00:04", + "date_unixtime": "1687291204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017969 BTC for 109.61 CZK @ 610,000 CZK\nFees are 0.38498088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (61.0000 CZK)\nThe limits being 0.10 % (8.06 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33919393 BTC (166,626.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.18 % (40,282.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,306.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01321219 BTC (8,059.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017969 BTC for 109.61 CZK @ 610,000 CZK\nFees are 0.38498088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (61.0000 CZK)\nThe limits being 0.10 % (8.06 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33919393 BTC (166,626.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.18 % (40,282.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,306.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01321219 BTC (8,059.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1535 transactions" + } + ] + }, + { + "id": 3067, + "type": "message", + "date": "2023-06-21T02:00:04", + "date_unixtime": "1687305604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017823 BTC for 109.61 CZK @ 615,000 CZK\nFees are 0.38498282 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (67.649999996924862739151677537 CZK)\nThe limits being 0.10 % (8.24 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33937216 BTC (166,736.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.18 % (41,977.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,196.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01339042 BTC (8,235.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017823 BTC for 109.61 CZK @ 615,000 CZK\nFees are 0.38498282 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (67.649999996924862739151677537 CZK)\nThe limits being 0.10 % (8.24 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33937216 BTC (166,736.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.18 % (41,977.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,196.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01339042 BTC (8,235.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1536 transactions" + } + ] + }, + { + "id": 3068, + "type": "message", + "date": "2023-06-21T06:00:04", + "date_unixtime": "1687320004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017680 BTC for 109.62 CZK @ 620,000 CZK\nFees are 0.38499880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (55.80000 CZK)\nThe limits being 0.10 % (8.41 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33954896 BTC (166,846.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.18 % (43,674.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,086.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01356722 BTC (8,411.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017680 BTC for 109.62 CZK @ 620,000 CZK\nFees are 0.38499880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (55.80000 CZK)\nThe limits being 0.10 % (8.41 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33954896 BTC (166,846.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.18 % (43,674.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,086.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01356722 BTC (8,411.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1537 transactions" + } + ] + }, + { + "id": 3069, + "type": "message", + "date": "2023-06-21T10:00:04", + "date_unixtime": "1687334404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017587 BTC for 109.61 CZK @ 623,251 CZK\nFees are 0.38498177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (56.092589996534843689323111422 CZK)\nThe limits being 0.10 % (8.57 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33972483 BTC (166,956.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.82 % (44,777.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 976.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01374309 BTC (8,565.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017587 BTC for 109.61 CZK @ 623,251 CZK\nFees are 0.38498177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (56.092589996534843689323111422 CZK)\nThe limits being 0.10 % (8.57 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33972483 BTC (166,956.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.82 % (44,777.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 976.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01374309 BTC (8,565.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1538 transactions" + } + ] + }, + { + "id": 3070, + "type": "message", + "date": "2023-06-21T14:00:04", + "date_unixtime": "1687348804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017702 BTC for 109.61 CZK @ 619,200 CZK\nFees are 0.38498048 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (49.535999998198599557519757564 CZK)\nThe limits being 0.10 % (8.62 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.33990185 BTC (167,066.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.98 % (43,401.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 866.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01392011 BTC (8,619.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017702 BTC for 109.61 CZK @ 619,200 CZK\nFees are 0.38498048 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (49.535999998198599557519757564 CZK)\nThe limits being 0.10 % (8.62 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.33990185 BTC (167,066.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.98 % (43,401.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 866.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01392011 BTC (8,619.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1539 transactions" + } + ] + }, + { + "id": 3071, + "type": "message", + "date": "2023-06-21T18:00:05", + "date_unixtime": "1687363205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017127 BTC for 109.61 CZK @ 640,000 CZK\nFees are 0.38498756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (83.20000 CZK)\nThe limits being 0.10 % (9.02 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34007312 BTC (167,176.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.19 % (50,470.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 756.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01409138 BTC (9,018.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017127 BTC for 109.61 CZK @ 640,000 CZK\nFees are 0.38498756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (83.20000 CZK)\nThe limits being 0.10 % (9.02 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34007312 BTC (167,176.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.19 % (50,470.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 756.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01409138 BTC (9,018.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1540 transactions" + } + ] + }, + { + "id": 3072, + "type": "message", + "date": "2023-06-21T22:00:04", + "date_unixtime": "1687377604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017131 BTC for 109.61 CZK @ 639,853 CZK\nFees are 0.38498918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (83.18092480765397694375214738 CZK)\nThe limits being 0.10 % (9.13 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34024443 BTC (167,286.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.14 % (50,420.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 646.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01426269 BTC (9,126.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017131 BTC for 109.61 CZK @ 639,853 CZK\nFees are 0.38498918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (83.18092480765397694375214738 CZK)\nThe limits being 0.10 % (9.13 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34024443 BTC (167,286.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.14 % (50,420.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 646.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01426269 BTC (9,126.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1541 transactions" + } + ] + }, + { + "id": 3073, + "type": "message", + "date": "2023-06-22T02:00:04", + "date_unixtime": "1687392004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017043 BTC for 109.62 CZK @ 643,175 CZK\nFees are 0.38499990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (90.04449999723727032836226174 CZK)\nThe limits being 0.10 % (9.28 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34041486 BTC (167,396.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.80 % (51,550.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 536.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01443312 BTC (9,283.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017043 BTC for 109.62 CZK @ 643,175 CZK\nFees are 0.38499990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (90.04449999723727032836226174 CZK)\nThe limits being 0.10 % (9.28 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34041486 BTC (167,396.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.80 % (51,550.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 536.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01443312 BTC (9,283.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1542 transactions" + } + ] + }, + { + "id": 3074, + "type": "message", + "date": "2023-06-22T06:00:04", + "date_unixtime": "1687406404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016924 BTC for 109.61 CZK @ 647,667 CZK\nFees are 0.38498166 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (90.67334589631162121419277388 CZK)\nThe limits being 0.10 % (9.46 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34058410 BTC (167,506.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.69 % (53,078.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 426.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01460236 BTC (9,457.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016924 BTC for 109.61 CZK @ 647,667 CZK\nFees are 0.38498166 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (90.67334589631162121419277388 CZK)\nThe limits being 0.10 % (9.46 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34058410 BTC (167,506.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.69 % (53,078.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 426.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01460236 BTC (9,457.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1543 transactions" + } + ] + }, + { + "id": 3075, + "type": "message", + "date": "2023-06-22T10:00:07", + "date_unixtime": "1687420807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016900 BTC for 109.61 CZK @ 648,585 CZK\nFees are 0.38498076 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (84.31604999425089111187765896 CZK)\nThe limits being 0.10 % (9.58 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34075310 BTC (167,616.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.85 % (53,391.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 316.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01477136 BTC (9,580.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016900 BTC for 109.61 CZK @ 648,585 CZK\nFees are 0.38498076 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (84.31604999425089111187765896 CZK)\nThe limits being 0.10 % (9.58 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34075310 BTC (167,616.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.85 % (53,391.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 316.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01477136 BTC (9,580.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1544 transactions" + } + ] + }, + { + "id": 3076, + "type": "message", + "date": "2023-06-22T14:00:05", + "date_unixtime": "1687435205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017006 BTC for 109.61 CZK @ 644,557 CZK\nFees are 0.38498954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (77.346839998614750759733617276 CZK)\nThe limits being 0.10 % (9.63 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34092316 BTC (167,726.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 491,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.01 % (52,018.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 206.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01494142 BTC (9,630.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017006 BTC for 109.61 CZK @ 644,557 CZK\nFees are 0.38498954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (77.346839998614750759733617276 CZK)\nThe limits being 0.10 % (9.63 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34092316 BTC (167,726.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 491,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.01 % (52,018.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 206.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01494142 BTC (9,630.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1545 transactions" + } + ] + }, + { + "id": 3077, + "type": "message", + "date": "2023-06-22T18:00:05", + "date_unixtime": "1687449605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017023 BTC for 109.61 CZK @ 643,897 CZK\nFees are 0.38497978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (77.267639998535350089525408647 CZK)\nThe limits being 0.10 % (9.73 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34109339 BTC (167,836.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.86 % (51,792.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 96.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01511165 BTC (9,730.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017023 BTC for 109.61 CZK @ 643,897 CZK\nFees are 0.38497978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (77.267639998535350089525408647 CZK)\nThe limits being 0.10 % (9.73 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34109339 BTC (167,836.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.86 % (51,792.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 96.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01511165 BTC (9,730.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1546 transactions" + } + ] + }, + { + "id": 3078, + "type": "message", + "date": "2023-06-22T22:00:00", + "date_unixtime": "1687464000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3079, + "type": "message", + "date": "2023-06-23T02:00:01", + "date_unixtime": "1687478401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3080, + "type": "message", + "date": "2023-06-23T06:00:01", + "date_unixtime": "1687492801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3081, + "type": "message", + "date": "2023-06-23T10:00:01", + "date_unixtime": "1687507201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3082, + "type": "message", + "date": "2023-06-23T14:00:01", + "date_unixtime": "1687521601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3083, + "type": "message", + "date": "2023-06-23T18:00:01", + "date_unixtime": "1687536001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3084, + "type": "message", + "date": "2023-06-23T22:00:01", + "date_unixtime": "1687550401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3085, + "type": "message", + "date": "2023-06-24T02:00:01", + "date_unixtime": "1687564801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3086, + "type": "message", + "date": "2023-06-24T06:00:01", + "date_unixtime": "1687579201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3087, + "type": "message", + "date": "2023-06-24T10:00:01", + "date_unixtime": "1687593601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3088, + "type": "message", + "date": "2023-06-24T14:00:01", + "date_unixtime": "1687608001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3089, + "type": "message", + "date": "2023-06-24T18:00:01", + "date_unixtime": "1687622401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3090, + "type": "message", + "date": "2023-06-24T22:00:01", + "date_unixtime": "1687636801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3091, + "type": "message", + "date": "2023-06-25T02:00:01", + "date_unixtime": "1687651201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3092, + "type": "message", + "date": "2023-06-25T06:03:01", + "date_unixtime": "1687665781", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (504) Gateway Timeout.\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (504) Gateway Timeout.\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + } + ] + }, + { + "id": 3093, + "type": "message", + "date": "2023-06-25T10:00:01", + "date_unixtime": "1687680001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3094, + "type": "message", + "date": "2023-06-25T14:00:01", + "date_unixtime": "1687694401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3095, + "type": "message", + "date": "2023-06-25T18:00:01", + "date_unixtime": "1687708801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3096, + "type": "message", + "date": "2023-06-25T22:00:00", + "date_unixtime": "1687723200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3097, + "type": "message", + "date": "2023-06-26T02:00:01", + "date_unixtime": "1687737601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3098, + "type": "message", + "date": "2023-06-26T06:00:01", + "date_unixtime": "1687752001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3099, + "type": "message", + "date": "2023-06-26T10:00:01", + "date_unixtime": "1687766401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3100, + "type": "message", + "date": "2023-06-26T14:00:01", + "date_unixtime": "1687780801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3101, + "type": "message", + "date": "2023-06-26T18:00:01", + "date_unixtime": "1687795201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3102, + "type": "message", + "date": "2023-06-26T22:00:01", + "date_unixtime": "1687809601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3103, + "type": "message", + "date": "2023-06-27T02:00:01", + "date_unixtime": "1687824001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3104, + "type": "message", + "date": "2023-06-27T06:00:01", + "date_unixtime": "1687838401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3105, + "type": "message", + "date": "2023-06-27T10:00:01", + "date_unixtime": "1687852801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3106, + "type": "message", + "date": "2023-06-27T14:00:01", + "date_unixtime": "1687867201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (96.91378582 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3107, + "type": "message", + "date": "2023-06-27T18:00:05", + "date_unixtime": "1687881605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016648 BTC for 109.61 CZK @ 658,415 CZK\nFees are 0.38498801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (39.504899999209877394520427901 CZK)\nThe limits being 0.10 % (10.06 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34125987 BTC (167,946.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.79 % (56,744.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,986.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01527813 BTC (10,059.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016648 BTC for 109.61 CZK @ 658,415 CZK\nFees are 0.38498801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (39.504899999209877394520427901 CZK)\nThe limits being 0.10 % (10.06 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34125987 BTC (167,946.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.79 % (56,744.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,986.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01527813 BTC (10,059.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1547 transactions" + } + ] + }, + { + "id": 3108, + "type": "message", + "date": "2023-06-27T22:00:05", + "date_unixtime": "1687896005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016548 BTC for 109.61 CZK @ 662,400 CZK\nFees are 0.38499160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (46.367999999156927066603604810 CZK)\nThe limits being 0.10 % (10.23 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34142535 BTC (168,056.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.57 % (58,104.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,876.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01544361 BTC (10,229.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016548 BTC for 109.61 CZK @ 662,400 CZK\nFees are 0.38499160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (46.367999999156927066603604810 CZK)\nThe limits being 0.10 % (10.23 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34142535 BTC (168,056.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.57 % (58,104.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,876.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01544361 BTC (10,229.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1548 transactions" + } + ] + }, + { + "id": 3109, + "type": "message", + "date": "2023-06-28T02:00:05", + "date_unixtime": "1687910405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016560 BTC for 109.61 CZK @ 661,913 CZK\nFees are 0.38498753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (52.953039997689247055595271623 CZK)\nThe limits being 0.10 % (10.33 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34159095 BTC (168,166.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.45 % (57,937.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,766.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01560921 BTC (10,331.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016560 BTC for 109.61 CZK @ 661,913 CZK\nFees are 0.38498753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (52.953039997689247055595271623 CZK)\nThe limits being 0.10 % (10.33 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34159095 BTC (168,166.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.45 % (57,937.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,766.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01560921 BTC (10,331.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1549 transactions" + } + ] + }, + { + "id": 3110, + "type": "message", + "date": "2023-06-28T06:00:05", + "date_unixtime": "1687924805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016659 BTC for 109.61 CZK @ 657,972 CZK\nFees are 0.38498319 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (46.058039998249718039206854287 CZK)\nThe limits being 0.10 % (10.38 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34175754 BTC (168,276.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.63 % (56,590.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,656.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01577580 BTC (10,380.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016659 BTC for 109.61 CZK @ 657,972 CZK\nFees are 0.38498319 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (46.058039998249718039206854287 CZK)\nThe limits being 0.10 % (10.38 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34175754 BTC (168,276.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.63 % (56,590.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,656.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01577580 BTC (10,380.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1550 transactions" + } + ] + }, + { + "id": 3111, + "type": "message", + "date": "2023-06-28T10:00:05", + "date_unixtime": "1687939205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016782 BTC for 109.62 CZK @ 653,177 CZK\nFees are 0.38499961 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (45.722418287869467945494309424 CZK)\nThe limits being 0.10 % (10.41 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34192536 BTC (168,386.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.63 % (54,951.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,546.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01594362 BTC (10,414.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016782 BTC for 109.62 CZK @ 653,177 CZK\nFees are 0.38499961 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (45.722418287869467945494309424 CZK)\nThe limits being 0.10 % (10.41 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34192536 BTC (168,386.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.63 % (54,951.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,546.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01594362 BTC (10,414.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1551 transactions" + } + ] + }, + { + "id": 3112, + "type": "message", + "date": "2023-06-28T14:00:04", + "date_unixtime": "1687953604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016721 BTC for 109.61 CZK @ 655,552 CZK\nFees are 0.38499476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (45.888639998030933357553329808 CZK)\nThe limits being 0.10 % (10.56 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34209257 BTC (168,496.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 655,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.09 % (55,763.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,436.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01611083 BTC (10,561.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016721 BTC for 109.61 CZK @ 655,552 CZK\nFees are 0.38499476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (45.888639998030933357553329808 CZK)\nThe limits being 0.10 % (10.56 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34209257 BTC (168,496.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 655,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.09 % (55,763.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,436.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01611083 BTC (10,561.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1552 transactions" + } + ] + }, + { + "id": 3113, + "type": "message", + "date": "2023-06-28T18:00:05", + "date_unixtime": "1687968005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016572 BTC for 109.61 CZK @ 661,436 CZK\nFees are 0.38498887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (39.686159996853878911139036542 CZK)\nThe limits being 0.10 % (10.77 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34225829 BTC (168,606.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.27 % (57,775.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,326.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01627655 BTC (10,765.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016572 BTC for 109.61 CZK @ 661,436 CZK\nFees are 0.38498887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (39.686159996853878911139036542 CZK)\nThe limits being 0.10 % (10.77 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34225829 BTC (168,606.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.27 % (57,775.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,326.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01627655 BTC (10,765.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1553 transactions" + } + ] + }, + { + "id": 3114, + "type": "message", + "date": "2023-06-28T22:00:04", + "date_unixtime": "1687982404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016766 BTC for 109.61 CZK @ 653,779 CZK\nFees are 0.38498681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (65.377899997034119101574645014 CZK)\nThe limits being 0.10 % (10.75 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34242595 BTC (168,716.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.69 % (55,154.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,216.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01644421 BTC (10,750.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016766 BTC for 109.61 CZK @ 653,779 CZK\nFees are 0.38498681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (65.377899997034119101574645014 CZK)\nThe limits being 0.10 % (10.75 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34242595 BTC (168,716.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.69 % (55,154.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,216.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01644421 BTC (10,750.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1554 transactions" + } + ] + }, + { + "id": 3115, + "type": "message", + "date": "2023-06-29T02:00:07", + "date_unixtime": "1687996807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016778 BTC for 109.61 CZK @ 653,314 CZK\nFees are 0.38498834 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (91.46395999981706653961106327 CZK)\nThe limits being 0.10 % (10.85 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34259373 BTC (168,826.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.58 % (54,995.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,106.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01661199 BTC (10,852.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016778 BTC for 109.61 CZK @ 653,314 CZK\nFees are 0.38498834 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (91.46395999981706653961106327 CZK)\nThe limits being 0.10 % (10.85 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34259373 BTC (168,826.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.58 % (54,995.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,106.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01661199 BTC (10,852.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1555 transactions" + } + ] + }, + { + "id": 3116, + "type": "message", + "date": "2023-06-29T06:00:05", + "date_unixtime": "1688011205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016713 BTC for 109.61 CZK @ 655,854 CZK\nFees are 0.38498783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (85.26101999490743088474131600 CZK)\nThe limits being 0.10 % (11.00 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34276086 BTC (168,936.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 655,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.07 % (55,865.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,996.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01677912 BTC (11,004.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016713 BTC for 109.61 CZK @ 655,854 CZK\nFees are 0.38498783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (85.26101999490743088474131600 CZK)\nThe limits being 0.10 % (11.00 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34276086 BTC (168,936.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 655,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.07 % (55,865.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,996.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01677912 BTC (11,004.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1556 transactions" + } + ] + }, + { + "id": 3117, + "type": "message", + "date": "2023-06-29T10:00:05", + "date_unixtime": "1688025605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016626 BTC for 109.61 CZK @ 659,283 CZK\nFees are 0.38498612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (85.70678999958703421700219088 CZK)\nThe limits being 0.10 % (11.17 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34292712 BTC (169,045.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 492,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.74 % (57,040.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,886.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01694538 BTC (11,171.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016626 BTC for 109.61 CZK @ 659,283 CZK\nFees are 0.38498612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (85.70678999958703421700219088 CZK)\nThe limits being 0.10 % (11.17 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34292712 BTC (169,045.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 492,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.74 % (57,040.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,886.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01694538 BTC (11,171.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1557 transactions" + } + ] + }, + { + "id": 3118, + "type": "message", + "date": "2023-06-29T14:00:05", + "date_unixtime": "1688040005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016543 BTC for 109.61 CZK @ 662,606 CZK\nFees are 0.38499497 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (86.13877999449487694959680048 CZK)\nThe limits being 0.10 % (11.34 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34309255 BTC (169,155.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.39 % (58,179.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,776.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01711081 BTC (11,337.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016543 BTC for 109.61 CZK @ 662,606 CZK\nFees are 0.38499497 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (86.13877999449487694959680048 CZK)\nThe limits being 0.10 % (11.34 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34309255 BTC (169,155.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.39 % (58,179.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,776.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01711081 BTC (11,337.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1558 transactions" + } + ] + }, + { + "id": 3119, + "type": "message", + "date": "2023-06-29T18:00:04", + "date_unixtime": "1688054404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016564 BTC for 109.61 CZK @ 661,751 CZK\nFees are 0.38498628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (33.087549998574176568920153526 CZK)\nThe limits being 0.10 % (11.43 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34325819 BTC (169,265.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.20 % (57,885.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,666.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01727645 BTC (11,432.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016564 BTC for 109.61 CZK @ 661,751 CZK\nFees are 0.38498628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (33.087549998574176568920153526 CZK)\nThe limits being 0.10 % (11.43 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34325819 BTC (169,265.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.20 % (57,885.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,666.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01727645 BTC (11,432.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1559 transactions" + } + ] + }, + { + "id": 3120, + "type": "message", + "date": "2023-06-29T22:00:04", + "date_unixtime": "1688068804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016478 BTC for 109.61 CZK @ 665,201 CZK\nFees are 0.38498412 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (53.216079998679219164529922670 CZK)\nThe limits being 0.10 % (11.60 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34342297 BTC (169,375.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.87 % (59,069.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,556.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01744123 BTC (11,601.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.57 CZK over 1560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016478 BTC for 109.61 CZK @ 665,201 CZK\nFees are 0.38498412 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (53.216079998679219164529922670 CZK)\nThe limits being 0.10 % (11.60 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34342297 BTC (169,375.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.87 % (59,069.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,556.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01744123 BTC (11,601.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.57 CZK over 1560 transactions" + } + ] + }, + { + "id": 3121, + "type": "message", + "date": "2023-06-30T02:00:04", + "date_unixtime": "1688083204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016536 BTC for 109.61 CZK @ 662,878 CZK\nFees are 0.38499004 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (46.401459999460041764805281179 CZK)\nThe limits being 0.10 % (11.67 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34358833 BTC (169,485.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.38 % (58,271.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,446.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01760659 BTC (11,671.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016536 BTC for 109.61 CZK @ 662,878 CZK\nFees are 0.38499004 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (46.401459999460041764805281179 CZK)\nThe limits being 0.10 % (11.67 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34358833 BTC (169,485.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.38 % (58,271.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,446.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01760659 BTC (11,671.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1561 transactions" + } + ] + }, + { + "id": 3122, + "type": "message", + "date": "2023-06-30T06:00:05", + "date_unixtime": "1688097605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016391 BTC for 109.61 CZK @ 668,727 CZK\nFees are 0.38498138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (33.436349997265686259400134428 CZK)\nThe limits being 0.10 % (11.88 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34375224 BTC (169,595.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 668,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.54 % (60,280.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,336.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01777050 BTC (11,883.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016391 BTC for 109.61 CZK @ 668,727 CZK\nFees are 0.38498138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (33.436349997265686259400134428 CZK)\nThe limits being 0.10 % (11.88 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34375224 BTC (169,595.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 668,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.54 % (60,280.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,336.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01777050 BTC (11,883.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1562 transactions" + } + ] + }, + { + "id": 3123, + "type": "message", + "date": "2023-06-30T10:00:07", + "date_unixtime": "1688112007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016306 BTC for 109.61 CZK @ 672,216 CZK\nFees are 0.38498313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (26.888639999178638288619538472 CZK)\nThe limits being 0.10 % (12.06 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34391530 BTC (169,705.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 672,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.23 % (61,479.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,226.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01793356 BTC (12,055.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016306 BTC for 109.61 CZK @ 672,216 CZK\nFees are 0.38498313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (26.888639999178638288619538472 CZK)\nThe limits being 0.10 % (12.06 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34391530 BTC (169,705.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 672,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.23 % (61,479.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,226.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01793356 BTC (12,055.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1563 transactions" + } + ] + }, + { + "id": 3124, + "type": "message", + "date": "2023-06-30T14:00:05", + "date_unixtime": "1688126405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016302 BTC for 109.61 CZK @ 672,400 CZK\nFees are 0.38499405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (26.895999998043897029028017936 CZK)\nThe limits being 0.10 % (12.17 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34407832 BTC (169,815.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 672,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.24 % (61,542.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,116.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01809658 BTC (12,168.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016302 BTC for 109.61 CZK @ 672,400 CZK\nFees are 0.38499405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (26.895999998043897029028017936 CZK)\nThe limits being 0.10 % (12.17 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34407832 BTC (169,815.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 672,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.24 % (61,542.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,116.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01809658 BTC (12,168.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1564 transactions" + } + ] + }, + { + "id": 3125, + "type": "message", + "date": "2023-06-30T18:00:05", + "date_unixtime": "1688140805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016785 BTC for 109.61 CZK @ 653,039 CZK\nFees are 0.38498684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (26.121559998450463591905542398 CZK)\nThe limits being 0.10 % (11.93 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34424617 BTC (169,925.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.30 % (54,880.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,006.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01826443 BTC (11,927.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016785 BTC for 109.61 CZK @ 653,039 CZK\nFees are 0.38498684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (26.121559998450463591905542398 CZK)\nThe limits being 0.10 % (11.93 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34424617 BTC (169,925.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.30 % (54,880.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,006.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01826443 BTC (11,927.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1565 transactions" + } + ] + }, + { + "id": 3126, + "type": "message", + "date": "2023-06-30T22:00:04", + "date_unixtime": "1688155204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016654 BTC for 109.62 CZK @ 658,193 CZK\nFees are 0.38499691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.655439996280581313547174776 CZK)\nThe limits being 0.10 % (12.13 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34441271 BTC (170,035.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.32 % (56,654.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,896.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01843097 BTC (12,131.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016654 BTC for 109.62 CZK @ 658,193 CZK\nFees are 0.38499691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.655439996280581313547174776 CZK)\nThe limits being 0.10 % (12.13 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34441271 BTC (170,035.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.32 % (56,654.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,896.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01843097 BTC (12,131.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1566 transactions" + } + ] + }, + { + "id": 3127, + "type": "message", + "date": "2023-07-01T02:00:05", + "date_unixtime": "1688169605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016572 BTC for 109.61 CZK @ 661,431 CZK\nFees are 0.38498596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.300169996371617994994829227 CZK)\nThe limits being 0.10 % (12.30 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34457843 BTC (170,145.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.95 % (57,768.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,786.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01859669 BTC (12,300.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016572 BTC for 109.61 CZK @ 661,431 CZK\nFees are 0.38498596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.300169996371617994994829227 CZK)\nThe limits being 0.10 % (12.30 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34457843 BTC (170,145.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.95 % (57,768.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,786.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01859669 BTC (12,300.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1567 transactions" + } + ] + }, + { + "id": 3128, + "type": "message", + "date": "2023-07-01T06:00:05", + "date_unixtime": "1688184005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016615 BTC for 109.61 CZK @ 659,713 CZK\nFees are 0.38498234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (39.582779999163325591845933154 CZK)\nThe limits being 0.10 % (12.38 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34474458 BTC (170,255.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.58 % (57,176.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,676.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01876284 BTC (12,378.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016615 BTC for 109.61 CZK @ 659,713 CZK\nFees are 0.38498234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (39.582779999163325591845933154 CZK)\nThe limits being 0.10 % (12.38 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34474458 BTC (170,255.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.58 % (57,176.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,676.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01876284 BTC (12,378.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1568 transactions" + } + ] + }, + { + "id": 3129, + "type": "message", + "date": "2023-07-01T10:00:05", + "date_unixtime": "1688198405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016569 BTC for 109.62 CZK @ 661,567 CZK\nFees are 0.38499541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (33.078349997953628592400495304 CZK)\nThe limits being 0.10 % (12.52 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34491027 BTC (170,365.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 493,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.94 % (57,815.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,566.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01892853 BTC (12,522.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016569 BTC for 109.62 CZK @ 661,567 CZK\nFees are 0.38499541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (33.078349997953628592400495304 CZK)\nThe limits being 0.10 % (12.52 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34491027 BTC (170,365.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 493,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.94 % (57,815.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,566.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01892853 BTC (12,522.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1569 transactions" + } + ] + }, + { + "id": 3130, + "type": "message", + "date": "2023-07-01T14:00:04", + "date_unixtime": "1688212804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016530 BTC for 109.61 CZK @ 663,121 CZK\nFees are 0.38499142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (26.524839998902811725807827475 CZK)\nThe limits being 0.10 % (12.66 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34507557 BTC (170,475.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.23 % (58,350.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,456.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01909383 BTC (12,661.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016530 BTC for 109.61 CZK @ 663,121 CZK\nFees are 0.38499142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (26.524839998902811725807827475 CZK)\nThe limits being 0.10 % (12.66 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34507557 BTC (170,475.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.23 % (58,350.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,456.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01909383 BTC (12,661.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1570 transactions" + } + ] + }, + { + "id": 3131, + "type": "message", + "date": "2023-07-01T18:00:05", + "date_unixtime": "1688227205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016508 BTC for 109.56 CZK @ 663,669 CZK\nFees are 0.38479686 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (46.456841056302939711011459891 CZK)\nThe limits being 0.10 % (12.78 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34524065 BTC (170,585.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.32 % (58,539.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,347.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01925891 BTC (12,781.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016508 BTC for 109.56 CZK @ 663,669 CZK\nFees are 0.38479686 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (46.456841056302939711011459891 CZK)\nThe limits being 0.10 % (12.78 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34524065 BTC (170,585.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.32 % (58,539.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,347.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01925891 BTC (12,781.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1571 transactions" + } + ] + }, + { + "id": 3132, + "type": "message", + "date": "2023-07-01T22:00:04", + "date_unixtime": "1688241604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016482 BTC for 109.62 CZK @ 665,065 CZK\nFees are 0.38499884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (39.903899997623896993939486280 CZK)\nThe limits being 0.10 % (12.92 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34540547 BTC (170,695.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.58 % (59,021.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,237.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01942373 BTC (12,918.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016482 BTC for 109.62 CZK @ 665,065 CZK\nFees are 0.38499884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (39.903899997623896993939486280 CZK)\nThe limits being 0.10 % (12.92 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34540547 BTC (170,695.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.58 % (59,021.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,237.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01942373 BTC (12,918.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1572 transactions" + } + ] + }, + { + "id": 3133, + "type": "message", + "date": "2023-07-02T02:00:07", + "date_unixtime": "1688256007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016496 BTC for 109.61 CZK @ 664,476 CZK\nFees are 0.38498461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (39.868559998782148029906964808 CZK)\nThe limits being 0.10 % (13.02 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34557043 BTC (170,805.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 664,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.44 % (58,817.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,127.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01958869 BTC (13,016.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016496 BTC for 109.61 CZK @ 664,476 CZK\nFees are 0.38498461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (39.868559998782148029906964808 CZK)\nThe limits being 0.10 % (13.02 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34557043 BTC (170,805.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 664,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.44 % (58,817.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,127.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01958869 BTC (13,016.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1573 transactions" + } + ] + }, + { + "id": 3134, + "type": "message", + "date": "2023-07-02T06:00:04", + "date_unixtime": "1688270404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016540 BTC for 109.61 CZK @ 662,706 CZK\nFees are 0.38498325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (33.135299998975773426622299583 CZK)\nThe limits being 0.10 % (13.09 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34573583 BTC (170,915.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.05 % (58,205.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,017.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01975409 BTC (13,091.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016540 BTC for 109.61 CZK @ 662,706 CZK\nFees are 0.38498325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (33.135299998975773426622299583 CZK)\nThe limits being 0.10 % (13.09 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34573583 BTC (170,915.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.05 % (58,205.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,017.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01975409 BTC (13,091.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1574 transactions" + } + ] + }, + { + "id": 3135, + "type": "message", + "date": "2023-07-02T10:00:05", + "date_unixtime": "1688284805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016535 BTC for 109.61 CZK @ 662,927 CZK\nFees are 0.38499521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.517079998053381052617622416 CZK)\nThe limits being 0.10 % (13.21 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34590118 BTC (171,025.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.08 % (58,281.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,907.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01991944 BTC (13,205.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016535 BTC for 109.61 CZK @ 662,927 CZK\nFees are 0.38499521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.517079998053381052617622416 CZK)\nThe limits being 0.10 % (13.21 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34590118 BTC (171,025.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.08 % (58,281.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,907.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01991944 BTC (13,205.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1575 transactions" + } + ] + }, + { + "id": 3136, + "type": "message", + "date": "2023-07-02T14:00:05", + "date_unixtime": "1688299205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016517 BTC for 109.62 CZK @ 663,650 CZK\nFees are 0.38499553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.545999998371022001791332806 CZK)\nThe limits being 0.10 % (13.33 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34606635 BTC (171,135.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.20 % (58,531.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,797.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02008461 BTC (13,329.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016517 BTC for 109.62 CZK @ 663,650 CZK\nFees are 0.38499553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.545999998371022001791332806 CZK)\nThe limits being 0.10 % (13.33 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34606635 BTC (171,135.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.20 % (58,531.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,797.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02008461 BTC (13,329.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1576 transactions" + } + ] + }, + { + "id": 3137, + "type": "message", + "date": "2023-07-02T18:00:04", + "date_unixtime": "1688313604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016549 BTC for 109.62 CZK @ 662,368 CZK\nFees are 0.38499628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.494721071572476572494185633 CZK)\nThe limits being 0.10 % (13.41 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34623184 BTC (171,245.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.92 % (58,087.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,687.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02025010 BTC (13,413.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016549 BTC for 109.62 CZK @ 662,368 CZK\nFees are 0.38499628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.494721071572476572494185633 CZK)\nThe limits being 0.10 % (13.41 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34623184 BTC (171,245.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.92 % (58,087.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,687.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02025010 BTC (13,413.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1577 transactions" + } + ] + }, + { + "id": 3138, + "type": "message", + "date": "2023-07-02T22:00:05", + "date_unixtime": "1688328005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016514 BTC for 109.61 CZK @ 663,757 CZK\nFees are 0.38498767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.550279997965217898189568918 CZK)\nThe limits being 0.10 % (13.55 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34639698 BTC (171,355.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.18 % (58,567.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,577.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02041524 BTC (13,550.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016514 BTC for 109.61 CZK @ 663,757 CZK\nFees are 0.38498767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (26.550279997965217898189568918 CZK)\nThe limits being 0.10 % (13.55 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34639698 BTC (171,355.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.18 % (58,567.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,577.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02041524 BTC (13,550.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1578 transactions" + } + ] + }, + { + "id": 3139, + "type": "message", + "date": "2023-07-03T02:00:04", + "date_unixtime": "1688342404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016473 BTC for 109.61 CZK @ 665,413 CZK\nFees are 0.38498996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (26.616519999464026093823079186 CZK)\nThe limits being 0.10 % (13.69 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34656171 BTC (171,465.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.49 % (59,140.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,467.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02057997 BTC (13,694.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016473 BTC for 109.61 CZK @ 665,413 CZK\nFees are 0.38498996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (26.616519999464026093823079186 CZK)\nThe limits being 0.10 % (13.69 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34656171 BTC (171,465.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.49 % (59,140.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,467.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02057997 BTC (13,694.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1579 transactions" + } + ] + }, + { + "id": 3140, + "type": "message", + "date": "2023-07-03T06:00:06", + "date_unixtime": "1688356806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016428 BTC for 109.61 CZK @ 667,220 CZK\nFees are 0.38498089 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (26.688799998641230007125050151 CZK)\nThe limits being 0.10 % (13.84 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34672599 BTC (171,575.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 667,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.83 % (59,766.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,357.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02074425 BTC (13,840.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016428 BTC for 109.61 CZK @ 667,220 CZK\nFees are 0.38498089 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (26.688799998641230007125050151 CZK)\nThe limits being 0.10 % (13.84 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34672599 BTC (171,575.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 667,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.83 % (59,766.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,357.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02074425 BTC (13,840.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1580 transactions" + } + ] + }, + { + "id": 3141, + "type": "message", + "date": "2023-07-03T10:00:07", + "date_unixtime": "1688371207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016361 BTC for 109.61 CZK @ 669,946 CZK\nFees are 0.38497725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (26.797839998121604029561347947 CZK)\nThe limits being 0.10 % (14.01 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34688960 BTC (171,685.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 494,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 669,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.36 % (60,711.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,247.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02090786 BTC (14,007.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016361 BTC for 109.61 CZK @ 669,946 CZK\nFees are 0.38497725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (26.797839998121604029561347947 CZK)\nThe limits being 0.10 % (14.01 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34688960 BTC (171,685.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 494,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 669,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.36 % (60,711.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,247.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02090786 BTC (14,007.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1581 transactions" + } + ] + }, + { + "id": 3142, + "type": "message", + "date": "2023-07-03T14:00:04", + "date_unixtime": "1688385604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016466 BTC for 109.62 CZK @ 665,713 CZK\nFees are 0.38499986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (39.942779996721059675079890129 CZK)\nThe limits being 0.10 % (14.03 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34705426 BTC (171,795.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.48 % (59,242.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,137.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02107252 BTC (14,028.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016466 BTC for 109.62 CZK @ 665,713 CZK\nFees are 0.38499986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (39.942779996721059675079890129 CZK)\nThe limits being 0.10 % (14.03 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34705426 BTC (171,795.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.48 % (59,242.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,137.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02107252 BTC (14,028.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1582 transactions" + } + ] + }, + { + "id": 3143, + "type": "message", + "date": "2023-07-03T18:00:04", + "date_unixtime": "1688400004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016238 BTC for 109.61 CZK @ 675,046 CZK\nFees are 0.38499166 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (47.253219998633922790126170670 CZK)\nThe limits being 0.10 % (14.33 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34721664 BTC (171,905.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 675,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.35 % (62,481.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,027.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02123490 BTC (14,334.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016238 BTC for 109.61 CZK @ 675,046 CZK\nFees are 0.38499166 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (47.253219998633922790126170670 CZK)\nThe limits being 0.10 % (14.33 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34721664 BTC (171,905.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 675,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.35 % (62,481.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,027.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02123490 BTC (14,334.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1583 transactions" + } + ] + }, + { + "id": 3144, + "type": "message", + "date": "2023-07-03T22:00:05", + "date_unixtime": "1688414405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016135 BTC for 109.62 CZK @ 679,367 CZK\nFees are 0.38499832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (47.55568999607663848979763885 CZK)\nThe limits being 0.10 % (14.54 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34737799 BTC (172,015.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 679,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.19 % (63,981.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 917.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02139625 BTC (14,535.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016135 BTC for 109.62 CZK @ 679,367 CZK\nFees are 0.38499832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (47.55568999607663848979763885 CZK)\nThe limits being 0.10 % (14.54 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34737799 BTC (172,015.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 679,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.19 % (63,981.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 917.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02139625 BTC (14,535.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1584 transactions" + } + ] + }, + { + "id": 3145, + "type": "message", + "date": "2023-07-04T02:00:05", + "date_unixtime": "1688428805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016183 BTC for 109.61 CZK @ 677,321 CZK\nFees are 0.38498073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (54.185679999504915148829803221 CZK)\nThe limits being 0.10 % (14.60 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34753982 BTC (172,125.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 677,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.76 % (63,270.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 807.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02155808 BTC (14,601.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016183 BTC for 109.61 CZK @ 677,321 CZK\nFees are 0.38498073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (54.185679999504915148829803221 CZK)\nThe limits being 0.10 % (14.60 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34753982 BTC (172,125.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 677,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.76 % (63,270.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 807.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02155808 BTC (14,601.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1585 transactions" + } + ] + }, + { + "id": 3146, + "type": "message", + "date": "2023-07-04T06:00:05", + "date_unixtime": "1688443205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016149 BTC for 109.62 CZK @ 678,773 CZK\nFees are 0.38499547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (47.514109999483817907371879393 CZK)\nThe limits being 0.10 % (14.74 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34770131 BTC (172,235.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 678,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 37.03 % (63,774.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 697.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02171957 BTC (14,742.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016149 BTC for 109.62 CZK @ 678,773 CZK\nFees are 0.38499547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (47.514109999483817907371879393 CZK)\nThe limits being 0.10 % (14.74 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34770131 BTC (172,235.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 678,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 37.03 % (63,774.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 697.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02171957 BTC (14,742.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1586 transactions" + } + ] + }, + { + "id": 3147, + "type": "message", + "date": "2023-07-04T10:00:07", + "date_unixtime": "1688457607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016258 BTC for 109.61 CZK @ 674,206 CZK\nFees are 0.38498619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (20.226179999966901427486268230 CZK)\nThe limits being 0.10 % (14.75 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34786389 BTC (172,345.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 674,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.08 % (62,186.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 587.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02188215 BTC (14,753.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016258 BTC for 109.61 CZK @ 674,206 CZK\nFees are 0.38498619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (20.226179999966901427486268230 CZK)\nThe limits being 0.10 % (14.75 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34786389 BTC (172,345.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 674,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.08 % (62,186.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 587.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02188215 BTC (14,753.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1587 transactions" + } + ] + }, + { + "id": 3148, + "type": "message", + "date": "2023-07-04T14:00:04", + "date_unixtime": "1688472004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016232 BTC for 109.62 CZK @ 675,305 CZK\nFees are 0.38499707 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (27.012199998379255651056688480 CZK)\nThe limits being 0.10 % (14.89 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34802621 BTC (172,455.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 675,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.28 % (62,567.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 477.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02204447 BTC (14,886.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016232 BTC for 109.62 CZK @ 675,305 CZK\nFees are 0.38499707 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (27.012199998379255651056688480 CZK)\nThe limits being 0.10 % (14.89 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34802621 BTC (172,455.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 675,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.28 % (62,567.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 477.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02204447 BTC (14,886.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1588 transactions" + } + ] + }, + { + "id": 3149, + "type": "message", + "date": "2023-07-04T18:17:03", + "date_unixtime": "1688487423", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016221 BTC for 109.62 CZK @ 675,765 CZK\nFees are 0.38499824 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (33.788249999301194355603977412 CZK)\nThe limits being 0.10 % (15.01 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34818842 BTC (172,565.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 675,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.35 % (62,727.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 367.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02220668 BTC (15,006.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016221 BTC for 109.62 CZK @ 675,765 CZK\nFees are 0.38499824 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (33.788249999301194355603977412 CZK)\nThe limits being 0.10 % (15.01 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34818842 BTC (172,565.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 675,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.35 % (62,727.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 367.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02220668 BTC (15,006.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1589 transactions" + } + ] + }, + { + "id": 3150, + "type": "message", + "date": "2023-07-04T22:00:05", + "date_unixtime": "1688500805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016353 BTC for 109.62 CZK @ 670,312 CZK\nFees are 0.38499922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (33.515599998549685651982264362 CZK)\nThe limits being 0.10 % (15.00 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34835195 BTC (172,675.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 670,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.23 % (60,828.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 257.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02237021 BTC (14,995.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016353 BTC for 109.62 CZK @ 670,312 CZK\nFees are 0.38499922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (33.515599998549685651982264362 CZK)\nThe limits being 0.10 % (15.00 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34835195 BTC (172,675.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 670,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.23 % (60,828.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 257.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02237021 BTC (14,995.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1590 transactions" + } + ] + }, + { + "id": 3151, + "type": "message", + "date": "2023-07-05T02:00:05", + "date_unixtime": "1688515205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016314 BTC for 109.62 CZK @ 671,910 CZK\nFees are 0.38499668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (26.876399999780100285264904940 CZK)\nThe limits being 0.10 % (15.14 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34851509 BTC (172,785.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 671,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.53 % (61,384.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 147.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02253335 BTC (15,140.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016314 BTC for 109.62 CZK @ 671,910 CZK\nFees are 0.38499668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (26.876399999780100285264904940 CZK)\nThe limits being 0.10 % (15.14 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34851509 BTC (172,785.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 671,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.53 % (61,384.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 147.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02253335 BTC (15,140.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1591 transactions" + } + ] + }, + { + "id": 3152, + "type": "message", + "date": "2023-07-05T06:00:04", + "date_unixtime": "1688529604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016262 BTC for 109.61 CZK @ 674,032 CZK\nFees are 0.38498153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (20.220959999367605092911496516 CZK)\nThe limits being 0.10 % (15.30 CZK) and 40.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34867771 BTC (172,895.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 674,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.93 % (62,124.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 37.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02269597 BTC (15,297.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016262 BTC for 109.61 CZK @ 674,032 CZK\nFees are 0.38498153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (20.220959999367605092911496516 CZK)\nThe limits being 0.10 % (15.30 CZK) and 40.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34867771 BTC (172,895.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 674,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.93 % (62,124.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 37.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02269597 BTC (15,297.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1592 transactions" + } + ] + }, + { + "id": 3153, + "type": "message", + "date": "2023-07-05T10:00:01", + "date_unixtime": "1688544001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (37.10040287 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (37.10040287 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3154, + "type": "message", + "date": "2023-07-05T14:00:01", + "date_unixtime": "1688558401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (37.10040287 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (37.10040287 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3155, + "type": "message", + "date": "2023-07-05T18:00:05", + "date_unixtime": "1688572805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016493 BTC for 109.61 CZK @ 664,595 CZK\nFees are 0.38498353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (19.937849998781020203615847534 CZK)\nThe limits being 0.10 % (15.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34884264 BTC (173,005.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 495,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 664,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.01 % (58,833.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,927.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02286090 BTC (15,193.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016493 BTC for 109.61 CZK @ 664,595 CZK\nFees are 0.38498353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (19.937849998781020203615847534 CZK)\nThe limits being 0.10 % (15.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34884264 BTC (173,005.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 495,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 664,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.01 % (58,833.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,927.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02286090 BTC (15,193.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1593 transactions" + } + ] + }, + { + "id": 3156, + "type": "message", + "date": "2023-07-05T22:00:04", + "date_unixtime": "1688587204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016429 BTC for 109.61 CZK @ 667,184 CZK\nFees are 0.38498355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (33.359199997646559520223256583 CZK)\nThe limits being 0.10 % (15.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34900693 BTC (173,115.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 667,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.51 % (59,736.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,817.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02302519 BTC (15,362.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.60 CZK over 1594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016429 BTC for 109.61 CZK @ 667,184 CZK\nFees are 0.38498355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (33.359199997646559520223256583 CZK)\nThe limits being 0.10 % (15.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34900693 BTC (173,115.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 667,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.51 % (59,736.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,817.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02302519 BTC (15,362.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.60 CZK over 1594 transactions" + } + ] + }, + { + "id": 3157, + "type": "message", + "date": "2023-07-06T02:00:04", + "date_unixtime": "1688601604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016393 BTC for 109.61 CZK @ 668,641 CZK\nFees are 0.38497884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (33.432049997886066491308967386 CZK)\nThe limits being 0.10 % (15.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34917086 BTC (173,225.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 668,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.78 % (60,244.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,707.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02318912 BTC (15,505.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016393 BTC for 109.61 CZK @ 668,641 CZK\nFees are 0.38497884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (33.432049997886066491308967386 CZK)\nThe limits being 0.10 % (15.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34917086 BTC (173,225.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 668,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.78 % (60,244.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,707.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02318912 BTC (15,505.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1595 transactions" + } + ] + }, + { + "id": 3158, + "type": "message", + "date": "2023-07-06T06:00:04", + "date_unixtime": "1688616004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016387 BTC for 109.61 CZK @ 668,909 CZK\nFees are 0.38499219 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (20.067269999561247600202245700 CZK)\nThe limits being 0.10 % (15.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34933473 BTC (173,335.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 668,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.81 % (60,337.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,597.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02335299 BTC (15,621.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016387 BTC for 109.61 CZK @ 668,909 CZK\nFees are 0.38499219 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (20.067269999561247600202245700 CZK)\nThe limits being 0.10 % (15.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34933473 BTC (173,335.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 668,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.81 % (60,337.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,597.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02335299 BTC (15,621.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1596 transactions" + } + ] + }, + { + "id": 3159, + "type": "message", + "date": "2023-07-06T10:00:06", + "date_unixtime": "1688630406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016242 BTC for 109.61 CZK @ 674,875 CZK\nFees are 0.38498895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (20.246249999769922375490732566 CZK)\nThe limits being 0.10 % (15.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34949715 BTC (173,445.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 674,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.99 % (62,421.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,487.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02351541 BTC (15,869.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016242 BTC for 109.61 CZK @ 674,875 CZK\nFees are 0.38498895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (20.246249999769922375490732566 CZK)\nThe limits being 0.10 % (15.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34949715 BTC (173,445.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 674,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.99 % (62,421.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,487.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02351541 BTC (15,869.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1597 transactions" + } + ] + }, + { + "id": 3160, + "type": "message", + "date": "2023-07-06T14:00:04", + "date_unixtime": "1688644804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016274 BTC for 109.62 CZK @ 673,563 CZK\nFees are 0.38499754 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (26.942519997753959213295434762 CZK)\nThe limits being 0.10 % (15.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34965989 BTC (173,555.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 673,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.70 % (61,962.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,377.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02367815 BTC (15,948.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016274 BTC for 109.62 CZK @ 673,563 CZK\nFees are 0.38499754 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (26.942519997753959213295434762 CZK)\nThe limits being 0.10 % (15.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34965989 BTC (173,555.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 673,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.70 % (61,962.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,377.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02367815 BTC (15,948.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1598 transactions" + } + ] + }, + { + "id": 3161, + "type": "message", + "date": "2023-07-06T18:00:06", + "date_unixtime": "1688659206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016467 BTC for 109.62 CZK @ 665,668 CZK\nFees are 0.38499721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (39.940079998743693846904753022 CZK)\nThe limits being 0.10 % (15.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34982456 BTC (173,665.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.09 % (59,201.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,267.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02384282 BTC (15,871.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016467 BTC for 109.62 CZK @ 665,668 CZK\nFees are 0.38499721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (39.940079998743693846904753022 CZK)\nThe limits being 0.10 % (15.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34982456 BTC (173,665.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.09 % (59,201.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,267.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02384282 BTC (15,871.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1599 transactions" + } + ] + }, + { + "id": 3162, + "type": "message", + "date": "2023-07-06T22:00:04", + "date_unixtime": "1688673604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016541 BTC for 109.61 CZK @ 662,666 CZK\nFees are 0.38498328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (39.759959999743356386978445280 CZK)\nThe limits being 0.10 % (15.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.34998997 BTC (173,775.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.46 % (58,150.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,157.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02400823 BTC (15,909.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016541 BTC for 109.61 CZK @ 662,666 CZK\nFees are 0.38498328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (39.759959999743356386978445280 CZK)\nThe limits being 0.10 % (15.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.34998997 BTC (173,775.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.46 % (58,150.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,157.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02400823 BTC (15,909.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1600 transactions" + } + ] + }, + { + "id": 3163, + "type": "message", + "date": "2023-07-07T02:00:06", + "date_unixtime": "1688688006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016768 BTC for 109.61 CZK @ 653,696 CZK\nFees are 0.38498385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (26.147839997984154695207993397 CZK)\nThe limits being 0.10 % (15.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35015765 BTC (173,885.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.64 % (55,010.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,047.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02417591 BTC (15,803.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016768 BTC for 109.61 CZK @ 653,696 CZK\nFees are 0.38498385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (26.147839997984154695207993397 CZK)\nThe limits being 0.10 % (15.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35015765 BTC (173,885.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.64 % (55,010.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,047.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02417591 BTC (15,803.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1601 transactions" + } + ] + }, + { + "id": 3164, + "type": "message", + "date": "2023-07-07T06:00:04", + "date_unixtime": "1688702404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016653 BTC for 109.61 CZK @ 658,215 CZK\nFees are 0.38498666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.02434244 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.08 % (13.164299999542225521788853407 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35032418 BTC (173,995.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,671 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.53 % (56,592.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,937.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02434244 BTC (16,022.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016653 BTC for 109.61 CZK @ 658,215 CZK\nFees are 0.38498666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.02434244 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.08 % (13.164299999542225521788853407 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35032418 BTC (173,995.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,671 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.53 % (56,592.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,937.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02434244 BTC (16,022.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1602 transactions" + } + ] + }, + { + "id": 3165, + "type": "message", + "date": "2023-07-07T10:00:05", + "date_unixtime": "1688716805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016616 BTC for 109.61 CZK @ 659,673 CZK\nFees are 0.38498217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 12.04 % (13.193459998814932521921949153 CZK)\nThe limits being 0.10 % (0.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35049034 BTC (174,105.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.80 % (57,103.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,827.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00016616 BTC (109.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016616 BTC for 109.61 CZK @ 659,673 CZK\nFees are 0.38498217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 12.04 % (13.193459998814932521921949153 CZK)\nThe limits being 0.10 % (0.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35049034 BTC (174,105.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.80 % (57,103.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,827.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00016616 BTC (109.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1603 transactions" + } + ] + }, + { + "id": 3166, + "type": "message", + "date": "2023-07-07T14:00:05", + "date_unixtime": "1688731205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016608 BTC for 109.61 CZK @ 660,000 CZK\nFees are 0.38498756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 9.03 % (19.80000 CZK)\nThe limits being 0.10 % (0.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35065642 BTC (174,215.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.84 % (57,217.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,717.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00033224 BTC (219.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016608 BTC for 109.61 CZK @ 660,000 CZK\nFees are 0.38498756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 9.03 % (19.80000 CZK)\nThe limits being 0.10 % (0.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35065642 BTC (174,215.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.84 % (57,217.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,717.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00033224 BTC (219.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1604 transactions" + } + ] + }, + { + "id": 3167, + "type": "message", + "date": "2023-07-07T18:00:06", + "date_unixtime": "1688745606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016592 BTC for 109.62 CZK @ 660,657 CZK\nFees are 0.38499953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 6.02 % (19.819709999452254620880918714 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35082234 BTC (174,325.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.95 % (57,447.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,607.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00049816 BTC (329.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016592 BTC for 109.62 CZK @ 660,657 CZK\nFees are 0.38499953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 6.02 % (19.819709999452254620880918714 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35082234 BTC (174,325.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.95 % (57,447.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,607.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00049816 BTC (329.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1605 transactions" + } + ] + }, + { + "id": 3168, + "type": "message", + "date": "2023-07-07T22:00:06", + "date_unixtime": "1688760006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016687 BTC for 109.61 CZK @ 656,876 CZK\nFees are 0.38498790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.01 % (13.137519999591529723871406032 CZK)\nThe limits being 0.10 % (0.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35098921 BTC (174,435.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 496,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.17 % (56,120.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,497.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00066503 BTC (436.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016687 BTC for 109.61 CZK @ 656,876 CZK\nFees are 0.38498790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.01 % (13.137519999591529723871406032 CZK)\nThe limits being 0.10 % (0.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35098921 BTC (174,435.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 496,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.17 % (56,120.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,497.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00066503 BTC (436.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1606 transactions" + } + ] + }, + { + "id": 3169, + "type": "message", + "date": "2023-07-08T02:00:06", + "date_unixtime": "1688774406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016633 BTC for 109.61 CZK @ 659,012 CZK\nFees are 0.38498990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.61 % (19.770359999845427674215817296 CZK)\nThe limits being 0.10 % (0.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35115554 BTC (174,545.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.58 % (56,869.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,387.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00083136 BTC (547.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016633 BTC for 109.61 CZK @ 659,012 CZK\nFees are 0.38498990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.61 % (19.770359999845427674215817296 CZK)\nThe limits being 0.10 % (0.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35115554 BTC (174,545.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.58 % (56,869.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,387.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00083136 BTC (547.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1607 transactions" + } + ] + }, + { + "id": 3170, + "type": "message", + "date": "2023-07-08T06:00:04", + "date_unixtime": "1688788804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016666 BTC for 109.61 CZK @ 657,694 CZK\nFees are 0.38498223 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.00 % (13.153879999146154186974653874 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35132220 BTC (174,655.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.30 % (56,406.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,277.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00099802 BTC (656.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016666 BTC for 109.61 CZK @ 657,694 CZK\nFees are 0.38498223 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.00 % (13.153879999146154186974653874 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35132220 BTC (174,655.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.30 % (56,406.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,277.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00099802 BTC (656.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1608 transactions" + } + ] + }, + { + "id": 3171, + "type": "message", + "date": "2023-07-08T10:00:04", + "date_unixtime": "1688803204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016703 BTC for 109.61 CZK @ 656,255 CZK\nFees are 0.38499273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.72 % (13.125099999489901252936759300 CZK)\nThe limits being 0.10 % (0.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35148923 BTC (174,765.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.99 % (55,900.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,167.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00116505 BTC (764.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016703 BTC for 109.61 CZK @ 656,255 CZK\nFees are 0.38499273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.72 % (13.125099999489901252936759300 CZK)\nThe limits being 0.10 % (0.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35148923 BTC (174,765.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.99 % (55,900.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,167.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00116505 BTC (764.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1609 transactions" + } + ] + }, + { + "id": 3172, + "type": "message", + "date": "2023-07-08T14:00:05", + "date_unixtime": "1688817605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016699 BTC for 109.61 CZK @ 656,394 CZK\nFees are 0.38498206 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.50 % (13.127879998900787181388286097 CZK)\nThe limits being 0.10 % (0.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35165622 BTC (174,875.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.99 % (55,949.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,057.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00133204 BTC (874.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016699 BTC for 109.61 CZK @ 656,394 CZK\nFees are 0.38498206 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.50 % (13.127879998900787181388286097 CZK)\nThe limits being 0.10 % (0.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35165622 BTC (174,875.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.99 % (55,949.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,057.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00133204 BTC (874.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1610 transactions" + } + ] + }, + { + "id": 3173, + "type": "message", + "date": "2023-07-08T18:00:04", + "date_unixtime": "1688832004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016697 BTC for 109.61 CZK @ 656,477 CZK\nFees are 0.38498462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.67 % (26.259079998468557031882094170 CZK)\nThe limits being 0.10 % (0.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35182319 BTC (174,985.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.99 % (55,978.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,947.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00149901 BTC (984.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016697 BTC for 109.61 CZK @ 656,477 CZK\nFees are 0.38498462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.67 % (26.259079998468557031882094170 CZK)\nThe limits being 0.10 % (0.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35182319 BTC (174,985.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.99 % (55,978.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,947.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00149901 BTC (984.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1611 transactions" + } + ] + }, + { + "id": 3174, + "type": "message", + "date": "2023-07-08T22:00:06", + "date_unixtime": "1688846406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016749 BTC for 109.62 CZK @ 654,458 CZK\nFees are 0.38499588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.80 % (19.633739998845166759615570829 CZK)\nThe limits being 0.10 % (1.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35199068 BTC (175,095.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.56 % (55,267.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,837.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00166650 BTC (1,090.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016749 BTC for 109.62 CZK @ 654,458 CZK\nFees are 0.38499588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.80 % (19.633739998845166759615570829 CZK)\nThe limits being 0.10 % (1.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35199068 BTC (175,095.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.56 % (55,267.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,837.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00166650 BTC (1,090.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1612 transactions" + } + ] + }, + { + "id": 3175, + "type": "message", + "date": "2023-07-09T02:00:04", + "date_unixtime": "1688860804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016657 BTC for 109.62 CZK @ 658,074 CZK\nFees are 0.38499664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.09 % (13.161479999804969094331812601 CZK)\nThe limits being 0.10 % (1.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35215725 BTC (175,205.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.27 % (56,539.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,727.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00183307 BTC (1,206.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016657 BTC for 109.62 CZK @ 658,074 CZK\nFees are 0.38499664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.09 % (13.161479999804969094331812601 CZK)\nThe limits being 0.10 % (1.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35215725 BTC (175,205.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.27 % (56,539.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,727.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00183307 BTC (1,206.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1613 transactions" + } + ] + }, + { + "id": 3176, + "type": "message", + "date": "2023-07-09T06:00:05", + "date_unixtime": "1688875205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016652 BTC for 109.61 CZK @ 658,262 CZK\nFees are 0.38499103 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.00 % (13.165239998941968783052254893 CZK)\nThe limits being 0.10 % (1.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35232377 BTC (175,315.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.29 % (56,605.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,617.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00199959 BTC (1,316.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016652 BTC for 109.61 CZK @ 658,262 CZK\nFees are 0.38499103 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.00 % (13.165239998941968783052254893 CZK)\nThe limits being 0.10 % (1.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35232377 BTC (175,315.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.29 % (56,605.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,617.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00199959 BTC (1,316.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1614 transactions" + } + ] + }, + { + "id": 3177, + "type": "message", + "date": "2023-07-09T10:00:06", + "date_unixtime": "1688889606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016665 BTC for 109.61 CZK @ 657,739 CZK\nFees are 0.38498546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.92 % (13.154779999375124358474711447 CZK)\nThe limits being 0.10 % (1.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35249042 BTC (175,425.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.16 % (56,420.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,507.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00216624 BTC (1,424.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016665 BTC for 109.61 CZK @ 657,739 CZK\nFees are 0.38498546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.92 % (13.154779999375124358474711447 CZK)\nThe limits being 0.10 % (1.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35249042 BTC (175,425.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.16 % (56,420.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,507.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00216624 BTC (1,424.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1615 transactions" + } + ] + }, + { + "id": 3178, + "type": "message", + "date": "2023-07-09T14:00:04", + "date_unixtime": "1688904004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016658 BTC for 109.61 CZK @ 658,004 CZK\nFees are 0.38497880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.86 % (13.160079999746355399276981280 CZK)\nThe limits being 0.10 % (1.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35265700 BTC (175,535.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.20 % (56,513.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,397.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00233282 BTC (1,535.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016658 BTC for 109.61 CZK @ 658,004 CZK\nFees are 0.38497880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.86 % (13.160079999746355399276981280 CZK)\nThe limits being 0.10 % (1.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35265700 BTC (175,535.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.20 % (56,513.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,397.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00233282 BTC (1,535.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1616 transactions" + } + ] + }, + { + "id": 3179, + "type": "message", + "date": "2023-07-09T18:00:05", + "date_unixtime": "1688918405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016612 BTC for 109.61 CZK @ 659,848 CZK\nFees are 0.38499160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.80 % (13.196959999500904071483014362 CZK)\nThe limits being 0.10 % (1.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35282312 BTC (175,645.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.54 % (57,163.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,287.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00249894 BTC (1,648.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016612 BTC for 109.61 CZK @ 659,848 CZK\nFees are 0.38499160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.80 % (13.196959999500904071483014362 CZK)\nThe limits being 0.10 % (1.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35282312 BTC (175,645.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.54 % (57,163.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,287.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00249894 BTC (1,648.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1617 transactions" + } + ] + }, + { + "id": 3180, + "type": "message", + "date": "2023-07-09T22:00:06", + "date_unixtime": "1688932806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016684 BTC for 109.61 CZK @ 657,001 CZK\nFees are 0.38499194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.75 % (13.140019999529338516343600562 CZK)\nThe limits being 0.10 % (1.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35298996 BTC (175,755.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.95 % (56,159.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,177.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00266578 BTC (1,751.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016684 BTC for 109.61 CZK @ 657,001 CZK\nFees are 0.38499194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.75 % (13.140019999529338516343600562 CZK)\nThe limits being 0.10 % (1.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35298996 BTC (175,755.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.95 % (56,159.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,177.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00266578 BTC (1,751.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1618 transactions" + } + ] + }, + { + "id": 3181, + "type": "message", + "date": "2023-07-10T02:00:06", + "date_unixtime": "1688947206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016716 BTC for 109.62 CZK @ 655,757 CZK\nFees are 0.38499999 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.71 % (13.115139999949924009684696527 CZK)\nThe limits being 0.10 % (1.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35315712 BTC (175,865.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 497,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 655,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.68 % (55,719.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,067.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00283294 BTC (1,857.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016716 BTC for 109.62 CZK @ 655,757 CZK\nFees are 0.38499999 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.71 % (13.115139999949924009684696527 CZK)\nThe limits being 0.10 % (1.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35315712 BTC (175,865.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 497,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 655,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.68 % (55,719.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,067.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00283294 BTC (1,857.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1619 transactions" + } + ] + }, + { + "id": 3182, + "type": "message", + "date": "2023-07-10T06:00:04", + "date_unixtime": "1688961604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016696 BTC for 109.61 CZK @ 656,534 CZK\nFees are 0.38499499 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.67 % (13.130679999016379900821489903 CZK)\nThe limits being 0.10 % (1.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35332408 BTC (175,975.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.82 % (55,993.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,957.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00299990 BTC (1,969.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016696 BTC for 109.61 CZK @ 656,534 CZK\nFees are 0.38499499 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.67 % (13.130679999016379900821489903 CZK)\nThe limits being 0.10 % (1.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35332408 BTC (175,975.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.82 % (55,993.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,957.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00299990 BTC (1,969.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1620 transactions" + } + ] + }, + { + "id": 3183, + "type": "message", + "date": "2023-07-10T10:00:04", + "date_unixtime": "1688976004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016692 BTC for 109.62 CZK @ 656,698 CZK\nFees are 0.38499890 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (13.133959999336136128391272769 CZK)\nThe limits being 0.10 % (2.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35349100 BTC (176,085.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.83 % (56,051.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,847.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00316682 BTC (2,079.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016692 BTC for 109.62 CZK @ 656,698 CZK\nFees are 0.38499890 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (13.133959999336136128391272769 CZK)\nThe limits being 0.10 % (2.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35349100 BTC (176,085.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.83 % (56,051.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,847.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00316682 BTC (2,079.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1621 transactions" + } + ] + }, + { + "id": 3184, + "type": "message", + "date": "2023-07-10T14:00:04", + "date_unixtime": "1688990404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016692 BTC for 109.62 CZK @ 656,699 CZK\nFees are 0.38499949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (13.133979998832268225839325122 CZK)\nThe limits being 0.10 % (2.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35365792 BTC (176,195.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.81 % (56,051.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,737.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00333374 BTC (2,189.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016692 BTC for 109.62 CZK @ 656,699 CZK\nFees are 0.38499949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (13.133979998832268225839325122 CZK)\nThe limits being 0.10 % (2.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35365792 BTC (176,195.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.81 % (56,051.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,737.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00333374 BTC (2,189.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1622 transactions" + } + ] + }, + { + "id": 3185, + "type": "message", + "date": "2023-07-10T18:00:04", + "date_unixtime": "1689004804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016657 BTC for 109.61 CZK @ 658,050 CZK\nFees are 0.38498260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.86 % (19.741499998250106137793103857 CZK)\nThe limits being 0.10 % (2.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35382449 BTC (176,305.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.06 % (56,528.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,627.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00350031 BTC (2,303.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016657 BTC for 109.61 CZK @ 658,050 CZK\nFees are 0.38498260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.86 % (19.741499998250106137793103857 CZK)\nThe limits being 0.10 % (2.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35382449 BTC (176,305.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.06 % (56,528.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,627.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00350031 BTC (2,303.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1623 transactions" + } + ] + }, + { + "id": 3186, + "type": "message", + "date": "2023-07-10T22:00:04", + "date_unixtime": "1689019204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016425 BTC for 109.61 CZK @ 667,342 CZK\nFees are 0.38498097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (26.693679999453965913822170350 CZK)\nThe limits being 0.10 % (2.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35398874 BTC (176,415.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 667,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.91 % (59,815.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,517.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00366456 BTC (2,445.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016425 BTC for 109.61 CZK @ 667,342 CZK\nFees are 0.38498097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (26.693679999453965913822170350 CZK)\nThe limits being 0.10 % (2.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35398874 BTC (176,415.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 667,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.91 % (59,815.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,517.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00366456 BTC (2,445.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1624 transactions" + } + ] + }, + { + "id": 3187, + "type": "message", + "date": "2023-07-11T02:00:05", + "date_unixtime": "1689033605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016660 BTC for 109.61 CZK @ 657,922 CZK\nFees are 0.38497704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.78 % (19.737659998528559405825110313 CZK)\nThe limits being 0.10 % (2.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35415534 BTC (176,525.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.00 % (56,480.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,407.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00383116 BTC (2,520.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016660 BTC for 109.61 CZK @ 657,922 CZK\nFees are 0.38497704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.78 % (19.737659998528559405825110313 CZK)\nThe limits being 0.10 % (2.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35415534 BTC (176,525.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.00 % (56,480.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,407.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00383116 BTC (2,520.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1625 transactions" + } + ] + }, + { + "id": 3188, + "type": "message", + "date": "2023-07-11T06:00:05", + "date_unixtime": "1689048005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016648 BTC for 109.61 CZK @ 658,398 CZK\nFees are 0.38497807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.75 % (19.751939998807633159003554834 CZK)\nThe limits being 0.10 % (2.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35432182 BTC (176,635.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.07 % (56,649.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,297.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00399764 BTC (2,632.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016648 BTC for 109.61 CZK @ 658,398 CZK\nFees are 0.38497807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.75 % (19.751939998807633159003554834 CZK)\nThe limits being 0.10 % (2.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35432182 BTC (176,635.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.07 % (56,649.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,297.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00399764 BTC (2,632.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1626 transactions" + } + ] + }, + { + "id": 3189, + "type": "message", + "date": "2023-07-11T10:00:05", + "date_unixtime": "1689062405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016558 BTC for 109.61 CZK @ 661,991 CZK\nFees are 0.38498640 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (13.239819999490850750480577310 CZK)\nThe limits being 0.10 % (2.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35448740 BTC (176,745.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.77 % (57,921.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,187.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00416322 BTC (2,756.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016558 BTC for 109.61 CZK @ 661,991 CZK\nFees are 0.38498640 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (13.239819999490850750480577310 CZK)\nThe limits being 0.10 % (2.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35448740 BTC (176,745.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.77 % (57,921.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,187.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00416322 BTC (2,756.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1627 transactions" + } + ] + }, + { + "id": 3190, + "type": "message", + "date": "2023-07-11T14:00:04", + "date_unixtime": "1689076804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016614 BTC for 109.61 CZK @ 659,770 CZK\nFees are 0.38499243 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.69 % (19.793099998686432085029950247 CZK)\nThe limits being 0.10 % (2.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35465354 BTC (176,855.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.31 % (57,134.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,077.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00432936 BTC (2,856.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016614 BTC for 109.61 CZK @ 659,770 CZK\nFees are 0.38499243 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.69 % (19.793099998686432085029950247 CZK)\nThe limits being 0.10 % (2.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35465354 BTC (176,855.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.31 % (57,134.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,077.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00432936 BTC (2,856.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1628 transactions" + } + ] + }, + { + "id": 3191, + "type": "message", + "date": "2023-07-11T18:00:05", + "date_unixtime": "1689091205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016503 BTC for 109.61 CZK @ 664,203 CZK\nFees are 0.38498974 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (33.210149998848180915363156178 CZK)\nThe limits being 0.10 % (2.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35481857 BTC (176,965.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 664,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.17 % (58,705.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,967.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00449439 BTC (2,985.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.63 CZK over 1629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016503 BTC for 109.61 CZK @ 664,203 CZK\nFees are 0.38498974 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (33.210149998848180915363156178 CZK)\nThe limits being 0.10 % (2.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35481857 BTC (176,965.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 664,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.17 % (58,705.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,967.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00449439 BTC (2,985.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.63 CZK over 1629 transactions" + } + ] + }, + { + "id": 3192, + "type": "message", + "date": "2023-07-11T22:00:04", + "date_unixtime": "1689105604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016557 BTC for 109.62 CZK @ 662,048 CZK\nFees are 0.38499629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (33.10239999826662127381127460 CZK)\nThe limits being 0.10 % (3.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35498414 BTC (177,075.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.72 % (57,940.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,857.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00465996 BTC (3,085.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016557 BTC for 109.62 CZK @ 662,048 CZK\nFees are 0.38499629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (33.10239999826662127381127460 CZK)\nThe limits being 0.10 % (3.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35498414 BTC (177,075.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.72 % (57,940.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,857.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00465996 BTC (3,085.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1630 transactions" + } + ] + }, + { + "id": 3193, + "type": "message", + "date": "2023-07-12T02:00:05", + "date_unixtime": "1689120005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016540 BTC for 109.61 CZK @ 662,699 CZK\nFees are 0.38497918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (33.134949999668632579201332219 CZK)\nThe limits being 0.10 % (3.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35514954 BTC (177,185.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.83 % (58,171.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,747.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00482536 BTC (3,197.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016540 BTC for 109.61 CZK @ 662,699 CZK\nFees are 0.38497918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (33.134949999668632579201332219 CZK)\nThe limits being 0.10 % (3.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35514954 BTC (177,185.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.83 % (58,171.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,747.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00482536 BTC (3,197.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1631 transactions" + } + ] + }, + { + "id": 3194, + "type": "message", + "date": "2023-07-12T06:00:05", + "date_unixtime": "1689134405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016559 BTC for 109.61 CZK @ 661,946 CZK\nFees are 0.38498348 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (33.097299998949867865394002808 CZK)\nThe limits being 0.10 % (3.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35531513 BTC (177,295.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 498,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.66 % (57,903.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,637.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00499095 BTC (3,303.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016559 BTC for 109.61 CZK @ 661,946 CZK\nFees are 0.38498348 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (33.097299998949867865394002808 CZK)\nThe limits being 0.10 % (3.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35531513 BTC (177,295.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 498,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.66 % (57,903.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,637.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00499095 BTC (3,303.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1632 transactions" + } + ] + }, + { + "id": 3195, + "type": "message", + "date": "2023-07-12T10:00:05", + "date_unixtime": "1689148805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016463 BTC for 109.61 CZK @ 665,798 CZK\nFees are 0.38497886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (13.315959999202209142205040058 CZK)\nThe limits being 0.10 % (3.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35547976 BTC (177,405.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.41 % (59,272.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,527.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00515558 BTC (3,432.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016463 BTC for 109.61 CZK @ 665,798 CZK\nFees are 0.38497886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (13.315959999202209142205040058 CZK)\nThe limits being 0.10 % (3.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35547976 BTC (177,405.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.41 % (59,272.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,527.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00515558 BTC (3,432.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1633 transactions" + } + ] + }, + { + "id": 3196, + "type": "message", + "date": "2023-07-12T14:00:05", + "date_unixtime": "1689163205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016464 BTC for 109.61 CZK @ 665,777 CZK\nFees are 0.38499010 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (13.315539998973466530893088960 CZK)\nThe limits being 0.10 % (3.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35564440 BTC (177,515.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 665,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.39 % (59,264.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,417.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00532022 BTC (3,542.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016464 BTC for 109.61 CZK @ 665,777 CZK\nFees are 0.38499010 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (13.315539998973466530893088960 CZK)\nThe limits being 0.10 % (3.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35564440 BTC (177,515.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 665,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.39 % (59,264.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,417.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00532022 BTC (3,542.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1634 transactions" + } + ] + }, + { + "id": 3197, + "type": "message", + "date": "2023-07-12T18:00:05", + "date_unixtime": "1689177605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016757 BTC for 109.61 CZK @ 654,137 CZK\nFees are 0.38499085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (32.706849997081587600883331921 CZK)\nThe limits being 0.10 % (3.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35581197 BTC (177,625.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.03 % (55,124.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,307.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00548779 BTC (3,589.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016757 BTC for 109.61 CZK @ 654,137 CZK\nFees are 0.38499085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (32.706849997081587600883331921 CZK)\nThe limits being 0.10 % (3.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35581197 BTC (177,625.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.03 % (55,124.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,307.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00548779 BTC (3,589.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1635 transactions" + } + ] + }, + { + "id": 3198, + "type": "message", + "date": "2023-07-12T22:00:04", + "date_unixtime": "1689192004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016907 BTC for 109.61 CZK @ 648,340 CZK\nFees are 0.38499474 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (32.416999999027476700773058772 CZK)\nThe limits being 0.10 % (3.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35598104 BTC (177,735.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.85 % (53,061.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,197.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00565686 BTC (3,667.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016907 BTC for 109.61 CZK @ 648,340 CZK\nFees are 0.38499474 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (32.416999999027476700773058772 CZK)\nThe limits being 0.10 % (3.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35598104 BTC (177,735.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.85 % (53,061.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,197.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00565686 BTC (3,667.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1636 transactions" + } + ] + }, + { + "id": 3199, + "type": "message", + "date": "2023-07-13T02:00:04", + "date_unixtime": "1689206404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016848 BTC for 109.61 CZK @ 650,589 CZK\nFees are 0.38498206 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (32.529449999550481198048047409 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35614952 BTC (177,845.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.29 % (53,861.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,087.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00582534 BTC (3,789.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016848 BTC for 109.61 CZK @ 650,589 CZK\nFees are 0.38498206 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (32.529449999550481198048047409 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35614952 BTC (177,845.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.29 % (53,861.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,087.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00582534 BTC (3,789.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1637 transactions" + } + ] + }, + { + "id": 3200, + "type": "message", + "date": "2023-07-13T06:00:04", + "date_unixtime": "1689220804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016905 BTC for 109.61 CZK @ 648,389 CZK\nFees are 0.38497829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (19.451669999721471743308358633 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35631857 BTC (177,955.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.83 % (53,077.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,977.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00599439 BTC (3,886.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016905 BTC for 109.61 CZK @ 648,389 CZK\nFees are 0.38497829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (19.451669999721471743308358633 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35631857 BTC (177,955.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.83 % (53,077.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,977.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00599439 BTC (3,886.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1638 transactions" + } + ] + }, + { + "id": 3201, + "type": "message", + "date": "2023-07-13T10:00:05", + "date_unixtime": "1689235205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016879 BTC for 109.62 CZK @ 649,420 CZK\nFees are 0.38499740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (19.482599998884170820695018115 CZK)\nThe limits being 0.10 % (4.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35648736 BTC (178,065.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.01 % (53,444.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,867.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00616318 BTC (4,002.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016879 BTC for 109.62 CZK @ 649,420 CZK\nFees are 0.38499740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (19.482599998884170820695018115 CZK)\nThe limits being 0.10 % (4.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35648736 BTC (178,065.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.01 % (53,444.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,867.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00616318 BTC (4,002.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1639 transactions" + } + ] + }, + { + "id": 3202, + "type": "message", + "date": "2023-07-13T14:00:04", + "date_unixtime": "1689249604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016824 BTC for 109.61 CZK @ 651,536 CZK\nFees are 0.38499323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (19.546079998535795187599464642 CZK)\nThe limits being 0.10 % (4.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35665560 BTC (178,175.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 651,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.42 % (54,198.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,757.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00633142 BTC (4,125.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016824 BTC for 109.61 CZK @ 651,536 CZK\nFees are 0.38499323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (19.546079998535795187599464642 CZK)\nThe limits being 0.10 % (4.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35665560 BTC (178,175.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 651,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.42 % (54,198.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,757.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00633142 BTC (4,125.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1640 transactions" + } + ] + }, + { + "id": 3203, + "type": "message", + "date": "2023-07-13T18:00:07", + "date_unixtime": "1689264007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016662 BTC for 109.61 CZK @ 657,847 CZK\nFees are 0.38497936 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (19.735409999104682046399000690 CZK)\nThe limits being 0.10 % (4.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35682222 BTC (178,285.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.66 % (56,448.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,647.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00649804 BTC (4,274.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016662 BTC for 109.61 CZK @ 657,847 CZK\nFees are 0.38497936 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (19.735409999104682046399000690 CZK)\nThe limits being 0.10 % (4.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35682222 BTC (178,285.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.66 % (56,448.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,647.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00649804 BTC (4,274.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1641 transactions" + } + ] + }, + { + "id": 3204, + "type": "message", + "date": "2023-07-13T22:00:05", + "date_unixtime": "1689278405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016343 BTC for 109.62 CZK @ 670,716 CZK\nFees are 0.38499569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (53.657279997278082057594356850 CZK)\nThe limits being 0.10 % (4.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35698565 BTC (178,395.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 670,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.22 % (61,040.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,537.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00666147 BTC (4,467.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016343 BTC for 109.62 CZK @ 670,716 CZK\nFees are 0.38499569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (53.657279997278082057594356850 CZK)\nThe limits being 0.10 % (4.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35698565 BTC (178,395.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 670,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.22 % (61,040.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,537.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00666147 BTC (4,467.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1642 transactions" + } + ] + }, + { + "id": 3205, + "type": "message", + "date": "2023-07-14T02:00:04", + "date_unixtime": "1689292804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016441 BTC for 109.61 CZK @ 666,708 CZK\nFees are 0.38498988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.17 % (53.336639996130567525551573690 CZK)\nThe limits being 0.10 % (4.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35715006 BTC (178,505.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 666,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.39 % (59,609.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,427.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00682588 BTC (4,550.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016441 BTC for 109.61 CZK @ 666,708 CZK\nFees are 0.38498988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.17 % (53.336639996130567525551573690 CZK)\nThe limits being 0.10 % (4.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35715006 BTC (178,505.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 666,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.39 % (59,609.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,427.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00682588 BTC (4,550.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1643 transactions" + } + ] + }, + { + "id": 3206, + "type": "message", + "date": "2023-07-14T06:00:04", + "date_unixtime": "1689307204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016442 BTC for 109.61 CZK @ 666,652 CZK\nFees are 0.38498096 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (46.665639997267803776673383820 CZK)\nThe limits being 0.10 % (4.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35731448 BTC (178,615.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 666,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.36 % (59,588.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,317.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00699030 BTC (4,660.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016442 BTC for 109.61 CZK @ 666,652 CZK\nFees are 0.38498096 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (46.665639997267803776673383820 CZK)\nThe limits being 0.10 % (4.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35731448 BTC (178,615.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 666,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.36 % (59,588.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,317.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00699030 BTC (4,660.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1644 transactions" + } + ] + }, + { + "id": 3207, + "type": "message", + "date": "2023-07-14T10:00:04", + "date_unixtime": "1689321604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016614 BTC for 109.61 CZK @ 659,758 CZK\nFees are 0.38498543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (39.585479996609915134515652420 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35748062 BTC (178,725.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 499,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 659,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.96 % (57,125.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,207.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00715644 BTC (4,721.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016614 BTC for 109.61 CZK @ 659,758 CZK\nFees are 0.38498543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (39.585479996609915134515652420 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35748062 BTC (178,725.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 499,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 659,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.96 % (57,125.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,207.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00715644 BTC (4,721.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1645 transactions" + } + ] + }, + { + "id": 3208, + "type": "message", + "date": "2023-07-14T14:00:04", + "date_unixtime": "1689336004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016554 BTC for 109.62 CZK @ 662,168 CZK\nFees are 0.38499630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (19.865039998641940594653038396 CZK)\nThe limits being 0.10 % (4.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35764616 BTC (178,835.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.42 % (57,986.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,097.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00732198 BTC (4,848.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016554 BTC for 109.62 CZK @ 662,168 CZK\nFees are 0.38499630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (19.865039998641940594653038396 CZK)\nThe limits being 0.10 % (4.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35764616 BTC (178,835.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.42 % (57,986.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,097.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00732198 BTC (4,848.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1646 transactions" + } + ] + }, + { + "id": 3209, + "type": "message", + "date": "2023-07-14T18:00:05", + "date_unixtime": "1689350405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016562 BTC for 109.61 CZK @ 661,837 CZK\nFees are 0.38498982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (39.710219998631766236358953059 CZK)\nThe limits being 0.10 % (4.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35781178 BTC (178,945.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.34 % (57,867.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,987.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00748760 BTC (4,955.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016562 BTC for 109.61 CZK @ 661,837 CZK\nFees are 0.38498982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (39.710219998631766236358953059 CZK)\nThe limits being 0.10 % (4.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35781178 BTC (178,945.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.34 % (57,867.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,987.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00748760 BTC (4,955.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1647 transactions" + } + ] + }, + { + "id": 3210, + "type": "message", + "date": "2023-07-14T22:00:06", + "date_unixtime": "1689364806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017174 BTC for 109.61 CZK @ 638,249 CZK\nFees are 0.38498785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (38.294939999509113003753196640 CZK)\nThe limits being 0.10 % (4.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35798352 BTC (179,055.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.60 % (49,426.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,877.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00765934 BTC (4,888.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017174 BTC for 109.61 CZK @ 638,249 CZK\nFees are 0.38498785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (38.294939999509113003753196640 CZK)\nThe limits being 0.10 % (4.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35798352 BTC (179,055.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.60 % (49,426.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,877.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00765934 BTC (4,888.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1648 transactions" + } + ] + }, + { + "id": 3211, + "type": "message", + "date": "2023-07-15T02:00:05", + "date_unixtime": "1689379205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017056 BTC for 109.61 CZK @ 642,656 CZK\nFees are 0.38498267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (38.559359997980800780757031441 CZK)\nThe limits being 0.10 % (5.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35815408 BTC (179,165.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.47 % (51,004.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,767.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00782990 BTC (5,031.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017056 BTC for 109.61 CZK @ 642,656 CZK\nFees are 0.38498267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (38.559359997980800780757031441 CZK)\nThe limits being 0.10 % (5.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35815408 BTC (179,165.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.47 % (51,004.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,767.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00782990 BTC (5,031.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1649 transactions" + } + ] + }, + { + "id": 3212, + "type": "message", + "date": "2023-07-15T06:00:05", + "date_unixtime": "1689393605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017065 BTC for 109.61 CZK @ 642,312 CZK\nFees are 0.38497963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (38.538719996566368720319783190 CZK)\nThe limits being 0.10 % (5.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35832473 BTC (179,275.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.38 % (50,880.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,657.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00800055 BTC (5,138.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017065 BTC for 109.61 CZK @ 642,312 CZK\nFees are 0.38497963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (38.538719996566368720319783190 CZK)\nThe limits being 0.10 % (5.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35832473 BTC (179,275.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.38 % (50,880.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,657.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00800055 BTC (5,138.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1650 transactions" + } + ] + }, + { + "id": 3213, + "type": "message", + "date": "2023-07-15T10:00:04", + "date_unixtime": "1689408004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017018 BTC for 109.61 CZK @ 644,099 CZK\nFees are 0.38498744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (19.322969998705318785824417688 CZK)\nThe limits being 0.10 % (5.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35849491 BTC (179,385.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.72 % (51,520.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,547.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00817073 BTC (5,262.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017018 BTC for 109.61 CZK @ 644,099 CZK\nFees are 0.38498744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (19.322969998705318785824417688 CZK)\nThe limits being 0.10 % (5.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35849491 BTC (179,385.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.72 % (51,520.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,547.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00817073 BTC (5,262.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1651 transactions" + } + ] + }, + { + "id": 3214, + "type": "message", + "date": "2023-07-15T14:00:04", + "date_unixtime": "1689422404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017031 BTC for 109.62 CZK @ 643,623 CZK\nFees are 0.38499680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.36 % (19.308689998954689062124382522 CZK)\nThe limits being 0.10 % (5.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35866522 BTC (179,495.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.61 % (51,349.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,437.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00834104 BTC (5,368.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017031 BTC for 109.62 CZK @ 643,623 CZK\nFees are 0.38499680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.36 % (19.308689998954689062124382522 CZK)\nThe limits being 0.10 % (5.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35866522 BTC (179,495.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.61 % (51,349.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,437.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00834104 BTC (5,368.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1652 transactions" + } + ] + }, + { + "id": 3215, + "type": "message", + "date": "2023-07-15T18:00:05", + "date_unixtime": "1689436805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017034 BTC for 109.61 CZK @ 643,501 CZK\nFees are 0.38499163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (19.305029999791150136199946893 CZK)\nThe limits being 0.10 % (5.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35883556 BTC (179,605.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.57 % (51,305.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,327.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00851138 BTC (5,477.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017034 BTC for 109.61 CZK @ 643,501 CZK\nFees are 0.38499163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (19.305029999791150136199946893 CZK)\nThe limits being 0.10 % (5.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35883556 BTC (179,605.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.57 % (51,305.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,327.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00851138 BTC (5,477.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1653 transactions" + } + ] + }, + { + "id": 3216, + "type": "message", + "date": "2023-07-15T22:00:04", + "date_unixtime": "1689451204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017020 BTC for 109.61 CZK @ 644,016 CZK\nFees are 0.38498332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (19.320492372466051545794185685 CZK)\nThe limits being 0.10 % (5.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35900576 BTC (179,715.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.65 % (51,489.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,217.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00868158 BTC (5,591.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017020 BTC for 109.61 CZK @ 644,016 CZK\nFees are 0.38498332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (19.320492372466051545794185685 CZK)\nThe limits being 0.10 % (5.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35900576 BTC (179,715.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.65 % (51,489.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,217.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00868158 BTC (5,591.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1654 transactions" + } + ] + }, + { + "id": 3217, + "type": "message", + "date": "2023-07-16T02:00:05", + "date_unixtime": "1689465605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017052 BTC for 109.62 CZK @ 642,829 CZK\nFees are 0.38499599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (19.284869999337294837526784333 CZK)\nThe limits being 0.10 % (5.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35917628 BTC (179,825.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.40 % (51,063.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,107.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00885210 BTC (5,690.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017052 BTC for 109.62 CZK @ 642,829 CZK\nFees are 0.38499599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (19.284869999337294837526784333 CZK)\nThe limits being 0.10 % (5.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35917628 BTC (179,825.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.40 % (51,063.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,107.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00885210 BTC (5,690.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1655 transactions" + } + ] + }, + { + "id": 3218, + "type": "message", + "date": "2023-07-16T06:00:05", + "date_unixtime": "1689480005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017107 BTC for 109.62 CZK @ 640,767 CZK\nFees are 0.38499883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (19.223009998704190445383636958 CZK)\nThe limits being 0.10 % (5.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35934735 BTC (179,935.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.97 % (50,322.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,997.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00902317 BTC (5,781.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017107 BTC for 109.62 CZK @ 640,767 CZK\nFees are 0.38499883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (19.223009998704190445383636958 CZK)\nThe limits being 0.10 % (5.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35934735 BTC (179,935.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.97 % (50,322.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,997.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00902317 BTC (5,781.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1656 transactions" + } + ] + }, + { + "id": 3219, + "type": "message", + "date": "2023-07-16T10:00:05", + "date_unixtime": "1689494405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017099 BTC for 109.62 CZK @ 641,068 CZK\nFees are 0.38499956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (19.232039999891601105004348631 CZK)\nThe limits being 0.10 % (5.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35951834 BTC (180,045.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.01 % (50,430.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,887.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00919416 BTC (5,894.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017099 BTC for 109.62 CZK @ 641,068 CZK\nFees are 0.38499956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (19.232039999891601105004348631 CZK)\nThe limits being 0.10 % (5.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35951834 BTC (180,045.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.01 % (50,430.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,887.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00919416 BTC (5,894.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1657 transactions" + } + ] + }, + { + "id": 3220, + "type": "message", + "date": "2023-07-16T14:00:05", + "date_unixtime": "1689508805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017073 BTC for 109.61 CZK @ 642,018 CZK\nFees are 0.38498381 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (19.260539998951131941385610738 CZK)\nThe limits being 0.10 % (6.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35968907 BTC (180,155.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.18 % (50,771.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,777.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00936489 BTC (6,012.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017073 BTC for 109.61 CZK @ 642,018 CZK\nFees are 0.38498381 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (19.260539998951131941385610738 CZK)\nThe limits being 0.10 % (6.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35968907 BTC (180,155.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.18 % (50,771.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,777.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00936489 BTC (6,012.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1658 transactions" + } + ] + }, + { + "id": 3221, + "type": "message", + "date": "2023-07-16T18:00:04", + "date_unixtime": "1689523204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017032 BTC for 109.61 CZK @ 643,561 CZK\nFees are 0.38498232 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (19.306829999417258009367401974 CZK)\nThe limits being 0.10 % (6.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.35985939 BTC (180,265.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 500,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.47 % (51,325.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,667.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00953521 BTC (6,136.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017032 BTC for 109.61 CZK @ 643,561 CZK\nFees are 0.38498232 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (19.306829999417258009367401974 CZK)\nThe limits being 0.10 % (6.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.35985939 BTC (180,265.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 500,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.47 % (51,325.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,667.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00953521 BTC (6,136.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1659 transactions" + } + ] + }, + { + "id": 3222, + "type": "message", + "date": "2023-07-16T22:00:04", + "date_unixtime": "1689537604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017098 BTC for 109.61 CZK @ 641,092 CZK\nFees are 0.38499146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (19.232759999027849829375405754 CZK)\nThe limits being 0.10 % (6.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36003037 BTC (180,375.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.96 % (50,436.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,557.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00970619 BTC (6,222.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017098 BTC for 109.61 CZK @ 641,092 CZK\nFees are 0.38499146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (19.232759999027849829375405754 CZK)\nThe limits being 0.10 % (6.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36003037 BTC (180,375.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.96 % (50,436.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,557.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00970619 BTC (6,222.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1660 transactions" + } + ] + }, + { + "id": 3223, + "type": "message", + "date": "2023-07-17T02:00:06", + "date_unixtime": "1689552006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017125 BTC for 109.61 CZK @ 640,071 CZK\nFees are 0.38498530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (19.202129999018035416189322772 CZK)\nThe limits being 0.10 % (6.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36020162 BTC (180,485.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.74 % (50,069.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,447.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00987744 BTC (6,322.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017125 BTC for 109.61 CZK @ 640,071 CZK\nFees are 0.38498530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (19.202129999018035416189322772 CZK)\nThe limits being 0.10 % (6.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36020162 BTC (180,485.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.74 % (50,069.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,447.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00987744 BTC (6,322.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1661 transactions" + } + ] + }, + { + "id": 3224, + "type": "message", + "date": "2023-07-17T06:00:04", + "date_unixtime": "1689566404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017086 BTC for 109.61 CZK @ 641,543 CZK\nFees are 0.38499190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (19.246289998350033340524598413 CZK)\nThe limits being 0.10 % (6.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36037248 BTC (180,595.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.02 % (50,598.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,337.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01004830 BTC (6,446.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017086 BTC for 109.61 CZK @ 641,543 CZK\nFees are 0.38499190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (19.246289998350033340524598413 CZK)\nThe limits being 0.10 % (6.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36037248 BTC (180,595.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.02 % (50,598.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,337.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01004830 BTC (6,446.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1662 transactions" + } + ] + }, + { + "id": 3225, + "type": "message", + "date": "2023-07-17T10:00:05", + "date_unixtime": "1689580805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017106 BTC for 109.61 CZK @ 640,788 CZK\nFees are 0.38498895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (19.223639999391816471182848806 CZK)\nThe limits being 0.10 % (6.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36054354 BTC (180,705.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.85 % (50,326.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,227.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01021936 BTC (6,548.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017106 BTC for 109.61 CZK @ 640,788 CZK\nFees are 0.38498895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (19.223639999391816471182848806 CZK)\nThe limits being 0.10 % (6.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36054354 BTC (180,705.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.85 % (50,326.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,227.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01021936 BTC (6,548.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1663 transactions" + } + ] + }, + { + "id": 3226, + "type": "message", + "date": "2023-07-17T14:00:04", + "date_unixtime": "1689595204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017139 BTC for 109.61 CZK @ 639,541 CZK\nFees are 0.38498100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (19.186229999657247245353672438 CZK)\nThe limits being 0.10 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36071493 BTC (180,815.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.58 % (49,876.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,117.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01039075 BTC (6,645.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017139 BTC for 109.61 CZK @ 639,541 CZK\nFees are 0.38498100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (19.186229999657247245353672438 CZK)\nThe limits being 0.10 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36071493 BTC (180,815.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.58 % (49,876.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,117.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01039075 BTC (6,645.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1664 transactions" + } + ] + }, + { + "id": 3227, + "type": "message", + "date": "2023-07-17T18:00:04", + "date_unixtime": "1689609604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017148 BTC for 109.62 CZK @ 639,230 CZK\nFees are 0.38499610 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.569216673297296643924942431 CZK)\nThe limits being 0.10 % (6.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36088641 BTC (180,925.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.51 % (49,763.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,007.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01056223 BTC (6,751.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017148 BTC for 109.62 CZK @ 639,230 CZK\nFees are 0.38499610 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.569216673297296643924942431 CZK)\nThe limits being 0.10 % (6.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36088641 BTC (180,925.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.51 % (49,763.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,007.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01056223 BTC (6,751.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1665 transactions" + } + ] + }, + { + "id": 3228, + "type": "message", + "date": "2023-07-17T22:00:04", + "date_unixtime": "1689624004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017313 BTC for 109.61 CZK @ 633,112 CZK\nFees are 0.38498011 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (31.655599999435925626333363178 CZK)\nThe limits being 0.10 % (6.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36105954 BTC (181,035.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 633,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.27 % (47,555.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,897.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01073536 BTC (6,796.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.66 CZK over 1666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017313 BTC for 109.61 CZK @ 633,112 CZK\nFees are 0.38498011 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (31.655599999435925626333363178 CZK)\nThe limits being 0.10 % (6.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36105954 BTC (181,035.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 633,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.27 % (47,555.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,897.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01073536 BTC (6,796.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.66 CZK over 1666 transactions" + } + ] + }, + { + "id": 3229, + "type": "message", + "date": "2023-07-18T02:00:04", + "date_unixtime": "1689638404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017173 BTC for 109.61 CZK @ 638,274 CZK\nFees are 0.38498023 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (31.913676290091765526532638010 CZK)\nThe limits being 0.10 % (6.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36123127 BTC (181,145.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.28 % (49,418.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,787.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01090709 BTC (6,961.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017173 BTC for 109.61 CZK @ 638,274 CZK\nFees are 0.38498023 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (31.913676290091765526532638010 CZK)\nThe limits being 0.10 % (6.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36123127 BTC (181,145.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.28 % (49,418.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,787.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01090709 BTC (6,961.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1667 transactions" + } + ] + }, + { + "id": 3230, + "type": "message", + "date": "2023-07-18T06:00:05", + "date_unixtime": "1689652805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017222 BTC for 109.61 CZK @ 636,474 CZK\nFees are 0.38499020 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (31.823699999137845088352651678 CZK)\nThe limits being 0.10 % (7.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36140349 BTC (181,255.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.91 % (48,768.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,677.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01107931 BTC (7,051.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017222 BTC for 109.61 CZK @ 636,474 CZK\nFees are 0.38499020 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (31.823699999137845088352651678 CZK)\nThe limits being 0.10 % (7.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36140349 BTC (181,255.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.91 % (48,768.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,677.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01107931 BTC (7,051.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1668 transactions" + } + ] + }, + { + "id": 3231, + "type": "message", + "date": "2023-07-18T10:00:05", + "date_unixtime": "1689667205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017285 BTC for 109.61 CZK @ 634,148 CZK\nFees are 0.38498644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (19.024439998910380056841840369 CZK)\nThe limits being 0.10 % (7.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36157634 BTC (181,365.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 634,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.43 % (47,927.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,567.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01125216 BTC (7,135.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017285 BTC for 109.61 CZK @ 634,148 CZK\nFees are 0.38498644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (19.024439998910380056841840369 CZK)\nThe limits being 0.10 % (7.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36157634 BTC (181,365.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 634,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.43 % (47,927.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,567.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01125216 BTC (7,135.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1669 transactions" + } + ] + }, + { + "id": 3232, + "type": "message", + "date": "2023-07-18T14:00:05", + "date_unixtime": "1689681605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017322 BTC for 109.62 CZK @ 632,813 CZK\nFees are 0.38499833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (18.984389998703878303319745629 CZK)\nThe limits being 0.10 % (7.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36174956 BTC (181,475.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 632,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.14 % (47,444.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,457.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01142538 BTC (7,230.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017322 BTC for 109.62 CZK @ 632,813 CZK\nFees are 0.38499833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (18.984389998703878303319745629 CZK)\nThe limits being 0.10 % (7.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36174956 BTC (181,475.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 632,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.14 % (47,444.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,457.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01142538 BTC (7,230.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1670 transactions" + } + ] + }, + { + "id": 3233, + "type": "message", + "date": "2023-07-18T18:00:04", + "date_unixtime": "1689696004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017238 BTC for 109.61 CZK @ 635,886 CZK\nFees are 0.38499187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (31.794299999890162826672373576 CZK)\nThe limits being 0.10 % (7.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36192194 BTC (181,585.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.74 % (48,555.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,347.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01159776 BTC (7,374.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017238 BTC for 109.61 CZK @ 635,886 CZK\nFees are 0.38499187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (31.794299999890162826672373576 CZK)\nThe limits being 0.10 % (7.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36192194 BTC (181,585.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.74 % (48,555.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,347.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01159776 BTC (7,374.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1671 transactions" + } + ] + }, + { + "id": 3234, + "type": "message", + "date": "2023-07-18T22:00:04", + "date_unixtime": "1689710404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017329 BTC for 109.61 CZK @ 632,539 CZK\nFees are 0.38498715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (18.976169999726561512747969677 CZK)\nThe limits being 0.10 % (7.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36209523 BTC (181,695.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 632,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.06 % (47,343.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,237.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01177105 BTC (7,445.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017329 BTC for 109.61 CZK @ 632,539 CZK\nFees are 0.38498715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (18.976169999726561512747969677 CZK)\nThe limits being 0.10 % (7.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36209523 BTC (181,695.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 632,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.06 % (47,343.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,237.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01177105 BTC (7,445.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1672 transactions" + } + ] + }, + { + "id": 3235, + "type": "message", + "date": "2023-07-19T02:00:05", + "date_unixtime": "1689724805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017251 BTC for 109.61 CZK @ 635,404 CZK\nFees are 0.38499027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (31.770208484552515560791418199 CZK)\nThe limits being 0.10 % (7.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36226774 BTC (181,805.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.61 % (48,380.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,127.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01194356 BTC (7,588.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017251 BTC for 109.61 CZK @ 635,404 CZK\nFees are 0.38499027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (31.770208484552515560791418199 CZK)\nThe limits being 0.10 % (7.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36226774 BTC (181,805.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.61 % (48,380.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,127.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01194356 BTC (7,588.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1673 transactions" + } + ] + }, + { + "id": 3236, + "type": "message", + "date": "2023-07-19T06:00:04", + "date_unixtime": "1689739204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017161 BTC for 109.61 CZK @ 638,734 CZK\nFees are 0.38498876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (31.936699998231816519345625780 CZK)\nThe limits being 0.10 % (7.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36243935 BTC (181,915.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.26 % (49,586.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,017.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01211517 BTC (7,738.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017161 BTC for 109.61 CZK @ 638,734 CZK\nFees are 0.38498876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (31.936699998231816519345625780 CZK)\nThe limits being 0.10 % (7.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36243935 BTC (181,915.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.26 % (49,586.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,017.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01211517 BTC (7,738.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1674 transactions" + } + ] + }, + { + "id": 3237, + "type": "message", + "date": "2023-07-19T10:00:05", + "date_unixtime": "1689753605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017147 BTC for 109.61 CZK @ 639,259 CZK\nFees are 0.38499086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (19.177769999554542131640558565 CZK)\nThe limits being 0.10 % (7.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36261082 BTC (182,025.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 501,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.35 % (49,776.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 907.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01228664 BTC (7,854.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017147 BTC for 109.61 CZK @ 639,259 CZK\nFees are 0.38499086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (19.177769999554542131640558565 CZK)\nThe limits being 0.10 % (7.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36261082 BTC (182,025.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 501,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.35 % (49,776.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 907.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01228664 BTC (7,854.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1675 transactions" + } + ] + }, + { + "id": 3238, + "type": "message", + "date": "2023-07-19T14:00:05", + "date_unixtime": "1689768005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017081 BTC for 109.61 CZK @ 641,714 CZK\nFees are 0.38498183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (19.251419998391555438524732548 CZK)\nThe limits being 0.10 % (7.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36278163 BTC (182,135.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.82 % (50,666.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 797.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01245745 BTC (7,994.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017081 BTC for 109.61 CZK @ 641,714 CZK\nFees are 0.38498183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (19.251419998391555438524732548 CZK)\nThe limits being 0.10 % (7.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36278163 BTC (182,135.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.82 % (50,666.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 797.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01245745 BTC (7,994.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1676 transactions" + } + ] + }, + { + "id": 3239, + "type": "message", + "date": "2023-07-19T18:00:08", + "date_unixtime": "1689782408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017127 BTC for 109.61 CZK @ 639,999 CZK\nFees are 0.38498696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (12.799979999935416094466354971 CZK)\nThe limits being 0.10 % (8.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36295290 BTC (182,245.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.46 % (50,043.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 687.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01262872 BTC (8,082.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017127 BTC for 109.61 CZK @ 639,999 CZK\nFees are 0.38498696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (12.799979999935416094466354971 CZK)\nThe limits being 0.10 % (8.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36295290 BTC (182,245.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.46 % (50,043.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 687.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01262872 BTC (8,082.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1677 transactions" + } + ] + }, + { + "id": 3240, + "type": "message", + "date": "2023-07-19T22:00:05", + "date_unixtime": "1689796805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017060 BTC for 109.61 CZK @ 642,512 CZK\nFees are 0.38498667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (32.125599998481282685279131480 CZK)\nThe limits being 0.10 % (8.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36312350 BTC (182,355.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.94 % (50,955.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 577.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01279932 BTC (8,223.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017060 BTC for 109.61 CZK @ 642,512 CZK\nFees are 0.38498667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (32.125599998481282685279131480 CZK)\nThe limits being 0.10 % (8.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36312350 BTC (182,355.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.94 % (50,955.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 577.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01279932 BTC (8,223.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1678 transactions" + } + ] + }, + { + "id": 3241, + "type": "message", + "date": "2023-07-20T02:00:05", + "date_unixtime": "1689811205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017130 BTC for 109.62 CZK @ 639,904 CZK\nFees are 0.38499723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (19.197119999441534314662254788 CZK)\nThe limits being 0.10 % (8.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36329480 BTC (182,465.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.41 % (50,008.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 467.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01297062 BTC (8,299.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017130 BTC for 109.62 CZK @ 639,904 CZK\nFees are 0.38499723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (19.197119999441534314662254788 CZK)\nThe limits being 0.10 % (8.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36329480 BTC (182,465.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.41 % (50,008.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 467.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01297062 BTC (8,299.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1679 transactions" + } + ] + }, + { + "id": 3242, + "type": "message", + "date": "2023-07-20T06:00:05", + "date_unixtime": "1689825605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017130 BTC for 109.62 CZK @ 639,904 CZK\nFees are 0.38499723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (25.596159999255379086216339718 CZK)\nThe limits being 0.10 % (8.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36346610 BTC (182,575.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.39 % (50,007.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 357.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01314192 BTC (8,409.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017130 BTC for 109.62 CZK @ 639,904 CZK\nFees are 0.38499723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (25.596159999255379086216339718 CZK)\nThe limits being 0.10 % (8.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36346610 BTC (182,575.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.39 % (50,007.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 357.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01314192 BTC (8,409.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1680 transactions" + } + ] + }, + { + "id": 3243, + "type": "message", + "date": "2023-07-20T10:00:05", + "date_unixtime": "1689840005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016978 BTC for 109.61 CZK @ 645,612 CZK\nFees are 0.38498477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (19.368359998457513204901938515 CZK)\nThe limits being 0.10 % (8.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36363588 BTC (182,685.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.51 % (52,082.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 247.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01331170 BTC (8,594.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016978 BTC for 109.61 CZK @ 645,612 CZK\nFees are 0.38498477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (19.368359998457513204901938515 CZK)\nThe limits being 0.10 % (8.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36363588 BTC (182,685.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.51 % (52,082.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 247.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01331170 BTC (8,594.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1681 transactions" + } + ] + }, + { + "id": 3244, + "type": "message", + "date": "2023-07-20T14:00:06", + "date_unixtime": "1689854406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016899 BTC for 109.61 CZK @ 648,620 CZK\nFees are 0.38497875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (38.917199997063358309824720526 CZK)\nThe limits being 0.10 % (8.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36380487 BTC (182,795.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.09 % (53,175.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 137.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01348069 BTC (8,743.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016899 BTC for 109.61 CZK @ 648,620 CZK\nFees are 0.38497875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (38.917199997063358309824720526 CZK)\nThe limits being 0.10 % (8.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36380487 BTC (182,795.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.09 % (53,175.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 137.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01348069 BTC (8,743.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1682 transactions" + } + ] + }, + { + "id": 3245, + "type": "message", + "date": "2023-07-20T18:00:04", + "date_unixtime": "1689868804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017052 BTC for 109.61 CZK @ 642,824 CZK\nFees are 0.38499300 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (38.569439996605827527650408652 CZK)\nThe limits being 0.10 % (8.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36397539 BTC (182,905.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.92 % (51,066.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01365121 BTC (8,775.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017052 BTC for 109.61 CZK @ 642,824 CZK\nFees are 0.38499300 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (38.569439996605827527650408652 CZK)\nThe limits being 0.10 % (8.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36397539 BTC (182,905.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.92 % (51,066.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01365121 BTC (8,775.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1683 transactions" + } + ] + }, + { + "id": 3246, + "type": "message", + "date": "2023-07-20T22:00:00", + "date_unixtime": "1689883200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3247, + "type": "message", + "date": "2023-07-21T02:00:01", + "date_unixtime": "1689897601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3248, + "type": "message", + "date": "2023-07-21T06:00:01", + "date_unixtime": "1689912001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3249, + "type": "message", + "date": "2023-07-21T10:00:01", + "date_unixtime": "1689926401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3250, + "type": "message", + "date": "2023-07-21T14:00:01", + "date_unixtime": "1689940801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3251, + "type": "message", + "date": "2023-07-21T18:00:01", + "date_unixtime": "1689955201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3252, + "type": "message", + "date": "2023-07-21T22:00:01", + "date_unixtime": "1689969601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3253, + "type": "message", + "date": "2023-07-22T02:00:01", + "date_unixtime": "1689984001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3254, + "type": "message", + "date": "2023-07-22T06:00:01", + "date_unixtime": "1689998401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3255, + "type": "message", + "date": "2023-07-22T10:00:01", + "date_unixtime": "1690012801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3256, + "type": "message", + "date": "2023-07-22T14:00:01", + "date_unixtime": "1690027201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3257, + "type": "message", + "date": "2023-07-22T18:00:01", + "date_unixtime": "1690041601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3258, + "type": "message", + "date": "2023-07-22T22:00:01", + "date_unixtime": "1690056001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3259, + "type": "message", + "date": "2023-07-23T02:00:01", + "date_unixtime": "1690070401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3260, + "type": "message", + "date": "2023-07-23T06:00:01", + "date_unixtime": "1690084801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3261, + "type": "message", + "date": "2023-07-23T10:00:01", + "date_unixtime": "1690099201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3262, + "type": "message", + "date": "2023-07-23T14:00:01", + "date_unixtime": "1690113601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3263, + "type": "message", + "date": "2023-07-23T18:00:01", + "date_unixtime": "1690128001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3264, + "type": "message", + "date": "2023-07-23T22:00:01", + "date_unixtime": "1690142401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3265, + "type": "message", + "date": "2023-07-24T02:00:01", + "date_unixtime": "1690156801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3266, + "type": "message", + "date": "2023-07-24T06:00:01", + "date_unixtime": "1690171201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.39943520 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3267, + "type": "message", + "date": "2023-07-24T10:00:04", + "date_unixtime": "1690185604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00016905 BTC for 109.61 CZK @ 648,393 CZK\nFees are 0.38498066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (19.451789998536621381508995358 CZK)\nThe limits being 0.10 % (8.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36414444 BTC (183,015.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.01 % (53,093.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,917.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01382026 BTC (8,960.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00016905 BTC for 109.61 CZK @ 648,393 CZK\nFees are 0.38498066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (19.451789998536621381508995358 CZK)\nThe limits being 0.10 % (8.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36414444 BTC (183,015.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.01 % (53,093.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,917.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01382026 BTC (8,960.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1684 transactions" + } + ] + }, + { + "id": 3268, + "type": "message", + "date": "2023-07-24T14:00:04", + "date_unixtime": "1690200004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017172 BTC for 109.61 CZK @ 638,319 CZK\nFees are 0.38498523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.149569999063376017621065613 CZK)\nThe limits being 0.10 % (8.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36431616 BTC (183,125.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.99 % (49,424.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,807.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01399198 BTC (8,931.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017172 BTC for 109.61 CZK @ 638,319 CZK\nFees are 0.38498523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.149569999063376017621065613 CZK)\nThe limits being 0.10 % (8.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36431616 BTC (183,125.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.99 % (49,424.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,807.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01399198 BTC (8,931.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1685 transactions" + } + ] + }, + { + "id": 3269, + "type": "message", + "date": "2023-07-24T18:00:04", + "date_unixtime": "1690214404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017284 BTC for 109.61 CZK @ 634,199 CZK\nFees are 0.38499513 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.025969999470725407152263997 CZK)\nThe limits being 0.10 % (8.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36448900 BTC (183,235.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 634,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.15 % (47,923.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,697.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01416482 BTC (8,983.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017284 BTC for 109.61 CZK @ 634,199 CZK\nFees are 0.38499513 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.025969999470725407152263997 CZK)\nThe limits being 0.10 % (8.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36448900 BTC (183,235.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 634,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.15 % (47,923.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,697.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01416482 BTC (8,983.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1686 transactions" + } + ] + }, + { + "id": 3270, + "type": "message", + "date": "2023-07-24T22:00:05", + "date_unixtime": "1690228805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017245 BTC for 109.61 CZK @ 635,619 CZK\nFees are 0.38498649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.068569998626148000698627578 CZK)\nThe limits being 0.10 % (9.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36466145 BTC (183,345.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.42 % (48,440.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,587.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01433727 BTC (9,113.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017245 BTC for 109.61 CZK @ 635,619 CZK\nFees are 0.38498649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.068569998626148000698627578 CZK)\nThe limits being 0.10 % (9.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36466145 BTC (183,345.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.42 % (48,440.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,587.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01433727 BTC (9,113.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1687 transactions" + } + ] + }, + { + "id": 3271, + "type": "message", + "date": "2023-07-25T02:00:09", + "date_unixtime": "1690243209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017208 BTC for 109.61 CZK @ 637,000 CZK\nFees are 0.38499514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.11000 CZK)\nThe limits being 0.10 % (9.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36483353 BTC (183,455.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.68 % (48,943.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,477.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01450935 BTC (9,242.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017208 BTC for 109.61 CZK @ 637,000 CZK\nFees are 0.38499514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (19.11000 CZK)\nThe limits being 0.10 % (9.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36483353 BTC (183,455.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.68 % (48,943.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,477.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01450935 BTC (9,242.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1688 transactions" + } + ] + }, + { + "id": 3272, + "type": "message", + "date": "2023-07-25T06:00:06", + "date_unixtime": "1690257606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017265 BTC for 109.61 CZK @ 634,892 CZK\nFees are 0.38499214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.046759999428585528409039258 CZK)\nThe limits being 0.10 % (9.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36500618 BTC (183,565.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 634,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.24 % (48,173.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,367.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01468200 BTC (9,321.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017265 BTC for 109.61 CZK @ 634,892 CZK\nFees are 0.38499214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.046759999428585528409039258 CZK)\nThe limits being 0.10 % (9.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36500618 BTC (183,565.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 634,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.24 % (48,173.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,367.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01468200 BTC (9,321.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1689 transactions" + } + ] + }, + { + "id": 3273, + "type": "message", + "date": "2023-07-25T10:00:06", + "date_unixtime": "1690272006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017250 BTC for 109.61 CZK @ 635,425 CZK\nFees are 0.38498058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.062749999350100734386170144 CZK)\nThe limits being 0.10 % (9.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36517868 BTC (183,675.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 502,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.33 % (48,368.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,257.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01485450 BTC (9,438.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017250 BTC for 109.61 CZK @ 635,425 CZK\nFees are 0.38498058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.062749999350100734386170144 CZK)\nThe limits being 0.10 % (9.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36517868 BTC (183,675.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 502,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.33 % (48,368.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,257.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01485450 BTC (9,438.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1690 transactions" + } + ] + }, + { + "id": 3274, + "type": "message", + "date": "2023-07-25T14:00:06", + "date_unixtime": "1690286406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017275 BTC for 109.61 CZK @ 634,526 CZK\nFees are 0.38499306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.035779999524096919825473361 CZK)\nThe limits being 0.10 % (9.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36535143 BTC (183,785.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 634,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.14 % (48,039.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,147.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01502725 BTC (9,535.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1691 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017275 BTC for 109.61 CZK @ 634,526 CZK\nFees are 0.38499306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.035779999524096919825473361 CZK)\nThe limits being 0.10 % (9.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36535143 BTC (183,785.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 634,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.14 % (48,039.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,147.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01502725 BTC (9,535.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1691 transactions" + } + ] + }, + { + "id": 3275, + "type": "message", + "date": "2023-07-25T18:00:07", + "date_unixtime": "1690300807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017189 BTC for 109.61 CZK @ 637,682 CZK\nFees are 0.38498179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.130459998881684770590153034 CZK)\nThe limits being 0.10 % (9.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36552332 BTC (183,895.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.75 % (49,192.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,037.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01519914 BTC (9,692.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1692 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017189 BTC for 109.61 CZK @ 637,682 CZK\nFees are 0.38498179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (19.130459998881684770590153034 CZK)\nThe limits being 0.10 % (9.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36552332 BTC (183,895.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.75 % (49,192.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,037.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01519914 BTC (9,692.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1692 transactions" + } + ] + }, + { + "id": 3276, + "type": "message", + "date": "2023-07-25T22:00:08", + "date_unixtime": "1690315208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017175 BTC for 109.61 CZK @ 638,221 CZK\nFees are 0.38499338 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (31.911049997497840527585764236 CZK)\nThe limits being 0.10 % (9.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36569507 BTC (184,005.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.84 % (49,388.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,927.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01537089 BTC (9,810.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1693 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017175 BTC for 109.61 CZK @ 638,221 CZK\nFees are 0.38499338 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (31.911049997497840527585764236 CZK)\nThe limits being 0.10 % (9.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36569507 BTC (184,005.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.84 % (49,388.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,927.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01537089 BTC (9,810.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1693 transactions" + } + ] + }, + { + "id": 3277, + "type": "message", + "date": "2023-07-26T02:00:08", + "date_unixtime": "1690329608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017230 BTC for 109.62 CZK @ 636,194 CZK\nFees are 0.38499959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (31.809699999508395022528521042 CZK)\nThe limits being 0.10 % (9.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36586737 BTC (184,115.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.42 % (48,647.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,817.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01554319 BTC (9,888.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1694 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017230 BTC for 109.62 CZK @ 636,194 CZK\nFees are 0.38499959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (31.809699999508395022528521042 CZK)\nThe limits being 0.10 % (9.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36586737 BTC (184,115.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.42 % (48,647.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,817.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01554319 BTC (9,888.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1694 transactions" + } + ] + }, + { + "id": 3278, + "type": "message", + "date": "2023-07-26T06:00:06", + "date_unixtime": "1690344006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017198 BTC for 109.61 CZK @ 637,363 CZK\nFees are 0.38499068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (25.494519999863253354508203726 CZK)\nThe limits being 0.10 % (10.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36603935 BTC (184,225.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.64 % (49,074.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,707.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01571517 BTC (10,016.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1695 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017198 BTC for 109.61 CZK @ 637,363 CZK\nFees are 0.38499068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (25.494519999863253354508203726 CZK)\nThe limits being 0.10 % (10.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36603935 BTC (184,225.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.64 % (49,074.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,707.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01571517 BTC (10,016.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1695 transactions" + } + ] + }, + { + "id": 3279, + "type": "message", + "date": "2023-07-26T10:00:06", + "date_unixtime": "1690358406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017242 BTC for 109.61 CZK @ 635,734 CZK\nFees are 0.38498916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (19.072019998789759562676670396 CZK)\nThe limits being 0.10 % (10.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36621177 BTC (184,335.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.30 % (48,477.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,597.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01588759 BTC (10,100.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1696 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017242 BTC for 109.61 CZK @ 635,734 CZK\nFees are 0.38498916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (19.072019998789759562676670396 CZK)\nThe limits being 0.10 % (10.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36621177 BTC (184,335.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.30 % (48,477.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,597.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01588759 BTC (10,100.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1696 transactions" + } + ] + }, + { + "id": 3280, + "type": "message", + "date": "2023-07-26T14:00:07", + "date_unixtime": "1690372807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017261 BTC for 109.61 CZK @ 635,025 CZK\nFees are 0.38498357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (19.050749998549483273983384786 CZK)\nThe limits being 0.10 % (10.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36638438 BTC (184,445.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.14 % (48,217.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,487.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01606020 BTC (10,198.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1697 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017261 BTC for 109.61 CZK @ 635,025 CZK\nFees are 0.38498357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (19.050749998549483273983384786 CZK)\nThe limits being 0.10 % (10.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36638438 BTC (184,445.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.14 % (48,217.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,487.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01606020 BTC (10,198.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1697 transactions" + } + ] + }, + { + "id": 3281, + "type": "message", + "date": "2023-07-26T18:00:06", + "date_unixtime": "1690387206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017224 BTC for 109.61 CZK @ 636,382 CZK\nFees are 0.38497925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (19.091459999152987766227400568 CZK)\nThe limits being 0.10 % (10.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36655662 BTC (184,555.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.40 % (48,714.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,377.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01623244 BTC (10,330.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1698 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017224 BTC for 109.61 CZK @ 636,382 CZK\nFees are 0.38497925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (19.091459999152987766227400568 CZK)\nThe limits being 0.10 % (10.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36655662 BTC (184,555.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.40 % (48,714.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,377.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01623244 BTC (10,330.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1698 transactions" + } + ] + }, + { + "id": 3282, + "type": "message", + "date": "2023-07-26T22:00:06", + "date_unixtime": "1690401606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017226 BTC for 109.61 CZK @ 636,329 CZK\nFees are 0.38499189 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (19.08986999871748080603294252 CZK)\nThe limits being 0.10 % (10.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36672888 BTC (184,665.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.37 % (48,694.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,267.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01640470 BTC (10,438.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1699 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017226 BTC for 109.61 CZK @ 636,329 CZK\nFees are 0.38499189 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (19.08986999871748080603294252 CZK)\nThe limits being 0.10 % (10.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36672888 BTC (184,665.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.37 % (48,694.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,267.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01640470 BTC (10,438.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1699 transactions" + } + ] + }, + { + "id": 3283, + "type": "message", + "date": "2023-07-27T02:00:06", + "date_unixtime": "1690416006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017233 BTC for 109.61 CZK @ 636,061 CZK\nFees are 0.38498612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.803049999290188165479314826 CZK)\nThe limits being 0.10 % (10.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36690121 BTC (184,775.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.30 % (48,596.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,157.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01657703 BTC (10,544.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1700 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017233 BTC for 109.61 CZK @ 636,061 CZK\nFees are 0.38498612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.803049999290188165479314826 CZK)\nThe limits being 0.10 % (10.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36690121 BTC (184,775.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.30 % (48,596.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,157.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01657703 BTC (10,544.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1700 transactions" + } + ] + }, + { + "id": 3284, + "type": "message", + "date": "2023-07-27T06:00:06", + "date_unixtime": "1690430406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017217 BTC for 109.62 CZK @ 636,675 CZK\nFees are 0.38499997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.833749999529728658645197752 CZK)\nThe limits being 0.10 % (10.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36707338 BTC (184,885.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.41 % (48,820.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,047.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01674920 BTC (10,663.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1701 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017217 BTC for 109.62 CZK @ 636,675 CZK\nFees are 0.38499997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.833749999529728658645197752 CZK)\nThe limits being 0.10 % (10.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36707338 BTC (184,885.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.41 % (48,820.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,047.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01674920 BTC (10,663.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1701 transactions" + } + ] + }, + { + "id": 3285, + "type": "message", + "date": "2023-07-27T10:00:05", + "date_unixtime": "1690444805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017216 BTC for 109.62 CZK @ 636,705 CZK\nFees are 0.38499575 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.835249998610810119970438040 CZK)\nThe limits being 0.10 % (10.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36724554 BTC (184,995.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.40 % (48,831.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,937.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01692136 BTC (10,773.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1702 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017216 BTC for 109.62 CZK @ 636,705 CZK\nFees are 0.38499575 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.835249998610810119970438040 CZK)\nThe limits being 0.10 % (10.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36724554 BTC (184,995.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.40 % (48,831.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,937.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01692136 BTC (10,773.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1702 transactions" + } + ] + }, + { + "id": 3286, + "type": "message", + "date": "2023-07-27T14:00:07", + "date_unixtime": "1690459207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017173 BTC for 109.61 CZK @ 638,294 CZK\nFees are 0.38499257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (19.148819999970405798304896352 CZK)\nThe limits being 0.10 % (10.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36741727 BTC (185,105.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.70 % (49,414.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,827.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01709309 BTC (10,910.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1703 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017173 BTC for 109.61 CZK @ 638,294 CZK\nFees are 0.38499257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (19.148819999970405798304896352 CZK)\nThe limits being 0.10 % (10.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36741727 BTC (185,105.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.70 % (49,414.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,827.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01709309 BTC (10,910.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1703 transactions" + } + ] + }, + { + "id": 3287, + "type": "message", + "date": "2023-07-27T18:00:07", + "date_unixtime": "1690473607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017093 BTC for 109.61 CZK @ 641,260 CZK\nFees are 0.38497973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (32.062999999621053685878166252 CZK)\nThe limits being 0.10 % (11.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36758820 BTC (185,215.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.27 % (50,504.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,717.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01726402 BTC (11,070.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.69 CZK over 1704 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017093 BTC for 109.61 CZK @ 641,260 CZK\nFees are 0.38497973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (32.062999999621053685878166252 CZK)\nThe limits being 0.10 % (11.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36758820 BTC (185,215.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.27 % (50,504.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,717.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01726402 BTC (11,070.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.69 CZK over 1704 transactions" + } + ] + }, + { + "id": 3288, + "type": "message", + "date": "2023-07-27T22:00:05", + "date_unixtime": "1690488005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017140 BTC for 109.61 CZK @ 639,504 CZK\nFees are 0.38498118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (31.975199997209300703081804116 CZK)\nThe limits being 0.10 % (11.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36775960 BTC (185,325.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.90 % (49,858.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,607.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01743542 BTC (11,150.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1705 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017140 BTC for 109.61 CZK @ 639,504 CZK\nFees are 0.38498118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (31.975199997209300703081804116 CZK)\nThe limits being 0.10 % (11.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36775960 BTC (185,325.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.90 % (49,858.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,607.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01743542 BTC (11,150.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1705 transactions" + } + ] + }, + { + "id": 3289, + "type": "message", + "date": "2023-07-28T02:00:07", + "date_unixtime": "1690502407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017118 BTC for 109.61 CZK @ 640,339 CZK\nFees are 0.38498907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (32.016949998524267761747308886 CZK)\nThe limits being 0.10 % (11.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36793078 BTC (185,435.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 503,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.05 % (50,164.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,497.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01760660 BTC (11,274.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1706 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017118 BTC for 109.61 CZK @ 640,339 CZK\nFees are 0.38498907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (32.016949998524267761747308886 CZK)\nThe limits being 0.10 % (11.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36793078 BTC (185,435.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 503,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.05 % (50,164.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,497.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01760660 BTC (11,274.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1706 transactions" + } + ] + }, + { + "id": 3290, + "type": "message", + "date": "2023-07-28T06:00:07", + "date_unixtime": "1690516807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017076 BTC for 109.61 CZK @ 641,916 CZK\nFees are 0.38499028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (32.095799998085874888814424754 CZK)\nThe limits being 0.10 % (11.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36810154 BTC (185,545.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.35 % (50,744.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,387.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01777736 BTC (11,411.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1707 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017076 BTC for 109.61 CZK @ 641,916 CZK\nFees are 0.38499028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (32.095799998085874888814424754 CZK)\nThe limits being 0.10 % (11.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36810154 BTC (185,545.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.35 % (50,744.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,387.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01777736 BTC (11,411.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1707 transactions" + } + ] + }, + { + "id": 3291, + "type": "message", + "date": "2023-07-28T10:00:06", + "date_unixtime": "1690531206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017098 BTC for 109.61 CZK @ 641,097 CZK\nFees are 0.38499446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (19.232909998651928450446830642 CZK)\nThe limits being 0.10 % (11.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36827252 BTC (185,655.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.17 % (50,442.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,277.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01794834 BTC (11,506.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1708 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017098 BTC for 109.61 CZK @ 641,097 CZK\nFees are 0.38499446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (19.232909998651928450446830642 CZK)\nThe limits being 0.10 % (11.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36827252 BTC (185,655.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.17 % (50,442.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,277.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01794834 BTC (11,506.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1708 transactions" + } + ] + }, + { + "id": 3292, + "type": "message", + "date": "2023-07-28T14:00:07", + "date_unixtime": "1690545607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017149 BTC for 109.61 CZK @ 639,191 CZK\nFees are 0.38499481 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (19.175729998942705719787728779 CZK)\nThe limits being 0.10 % (11.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36844401 BTC (185,765.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.78 % (49,740.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,167.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01811983 BTC (11,582.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1709 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017149 BTC for 109.61 CZK @ 639,191 CZK\nFees are 0.38499481 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (19.175729998942705719787728779 CZK)\nThe limits being 0.10 % (11.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36844401 BTC (185,765.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.78 % (49,740.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,167.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01811983 BTC (11,582.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1709 transactions" + } + ] + }, + { + "id": 3293, + "type": "message", + "date": "2023-07-28T18:00:07", + "date_unixtime": "1690560007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017129 BTC for 109.62 CZK @ 639,943 CZK\nFees are 0.38499822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.997149997776187802961687338 CZK)\nThe limits being 0.10 % (11.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36861530 BTC (185,875.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.91 % (50,017.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,057.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01829112 BTC (11,705.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1710 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017129 BTC for 109.62 CZK @ 639,943 CZK\nFees are 0.38499822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.997149997776187802961687338 CZK)\nThe limits being 0.10 % (11.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36861530 BTC (185,875.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.91 % (50,017.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,057.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01829112 BTC (11,705.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1710 transactions" + } + ] + }, + { + "id": 3294, + "type": "message", + "date": "2023-07-28T22:00:07", + "date_unixtime": "1690574407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017166 BTC for 109.61 CZK @ 638,535 CZK\nFees are 0.38498095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.926749999027637220561078286 CZK)\nThe limits being 0.10 % (11.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36878696 BTC (185,985.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.61 % (49,497.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,947.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01846278 BTC (11,789.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1711 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017166 BTC for 109.61 CZK @ 638,535 CZK\nFees are 0.38498095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.926749999027637220561078286 CZK)\nThe limits being 0.10 % (11.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36878696 BTC (185,985.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.61 % (49,497.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,947.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01846278 BTC (11,789.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1711 transactions" + } + ] + }, + { + "id": 3295, + "type": "message", + "date": "2023-07-29T02:00:06", + "date_unixtime": "1690588806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017157 BTC for 109.61 CZK @ 638,873 CZK\nFees are 0.38498278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.943649999379975064833263096 CZK)\nThe limits being 0.10 % (11.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36895853 BTC (186,095.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.66 % (49,622.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,837.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01863435 BTC (11,904.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1712 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017157 BTC for 109.61 CZK @ 638,873 CZK\nFees are 0.38498278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.943649999379975064833263096 CZK)\nThe limits being 0.10 % (11.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36895853 BTC (186,095.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.66 % (49,622.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,837.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01863435 BTC (11,904.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1712 transactions" + } + ] + }, + { + "id": 3296, + "type": "message", + "date": "2023-07-29T06:00:07", + "date_unixtime": "1690603207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017121 BTC for 109.62 CZK @ 640,241 CZK\nFees are 0.38499761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (32.012049998360099793238704544 CZK)\nThe limits being 0.10 % (12.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36912974 BTC (186,205.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.92 % (50,126.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,727.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01880556 BTC (12,040.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1713 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017121 BTC for 109.62 CZK @ 640,241 CZK\nFees are 0.38499761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (32.012049998360099793238704544 CZK)\nThe limits being 0.10 % (12.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36912974 BTC (186,205.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.92 % (50,126.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,727.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01880556 BTC (12,040.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1713 transactions" + } + ] + }, + { + "id": 3297, + "type": "message", + "date": "2023-07-29T10:00:06", + "date_unixtime": "1690617606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017156 BTC for 109.61 CZK @ 638,922 CZK\nFees are 0.38498987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (19.167659999282065115299993970 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36930130 BTC (186,315.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.64 % (49,639.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,617.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01897712 BTC (12,124.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1714 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017156 BTC for 109.61 CZK @ 638,922 CZK\nFees are 0.38498987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (19.167659999282065115299993970 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36930130 BTC (186,315.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.64 % (49,639.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,617.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01897712 BTC (12,124.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1714 transactions" + } + ] + }, + { + "id": 3298, + "type": "message", + "date": "2023-07-29T14:00:05", + "date_unixtime": "1690632005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017173 BTC for 109.61 CZK @ 638,272 CZK\nFees are 0.38497930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (19.148159998788378565894580056 CZK)\nThe limits being 0.10 % (12.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36947303 BTC (186,425.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.50 % (49,398.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,507.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01914885 BTC (12,222.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1715 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017173 BTC for 109.61 CZK @ 638,272 CZK\nFees are 0.38497930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (19.148159998788378565894580056 CZK)\nThe limits being 0.10 % (12.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36947303 BTC (186,425.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.50 % (49,398.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,507.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01914885 BTC (12,222.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1715 transactions" + } + ] + }, + { + "id": 3299, + "type": "message", + "date": "2023-07-29T18:00:06", + "date_unixtime": "1690646406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017148 BTC for 109.61 CZK @ 639,210 CZK\nFees are 0.38498380 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (25.568399998186891715245765085 CZK)\nThe limits being 0.10 % (12.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36964451 BTC (186,535.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.67 % (49,745.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,397.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01932033 BTC (12,349.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1716 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017148 BTC for 109.61 CZK @ 639,210 CZK\nFees are 0.38498380 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (25.568399998186891715245765085 CZK)\nThe limits being 0.10 % (12.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36964451 BTC (186,535.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.67 % (49,745.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,397.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01932033 BTC (12,349.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1716 transactions" + } + ] + }, + { + "id": 3300, + "type": "message", + "date": "2023-07-29T22:00:06", + "date_unixtime": "1690660806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017149 BTC for 109.61 CZK @ 639,186 CZK\nFees are 0.38499180 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (31.959299998550179044171686346 CZK)\nThe limits being 0.10 % (12.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36981600 BTC (186,645.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.65 % (49,735.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,287.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01949182 BTC (12,458.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1717 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017149 BTC for 109.61 CZK @ 639,186 CZK\nFees are 0.38499180 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (31.959299998550179044171686346 CZK)\nThe limits being 0.10 % (12.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36981600 BTC (186,645.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.65 % (49,735.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,287.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01949182 BTC (12,458.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1717 transactions" + } + ] + }, + { + "id": 3301, + "type": "message", + "date": "2023-07-30T02:00:08", + "date_unixtime": "1690675208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017115 BTC for 109.61 CZK @ 640,437 CZK\nFees are 0.38498051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (32.021849998857344313890573760 CZK)\nThe limits being 0.10 % (12.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.36998715 BTC (186,755.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.88 % (50,198.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,177.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01966297 BTC (12,592.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1718 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017115 BTC for 109.61 CZK @ 640,437 CZK\nFees are 0.38498051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (32.021849998857344313890573760 CZK)\nThe limits being 0.10 % (12.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.36998715 BTC (186,755.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.88 % (50,198.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,177.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01966297 BTC (12,592.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1718 transactions" + } + ] + }, + { + "id": 3302, + "type": "message", + "date": "2023-07-30T06:00:07", + "date_unixtime": "1690689607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017139 BTC for 109.62 CZK @ 639,570 CZK\nFees are 0.38499845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (31.978499997659745822813454735 CZK)\nThe limits being 0.10 % (12.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37015854 BTC (186,865.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.69 % (49,876.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,067.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01983436 BTC (12,685.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1719 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017139 BTC for 109.62 CZK @ 639,570 CZK\nFees are 0.38499845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (31.978499997659745822813454735 CZK)\nThe limits being 0.10 % (12.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37015854 BTC (186,865.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.69 % (49,876.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,067.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01983436 BTC (12,685.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1719 transactions" + } + ] + }, + { + "id": 3303, + "type": "message", + "date": "2023-07-30T10:00:06", + "date_unixtime": "1690704006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017156 BTC for 109.61 CZK @ 638,923 CZK\nFees are 0.38499047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (25.556919998935876449214877794 CZK)\nThe limits being 0.10 % (12.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37033010 BTC (186,975.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.55 % (49,636.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 957.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02000592 BTC (12,782.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1720 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017156 BTC for 109.61 CZK @ 638,923 CZK\nFees are 0.38499047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (25.556919998935876449214877794 CZK)\nThe limits being 0.10 % (12.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37033010 BTC (186,975.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.55 % (49,636.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 957.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02000592 BTC (12,782.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1720 transactions" + } + ] + }, + { + "id": 3304, + "type": "message", + "date": "2023-07-30T14:00:07", + "date_unixtime": "1690718407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017154 BTC for 109.61 CZK @ 638,993 CZK\nFees are 0.38498776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (19.169789998733010887218275734 CZK)\nThe limits being 0.10 % (12.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37050164 BTC (187,085.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 504,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.55 % (49,662.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 847.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02017746 BTC (12,893.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1721 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017154 BTC for 109.61 CZK @ 638,993 CZK\nFees are 0.38498776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (19.169789998733010887218275734 CZK)\nThe limits being 0.10 % (12.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37050164 BTC (187,085.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 504,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.55 % (49,662.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 847.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02017746 BTC (12,893.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1721 transactions" + } + ] + }, + { + "id": 3305, + "type": "message", + "date": "2023-07-30T18:00:06", + "date_unixtime": "1690732806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017115 BTC for 109.61 CZK @ 640,438 CZK\nFees are 0.38498111 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (19.213139999484713231996513518 CZK)\nThe limits being 0.10 % (13.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37067279 BTC (187,195.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.82 % (50,197.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 737.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02034861 BTC (13,032.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1722 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017115 BTC for 109.61 CZK @ 640,438 CZK\nFees are 0.38498111 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (19.213139999484713231996513518 CZK)\nThe limits being 0.10 % (13.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37067279 BTC (187,195.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.82 % (50,197.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 737.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02034861 BTC (13,032.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1722 transactions" + } + ] + }, + { + "id": 3306, + "type": "message", + "date": "2023-07-30T22:00:07", + "date_unixtime": "1690747207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017211 BTC for 109.61 CZK @ 636,876 CZK\nFees are 0.38498724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (19.106276652945299782641528574 CZK)\nThe limits being 0.10 % (13.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37084490 BTC (187,305.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.09 % (48,876.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 627.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02052072 BTC (13,069.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1723 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017211 BTC for 109.61 CZK @ 636,876 CZK\nFees are 0.38498724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (19.106276652945299782641528574 CZK)\nThe limits being 0.10 % (13.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37084490 BTC (187,305.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.09 % (48,876.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 627.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02052072 BTC (13,069.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1723 transactions" + } + ] + }, + { + "id": 3307, + "type": "message", + "date": "2023-07-31T02:00:08", + "date_unixtime": "1690761608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017168 BTC for 109.61 CZK @ 638,466 CZK\nFees are 0.38498420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.153979999986069260848911382 CZK)\nThe limits being 0.10 % (13.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37101658 BTC (187,415.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.39 % (49,466.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 517.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02069240 BTC (13,211.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1724 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017168 BTC for 109.61 CZK @ 638,466 CZK\nFees are 0.38498420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.153979999986069260848911382 CZK)\nThe limits being 0.10 % (13.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37101658 BTC (187,415.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.39 % (49,466.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 517.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02069240 BTC (13,211.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1724 transactions" + } + ] + }, + { + "id": 3308, + "type": "message", + "date": "2023-07-31T06:00:06", + "date_unixtime": "1690776006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017075 BTC for 109.61 CZK @ 641,953 CZK\nFees are 0.38498993 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.258589999715490658245190150 CZK)\nThe limits being 0.10 % (13.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37118733 BTC (187,525.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.07 % (50,759.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 407.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02086315 BTC (13,393.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1725 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017075 BTC for 109.61 CZK @ 641,953 CZK\nFees are 0.38498993 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.258589999715490658245190150 CZK)\nThe limits being 0.10 % (13.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37118733 BTC (187,525.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.07 % (50,759.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 407.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02086315 BTC (13,393.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1725 transactions" + } + ] + }, + { + "id": 3309, + "type": "message", + "date": "2023-07-31T10:00:06", + "date_unixtime": "1690790406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017142 BTC for 109.62 CZK @ 639,454 CZK\nFees are 0.38499600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.183619998887338487502352198 CZK)\nThe limits being 0.10 % (13.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37135875 BTC (187,635.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.56 % (49,831.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 297.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02103457 BTC (13,450.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1726 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017142 BTC for 109.62 CZK @ 639,454 CZK\nFees are 0.38499600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.183619998887338487502352198 CZK)\nThe limits being 0.10 % (13.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37135875 BTC (187,635.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.56 % (49,831.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 297.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02103457 BTC (13,450.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1726 transactions" + } + ] + }, + { + "id": 3310, + "type": "message", + "date": "2023-07-31T14:00:08", + "date_unixtime": "1690804808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017180 BTC for 109.61 CZK @ 638,037 CZK\nFees are 0.38499443 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.141109998590497867475477272 CZK)\nThe limits being 0.10 % (13.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37153055 BTC (187,745.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.26 % (49,304.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 187.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02120637 BTC (13,530.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1727 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017180 BTC for 109.61 CZK @ 638,037 CZK\nFees are 0.38499443 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.141109998590497867475477272 CZK)\nThe limits being 0.10 % (13.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37153055 BTC (187,745.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.26 % (49,304.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 187.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02120637 BTC (13,530.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1727 transactions" + } + ] + }, + { + "id": 3311, + "type": "message", + "date": "2023-07-31T18:00:08", + "date_unixtime": "1690819208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00017247 BTC for 109.61 CZK @ 635,554 CZK\nFees are 0.38499177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.066619999249452451296094215 CZK)\nThe limits being 0.10 % (13.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37170302 BTC (187,855.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.75 % (48,381.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 77.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02137884 BTC (13,587.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.71 CZK over 1728 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00017247 BTC for 109.61 CZK @ 635,554 CZK\nFees are 0.38499177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (19.066619999249452451296094215 CZK)\nThe limits being 0.10 % (13.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37170302 BTC (187,855.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.75 % (48,381.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 77.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02137884 BTC (13,587.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.71 CZK over 1728 transactions" + } + ] + }, + { + "id": 3312, + "type": "message", + "date": "2023-07-31T22:00:02", + "date_unixtime": "1690833602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3313, + "type": "message", + "date": "2023-08-01T02:00:02", + "date_unixtime": "1690848002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3314, + "type": "message", + "date": "2023-08-01T06:00:02", + "date_unixtime": "1690862402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3315, + "type": "message", + "date": "2023-08-01T10:00:02", + "date_unixtime": "1690876802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (77.54004133 CZK) should be strictly superior than the bot configuration chunk size (110 CZK)" + } + ] + }, + { + "id": 3316, + "type": "message", + "date": "2023-08-01T14:00:06", + "date_unixtime": "1690891206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013110 BTC for 82.71 CZK @ 630,870 CZK\nFees are 0.29048786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (25.234799997111558819494089529 CZK)\nThe limits being 0.10 % (13.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37183412 BTC (187,938.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.82 % (46,640.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,994.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02150994 BTC (13,569.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.70 CZK over 1729 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013110 BTC for 82.71 CZK @ 630,870 CZK\nFees are 0.29048786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (25.234799997111558819494089529 CZK)\nThe limits being 0.10 % (13.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37183412 BTC (187,938.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.82 % (46,640.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,994.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02150994 BTC (13,569.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.70 CZK over 1729 transactions" + } + ] + }, + { + "id": 3317, + "type": "message", + "date": "2023-08-01T18:00:06", + "date_unixtime": "1690905606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013089 BTC for 82.71 CZK @ 631,903 CZK\nFees are 0.29049744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (18.957089999350200039033677795 CZK)\nThe limits being 0.10 % (13.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37196501 BTC (188,021.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.01 % (47,024.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,911.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02164083 BTC (13,674.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.68 CZK over 1730 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013089 BTC for 82.71 CZK @ 631,903 CZK\nFees are 0.29049744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (18.957089999350200039033677795 CZK)\nThe limits being 0.10 % (13.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37196501 BTC (188,021.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.01 % (47,024.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,911.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02164083 BTC (13,674.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.68 CZK over 1730 transactions" + } + ] + }, + { + "id": 3318, + "type": "message", + "date": "2023-08-01T22:00:07", + "date_unixtime": "1690920007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012953 BTC for 82.71 CZK @ 638,504 CZK\nFees are 0.29048212 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.540159999716886827548034902 CZK)\nThe limits being 0.10 % (13.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37209454 BTC (188,104.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.30 % (49,479.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,828.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02177036 BTC (13,900.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.67 CZK over 1731 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012953 BTC for 82.71 CZK @ 638,504 CZK\nFees are 0.29048212 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.540159999716886827548034902 CZK)\nThe limits being 0.10 % (13.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37209454 BTC (188,104.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.30 % (49,479.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,828.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02177036 BTC (13,900.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.67 CZK over 1731 transactions" + } + ] + }, + { + "id": 3319, + "type": "message", + "date": "2023-08-02T02:00:06", + "date_unixtime": "1690934406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012824 BTC for 82.71 CZK @ 644,934 CZK\nFees are 0.29048533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.797359997960973150430138310 CZK)\nThe limits being 0.10 % (14.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37222278 BTC (188,187.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.56 % (51,871.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,745.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02189860 BTC (14,123.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.65 CZK over 1732 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012824 BTC for 82.71 CZK @ 644,934 CZK\nFees are 0.29048533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.797359997960973150430138310 CZK)\nThe limits being 0.10 % (14.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37222278 BTC (188,187.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.56 % (51,871.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,745.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02189860 BTC (14,123.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.65 CZK over 1732 transactions" + } + ] + }, + { + "id": 3320, + "type": "message", + "date": "2023-08-02T06:00:06", + "date_unixtime": "1690948806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012800 BTC for 82.71 CZK @ 646,142 CZK\nFees are 0.29048477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.845679998131539611360239162 CZK)\nThe limits being 0.10 % (14.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37235078 BTC (188,270.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.79 % (52,321.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,662.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02202660 BTC (14,232.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.64 CZK over 1733 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012800 BTC for 82.71 CZK @ 646,142 CZK\nFees are 0.29048477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.845679998131539611360239162 CZK)\nThe limits being 0.10 % (14.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37235078 BTC (188,270.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.79 % (52,321.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,662.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02202660 BTC (14,232.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.64 CZK over 1733 transactions" + } + ] + }, + { + "id": 3321, + "type": "message", + "date": "2023-08-02T10:00:06", + "date_unixtime": "1690963206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012855 BTC for 82.70 CZK @ 643,363 CZK\nFees are 0.29047823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.734519997589145885162336336 CZK)\nThe limits being 0.10 % (14.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37247933 BTC (188,353.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.23 % (51,286.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,579.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02215515 BTC (14,253.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.62 CZK over 1734 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012855 BTC for 82.70 CZK @ 643,363 CZK\nFees are 0.29047823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.734519997589145885162336336 CZK)\nThe limits being 0.10 % (14.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37247933 BTC (188,353.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.23 % (51,286.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,579.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02215515 BTC (14,253.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.62 CZK over 1734 transactions" + } + ] + }, + { + "id": 3322, + "type": "message", + "date": "2023-08-02T14:00:07", + "date_unixtime": "1690977607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012828 BTC for 82.71 CZK @ 644,752 CZK\nFees are 0.29049394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (19.342559999310178640427353655 CZK)\nThe limits being 0.10 % (14.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37260761 BTC (188,436.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.49 % (51,803.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,496.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02228343 BTC (14,367.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.61 CZK over 1735 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012828 BTC for 82.71 CZK @ 644,752 CZK\nFees are 0.29049394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (19.342559999310178640427353655 CZK)\nThe limits being 0.10 % (14.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37260761 BTC (188,436.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.49 % (51,803.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,496.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02228343 BTC (14,367.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.61 CZK over 1735 transactions" + } + ] + }, + { + "id": 3323, + "type": "message", + "date": "2023-08-02T18:00:06", + "date_unixtime": "1690992006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012861 BTC for 82.71 CZK @ 643,106 CZK\nFees are 0.29049772 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.724239997114523396399670589 CZK)\nThe limits being 0.10 % (14.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37273622 BTC (188,519.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.15 % (51,189.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,413.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02241204 BTC (14,413.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.59 CZK over 1736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012861 BTC for 82.71 CZK @ 643,106 CZK\nFees are 0.29049772 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.724239997114523396399670589 CZK)\nThe limits being 0.10 % (14.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37273622 BTC (188,519.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.15 % (51,189.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,413.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02241204 BTC (14,413.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.59 CZK over 1736 transactions" + } + ] + }, + { + "id": 3324, + "type": "message", + "date": "2023-08-02T22:00:05", + "date_unixtime": "1691006405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012946 BTC for 82.71 CZK @ 638,878 CZK\nFees are 0.29049520 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.943899999776773876016054113 CZK)\nThe limits being 0.10 % (14.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37286568 BTC (188,602.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.31 % (49,613.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,330.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02254150 BTC (14,401.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.58 CZK over 1737 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012946 BTC for 82.71 CZK @ 638,878 CZK\nFees are 0.29049520 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.943899999776773876016054113 CZK)\nThe limits being 0.10 % (14.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37286568 BTC (188,602.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.31 % (49,613.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,330.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02254150 BTC (14,401.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.58 CZK over 1737 transactions" + } + ] + }, + { + "id": 3325, + "type": "message", + "date": "2023-08-03T02:00:08", + "date_unixtime": "1691020808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012946 BTC for 82.71 CZK @ 638,878 CZK\nFees are 0.29049520 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.555119999821419100812843290 CZK)\nThe limits being 0.10 % (14.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37299514 BTC (188,685.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.29 % (49,613.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,247.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02267096 BTC (14,483.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.56 CZK over 1738 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012946 BTC for 82.71 CZK @ 638,878 CZK\nFees are 0.29049520 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.555119999821419100812843290 CZK)\nThe limits being 0.10 % (14.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37299514 BTC (188,685.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.29 % (49,613.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,247.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02267096 BTC (14,483.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.56 CZK over 1738 transactions" + } + ] + }, + { + "id": 3326, + "type": "message", + "date": "2023-08-03T06:00:06", + "date_unixtime": "1691035206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012940 BTC for 82.71 CZK @ 639,146 CZK\nFees are 0.29048228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.565832301011375179145017168 CZK)\nThe limits being 0.10 % (14.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37312454 BTC (188,768.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.34 % (49,712.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,164.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02280036 BTC (14,572.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.55 CZK over 1739 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012940 BTC for 82.71 CZK @ 639,146 CZK\nFees are 0.29048228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (25.565832301011375179145017168 CZK)\nThe limits being 0.10 % (14.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37312454 BTC (188,768.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.34 % (49,712.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,164.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02280036 BTC (14,572.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.55 CZK over 1739 transactions" + } + ] + }, + { + "id": 3327, + "type": "message", + "date": "2023-08-03T10:00:07", + "date_unixtime": "1691049607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012968 BTC for 82.71 CZK @ 637,791 CZK\nFees are 0.29049376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (19.133729997906771088359157507 CZK)\nThe limits being 0.10 % (14.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37325422 BTC (188,851.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 505,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.06 % (49,206.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,081.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02293004 BTC (14,624.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.54 CZK over 1740 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012968 BTC for 82.71 CZK @ 637,791 CZK\nFees are 0.29049376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (19.133729997906771088359157507 CZK)\nThe limits being 0.10 % (14.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37325422 BTC (188,851.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 505,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.06 % (49,206.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,081.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02293004 BTC (14,624.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.54 CZK over 1740 transactions" + } + ] + }, + { + "id": 3328, + "type": "message", + "date": "2023-08-03T14:00:08", + "date_unixtime": "1691064008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012954 BTC for 82.71 CZK @ 638,464 CZK\nFees are 0.29048635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (38.307839998633776686645374817 CZK)\nThe limits being 0.10 % (14.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37338376 BTC (188,934.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.18 % (49,457.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,998.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02305958 BTC (14,722.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.52 CZK over 1741 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012954 BTC for 82.71 CZK @ 638,464 CZK\nFees are 0.29048635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (38.307839998633776686645374817 CZK)\nThe limits being 0.10 % (14.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37338376 BTC (188,934.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.18 % (49,457.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,998.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02305958 BTC (14,722.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.52 CZK over 1741 transactions" + } + ] + }, + { + "id": 3329, + "type": "message", + "date": "2023-08-03T18:00:07", + "date_unixtime": "1691078407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012819 BTC for 82.70 CZK @ 645,168 CZK\nFees are 0.29047743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (38.710079999664175619359855764 CZK)\nThe limits being 0.10 % (14.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37351195 BTC (189,017.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.49 % (51,960.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,915.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02318777 BTC (14,960.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.51 CZK over 1742 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012819 BTC for 82.70 CZK @ 645,168 CZK\nFees are 0.29047743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (38.710079999664175619359855764 CZK)\nThe limits being 0.10 % (14.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37351195 BTC (189,017.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.49 % (51,960.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,915.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02318777 BTC (14,960.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.51 CZK over 1742 transactions" + } + ] + }, + { + "id": 3330, + "type": "message", + "date": "2023-08-03T22:00:07", + "date_unixtime": "1691092807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012816 BTC for 82.70 CZK @ 645,319 CZK\nFees are 0.29047742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (45.172329999651656157257339638 CZK)\nThe limits being 0.10 % (15.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37364011 BTC (189,100.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.51 % (52,016.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,832.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02331593 BTC (15,046.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.49 CZK over 1743 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012816 BTC for 82.70 CZK @ 645,319 CZK\nFees are 0.29047742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (45.172329999651656157257339638 CZK)\nThe limits being 0.10 % (15.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37364011 BTC (189,100.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.51 % (52,016.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,832.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02331593 BTC (15,046.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.49 CZK over 1743 transactions" + } + ] + }, + { + "id": 3331, + "type": "message", + "date": "2023-08-04T02:00:08", + "date_unixtime": "1691107208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012857 BTC for 82.71 CZK @ 643,306 CZK\nFees are 0.29049768 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (51.464479997848395514199175098 CZK)\nThe limits being 0.10 % (15.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37376868 BTC (189,183.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.10 % (51,264.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,749.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02344450 BTC (15,081.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.48 CZK over 1744 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012857 BTC for 82.71 CZK @ 643,306 CZK\nFees are 0.29049768 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (51.464479997848395514199175098 CZK)\nThe limits being 0.10 % (15.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37376868 BTC (189,183.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.10 % (51,264.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,749.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02344450 BTC (15,081.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.48 CZK over 1744 transactions" + } + ] + }, + { + "id": 3332, + "type": "message", + "date": "2023-08-04T06:00:06", + "date_unixtime": "1691121606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012879 BTC for 82.71 CZK @ 642,195 CZK\nFees are 0.29049221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (38.531699995740508035525787859 CZK)\nThe limits being 0.10 % (15.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37389747 BTC (189,266.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 642,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.87 % (50,848.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,666.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02357329 BTC (15,138.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.46 CZK over 1745 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012879 BTC for 82.71 CZK @ 642,195 CZK\nFees are 0.29049221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (38.531699995740508035525787859 CZK)\nThe limits being 0.10 % (15.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37389747 BTC (189,266.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 642,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.87 % (50,848.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,666.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02357329 BTC (15,138.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.46 CZK over 1745 transactions" + } + ] + }, + { + "id": 3333, + "type": "message", + "date": "2023-08-04T10:00:07", + "date_unixtime": "1691136007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012819 BTC for 82.70 CZK @ 645,174 CZK\nFees are 0.29048013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.258699998946661954242140182 CZK)\nThe limits being 0.10 % (15.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37402566 BTC (189,349.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.44 % (51,962.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,583.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02370148 BTC (15,291.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.45 CZK over 1746 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012819 BTC for 82.70 CZK @ 645,174 CZK\nFees are 0.29048013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.258699998946661954242140182 CZK)\nThe limits being 0.10 % (15.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37402566 BTC (189,349.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.44 % (51,962.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,583.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02370148 BTC (15,291.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.45 CZK over 1746 transactions" + } + ] + }, + { + "id": 3334, + "type": "message", + "date": "2023-08-04T14:00:06", + "date_unixtime": "1691150406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012839 BTC for 82.67 CZK @ 643,881 CZK\nFees are 0.29035028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (25.755240895513572268848111756 CZK)\nThe limits being 0.10 % (15.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37415405 BTC (189,432.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.18 % (51,478.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,500.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02382987 BTC (15,343.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.43 CZK over 1747 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012839 BTC for 82.67 CZK @ 643,881 CZK\nFees are 0.29035028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (25.755240895513572268848111756 CZK)\nThe limits being 0.10 % (15.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37415405 BTC (189,432.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.18 % (51,478.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,500.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02382987 BTC (15,343.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.43 CZK over 1747 transactions" + } + ] + }, + { + "id": 3335, + "type": "message", + "date": "2023-08-04T18:00:07", + "date_unixtime": "1691164807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012852 BTC for 82.71 CZK @ 643,548 CZK\nFees are 0.29049394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (38.612879999367293836651086279 CZK)\nThe limits being 0.10 % (15.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37428257 BTC (189,515.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.10 % (51,353.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,417.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02395839 BTC (15,418.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.42 CZK over 1748 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012852 BTC for 82.71 CZK @ 643,548 CZK\nFees are 0.29049394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (38.612879999367293836651086279 CZK)\nThe limits being 0.10 % (15.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37428257 BTC (189,515.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.10 % (51,353.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,417.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02395839 BTC (15,418.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.42 CZK over 1748 transactions" + } + ] + }, + { + "id": 3336, + "type": "message", + "date": "2023-08-04T22:00:06", + "date_unixtime": "1691179206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012923 BTC for 82.71 CZK @ 639,996 CZK\nFees are 0.29048655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (51.199679999518824098630881058 CZK)\nThe limits being 0.10 % (15.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37441180 BTC (189,598.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 639,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.38 % (50,023.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,334.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02408762 BTC (15,415.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.40 CZK over 1749 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012923 BTC for 82.71 CZK @ 639,996 CZK\nFees are 0.29048655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (51.199679999518824098630881058 CZK)\nThe limits being 0.10 % (15.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37441180 BTC (189,598.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 639,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.38 % (50,023.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,334.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02408762 BTC (15,415.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.40 CZK over 1749 transactions" + } + ] + }, + { + "id": 3337, + "type": "message", + "date": "2023-08-05T02:00:07", + "date_unixtime": "1691193607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012915 BTC for 82.71 CZK @ 640,422 CZK\nFees are 0.29049996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (51.233759997191401909036529332 CZK)\nThe limits being 0.10 % (15.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37454095 BTC (189,681.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.46 % (50,182.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,251.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02421677 BTC (15,508.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.39 CZK over 1750 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012915 BTC for 82.71 CZK @ 640,422 CZK\nFees are 0.29049996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (51.233759997191401909036529332 CZK)\nThe limits being 0.10 % (15.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37454095 BTC (189,681.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.46 % (50,182.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,251.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02421677 BTC (15,508.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.39 CZK over 1750 transactions" + } + ] + }, + { + "id": 3338, + "type": "message", + "date": "2023-08-05T06:00:06", + "date_unixtime": "1691208006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012901 BTC for 82.71 CZK @ 641,095 CZK\nFees are 0.29049000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (51.287599999490196064800251286 CZK)\nThe limits being 0.10 % (15.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37466996 BTC (189,764.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.58 % (50,434.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,168.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02434578 BTC (15,607.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.37 CZK over 1751 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012901 BTC for 82.71 CZK @ 641,095 CZK\nFees are 0.29049000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (51.287599999490196064800251286 CZK)\nThe limits being 0.10 % (15.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37466996 BTC (189,764.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.58 % (50,434.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,168.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02434578 BTC (15,607.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.37 CZK over 1751 transactions" + } + ] + }, + { + "id": 3339, + "type": "message", + "date": "2023-08-05T10:00:06", + "date_unixtime": "1691222406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012911 BTC for 82.71 CZK @ 640,604 CZK\nFees are 0.29049252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (44.842279995385988711108980853 CZK)\nThe limits being 0.10 % (15.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37479907 BTC (189,847.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.47 % (50,250.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,085.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02447489 BTC (15,678.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.36 CZK over 1752 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012911 BTC for 82.71 CZK @ 640,604 CZK\nFees are 0.29049252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (44.842279995385988711108980853 CZK)\nThe limits being 0.10 % (15.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37479907 BTC (189,847.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.47 % (50,250.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,085.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02447489 BTC (15,678.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.36 CZK over 1752 transactions" + } + ] + }, + { + "id": 3340, + "type": "message", + "date": "2023-08-05T14:00:07", + "date_unixtime": "1691236807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012903 BTC for 82.70 CZK @ 640,969 CZK\nFees are 0.29047793 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (38.458139997569538931804251267 CZK)\nThe limits being 0.10 % (15.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37492810 BTC (189,930.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.53 % (50,387.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,002.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02460392 BTC (15,770.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.35 CZK over 1753 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012903 BTC for 82.70 CZK @ 640,969 CZK\nFees are 0.29047793 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (38.458139997569538931804251267 CZK)\nThe limits being 0.10 % (15.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37492810 BTC (189,930.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.53 % (50,387.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,002.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02460392 BTC (15,770.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.35 CZK over 1753 transactions" + } + ] + }, + { + "id": 3341, + "type": "message", + "date": "2023-08-05T18:00:07", + "date_unixtime": "1691251207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012908 BTC for 82.71 CZK @ 640,750 CZK\nFees are 0.29049121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.222499998841983025323978408 CZK)\nThe limits being 0.10 % (15.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37505718 BTC (190,013.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.47 % (50,304.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,919.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02473300 BTC (15,847.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.33 CZK over 1754 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012908 BTC for 82.71 CZK @ 640,750 CZK\nFees are 0.29049121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.222499998841983025323978408 CZK)\nThe limits being 0.10 % (15.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37505718 BTC (190,013.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.47 % (50,304.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,919.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02473300 BTC (15,847.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.33 CZK over 1754 transactions" + } + ] + }, + { + "id": 3342, + "type": "message", + "date": "2023-08-05T22:00:07", + "date_unixtime": "1691265607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012897 BTC for 82.71 CZK @ 641,280 CZK\nFees are 0.29048373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.238399998701914780009904855 CZK)\nThe limits being 0.10 % (15.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37518615 BTC (190,096.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.57 % (50,503.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,836.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02486197 BTC (15,943.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.32 CZK over 1755 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012897 BTC for 82.71 CZK @ 641,280 CZK\nFees are 0.29048373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.238399998701914780009904855 CZK)\nThe limits being 0.10 % (15.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37518615 BTC (190,096.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.57 % (50,503.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,836.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02486197 BTC (15,943.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.32 CZK over 1755 transactions" + } + ] + }, + { + "id": 3343, + "type": "message", + "date": "2023-08-06T02:00:07", + "date_unixtime": "1691280007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012886 BTC for 82.71 CZK @ 641,822 CZK\nFees are 0.29048128 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.254659999948960262548409452 CZK)\nThe limits being 0.10 % (16.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37531501 BTC (190,179.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.66 % (50,706.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,753.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02499083 BTC (16,039.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.30 CZK over 1756 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012886 BTC for 82.71 CZK @ 641,822 CZK\nFees are 0.29048128 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.254659999948960262548409452 CZK)\nThe limits being 0.10 % (16.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37531501 BTC (190,179.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.66 % (50,706.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,753.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02499083 BTC (16,039.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.30 CZK over 1756 transactions" + } + ] + }, + { + "id": 3344, + "type": "message", + "date": "2023-08-06T06:00:07", + "date_unixtime": "1691294407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012894 BTC for 82.71 CZK @ 641,431 CZK\nFees are 0.29048455 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.242929998611189362127852655 CZK)\nThe limits being 0.10 % (16.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37544395 BTC (190,262.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.57 % (50,559.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,670.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02511977 BTC (16,112.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.29 CZK over 1757 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012894 BTC for 82.71 CZK @ 641,431 CZK\nFees are 0.29048455 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.242929998611189362127852655 CZK)\nThe limits being 0.10 % (16.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37544395 BTC (190,262.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.57 % (50,559.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,670.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02511977 BTC (16,112.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.29 CZK over 1757 transactions" + } + ] + }, + { + "id": 3345, + "type": "message", + "date": "2023-08-06T10:00:06", + "date_unixtime": "1691308806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012891 BTC for 82.71 CZK @ 641,614 CZK\nFees are 0.29049982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.248419999399356151538036700 CZK)\nThe limits being 0.10 % (16.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37557286 BTC (190,345.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.60 % (50,627.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,587.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02524868 BTC (16,199.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.27 CZK over 1758 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012891 BTC for 82.71 CZK @ 641,614 CZK\nFees are 0.29049982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.248419999399356151538036700 CZK)\nThe limits being 0.10 % (16.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37557286 BTC (190,345.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.60 % (50,627.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,587.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02524868 BTC (16,199.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.27 CZK over 1758 transactions" + } + ] + }, + { + "id": 3346, + "type": "message", + "date": "2023-08-06T14:00:07", + "date_unixtime": "1691323207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012888 BTC for 82.71 CZK @ 641,749 CZK\nFees are 0.29049332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.252469997930891785640388992 CZK)\nThe limits being 0.10 % (16.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37570174 BTC (190,428.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.61 % (50,677.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,504.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02537756 BTC (16,286.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.26 CZK over 1759 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012888 BTC for 82.71 CZK @ 641,749 CZK\nFees are 0.29049332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.252469997930891785640388992 CZK)\nThe limits being 0.10 % (16.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37570174 BTC (190,428.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.61 % (50,677.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,504.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02537756 BTC (16,286.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.26 CZK over 1759 transactions" + } + ] + }, + { + "id": 3347, + "type": "message", + "date": "2023-08-06T18:00:07", + "date_unixtime": "1691337607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012912 BTC for 82.71 CZK @ 640,530 CZK\nFees are 0.29048146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.215899998240359485295888183 CZK)\nThe limits being 0.10 % (16.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37583086 BTC (190,511.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,530 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.36 % (50,219.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,421.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02550668 BTC (16,337.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.25 CZK over 1760 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012912 BTC for 82.71 CZK @ 640,530 CZK\nFees are 0.29048146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.215899998240359485295888183 CZK)\nThe limits being 0.10 % (16.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37583086 BTC (190,511.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,530 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.36 % (50,219.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,421.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02550668 BTC (16,337.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.25 CZK over 1760 transactions" + } + ] + }, + { + "id": 3348, + "type": "message", + "date": "2023-08-06T22:00:07", + "date_unixtime": "1691352007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012883 BTC for 82.71 CZK @ 641,986 CZK\nFees are 0.29048786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.259579998299052748741200412 CZK)\nThe limits being 0.10 % (16.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37595969 BTC (190,594.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 506,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.64 % (50,766.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,338.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02563551 BTC (16,457.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.23 CZK over 1761 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012883 BTC for 82.71 CZK @ 641,986 CZK\nFees are 0.29048786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.259579998299052748741200412 CZK)\nThe limits being 0.10 % (16.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37595969 BTC (190,594.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 506,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.64 % (50,766.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,338.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02563551 BTC (16,457.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.23 CZK over 1761 transactions" + } + ] + }, + { + "id": 3349, + "type": "message", + "date": "2023-08-07T02:00:09", + "date_unixtime": "1691366409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012883 BTC for 82.71 CZK @ 641,994 CZK\nFees are 0.29049148 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.259819998939518562312044458 CZK)\nThe limits being 0.10 % (16.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37608852 BTC (190,677.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.63 % (50,769.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,255.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02576434 BTC (16,540.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.22 CZK over 1762 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012883 BTC for 82.71 CZK @ 641,994 CZK\nFees are 0.29049148 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.259819998939518562312044458 CZK)\nThe limits being 0.10 % (16.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37608852 BTC (190,677.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.63 % (50,769.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,255.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02576434 BTC (16,540.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.22 CZK over 1762 transactions" + } + ] + }, + { + "id": 3350, + "type": "message", + "date": "2023-08-07T06:00:07", + "date_unixtime": "1691380807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012851 BTC for 82.71 CZK @ 643,571 CZK\nFees are 0.29048172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.307129999480070473132379989 CZK)\nThe limits being 0.10 % (16.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37621703 BTC (190,760.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.92 % (51,362.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,172.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02589285 BTC (16,663.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.20 CZK over 1763 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012851 BTC for 82.71 CZK @ 643,571 CZK\nFees are 0.29048172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.307129999480070473132379989 CZK)\nThe limits being 0.10 % (16.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37621703 BTC (190,760.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.92 % (51,362.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,172.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02589285 BTC (16,663.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.20 CZK over 1763 transactions" + } + ] + }, + { + "id": 3351, + "type": "message", + "date": "2023-08-07T10:00:07", + "date_unixtime": "1691395207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012897 BTC for 82.71 CZK @ 641,290 CZK\nFees are 0.29048826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.238699997786301098052605599 CZK)\nThe limits being 0.10 % (16.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37634600 BTC (190,843.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.46 % (50,503.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,089.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02602182 BTC (16,687.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.19 CZK over 1764 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012897 BTC for 82.71 CZK @ 641,290 CZK\nFees are 0.29048826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (19.238699997786301098052605599 CZK)\nThe limits being 0.10 % (16.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37634600 BTC (190,843.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.46 % (50,503.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,089.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02602182 BTC (16,687.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.19 CZK over 1764 transactions" + } + ] + }, + { + "id": 3352, + "type": "message", + "date": "2023-08-07T14:00:07", + "date_unixtime": "1691409607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012891 BTC for 82.70 CZK @ 641,566 CZK\nFees are 0.29047808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.246979998675800627522080908 CZK)\nThe limits being 0.10 % (16.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37647491 BTC (190,926.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 641,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.51 % (50,607.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,006.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02615073 BTC (16,777.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.17 CZK over 1765 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012891 BTC for 82.70 CZK @ 641,566 CZK\nFees are 0.29047808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.246979998675800627522080908 CZK)\nThe limits being 0.10 % (16.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37647491 BTC (190,926.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 641,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.51 % (50,607.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,006.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02615073 BTC (16,777.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.17 CZK over 1765 transactions" + } + ] + }, + { + "id": 3353, + "type": "message", + "date": "2023-08-07T18:00:06", + "date_unixtime": "1691424006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013008 BTC for 82.71 CZK @ 635,838 CZK\nFees are 0.29049752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (25.433519998578162164282330418 CZK)\nThe limits being 0.10 % (16.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37660499 BTC (191,009.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 635,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.37 % (48,450.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,923.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02628081 BTC (16,710.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.16 CZK over 1766 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013008 BTC for 82.71 CZK @ 635,838 CZK\nFees are 0.29049752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (25.433519998578162164282330418 CZK)\nThe limits being 0.10 % (16.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37660499 BTC (191,009.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 635,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.37 % (48,450.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,923.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02628081 BTC (16,710.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.16 CZK over 1766 transactions" + } + ] + }, + { + "id": 3354, + "type": "message", + "date": "2023-08-07T22:00:07", + "date_unixtime": "1691438407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012906 BTC for 82.71 CZK @ 640,865 CZK\nFees are 0.29049833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.269199994348001427824557334 CZK)\nThe limits being 0.10 % (16.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37673405 BTC (191,092.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 640,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.35 % (50,343.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,840.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02640987 BTC (16,925.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.15 CZK over 1767 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012906 BTC for 82.71 CZK @ 640,865 CZK\nFees are 0.29049833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.269199994348001427824557334 CZK)\nThe limits being 0.10 % (16.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37673405 BTC (191,092.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 640,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.35 % (50,343.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,840.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02640987 BTC (16,925.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.15 CZK over 1767 transactions" + } + ] + }, + { + "id": 3355, + "type": "message", + "date": "2023-08-08T02:00:07", + "date_unixtime": "1691452807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012856 BTC for 82.70 CZK @ 643,317 CZK\nFees are 0.29048005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.465359995460815583540991718 CZK)\nThe limits being 0.10 % (17.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37686261 BTC (191,175.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.82 % (51,266.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,757.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02653843 BTC (17,072.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.13 CZK over 1768 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012856 BTC for 82.70 CZK @ 643,317 CZK\nFees are 0.29048005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.465359995460815583540991718 CZK)\nThe limits being 0.10 % (17.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37686261 BTC (191,175.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.82 % (51,266.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,757.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02653843 BTC (17,072.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.13 CZK over 1768 transactions" + } + ] + }, + { + "id": 3356, + "type": "message", + "date": "2023-08-08T06:00:08", + "date_unixtime": "1691467208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012840 BTC for 82.71 CZK @ 644,156 CZK\nFees are 0.29049690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.532479996026368768500280174 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37699101 BTC (191,258.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.97 % (51,582.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,674.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02666683 BTC (17,177.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.12 CZK over 1769 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012840 BTC for 82.71 CZK @ 644,156 CZK\nFees are 0.29049690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.532479996026368768500280174 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37699101 BTC (191,258.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.97 % (51,582.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,674.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02666683 BTC (17,177.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.12 CZK over 1769 transactions" + } + ] + }, + { + "id": 3357, + "type": "message", + "date": "2023-08-08T10:00:08", + "date_unixtime": "1691481608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012835 BTC for 82.71 CZK @ 644,381 CZK\nFees are 0.29048521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.550479997065199732374166071 CZK)\nThe limits being 0.10 % (17.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37711936 BTC (191,341.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.00 % (51,667.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,591.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02679518 BTC (17,266.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.10 CZK over 1770 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012835 BTC for 82.71 CZK @ 644,381 CZK\nFees are 0.29048521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (51.550479997065199732374166071 CZK)\nThe limits being 0.10 % (17.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37711936 BTC (191,341.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.00 % (51,667.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,591.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02679518 BTC (17,266.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.10 CZK over 1770 transactions" + } + ] + }, + { + "id": 3358, + "type": "message", + "date": "2023-08-08T14:00:07", + "date_unixtime": "1691496007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012707 BTC for 82.71 CZK @ 650,863 CZK\nFees are 0.29048120 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (39.051779997677915601054607451 CZK)\nThe limits being 0.10 % (17.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37724643 BTC (191,424.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.27 % (54,111.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,508.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02692225 BTC (17,522.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.09 CZK over 1771 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012707 BTC for 82.71 CZK @ 650,863 CZK\nFees are 0.29048120 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (39.051779997677915601054607451 CZK)\nThe limits being 0.10 % (17.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37724643 BTC (191,424.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.27 % (54,111.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,508.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02692225 BTC (17,522.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.09 CZK over 1771 transactions" + } + ] + }, + { + "id": 3359, + "type": "message", + "date": "2023-08-08T18:00:10", + "date_unixtime": "1691510410", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012635 BTC for 82.70 CZK @ 654,569 CZK\nFees are 0.29047991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (65.456899995248131342438386894 CZK)\nThe limits being 0.10 % (17.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37737278 BTC (191,507.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.99 % (55,509.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,425.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02704860 BTC (17,705.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.07 CZK over 1772 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012635 BTC for 82.70 CZK @ 654,569 CZK\nFees are 0.29047991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (65.456899995248131342438386894 CZK)\nThe limits being 0.10 % (17.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37737278 BTC (191,507.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.99 % (55,509.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,425.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02704860 BTC (17,705.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.07 CZK over 1772 transactions" + } + ] + }, + { + "id": 3360, + "type": "message", + "date": "2023-08-08T22:00:09", + "date_unixtime": "1691524809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012524 BTC for 82.71 CZK @ 660,416 CZK\nFees are 0.29049995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (66.041599992488761388796191927 CZK)\nThe limits being 0.10 % (17.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37749802 BTC (191,590.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.12 % (57,715.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,342.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02717384 BTC (17,946.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.06 CZK over 1773 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012524 BTC for 82.71 CZK @ 660,416 CZK\nFees are 0.29049995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (66.041599992488761388796191927 CZK)\nThe limits being 0.10 % (17.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37749802 BTC (191,590.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.12 % (57,715.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,342.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02717384 BTC (17,946.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.06 CZK over 1773 transactions" + } + ] + }, + { + "id": 3361, + "type": "message", + "date": "2023-08-09T02:00:08", + "date_unixtime": "1691539208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012567 BTC for 82.71 CZK @ 658,114 CZK\nFees are 0.29048129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (65.811399998152404358279878945 CZK)\nThe limits being 0.10 % (17.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37762369 BTC (191,673.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.66 % (56,846.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,259.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02729951 BTC (17,966.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.05 CZK over 1774 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012567 BTC for 82.71 CZK @ 658,114 CZK\nFees are 0.29048129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (65.811399998152404358279878945 CZK)\nThe limits being 0.10 % (17.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37762369 BTC (191,673.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.66 % (56,846.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,259.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02729951 BTC (17,966.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.05 CZK over 1774 transactions" + } + ] + }, + { + "id": 3362, + "type": "message", + "date": "2023-08-09T06:00:10", + "date_unixtime": "1691553610", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012598 BTC for 82.71 CZK @ 656,527 CZK\nFees are 0.29049564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (65.652699999912989091284172646 CZK)\nThe limits being 0.10 % (18.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37774967 BTC (191,756.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 656,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.33 % (56,246.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,176.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02742549 BTC (18,005.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.03 CZK over 1775 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012598 BTC for 82.71 CZK @ 656,527 CZK\nFees are 0.29049564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (65.652699999912989091284172646 CZK)\nThe limits being 0.10 % (18.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37774967 BTC (191,756.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 656,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.33 % (56,246.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,176.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02742549 BTC (18,005.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.03 CZK over 1775 transactions" + } + ] + }, + { + "id": 3363, + "type": "message", + "date": "2023-08-09T10:00:07", + "date_unixtime": "1691568007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012555 BTC for 82.71 CZK @ 658,765 CZK\nFees are 0.29049098 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (59.288849999910706791462854918 CZK)\nThe limits being 0.10 % (18.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37787522 BTC (191,839.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.76 % (57,091.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,093.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02755104 BTC (18,149.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.02 CZK over 1776 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012555 BTC for 82.71 CZK @ 658,765 CZK\nFees are 0.29049098 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (59.288849999910706791462854918 CZK)\nThe limits being 0.10 % (18.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37787522 BTC (191,839.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.76 % (57,091.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,093.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02755104 BTC (18,149.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.02 CZK over 1776 transactions" + } + ] + }, + { + "id": 3364, + "type": "message", + "date": "2023-08-09T14:00:10", + "date_unixtime": "1691582410", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012531 BTC for 82.70 CZK @ 660,000 CZK\nFees are 0.29047923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.80000 CZK)\nThe limits being 0.10 % (18.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37800053 BTC (191,922.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.99 % (57,558.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,010.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02767635 BTC (18,266.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 108.00 CZK over 1777 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012531 BTC for 82.70 CZK @ 660,000 CZK\nFees are 0.29047923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.80000 CZK)\nThe limits being 0.10 % (18.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37800053 BTC (191,922.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.99 % (57,558.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,010.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02767635 BTC (18,266.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 108.00 CZK over 1777 transactions" + } + ] + }, + { + "id": 3365, + "type": "message", + "date": "2023-08-09T18:00:10", + "date_unixtime": "1691596810", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012570 BTC for 82.71 CZK @ 657,958 CZK\nFees are 0.29048176 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.738739999500554740984121208 CZK)\nThe limits being 0.10 % (18.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37812623 BTC (192,005.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 657,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 29.58 % (56,785.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,927.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02780205 BTC (18,292.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.99 CZK over 1778 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012570 BTC for 82.71 CZK @ 657,958 CZK\nFees are 0.29048176 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.738739999500554740984121208 CZK)\nThe limits being 0.10 % (18.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37812623 BTC (192,005.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 657,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 29.58 % (56,785.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,927.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02780205 BTC (18,292.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.99 CZK over 1778 transactions" + } + ] + }, + { + "id": 3366, + "type": "message", + "date": "2023-08-09T22:00:09", + "date_unixtime": "1691611209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012720 BTC for 82.71 CZK @ 650,212 CZK\nFees are 0.29048754 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (32.510599999059894144080623479 CZK)\nThe limits being 0.10 % (18.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37825343 BTC (192,088.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.04 % (53,856.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,844.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02792925 BTC (18,159.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.98 CZK over 1779 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012720 BTC for 82.71 CZK @ 650,212 CZK\nFees are 0.29048754 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (32.510599999059894144080623479 CZK)\nThe limits being 0.10 % (18.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37825343 BTC (192,088.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.04 % (53,856.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,844.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02792925 BTC (18,159.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.98 CZK over 1779 transactions" + } + ] + }, + { + "id": 3367, + "type": "message", + "date": "2023-08-10T02:00:07", + "date_unixtime": "1691625607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012650 BTC for 82.71 CZK @ 653,830 CZK\nFees are 0.29049642 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (32.691499999015304143009348704 CZK)\nThe limits being 0.10 % (18.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37837993 BTC (192,171.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.74 % (55,224.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,761.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02805575 BTC (18,343.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.96 CZK over 1780 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012650 BTC for 82.71 CZK @ 653,830 CZK\nFees are 0.29049642 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (32.691499999015304143009348704 CZK)\nThe limits being 0.10 % (18.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37837993 BTC (192,171.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.74 % (55,224.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,761.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02805575 BTC (18,343.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.96 CZK over 1780 transactions" + } + ] + }, + { + "id": 3368, + "type": "message", + "date": "2023-08-10T06:00:08", + "date_unixtime": "1691640008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012654 BTC for 82.71 CZK @ 653,611 CZK\nFees are 0.29049095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.144439998176132233248117130 CZK)\nThe limits being 0.10 % (18.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37850647 BTC (192,254.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 653,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.68 % (55,141.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,678.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02818229 BTC (18,420.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.95 CZK over 1781 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012654 BTC for 82.71 CZK @ 653,611 CZK\nFees are 0.29049095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.144439998176132233248117130 CZK)\nThe limits being 0.10 % (18.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37850647 BTC (192,254.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 653,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.68 % (55,141.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,678.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02818229 BTC (18,420.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.95 CZK over 1781 transactions" + } + ] + }, + { + "id": 3369, + "type": "message", + "date": "2023-08-10T10:00:07", + "date_unixtime": "1691654407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012725 BTC for 82.71 CZK @ 649,944 CZK\nFees are 0.29048195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.498319997885592959024553551 CZK)\nThe limits being 0.10 % (18.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37863372 BTC (192,337.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 507,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.95 % (53,753.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,595.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02830954 BTC (18,399.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.93 CZK over 1782 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012725 BTC for 82.71 CZK @ 649,944 CZK\nFees are 0.29048195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (19.498319997885592959024553551 CZK)\nThe limits being 0.10 % (18.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37863372 BTC (192,337.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 507,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.95 % (53,753.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,595.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02830954 BTC (18,399.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.93 CZK over 1782 transactions" + } + ] + }, + { + "id": 3370, + "type": "message", + "date": "2023-08-10T14:00:06", + "date_unixtime": "1691668806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012731 BTC for 82.70 CZK @ 649,628 CZK\nFees are 0.29047762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.985119999254827098165610529 CZK)\nThe limits being 0.10 % (18.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37876103 BTC (192,420.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.87 % (53,633.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,512.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02843685 BTC (18,473.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.92 CZK over 1783 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012731 BTC for 82.70 CZK @ 649,628 CZK\nFees are 0.29047762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.985119999254827098165610529 CZK)\nThe limits being 0.10 % (18.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37876103 BTC (192,420.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.87 % (53,633.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,512.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02843685 BTC (18,473.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.92 CZK over 1783 transactions" + } + ] + }, + { + "id": 3371, + "type": "message", + "date": "2023-08-10T18:00:06", + "date_unixtime": "1691683206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012767 BTC for 82.71 CZK @ 647,805 CZK\nFees are 0.29048156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (38.868299997553014984095182798 CZK)\nThe limits being 0.10 % (18.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37888870 BTC (192,503.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.50 % (52,942.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,429.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02856452 BTC (18,504.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.91 CZK over 1784 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012767 BTC for 82.71 CZK @ 647,805 CZK\nFees are 0.29048156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (38.868299997553014984095182798 CZK)\nThe limits being 0.10 % (18.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37888870 BTC (192,503.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.50 % (52,942.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,429.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02856452 BTC (18,504.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.91 CZK over 1784 transactions" + } + ] + }, + { + "id": 3372, + "type": "message", + "date": "2023-08-10T22:00:06", + "date_unixtime": "1691697606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012735 BTC for 82.71 CZK @ 649,455 CZK\nFees are 0.29049150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (58.450949993045542016370265908 CZK)\nThe limits being 0.10 % (18.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37901605 BTC (192,586.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.81 % (53,567.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,346.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02869187 BTC (18,634.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.89 CZK over 1785 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012735 BTC for 82.71 CZK @ 649,455 CZK\nFees are 0.29049150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (58.450949993045542016370265908 CZK)\nThe limits being 0.10 % (18.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37901605 BTC (192,586.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.81 % (53,567.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,346.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02869187 BTC (18,634.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.89 CZK over 1785 transactions" + } + ] + }, + { + "id": 3373, + "type": "message", + "date": "2023-08-11T02:00:06", + "date_unixtime": "1691712006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012730 BTC for 82.71 CZK @ 649,697 CZK\nFees are 0.29048565 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (45.478789995424498152773227719 CZK)\nThe limits being 0.10 % (18.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37914335 BTC (192,669.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.85 % (53,659.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,263.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02881917 BTC (18,723.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.88 CZK over 1786 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012730 BTC for 82.71 CZK @ 649,697 CZK\nFees are 0.29048565 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (45.478789995424498152773227719 CZK)\nThe limits being 0.10 % (18.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37914335 BTC (192,669.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.85 % (53,659.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,263.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02881917 BTC (18,723.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.88 CZK over 1786 transactions" + } + ] + }, + { + "id": 3374, + "type": "message", + "date": "2023-08-11T06:00:06", + "date_unixtime": "1691726406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012760 BTC for 82.71 CZK @ 648,194 CZK\nFees are 0.29049663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (32.409699999843806864063551862 CZK)\nThe limits being 0.10 % (18.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37927095 BTC (192,752.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.54 % (53,088.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,180.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02894677 BTC (18,763.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.86 CZK over 1787 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012760 BTC for 82.71 CZK @ 648,194 CZK\nFees are 0.29049663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (32.409699999843806864063551862 CZK)\nThe limits being 0.10 % (18.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37927095 BTC (192,752.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.54 % (53,088.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,180.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02894677 BTC (18,763.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.86 CZK over 1787 transactions" + } + ] + }, + { + "id": 3375, + "type": "message", + "date": "2023-08-11T10:00:06", + "date_unixtime": "1691740806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012761 BTC for 82.71 CZK @ 648,140 CZK\nFees are 0.29049520 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.444199997914985037674931876 CZK)\nThe limits being 0.10 % (18.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37939856 BTC (192,835.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.52 % (53,068.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,097.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02907438 BTC (18,844.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.85 CZK over 1788 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012761 BTC for 82.71 CZK @ 648,140 CZK\nFees are 0.29049520 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.444199997914985037674931876 CZK)\nThe limits being 0.10 % (18.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37939856 BTC (192,835.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.52 % (53,068.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,097.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02907438 BTC (18,844.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.85 CZK over 1788 transactions" + } + ] + }, + { + "id": 3376, + "type": "message", + "date": "2023-08-11T14:00:06", + "date_unixtime": "1691755206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012818 BTC for 82.70 CZK @ 645,224 CZK\nFees are 0.29047998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.356719999272323743166665151 CZK)\nThe limits being 0.10 % (18.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37952674 BTC (192,918.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.93 % (51,961.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,014.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02920256 BTC (18,842.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.84 CZK over 1789 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012818 BTC for 82.70 CZK @ 645,224 CZK\nFees are 0.29047998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.356719999272323743166665151 CZK)\nThe limits being 0.10 % (18.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37952674 BTC (192,918.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.93 % (51,961.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,014.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02920256 BTC (18,842.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.84 CZK over 1789 transactions" + } + ] + }, + { + "id": 3377, + "type": "message", + "date": "2023-08-11T18:00:07", + "date_unixtime": "1691769607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012806 BTC for 82.71 CZK @ 645,838 CZK\nFees are 0.29048420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (45.208660000010894245589445218 CZK)\nThe limits being 0.10 % (18.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37965480 BTC (193,001.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.04 % (52,194.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,931.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02933062 BTC (18,942.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.82 CZK over 1790 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012806 BTC for 82.71 CZK @ 645,838 CZK\nFees are 0.29048420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (45.208660000010894245589445218 CZK)\nThe limits being 0.10 % (18.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37965480 BTC (193,001.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.04 % (52,194.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,931.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02933062 BTC (18,942.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.82 CZK over 1790 transactions" + } + ] + }, + { + "id": 3378, + "type": "message", + "date": "2023-08-11T22:00:07", + "date_unixtime": "1691784007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012794 BTC for 82.71 CZK @ 646,443 CZK\nFees are 0.29048386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.857719999697790576502640944 CZK)\nThe limits being 0.10 % (19.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37978274 BTC (193,084.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.15 % (52,423.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,848.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02945856 BTC (19,043.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.81 CZK over 1791 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012794 BTC for 82.71 CZK @ 646,443 CZK\nFees are 0.29048386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.857719999697790576502640944 CZK)\nThe limits being 0.10 % (19.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37978274 BTC (193,084.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.15 % (52,423.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,848.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02945856 BTC (19,043.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.81 CZK over 1791 transactions" + } + ] + }, + { + "id": 3379, + "type": "message", + "date": "2023-08-12T02:00:07", + "date_unixtime": "1691798407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012782 BTC for 82.71 CZK @ 647,059 CZK\nFees are 0.29048795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (32.352949998117214066211851072 CZK)\nThe limits being 0.10 % (19.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.37991056 BTC (193,167.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.26 % (52,657.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,765.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02958638 BTC (19,144.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.79 CZK over 1792 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012782 BTC for 82.71 CZK @ 647,059 CZK\nFees are 0.29048795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (32.352949998117214066211851072 CZK)\nThe limits being 0.10 % (19.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.37991056 BTC (193,167.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.26 % (52,657.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,765.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02958638 BTC (19,144.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.79 CZK over 1792 transactions" + } + ] + }, + { + "id": 3380, + "type": "message", + "date": "2023-08-12T06:00:07", + "date_unixtime": "1691812807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012787 BTC for 82.71 CZK @ 646,801 CZK\nFees are 0.29048571 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.872039998894928982626654834 CZK)\nThe limits being 0.10 % (19.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38003843 BTC (193,250.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.20 % (52,559.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,682.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02971425 BTC (19,219.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.78 CZK over 1793 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012787 BTC for 82.71 CZK @ 646,801 CZK\nFees are 0.29048571 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.872039998894928982626654834 CZK)\nThe limits being 0.10 % (19.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38003843 BTC (193,250.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.20 % (52,559.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,682.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02971425 BTC (19,219.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.78 CZK over 1793 transactions" + } + ] + }, + { + "id": 3381, + "type": "message", + "date": "2023-08-12T10:00:08", + "date_unixtime": "1691827208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012783 BTC for 82.71 CZK @ 647,032 CZK\nFees are 0.29049855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.410959999541618416742995386 CZK)\nThe limits being 0.10 % (19.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38016626 BTC (193,333.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.23 % (52,646.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,599.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02984208 BTC (19,308.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.77 CZK over 1794 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012783 BTC for 82.71 CZK @ 647,032 CZK\nFees are 0.29049855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.410959999541618416742995386 CZK)\nThe limits being 0.10 % (19.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38016626 BTC (193,333.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.23 % (52,646.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,599.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02984208 BTC (19,308.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.77 CZK over 1794 transactions" + } + ] + }, + { + "id": 3382, + "type": "message", + "date": "2023-08-12T14:00:11", + "date_unixtime": "1691841611", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012771 BTC for 82.71 CZK @ 647,627 CZK\nFees are 0.29049273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.428809998924366081177705610 CZK)\nThe limits being 0.10 % (19.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38029397 BTC (193,416.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.34 % (52,872.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,516.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02996979 BTC (19,409.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.75 CZK over 1795 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012771 BTC for 82.71 CZK @ 647,627 CZK\nFees are 0.29049273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (19.428809998924366081177705610 CZK)\nThe limits being 0.10 % (19.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38029397 BTC (193,416.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.34 % (52,872.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,516.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02996979 BTC (19,409.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.75 CZK over 1795 transactions" + } + ] + }, + { + "id": 3383, + "type": "message", + "date": "2023-08-12T18:00:06", + "date_unixtime": "1691856006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012768 BTC for 82.70 CZK @ 647,752 CZK\nFees are 0.29048055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.03009747 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (19.432559999119622674024373339 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38042165 BTC (193,499.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.35 % (52,919.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,433.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03009747 BTC (19,495.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.74 CZK over 1796 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012768 BTC for 82.70 CZK @ 647,752 CZK\nFees are 0.29048055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.03009747 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (19.432559999119622674024373339 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38042165 BTC (193,499.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.35 % (52,919.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,433.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03009747 BTC (19,495.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.74 CZK over 1796 transactions" + } + ] + }, + { + "id": 3384, + "type": "message", + "date": "2023-08-12T22:00:07", + "date_unixtime": "1691870407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012765 BTC for 82.71 CZK @ 647,921 CZK\nFees are 0.29048807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 23.50 % (19.437629998881704867277103579 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38054930 BTC (193,582.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.37 % (52,983.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,350.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00012765 BTC (82.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.73 CZK over 1797 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012765 BTC for 82.71 CZK @ 647,921 CZK\nFees are 0.29048807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 23.50 % (19.437629998881704867277103579 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38054930 BTC (193,582.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.37 % (52,983.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,350.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00012765 BTC (82.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.73 CZK over 1797 transactions" + } + ] + }, + { + "id": 3385, + "type": "message", + "date": "2023-08-13T02:00:08", + "date_unixtime": "1691884808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012763 BTC for 82.71 CZK @ 648,022 CZK\nFees are 0.29048783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 11.75 % (19.440659998240897905673010560 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38067693 BTC (193,665.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.38 % (53,021.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,267.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00025528 BTC (165.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.71 CZK over 1798 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012763 BTC for 82.71 CZK @ 648,022 CZK\nFees are 0.29048783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 11.75 % (19.440659998240897905673010560 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38067693 BTC (193,665.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.38 % (53,021.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,267.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00025528 BTC (165.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.71 CZK over 1798 transactions" + } + ] + }, + { + "id": 3386, + "type": "message", + "date": "2023-08-13T06:00:06", + "date_unixtime": "1691899206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012766 BTC for 82.71 CZK @ 647,891 CZK\nFees are 0.29049737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 7.83 % (19.436729998194475375665040758 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38080459 BTC (193,748.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.34 % (52,971.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,184.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00038294 BTC (248.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.70 CZK over 1799 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012766 BTC for 82.71 CZK @ 647,891 CZK\nFees are 0.29049737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 7.83 % (19.436729998194475375665040758 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38080459 BTC (193,748.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.34 % (52,971.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,184.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00038294 BTC (248.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.70 CZK over 1799 transactions" + } + ] + }, + { + "id": 3387, + "type": "message", + "date": "2023-08-13T10:00:08", + "date_unixtime": "1691913608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012771 BTC for 82.71 CZK @ 647,639 CZK\nFees are 0.29049812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 5.87 % (19.429169998030150287945678496 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38093230 BTC (193,831.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.28 % (52,875.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,101.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00051065 BTC (330.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.68 CZK over 1800 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012771 BTC for 82.71 CZK @ 647,639 CZK\nFees are 0.29049812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 5.87 % (19.429169998030150287945678496 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38093230 BTC (193,831.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.28 % (52,875.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,101.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00051065 BTC (330.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.68 CZK over 1800 transactions" + } + ] + }, + { + "id": 3388, + "type": "message", + "date": "2023-08-13T14:00:06", + "date_unixtime": "1691928006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012776 BTC for 82.70 CZK @ 647,345 CZK\nFees are 0.29047992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 4.70 % (19.420349999953200741674645941 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38106006 BTC (193,914.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.21 % (52,763.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,018.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00063841 BTC (413.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.67 CZK over 1801 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012776 BTC for 82.70 CZK @ 647,345 CZK\nFees are 0.29047992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 4.70 % (19.420349999953200741674645941 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38106006 BTC (193,914.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.21 % (52,763.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,018.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00063841 BTC (413.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.67 CZK over 1801 transactions" + } + ] + }, + { + "id": 3389, + "type": "message", + "date": "2023-08-13T18:00:09", + "date_unixtime": "1691942409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012784 BTC for 82.71 CZK @ 646,970 CZK\nFees are 0.29049344 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.92 % (19.409099998409820945838501415 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38118790 BTC (193,997.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.12 % (52,620.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,935.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00076625 BTC (495.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.66 CZK over 1802 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012784 BTC for 82.71 CZK @ 646,970 CZK\nFees are 0.29049344 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.92 % (19.409099998409820945838501415 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38118790 BTC (193,997.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.12 % (52,620.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,935.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00076625 BTC (495.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.66 CZK over 1802 transactions" + } + ] + }, + { + "id": 3390, + "type": "message", + "date": "2023-08-13T22:00:05", + "date_unixtime": "1691956805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012760 BTC for 82.71 CZK @ 648,192 CZK\nFees are 0.29049574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.36 % (19.445759998313114131886360123 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38131550 BTC (194,080.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 508,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.35 % (53,085.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,852.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00089385 BTC (579.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.64 CZK over 1803 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012760 BTC for 82.71 CZK @ 648,192 CZK\nFees are 0.29049574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.36 % (19.445759998313114131886360123 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38131550 BTC (194,080.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 508,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.35 % (53,085.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,852.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00089385 BTC (579.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.64 CZK over 1803 transactions" + } + ] + }, + { + "id": 3391, + "type": "message", + "date": "2023-08-14T02:00:08", + "date_unixtime": "1691971208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012816 BTC for 82.71 CZK @ 645,349 CZK\nFees are 0.29049092 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.94 % (19.360469998264501212049959972 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38144366 BTC (194,163.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.78 % (52,001.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,769.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00102201 BTC (659.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.63 CZK over 1804 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012816 BTC for 82.71 CZK @ 645,349 CZK\nFees are 0.29049092 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.94 % (19.360469998264501212049959972 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38144366 BTC (194,163.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.78 % (52,001.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,769.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00102201 BTC (659.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.63 CZK over 1804 transactions" + } + ] + }, + { + "id": 3392, + "type": "message", + "date": "2023-08-14T06:00:06", + "date_unixtime": "1691985606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012774 BTC for 82.70 CZK @ 647,442 CZK\nFees are 0.29047797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.61 % (19.423259999115355532292682515 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38157140 BTC (194,246.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.18 % (52,799.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,686.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00114975 BTC (744.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.62 CZK over 1805 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012774 BTC for 82.70 CZK @ 647,442 CZK\nFees are 0.29047797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.61 % (19.423259999115355532292682515 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38157140 BTC (194,246.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.18 % (52,799.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,686.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00114975 BTC (744.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.62 CZK over 1805 transactions" + } + ] + }, + { + "id": 3393, + "type": "message", + "date": "2023-08-14T10:00:07", + "date_unixtime": "1692000007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012766 BTC for 82.71 CZK @ 647,893 CZK\nFees are 0.29049827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.35 % (19.436789999688541147812516759 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38169906 BTC (194,329.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.26 % (52,971.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,603.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00127741 BTC (827.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.60 CZK over 1806 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012766 BTC for 82.71 CZK @ 647,893 CZK\nFees are 0.29049827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.35 % (19.436789999688541147812516759 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38169906 BTC (194,329.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.26 % (52,971.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,603.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00127741 BTC (827.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.60 CZK over 1806 transactions" + } + ] + }, + { + "id": 3394, + "type": "message", + "date": "2023-08-14T14:00:06", + "date_unixtime": "1692014406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012803 BTC for 82.71 CZK @ 646,010 CZK\nFees are 0.29049349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.13 % (19.380299999754822037575974521 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38182709 BTC (194,412.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.88 % (52,252.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,520.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00140544 BTC (907.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.59 CZK over 1807 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012803 BTC for 82.71 CZK @ 646,010 CZK\nFees are 0.29049349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.13 % (19.380299999754822037575974521 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38182709 BTC (194,412.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.88 % (52,252.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,520.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00140544 BTC (907.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.59 CZK over 1807 transactions" + } + ] + }, + { + "id": 3395, + "type": "message", + "date": "2023-08-14T18:00:06", + "date_unixtime": "1692028806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012706 BTC for 82.71 CZK @ 650,939 CZK\nFees are 0.29049226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.96 % (19.528169999367082204257395669 CZK)\nThe limits being 0.10 % (1.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38195415 BTC (194,495.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.83 % (54,133.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,437.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00153250 BTC (997.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.57 CZK over 1808 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012706 BTC for 82.71 CZK @ 650,939 CZK\nFees are 0.29049226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.96 % (19.528169999367082204257395669 CZK)\nThe limits being 0.10 % (1.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38195415 BTC (194,495.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.83 % (54,133.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,437.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00153250 BTC (997.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.57 CZK over 1808 transactions" + } + ] + }, + { + "id": 3396, + "type": "message", + "date": "2023-08-14T22:00:06", + "date_unixtime": "1692043206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012769 BTC for 82.71 CZK @ 647,730 CZK\nFees are 0.29049343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.81 % (19.431899999309332521389327971 CZK)\nThe limits being 0.10 % (1.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38208184 BTC (194,578.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.19 % (52,907.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,354.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00166019 BTC (1,075.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.56 CZK over 1809 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012769 BTC for 82.71 CZK @ 647,730 CZK\nFees are 0.29049343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.81 % (19.431899999309332521389327971 CZK)\nThe limits being 0.10 % (1.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38208184 BTC (194,578.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.19 % (52,907.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,354.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00166019 BTC (1,075.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.56 CZK over 1809 transactions" + } + ] + }, + { + "id": 3397, + "type": "message", + "date": "2023-08-15T02:00:08", + "date_unixtime": "1692057608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012728 BTC for 82.71 CZK @ 649,793 CZK\nFees are 0.29048293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.68 % (19.493789998675283897934852153 CZK)\nThe limits being 0.10 % (1.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38220912 BTC (194,661.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.58 % (53,695.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,271.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00178747 BTC (1,161.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.55 CZK over 1810 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012728 BTC for 82.71 CZK @ 649,793 CZK\nFees are 0.29048293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.68 % (19.493789998675283897934852153 CZK)\nThe limits being 0.10 % (1.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38220912 BTC (194,661.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.58 % (53,695.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,271.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00178747 BTC (1,161.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.55 CZK over 1810 transactions" + } + ] + }, + { + "id": 3398, + "type": "message", + "date": "2023-08-15T06:00:07", + "date_unixtime": "1692072007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012756 BTC for 82.71 CZK @ 648,400 CZK\nFees are 0.29049786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.57 % (19.451999999062547312065344203 CZK)\nThe limits being 0.10 % (1.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38233668 BTC (194,744.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.30 % (53,163.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,188.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00191503 BTC (1,241.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.53 CZK over 1811 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012756 BTC for 82.71 CZK @ 648,400 CZK\nFees are 0.29049786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.57 % (19.451999999062547312065344203 CZK)\nThe limits being 0.10 % (1.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38233668 BTC (194,744.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.30 % (53,163.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,188.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00191503 BTC (1,241.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.53 CZK over 1811 transactions" + } + ] + }, + { + "id": 3399, + "type": "message", + "date": "2023-08-15T10:00:07", + "date_unixtime": "1692086407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012759 BTC for 82.71 CZK @ 648,244 CZK\nFees are 0.29049627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.47 % (19.447319999564186996113180637 CZK)\nThe limits being 0.10 % (1.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38246427 BTC (194,827.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.26 % (53,103.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,105.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00204262 BTC (1,324.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.52 CZK over 1812 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012759 BTC for 82.71 CZK @ 648,244 CZK\nFees are 0.29049627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.47 % (19.447319999564186996113180637 CZK)\nThe limits being 0.10 % (1.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38246427 BTC (194,827.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.26 % (53,103.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,105.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00204262 BTC (1,324.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.52 CZK over 1812 transactions" + } + ] + }, + { + "id": 3400, + "type": "message", + "date": "2023-08-15T14:00:06", + "date_unixtime": "1692100806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012735 BTC for 82.71 CZK @ 649,433 CZK\nFees are 0.29048166 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.38 % (19.482989999078607676430490926 CZK)\nThe limits being 0.10 % (1.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38259162 BTC (194,910.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.48 % (53,557.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,022.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00216997 BTC (1,409.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.51 CZK over 1813 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012735 BTC for 82.71 CZK @ 649,433 CZK\nFees are 0.29048166 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.38 % (19.482989999078607676430490926 CZK)\nThe limits being 0.10 % (1.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38259162 BTC (194,910.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.48 % (53,557.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,022.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00216997 BTC (1,409.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.51 CZK over 1813 transactions" + } + ] + }, + { + "id": 3401, + "type": "message", + "date": "2023-08-15T18:00:06", + "date_unixtime": "1692115206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012759 BTC for 82.71 CZK @ 648,250 CZK\nFees are 0.29049896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.31 % (19.447499999707114916742728923 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38271921 BTC (194,993.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 648,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.23 % (53,104.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,939.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00229756 BTC (1,489.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.49 CZK over 1814 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012759 BTC for 82.71 CZK @ 648,250 CZK\nFees are 0.29049896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.31 % (19.447499999707114916742728923 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38271921 BTC (194,993.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 648,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.23 % (53,104.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,939.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00229756 BTC (1,489.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.49 CZK over 1814 transactions" + } + ] + }, + { + "id": 3402, + "type": "message", + "date": "2023-08-15T22:00:11", + "date_unixtime": "1692129611", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012786 BTC for 82.70 CZK @ 646,834 CZK\nFees are 0.29047781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (25.873359998958751518130154657 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38284707 BTC (195,076.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.94 % (52,562.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,856.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00242542 BTC (1,568.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.48 CZK over 1815 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012786 BTC for 82.70 CZK @ 646,834 CZK\nFees are 0.29047781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (25.873359998958751518130154657 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38284707 BTC (195,076.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.94 % (52,562.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,856.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00242542 BTC (1,568.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.48 CZK over 1815 transactions" + } + ] + }, + { + "id": 3403, + "type": "message", + "date": "2023-08-16T02:00:08", + "date_unixtime": "1692144008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012772 BTC for 82.71 CZK @ 647,553 CZK\nFees are 0.29048228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.57 % (25.902119999357088898532555412 CZK)\nThe limits being 0.10 % (1.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38297479 BTC (195,159.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.07 % (52,837.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,773.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00255314 BTC (1,653.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.47 CZK over 1816 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012772 BTC for 82.71 CZK @ 647,553 CZK\nFees are 0.29048228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.57 % (25.902119999357088898532555412 CZK)\nThe limits being 0.10 % (1.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38297479 BTC (195,159.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.07 % (52,837.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,773.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00255314 BTC (1,653.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.47 CZK over 1816 transactions" + } + ] + }, + { + "id": 3404, + "type": "message", + "date": "2023-08-16T06:00:06", + "date_unixtime": "1692158406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012767 BTC for 82.71 CZK @ 647,828 CZK\nFees are 0.29049188 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.12 % (19.434839999377131086860591986 CZK)\nThe limits being 0.10 % (1.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38310246 BTC (195,242.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 647,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.12 % (52,942.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,690.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00268081 BTC (1,736.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.45 CZK over 1817 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012767 BTC for 82.71 CZK @ 647,828 CZK\nFees are 0.29049188 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.12 % (19.434839999377131086860591986 CZK)\nThe limits being 0.10 % (1.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38310246 BTC (195,242.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 647,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.12 % (52,942.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,690.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00268081 BTC (1,736.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.45 CZK over 1817 transactions" + } + ] + }, + { + "id": 3405, + "type": "message", + "date": "2023-08-16T10:00:07", + "date_unixtime": "1692172807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012804 BTC for 82.71 CZK @ 645,931 CZK\nFees are 0.29048065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.07 % (19.377929998052738564041786270 CZK)\nThe limits being 0.10 % (1.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38323050 BTC (195,325.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 645,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.73 % (52,215.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,607.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00280885 BTC (1,814.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.44 CZK over 1818 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012804 BTC for 82.71 CZK @ 645,931 CZK\nFees are 0.29048065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.07 % (19.377929998052738564041786270 CZK)\nThe limits being 0.10 % (1.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38323050 BTC (195,325.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 645,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.73 % (52,215.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,607.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00280885 BTC (1,814.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.44 CZK over 1818 transactions" + } + ] + }, + { + "id": 3406, + "type": "message", + "date": "2023-08-16T14:00:09", + "date_unixtime": "1692187209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012845 BTC for 82.71 CZK @ 643,874 CZK\nFees are 0.29048280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.02 % (19.316219999173775398406084737 CZK)\nThe limits being 0.10 % (1.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38335895 BTC (195,408.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 643,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.32 % (51,426.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,524.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00293730 BTC (1,891.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.43 CZK over 1819 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012845 BTC for 82.71 CZK @ 643,874 CZK\nFees are 0.29048280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.02 % (19.316219999173775398406084737 CZK)\nThe limits being 0.10 % (1.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38335895 BTC (195,408.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 643,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.32 % (51,426.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,524.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00293730 BTC (1,891.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.43 CZK over 1819 transactions" + } + ] + }, + { + "id": 3407, + "type": "message", + "date": "2023-08-16T18:00:06", + "date_unixtime": "1692201606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012834 BTC for 82.70 CZK @ 644,414 CZK\nFees are 0.29047745 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.98 % (19.332419998914505169261488483 CZK)\nThe limits being 0.10 % (1.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38348729 BTC (195,491.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 644,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.41 % (51,633.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,441.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00306564 BTC (1,975.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.41 CZK over 1820 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012834 BTC for 82.70 CZK @ 644,414 CZK\nFees are 0.29047745 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.98 % (19.332419998914505169261488483 CZK)\nThe limits being 0.10 % (1.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38348729 BTC (195,491.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 644,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.41 % (51,633.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,441.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00306564 BTC (1,975.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.41 CZK over 1820 transactions" + } + ] + }, + { + "id": 3408, + "type": "message", + "date": "2023-08-16T22:00:08", + "date_unixtime": "1692216008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012801 BTC for 82.70 CZK @ 646,081 CZK\nFees are 0.29048003 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.94 % (19.382429999804994681726215102 CZK)\nThe limits being 0.10 % (2.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38361530 BTC (195,574.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,818 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 646,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.73 % (52,272.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,358.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00319365 BTC (2,063.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.40 CZK over 1821 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012801 BTC for 82.70 CZK @ 646,081 CZK\nFees are 0.29048003 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.94 % (19.382429999804994681726215102 CZK)\nThe limits being 0.10 % (2.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38361530 BTC (195,574.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,818 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 646,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.73 % (52,272.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,358.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00319365 BTC (2,063.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.40 CZK over 1821 transactions" + } + ] + }, + { + "id": 3409, + "type": "message", + "date": "2023-08-17T02:00:06", + "date_unixtime": "1692230406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012953 BTC for 82.71 CZK @ 638,507 CZK\nFees are 0.29048349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.90 % (19.155209999772663199838163893 CZK)\nThe limits being 0.10 % (2.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38374483 BTC (195,657.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.23 % (49,366.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,275.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00332318 BTC (2,121.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.39 CZK over 1822 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012953 BTC for 82.71 CZK @ 638,507 CZK\nFees are 0.29048349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.90 % (19.155209999772663199838163893 CZK)\nThe limits being 0.10 % (2.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38374483 BTC (195,657.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.23 % (49,366.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,275.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00332318 BTC (2,121.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.39 CZK over 1822 transactions" + } + ] + }, + { + "id": 3410, + "type": "message", + "date": "2023-08-17T06:00:08", + "date_unixtime": "1692244808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012964 BTC for 82.71 CZK @ 637,961 CZK\nFees are 0.29048156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.87 % (19.138829999045303794018067279 CZK)\nThe limits being 0.10 % (2.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38387447 BTC (195,740.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 637,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.11 % (49,156.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,192.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00345282 BTC (2,202.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.37 CZK over 1823 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012964 BTC for 82.71 CZK @ 637,961 CZK\nFees are 0.29048156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.87 % (19.138829999045303794018067279 CZK)\nThe limits being 0.10 % (2.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38387447 BTC (195,740.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 637,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.11 % (49,156.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,192.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00345282 BTC (2,202.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.37 CZK over 1823 transactions" + } + ] + }, + { + "id": 3411, + "type": "message", + "date": "2023-08-17T10:00:07", + "date_unixtime": "1692259207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012987 BTC for 82.71 CZK @ 636,862 CZK\nFees are 0.29049563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.84 % (19.105859998206784454915994528 CZK)\nThe limits being 0.10 % (2.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38400434 BTC (195,823.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.89 % (48,734.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,109.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00358269 BTC (2,281.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.36 CZK over 1824 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012987 BTC for 82.71 CZK @ 636,862 CZK\nFees are 0.29049563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.84 % (19.105859998206784454915994528 CZK)\nThe limits being 0.10 % (2.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38400434 BTC (195,823.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.89 % (48,734.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,109.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00358269 BTC (2,281.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.36 CZK over 1824 transactions" + } + ] + }, + { + "id": 3412, + "type": "message", + "date": "2023-08-17T14:00:06", + "date_unixtime": "1692273606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013054 BTC for 82.71 CZK @ 633,585 CZK\nFees are 0.29049183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (25.343399999801522005598758872 CZK)\nThe limits being 0.10 % (2.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38413488 BTC (195,906.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 509,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 633,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 24.23 % (47,476.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,026.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00371323 BTC (2,352.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.35 CZK over 1825 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013054 BTC for 82.71 CZK @ 633,585 CZK\nFees are 0.29049183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (25.343399999801522005598758872 CZK)\nThe limits being 0.10 % (2.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38413488 BTC (195,906.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 509,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 633,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 24.23 % (47,476.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,026.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00371323 BTC (2,352.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.35 CZK over 1825 transactions" + } + ] + }, + { + "id": 3413, + "type": "message", + "date": "2023-08-17T18:00:05", + "date_unixtime": "1692288005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013296 BTC for 82.71 CZK @ 622,038 CZK\nFees are 0.29048475 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.78 % (18.661139999172571091432693154 CZK)\nThe limits being 0.10 % (2.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38426784 BTC (195,989.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.96 % (43,040.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,943.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00384619 BTC (2,392.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.33 CZK over 1826 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013296 BTC for 82.71 CZK @ 622,038 CZK\nFees are 0.29048475 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.78 % (18.661139999172571091432693154 CZK)\nThe limits being 0.10 % (2.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38426784 BTC (195,989.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.96 % (43,040.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,943.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00384619 BTC (2,392.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.33 CZK over 1826 transactions" + } + ] + }, + { + "id": 3414, + "type": "message", + "date": "2023-08-17T22:00:06", + "date_unixtime": "1692302406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013327 BTC for 82.71 CZK @ 620,619 CZK\nFees are 0.29049783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.26 % (31.030949996465062309679309931 CZK)\nThe limits being 0.10 % (2.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38440111 BTC (196,072.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.67 % (42,494.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,860.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00397946 BTC (2,469.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.32 CZK over 1827 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013327 BTC for 82.71 CZK @ 620,619 CZK\nFees are 0.29049783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.26 % (31.030949996465062309679309931 CZK)\nThe limits being 0.10 % (2.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38440111 BTC (196,072.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.67 % (42,494.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,860.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00397946 BTC (2,469.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.32 CZK over 1827 transactions" + } + ] + }, + { + "id": 3415, + "type": "message", + "date": "2023-08-18T02:00:06", + "date_unixtime": "1692316806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013964 BTC for 82.71 CZK @ 592,283 CZK\nFees are 0.29048555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (29.614149998779693587482482179 CZK)\nThe limits being 0.10 % (2.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38454075 BTC (196,155.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.11 % (31,601.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,777.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00411910 BTC (2,439.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.31 CZK over 1828 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013964 BTC for 82.71 CZK @ 592,283 CZK\nFees are 0.29048555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (29.614149998779693587482482179 CZK)\nThe limits being 0.10 % (2.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38454075 BTC (196,155.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.11 % (31,601.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,777.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00411910 BTC (2,439.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.31 CZK over 1828 transactions" + } + ] + }, + { + "id": 3416, + "type": "message", + "date": "2023-08-18T06:00:06", + "date_unixtime": "1692331206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014089 BTC for 82.71 CZK @ 587,048 CZK\nFees are 0.29049536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.94 % (23.481919998721205145324461128 CZK)\nThe limits being 0.10 % (2.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38468164 BTC (196,238.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.08 % (29,588.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,694.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00425999 BTC (2,500.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.29 CZK over 1829 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014089 BTC for 82.71 CZK @ 587,048 CZK\nFees are 0.29049536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.94 % (23.481919998721205145324461128 CZK)\nThe limits being 0.10 % (2.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38468164 BTC (196,238.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.08 % (29,588.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,694.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00425999 BTC (2,500.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.29 CZK over 1829 transactions" + } + ] + }, + { + "id": 3417, + "type": "message", + "date": "2023-08-18T10:00:05", + "date_unixtime": "1692345605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014074 BTC for 82.71 CZK @ 587,651 CZK\nFees are 0.29048415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.91 % (23.506039998275185635270159670 CZK)\nThe limits being 0.10 % (2.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38482238 BTC (196,321.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.19 % (29,820.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,611.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00440073 BTC (2,586.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.28 CZK over 1830 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014074 BTC for 82.71 CZK @ 587,651 CZK\nFees are 0.29048415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.91 % (23.506039998275185635270159670 CZK)\nThe limits being 0.10 % (2.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38482238 BTC (196,321.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.19 % (29,820.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,611.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00440073 BTC (2,586.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.28 CZK over 1830 transactions" + } + ] + }, + { + "id": 3418, + "type": "message", + "date": "2023-08-18T14:00:05", + "date_unixtime": "1692360005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014033 BTC for 82.71 CZK @ 589,400 CZK\nFees are 0.29049996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.66 % (17.681999998508746785949880897 CZK)\nThe limits being 0.10 % (2.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38496271 BTC (196,404.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.53 % (30,493.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,528.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00454106 BTC (2,676.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.27 CZK over 1831 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014033 BTC for 82.71 CZK @ 589,400 CZK\nFees are 0.29049996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.66 % (17.681999998508746785949880897 CZK)\nThe limits being 0.10 % (2.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38496271 BTC (196,404.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.53 % (30,493.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,528.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00454106 BTC (2,676.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.27 CZK over 1831 transactions" + } + ] + }, + { + "id": 3419, + "type": "message", + "date": "2023-08-18T18:00:06", + "date_unixtime": "1692374406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014371 BTC for 82.71 CZK @ 575,511 CZK\nFees are 0.29048656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (28.775549999883852345196238744 CZK)\nThe limits being 0.10 % (2.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38510642 BTC (196,487.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.80 % (25,145.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,445.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00468477 BTC (2,696.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.25 CZK over 1832 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014371 BTC for 82.71 CZK @ 575,511 CZK\nFees are 0.29048656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (28.775549999883852345196238744 CZK)\nThe limits being 0.10 % (2.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38510642 BTC (196,487.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.80 % (25,145.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,445.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00468477 BTC (2,696.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.25 CZK over 1832 transactions" + } + ] + }, + { + "id": 3420, + "type": "message", + "date": "2023-08-18T22:00:07", + "date_unixtime": "1692388807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014305 BTC for 82.71 CZK @ 578,190 CZK\nFees are 0.29049848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (28.909499997126450293598410458 CZK)\nThe limits being 0.10 % (2.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38524947 BTC (196,570.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.32 % (26,177.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,362.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00482782 BTC (2,791.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.24 CZK over 1833 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014305 BTC for 82.71 CZK @ 578,190 CZK\nFees are 0.29049848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (28.909499997126450293598410458 CZK)\nThe limits being 0.10 % (2.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38524947 BTC (196,570.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.32 % (26,177.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,362.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00482782 BTC (2,791.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.24 CZK over 1833 transactions" + } + ] + }, + { + "id": 3421, + "type": "message", + "date": "2023-08-19T02:00:06", + "date_unixtime": "1692403206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014290 BTC for 82.71 CZK @ 578,766 CZK\nFees are 0.29048296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (34.725959997949792939547134367 CZK)\nThe limits being 0.10 % (2.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38539237 BTC (196,653.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.42 % (26,398.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,279.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00497072 BTC (2,876.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.23 CZK over 1834 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014290 BTC for 82.71 CZK @ 578,766 CZK\nFees are 0.29048296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (34.725959997949792939547134367 CZK)\nThe limits being 0.10 % (2.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38539237 BTC (196,653.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.42 % (26,398.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,279.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00497072 BTC (2,876.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.23 CZK over 1834 transactions" + } + ] + }, + { + "id": 3422, + "type": "message", + "date": "2023-08-19T06:00:05", + "date_unixtime": "1692417605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014356 BTC for 82.71 CZK @ 576,107 CZK\nFees are 0.29048387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.17 % (34.566419998658915028939530813 CZK)\nThe limits being 0.10 % (2.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38553593 BTC (196,736.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.90 % (25,373.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,196.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00511428 BTC (2,946.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.21 CZK over 1835 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014356 BTC for 82.71 CZK @ 576,107 CZK\nFees are 0.29048387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.17 % (34.566419998658915028939530813 CZK)\nThe limits being 0.10 % (2.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38553593 BTC (196,736.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.90 % (25,373.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,196.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00511428 BTC (2,946.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.21 CZK over 1835 transactions" + } + ] + }, + { + "id": 3423, + "type": "message", + "date": "2023-08-19T10:00:05", + "date_unixtime": "1692432005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014380 BTC for 82.71 CZK @ 575,163 CZK\nFees are 0.29049272 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (34.509779996715251834157638808 CZK)\nThe limits being 0.10 % (3.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38567973 BTC (196,819.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.71 % (25,009.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,113.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00525808 BTC (3,024.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.20 CZK over 1836 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014380 BTC for 82.71 CZK @ 575,163 CZK\nFees are 0.29049272 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (34.509779996715251834157638808 CZK)\nThe limits being 0.10 % (3.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38567973 BTC (196,819.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.71 % (25,009.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,113.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00525808 BTC (3,024.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.20 CZK over 1836 transactions" + } + ] + }, + { + "id": 3424, + "type": "message", + "date": "2023-08-19T14:00:05", + "date_unixtime": "1692446405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014373 BTC for 82.71 CZK @ 575,423 CZK\nFees are 0.29048256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (17.262689998488903947850234469 CZK)\nThe limits being 0.10 % (3.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38582346 BTC (196,902.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.75 % (25,109.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,030.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00540181 BTC (3,108.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.19 CZK over 1837 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014373 BTC for 82.71 CZK @ 575,423 CZK\nFees are 0.29048256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (17.262689998488903947850234469 CZK)\nThe limits being 0.10 % (3.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38582346 BTC (196,902.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.75 % (25,109.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,030.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00540181 BTC (3,108.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.19 CZK over 1837 transactions" + } + ] + }, + { + "id": 3425, + "type": "message", + "date": "2023-08-19T18:00:06", + "date_unixtime": "1692460806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014200 BTC for 82.71 CZK @ 582,440 CZK\nFees are 0.29048583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.54 % (17.47320 CZK)\nThe limits being 0.10 % (3.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38596546 BTC (196,984.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.12 % (27,816.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,947.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00554381 BTC (3,228.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.17 CZK over 1838 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014200 BTC for 82.71 CZK @ 582,440 CZK\nFees are 0.29048583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.54 % (17.47320 CZK)\nThe limits being 0.10 % (3.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38596546 BTC (196,984.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.12 % (27,816.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,947.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00554381 BTC (3,228.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.17 CZK over 1838 transactions" + } + ] + }, + { + "id": 3426, + "type": "message", + "date": "2023-08-19T22:00:06", + "date_unixtime": "1692475206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014236 BTC for 82.71 CZK @ 580,963 CZK\nFees are 0.29048377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.53 % (17.428889999080207192779752462 CZK)\nThe limits being 0.10 % (3.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38610782 BTC (197,067.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.83 % (27,246.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,864.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00568617 BTC (3,303.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.16 CZK over 1839 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014236 BTC for 82.71 CZK @ 580,963 CZK\nFees are 0.29048377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.53 % (17.428889999080207192779752462 CZK)\nThe limits being 0.10 % (3.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38610782 BTC (197,067.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.83 % (27,246.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,864.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00568617 BTC (3,303.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.16 CZK over 1839 transactions" + } + ] + }, + { + "id": 3427, + "type": "message", + "date": "2023-08-20T02:00:06", + "date_unixtime": "1692489606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014259 BTC for 82.71 CZK @ 580,039 CZK\nFees are 0.29049033 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.51 % (17.401169999258853218448244107 CZK)\nThe limits being 0.10 % (3.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38625041 BTC (197,150.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.64 % (26,889.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,781.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00582876 BTC (3,380.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.15 CZK over 1840 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014259 BTC for 82.71 CZK @ 580,039 CZK\nFees are 0.29049033 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.51 % (17.401169999258853218448244107 CZK)\nThe limits being 0.10 % (3.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38625041 BTC (197,150.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.64 % (26,889.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,781.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00582876 BTC (3,380.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.15 CZK over 1840 transactions" + } + ] + }, + { + "id": 3428, + "type": "message", + "date": "2023-08-20T06:00:05", + "date_unixtime": "1692504005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014259 BTC for 82.71 CZK @ 580,040 CZK\nFees are 0.29049083 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (17.401199999454884969721480814 CZK)\nThe limits being 0.10 % (3.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38639300 BTC (197,233.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.63 % (26,889.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,698.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597135 BTC (3,463.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.13 CZK over 1841 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014259 BTC for 82.71 CZK @ 580,040 CZK\nFees are 0.29049083 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (17.401199999454884969721480814 CZK)\nThe limits being 0.10 % (3.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38639300 BTC (197,233.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.63 % (26,889.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,698.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597135 BTC (3,463.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.13 CZK over 1841 transactions" + } + ] + }, + { + "id": 3429, + "type": "message", + "date": "2023-08-20T10:00:05", + "date_unixtime": "1692518405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014266 BTC for 82.71 CZK @ 579,750 CZK\nFees are 0.29048813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (17.392499999476108120387001028 CZK)\nThe limits being 0.10 % (3.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38653566 BTC (197,316.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.57 % (26,777.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,615.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00611401 BTC (3,544.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.12 CZK over 1842 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014266 BTC for 82.71 CZK @ 579,750 CZK\nFees are 0.29048813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (17.392499999476108120387001028 CZK)\nThe limits being 0.10 % (3.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38653566 BTC (197,316.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.57 % (26,777.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,615.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00611401 BTC (3,544.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.12 CZK over 1842 transactions" + } + ] + }, + { + "id": 3430, + "type": "message", + "date": "2023-08-20T14:00:05", + "date_unixtime": "1692532805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014209 BTC for 82.71 CZK @ 582,091 CZK\nFees are 0.29049577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (17.462729998808098742865029753 CZK)\nThe limits being 0.10 % (3.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38667775 BTC (197,399.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.02 % (27,681.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,532.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00625610 BTC (3,641.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.11 CZK over 1843 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014209 BTC for 82.71 CZK @ 582,091 CZK\nFees are 0.29049577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (17.462729998808098742865029753 CZK)\nThe limits being 0.10 % (3.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38667775 BTC (197,399.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.02 % (27,681.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,532.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00625610 BTC (3,641.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.11 CZK over 1843 transactions" + } + ] + }, + { + "id": 3431, + "type": "message", + "date": "2023-08-20T18:00:05", + "date_unixtime": "1692547205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014251 BTC for 82.71 CZK @ 580,350 CZK\nFees are 0.29048302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (17.410499999003557718499601265 CZK)\nThe limits being 0.10 % (3.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38682026 BTC (197,482.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.68 % (27,008.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,449.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00639861 BTC (3,713.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.09 CZK over 1844 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014251 BTC for 82.71 CZK @ 580,350 CZK\nFees are 0.29048302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (17.410499999003557718499601265 CZK)\nThe limits being 0.10 % (3.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38682026 BTC (197,482.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.68 % (27,008.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,449.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00639861 BTC (3,713.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.09 CZK over 1844 transactions" + } + ] + }, + { + "id": 3432, + "type": "message", + "date": "2023-08-20T22:00:05", + "date_unixtime": "1692561605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014236 BTC for 82.71 CZK @ 580,963 CZK\nFees are 0.29048377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (17.428889999080207192779752462 CZK)\nThe limits being 0.10 % (3.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38696262 BTC (197,565.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.79 % (27,244.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,366.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00654097 BTC (3,800.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.08 CZK over 1845 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014236 BTC for 82.71 CZK @ 580,963 CZK\nFees are 0.29048377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (17.428889999080207192779752462 CZK)\nThe limits being 0.10 % (3.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38696262 BTC (197,565.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.79 % (27,244.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,366.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00654097 BTC (3,800.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.08 CZK over 1845 transactions" + } + ] + }, + { + "id": 3433, + "type": "message", + "date": "2023-08-21T02:00:06", + "date_unixtime": "1692576006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014218 BTC for 82.71 CZK @ 581,719 CZK\nFees are 0.29049401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (17.451569998744722631010901988 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38710480 BTC (197,648.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.93 % (27,537.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,283.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00668315 BTC (3,887.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.07 CZK over 1846 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014218 BTC for 82.71 CZK @ 581,719 CZK\nFees are 0.29049401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (17.451569998744722631010901988 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38710480 BTC (197,648.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.93 % (27,537.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,283.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00668315 BTC (3,887.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.07 CZK over 1846 transactions" + } + ] + }, + { + "id": 3434, + "type": "message", + "date": "2023-08-21T06:00:05", + "date_unixtime": "1692590405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014301 BTC for 82.71 CZK @ 578,342 CZK\nFees are 0.29049359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (17.350259999379139656889997657 CZK)\nThe limits being 0.10 % (3.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38724781 BTC (197,731.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.27 % (26,229.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,200.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00682616 BTC (3,947.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.06 CZK over 1847 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014301 BTC for 82.71 CZK @ 578,342 CZK\nFees are 0.29049359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (17.350259999379139656889997657 CZK)\nThe limits being 0.10 % (3.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38724781 BTC (197,731.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.27 % (26,229.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,200.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00682616 BTC (3,947.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.06 CZK over 1847 transactions" + } + ] + }, + { + "id": 3435, + "type": "message", + "date": "2023-08-21T10:00:04", + "date_unixtime": "1692604804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014382 BTC for 82.71 CZK @ 575,081 CZK\nFees are 0.29049170 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (17.252429999382636367207888784 CZK)\nThe limits being 0.10 % (4.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38739163 BTC (197,814.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.62 % (24,966.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,117.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00696998 BTC (4,008.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.04 CZK over 1848 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014382 BTC for 82.71 CZK @ 575,081 CZK\nFees are 0.29049170 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (17.252429999382636367207888784 CZK)\nThe limits being 0.10 % (4.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38739163 BTC (197,814.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.62 % (24,966.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,117.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00696998 BTC (4,008.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.04 CZK over 1848 transactions" + } + ] + }, + { + "id": 3436, + "type": "message", + "date": "2023-08-21T14:00:06", + "date_unixtime": "1692619206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014390 BTC for 82.70 CZK @ 574,739 CZK\nFees are 0.29048043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (17.242169998473030286976818107 CZK)\nThe limits being 0.10 % (4.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38753553 BTC (197,897.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.55 % (24,833.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,034.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00711388 BTC (4,088.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.03 CZK over 1849 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014390 BTC for 82.70 CZK @ 574,739 CZK\nFees are 0.29048043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (17.242169998473030286976818107 CZK)\nThe limits being 0.10 % (4.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38753553 BTC (197,897.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.55 % (24,833.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,034.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00711388 BTC (4,088.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.03 CZK over 1849 transactions" + } + ] + }, + { + "id": 3437, + "type": "message", + "date": "2023-08-21T18:00:05", + "date_unixtime": "1692633605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014404 BTC for 82.71 CZK @ 574,186 CZK\nFees are 0.29048328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (17.225579999991698037706682541 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38767957 BTC (197,980.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.44 % (24,619.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,951.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00725792 BTC (4,167.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.02 CZK over 1850 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014404 BTC for 82.71 CZK @ 574,186 CZK\nFees are 0.29048328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (17.225579999991698037706682541 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38767957 BTC (197,980.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.44 % (24,619.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,951.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00725792 BTC (4,167.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.02 CZK over 1850 transactions" + } + ] + }, + { + "id": 3438, + "type": "message", + "date": "2023-08-21T22:00:05", + "date_unixtime": "1692648005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014328 BTC for 82.71 CZK @ 577,252 CZK\nFees are 0.29049351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (17.317559999382396119444590500 CZK)\nThe limits being 0.10 % (4.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38782285 BTC (198,063.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.03 % (25,807.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,868.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00740120 BTC (4,272.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 107.00 CZK over 1851 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014328 BTC for 82.71 CZK @ 577,252 CZK\nFees are 0.29049351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (17.317559999382396119444590500 CZK)\nThe limits being 0.10 % (4.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38782285 BTC (198,063.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.03 % (25,807.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,868.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00740120 BTC (4,272.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 107.00 CZK over 1851 transactions" + } + ] + }, + { + "id": 3439, + "type": "message", + "date": "2023-08-22T02:00:06", + "date_unixtime": "1692662406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014313 BTC for 82.71 CZK @ 577,842 CZK\nFees are 0.29048599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (17.335259998097206831215457699 CZK)\nThe limits being 0.10 % (4.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38796598 BTC (198,146.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.14 % (26,036.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,785.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00754433 BTC (4,359.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.99 CZK over 1852 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014313 BTC for 82.71 CZK @ 577,842 CZK\nFees are 0.29048599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (17.335259998097206831215457699 CZK)\nThe limits being 0.10 % (4.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38796598 BTC (198,146.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.14 % (26,036.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,785.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00754433 BTC (4,359.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.99 CZK over 1852 transactions" + } + ] + }, + { + "id": 3440, + "type": "message", + "date": "2023-08-22T06:00:06", + "date_unixtime": "1692676806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014364 BTC for 82.71 CZK @ 575,802 CZK\nFees are 0.29049187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (17.274059998443209834917804392 CZK)\nThe limits being 0.10 % (4.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38810962 BTC (198,229.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.73 % (25,244.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,703.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00768797 BTC (4,426.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.98 CZK over 1853 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014364 BTC for 82.71 CZK @ 575,802 CZK\nFees are 0.29049187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (17.274059998443209834917804392 CZK)\nThe limits being 0.10 % (4.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38810962 BTC (198,229.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.73 % (25,244.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,703.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00768797 BTC (4,426.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.98 CZK over 1853 transactions" + } + ] + }, + { + "id": 3441, + "type": "message", + "date": "2023-08-22T10:00:05", + "date_unixtime": "1692691205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014384 BTC for 82.71 CZK @ 575,000 CZK\nFees are 0.29049117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (17.25000 CZK)\nThe limits being 0.10 % (4.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38825346 BTC (198,312.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.57 % (24,932.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,620.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00783181 BTC (4,503.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.96 CZK over 1854 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014384 BTC for 82.71 CZK @ 575,000 CZK\nFees are 0.29049117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (17.25000 CZK)\nThe limits being 0.10 % (4.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38825346 BTC (198,312.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.57 % (24,932.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,620.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00783181 BTC (4,503.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.96 CZK over 1854 transactions" + } + ] + }, + { + "id": 3442, + "type": "message", + "date": "2023-08-22T14:00:06", + "date_unixtime": "1692705606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014341 BTC for 82.71 CZK @ 576,710 CZK\nFees are 0.29048408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (17.301299999197425842408414562 CZK)\nThe limits being 0.10 % (4.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38839687 BTC (198,395.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.90 % (25,596.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,537.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00797522 BTC (4,599.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.95 CZK over 1855 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014341 BTC for 82.71 CZK @ 576,710 CZK\nFees are 0.29048408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (17.301299999197425842408414562 CZK)\nThe limits being 0.10 % (4.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38839687 BTC (198,395.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.90 % (25,596.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,537.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00797522 BTC (4,599.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.95 CZK over 1855 transactions" + } + ] + }, + { + "id": 3443, + "type": "message", + "date": "2023-08-22T18:00:05", + "date_unixtime": "1692720005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014304 BTC for 82.71 CZK @ 578,217 CZK\nFees are 0.29049173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (23.128679997525439485291412942 CZK)\nThe limits being 0.10 % (4.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38853991 BTC (198,478.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.19 % (26,181.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,454.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00811826 BTC (4,694.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.94 CZK over 1856 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014304 BTC for 82.71 CZK @ 578,217 CZK\nFees are 0.29049173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (23.128679997525439485291412942 CZK)\nThe limits being 0.10 % (4.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38853991 BTC (198,478.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.19 % (26,181.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,454.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00811826 BTC (4,694.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.94 CZK over 1856 transactions" + } + ] + }, + { + "id": 3444, + "type": "message", + "date": "2023-08-22T22:00:06", + "date_unixtime": "1692734406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014390 BTC for 82.71 CZK @ 574,752 CZK\nFees are 0.29048700 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (34.485119998005590578908497120 CZK)\nThe limits being 0.10 % (4.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38868381 BTC (198,561.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.51 % (24,834.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,371.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00826216 BTC (4,748.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.93 CZK over 1857 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014390 BTC for 82.71 CZK @ 574,752 CZK\nFees are 0.29048700 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (34.485119998005590578908497120 CZK)\nThe limits being 0.10 % (4.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38868381 BTC (198,561.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.51 % (24,834.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,371.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00826216 BTC (4,748.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.93 CZK over 1857 transactions" + } + ] + }, + { + "id": 3445, + "type": "message", + "date": "2023-08-23T02:00:06", + "date_unixtime": "1692748806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014285 BTC for 82.71 CZK @ 578,984 CZK\nFees are 0.29049070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (28.949199998116497753138778016 CZK)\nThe limits being 0.10 % (4.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38882666 BTC (198,644.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.33 % (26,479.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,288.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00840501 BTC (4,866.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.91 CZK over 1858 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014285 BTC for 82.71 CZK @ 578,984 CZK\nFees are 0.29049070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (28.949199998116497753138778016 CZK)\nThe limits being 0.10 % (4.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38882666 BTC (198,644.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.33 % (26,479.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,288.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00840501 BTC (4,866.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.91 CZK over 1858 transactions" + } + ] + }, + { + "id": 3446, + "type": "message", + "date": "2023-08-23T06:00:05", + "date_unixtime": "1692763205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014303 BTC for 82.71 CZK @ 578,236 CZK\nFees are 0.29048097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (17.347079999418939256892284402 CZK)\nThe limits being 0.10 % (4.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38896969 BTC (198,727.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.18 % (26,188.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,205.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00854804 BTC (4,942.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.90 CZK over 1859 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014303 BTC for 82.71 CZK @ 578,236 CZK\nFees are 0.29048097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (17.347079999418939256892284402 CZK)\nThe limits being 0.10 % (4.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38896969 BTC (198,727.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.18 % (26,188.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,205.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00854804 BTC (4,942.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.90 CZK over 1859 transactions" + } + ] + }, + { + "id": 3447, + "type": "message", + "date": "2023-08-23T10:00:06", + "date_unixtime": "1692777606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014218 BTC for 82.71 CZK @ 581,714 CZK\nFees are 0.29049151 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (17.451419998355733831575419357 CZK)\nThe limits being 0.10 % (5.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38911187 BTC (198,810.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.85 % (27,540.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,122.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00869022 BTC (5,055.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.89 CZK over 1860 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014218 BTC for 82.71 CZK @ 581,714 CZK\nFees are 0.29049151 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (17.451419998355733831575419357 CZK)\nThe limits being 0.10 % (5.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38911187 BTC (198,810.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.85 % (27,540.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,122.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00869022 BTC (5,055.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.89 CZK over 1860 transactions" + } + ] + }, + { + "id": 3448, + "type": "message", + "date": "2023-08-23T14:00:06", + "date_unixtime": "1692792006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014271 BTC for 82.71 CZK @ 579,550 CZK\nFees are 0.29048970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (17.386499999633404170121832363 CZK)\nThe limits being 0.10 % (5.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38925458 BTC (198,893.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.42 % (26,698.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,039.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00883293 BTC (5,119.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.87 CZK over 1861 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014271 BTC for 82.71 CZK @ 579,550 CZK\nFees are 0.29048970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (17.386499999633404170121832363 CZK)\nThe limits being 0.10 % (5.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38925458 BTC (198,893.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.42 % (26,698.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,039.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00883293 BTC (5,119.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.87 CZK over 1861 transactions" + } + ] + }, + { + "id": 3449, + "type": "message", + "date": "2023-08-23T18:00:05", + "date_unixtime": "1692806405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014241 BTC for 82.71 CZK @ 580,785 CZK\nFees are 0.29049676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (17.423549999690361174272183444 CZK)\nThe limits being 0.10 % (5.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38939699 BTC (198,976.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 510,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.66 % (27,179.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,956.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00897534 BTC (5,212.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.86 CZK over 1862 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014241 BTC for 82.71 CZK @ 580,785 CZK\nFees are 0.29049676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (17.423549999690361174272183444 CZK)\nThe limits being 0.10 % (5.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38939699 BTC (198,976.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 510,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.66 % (27,179.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,956.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00897534 BTC (5,212.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.86 CZK over 1862 transactions" + } + ] + }, + { + "id": 3450, + "type": "message", + "date": "2023-08-23T22:00:06", + "date_unixtime": "1692820806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013993 BTC for 82.71 CZK @ 591,081 CZK\nFees are 0.29049807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (29.554049998164432062995694586 CZK)\nThe limits being 0.10 % (5.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38953692 BTC (199,059.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 591,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.67 % (31,187.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,873.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00911527 BTC (5,387.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.85 CZK over 1863 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013993 BTC for 82.71 CZK @ 591,081 CZK\nFees are 0.29049807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (29.554049998164432062995694586 CZK)\nThe limits being 0.10 % (5.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38953692 BTC (199,059.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 591,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.67 % (31,187.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,873.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00911527 BTC (5,387.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.85 CZK over 1863 transactions" + } + ] + }, + { + "id": 3451, + "type": "message", + "date": "2023-08-24T02:00:05", + "date_unixtime": "1692835205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014090 BTC for 82.71 CZK @ 586,983 CZK\nFees are 0.29048381 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (29.349149997719125714364521902 CZK)\nThe limits being 0.10 % (5.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38967782 BTC (199,142.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.86 % (29,591.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,790.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00925617 BTC (5,433.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.84 CZK over 1864 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014090 BTC for 82.71 CZK @ 586,983 CZK\nFees are 0.29048381 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (29.349149997719125714364521902 CZK)\nThe limits being 0.10 % (5.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38967782 BTC (199,142.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.86 % (29,591.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,790.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00925617 BTC (5,433.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.84 CZK over 1864 transactions" + } + ] + }, + { + "id": 3452, + "type": "message", + "date": "2023-08-24T06:00:05", + "date_unixtime": "1692849605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014091 BTC for 82.71 CZK @ 586,960 CZK\nFees are 0.29049305 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (29.347999997312648933614897005 CZK)\nThe limits being 0.10 % (5.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38981873 BTC (199,225.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.85 % (29,582.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,707.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00939708 BTC (5,515.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.82 CZK over 1865 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014091 BTC for 82.71 CZK @ 586,960 CZK\nFees are 0.29049305 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (29.347999997312648933614897005 CZK)\nThe limits being 0.10 % (5.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38981873 BTC (199,225.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.85 % (29,582.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,707.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00939708 BTC (5,515.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.82 CZK over 1865 transactions" + } + ] + }, + { + "id": 3453, + "type": "message", + "date": "2023-08-24T10:00:05", + "date_unixtime": "1692864005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014027 BTC for 82.71 CZK @ 589,623 CZK\nFees are 0.29048562 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (17.688689999203969538567675856 CZK)\nThe limits being 0.10 % (5.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.38995900 BTC (199,308.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.36 % (30,619.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,624.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00953735 BTC (5,623.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.81 CZK over 1866 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014027 BTC for 82.71 CZK @ 589,623 CZK\nFees are 0.29048562 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (17.688689999203969538567675856 CZK)\nThe limits being 0.10 % (5.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.38995900 BTC (199,308.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.36 % (30,619.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,624.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00953735 BTC (5,623.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.81 CZK over 1866 transactions" + } + ] + }, + { + "id": 3454, + "type": "message", + "date": "2023-08-24T14:00:05", + "date_unixtime": "1692878405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014023 BTC for 82.71 CZK @ 589,803 CZK\nFees are 0.29049144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (17.694089999698338849042257823 CZK)\nThe limits being 0.10 % (5.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39009923 BTC (199,391.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.39 % (30,689.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,541.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00967758 BTC (5,707.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.80 CZK over 1867 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014023 BTC for 82.71 CZK @ 589,803 CZK\nFees are 0.29049144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (17.694089999698338849042257823 CZK)\nThe limits being 0.10 % (5.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39009923 BTC (199,391.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.39 % (30,689.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,541.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00967758 BTC (5,707.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.80 CZK over 1867 transactions" + } + ] + }, + { + "id": 3455, + "type": "message", + "date": "2023-08-24T18:00:05", + "date_unixtime": "1692892805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014179 BTC for 82.71 CZK @ 583,296 CZK\nFees are 0.29048253 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (29.164799996682743763075093720 CZK)\nThe limits being 0.10 % (5.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39024102 BTC (199,474.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.11 % (28,151.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,458.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00981937 BTC (5,727.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.79 CZK over 1868 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014179 BTC for 82.71 CZK @ 583,296 CZK\nFees are 0.29048253 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (29.164799996682743763075093720 CZK)\nThe limits being 0.10 % (5.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39024102 BTC (199,474.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.11 % (28,151.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,458.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00981937 BTC (5,727.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.79 CZK over 1868 transactions" + } + ] + }, + { + "id": 3456, + "type": "message", + "date": "2023-08-24T22:00:05", + "date_unixtime": "1692907205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014159 BTC for 82.71 CZK @ 584,133 CZK\nFees are 0.29048904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (23.365319999959179526787256679 CZK)\nThe limits being 0.10 % (5.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39038261 BTC (199,557.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.27 % (28,477.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,375.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00996096 BTC (5,818.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.77 CZK over 1869 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014159 BTC for 82.71 CZK @ 584,133 CZK\nFees are 0.29048904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (23.365319999959179526787256679 CZK)\nThe limits being 0.10 % (5.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39038261 BTC (199,557.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.27 % (28,477.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,375.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00996096 BTC (5,818.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.77 CZK over 1869 transactions" + } + ] + }, + { + "id": 3457, + "type": "message", + "date": "2023-08-25T02:00:06", + "date_unixtime": "1692921606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014092 BTC for 82.71 CZK @ 586,917 CZK\nFees are 0.29049238 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (23.476679999224966378673790187 CZK)\nThe limits being 0.10 % (5.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39052353 BTC (199,640.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.81 % (29,564.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,292.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01010188 BTC (5,928.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.76 CZK over 1870 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014092 BTC for 82.71 CZK @ 586,917 CZK\nFees are 0.29049238 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (23.476679999224966378673790187 CZK)\nThe limits being 0.10 % (5.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39052353 BTC (199,640.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.81 % (29,564.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,292.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01010188 BTC (5,928.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.76 CZK over 1870 transactions" + } + ] + }, + { + "id": 3458, + "type": "message", + "date": "2023-08-25T06:00:05", + "date_unixtime": "1692936005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014082 BTC for 82.71 CZK @ 587,338 CZK\nFees are 0.29049446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (23.493519999983016408908827624 CZK)\nThe limits being 0.10 % (6.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39066435 BTC (199,723.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.88 % (29,728.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,209.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01024270 BTC (6,015.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.75 CZK over 1871 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014082 BTC for 82.71 CZK @ 587,338 CZK\nFees are 0.29049446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (23.493519999983016408908827624 CZK)\nThe limits being 0.10 % (6.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39066435 BTC (199,723.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.88 % (29,728.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,209.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01024270 BTC (6,015.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.75 CZK over 1871 transactions" + } + ] + }, + { + "id": 3459, + "type": "message", + "date": "2023-08-25T10:00:06", + "date_unixtime": "1692950406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014146 BTC for 82.71 CZK @ 584,672 CZK\nFees are 0.29049012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (23.386879998895425462316925401 CZK)\nThe limits being 0.10 % (6.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39080581 BTC (199,806.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.36 % (28,686.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,126.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01038416 BTC (6,071.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.73 CZK over 1872 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014146 BTC for 82.71 CZK @ 584,672 CZK\nFees are 0.29049012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (23.386879998895425462316925401 CZK)\nThe limits being 0.10 % (6.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39080581 BTC (199,806.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.36 % (28,686.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,126.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01038416 BTC (6,071.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.73 CZK over 1872 transactions" + } + ] + }, + { + "id": 3460, + "type": "message", + "date": "2023-08-25T14:00:05", + "date_unixtime": "1692964805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014154 BTC for 82.71 CZK @ 584,336 CZK\nFees are 0.29048737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (17.530079999780336435869961704 CZK)\nThe limits being 0.10 % (6.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39094735 BTC (199,889.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.29 % (28,554.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,043.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01052570 BTC (6,150.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.72 CZK over 1873 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014154 BTC for 82.71 CZK @ 584,336 CZK\nFees are 0.29048737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (17.530079999780336435869961704 CZK)\nThe limits being 0.10 % (6.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39094735 BTC (199,889.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.29 % (28,554.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,043.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01052570 BTC (6,150.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.72 CZK over 1873 transactions" + } + ] + }, + { + "id": 3461, + "type": "message", + "date": "2023-08-25T18:00:05", + "date_unixtime": "1692979205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014206 BTC for 82.71 CZK @ 582,222 CZK\nFees are 0.29049980 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (23.288879999826034754748637407 CZK)\nThe limits being 0.10 % (6.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39108941 BTC (199,972.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.87 % (27,727.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,960.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01066776 BTC (6,211.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.71 CZK over 1874 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014206 BTC for 82.71 CZK @ 582,222 CZK\nFees are 0.29049980 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (23.288879999826034754748637407 CZK)\nThe limits being 0.10 % (6.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39108941 BTC (199,972.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.87 % (27,727.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,960.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01066776 BTC (6,211.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.71 CZK over 1874 transactions" + } + ] + }, + { + "id": 3462, + "type": "message", + "date": "2023-08-25T22:00:06", + "date_unixtime": "1692993606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014225 BTC for 82.71 CZK @ 581,430 CZK\nFees are 0.29049264 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (29.071499999562165111039306190 CZK)\nThe limits being 0.10 % (6.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39123166 BTC (200,055.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.71 % (27,417.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,877.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01081001 BTC (6,285.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.70 CZK over 1875 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014225 BTC for 82.71 CZK @ 581,430 CZK\nFees are 0.29049264 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (29.071499999562165111039306190 CZK)\nThe limits being 0.10 % (6.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39123166 BTC (200,055.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.71 % (27,417.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,877.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01081001 BTC (6,285.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.70 CZK over 1875 transactions" + } + ] + }, + { + "id": 3463, + "type": "message", + "date": "2023-08-26T02:00:06", + "date_unixtime": "1693008006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014167 BTC for 82.71 CZK @ 583,802 CZK\nFees are 0.29048847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (29.190099999053921847402939856 CZK)\nThe limits being 0.10 % (6.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39137333 BTC (200,138.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.16 % (28,345.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,794.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01095168 BTC (6,393.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.68 CZK over 1876 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014167 BTC for 82.71 CZK @ 583,802 CZK\nFees are 0.29048847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (29.190099999053921847402939856 CZK)\nThe limits being 0.10 % (6.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39137333 BTC (200,138.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.16 % (28,345.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,794.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01095168 BTC (6,393.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.68 CZK over 1876 transactions" + } + ] + }, + { + "id": 3464, + "type": "message", + "date": "2023-08-26T06:00:05", + "date_unixtime": "1693022405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014149 BTC for 82.71 CZK @ 584,552 CZK\nFees are 0.29049209 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (29.227599996943343713639479998 CZK)\nThe limits being 0.10 % (6.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39151482 BTC (200,221.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.30 % (28,638.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,711.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01109317 BTC (6,484.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.67 CZK over 1877 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014149 BTC for 82.71 CZK @ 584,552 CZK\nFees are 0.29049209 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (29.227599996943343713639479998 CZK)\nThe limits being 0.10 % (6.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39151482 BTC (200,221.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.30 % (28,638.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,711.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01109317 BTC (6,484.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.67 CZK over 1877 transactions" + } + ] + }, + { + "id": 3465, + "type": "message", + "date": "2023-08-26T10:00:05", + "date_unixtime": "1693036805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014166 BTC for 82.71 CZK @ 583,842 CZK\nFees are 0.29048786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (29.192099999289511979848027316 CZK)\nThe limits being 0.10 % (6.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39165648 BTC (200,304.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.16 % (28,360.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,628.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01123483 BTC (6,559.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.66 CZK over 1878 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014166 BTC for 82.71 CZK @ 583,842 CZK\nFees are 0.29048786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (29.192099999289511979848027316 CZK)\nThe limits being 0.10 % (6.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39165648 BTC (200,304.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.16 % (28,360.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,628.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01123483 BTC (6,559.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.66 CZK over 1878 transactions" + } + ] + }, + { + "id": 3466, + "type": "message", + "date": "2023-08-26T14:00:05", + "date_unixtime": "1693051205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014169 BTC for 82.71 CZK @ 583,734 CZK\nFees are 0.29049564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (17.512019998605347090814163976 CZK)\nThe limits being 0.10 % (6.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39179817 BTC (200,387.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.13 % (28,318.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,545.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01137652 BTC (6,640.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.65 CZK over 1879 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014169 BTC for 82.71 CZK @ 583,734 CZK\nFees are 0.29049564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (17.512019998605347090814163976 CZK)\nThe limits being 0.10 % (6.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39179817 BTC (200,387.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.13 % (28,318.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,545.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01137652 BTC (6,640.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.65 CZK over 1879 transactions" + } + ] + }, + { + "id": 3467, + "type": "message", + "date": "2023-08-26T18:00:05", + "date_unixtime": "1693065605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014165 BTC for 82.71 CZK @ 583,883 CZK\nFees are 0.29048776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (23.355319998782939556240767622 CZK)\nThe limits being 0.10 % (6.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39193982 BTC (200,470.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.15 % (28,376.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,462.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01151817 BTC (6,725.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.63 CZK over 1880 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014165 BTC for 82.71 CZK @ 583,883 CZK\nFees are 0.29048776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (23.355319998782939556240767622 CZK)\nThe limits being 0.10 % (6.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39193982 BTC (200,470.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.15 % (28,376.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,462.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01151817 BTC (6,725.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.63 CZK over 1880 transactions" + } + ] + }, + { + "id": 3468, + "type": "message", + "date": "2023-08-26T22:00:06", + "date_unixtime": "1693080006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014167 BTC for 82.71 CZK @ 583,819 CZK\nFees are 0.29049693 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (23.352759999421802050977856178 CZK)\nThe limits being 0.10 % (6.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39208149 BTC (200,553.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.14 % (28,350.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,379.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01165984 BTC (6,807.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.62 CZK over 1881 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014167 BTC for 82.71 CZK @ 583,819 CZK\nFees are 0.29049693 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (23.352759999421802050977856178 CZK)\nThe limits being 0.10 % (6.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39208149 BTC (200,553.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.14 % (28,350.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,379.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01165984 BTC (6,807.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.62 CZK over 1881 transactions" + } + ] + }, + { + "id": 3469, + "type": "message", + "date": "2023-08-27T02:00:06", + "date_unixtime": "1693094406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014176 BTC for 82.71 CZK @ 583,431 CZK\nFees are 0.29048829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.502929998953999601845009735 CZK)\nThe limits being 0.10 % (6.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39222325 BTC (200,636.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.05 % (28,198.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,296.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01180160 BTC (6,885.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.61 CZK over 1882 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014176 BTC for 82.71 CZK @ 583,431 CZK\nFees are 0.29048829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.502929998953999601845009735 CZK)\nThe limits being 0.10 % (6.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39222325 BTC (200,636.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.05 % (28,198.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,296.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01180160 BTC (6,885.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.61 CZK over 1882 transactions" + } + ] + }, + { + "id": 3470, + "type": "message", + "date": "2023-08-27T06:00:05", + "date_unixtime": "1693108805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014177 BTC for 82.71 CZK @ 583,383 CZK\nFees are 0.29048488 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.501489998379446361097940379 CZK)\nThe limits being 0.10 % (6.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39236502 BTC (200,719.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.04 % (28,179.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,213.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01194337 BTC (6,967.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.60 CZK over 1883 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014177 BTC for 82.71 CZK @ 583,383 CZK\nFees are 0.29048488 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.501489998379446361097940379 CZK)\nThe limits being 0.10 % (6.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39236502 BTC (200,719.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.04 % (28,179.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,213.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01194337 BTC (6,967.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.60 CZK over 1883 transactions" + } + ] + }, + { + "id": 3471, + "type": "message", + "date": "2023-08-27T10:00:05", + "date_unixtime": "1693123205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014164 BTC for 82.71 CZK @ 583,940 CZK\nFees are 0.29049560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.518199998818031270671261149 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39250666 BTC (200,802.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.14 % (28,397.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,130.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01208501 BTC (7,056.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.58 CZK over 1884 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014164 BTC for 82.71 CZK @ 583,940 CZK\nFees are 0.29049560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.518199998818031270671261149 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39250666 BTC (200,802.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.14 % (28,397.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,130.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01208501 BTC (7,056.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.58 CZK over 1884 transactions" + } + ] + }, + { + "id": 3472, + "type": "message", + "date": "2023-08-27T14:00:05", + "date_unixtime": "1693137605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014156 BTC for 82.71 CZK @ 584,254 CZK\nFees are 0.29048765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.527619998555493748709130927 CZK)\nThe limits being 0.10 % (7.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39264822 BTC (200,885.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.20 % (28,520.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,047.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01222657 BTC (7,143.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.57 CZK over 1885 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014156 BTC for 82.71 CZK @ 584,254 CZK\nFees are 0.29048765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (17.527619998555493748709130927 CZK)\nThe limits being 0.10 % (7.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39264822 BTC (200,885.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.20 % (28,520.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,047.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01222657 BTC (7,143.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.57 CZK over 1885 transactions" + } + ] + }, + { + "id": 3473, + "type": "message", + "date": "2023-08-27T18:00:05", + "date_unixtime": "1693152005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014141 BTC for 82.71 CZK @ 584,879 CZK\nFees are 0.29049026 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (17.546369998337267128870465288 CZK)\nThe limits being 0.10 % (7.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39278963 BTC (200,968.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.31 % (28,765.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,964.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01236798 BTC (7,233.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.56 CZK over 1886 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014141 BTC for 82.71 CZK @ 584,879 CZK\nFees are 0.29049026 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (17.546369998337267128870465288 CZK)\nThe limits being 0.10 % (7.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39278963 BTC (200,968.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.31 % (28,765.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,964.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01236798 BTC (7,233.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.56 CZK over 1886 transactions" + } + ] + }, + { + "id": 3474, + "type": "message", + "date": "2023-08-27T22:00:05", + "date_unixtime": "1693166405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014146 BTC for 82.71 CZK @ 584,685 CZK\nFees are 0.29049658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (17.540549999926032955065865540 CZK)\nThe limits being 0.10 % (7.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39293109 BTC (201,051.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.27 % (28,689.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,881.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01250944 BTC (7,314.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.55 CZK over 1887 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014146 BTC for 82.71 CZK @ 584,685 CZK\nFees are 0.29049658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (17.540549999926032955065865540 CZK)\nThe limits being 0.10 % (7.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39293109 BTC (201,051.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.27 % (28,689.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,881.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01250944 BTC (7,314.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.55 CZK over 1887 transactions" + } + ] + }, + { + "id": 3475, + "type": "message", + "date": "2023-08-28T02:00:05", + "date_unixtime": "1693180805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014149 BTC for 82.71 CZK @ 584,543 CZK\nFees are 0.29048762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (17.536289999631299639191305940 CZK)\nThe limits being 0.10 % (7.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39307258 BTC (201,134.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.24 % (28,632.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,798.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01265093 BTC (7,395.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.53 CZK over 1888 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014149 BTC for 82.71 CZK @ 584,543 CZK\nFees are 0.29048762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (17.536289999631299639191305940 CZK)\nThe limits being 0.10 % (7.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39307258 BTC (201,134.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.24 % (28,632.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,798.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01265093 BTC (7,395.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.53 CZK over 1888 transactions" + } + ] + }, + { + "id": 3476, + "type": "message", + "date": "2023-08-28T06:00:06", + "date_unixtime": "1693195206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014214 BTC for 82.71 CZK @ 581,857 CZK\nFees are 0.29048118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (17.455709998121812154714724719 CZK)\nThe limits being 0.10 % (7.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39321472 BTC (201,217.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.70 % (27,576.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,715.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01279307 BTC (7,443.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.52 CZK over 1889 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014214 BTC for 82.71 CZK @ 581,857 CZK\nFees are 0.29048118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (17.455709998121812154714724719 CZK)\nThe limits being 0.10 % (7.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39321472 BTC (201,217.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.70 % (27,576.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,715.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01279307 BTC (7,443.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.52 CZK over 1889 transactions" + } + ] + }, + { + "id": 3477, + "type": "message", + "date": "2023-08-28T10:00:05", + "date_unixtime": "1693209605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014261 BTC for 82.71 CZK @ 579,972 CZK\nFees are 0.29049752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (17.399159999115360455501320722 CZK)\nThe limits being 0.10 % (7.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39335733 BTC (201,300.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.33 % (26,835.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,632.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01293568 BTC (7,502.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.51 CZK over 1890 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014261 BTC for 82.71 CZK @ 579,972 CZK\nFees are 0.29049752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (17.399159999115360455501320722 CZK)\nThe limits being 0.10 % (7.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39335733 BTC (201,300.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.33 % (26,835.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,632.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01293568 BTC (7,502.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.51 CZK over 1890 transactions" + } + ] + }, + { + "id": 3478, + "type": "message", + "date": "2023-08-28T14:00:07", + "date_unixtime": "1693224007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014213 BTC for 82.71 CZK @ 581,906 CZK\nFees are 0.29048520 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (17.457179998058578553476958557 CZK)\nThe limits being 0.10 % (7.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39349946 BTC (201,383.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.70 % (27,595.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,549.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01307781 BTC (7,610.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.50 CZK over 1891 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014213 BTC for 82.71 CZK @ 581,906 CZK\nFees are 0.29048520 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (17.457179998058578553476958557 CZK)\nThe limits being 0.10 % (7.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39349946 BTC (201,383.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.70 % (27,595.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,549.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01307781 BTC (7,610.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.50 CZK over 1891 transactions" + } + ] + }, + { + "id": 3479, + "type": "message", + "date": "2023-08-28T18:00:05", + "date_unixtime": "1693238405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014174 BTC for 82.71 CZK @ 583,504 CZK\nFees are 0.29048365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (29.175199996709695830362041026 CZK)\nThe limits being 0.10 % (7.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39364120 BTC (201,466.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.01 % (28,224.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,466.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01321955 BTC (7,713.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.48 CZK over 1892 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014174 BTC for 82.71 CZK @ 583,504 CZK\nFees are 0.29048365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (29.175199996709695830362041026 CZK)\nThe limits being 0.10 % (7.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39364120 BTC (201,466.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.01 % (28,224.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,466.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01321955 BTC (7,713.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.48 CZK over 1892 transactions" + } + ] + }, + { + "id": 3480, + "type": "message", + "date": "2023-08-28T22:00:06", + "date_unixtime": "1693252806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014242 BTC for 82.71 CZK @ 580,729 CZK\nFees are 0.29048915 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.036449998380195365931359328 CZK)\nThe limits being 0.10 % (7.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39378362 BTC (201,549.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.46 % (27,131.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,383.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01336197 BTC (7,759.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.47 CZK over 1893 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014242 BTC for 82.71 CZK @ 580,729 CZK\nFees are 0.29048915 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.036449998380195365931359328 CZK)\nThe limits being 0.10 % (7.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39378362 BTC (201,549.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.46 % (27,131.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,383.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01336197 BTC (7,759.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.47 CZK over 1893 transactions" + } + ] + }, + { + "id": 3481, + "type": "message", + "date": "2023-08-29T02:00:06", + "date_unixtime": "1693267206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014181 BTC for 82.71 CZK @ 583,237 CZK\nFees are 0.29049412 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.161849997753086677413201597 CZK)\nThe limits being 0.10 % (7.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39392543 BTC (201,632.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.95 % (28,119.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,300.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01350378 BTC (7,875.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.46 CZK over 1894 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014181 BTC for 82.71 CZK @ 583,237 CZK\nFees are 0.29049412 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.161849997753086677413201597 CZK)\nThe limits being 0.10 % (7.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39392543 BTC (201,632.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.95 % (28,119.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,300.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01350378 BTC (7,875.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.46 CZK over 1894 transactions" + } + ] + }, + { + "id": 3482, + "type": "message", + "date": "2023-08-29T06:00:06", + "date_unixtime": "1693281606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014217 BTC for 82.71 CZK @ 581,760 CZK\nFees are 0.29049405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.087999997476651933468143206 CZK)\nThe limits being 0.10 % (7.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39406760 BTC (201,715.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.65 % (27,536.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,217.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01364595 BTC (7,938.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.45 CZK over 1895 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014217 BTC for 82.71 CZK @ 581,760 CZK\nFees are 0.29049405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.087999997476651933468143206 CZK)\nThe limits being 0.10 % (7.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39406760 BTC (201,715.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.65 % (27,536.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,217.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01364595 BTC (7,938.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.45 CZK over 1895 transactions" + } + ] + }, + { + "id": 3483, + "type": "message", + "date": "2023-08-29T10:00:05", + "date_unixtime": "1693296005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014232 BTC for 82.71 CZK @ 581,129 CZK\nFees are 0.29048513 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (17.433869998428770803032556372 CZK)\nThe limits being 0.10 % (8.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39420992 BTC (201,798.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.52 % (27,287.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,134.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01378827 BTC (8,012.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.43 CZK over 1896 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014232 BTC for 82.71 CZK @ 581,129 CZK\nFees are 0.29048513 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (17.433869998428770803032556372 CZK)\nThe limits being 0.10 % (8.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39420992 BTC (201,798.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.52 % (27,287.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,134.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01378827 BTC (8,012.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.43 CZK over 1896 transactions" + } + ] + }, + { + "id": 3484, + "type": "message", + "date": "2023-08-29T14:00:07", + "date_unixtime": "1693310407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014242 BTC for 82.71 CZK @ 580,746 CZK\nFees are 0.29049765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (17.422379998190576767299565970 CZK)\nThe limits being 0.10 % (8.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39435234 BTC (201,881.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.44 % (27,136.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,051.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01393069 BTC (8,090.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.42 CZK over 1897 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014242 BTC for 82.71 CZK @ 580,746 CZK\nFees are 0.29049765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (17.422379998190576767299565970 CZK)\nThe limits being 0.10 % (8.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39435234 BTC (201,881.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.44 % (27,136.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,051.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01393069 BTC (8,090.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.42 CZK over 1897 transactions" + } + ] + }, + { + "id": 3485, + "type": "message", + "date": "2023-08-29T18:00:06", + "date_unixtime": "1693324806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013554 BTC for 82.71 CZK @ 610,220 CZK\nFees are 0.29049545 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (30.510999997867872656709337886 CZK)\nThe limits being 0.10 % (8.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39448788 BTC (201,964.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 511,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.19 % (38,759.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 968.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01406623 BTC (8,583.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.41 CZK over 1898 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013554 BTC for 82.71 CZK @ 610,220 CZK\nFees are 0.29049545 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (30.510999997867872656709337886 CZK)\nThe limits being 0.10 % (8.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39448788 BTC (201,964.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 511,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.19 % (38,759.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 968.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01406623 BTC (8,583.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.41 CZK over 1898 transactions" + } + ] + }, + { + "id": 3486, + "type": "message", + "date": "2023-08-29T22:00:06", + "date_unixtime": "1693339206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013394 BTC for 82.70 CZK @ 617,477 CZK\nFees are 0.29048018 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (30.873849998947241471335319662 CZK)\nThe limits being 0.10 % (8.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39462182 BTC (202,047.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 617,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.60 % (41,622.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 885.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01420017 BTC (8,768.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.40 CZK over 1899 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013394 BTC for 82.70 CZK @ 617,477 CZK\nFees are 0.29048018 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (30.873849998947241471335319662 CZK)\nThe limits being 0.10 % (8.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39462182 BTC (202,047.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 617,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.60 % (41,622.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 885.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01420017 BTC (8,768.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.40 CZK over 1899 transactions" + } + ] + }, + { + "id": 3487, + "type": "message", + "date": "2023-08-30T02:00:07", + "date_unixtime": "1693353607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013449 BTC for 82.71 CZK @ 614,962 CZK\nFees are 0.29048499 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (24.598479997679324683482893521 CZK)\nThe limits being 0.10 % (8.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39475631 BTC (202,130.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.10 % (40,629.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 802.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01433466 BTC (8,815.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.38 CZK over 1900 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013449 BTC for 82.71 CZK @ 614,962 CZK\nFees are 0.29048499 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (24.598479997679324683482893521 CZK)\nThe limits being 0.10 % (8.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39475631 BTC (202,130.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.10 % (40,629.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 802.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01433466 BTC (8,815.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.38 CZK over 1900 transactions" + } + ] + }, + { + "id": 3488, + "type": "message", + "date": "2023-08-30T06:00:07", + "date_unixtime": "1693368007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013610 BTC for 82.71 CZK @ 607,712 CZK\nFees are 0.29049680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (18.231359999736411172212465774 CZK)\nThe limits being 0.10 % (8.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39489241 BTC (202,213.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.68 % (37,767.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 719.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01447076 BTC (8,794.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.37 CZK over 1901 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013610 BTC for 82.71 CZK @ 607,712 CZK\nFees are 0.29049680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (18.231359999736411172212465774 CZK)\nThe limits being 0.10 % (8.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39489241 BTC (202,213.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.68 % (37,767.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 719.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01447076 BTC (8,794.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.37 CZK over 1901 transactions" + } + ] + }, + { + "id": 3489, + "type": "message", + "date": "2023-08-30T10:00:07", + "date_unixtime": "1693382407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013562 BTC for 82.70 CZK @ 609,827 CZK\nFees are 0.29047972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (18.294809999539291288924099672 CZK)\nThe limits being 0.10 % (8.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39502803 BTC (202,296.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.08 % (38,601.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 636.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01460638 BTC (8,907.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.36 CZK over 1902 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013562 BTC for 82.70 CZK @ 609,827 CZK\nFees are 0.29047972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (18.294809999539291288924099672 CZK)\nThe limits being 0.10 % (8.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39502803 BTC (202,296.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.08 % (38,601.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 636.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01460638 BTC (8,907.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.36 CZK over 1902 transactions" + } + ] + }, + { + "id": 3490, + "type": "message", + "date": "2023-08-30T14:00:07", + "date_unixtime": "1693396807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013636 BTC for 82.71 CZK @ 606,551 CZK\nFees are 0.29049572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (18.196529999942997981690074764 CZK)\nThe limits being 0.10 % (8.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39516439 BTC (202,379.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.43 % (37,307.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 553.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01474274 BTC (8,942.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.35 CZK over 1903 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013636 BTC for 82.71 CZK @ 606,551 CZK\nFees are 0.29049572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (18.196529999942997981690074764 CZK)\nThe limits being 0.10 % (8.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39516439 BTC (202,379.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.43 % (37,307.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 553.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01474274 BTC (8,942.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.35 CZK over 1903 transactions" + } + ] + }, + { + "id": 3491, + "type": "message", + "date": "2023-08-30T18:00:06", + "date_unixtime": "1693411206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013755 BTC for 82.71 CZK @ 601,290 CZK\nFees are 0.29048920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (30.064499997011550087235569728 CZK)\nThe limits being 0.10 % (8.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39530194 BTC (202,462.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.40 % (35,228.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 470.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01488029 BTC (8,947.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.34 CZK over 1904 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013755 BTC for 82.71 CZK @ 601,290 CZK\nFees are 0.29048920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (30.064499997011550087235569728 CZK)\nThe limits being 0.10 % (8.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39530194 BTC (202,462.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.40 % (35,228.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 470.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01488029 BTC (8,947.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.34 CZK over 1904 transactions" + } + ] + }, + { + "id": 3492, + "type": "message", + "date": "2023-08-30T22:00:06", + "date_unixtime": "1693425606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013757 BTC for 82.71 CZK @ 601,224 CZK\nFees are 0.29049955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (36.073439995705950160119598849 CZK)\nThe limits being 0.10 % (9.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39543951 BTC (202,545.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.38 % (35,201.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 387.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01501786 BTC (9,029.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.32 CZK over 1905 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013757 BTC for 82.71 CZK @ 601,224 CZK\nFees are 0.29049955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (36.073439995705950160119598849 CZK)\nThe limits being 0.10 % (9.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39543951 BTC (202,545.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.38 % (35,201.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 387.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01501786 BTC (9,029.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.32 CZK over 1905 transactions" + } + ] + }, + { + "id": 3493, + "type": "message", + "date": "2023-08-31T02:00:06", + "date_unixtime": "1693440006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013709 BTC for 82.71 CZK @ 603,294 CZK\nFees are 0.29048265 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (36.197639999733953265838149160 CZK)\nThe limits being 0.10 % (9.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39557660 BTC (202,628.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.78 % (36,020.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 304.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01515495 BTC (9,142.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.31 CZK over 1906 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013709 BTC for 82.71 CZK @ 603,294 CZK\nFees are 0.29048265 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (36.197639999733953265838149160 CZK)\nThe limits being 0.10 % (9.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39557660 BTC (202,628.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.78 % (36,020.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 304.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01515495 BTC (9,142.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.31 CZK over 1906 transactions" + } + ] + }, + { + "id": 3494, + "type": "message", + "date": "2023-08-31T06:00:05", + "date_unixtime": "1693454405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013748 BTC for 82.71 CZK @ 601,603 CZK\nFees are 0.29049251 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (30.080149999441871981669046323 CZK)\nThe limits being 0.10 % (9.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39571408 BTC (202,711.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.44 % (35,350.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 221.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01529243 BTC (9,199.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.30 CZK over 1907 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013748 BTC for 82.71 CZK @ 601,603 CZK\nFees are 0.29049251 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (30.080149999441871981669046323 CZK)\nThe limits being 0.10 % (9.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39571408 BTC (202,711.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.44 % (35,350.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 221.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01529243 BTC (9,199.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.30 CZK over 1907 transactions" + } + ] + }, + { + "id": 3495, + "type": "message", + "date": "2023-08-31T10:00:07", + "date_unixtime": "1693468807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013687 BTC for 82.71 CZK @ 604,294 CZK\nFees are 0.29049721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (24.171759997311958011793966242 CZK)\nThe limits being 0.10 % (9.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39585095 BTC (202,794.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.96 % (36,415.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 138.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01542930 BTC (9,323.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.29 CZK over 1908 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013687 BTC for 82.71 CZK @ 604,294 CZK\nFees are 0.29049721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (24.171759997311958011793966242 CZK)\nThe limits being 0.10 % (9.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39585095 BTC (202,794.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.96 % (36,415.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 138.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01542930 BTC (9,323.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.29 CZK over 1908 transactions" + } + ] + }, + { + "id": 3496, + "type": "message", + "date": "2023-08-31T14:00:05", + "date_unixtime": "1693483205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013648 BTC for 82.71 CZK @ 606,007 CZK\nFees are 0.29049059 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (42.420489998078238474833977909 CZK)\nThe limits being 0.10 % (9.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39598743 BTC (202,877.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.28 % (37,093.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,055.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01556578 BTC (9,432.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.27 CZK over 1909 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013648 BTC for 82.71 CZK @ 606,007 CZK\nFees are 0.29049059 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (42.420489998078238474833977909 CZK)\nThe limits being 0.10 % (9.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39598743 BTC (202,877.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.28 % (37,093.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,055.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01556578 BTC (9,432.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.27 CZK over 1909 transactions" + } + ] + }, + { + "id": 3497, + "type": "message", + "date": "2023-08-31T18:00:06", + "date_unixtime": "1693497606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013724 BTC for 82.71 CZK @ 602,665 CZK\nFees are 0.29049730 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (36.159899997342440484825988667 CZK)\nThe limits being 0.10 % (9.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39612467 BTC (202,960.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.62 % (35,769.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,972.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01570302 BTC (9,463.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.26 CZK over 1910 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013724 BTC for 82.71 CZK @ 602,665 CZK\nFees are 0.29049730 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (36.159899997342440484825988667 CZK)\nThe limits being 0.10 % (9.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39612467 BTC (202,960.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.62 % (35,769.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,972.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01570302 BTC (9,463.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.26 CZK over 1910 transactions" + } + ] + }, + { + "id": 3498, + "type": "message", + "date": "2023-08-31T22:00:06", + "date_unixtime": "1693512006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014206 BTC for 82.71 CZK @ 582,187 CZK\nFees are 0.29048234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (34.931219996519292149446527466 CZK)\nThe limits being 0.10 % (9.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39626673 BTC (203,043.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.62 % (27,657.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,889.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01584508 BTC (9,224.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.25 CZK over 1911 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014206 BTC for 82.71 CZK @ 582,187 CZK\nFees are 0.29048234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (34.931219996519292149446527466 CZK)\nThe limits being 0.10 % (9.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39626673 BTC (203,043.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.62 % (27,657.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,889.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01584508 BTC (9,224.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.25 CZK over 1911 transactions" + } + ] + }, + { + "id": 3499, + "type": "message", + "date": "2023-09-01T02:00:07", + "date_unixtime": "1693526407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014326 BTC for 82.71 CZK @ 577,336 CZK\nFees are 0.29049523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (34.640159998430733254494373697 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39640999 BTC (203,126.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.67 % (25,734.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,806.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01598834 BTC (9,230.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.24 CZK over 1912 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014326 BTC for 82.71 CZK @ 577,336 CZK\nFees are 0.29049523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (34.640159998430733254494373697 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39640999 BTC (203,126.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.67 % (25,734.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,806.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01598834 BTC (9,230.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.24 CZK over 1912 transactions" + } + ] + }, + { + "id": 3500, + "type": "message", + "date": "2023-09-01T06:00:05", + "date_unixtime": "1693540805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014263 BTC for 82.70 CZK @ 579,855 CZK\nFees are 0.29047965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (28.992749998157259379733157884 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39655262 BTC (203,209.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.16 % (26,733.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,723.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01613097 BTC (9,353.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.23 CZK over 1913 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014263 BTC for 82.70 CZK @ 579,855 CZK\nFees are 0.29047965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (28.992749998157259379733157884 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39655262 BTC (203,209.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.16 % (26,733.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,723.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01613097 BTC (9,353.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.23 CZK over 1913 transactions" + } + ] + }, + { + "id": 3501, + "type": "message", + "date": "2023-09-01T10:00:05", + "date_unixtime": "1693555205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014280 BTC for 82.71 CZK @ 579,184 CZK\nFees are 0.29048933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (28.959199998883459711737211078 CZK)\nThe limits being 0.10 % (9.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39669542 BTC (203,292.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.02 % (26,466.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,640.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01627377 BTC (9,425.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.21 CZK over 1914 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014280 BTC for 82.71 CZK @ 579,184 CZK\nFees are 0.29048933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (28.959199998883459711737211078 CZK)\nThe limits being 0.10 % (9.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39669542 BTC (203,292.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.02 % (26,466.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,640.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01627377 BTC (9,425.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.21 CZK over 1914 transactions" + } + ] + }, + { + "id": 3502, + "type": "message", + "date": "2023-09-01T14:00:05", + "date_unixtime": "1693569605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014213 BTC for 82.71 CZK @ 581,901 CZK\nFees are 0.29048271 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (29.095049999314648080904198984 CZK)\nThe limits being 0.10 % (9.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39683755 BTC (203,375.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.54 % (27,544.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,557.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01641590 BTC (9,552.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.20 CZK over 1915 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014213 BTC for 82.71 CZK @ 581,901 CZK\nFees are 0.29048271 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (29.095049999314648080904198984 CZK)\nThe limits being 0.10 % (9.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39683755 BTC (203,375.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.54 % (27,544.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,557.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01641590 BTC (9,552.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.20 CZK over 1915 transactions" + } + ] + }, + { + "id": 3503, + "type": "message", + "date": "2023-09-01T18:00:06", + "date_unixtime": "1693584006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014304 BTC for 82.71 CZK @ 578,200 CZK\nFees are 0.29048319 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (28.909999997213332753706546106 CZK)\nThe limits being 0.10 % (9.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39698059 BTC (203,458.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.82 % (26,075.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,474.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01655894 BTC (9,574.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.19 CZK over 1916 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014304 BTC for 82.71 CZK @ 578,200 CZK\nFees are 0.29048319 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (28.909999997213332753706546106 CZK)\nThe limits being 0.10 % (9.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39698059 BTC (203,458.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.82 % (26,075.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,474.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01655894 BTC (9,574.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.19 CZK over 1916 transactions" + } + ] + }, + { + "id": 3504, + "type": "message", + "date": "2023-09-01T22:00:05", + "date_unixtime": "1693598405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014356 BTC for 82.71 CZK @ 576,114 CZK\nFees are 0.29048740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (28.805699999847288460852327525 CZK)\nThe limits being 0.10 % (9.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39712415 BTC (203,541.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.40 % (25,247.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,391.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01670250 BTC (9,622.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.18 CZK over 1917 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014356 BTC for 82.71 CZK @ 576,114 CZK\nFees are 0.29048740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (28.805699999847288460852327525 CZK)\nThe limits being 0.10 % (9.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39712415 BTC (203,541.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.40 % (25,247.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,391.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01670250 BTC (9,622.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.18 CZK over 1917 transactions" + } + ] + }, + { + "id": 3505, + "type": "message", + "date": "2023-09-02T02:00:06", + "date_unixtime": "1693612806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014310 BTC for 82.71 CZK @ 577,988 CZK\nFees are 0.29049849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (28.899399996587763930366707439 CZK)\nThe limits being 0.10 % (9.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39726725 BTC (203,624.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.76 % (25,990.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,308.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01684560 BTC (9,736.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.17 CZK over 1918 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014310 BTC for 82.71 CZK @ 577,988 CZK\nFees are 0.29049849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (28.899399996587763930366707439 CZK)\nThe limits being 0.10 % (9.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39726725 BTC (203,624.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.76 % (25,990.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,308.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01684560 BTC (9,736.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.17 CZK over 1918 transactions" + } + ] + }, + { + "id": 3506, + "type": "message", + "date": "2023-09-02T06:00:06", + "date_unixtime": "1693627206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014314 BTC for 82.71 CZK @ 577,819 CZK\nFees are 0.29049473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (28.890949999718047056066656183 CZK)\nThe limits being 0.10 % (9.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39741039 BTC (203,707.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.73 % (25,923.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,225.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01698874 BTC (9,816.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.15 CZK over 1919 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014314 BTC for 82.71 CZK @ 577,819 CZK\nFees are 0.29049473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (28.890949999718047056066656183 CZK)\nThe limits being 0.10 % (9.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39741039 BTC (203,707.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.73 % (25,923.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,225.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01698874 BTC (9,816.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.15 CZK over 1919 transactions" + } + ] + }, + { + "id": 3507, + "type": "message", + "date": "2023-09-02T10:00:06", + "date_unixtime": "1693641606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014307 BTC for 82.71 CZK @ 578,108 CZK\nFees are 0.29049789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (23.124319999871840185826158387 CZK)\nThe limits being 0.10 % (9.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39755346 BTC (203,790.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.78 % (26,038.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,142.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01713181 BTC (9,904.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.14 CZK over 1920 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014307 BTC for 82.71 CZK @ 578,108 CZK\nFees are 0.29049789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (23.124319999871840185826158387 CZK)\nThe limits being 0.10 % (9.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39755346 BTC (203,790.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.78 % (26,038.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,142.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01713181 BTC (9,904.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.14 CZK over 1920 transactions" + } + ] + }, + { + "id": 3508, + "type": "message", + "date": "2023-09-02T14:00:07", + "date_unixtime": "1693656007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014292 BTC for 82.71 CZK @ 578,687 CZK\nFees are 0.29048396 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (23.147479999682053200029953935 CZK)\nThe limits being 0.10 % (10.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39769638 BTC (203,873.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.88 % (26,267.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,059.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01727473 BTC (9,996.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.13 CZK over 1921 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014292 BTC for 82.71 CZK @ 578,687 CZK\nFees are 0.29048396 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (23.147479999682053200029953935 CZK)\nThe limits being 0.10 % (10.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39769638 BTC (203,873.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.88 % (26,267.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,059.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01727473 BTC (9,996.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.13 CZK over 1921 transactions" + } + ] + }, + { + "id": 3509, + "type": "message", + "date": "2023-09-02T18:00:06", + "date_unixtime": "1693670406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014248 BTC for 82.71 CZK @ 580,498 CZK\nFees are 0.29049593 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (34.829879998892142520828979537 CZK)\nThe limits being 0.10 % (10.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39783886 BTC (203,956.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.23 % (26,987.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,976.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01741721 BTC (10,110.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.12 CZK over 1922 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014248 BTC for 82.71 CZK @ 580,498 CZK\nFees are 0.29049593 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (34.829879998892142520828979537 CZK)\nThe limits being 0.10 % (10.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39783886 BTC (203,956.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.23 % (26,987.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,976.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01741721 BTC (10,110.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.12 CZK over 1922 transactions" + } + ] + }, + { + "id": 3510, + "type": "message", + "date": "2023-09-02T22:00:05", + "date_unixtime": "1693684805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014283 BTC for 82.71 CZK @ 579,073 CZK\nFees are 0.29049467 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (34.744379996623872736118816236 CZK)\nThe limits being 0.10 % (10.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39798169 BTC (204,039.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.95 % (26,420.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,893.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01756004 BTC (10,168.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.10 CZK over 1923 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014283 BTC for 82.71 CZK @ 579,073 CZK\nFees are 0.29049467 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (34.744379996623872736118816236 CZK)\nThe limits being 0.10 % (10.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39798169 BTC (204,039.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.95 % (26,420.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,893.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01756004 BTC (10,168.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.10 CZK over 1923 transactions" + } + ] + }, + { + "id": 3511, + "type": "message", + "date": "2023-09-03T02:00:07", + "date_unixtime": "1693699207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014263 BTC for 82.71 CZK @ 579,895 CZK\nFees are 0.29049969 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (28.994749998786061866269710643 CZK)\nThe limits being 0.10 % (10.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39812432 BTC (204,122.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.10 % (26,747.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,810.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01770267 BTC (10,265.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.09 CZK over 1924 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014263 BTC for 82.71 CZK @ 579,895 CZK\nFees are 0.29049969 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (28.994749998786061866269710643 CZK)\nThe limits being 0.10 % (10.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39812432 BTC (204,122.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.10 % (26,747.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,810.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01770267 BTC (10,265.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.09 CZK over 1924 transactions" + } + ] + }, + { + "id": 3512, + "type": "message", + "date": "2023-09-03T06:00:06", + "date_unixtime": "1693713606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014268 BTC for 82.70 CZK @ 579,653 CZK\nFees are 0.29048025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.186119998564039039699710950 CZK)\nThe limits being 0.10 % (10.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39826700 BTC (204,205.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.05 % (26,650.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,727.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01784535 BTC (10,344.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.08 CZK over 1925 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014268 BTC for 82.70 CZK @ 579,653 CZK\nFees are 0.29048025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.186119998564039039699710950 CZK)\nThe limits being 0.10 % (10.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39826700 BTC (204,205.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.05 % (26,650.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,727.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01784535 BTC (10,344.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.08 CZK over 1925 transactions" + } + ] + }, + { + "id": 3513, + "type": "message", + "date": "2023-09-03T10:00:05", + "date_unixtime": "1693728005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014220 BTC for 82.71 CZK @ 581,614 CZK\nFees are 0.29048243 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.264559997813559713996791820 CZK)\nThe limits being 0.10 % (10.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39840920 BTC (204,288.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.43 % (27,431.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,644.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01798755 BTC (10,461.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.07 CZK over 1926 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014220 BTC for 82.71 CZK @ 581,614 CZK\nFees are 0.29048243 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.264559997813559713996791820 CZK)\nThe limits being 0.10 % (10.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39840920 BTC (204,288.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.43 % (27,431.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,644.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01798755 BTC (10,461.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.07 CZK over 1926 transactions" + } + ] + }, + { + "id": 3514, + "type": "message", + "date": "2023-09-03T14:00:06", + "date_unixtime": "1693742406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014231 BTC for 82.71 CZK @ 581,197 CZK\nFees are 0.29049871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.247879997830655036092669404 CZK)\nThe limits being 0.10 % (10.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39855151 BTC (204,371.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.34 % (27,265.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,561.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01812986 BTC (10,537.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.06 CZK over 1927 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014231 BTC for 82.71 CZK @ 581,197 CZK\nFees are 0.29049871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.247879997830655036092669404 CZK)\nThe limits being 0.10 % (10.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39855151 BTC (204,371.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.34 % (27,265.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,561.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01812986 BTC (10,537.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.06 CZK over 1927 transactions" + } + ] + }, + { + "id": 3515, + "type": "message", + "date": "2023-09-03T18:00:06", + "date_unixtime": "1693756806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014255 BTC for 82.71 CZK @ 580,208 CZK\nFees are 0.29049346 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.208319998210402489917348209 CZK)\nThe limits being 0.10 % (10.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39869406 BTC (204,454.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.14 % (26,870.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,478.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01827241 BTC (10,601.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.04 CZK over 1928 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014255 BTC for 82.71 CZK @ 580,208 CZK\nFees are 0.29049346 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.208319998210402489917348209 CZK)\nThe limits being 0.10 % (10.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39869406 BTC (204,454.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.14 % (26,870.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,478.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01827241 BTC (10,601.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.04 CZK over 1928 transactions" + } + ] + }, + { + "id": 3516, + "type": "message", + "date": "2023-09-03T22:00:06", + "date_unixtime": "1693771206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014181 BTC for 82.71 CZK @ 583,213 CZK\nFees are 0.29048217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.328519998775880216435902168 CZK)\nThe limits being 0.10 % (10.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39883587 BTC (204,537.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.72 % (28,068.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,395.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01841422 BTC (10,739.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.03 CZK over 1929 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014181 BTC for 82.71 CZK @ 583,213 CZK\nFees are 0.29048217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.328519998775880216435902168 CZK)\nThe limits being 0.10 % (10.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39883587 BTC (204,537.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.72 % (28,068.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,395.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01841422 BTC (10,739.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.03 CZK over 1929 transactions" + } + ] + }, + { + "id": 3517, + "type": "message", + "date": "2023-09-04T02:00:06", + "date_unixtime": "1693785606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014203 BTC for 82.71 CZK @ 582,328 CZK\nFees are 0.29049133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.293119999876514716270985789 CZK)\nThe limits being 0.10 % (10.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39897790 BTC (204,620.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.54 % (27,715.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,312.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01855625 BTC (10,805.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.02 CZK over 1930 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014203 BTC for 82.71 CZK @ 582,328 CZK\nFees are 0.29049133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (23.293119999876514716270985789 CZK)\nThe limits being 0.10 % (10.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39897790 BTC (204,620.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.54 % (27,715.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,312.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01855625 BTC (10,805.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.02 CZK over 1930 transactions" + } + ] + }, + { + "id": 3518, + "type": "message", + "date": "2023-09-04T06:00:06", + "date_unixtime": "1693800006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014209 BTC for 82.71 CZK @ 582,069 CZK\nFees are 0.29048480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.282759998671691096785152312 CZK)\nThe limits being 0.10 % (10.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39911999 BTC (204,703.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.49 % (27,611.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,229.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01869834 BTC (10,883.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.01 CZK over 1931 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014209 BTC for 82.71 CZK @ 582,069 CZK\nFees are 0.29048480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.282759998671691096785152312 CZK)\nThe limits being 0.10 % (10.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39911999 BTC (204,703.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.49 % (27,611.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,229.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01869834 BTC (10,883.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.01 CZK over 1931 transactions" + } + ] + }, + { + "id": 3519, + "type": "message", + "date": "2023-09-04T10:00:05", + "date_unixtime": "1693814405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014215 BTC for 82.71 CZK @ 581,841 CZK\nFees are 0.29049363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.273639999011549622049173304 CZK)\nThe limits being 0.10 % (10.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39926214 BTC (204,786.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.44 % (27,520.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,146.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01884049 BTC (10,962.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 106.00 CZK over 1932 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014215 BTC for 82.71 CZK @ 581,841 CZK\nFees are 0.29049363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.273639999011549622049173304 CZK)\nThe limits being 0.10 % (10.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39926214 BTC (204,786.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.44 % (27,520.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,146.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01884049 BTC (10,962.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 106.00 CZK over 1932 transactions" + } + ] + }, + { + "id": 3520, + "type": "message", + "date": "2023-09-04T14:00:05", + "date_unixtime": "1693828805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014260 BTC for 82.71 CZK @ 579,983 CZK\nFees are 0.29048266 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.199319998518509200966323338 CZK)\nThe limits being 0.10 % (11.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39940474 BTC (204,869.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.07 % (26,778.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,063.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01898309 BTC (11,009.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.99 CZK over 1933 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014260 BTC for 82.71 CZK @ 579,983 CZK\nFees are 0.29048266 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.199319998518509200966323338 CZK)\nThe limits being 0.10 % (11.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39940474 BTC (204,869.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.07 % (26,778.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,063.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01898309 BTC (11,009.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.99 CZK over 1933 transactions" + } + ] + }, + { + "id": 3521, + "type": "message", + "date": "2023-09-04T18:00:06", + "date_unixtime": "1693843206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014301 BTC for 82.70 CZK @ 578,315 CZK\nFees are 0.29048003 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.132599997623867822665423134 CZK)\nThe limits being 0.10 % (11.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39954775 BTC (204,952.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 578,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.74 % (26,111.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,980.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01912610 BTC (11,060.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.97 CZK over 1934 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014301 BTC for 82.70 CZK @ 578,315 CZK\nFees are 0.29048003 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (23.132599997623867822665423134 CZK)\nThe limits being 0.10 % (11.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39954775 BTC (204,952.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 578,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.74 % (26,111.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,980.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01912610 BTC (11,060.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.97 CZK over 1934 transactions" + } + ] + }, + { + "id": 3522, + "type": "message", + "date": "2023-09-04T22:00:05", + "date_unixtime": "1693857605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014240 BTC for 82.71 CZK @ 580,803 CZK\nFees are 0.29048537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (29.040149998180525464245925776 CZK)\nThe limits being 0.10 % (11.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39969015 BTC (205,035.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 512,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 580,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.22 % (27,105.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,897.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01926850 BTC (11,191.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.96 CZK over 1935 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014240 BTC for 82.71 CZK @ 580,803 CZK\nFees are 0.29048537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (29.040149998180525464245925776 CZK)\nThe limits being 0.10 % (11.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39969015 BTC (205,035.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 512,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 580,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.22 % (27,105.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,897.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01926850 BTC (11,191.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.96 CZK over 1935 transactions" + } + ] + }, + { + "id": 3523, + "type": "message", + "date": "2023-09-05T02:00:04", + "date_unixtime": "1693872004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014283 BTC for 82.71 CZK @ 579,054 CZK\nFees are 0.29048514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.952699996556894389904186428 CZK)\nThe limits being 0.10 % (11.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39983298 BTC (205,118.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 579,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.87 % (26,406.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,814.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01941133 BTC (11,240.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.95 CZK over 1936 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014283 BTC for 82.71 CZK @ 579,054 CZK\nFees are 0.29048514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.952699996556894389904186428 CZK)\nThe limits being 0.10 % (11.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39983298 BTC (205,118.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 579,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.87 % (26,406.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,814.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01941133 BTC (11,240.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.95 CZK over 1936 transactions" + } + ] + }, + { + "id": 3524, + "type": "message", + "date": "2023-09-05T06:00:07", + "date_unixtime": "1693886407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014346 BTC for 82.71 CZK @ 576,510 CZK\nFees are 0.29048459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.825499997881386984394713304 CZK)\nThe limits being 0.10 % (11.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.39997644 BTC (205,201.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 576,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.37 % (25,388.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,731.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01955479 BTC (11,273.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.94 CZK over 1937 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014346 BTC for 82.71 CZK @ 576,510 CZK\nFees are 0.29048459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.825499997881386984394713304 CZK)\nThe limits being 0.10 % (11.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.39997644 BTC (205,201.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 576,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.37 % (25,388.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,731.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01955479 BTC (11,273.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.94 CZK over 1937 transactions" + } + ] + }, + { + "id": 3525, + "type": "message", + "date": "2023-09-05T10:00:07", + "date_unixtime": "1693900807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014320 BTC for 82.71 CZK @ 577,573 CZK\nFees are 0.29049277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.878649997355624030975385035 CZK)\nThe limits being 0.10 % (11.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40011964 BTC (205,284.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 577,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.57 % (25,813.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,648.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01969799 BTC (11,377.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.93 CZK over 1938 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014320 BTC for 82.71 CZK @ 577,573 CZK\nFees are 0.29049277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.878649997355624030975385035 CZK)\nThe limits being 0.10 % (11.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40011964 BTC (205,284.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 577,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.57 % (25,813.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,648.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01969799 BTC (11,377.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.93 CZK over 1938 transactions" + } + ] + }, + { + "id": 3526, + "type": "message", + "date": "2023-09-05T14:00:05", + "date_unixtime": "1693915205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014204 BTC for 82.71 CZK @ 582,276 CZK\nFees are 0.29048609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (34.936589600436770374374005259 CZK)\nThe limits being 0.10 % (11.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40026168 BTC (205,367.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.49 % (27,695.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,565.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01984003 BTC (11,552.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.91 CZK over 1939 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014204 BTC for 82.71 CZK @ 582,276 CZK\nFees are 0.29048609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (34.936589600436770374374005259 CZK)\nThe limits being 0.10 % (11.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40026168 BTC (205,367.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.49 % (27,695.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,565.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01984003 BTC (11,552.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.91 CZK over 1939 transactions" + } + ] + }, + { + "id": 3527, + "type": "message", + "date": "2023-09-05T18:00:06", + "date_unixtime": "1693929606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014191 BTC for 82.71 CZK @ 582,809 CZK\nFees are 0.29048564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (40.796629995986494594688444576 CZK)\nThe limits being 0.10 % (11.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40040359 BTC (205,450.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.58 % (27,908.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,482.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01998194 BTC (11,645.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.90 CZK over 1940 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014191 BTC for 82.71 CZK @ 582,809 CZK\nFees are 0.29048564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (40.796629995986494594688444576 CZK)\nThe limits being 0.10 % (11.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40040359 BTC (205,450.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.58 % (27,908.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,482.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01998194 BTC (11,645.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.90 CZK over 1940 transactions" + } + ] + }, + { + "id": 3528, + "type": "message", + "date": "2023-09-05T22:00:05", + "date_unixtime": "1693944005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014214 BTC for 82.71 CZK @ 581,887 CZK\nFees are 0.29049615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (40.732089998218560912702544051 CZK)\nThe limits being 0.10 % (11.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40054573 BTC (205,533.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 581,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.40 % (27,538.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,399.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02012408 BTC (11,709.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.89 CZK over 1941 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014214 BTC for 82.71 CZK @ 581,887 CZK\nFees are 0.29049615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (40.732089998218560912702544051 CZK)\nThe limits being 0.10 % (11.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40054573 BTC (205,533.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 581,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.40 % (27,538.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,399.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02012408 BTC (11,709.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.89 CZK over 1941 transactions" + } + ] + }, + { + "id": 3529, + "type": "message", + "date": "2023-09-06T02:00:06", + "date_unixtime": "1693958406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014154 BTC for 82.71 CZK @ 584,328 CZK\nFees are 0.29048339 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (40.902959996096747437381627211 CZK)\nThe limits being 0.10 % (11.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40068727 BTC (205,616.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 584,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.87 % (28,516.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,316.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02026562 BTC (11,841.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.88 CZK over 1942 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014154 BTC for 82.71 CZK @ 584,328 CZK\nFees are 0.29048339 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (40.902959996096747437381627211 CZK)\nThe limits being 0.10 % (11.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40068727 BTC (205,616.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 584,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.87 % (28,516.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,316.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02026562 BTC (11,841.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.88 CZK over 1942 transactions" + } + ] + }, + { + "id": 3530, + "type": "message", + "date": "2023-09-06T06:00:06", + "date_unixtime": "1693972806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014180 BTC for 82.71 CZK @ 583,270 CZK\nFees are 0.29049007 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (40.828899999508068727015389720 CZK)\nThe limits being 0.10 % (11.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40082907 BTC (205,699.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.66 % (28,091.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,233.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02040742 BTC (11,903.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.87 CZK over 1943 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014180 BTC for 82.71 CZK @ 583,270 CZK\nFees are 0.29049007 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (40.828899999508068727015389720 CZK)\nThe limits being 0.10 % (11.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40082907 BTC (205,699.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.66 % (28,091.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,233.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02040742 BTC (11,903.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.87 CZK over 1943 transactions" + } + ] + }, + { + "id": 3531, + "type": "message", + "date": "2023-09-06T10:00:06", + "date_unixtime": "1693987206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014175 BTC for 82.71 CZK @ 583,486 CZK\nFees are 0.29049518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (35.009159999261842809426267323 CZK)\nThe limits being 0.10 % (11.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40097082 BTC (205,782.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 583,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.69 % (28,178.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,150.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02054917 BTC (11,990.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.86 CZK over 1944 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014175 BTC for 82.71 CZK @ 583,486 CZK\nFees are 0.29049518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (35.009159999261842809426267323 CZK)\nThe limits being 0.10 % (11.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40097082 BTC (205,782.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 583,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.69 % (28,178.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,150.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02054917 BTC (11,990.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.86 CZK over 1944 transactions" + } + ] + }, + { + "id": 3532, + "type": "message", + "date": "2023-09-06T14:00:07", + "date_unixtime": "1694001607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014199 BTC for 82.71 CZK @ 582,489 CZK\nFees are 0.29048981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (34.949339997521878580261710256 CZK)\nThe limits being 0.10 % (12.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40111281 BTC (205,865.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 582,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 13.49 % (27,778.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,067.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02069116 BTC (12,052.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.84 CZK over 1945 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014199 BTC for 82.71 CZK @ 582,489 CZK\nFees are 0.29048981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (34.949339997521878580261710256 CZK)\nThe limits being 0.10 % (12.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40111281 BTC (205,865.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 582,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 13.49 % (27,778.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,067.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02069116 BTC (12,052.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.84 CZK over 1945 transactions" + } + ] + }, + { + "id": 3533, + "type": "message", + "date": "2023-09-06T18:00:07", + "date_unixtime": "1694016007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014117 BTC for 82.71 CZK @ 585,891 CZK\nFees are 0.29049901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (41.012369998198908481362196962 CZK)\nThe limits being 0.10 % (12.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40125398 BTC (205,948.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 585,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.15 % (29,142.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,984.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02083233 BTC (12,205.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.83 CZK over 1946 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014117 BTC for 82.71 CZK @ 585,891 CZK\nFees are 0.29049901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (41.012369998198908481362196962 CZK)\nThe limits being 0.10 % (12.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40125398 BTC (205,948.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 585,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.15 % (29,142.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,984.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02083233 BTC (12,205.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.83 CZK over 1946 transactions" + } + ] + }, + { + "id": 3534, + "type": "message", + "date": "2023-09-06T22:00:05", + "date_unixtime": "1694030405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014111 BTC for 82.71 CZK @ 586,137 CZK\nFees are 0.29049747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.890959998731673216451653144 CZK)\nThe limits being 0.10 % (12.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40139509 BTC (206,031.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.19 % (29,240.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,901.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02097344 BTC (12,293.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.82 CZK over 1947 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014111 BTC for 82.71 CZK @ 586,137 CZK\nFees are 0.29049747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.890959998731673216451653144 CZK)\nThe limits being 0.10 % (12.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40139509 BTC (206,031.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.19 % (29,240.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,901.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02097344 BTC (12,293.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.82 CZK over 1947 transactions" + } + ] + }, + { + "id": 3535, + "type": "message", + "date": "2023-09-07T02:00:07", + "date_unixtime": "1694044807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014083 BTC for 82.71 CZK @ 587,278 CZK\nFees are 0.29048542 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.982239998533854084021270298 CZK)\nThe limits being 0.10 % (12.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40153592 BTC (206,114.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 587,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.41 % (29,698.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,818.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02111427 BTC (12,399.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.81 CZK over 1948 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014083 BTC for 82.71 CZK @ 587,278 CZK\nFees are 0.29048542 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.982239998533854084021270298 CZK)\nThe limits being 0.10 % (12.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40153592 BTC (206,114.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 587,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.41 % (29,698.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,818.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02111427 BTC (12,399.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.81 CZK over 1948 transactions" + } + ] + }, + { + "id": 3536, + "type": "message", + "date": "2023-09-07T06:00:06", + "date_unixtime": "1694059206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014096 BTC for 82.71 CZK @ 586,755 CZK\nFees are 0.29049463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.940399996154209415739576634 CZK)\nThe limits being 0.10 % (12.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40167688 BTC (206,197.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 586,755 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.30 % (29,488.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,735.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02125523 BTC (12,471.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.80 CZK over 1949 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014096 BTC for 82.71 CZK @ 586,755 CZK\nFees are 0.29049463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (46.940399996154209415739576634 CZK)\nThe limits being 0.10 % (12.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40167688 BTC (206,197.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 586,755 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.30 % (29,488.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,735.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02125523 BTC (12,471.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.80 CZK over 1949 transactions" + } + ] + }, + { + "id": 3537, + "type": "message", + "date": "2023-09-07T10:00:05", + "date_unixtime": "1694073605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014034 BTC for 82.71 CZK @ 589,327 CZK\nFees are 0.29048468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (41.252889995461942769921918576 CZK)\nThe limits being 0.10 % (12.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40181722 BTC (206,280.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.80 % (30,521.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,652.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02139557 BTC (12,608.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.78 CZK over 1950 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014034 BTC for 82.71 CZK @ 589,327 CZK\nFees are 0.29048468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (41.252889995461942769921918576 CZK)\nThe limits being 0.10 % (12.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40181722 BTC (206,280.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.80 % (30,521.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,652.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02139557 BTC (12,608.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.78 CZK over 1950 transactions" + } + ] + }, + { + "id": 3538, + "type": "message", + "date": "2023-09-07T14:00:05", + "date_unixtime": "1694088005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014046 BTC for 82.71 CZK @ 588,829 CZK\nFees are 0.29048738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (41.218029997670831854989098742 CZK)\nThe limits being 0.10 % (12.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40195768 BTC (206,363.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.69 % (30,320.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,569.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02153603 BTC (12,681.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.77 CZK over 1951 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014046 BTC for 82.71 CZK @ 588,829 CZK\nFees are 0.29048738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (41.218029997670831854989098742 CZK)\nThe limits being 0.10 % (12.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40195768 BTC (206,363.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.69 % (30,320.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,569.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02153603 BTC (12,681.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.77 CZK over 1951 transactions" + } + ] + }, + { + "id": 3539, + "type": "message", + "date": "2023-09-07T18:00:07", + "date_unixtime": "1694102407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013996 BTC for 82.71 CZK @ 590,926 CZK\nFees are 0.29048416 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (41.364819999820576538844538542 CZK)\nThe limits being 0.10 % (12.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40209764 BTC (206,446.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.10 % (31,163.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,486.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02167599 BTC (12,808.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.76 CZK over 1952 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013996 BTC for 82.71 CZK @ 590,926 CZK\nFees are 0.29048416 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (41.364819999820576538844538542 CZK)\nThe limits being 0.10 % (12.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40209764 BTC (206,446.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.10 % (31,163.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,486.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02167599 BTC (12,808.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.76 CZK over 1952 transactions" + } + ] + }, + { + "id": 3540, + "type": "message", + "date": "2023-09-07T22:00:05", + "date_unixtime": "1694116805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014001 BTC for 82.71 CZK @ 590,721 CZK\nFees are 0.29048712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (35.443259997764413368295602203 CZK)\nThe limits being 0.10 % (12.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40223765 BTC (206,529.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.05 % (31,080.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,403.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02181600 BTC (12,887.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.75 CZK over 1953 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014001 BTC for 82.71 CZK @ 590,721 CZK\nFees are 0.29048712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (35.443259997764413368295602203 CZK)\nThe limits being 0.10 % (12.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40223765 BTC (206,529.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.05 % (31,080.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,403.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02181600 BTC (12,887.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.75 CZK over 1953 transactions" + } + ] + }, + { + "id": 3541, + "type": "message", + "date": "2023-09-08T02:00:07", + "date_unixtime": "1694131207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013790 BTC for 82.71 CZK @ 599,749 CZK\nFees are 0.29048200 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (41.98242999754665776381649 CZK)\nThe limits being 0.10 % (13.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40237555 BTC (206,612.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.80 % (34,711.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,320.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02195390 BTC (13,166.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.74 CZK over 1954 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013790 BTC for 82.71 CZK @ 599,749 CZK\nFees are 0.29048200 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (41.98242999754665776381649 CZK)\nThe limits being 0.10 % (13.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40237555 BTC (206,612.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.80 % (34,711.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,320.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02195390 BTC (13,166.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.74 CZK over 1954 transactions" + } + ] + }, + { + "id": 3542, + "type": "message", + "date": "2023-09-08T06:01:04", + "date_unixtime": "1694145664", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013841 BTC for 82.71 CZK @ 597,565 CZK\nFees are 0.29049459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (35.853899999665213368699761082 CZK)\nThe limits being 0.10 % (13.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40251396 BTC (206,695.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 597,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.37 % (33,832.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,237.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02209231 BTC (13,201.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.73 CZK over 1955 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013841 BTC for 82.71 CZK @ 597,565 CZK\nFees are 0.29049459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (35.853899999665213368699761082 CZK)\nThe limits being 0.10 % (13.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40251396 BTC (206,695.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 597,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.37 % (33,832.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,237.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02209231 BTC (13,201.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.73 CZK over 1955 transactions" + } + ] + }, + { + "id": 3543, + "type": "message", + "date": "2023-09-08T10:00:05", + "date_unixtime": "1694160005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013798 BTC for 82.70 CZK @ 599,397 CZK\nFees are 0.29047993 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (35.963819998609013979409506936 CZK)\nThe limits being 0.10 % (13.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40265194 BTC (206,778.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.72 % (34,569.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,154.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02223029 BTC (13,324.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.72 CZK over 1956 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013798 BTC for 82.70 CZK @ 599,397 CZK\nFees are 0.29047993 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (35.963819998609013979409506936 CZK)\nThe limits being 0.10 % (13.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40265194 BTC (206,778.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.72 % (34,569.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,154.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02223029 BTC (13,324.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.72 CZK over 1956 transactions" + } + ] + }, + { + "id": 3544, + "type": "message", + "date": "2023-09-08T14:00:05", + "date_unixtime": "1694174405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013901 BTC for 82.71 CZK @ 594,961 CZK\nFees are 0.29048249 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (41.647269999932256381852065358 CZK)\nThe limits being 0.10 % (13.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40279095 BTC (206,861.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.85 % (32,783.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,071.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02236930 BTC (13,308.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.70 CZK over 1957 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013901 BTC for 82.71 CZK @ 594,961 CZK\nFees are 0.29048249 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (41.647269999932256381852065358 CZK)\nThe limits being 0.10 % (13.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40279095 BTC (206,861.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.85 % (32,783.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,071.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02236930 BTC (13,308.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.70 CZK over 1957 transactions" + } + ] + }, + { + "id": 3545, + "type": "message", + "date": "2023-09-08T18:00:07", + "date_unixtime": "1694188807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013923 BTC for 82.71 CZK @ 594,029 CZK\nFees are 0.29048646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (65.343189998547424028827352492 CZK)\nThe limits being 0.10 % (13.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40293018 BTC (206,944.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.66 % (32,407.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,988.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02250853 BTC (13,370.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.69 CZK over 1958 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013923 BTC for 82.71 CZK @ 594,029 CZK\nFees are 0.29048646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (65.343189998547424028827352492 CZK)\nThe limits being 0.10 % (13.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40293018 BTC (206,944.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.66 % (32,407.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,988.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02250853 BTC (13,370.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.69 CZK over 1958 transactions" + } + ] + }, + { + "id": 3546, + "type": "message", + "date": "2023-09-08T22:00:05", + "date_unixtime": "1694203205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013923 BTC for 82.71 CZK @ 594,031 CZK\nFees are 0.29048744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (77.224029993993943699386414585 CZK)\nThe limits being 0.10 % (13.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40306941 BTC (207,027.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.65 % (32,408.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,905.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02264776 BTC (13,453.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.68 CZK over 1959 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013923 BTC for 82.71 CZK @ 594,031 CZK\nFees are 0.29048744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (77.224029993993943699386414585 CZK)\nThe limits being 0.10 % (13.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40306941 BTC (207,027.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.65 % (32,408.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,905.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02264776 BTC (13,453.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.68 CZK over 1959 transactions" + } + ] + }, + { + "id": 3547, + "type": "message", + "date": "2023-09-09T02:00:07", + "date_unixtime": "1694217607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013907 BTC for 82.71 CZK @ 594,710 CZK\nFees are 0.29048527 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (65.418099992945521909385318497 CZK)\nThe limits being 0.10 % (13.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40320848 BTC (207,110.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.78 % (32,681.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,822.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02278683 BTC (13,551.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.67 CZK over 1960 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013907 BTC for 82.71 CZK @ 594,710 CZK\nFees are 0.29048527 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (65.418099992945521909385318497 CZK)\nThe limits being 0.10 % (13.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40320848 BTC (207,110.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.78 % (32,681.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,822.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02278683 BTC (13,551.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.67 CZK over 1960 transactions" + } + ] + }, + { + "id": 3548, + "type": "message", + "date": "2023-09-09T06:00:06", + "date_unixtime": "1694232006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013907 BTC for 82.71 CZK @ 594,710 CZK\nFees are 0.29048527 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (65.418099992945521909385318497 CZK)\nThe limits being 0.10 % (13.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40334755 BTC (207,193.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.77 % (32,681.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,739.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02292590 BTC (13,634.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.66 CZK over 1961 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013907 BTC for 82.71 CZK @ 594,710 CZK\nFees are 0.29048527 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (65.418099992945521909385318497 CZK)\nThe limits being 0.10 % (13.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40334755 BTC (207,193.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.77 % (32,681.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,739.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02292590 BTC (13,634.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.66 CZK over 1961 transactions" + } + ] + }, + { + "id": 3549, + "type": "message", + "date": "2023-09-09T10:00:06", + "date_unixtime": "1694246406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013868 BTC for 82.71 CZK @ 596,379 CZK\nFees are 0.29048359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (59.637899993518502949512299683 CZK)\nThe limits being 0.10 % (13.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40348623 BTC (207,276.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 596,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.09 % (33,354.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,656.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02306458 BTC (13,755.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.65 CZK over 1962 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013868 BTC for 82.71 CZK @ 596,379 CZK\nFees are 0.29048359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (59.637899993518502949512299683 CZK)\nThe limits being 0.10 % (13.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40348623 BTC (207,276.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 596,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.09 % (33,354.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,656.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02306458 BTC (13,755.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.65 CZK over 1962 transactions" + } + ] + }, + { + "id": 3550, + "type": "message", + "date": "2023-09-09T14:00:06", + "date_unixtime": "1694260806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013886 BTC for 82.71 CZK @ 595,623 CZK\nFees are 0.29049191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (41.693609997875073710399027571 CZK)\nThe limits being 0.10 % (13.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40362509 BTC (207,359.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 595,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.94 % (33,048.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,573.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02320344 BTC (13,820.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.63 CZK over 1963 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013886 BTC for 82.71 CZK @ 595,623 CZK\nFees are 0.29049191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (41.693609997875073710399027571 CZK)\nThe limits being 0.10 % (13.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40362509 BTC (207,359.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 595,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.94 % (33,048.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,573.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02320344 BTC (13,820.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.63 CZK over 1963 transactions" + } + ] + }, + { + "id": 3551, + "type": "message", + "date": "2023-09-09T18:00:06", + "date_unixtime": "1694275206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013906 BTC for 82.71 CZK @ 594,747 CZK\nFees are 0.29048245 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (35.684819998980986366500507249 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40376415 BTC (207,442.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.76 % (32,694.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,490.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02334250 BTC (13,882.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.62 CZK over 1964 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013906 BTC for 82.71 CZK @ 594,747 CZK\nFees are 0.29048245 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (35.684819998980986366500507249 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40376415 BTC (207,442.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.76 % (32,694.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,490.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02334250 BTC (13,882.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.62 CZK over 1964 transactions" + } + ] + }, + { + "id": 3552, + "type": "message", + "date": "2023-09-09T22:00:07", + "date_unixtime": "1694289607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013924 BTC for 82.71 CZK @ 594,007 CZK\nFees are 0.29049656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (41.580489999308653553413383521 CZK)\nThe limits being 0.10 % (13.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40390339 BTC (207,525.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.61 % (32,395.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,407.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02348174 BTC (13,948.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.61 CZK over 1965 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013924 BTC for 82.71 CZK @ 594,007 CZK\nFees are 0.29049656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (41.580489999308653553413383521 CZK)\nThe limits being 0.10 % (13.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40390339 BTC (207,525.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.61 % (32,395.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,407.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02348174 BTC (13,948.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.61 CZK over 1965 transactions" + } + ] + }, + { + "id": 3553, + "type": "message", + "date": "2023-09-10T02:00:06", + "date_unixtime": "1694304006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013924 BTC for 82.71 CZK @ 594,007 CZK\nFees are 0.29049656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.640419995113340023505779183 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40404263 BTC (207,608.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.60 % (32,395.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,324.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02362098 BTC (14,031.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.60 CZK over 1966 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013924 BTC for 82.71 CZK @ 594,007 CZK\nFees are 0.29049656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.640419995113340023505779183 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40404263 BTC (207,608.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.60 % (32,395.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,324.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02362098 BTC (14,031.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.60 CZK over 1966 transactions" + } + ] + }, + { + "id": 3554, + "type": "message", + "date": "2023-09-10T06:00:07", + "date_unixtime": "1694318407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013930 BTC for 82.71 CZK @ 593,753 CZK\nFees are 0.29049747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.625179997789502713224460978 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40418193 BTC (207,691.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.55 % (32,292.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,241.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02376028 BTC (14,107.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.59 CZK over 1967 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013930 BTC for 82.71 CZK @ 593,753 CZK\nFees are 0.29049747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.625179997789502713224460978 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40418193 BTC (207,691.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.55 % (32,292.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,241.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02376028 BTC (14,107.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.59 CZK over 1967 transactions" + } + ] + }, + { + "id": 3555, + "type": "message", + "date": "2023-09-10T10:00:06", + "date_unixtime": "1694332806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013907 BTC for 82.71 CZK @ 594,740 CZK\nFees are 0.29049992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.684399999441087566208283232 CZK)\nThe limits being 0.10 % (14.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40432100 BTC (207,774.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.73 % (32,691.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,158.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02389935 BTC (14,213.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.58 CZK over 1968 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013907 BTC for 82.71 CZK @ 594,740 CZK\nFees are 0.29049992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.684399999441087566208283232 CZK)\nThe limits being 0.10 % (14.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40432100 BTC (207,774.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.73 % (32,691.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,158.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02389935 BTC (14,213.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.58 CZK over 1968 transactions" + } + ] + }, + { + "id": 3556, + "type": "message", + "date": "2023-09-10T14:00:06", + "date_unixtime": "1694347206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013910 BTC for 82.71 CZK @ 594,589 CZK\nFees are 0.29048882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.675339998001244386559335638 CZK)\nThe limits being 0.10 % (14.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40446010 BTC (207,857.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.70 % (32,629.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,075.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02403845 BTC (14,293.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.57 CZK over 1969 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013910 BTC for 82.71 CZK @ 594,589 CZK\nFees are 0.29048882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.675339998001244386559335638 CZK)\nThe limits being 0.10 % (14.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40446010 BTC (207,857.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.70 % (32,629.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,075.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02403845 BTC (14,293.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.57 CZK over 1969 transactions" + } + ] + }, + { + "id": 3557, + "type": "message", + "date": "2023-09-10T18:00:05", + "date_unixtime": "1694361605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013941 BTC for 82.71 CZK @ 593,274 CZK\nFees are 0.29049233 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.596439996058555117343225974 CZK)\nThe limits being 0.10 % (14.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40459951 BTC (207,940.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.44 % (32,097.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,992.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02417786 BTC (14,344.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.55 CZK over 1970 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013941 BTC for 82.71 CZK @ 593,274 CZK\nFees are 0.29049233 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.596439996058555117343225974 CZK)\nThe limits being 0.10 % (14.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40459951 BTC (207,940.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.44 % (32,097.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,992.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02417786 BTC (14,344.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.55 CZK over 1970 transactions" + } + ] + }, + { + "id": 3558, + "type": "message", + "date": "2023-09-10T22:00:06", + "date_unixtime": "1694376006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013996 BTC for 82.71 CZK @ 590,942 CZK\nFees are 0.29049202 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.456519996531146417661078480 CZK)\nThe limits being 0.10 % (14.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40473947 BTC (208,023.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.98 % (31,153.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,909.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02431782 BTC (14,370.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.54 CZK over 1971 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013996 BTC for 82.71 CZK @ 590,942 CZK\nFees are 0.29049202 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.456519996531146417661078480 CZK)\nThe limits being 0.10 % (14.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40473947 BTC (208,023.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.98 % (31,153.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,909.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02431782 BTC (14,370.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.54 CZK over 1971 transactions" + } + ] + }, + { + "id": 3559, + "type": "message", + "date": "2023-09-11T02:00:06", + "date_unixtime": "1694390406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014000 BTC for 82.71 CZK @ 590,764 CZK\nFees are 0.29048752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.44584 CZK)\nThe limits being 0.10 % (14.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40487947 BTC (208,106.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 513,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.94 % (31,081.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,826.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02445782 BTC (14,448.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.53 CZK over 1972 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014000 BTC for 82.71 CZK @ 590,764 CZK\nFees are 0.29048752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (35.44584 CZK)\nThe limits being 0.10 % (14.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40487947 BTC (208,106.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 513,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.94 % (31,081.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,826.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02445782 BTC (14,448.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.53 CZK over 1972 transactions" + } + ] + }, + { + "id": 3560, + "type": "message", + "date": "2023-09-11T06:00:06", + "date_unixtime": "1694404806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014062 BTC for 82.70 CZK @ 588,145 CZK\nFees are 0.29048046 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (35.288699998022849482082232877 CZK)\nThe limits being 0.10 % (14.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40502009 BTC (208,189.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 588,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.42 % (30,020.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,743.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02459844 BTC (14,467.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.52 CZK over 1973 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014062 BTC for 82.70 CZK @ 588,145 CZK\nFees are 0.29048046 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (35.288699998022849482082232877 CZK)\nThe limits being 0.10 % (14.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40502009 BTC (208,189.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 588,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.42 % (30,020.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,743.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02459844 BTC (14,467.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.52 CZK over 1973 transactions" + } + ] + }, + { + "id": 3561, + "type": "message", + "date": "2023-09-11T10:00:05", + "date_unixtime": "1694419205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014016 BTC for 82.71 CZK @ 590,106 CZK\nFees are 0.29049559 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (35.406359996007125744824620676 CZK)\nThe limits being 0.10 % (14.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40516025 BTC (208,272.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 590,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.80 % (30,814.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,660.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02473860 BTC (14,598.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.51 CZK over 1974 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014016 BTC for 82.71 CZK @ 590,106 CZK\nFees are 0.29049559 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (35.406359996007125744824620676 CZK)\nThe limits being 0.10 % (14.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40516025 BTC (208,272.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 590,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.80 % (30,814.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,660.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02473860 BTC (14,598.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.51 CZK over 1974 transactions" + } + ] + }, + { + "id": 3562, + "type": "message", + "date": "2023-09-11T14:00:06", + "date_unixtime": "1694433606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014032 BTC for 82.71 CZK @ 589,433 CZK\nFees are 0.29049552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (35.365979997886530552416598917 CZK)\nThe limits being 0.10 % (14.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40530057 BTC (208,355.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 589,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 14.66 % (30,541.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,577.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02487892 BTC (14,664.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.50 CZK over 1975 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014032 BTC for 82.71 CZK @ 589,433 CZK\nFees are 0.29049552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (35.365979997886530552416598917 CZK)\nThe limits being 0.10 % (14.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40530057 BTC (208,355.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 589,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 14.66 % (30,541.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,577.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02487892 BTC (14,664.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.50 CZK over 1975 transactions" + } + ] + }, + { + "id": 3563, + "type": "message", + "date": "2023-09-11T18:00:06", + "date_unixtime": "1694448006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014384 BTC for 82.71 CZK @ 574,999 CZK\nFees are 0.29049067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (40.249929996818698515152472466 CZK)\nThe limits being 0.10 % (14.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40544441 BTC (208,438.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 574,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.85 % (24,691.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,494.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02502276 BTC (14,388.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.49 CZK over 1976 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014384 BTC for 82.71 CZK @ 574,999 CZK\nFees are 0.29049067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (40.249929996818698515152472466 CZK)\nThe limits being 0.10 % (14.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40544441 BTC (208,438.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 574,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.85 % (24,691.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,494.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02502276 BTC (14,388.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.49 CZK over 1976 transactions" + } + ] + }, + { + "id": 3564, + "type": "message", + "date": "2023-09-11T22:00:05", + "date_unixtime": "1694462405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014410 BTC for 82.71 CZK @ 573,977 CZK\nFees are 0.29049850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (45.918160000027661685142943490 CZK)\nThe limits being 0.10 % (14.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40558851 BTC (208,521.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 573,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 11.64 % (24,276.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,411.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02516686 BTC (14,445.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.47 CZK over 1977 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014410 BTC for 82.71 CZK @ 573,977 CZK\nFees are 0.29049850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (45.918160000027661685142943490 CZK)\nThe limits being 0.10 % (14.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40558851 BTC (208,521.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 573,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 11.64 % (24,276.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,411.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02516686 BTC (14,445.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.47 CZK over 1977 transactions" + } + ] + }, + { + "id": 3565, + "type": "message", + "date": "2023-09-12T02:00:06", + "date_unixtime": "1694476806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00014361 BTC for 82.71 CZK @ 575,937 CZK\nFees are 0.29049930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (46.074959997782290220423767838 CZK)\nThe limits being 0.10 % (14.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40573212 BTC (208,604.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 575,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 12.02 % (25,071.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,328.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02531047 BTC (14,577.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.46 CZK over 1978 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00014361 BTC for 82.71 CZK @ 575,937 CZK\nFees are 0.29049930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (46.074959997782290220423767838 CZK)\nThe limits being 0.10 % (14.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40573212 BTC (208,604.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 575,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 12.02 % (25,071.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,328.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02531047 BTC (14,577.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.46 CZK over 1978 transactions" + } + ] + }, + { + "id": 3566, + "type": "message", + "date": "2023-09-12T06:00:06", + "date_unixtime": "1694491206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013962 BTC for 82.71 CZK @ 592,381 CZK\nFees are 0.29049200 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (47.390479998132877858308126114 CZK)\nThe limits being 0.10 % (15.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40587174 BTC (208,687.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.21 % (31,743.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,245.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02545009 BTC (15,076.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.45 CZK over 1979 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013962 BTC for 82.71 CZK @ 592,381 CZK\nFees are 0.29049200 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (47.390479998132877858308126114 CZK)\nThe limits being 0.10 % (15.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40587174 BTC (208,687.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.21 % (31,743.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,245.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02545009 BTC (15,076.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.45 CZK over 1979 transactions" + } + ] + }, + { + "id": 3567, + "type": "message", + "date": "2023-09-12T10:00:06", + "date_unixtime": "1694505606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013927 BTC for 82.71 CZK @ 593,886 CZK\nFees are 0.29049996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (35.633159999454769654668486536 CZK)\nThe limits being 0.10 % (15.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40601101 BTC (208,770.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 593,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.50 % (32,353.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,162.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02558936 BTC (15,197.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.44 CZK over 1980 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013927 BTC for 82.71 CZK @ 593,886 CZK\nFees are 0.29049996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (35.633159999454769654668486536 CZK)\nThe limits being 0.10 % (15.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40601101 BTC (208,770.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 593,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.50 % (32,353.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,162.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02558936 BTC (15,197.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.44 CZK over 1980 transactions" + } + ] + }, + { + "id": 3568, + "type": "message", + "date": "2023-09-12T14:00:06", + "date_unixtime": "1694520006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013766 BTC for 82.71 CZK @ 600,808 CZK\nFees are 0.29048847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (36.048479998922846023227869969 CZK)\nThe limits being 0.10 % (15.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40614867 BTC (208,853.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 600,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.84 % (35,163.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,079.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02572702 BTC (15,457.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.43 CZK over 1981 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013766 BTC for 82.71 CZK @ 600,808 CZK\nFees are 0.29048847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (36.048479998922846023227869969 CZK)\nThe limits being 0.10 % (15.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40614867 BTC (208,853.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 600,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.84 % (35,163.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,079.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02572702 BTC (15,457.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.43 CZK over 1981 transactions" + } + ] + }, + { + "id": 3569, + "type": "message", + "date": "2023-09-12T18:00:05", + "date_unixtime": "1694534405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013731 BTC for 82.70 CZK @ 602,322 CZK\nFees are 0.29048005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (48.185759995140451722445332530 CZK)\nThe limits being 0.10 % (15.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40628598 BTC (208,936.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.12 % (35,778.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,996.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02586433 BTC (15,578.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.42 CZK over 1982 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013731 BTC for 82.70 CZK @ 602,322 CZK\nFees are 0.29048005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (48.185759995140451722445332530 CZK)\nThe limits being 0.10 % (15.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40628598 BTC (208,936.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.12 % (35,778.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,996.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02586433 BTC (15,578.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.42 CZK over 1982 transactions" + } + ] + }, + { + "id": 3570, + "type": "message", + "date": "2023-09-12T22:00:07", + "date_unixtime": "1694548807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013826 BTC for 82.71 CZK @ 598,191 CZK\nFees are 0.29048375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (47.855279996073341165028432599 CZK)\nThe limits being 0.10 % (15.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40642424 BTC (209,019.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.31 % (34,099.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,913.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02600259 BTC (15,554.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.41 CZK over 1983 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013826 BTC for 82.71 CZK @ 598,191 CZK\nFees are 0.29048375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (47.855279996073341165028432599 CZK)\nThe limits being 0.10 % (15.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40642424 BTC (209,019.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.31 % (34,099.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,913.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02600259 BTC (15,554.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.41 CZK over 1983 transactions" + } + ] + }, + { + "id": 3571, + "type": "message", + "date": "2023-09-13T02:00:07", + "date_unixtime": "1694563207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013969 BTC for 82.71 CZK @ 592,068 CZK\nFees are 0.29048407 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (59.206799995562813423117164235 CZK)\nThe limits being 0.10 % (15.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40656393 BTC (209,102.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.12 % (31,610.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,830.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02614228 BTC (15,478.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.39 CZK over 1984 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013969 BTC for 82.71 CZK @ 592,068 CZK\nFees are 0.29048407 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (59.206799995562813423117164235 CZK)\nThe limits being 0.10 % (15.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40656393 BTC (209,102.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.12 % (31,610.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,830.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02614228 BTC (15,478.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.39 CZK over 1984 transactions" + } + ] + }, + { + "id": 3572, + "type": "message", + "date": "2023-09-13T06:00:05", + "date_unixtime": "1694577605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013949 BTC for 82.71 CZK @ 592,926 CZK\nFees are 0.29048853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (53.363339995441433511636078515 CZK)\nThe limits being 0.10 % (15.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40670342 BTC (209,185.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 592,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.28 % (31,959.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,747.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02628177 BTC (15,583.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.38 CZK over 1985 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013949 BTC for 82.71 CZK @ 592,926 CZK\nFees are 0.29048853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (53.363339995441433511636078515 CZK)\nThe limits being 0.10 % (15.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40670342 BTC (209,185.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 592,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.28 % (31,959.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,747.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02628177 BTC (15,583.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.38 CZK over 1985 transactions" + } + ] + }, + { + "id": 3573, + "type": "message", + "date": "2023-09-13T10:00:05", + "date_unixtime": "1694592005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013922 BTC for 82.71 CZK @ 594,097 CZK\nFees are 0.29049884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (53.468729996656580577374391467 CZK)\nThe limits being 0.10 % (15.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40684264 BTC (209,268.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 594,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 15.50 % (32,435.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,664.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02642099 BTC (15,696.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.37 CZK over 1986 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013922 BTC for 82.71 CZK @ 594,097 CZK\nFees are 0.29049884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (53.468729996656580577374391467 CZK)\nThe limits being 0.10 % (15.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40684264 BTC (209,268.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 594,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 15.50 % (32,435.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,664.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02642099 BTC (15,696.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.37 CZK over 1986 transactions" + } + ] + }, + { + "id": 3574, + "type": "message", + "date": "2023-09-13T14:00:07", + "date_unixtime": "1694606407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013825 BTC for 82.71 CZK @ 598,240 CZK\nFees are 0.29048654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (29.91200 CZK)\nThe limits being 0.10 % (15.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40698089 BTC (209,351.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.30 % (34,120.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,581.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02655924 BTC (15,888.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.36 CZK over 1987 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013825 BTC for 82.71 CZK @ 598,240 CZK\nFees are 0.29048654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (29.91200 CZK)\nThe limits being 0.10 % (15.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40698089 BTC (209,351.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.30 % (34,120.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,581.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02655924 BTC (15,888.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.36 CZK over 1987 transactions" + } + ] + }, + { + "id": 3575, + "type": "message", + "date": "2023-09-13T18:00:07", + "date_unixtime": "1694620807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013807 BTC for 82.71 CZK @ 599,037 CZK\nFees are 0.29049482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (35.942219997806619397474234543 CZK)\nThe limits being 0.10 % (15.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40711896 BTC (209,434.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.45 % (34,444.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,498.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02669731 BTC (15,992.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.35 CZK over 1988 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013807 BTC for 82.71 CZK @ 599,037 CZK\nFees are 0.29049482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (35.942219997806619397474234543 CZK)\nThe limits being 0.10 % (15.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40711896 BTC (209,434.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.45 % (34,444.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,498.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02669731 BTC (15,992.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.35 CZK over 1988 transactions" + } + ] + }, + { + "id": 3576, + "type": "message", + "date": "2023-09-13T22:00:07", + "date_unixtime": "1694635207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013847 BTC for 82.71 CZK @ 597,279 CZK\nFees are 0.29048142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (53.755109999381452847438097519 CZK)\nThe limits being 0.10 % (16.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40725743 BTC (209,517.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 597,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.10 % (33,728.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,415.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02683578 BTC (16,028.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.34 CZK over 1989 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013847 BTC for 82.71 CZK @ 597,279 CZK\nFees are 0.29048142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (53.755109999381452847438097519 CZK)\nThe limits being 0.10 % (16.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40725743 BTC (209,517.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 597,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.10 % (33,728.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,415.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02683578 BTC (16,028.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.34 CZK over 1989 transactions" + } + ] + }, + { + "id": 3577, + "type": "message", + "date": "2023-09-14T02:00:05", + "date_unixtime": "1694649605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013814 BTC for 82.70 CZK @ 598,702 CZK\nFees are 0.29047956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (29.935100000007213784619042558 CZK)\nThe limits being 0.10 % (16.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40739557 BTC (209,600.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 598,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.37 % (34,308.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,332.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02697392 BTC (16,149.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.33 CZK over 1990 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013814 BTC for 82.70 CZK @ 598,702 CZK\nFees are 0.29047956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (29.935100000007213784619042558 CZK)\nThe limits being 0.10 % (16.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40739557 BTC (209,600.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 598,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.37 % (34,308.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,332.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02697392 BTC (16,149.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.33 CZK over 1990 transactions" + } + ] + }, + { + "id": 3578, + "type": "message", + "date": "2023-09-14T06:00:05", + "date_unixtime": "1694664005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013802 BTC for 82.71 CZK @ 599,254 CZK\nFees are 0.29049482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (29.962699996469392339101219921 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40753359 BTC (209,683.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.47 % (34,532.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,249.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02711194 BTC (16,246.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.32 CZK over 1991 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013802 BTC for 82.71 CZK @ 599,254 CZK\nFees are 0.29049482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (29.962699996469392339101219921 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40753359 BTC (209,683.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.47 % (34,532.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,249.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02711194 BTC (16,246.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.32 CZK over 1991 transactions" + } + ] + }, + { + "id": 3579, + "type": "message", + "date": "2023-09-14T10:00:30", + "date_unixtime": "1694678430", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (502) Bad Gateway.\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nSystem.Exception: {\"ClassName\":\"System.Net.WebException\",\"Message\":\"The remote server returned an error: (502) Bad Gateway.\",\"Data\":null,\"InnerException\":null,\"HelpURL\":null,\"StackTraceString\":\" at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\\r\\n at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)\\r\\n at System.Net.WebClient.GetWebResponseTaskAsync(WebRequest request)\\r\\n at System.Net.WebClient.DownloadBitsAsync(WebRequest request, Stream writeStream, AsyncOperation asyncOp, Action`3 completionDelegate)\\r\\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 236\",\"RemoteStackTraceString\":null,\"RemoteStackIndex\":0,\"ExceptionMethod\":null,\"HResult\":-2146233079,\"Source\":\"System.Net.Requests\",\"WatsonBuckets\":null}\n at CryptoBotCore.API.CoinmateAPI.getBalancesAsync() in /home/runner/work/AccBot/AccBot/CryptoBotCore/API/CoinmateAPI.cs:line 267\n at CryptoBotCore.BotStrategies.AccumulationBot.Tick() in /home/runner/work/AccBot/AccBot/CryptoBotCore/BotStrategies/AccumulationBot.cs:line 96" + } + ] + }, + { + "id": 3580, + "type": "message", + "date": "2023-09-14T14:00:05", + "date_unixtime": "1694692805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013683 BTC for 82.71 CZK @ 604,466 CZK\nFees are 0.29049498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.223299996456894037571707385 CZK)\nThe limits being 0.10 % (16.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40767042 BTC (209,766.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.47 % (36,656.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,166.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02724877 BTC (16,470.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.30 CZK over 1992 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013683 BTC for 82.71 CZK @ 604,466 CZK\nFees are 0.29049498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.223299996456894037571707385 CZK)\nThe limits being 0.10 % (16.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40767042 BTC (209,766.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.47 % (36,656.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,166.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02724877 BTC (16,470.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.30 CZK over 1992 transactions" + } + ] + }, + { + "id": 3581, + "type": "message", + "date": "2023-09-14T18:00:07", + "date_unixtime": "1694707207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013433 BTC for 82.71 CZK @ 615,687 CZK\nFees are 0.29048146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.784349999449184609617103186 CZK)\nThe limits being 0.10 % (16.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40780475 BTC (209,849.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.65 % (41,230.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,083.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02738310 BTC (16,859.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.29 CZK over 1993 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013433 BTC for 82.71 CZK @ 615,687 CZK\nFees are 0.29048146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.784349999449184609617103186 CZK)\nThe limits being 0.10 % (16.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40780475 BTC (209,849.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.65 % (41,230.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,083.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02738310 BTC (16,859.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.29 CZK over 1993 transactions" + } + ] + }, + { + "id": 3582, + "type": "message", + "date": "2023-09-14T22:00:07", + "date_unixtime": "1694721607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013420 BTC for 82.71 CZK @ 616,300 CZK\nFees are 0.29048928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (36.97800 CZK)\nThe limits being 0.10 % (16.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40793895 BTC (209,932.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.76 % (41,480.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,000.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02751730 BTC (16,958.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.28 CZK over 1994 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013420 BTC for 82.71 CZK @ 616,300 CZK\nFees are 0.29048928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (36.97800 CZK)\nThe limits being 0.10 % (16.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40793895 BTC (209,932.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.76 % (41,480.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,000.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02751730 BTC (16,958.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.28 CZK over 1994 transactions" + } + ] + }, + { + "id": 3583, + "type": "message", + "date": "2023-09-15T02:00:08", + "date_unixtime": "1694736008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013466 BTC for 82.71 CZK @ 614,207 CZK\nFees are 0.29049509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.710349999567087745985737873 CZK)\nThe limits being 0.10 % (16.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40807361 BTC (210,015.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.34 % (40,626.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,917.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02765196 BTC (16,984.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.27 CZK over 1995 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013466 BTC for 82.71 CZK @ 614,207 CZK\nFees are 0.29049509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.710349999567087745985737873 CZK)\nThe limits being 0.10 % (16.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40807361 BTC (210,015.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.34 % (40,626.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,917.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02765196 BTC (16,984.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.27 CZK over 1995 transactions" + } + ] + }, + { + "id": 3584, + "type": "message", + "date": "2023-09-15T06:00:07", + "date_unixtime": "1694750407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013466 BTC for 82.71 CZK @ 614,209 CZK\nFees are 0.29049603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.710449998597660305372603876 CZK)\nThe limits being 0.10 % (17.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40820827 BTC (210,098.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.34 % (40,626.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,834.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02778662 BTC (17,066.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.26 CZK over 1996 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013466 BTC for 82.71 CZK @ 614,209 CZK\nFees are 0.29049603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.710449998597660305372603876 CZK)\nThe limits being 0.10 % (17.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40820827 BTC (210,098.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.34 % (40,626.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,834.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02778662 BTC (17,066.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.26 CZK over 1996 transactions" + } + ] + }, + { + "id": 3585, + "type": "message", + "date": "2023-09-15T10:00:06", + "date_unixtime": "1694764806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013445 BTC for 82.71 CZK @ 615,168 CZK\nFees are 0.29049587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.758399999407058560193654674 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40834272 BTC (210,181.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.52 % (41,017.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,751.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02792107 BTC (17,176.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.25 CZK over 1997 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013445 BTC for 82.71 CZK @ 615,168 CZK\nFees are 0.29049587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.758399999407058560193654674 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40834272 BTC (210,181.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.52 % (41,017.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,751.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02792107 BTC (17,176.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.25 CZK over 1997 transactions" + } + ] + }, + { + "id": 3586, + "type": "message", + "date": "2023-09-15T14:00:08", + "date_unixtime": "1694779208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,136 CZK\nFees are 0.29048308 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.606799999129683661768961472 CZK)\nThe limits being 0.10 % (17.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40847783 BTC (210,264.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.92 % (39,779.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,668.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02805618 BTC (17,174.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.24 CZK over 1998 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,136 CZK\nFees are 0.29048308 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.606799999129683661768961472 CZK)\nThe limits being 0.10 % (17.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40847783 BTC (210,264.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.92 % (39,779.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,668.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02805618 BTC (17,174.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.24 CZK over 1998 transactions" + } + ] + }, + { + "id": 3587, + "type": "message", + "date": "2023-09-15T18:00:05", + "date_unixtime": "1694793605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013573 BTC for 82.71 CZK @ 609,344 CZK\nFees are 0.29048507 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.467199998560993202491640271 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40861356 BTC (210,347.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.37 % (38,638.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,585.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02819191 BTC (17,178.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.23 CZK over 1999 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013573 BTC for 82.71 CZK @ 609,344 CZK\nFees are 0.29048507 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.467199998560993202491640271 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40861356 BTC (210,347.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.37 % (38,638.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,585.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02819191 BTC (17,178.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.23 CZK over 1999 transactions" + } + ] + }, + { + "id": 3588, + "type": "message", + "date": "2023-09-15T22:00:06", + "date_unixtime": "1694808006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013514 BTC for 82.71 CZK @ 611,998 CZK\nFees are 0.29048208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.719879998221409320744273836 CZK)\nThe limits being 0.10 % (17.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40874870 BTC (210,430.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.88 % (39,722.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,502.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02832705 BTC (17,336.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.22 CZK over 2000 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013514 BTC for 82.71 CZK @ 611,998 CZK\nFees are 0.29048208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.719879998221409320744273836 CZK)\nThe limits being 0.10 % (17.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40874870 BTC (210,430.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.88 % (39,722.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,502.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02832705 BTC (17,336.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.22 CZK over 2000 transactions" + } + ] + }, + { + "id": 3589, + "type": "message", + "date": "2023-09-16T02:00:06", + "date_unixtime": "1694822406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013473 BTC for 82.71 CZK @ 613,879 CZK\nFees are 0.29049088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.693949999317685362420572753 CZK)\nThe limits being 0.10 % (17.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40888343 BTC (210,513.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.23 % (40,491.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,419.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02846178 BTC (17,472.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.20 CZK over 2001 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013473 BTC for 82.71 CZK @ 613,879 CZK\nFees are 0.29049088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (30.693949999317685362420572753 CZK)\nThe limits being 0.10 % (17.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40888343 BTC (210,513.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.23 % (40,491.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,419.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02846178 BTC (17,472.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.20 CZK over 2001 transactions" + } + ] + }, + { + "id": 3590, + "type": "message", + "date": "2023-09-16T06:00:06", + "date_unixtime": "1694836806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013463 BTC for 82.71 CZK @ 614,323 CZK\nFees are 0.29048522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (30.716149996589593704956221522 CZK)\nThe limits being 0.10 % (17.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40901806 BTC (210,596.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.31 % (40,672.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,336.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02859641 BTC (17,567.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.19 CZK over 2002 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013463 BTC for 82.71 CZK @ 614,323 CZK\nFees are 0.29048522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (30.716149996589593704956221522 CZK)\nThe limits being 0.10 % (17.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40901806 BTC (210,596.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.31 % (40,672.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,336.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02859641 BTC (17,567.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.19 CZK over 2002 transactions" + } + ] + }, + { + "id": 3591, + "type": "message", + "date": "2023-09-16T10:00:07", + "date_unixtime": "1694851207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013498 BTC for 82.71 CZK @ 612,756 CZK\nFees are 0.29049751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (30.637799997386536365571293184 CZK)\nThe limits being 0.10 % (17.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40915304 BTC (210,679.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.00 % (40,031.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,253.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02873139 BTC (17,605.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.18 CZK over 2003 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013498 BTC for 82.71 CZK @ 612,756 CZK\nFees are 0.29049751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (30.637799997386536365571293184 CZK)\nThe limits being 0.10 % (17.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40915304 BTC (210,679.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.00 % (40,031.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,253.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02873139 BTC (17,605.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.18 CZK over 2003 transactions" + } + ] + }, + { + "id": 3592, + "type": "message", + "date": "2023-09-16T14:00:05", + "date_unixtime": "1694865605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013493 BTC for 82.71 CZK @ 612,982 CZK\nFees are 0.29049701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (30.649099998371518997227926521 CZK)\nThe limits being 0.10 % (17.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40928797 BTC (210,762.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.04 % (40,123.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,170.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02886632 BTC (17,694.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.17 CZK over 2004 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013493 BTC for 82.71 CZK @ 612,982 CZK\nFees are 0.29049701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (30.649099998371518997227926521 CZK)\nThe limits being 0.10 % (17.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40928797 BTC (210,762.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.04 % (40,123.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,170.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02886632 BTC (17,694.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.17 CZK over 2004 transactions" + } + ] + }, + { + "id": 3593, + "type": "message", + "date": "2023-09-16T18:00:05", + "date_unixtime": "1694880005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013491 BTC for 82.71 CZK @ 613,062 CZK\nFees are 0.29049186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.783719999791700806128960026 CZK)\nThe limits being 0.10 % (17.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40942288 BTC (210,845.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 514,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.05 % (40,156.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,087.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02900123 BTC (17,779.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.16 CZK over 2005 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013491 BTC for 82.71 CZK @ 613,062 CZK\nFees are 0.29049186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.783719999791700806128960026 CZK)\nThe limits being 0.10 % (17.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40942288 BTC (210,845.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 514,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.05 % (40,156.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,087.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02900123 BTC (17,779.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.16 CZK over 2005 transactions" + } + ] + }, + { + "id": 3594, + "type": "message", + "date": "2023-09-16T22:00:06", + "date_unixtime": "1694894406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013497 BTC for 82.71 CZK @ 612,801 CZK\nFees are 0.29049732 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.768059996281075803480882040 CZK)\nThe limits being 0.10 % (17.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40955785 BTC (210,928.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.99 % (40,048.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,004.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02913620 BTC (17,854.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.15 CZK over 2006 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013497 BTC for 82.71 CZK @ 612,801 CZK\nFees are 0.29049732 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.768059996281075803480882040 CZK)\nThe limits being 0.10 % (17.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40955785 BTC (210,928.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.99 % (40,048.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,004.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02913620 BTC (17,854.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.15 CZK over 2006 transactions" + } + ] + }, + { + "id": 3595, + "type": "message", + "date": "2023-09-17T02:00:05", + "date_unixtime": "1694908805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013490 BTC for 82.71 CZK @ 613,101 CZK\nFees are 0.29048880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.786059996830958214078745148 CZK)\nThe limits being 0.10 % (17.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40969275 BTC (211,011.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.04 % (40,171.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,921.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02927110 BTC (17,946.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.14 CZK over 2007 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013490 BTC for 82.71 CZK @ 613,101 CZK\nFees are 0.29048880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.786059996830958214078745148 CZK)\nThe limits being 0.10 % (17.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40969275 BTC (211,011.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.04 % (40,171.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,921.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02927110 BTC (17,946.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.14 CZK over 2007 transactions" + } + ] + }, + { + "id": 3596, + "type": "message", + "date": "2023-09-17T06:00:06", + "date_unixtime": "1694923206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013504 BTC for 82.71 CZK @ 612,460 CZK\nFees are 0.29048625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.747599998051842248811623771 CZK)\nThe limits being 0.10 % (18.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40982779 BTC (211,094.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.91 % (39,908.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,838.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02940614 BTC (18,010.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.13 CZK over 2008 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013504 BTC for 82.71 CZK @ 612,460 CZK\nFees are 0.29048625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.747599998051842248811623771 CZK)\nThe limits being 0.10 % (18.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40982779 BTC (211,094.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.91 % (39,908.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,838.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02940614 BTC (18,010.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.13 CZK over 2008 transactions" + } + ] + }, + { + "id": 3597, + "type": "message", + "date": "2023-09-17T10:00:05", + "date_unixtime": "1694937605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013507 BTC for 82.71 CZK @ 612,336 CZK\nFees are 0.29049196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.740159998973017700062072670 CZK)\nThe limits being 0.10 % (18.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.40996286 BTC (211,177.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.87 % (39,857.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,755.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02954121 BTC (18,089.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.12 CZK over 2009 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013507 BTC for 82.71 CZK @ 612,336 CZK\nFees are 0.29049196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.740159998973017700062072670 CZK)\nThe limits being 0.10 % (18.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.40996286 BTC (211,177.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.87 % (39,857.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,755.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02954121 BTC (18,089.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.12 CZK over 2009 transactions" + } + ] + }, + { + "id": 3598, + "type": "message", + "date": "2023-09-17T14:00:05", + "date_unixtime": "1694952005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013473 BTC for 82.71 CZK @ 613,888 CZK\nFees are 0.29049514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.833279997408313831893427558 CZK)\nThe limits being 0.10 % (18.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41009759 BTC (211,260.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.17 % (40,493.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,672.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02967594 BTC (18,217.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.10 CZK over 2010 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013473 BTC for 82.71 CZK @ 613,888 CZK\nFees are 0.29049514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.833279997408313831893427558 CZK)\nThe limits being 0.10 % (18.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41009759 BTC (211,260.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.17 % (40,493.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,672.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02967594 BTC (18,217.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.10 CZK over 2010 transactions" + } + ] + }, + { + "id": 3599, + "type": "message", + "date": "2023-09-17T18:00:05", + "date_unixtime": "1694966405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013484 BTC for 82.71 CZK @ 613,367 CZK\nFees are 0.29048558 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.802019999122028699019465690 CZK)\nThe limits being 0.10 % (18.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41023243 BTC (211,343.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.06 % (40,279.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,589.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02981078 BTC (18,284.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.09 CZK over 2011 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013484 BTC for 82.71 CZK @ 613,367 CZK\nFees are 0.29048558 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (36.802019999122028699019465690 CZK)\nThe limits being 0.10 % (18.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41023243 BTC (211,343.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.06 % (40,279.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,589.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02981078 BTC (18,284.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.09 CZK over 2011 transactions" + } + ] + }, + { + "id": 3600, + "type": "message", + "date": "2023-09-17T22:00:07", + "date_unixtime": "1694980807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,168 CZK\nFees are 0.29049826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (42.851759997583765827080608293 CZK)\nThe limits being 0.10 % (18.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41036754 BTC (211,426.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.82 % (39,787.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,506.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02994589 BTC (18,331.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.08 CZK over 2012 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,168 CZK\nFees are 0.29049826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (42.851759997583765827080608293 CZK)\nThe limits being 0.10 % (18.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41036754 BTC (211,426.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.82 % (39,787.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,506.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02994589 BTC (18,331.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.08 CZK over 2012 transactions" + } + ] + }, + { + "id": 3601, + "type": "message", + "date": "2023-09-18T02:00:05", + "date_unixtime": "1694995205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,168 CZK\nFees are 0.29049826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (42.851759997583765827080608293 CZK)\nThe limits being 0.10 % (18.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41050265 BTC (211,509.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.81 % (39,787.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,423.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03008100 BTC (18,414.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.07 CZK over 2013 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,168 CZK\nFees are 0.29049826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (42.851759997583765827080608293 CZK)\nThe limits being 0.10 % (18.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41050265 BTC (211,509.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.81 % (39,787.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,423.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03008100 BTC (18,414.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.07 CZK over 2013 transactions" + } + ] + }, + { + "id": 3602, + "type": "message", + "date": "2023-09-18T06:00:06", + "date_unixtime": "1695009606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013432 BTC for 82.70 CZK @ 615,727 CZK\nFees are 0.29047871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (49.258159995702949147904905789 CZK)\nThe limits being 0.10 % (18.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41063697 BTC (211,592.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.49 % (41,247.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,340.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03021532 BTC (18,604.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.06 CZK over 2014 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013432 BTC for 82.70 CZK @ 615,727 CZK\nFees are 0.29047871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (49.258159995702949147904905789 CZK)\nThe limits being 0.10 % (18.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41063697 BTC (211,592.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.49 % (41,247.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,340.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03021532 BTC (18,604.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.06 CZK over 2014 transactions" + } + ] + }, + { + "id": 3603, + "type": "message", + "date": "2023-09-18T10:00:05", + "date_unixtime": "1695024005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013423 BTC for 82.71 CZK @ 616,162 CZK\nFees are 0.29048915 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (55.454579994380838190522992963 CZK)\nThe limits being 0.10 % (18.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41077120 BTC (211,675.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 616,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.57 % (41,426.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,257.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03034955 BTC (18,700.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.05 CZK over 2015 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013423 BTC for 82.71 CZK @ 616,162 CZK\nFees are 0.29048915 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (55.454579994380838190522992963 CZK)\nThe limits being 0.10 % (18.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41077120 BTC (211,675.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 616,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.57 % (41,426.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,257.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03034955 BTC (18,700.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.05 CZK over 2015 transactions" + } + ] + }, + { + "id": 3604, + "type": "message", + "date": "2023-09-18T14:00:06", + "date_unixtime": "1695038406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013263 BTC for 82.71 CZK @ 623,588 CZK\nFees are 0.29048582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (56.122919994901355772777635212 CZK)\nThe limits being 0.10 % (19.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41090383 BTC (211,758.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.00 % (44,476.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,174.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03048218 BTC (19,008.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.04 CZK over 2016 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013263 BTC for 82.71 CZK @ 623,588 CZK\nFees are 0.29048582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (56.122919994901355772777635212 CZK)\nThe limits being 0.10 % (19.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41090383 BTC (211,758.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.00 % (44,476.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,174.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03048218 BTC (19,008.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.04 CZK over 2016 transactions" + } + ] + }, + { + "id": 3605, + "type": "message", + "date": "2023-09-18T18:00:04", + "date_unixtime": "1695052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013237 BTC for 82.71 CZK @ 624,815 CZK\nFees are 0.29048682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (68.729649995507526934418061374 CZK)\nThe limits being 0.10 % (19.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41103620 BTC (211,841.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.23 % (44,980.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,091.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03061455 BTC (19,128.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.03 CZK over 2017 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013237 BTC for 82.71 CZK @ 624,815 CZK\nFees are 0.29048682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (68.729649995507526934418061374 CZK)\nThe limits being 0.10 % (19.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41103620 BTC (211,841.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.23 % (44,980.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,091.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03061455 BTC (19,128.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.03 CZK over 2017 transactions" + } + ] + }, + { + "id": 3606, + "type": "message", + "date": "2023-09-18T22:00:06", + "date_unixtime": "1695067206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013471 BTC for 82.71 CZK @ 613,984 CZK\nFees are 0.29049744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (79.81791999399917821586291939 CZK)\nThe limits being 0.10 % (18.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41117091 BTC (211,924.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.12 % (40,527.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,008.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03074926 BTC (18,879.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.02 CZK over 2018 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013471 BTC for 82.71 CZK @ 613,984 CZK\nFees are 0.29049744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (79.81791999399917821586291939 CZK)\nThe limits being 0.10 % (18.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41117091 BTC (211,924.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.12 % (40,527.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,008.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03074926 BTC (18,879.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.02 CZK over 2018 transactions" + } + ] + }, + { + "id": 3607, + "type": "message", + "date": "2023-09-19T02:00:06", + "date_unixtime": "1695081606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013508 BTC for 82.70 CZK @ 612,266 CZK\nFees are 0.29048025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (79.59457999090833843466729344 CZK)\nThe limits being 0.10 % (18.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41130599 BTC (212,007.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.78 % (39,821.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,925.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03088434 BTC (18,909.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.01 CZK over 2019 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013508 BTC for 82.70 CZK @ 612,266 CZK\nFees are 0.29048025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (79.59457999090833843466729344 CZK)\nThe limits being 0.10 % (18.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41130599 BTC (212,007.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.78 % (39,821.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,925.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03088434 BTC (18,909.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.01 CZK over 2019 transactions" + } + ] + }, + { + "id": 3608, + "type": "message", + "date": "2023-09-19T06:00:05", + "date_unixtime": "1695096005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013473 BTC for 82.71 CZK @ 613,880 CZK\nFees are 0.29049136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (79.80439999673080683132675509 CZK)\nThe limits being 0.10 % (19.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41144072 BTC (212,090.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 613,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.09 % (40,484.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,842.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03101907 BTC (19,041.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 105.00 CZK over 2020 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013473 BTC for 82.71 CZK @ 613,880 CZK\nFees are 0.29049136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (79.80439999673080683132675509 CZK)\nThe limits being 0.10 % (19.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41144072 BTC (212,090.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 613,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.09 % (40,484.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,842.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03101907 BTC (19,041.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 105.00 CZK over 2020 transactions" + } + ] + }, + { + "id": 3609, + "type": "message", + "date": "2023-09-19T10:00:07", + "date_unixtime": "1695110407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013447 BTC for 82.71 CZK @ 615,056 CZK\nFees are 0.29048619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (67.656159999087005994376268170 CZK)\nThe limits being 0.10 % (19.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41157519 BTC (212,173.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.31 % (40,968.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,759.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03115354 BTC (19,161.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.98 CZK over 2021 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013447 BTC for 82.71 CZK @ 615,056 CZK\nFees are 0.29048619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (67.656159999087005994376268170 CZK)\nThe limits being 0.10 % (19.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41157519 BTC (212,173.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.31 % (40,968.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,759.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03115354 BTC (19,161.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.98 CZK over 2021 transactions" + } + ] + }, + { + "id": 3610, + "type": "message", + "date": "2023-09-19T14:00:08", + "date_unixtime": "1695124808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013278 BTC for 82.71 CZK @ 622,900 CZK\nFees are 0.29049350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (56.060999995271858031458354864 CZK)\nThe limits being 0.10 % (19.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41170797 BTC (212,256.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.82 % (44,196.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,676.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03128632 BTC (19,488.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.97 CZK over 2022 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013278 BTC for 82.71 CZK @ 622,900 CZK\nFees are 0.29049350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (56.060999995271858031458354864 CZK)\nThe limits being 0.10 % (19.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41170797 BTC (212,256.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.82 % (44,196.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,676.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03128632 BTC (19,488.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.97 CZK over 2022 transactions" + } + ] + }, + { + "id": 3611, + "type": "message", + "date": "2023-09-19T18:00:05", + "date_unixtime": "1695139205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013151 BTC for 82.71 CZK @ 628,897 CZK\nFees are 0.29048501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (69.178669995294774122826210464 CZK)\nThe limits being 0.10 % (19.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41183948 BTC (212,339.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.98 % (46,665.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,593.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03141783 BTC (19,758.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.96 CZK over 2023 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013151 BTC for 82.71 CZK @ 628,897 CZK\nFees are 0.29048501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (69.178669995294774122826210464 CZK)\nThe limits being 0.10 % (19.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41183948 BTC (212,339.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.98 % (46,665.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,593.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03141783 BTC (19,758.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.96 CZK over 2023 transactions" + } + ] + }, + { + "id": 3612, + "type": "message", + "date": "2023-09-19T22:00:06", + "date_unixtime": "1695153606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013240 BTC for 82.71 CZK @ 624,701 CZK\nFees are 0.29049965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (87.45813999641737303124863582 CZK)\nThe limits being 0.10 % (19.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41197188 BTC (212,422.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.15 % (44,936.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,510.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03155023 BTC (19,709.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.95 CZK over 2024 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013240 BTC for 82.71 CZK @ 624,701 CZK\nFees are 0.29049965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (87.45813999641737303124863582 CZK)\nThe limits being 0.10 % (19.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41197188 BTC (212,422.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.15 % (44,936.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,510.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03155023 BTC (19,709.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.95 CZK over 2024 transactions" + } + ] + }, + { + "id": 3613, + "type": "message", + "date": "2023-09-20T02:00:08", + "date_unixtime": "1695168008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013243 BTC for 82.71 CZK @ 624,521 CZK\nFees are 0.29048175 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (81.18772999402792484102214024 CZK)\nThe limits being 0.10 % (19.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41210431 BTC (212,505.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.11 % (44,862.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,427.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03168266 BTC (19,786.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.94 CZK over 2025 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013243 BTC for 82.71 CZK @ 624,521 CZK\nFees are 0.29048175 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (81.18772999402792484102214024 CZK)\nThe limits being 0.10 % (19.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41210431 BTC (212,505.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.11 % (44,862.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,427.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03168266 BTC (19,786.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.94 CZK over 2025 transactions" + } + ] + }, + { + "id": 3614, + "type": "message", + "date": "2023-09-20T06:00:05", + "date_unixtime": "1695182405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013281 BTC for 82.71 CZK @ 622,746 CZK\nFees are 0.29048730 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (80.95697999325979281835164155 CZK)\nThe limits being 0.10 % (19.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41223712 BTC (212,588.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.76 % (44,130.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,344.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03181547 BTC (19,812.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.93 CZK over 2026 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013281 BTC for 82.71 CZK @ 622,746 CZK\nFees are 0.29048730 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (80.95697999325979281835164155 CZK)\nThe limits being 0.10 % (19.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41223712 BTC (212,588.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.76 % (44,130.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,344.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03181547 BTC (19,812.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.93 CZK over 2026 transactions" + } + ] + }, + { + "id": 3615, + "type": "message", + "date": "2023-09-20T10:00:05", + "date_unixtime": "1695196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013318 BTC for 82.71 CZK @ 621,038 CZK\nFees are 0.29049764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (55.893419998020144691058394285 CZK)\nThe limits being 0.10 % (19.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41237030 BTC (212,671.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.42 % (43,426.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,261.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03194865 BTC (19,841.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.92 CZK over 2027 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013318 BTC for 82.71 CZK @ 621,038 CZK\nFees are 0.29049764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (55.893419998020144691058394285 CZK)\nThe limits being 0.10 % (19.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41237030 BTC (212,671.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.42 % (43,426.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,261.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03194865 BTC (19,841.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.92 CZK over 2027 transactions" + } + ] + }, + { + "id": 3616, + "type": "message", + "date": "2023-09-20T14:00:05", + "date_unixtime": "1695211205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013357 BTC for 82.71 CZK @ 619,207 CZK\nFees are 0.29048934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.536559996141378201674091266 CZK)\nThe limits being 0.10 % (19.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41250387 BTC (212,754.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.06 % (42,670.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,178.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03208222 BTC (19,865.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.91 CZK over 2028 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013357 BTC for 82.71 CZK @ 619,207 CZK\nFees are 0.29048934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.536559996141378201674091266 CZK)\nThe limits being 0.10 % (19.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41250387 BTC (212,754.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.06 % (42,670.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,178.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03208222 BTC (19,865.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.91 CZK over 2028 transactions" + } + ] + }, + { + "id": 3617, + "type": "message", + "date": "2023-09-20T18:00:06", + "date_unixtime": "1695225606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013357 BTC for 82.71 CZK @ 619,208 CZK\nFees are 0.29048981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.536639997636482239540510659 CZK)\nThe limits being 0.10 % (19.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41263744 BTC (212,837.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.05 % (42,670.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,095.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03221579 BTC (19,948.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.90 CZK over 2029 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013357 BTC for 82.71 CZK @ 619,208 CZK\nFees are 0.29048981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.536639997636482239540510659 CZK)\nThe limits being 0.10 % (19.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41263744 BTC (212,837.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.05 % (42,670.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,095.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03221579 BTC (19,948.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.90 CZK over 2029 transactions" + } + ] + }, + { + "id": 3618, + "type": "message", + "date": "2023-09-20T22:00:06", + "date_unixtime": "1695240006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013389 BTC for 82.71 CZK @ 617,742 CZK\nFees are 0.29049636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (86.48387999236223148028133514 CZK)\nThe limits being 0.10 % (19.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41277133 BTC (212,920.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 617,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.76 % (42,065.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,012.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03234968 BTC (19,983.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.89 CZK over 2030 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013389 BTC for 82.71 CZK @ 617,742 CZK\nFees are 0.29049636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (86.48387999236223148028133514 CZK)\nThe limits being 0.10 % (19.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41277133 BTC (212,920.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 617,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.76 % (42,065.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,012.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03234968 BTC (19,983.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.89 CZK over 2030 transactions" + } + ] + }, + { + "id": 3619, + "type": "message", + "date": "2023-09-21T02:00:06", + "date_unixtime": "1695254406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013284 BTC for 82.71 CZK @ 622,605 CZK\nFees are 0.29048722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (80.93867600030426479318770932 CZK)\nThe limits being 0.10 % (20.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41290417 BTC (213,003.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.69 % (44,072.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,929.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03248252 BTC (20,223.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.88 CZK over 2031 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013284 BTC for 82.71 CZK @ 622,605 CZK\nFees are 0.29048722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (80.93867600030426479318770932 CZK)\nThe limits being 0.10 % (20.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41290417 BTC (213,003.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.69 % (44,072.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,929.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03248252 BTC (20,223.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.88 CZK over 2031 transactions" + } + ] + }, + { + "id": 3620, + "type": "message", + "date": "2023-09-21T06:00:06", + "date_unixtime": "1695268806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013331 BTC for 82.71 CZK @ 620,417 CZK\nFees are 0.29049044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.633359996444818799941708781 CZK)\nThe limits being 0.10 % (20.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41303748 BTC (213,086.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.26 % (43,169.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,846.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03261583 BTC (20,235.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.87 CZK over 2032 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013331 BTC for 82.71 CZK @ 620,417 CZK\nFees are 0.29049044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.633359996444818799941708781 CZK)\nThe limits being 0.10 % (20.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41303748 BTC (213,086.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.26 % (43,169.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,846.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03261583 BTC (20,235.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.87 CZK over 2032 transactions" + } + ] + }, + { + "id": 3621, + "type": "message", + "date": "2023-09-21T10:00:05", + "date_unixtime": "1695283205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013346 BTC for 82.70 CZK @ 619,698 CZK\nFees are 0.29048027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (74.363759997509092819220843342 CZK)\nThe limits being 0.10 % (20.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41317094 BTC (213,169.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 619,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.11 % (42,871.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,763.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03274929 BTC (20,294.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.85 CZK over 2033 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013346 BTC for 82.70 CZK @ 619,698 CZK\nFees are 0.29048027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (74.363759997509092819220843342 CZK)\nThe limits being 0.10 % (20.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41317094 BTC (213,169.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 619,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.11 % (42,871.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,763.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03274929 BTC (20,294.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.85 CZK over 2033 transactions" + } + ] + }, + { + "id": 3622, + "type": "message", + "date": "2023-09-21T14:00:05", + "date_unixtime": "1695297605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013452 BTC for 82.71 CZK @ 614,830 CZK\nFees are 0.29048742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (79.92789999942218293066150720 CZK)\nThe limits being 0.10 % (20.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41330546 BTC (213,252.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 515,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.16 % (40,860.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,680.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03288381 BTC (20,217.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.84 CZK over 2034 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013452 BTC for 82.71 CZK @ 614,830 CZK\nFees are 0.29048742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (79.92789999942218293066150720 CZK)\nThe limits being 0.10 % (20.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41330546 BTC (213,252.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 515,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.16 % (40,860.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,680.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03288381 BTC (20,217.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.84 CZK over 2034 transactions" + } + ] + }, + { + "id": 3623, + "type": "message", + "date": "2023-09-21T18:00:07", + "date_unixtime": "1695312007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013547 BTC for 82.70 CZK @ 610,502 CZK\nFees are 0.29047960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.36525999924454267596445584 CZK)\nThe limits being 0.10 % (20.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41344093 BTC (213,335.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.31 % (39,071.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,597.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03301928 BTC (20,158.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.83 CZK over 2035 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013547 BTC for 82.70 CZK @ 610,502 CZK\nFees are 0.29047960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.36525999924454267596445584 CZK)\nThe limits being 0.10 % (20.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41344093 BTC (213,335.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.31 % (39,071.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,597.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03301928 BTC (20,158.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.83 CZK over 2035 transactions" + } + ] + }, + { + "id": 3624, + "type": "message", + "date": "2023-09-21T22:00:05", + "date_unixtime": "1695326405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013556 BTC for 82.71 CZK @ 610,116 CZK\nFees are 0.29048880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (122.02319998917921238486189456 CZK)\nThe limits being 0.10 % (20.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41357649 BTC (213,418.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.23 % (38,911.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,514.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03315484 BTC (20,228.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.82 CZK over 2036 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013556 BTC for 82.71 CZK @ 610,116 CZK\nFees are 0.29048880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (122.02319998917921238486189456 CZK)\nThe limits being 0.10 % (20.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41357649 BTC (213,418.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.23 % (38,911.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,514.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03315484 BTC (20,228.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.82 CZK over 2036 transactions" + } + ] + }, + { + "id": 3625, + "type": "message", + "date": "2023-09-22T02:00:07", + "date_unixtime": "1695340807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013552 BTC for 82.71 CZK @ 610,306 CZK\nFees are 0.29049352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (115.95813999731753502646286992 CZK)\nThe limits being 0.10 % (20.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41371201 BTC (213,501.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.26 % (38,989.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,431.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03329036 BTC (20,317.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.81 CZK over 2037 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013552 BTC for 82.71 CZK @ 610,306 CZK\nFees are 0.29049352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (115.95813999731753502646286992 CZK)\nThe limits being 0.10 % (20.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41371201 BTC (213,501.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.26 % (38,989.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,431.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03329036 BTC (20,317.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.81 CZK over 2037 transactions" + } + ] + }, + { + "id": 3626, + "type": "message", + "date": "2023-09-22T06:00:05", + "date_unixtime": "1695355205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013523 BTC for 82.71 CZK @ 611,628 CZK\nFees are 0.29049979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.51163999948269498668436999 CZK)\nThe limits being 0.10 % (20.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41384724 BTC (213,584.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.51 % (39,536.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,348.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03342559 BTC (20,444.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.80 CZK over 2038 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013523 BTC for 82.71 CZK @ 611,628 CZK\nFees are 0.29049979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.51163999948269498668436999 CZK)\nThe limits being 0.10 % (20.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41384724 BTC (213,584.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.51 % (39,536.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,348.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03342559 BTC (20,444.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.80 CZK over 2038 transactions" + } + ] + }, + { + "id": 3627, + "type": "message", + "date": "2023-09-22T10:00:04", + "date_unixtime": "1695369604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013516 BTC for 82.71 CZK @ 611,917 CZK\nFees are 0.29048661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.54920999423002032100433331 CZK)\nThe limits being 0.10 % (20.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41398240 BTC (213,667.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.56 % (39,655.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,265.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03356075 BTC (20,536.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.79 CZK over 2039 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013516 BTC for 82.71 CZK @ 611,917 CZK\nFees are 0.29048661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.54920999423002032100433331 CZK)\nThe limits being 0.10 % (20.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41398240 BTC (213,667.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.56 % (39,655.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,265.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03356075 BTC (20,536.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.79 CZK over 2039 transactions" + } + ] + }, + { + "id": 3628, + "type": "message", + "date": "2023-09-22T14:00:06", + "date_unixtime": "1695384006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013520 BTC for 82.71 CZK @ 611,727 CZK\nFees are 0.29048236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.52450999386761718600283623 CZK)\nThe limits being 0.10 % (20.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41411760 BTC (213,750.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.52 % (39,576.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,182.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03369595 BTC (20,612.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.78 CZK over 2040 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013520 BTC for 82.71 CZK @ 611,727 CZK\nFees are 0.29048236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (79.52450999386761718600283623 CZK)\nThe limits being 0.10 % (20.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41411760 BTC (213,750.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.52 % (39,576.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,182.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03369595 BTC (20,612.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.78 CZK over 2040 transactions" + } + ] + }, + { + "id": 3629, + "type": "message", + "date": "2023-09-22T18:00:08", + "date_unixtime": "1695398408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013536 BTC for 82.71 CZK @ 611,011 CZK\nFees are 0.29048573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.43142999869840899640855116 CZK)\nThe limits being 0.10 % (20.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41425296 BTC (213,833.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.37 % (39,279.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,099.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03383131 BTC (20,671.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.77 CZK over 2041 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013536 BTC for 82.71 CZK @ 611,011 CZK\nFees are 0.29048573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.43142999869840899640855116 CZK)\nThe limits being 0.10 % (20.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41425296 BTC (213,833.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.37 % (39,279.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,099.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03383131 BTC (20,671.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.77 CZK over 2041 transactions" + } + ] + }, + { + "id": 3630, + "type": "message", + "date": "2023-09-22T22:00:06", + "date_unixtime": "1695412806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013536 BTC for 82.71 CZK @ 611,004 CZK\nFees are 0.29048240 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (128.31083999220812263460865693 CZK)\nThe limits being 0.10 % (20.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41438832 BTC (213,916.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.36 % (39,276.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,016.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03396667 BTC (20,753.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.76 CZK over 2042 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013536 BTC for 82.71 CZK @ 611,004 CZK\nFees are 0.29048240 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (128.31083999220812263460865693 CZK)\nThe limits being 0.10 % (20.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41438832 BTC (213,916.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.36 % (39,276.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,016.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03396667 BTC (20,753.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.76 CZK over 2042 transactions" + } + ] + }, + { + "id": 3631, + "type": "message", + "date": "2023-09-23T02:00:06", + "date_unixtime": "1695427206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013521 BTC for 82.71 CZK @ 611,710 CZK\nFees are 0.29049577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (128.45909999713671331612929188 CZK)\nThe limits being 0.10 % (20.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41452353 BTC (213,999.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.49 % (39,568.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,933.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03410188 BTC (20,860.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.75 CZK over 2043 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013521 BTC for 82.71 CZK @ 611,710 CZK\nFees are 0.29049577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (128.45909999713671331612929188 CZK)\nThe limits being 0.10 % (20.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41452353 BTC (213,999.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.49 % (39,568.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,933.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03410188 BTC (20,860.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.75 CZK over 2043 transactions" + } + ] + }, + { + "id": 3632, + "type": "message", + "date": "2023-09-23T06:00:06", + "date_unixtime": "1695441606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013541 BTC for 82.71 CZK @ 610,798 CZK\nFees are 0.29049173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (128.26757999979909324821951911 CZK)\nThe limits being 0.10 % (20.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41465894 BTC (214,082.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.31 % (39,190.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,850.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03423729 BTC (20,912.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.74 CZK over 2044 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013541 BTC for 82.71 CZK @ 610,798 CZK\nFees are 0.29049173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (128.26757999979909324821951911 CZK)\nThe limits being 0.10 % (20.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41465894 BTC (214,082.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.31 % (39,190.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,850.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03423729 BTC (20,912.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.74 CZK over 2044 transactions" + } + ] + }, + { + "id": 3633, + "type": "message", + "date": "2023-09-23T10:00:05", + "date_unixtime": "1695456005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013512 BTC for 82.71 CZK @ 612,115 CZK\nFees are 0.29049461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.57494999443923768291146764 CZK)\nThe limits being 0.10 % (21.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41479406 BTC (214,165.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.55 % (39,736.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,767.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03437241 BTC (21,039.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.73 CZK over 2045 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013512 BTC for 82.71 CZK @ 612,115 CZK\nFees are 0.29049461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.57494999443923768291146764 CZK)\nThe limits being 0.10 % (21.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41479406 BTC (214,165.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.55 % (39,736.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,767.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03437241 BTC (21,039.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.73 CZK over 2045 transactions" + } + ] + }, + { + "id": 3634, + "type": "message", + "date": "2023-09-23T14:00:05", + "date_unixtime": "1695470405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013518 BTC for 82.71 CZK @ 611,829 CZK\nFees are 0.29048782 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.53776999542878221829455760 CZK)\nThe limits being 0.10 % (21.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41492924 BTC (214,248.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.49 % (39,617.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,684.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03450759 BTC (21,112.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.72 CZK over 2046 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013518 BTC for 82.71 CZK @ 611,829 CZK\nFees are 0.29048782 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.53776999542878221829455760 CZK)\nThe limits being 0.10 % (21.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41492924 BTC (214,248.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.49 % (39,617.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,684.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03450759 BTC (21,112.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.72 CZK over 2046 transactions" + } + ] + }, + { + "id": 3635, + "type": "message", + "date": "2023-09-23T18:00:05", + "date_unixtime": "1695484805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013518 BTC for 82.71 CZK @ 611,825 CZK\nFees are 0.29048592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.53724999784376519730875359 CZK)\nThe limits being 0.10 % (21.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41506442 BTC (214,331.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.48 % (39,615.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,601.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03464277 BTC (21,195.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.71 CZK over 2047 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013518 BTC for 82.71 CZK @ 611,825 CZK\nFees are 0.29048592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.53724999784376519730875359 CZK)\nThe limits being 0.10 % (21.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41506442 BTC (214,331.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.48 % (39,615.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,601.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03464277 BTC (21,195.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.71 CZK over 2047 transactions" + } + ] + }, + { + "id": 3636, + "type": "message", + "date": "2023-09-23T22:00:05", + "date_unixtime": "1695499205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013494 BTC for 82.71 CZK @ 612,918 CZK\nFees are 0.29048820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (134.84195999639323727558259298 CZK)\nThe limits being 0.10 % (21.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41519936 BTC (214,414.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.69 % (40,068.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,518.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03477771 BTC (21,315.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.69 CZK over 2048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013494 BTC for 82.71 CZK @ 612,918 CZK\nFees are 0.29048820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (134.84195999639323727558259298 CZK)\nThe limits being 0.10 % (21.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41519936 BTC (214,414.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.69 % (40,068.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,518.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03477771 BTC (21,315.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.69 CZK over 2048 transactions" + } + ] + }, + { + "id": 3637, + "type": "message", + "date": "2023-09-24T02:00:05", + "date_unixtime": "1695513605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013512 BTC for 82.71 CZK @ 612,105 CZK\nFees are 0.29048987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (134.66309998929147628061996157 CZK)\nThe limits being 0.10 % (21.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41533448 BTC (214,497.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.52 % (39,730.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,435.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03491283 BTC (21,370.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.68 CZK over 2049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013512 BTC for 82.71 CZK @ 612,105 CZK\nFees are 0.29048987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (134.66309998929147628061996157 CZK)\nThe limits being 0.10 % (21.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41533448 BTC (214,497.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.52 % (39,730.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,435.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03491283 BTC (21,370.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.68 CZK over 2049 transactions" + } + ] + }, + { + "id": 3638, + "type": "message", + "date": "2023-09-24T06:00:05", + "date_unixtime": "1695528005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013514 BTC for 82.71 CZK @ 611,996 CZK\nFees are 0.29048113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (85.67943999169991016347327789 CZK)\nThe limits being 0.10 % (21.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41546962 BTC (214,580.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.49 % (39,685.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,352.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03504797 BTC (21,449.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.67 CZK over 2050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013514 BTC for 82.71 CZK @ 611,996 CZK\nFees are 0.29048113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (85.67943999169991016347327789 CZK)\nThe limits being 0.10 % (21.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41546962 BTC (214,580.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.49 % (39,685.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,352.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03504797 BTC (21,449.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.67 CZK over 2050 transactions" + } + ] + }, + { + "id": 3639, + "type": "message", + "date": "2023-09-24T10:00:06", + "date_unixtime": "1695542406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013519 BTC for 82.71 CZK @ 611,801 CZK\nFees are 0.29049601 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (73.416119999854050286973623241 CZK)\nThe limits being 0.10 % (21.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41560481 BTC (214,663.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.45 % (39,604.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,269.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03518316 BTC (21,525.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.66 CZK over 2051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013519 BTC for 82.71 CZK @ 611,801 CZK\nFees are 0.29049601 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (73.416119999854050286973623241 CZK)\nThe limits being 0.10 % (21.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41560481 BTC (214,663.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.45 % (39,604.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,269.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03518316 BTC (21,525.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.66 CZK over 2051 transactions" + } + ] + }, + { + "id": 3640, + "type": "message", + "date": "2023-09-24T14:00:05", + "date_unixtime": "1695556805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013496 BTC for 82.71 CZK @ 612,815 CZK\nFees are 0.29048244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (73.537799996987426047954861014 CZK)\nThe limits being 0.10 % (21.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41573977 BTC (214,746.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.64 % (40,025.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,186.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03531812 BTC (21,643.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.65 CZK over 2052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013496 BTC for 82.71 CZK @ 612,815 CZK\nFees are 0.29048244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (73.537799996987426047954861014 CZK)\nThe limits being 0.10 % (21.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41573977 BTC (214,746.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.64 % (40,025.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,186.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03531812 BTC (21,643.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.65 CZK over 2052 transactions" + } + ] + }, + { + "id": 3641, + "type": "message", + "date": "2023-09-24T18:00:05", + "date_unixtime": "1695571205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,155 CZK\nFees are 0.29049209 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (73.458599993649640955788778204 CZK)\nThe limits being 0.10 % (21.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41587488 BTC (214,829.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.50 % (39,750.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,103.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03545323 BTC (21,702.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.64 CZK over 2053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013511 BTC for 82.71 CZK @ 612,155 CZK\nFees are 0.29049209 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (73.458599993649640955788778204 CZK)\nThe limits being 0.10 % (21.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41587488 BTC (214,829.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.50 % (39,750.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,103.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03545323 BTC (21,702.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.64 CZK over 2053 transactions" + } + ] + }, + { + "id": 3642, + "type": "message", + "date": "2023-09-24T22:00:05", + "date_unixtime": "1695585605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013557 BTC for 82.71 CZK @ 610,086 CZK\nFees are 0.29049595 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (67.109459994687767410213842172 CZK)\nThe limits being 0.10 % (21.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41601045 BTC (214,912.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 610,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.10 % (38,889.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,020.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03558880 BTC (21,712.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.63 CZK over 2054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013557 BTC for 82.71 CZK @ 610,086 CZK\nFees are 0.29049595 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (67.109459994687767410213842172 CZK)\nThe limits being 0.10 % (21.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41601045 BTC (214,912.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 610,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.10 % (38,889.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,020.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03558880 BTC (21,712.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.63 CZK over 2054 transactions" + } + ] + }, + { + "id": 3643, + "type": "message", + "date": "2023-09-25T02:00:06", + "date_unixtime": "1695600006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013671 BTC for 82.71 CZK @ 604,981 CZK\nFees are 0.29048749 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (60.498099997241022087240047882 CZK)\nThe limits being 0.10 % (21.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41614716 BTC (214,995.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.10 % (36,765.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,937.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03572551 BTC (21,613.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.62 CZK over 2055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013671 BTC for 82.71 CZK @ 604,981 CZK\nFees are 0.29048749 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (60.498099997241022087240047882 CZK)\nThe limits being 0.10 % (21.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41614716 BTC (214,995.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.10 % (36,765.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,937.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03572551 BTC (21,613.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.62 CZK over 2055 transactions" + } + ] + }, + { + "id": 3644, + "type": "message", + "date": "2023-09-25T06:00:05", + "date_unixtime": "1695614405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013722 BTC for 82.71 CZK @ 602,720 CZK\nFees are 0.29048147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (60.271999996804654050424156756 CZK)\nThe limits being 0.10 % (21.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41628438 BTC (215,078.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 602,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.66 % (35,824.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,854.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03586273 BTC (21,615.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.61 CZK over 2056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013722 BTC for 82.71 CZK @ 602,720 CZK\nFees are 0.29048147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (60.271999996804654050424156756 CZK)\nThe limits being 0.10 % (21.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41628438 BTC (215,078.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 602,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.66 % (35,824.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,854.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03586273 BTC (21,615.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.61 CZK over 2056 transactions" + } + ] + }, + { + "id": 3645, + "type": "message", + "date": "2023-09-25T10:00:07", + "date_unixtime": "1695628807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013746 BTC for 82.71 CZK @ 601,685 CZK\nFees are 0.29048984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (54.151649999771641681004306838 CZK)\nThe limits being 0.10 % (21.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41642184 BTC (215,161.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 601,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.45 % (35,393.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,771.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03600019 BTC (21,660.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.60 CZK over 2057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013746 BTC for 82.71 CZK @ 601,685 CZK\nFees are 0.29048984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (54.151649999771641681004306838 CZK)\nThe limits being 0.10 % (21.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41642184 BTC (215,161.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 601,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.45 % (35,393.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,771.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03600019 BTC (21,660.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.60 CZK over 2057 transactions" + } + ] + }, + { + "id": 3646, + "type": "message", + "date": "2023-09-25T14:00:06", + "date_unixtime": "1695643206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013794 BTC for 82.71 CZK @ 599,574 CZK\nFees are 0.29048147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.965919999156208309339813188 CZK)\nThe limits being 0.10 % (21.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41655978 BTC (215,244.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 599,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.03 % (34,514.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,688.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03613813 BTC (21,667.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.59 CZK over 2058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013794 BTC for 82.71 CZK @ 599,574 CZK\nFees are 0.29048147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.965919999156208309339813188 CZK)\nThe limits being 0.10 % (21.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41655978 BTC (215,244.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 599,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.03 % (34,514.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,688.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03613813 BTC (21,667.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.59 CZK over 2058 transactions" + } + ] + }, + { + "id": 3647, + "type": "message", + "date": "2023-09-25T18:00:05", + "date_unixtime": "1695657605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013642 BTC for 82.71 CZK @ 606,284 CZK\nFees are 0.29049561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.439879999243229257633468316 CZK)\nThe limits being 0.10 % (21.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41669620 BTC (215,327.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.33 % (37,308.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,605.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03627455 BTC (21,992.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.58 CZK over 2059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013642 BTC for 82.71 CZK @ 606,284 CZK\nFees are 0.29049561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.439879999243229257633468316 CZK)\nThe limits being 0.10 % (21.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41669620 BTC (215,327.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.33 % (37,308.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,605.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03627455 BTC (21,992.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.58 CZK over 2059 transactions" + } + ] + }, + { + "id": 3648, + "type": "message", + "date": "2023-09-25T22:20:07", + "date_unixtime": "1695673207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013581 BTC for 82.71 CZK @ 608,999 CZK\nFees are 0.29049171 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.629929995035782830192258029 CZK)\nThe limits being 0.10 % (22.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41683201 BTC (215,410.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.84 % (38,439.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,522.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03641036 BTC (22,173.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.57 CZK over 2060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013581 BTC for 82.71 CZK @ 608,999 CZK\nFees are 0.29049171 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.629929995035782830192258029 CZK)\nThe limits being 0.10 % (22.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41683201 BTC (215,410.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.84 % (38,439.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,522.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03641036 BTC (22,173.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.57 CZK over 2060 transactions" + } + ] + }, + { + "id": 3649, + "type": "message", + "date": "2023-09-26T02:00:05", + "date_unixtime": "1695686405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013685 BTC for 82.71 CZK @ 604,354 CZK\nFees are 0.29048360 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.304779996355466863420483550 CZK)\nThe limits being 0.10 % (22.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41696886 BTC (215,493.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 604,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.94 % (36,503.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,439.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03654721 BTC (22,087.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.56 CZK over 2061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013685 BTC for 82.71 CZK @ 604,354 CZK\nFees are 0.29048360 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.304779996355466863420483550 CZK)\nThe limits being 0.10 % (22.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41696886 BTC (215,493.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 604,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.94 % (36,503.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,439.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03654721 BTC (22,087.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.56 CZK over 2061 transactions" + } + ] + }, + { + "id": 3650, + "type": "message", + "date": "2023-09-26T06:00:05", + "date_unixtime": "1695700805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013565 BTC for 82.71 CZK @ 609,716 CZK\nFees are 0.29049109 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.582959998280988894196519334 CZK)\nThe limits being 0.10 % (22.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41710451 BTC (215,576.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.97 % (38,738.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,356.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03668286 BTC (22,366.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.55 CZK over 2062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013565 BTC for 82.71 CZK @ 609,716 CZK\nFees are 0.29049109 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.582959998280988894196519334 CZK)\nThe limits being 0.10 % (22.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41710451 BTC (215,576.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.97 % (38,738.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,356.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03668286 BTC (22,366.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.55 CZK over 2062 transactions" + } + ] + }, + { + "id": 3651, + "type": "message", + "date": "2023-09-26T10:00:05", + "date_unixtime": "1695715205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013592 BTC for 82.71 CZK @ 608,504 CZK\nFees are 0.29049069 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.510239998733098076684517665 CZK)\nThe limits being 0.10 % (22.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41724043 BTC (215,659.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 608,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.73 % (38,233.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,273.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03681878 BTC (22,404.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.54 CZK over 2063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013592 BTC for 82.71 CZK @ 608,504 CZK\nFees are 0.29049069 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.510239998733098076684517665 CZK)\nThe limits being 0.10 % (22.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41724043 BTC (215,659.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 608,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.73 % (38,233.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,273.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03681878 BTC (22,404.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.54 CZK over 2063 transactions" + } + ] + }, + { + "id": 3652, + "type": "message", + "date": "2023-09-26T14:00:06", + "date_unixtime": "1695729606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013656 BTC for 82.71 CZK @ 605,649 CZK\nFees are 0.29048916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.338939997355477270677409385 CZK)\nThe limits being 0.10 % (22.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41737699 BTC (215,742.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 605,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.17 % (37,041.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,190.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03695534 BTC (22,381.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.53 CZK over 2064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013656 BTC for 82.71 CZK @ 605,649 CZK\nFees are 0.29048916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.338939997355477270677409385 CZK)\nThe limits being 0.10 % (22.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41737699 BTC (215,742.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 605,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.17 % (37,041.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,190.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03695534 BTC (22,381.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.53 CZK over 2064 transactions" + } + ] + }, + { + "id": 3653, + "type": "message", + "date": "2023-09-26T18:00:06", + "date_unixtime": "1695744006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013707 BTC for 82.71 CZK @ 603,389 CZK\nFees are 0.29048601 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.203339997467825185717356292 CZK)\nThe limits being 0.10 % (22.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41751406 BTC (215,825.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 603,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 16.73 % (36,098.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,107.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03709241 BTC (22,381.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.52 CZK over 2065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013707 BTC for 82.71 CZK @ 603,389 CZK\nFees are 0.29048601 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.203339997467825185717356292 CZK)\nThe limits being 0.10 % (22.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41751406 BTC (215,825.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 603,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 16.73 % (36,098.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,107.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03709241 BTC (22,381.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.52 CZK over 2065 transactions" + } + ] + }, + { + "id": 3654, + "type": "message", + "date": "2023-09-26T22:00:06", + "date_unixtime": "1695758406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013634 BTC for 82.71 CZK @ 606,625 CZK\nFees are 0.29048855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (72.794999996710939612193467798 CZK)\nThe limits being 0.10 % (22.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41765040 BTC (215,908.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.34 % (37,448.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,024.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03722875 BTC (22,583.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.51 CZK over 2066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013634 BTC for 82.71 CZK @ 606,625 CZK\nFees are 0.29048855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (72.794999996710939612193467798 CZK)\nThe limits being 0.10 % (22.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41765040 BTC (215,908.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.34 % (37,448.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,024.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03722875 BTC (22,583.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.51 CZK over 2066 transactions" + } + ] + }, + { + "id": 3655, + "type": "message", + "date": "2023-09-27T02:00:06", + "date_unixtime": "1695772806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013644 BTC for 82.71 CZK @ 606,190 CZK\nFees are 0.29049315 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.371399998860628083151362493 CZK)\nThe limits being 0.10 % (22.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41778684 BTC (215,991.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 516,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 606,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.25 % (37,266.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,941.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03736519 BTC (22,650.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.50 CZK over 2067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013644 BTC for 82.71 CZK @ 606,190 CZK\nFees are 0.29049315 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.371399998860628083151362493 CZK)\nThe limits being 0.10 % (22.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41778684 BTC (215,991.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 516,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 606,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.25 % (37,266.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,941.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03736519 BTC (22,650.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.50 CZK over 2067 transactions" + } + ] + }, + { + "id": 3656, + "type": "message", + "date": "2023-09-27T06:00:06", + "date_unixtime": "1695787206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013623 BTC for 82.71 CZK @ 607,124 CZK\nFees are 0.29049294 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.427439996128941788962151517 CZK)\nThe limits being 0.10 % (22.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41792307 BTC (216,074.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.43 % (37,656.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,858.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03750142 BTC (22,768.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.48 CZK over 2068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013623 BTC for 82.71 CZK @ 607,124 CZK\nFees are 0.29049294 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.427439996128941788962151517 CZK)\nThe limits being 0.10 % (22.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41792307 BTC (216,074.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.43 % (37,656.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,858.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03750142 BTC (22,768.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.48 CZK over 2068 transactions" + } + ] + }, + { + "id": 3657, + "type": "message", + "date": "2023-09-27T10:00:06", + "date_unixtime": "1695801606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013622 BTC for 82.71 CZK @ 607,144 CZK\nFees are 0.29048118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (24.285759998572021855381074476 CZK)\nThe limits being 0.10 % (22.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41805929 BTC (216,157.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 607,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.42 % (37,664.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,775.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03763764 BTC (22,851.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.47 CZK over 2069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013622 BTC for 82.71 CZK @ 607,144 CZK\nFees are 0.29048118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (24.285759998572021855381074476 CZK)\nThe limits being 0.10 % (22.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41805929 BTC (216,157.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 607,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.42 % (37,664.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,775.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03763764 BTC (22,851.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.47 CZK over 2069 transactions" + } + ] + }, + { + "id": 3658, + "type": "message", + "date": "2023-09-27T14:00:05", + "date_unixtime": "1695816005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013304 BTC for 82.71 CZK @ 621,680 CZK\nFees are 0.29049225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (24.867199998442013386101141494 CZK)\nThe limits being 0.10 % (23.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41819233 BTC (216,240.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.23 % (43,741.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,692.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03777068 BTC (23,481.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.46 CZK over 2070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013304 BTC for 82.71 CZK @ 621,680 CZK\nFees are 0.29049225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (24.867199998442013386101141494 CZK)\nThe limits being 0.10 % (23.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41819233 BTC (216,240.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.23 % (43,741.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,692.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03777068 BTC (23,481.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.46 CZK over 2070 transactions" + } + ] + }, + { + "id": 3659, + "type": "message", + "date": "2023-09-27T18:00:06", + "date_unixtime": "1695830406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013573 BTC for 82.71 CZK @ 609,366 CZK\nFees are 0.29049555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.561959997740171978198606506 CZK)\nThe limits being 0.10 % (23.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41832806 BTC (216,323.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.84 % (38,591.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,609.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03790641 BTC (23,098.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.45 CZK over 2071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013573 BTC for 82.71 CZK @ 609,366 CZK\nFees are 0.29049555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.561959997740171978198606506 CZK)\nThe limits being 0.10 % (23.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41832806 BTC (216,323.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.84 % (38,591.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,609.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03790641 BTC (23,098.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.45 CZK over 2071 transactions" + } + ] + }, + { + "id": 3660, + "type": "message", + "date": "2023-09-27T22:00:06", + "date_unixtime": "1695844806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013579 BTC for 82.71 CZK @ 609,091 CZK\nFees are 0.29049281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (97.45455999516824775558173244 CZK)\nThe limits being 0.10 % (23.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41846385 BTC (216,406.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 609,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 17.78 % (38,476.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,526.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03804220 BTC (23,171.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.44 CZK over 2072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013579 BTC for 82.71 CZK @ 609,091 CZK\nFees are 0.29049281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (97.45455999516824775558173244 CZK)\nThe limits being 0.10 % (23.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41846385 BTC (216,406.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 609,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 17.78 % (38,476.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,526.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03804220 BTC (23,171.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.44 CZK over 2072 transactions" + } + ] + }, + { + "id": 3661, + "type": "message", + "date": "2023-09-28T02:00:07", + "date_unixtime": "1695859207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013533 BTC for 82.71 CZK @ 611,149 CZK\nFees are 0.29048694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (91.67234998940197890844690447 CZK)\nThe limits being 0.10 % (23.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41859918 BTC (216,489.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 611,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.17 % (39,337.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,443.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03817753 BTC (23,332.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.43 CZK over 2073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013533 BTC for 82.71 CZK @ 611,149 CZK\nFees are 0.29048694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (91.67234998940197890844690447 CZK)\nThe limits being 0.10 % (23.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41859918 BTC (216,489.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 611,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.17 % (39,337.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,443.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03817753 BTC (23,332.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.43 CZK over 2073 transactions" + } + ] + }, + { + "id": 3662, + "type": "message", + "date": "2023-09-28T06:00:06", + "date_unixtime": "1695873606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013495 BTC for 82.71 CZK @ 612,866 CZK\nFees are 0.29048509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (91.92989999617862121330437947 CZK)\nThe limits being 0.10 % (23.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41873413 BTC (216,572.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 612,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.50 % (40,055.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,360.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03831248 BTC (23,480.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.42 CZK over 2074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013495 BTC for 82.71 CZK @ 612,866 CZK\nFees are 0.29048509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (91.92989999617862121330437947 CZK)\nThe limits being 0.10 % (23.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41873413 BTC (216,572.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 612,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.50 % (40,055.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,360.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03831248 BTC (23,480.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.42 CZK over 2074 transactions" + } + ] + }, + { + "id": 3663, + "type": "message", + "date": "2023-09-28T10:00:06", + "date_unixtime": "1695888006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013464 BTC for 82.71 CZK @ 614,287 CZK\nFees are 0.29048977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.857219997388818280403614087 CZK)\nThe limits being 0.10 % (23.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41886877 BTC (216,655.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 614,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.76 % (40,650.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,277.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03844712 BTC (23,617.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.41 CZK over 2075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013464 BTC for 82.71 CZK @ 614,287 CZK\nFees are 0.29048977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (36.857219997388818280403614087 CZK)\nThe limits being 0.10 % (23.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41886877 BTC (216,655.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 614,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.76 % (40,650.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,277.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03844712 BTC (23,617.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.41 CZK over 2075 transactions" + } + ] + }, + { + "id": 3664, + "type": "message", + "date": "2023-09-28T14:00:06", + "date_unixtime": "1695902406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013440 BTC for 82.70 CZK @ 615,363 CZK\nFees are 0.29047990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (24.614520790329086293211853750 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41900317 BTC (216,738.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 615,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 18.96 % (41,100.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,194.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03858152 BTC (23,741.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.40 CZK over 2076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013440 BTC for 82.70 CZK @ 615,363 CZK\nFees are 0.29047990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (24.614520790329086293211853750 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41900317 BTC (216,738.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 615,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 18.96 % (41,100.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,194.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03858152 BTC (23,741.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.40 CZK over 2076 transactions" + } + ] + }, + { + "id": 3665, + "type": "message", + "date": "2023-09-28T18:00:05", + "date_unixtime": "1695916805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013286 BTC for 82.71 CZK @ 622,522 CZK\nFees are 0.29049213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (24.900879998433902236347103968 CZK)\nThe limits being 0.10 % (24.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41913603 BTC (216,821.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 622,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.34 % (44,100.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,111.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03871438 BTC (24,100.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.39 CZK over 2077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013286 BTC for 82.71 CZK @ 622,522 CZK\nFees are 0.29049213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (24.900879998433902236347103968 CZK)\nThe limits being 0.10 % (24.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41913603 BTC (216,821.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 622,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.34 % (44,100.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,111.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03871438 BTC (24,100.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.39 CZK over 2077 transactions" + } + ] + }, + { + "id": 3666, + "type": "message", + "date": "2023-09-28T22:00:05", + "date_unixtime": "1695931205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013202 BTC for 82.71 CZK @ 626,469 CZK\nFees are 0.29048568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (75.176279999248200152669715989 CZK)\nThe limits being 0.10 % (24.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41926805 BTC (216,904.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 626,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.09 % (45,754.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,028.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03884640 BTC (24,336.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.38 CZK over 2078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013202 BTC for 82.71 CZK @ 626,469 CZK\nFees are 0.29048568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (75.176279999248200152669715989 CZK)\nThe limits being 0.10 % (24.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41926805 BTC (216,904.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 626,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.09 % (45,754.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,028.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03884640 BTC (24,336.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.38 CZK over 2078 transactions" + } + ] + }, + { + "id": 3667, + "type": "message", + "date": "2023-09-29T02:00:07", + "date_unixtime": "1695945607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013256 BTC for 82.71 CZK @ 623,936 CZK\nFees are 0.29049453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (81.11167999358912484638105797 CZK)\nThe limits being 0.10 % (24.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41940061 BTC (216,987.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.60 % (44,691.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 945.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03897896 BTC (24,320.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.37 CZK over 2079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013256 BTC for 82.71 CZK @ 623,936 CZK\nFees are 0.29049453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (81.11167999358912484638105797 CZK)\nThe limits being 0.10 % (24.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41940061 BTC (216,987.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.60 % (44,691.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 945.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03897896 BTC (24,320.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.37 CZK over 2079 transactions" + } + ] + }, + { + "id": 3668, + "type": "message", + "date": "2023-09-29T06:00:05", + "date_unixtime": "1695960005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013299 BTC for 82.71 CZK @ 621,902 CZK\nFees are 0.29048677 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (80.84725999568470275833215223 CZK)\nThe limits being 0.10 % (24.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41953360 BTC (217,070.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,409 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.20 % (43,838.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 862.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03911195 BTC (24,323.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.36 CZK over 2080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013299 BTC for 82.71 CZK @ 621,902 CZK\nFees are 0.29048677 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (80.84725999568470275833215223 CZK)\nThe limits being 0.10 % (24.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41953360 BTC (217,070.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,409 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.20 % (43,838.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 862.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03911195 BTC (24,323.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.36 CZK over 2080 transactions" + } + ] + }, + { + "id": 3669, + "type": "message", + "date": "2023-09-29T10:00:06", + "date_unixtime": "1695974406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013240 BTC for 82.70 CZK @ 624,656 CZK\nFees are 0.29047883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (81.20531214164322153429763201 CZK)\nThe limits being 0.10 % (24.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41966600 BTC (217,153.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.72 % (44,993.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 779.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03924435 BTC (24,514.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.35 CZK over 2081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013240 BTC for 82.70 CZK @ 624,656 CZK\nFees are 0.29047883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (81.20531214164322153429763201 CZK)\nThe limits being 0.10 % (24.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41966600 BTC (217,153.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.72 % (44,993.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 779.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03924435 BTC (24,514.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.35 CZK over 2081 transactions" + } + ] + }, + { + "id": 3670, + "type": "message", + "date": "2023-09-29T14:00:05", + "date_unixtime": "1695988805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013328 BTC for 82.71 CZK @ 620,561 CZK\nFees are 0.29049247 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (37.233659997631339531328226356 CZK)\nThe limits being 0.10 % (24.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41979928 BTC (217,236.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.92 % (43,274.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 696.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03937763 BTC (24,436.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.34 CZK over 2082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013328 BTC for 82.71 CZK @ 620,561 CZK\nFees are 0.29049247 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (37.233659997631339531328226356 CZK)\nThe limits being 0.10 % (24.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41979928 BTC (217,236.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.92 % (43,274.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 696.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03937763 BTC (24,436.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.34 CZK over 2082 transactions" + } + ] + }, + { + "id": 3671, + "type": "message", + "date": "2023-09-29T18:00:06", + "date_unixtime": "1696003206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013326 BTC for 82.71 CZK @ 620,630 CZK\nFees are 0.29048118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (49.650399995034638258815143545 CZK)\nThe limits being 0.10 % (24.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.41993254 BTC (217,319.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 620,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 19.93 % (43,303.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 613.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03951089 BTC (24,521.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.33 CZK over 2083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013326 BTC for 82.71 CZK @ 620,630 CZK\nFees are 0.29048118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (49.650399995034638258815143545 CZK)\nThe limits being 0.10 % (24.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.41993254 BTC (217,319.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 620,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 19.93 % (43,303.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 613.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03951089 BTC (24,521.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.33 CZK over 2083 transactions" + } + ] + }, + { + "id": 3672, + "type": "message", + "date": "2023-09-29T22:00:05", + "date_unixtime": "1696017605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013303 BTC for 82.70 CZK @ 621,701 CZK\nFees are 0.29048023 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (93.25514999538748859934377615 CZK)\nThe limits being 0.10 % (24.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42006557 BTC (217,402.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.13 % (43,752.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 530.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03964392 BTC (24,646.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.32 CZK over 2084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013303 BTC for 82.70 CZK @ 621,701 CZK\nFees are 0.29048023 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (93.25514999538748859934377615 CZK)\nThe limits being 0.10 % (24.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42006557 BTC (217,402.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.13 % (43,752.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 530.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03964392 BTC (24,646.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.32 CZK over 2084 transactions" + } + ] + }, + { + "id": 3673, + "type": "message", + "date": "2023-09-30T02:00:06", + "date_unixtime": "1696032006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013304 BTC for 82.71 CZK @ 621,687 CZK\nFees are 0.29049552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (93.25304999474179517809135254 CZK)\nThe limits being 0.10 % (24.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42019861 BTC (217,485.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.11 % (43,746.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 447.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03977696 BTC (24,728.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.31 CZK over 2085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013304 BTC for 82.71 CZK @ 621,687 CZK\nFees are 0.29049552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (93.25304999474179517809135254 CZK)\nThe limits being 0.10 % (24.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42019861 BTC (217,485.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.11 % (43,746.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 447.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03977696 BTC (24,728.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.31 CZK over 2085 transactions" + } + ] + }, + { + "id": 3674, + "type": "message", + "date": "2023-09-30T06:00:06", + "date_unixtime": "1696046406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013304 BTC for 82.71 CZK @ 621,687 CZK\nFees are 0.29049552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (80.81930999544288915434583887 CZK)\nThe limits being 0.10 % (24.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42033165 BTC (217,568.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 621,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.11 % (43,746.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 364.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03991000 BTC (24,811.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.30 CZK over 2086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013304 BTC for 82.71 CZK @ 621,687 CZK\nFees are 0.29049552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (80.81930999544288915434583887 CZK)\nThe limits being 0.10 % (24.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42033165 BTC (217,568.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 621,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.11 % (43,746.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 364.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03991000 BTC (24,811.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.30 CZK over 2086 transactions" + } + ] + }, + { + "id": 3675, + "type": "message", + "date": "2023-09-30T10:00:06", + "date_unixtime": "1696060806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013265 BTC for 82.71 CZK @ 623,487 CZK\nFees are 0.29048257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.04004265 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (24.939479997919081180436884023 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42046430 BTC (217,651.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.45 % (44,502.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 281.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04004265 BTC (24,966.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.29 CZK over 2087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013265 BTC for 82.71 CZK @ 623,487 CZK\nFees are 0.29048257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.04004265 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (24.939479997919081180436884023 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42046430 BTC (217,651.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.45 % (44,502.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 281.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04004265 BTC (24,966.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.29 CZK over 2087 transactions" + } + ] + }, + { + "id": 3676, + "type": "message", + "date": "2023-09-30T14:00:06", + "date_unixtime": "1696075206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013264 BTC for 82.71 CZK @ 623,540 CZK\nFees are 0.29048536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 22.62 % (18.706199997836282300248286605 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42059694 BTC (217,734.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 623,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.45 % (44,524.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 198.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00013264 BTC (82.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.28 CZK over 2088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013264 BTC for 82.71 CZK @ 623,540 CZK\nFees are 0.29048536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 22.62 % (18.706199997836282300248286605 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42059694 BTC (217,734.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 623,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.45 % (44,524.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 198.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00013264 BTC (82.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.28 CZK over 2088 transactions" + } + ] + }, + { + "id": 3677, + "type": "message", + "date": "2023-09-30T18:00:07", + "date_unixtime": "1696089607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013250 BTC for 82.71 CZK @ 624,225 CZK\nFees are 0.29049754 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 7.54 % (12.484499999435936486448374088 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42072944 BTC (217,817.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.57 % (44,812.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 115.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00026514 BTC (165.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.27 CZK over 2089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013250 BTC for 82.71 CZK @ 624,225 CZK\nFees are 0.29049754 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 7.54 % (12.484499999435936486448374088 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42072944 BTC (217,817.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.57 % (44,812.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 115.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00026514 BTC (165.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.27 CZK over 2089 transactions" + } + ] + }, + { + "id": 3678, + "type": "message", + "date": "2023-09-30T22:00:05", + "date_unixtime": "1696104005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013237 BTC for 82.71 CZK @ 624,825 CZK\nFees are 0.29049147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 10.06 % (24.992999997478041932182740781 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42086181 BTC (217,900.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 624,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.68 % (45,064.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 32.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00039751 BTC (248.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.26 CZK over 2090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013237 BTC for 82.71 CZK @ 624,825 CZK\nFees are 0.29049147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 10.06 % (24.992999997478041932182740781 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42086181 BTC (217,900.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 624,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.68 % (45,064.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 32.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00039751 BTC (248.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.26 CZK over 2090 transactions" + } + ] + }, + { + "id": 3679, + "type": "message", + "date": "2023-10-01T02:00:02", + "date_unixtime": "1696118402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3680, + "type": "message", + "date": "2023-10-01T06:00:02", + "date_unixtime": "1696132802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3681, + "type": "message", + "date": "2023-10-01T10:00:02", + "date_unixtime": "1696147202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3682, + "type": "message", + "date": "2023-10-01T14:00:01", + "date_unixtime": "1696161601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3683, + "type": "message", + "date": "2023-10-01T18:00:01", + "date_unixtime": "1696176001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3684, + "type": "message", + "date": "2023-10-01T22:00:02", + "date_unixtime": "1696190402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3685, + "type": "message", + "date": "2023-10-02T02:00:02", + "date_unixtime": "1696204802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3686, + "type": "message", + "date": "2023-10-02T06:00:02", + "date_unixtime": "1696219202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3687, + "type": "message", + "date": "2023-10-02T10:00:02", + "date_unixtime": "1696233602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3688, + "type": "message", + "date": "2023-10-02T14:00:02", + "date_unixtime": "1696248002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3689, + "type": "message", + "date": "2023-10-02T18:00:02", + "date_unixtime": "1696262402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3690, + "type": "message", + "date": "2023-10-02T22:00:02", + "date_unixtime": "1696276802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3691, + "type": "message", + "date": "2023-10-03T02:00:02", + "date_unixtime": "1696291202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3692, + "type": "message", + "date": "2023-10-03T06:00:02", + "date_unixtime": "1696305602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3693, + "type": "message", + "date": "2023-10-03T10:00:02", + "date_unixtime": "1696320002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3694, + "type": "message", + "date": "2023-10-03T14:00:02", + "date_unixtime": "1696334402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3695, + "type": "message", + "date": "2023-10-03T18:00:02", + "date_unixtime": "1696348802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3696, + "type": "message", + "date": "2023-10-03T22:00:01", + "date_unixtime": "1696363201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3697, + "type": "message", + "date": "2023-10-04T02:00:02", + "date_unixtime": "1696377602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3698, + "type": "message", + "date": "2023-10-04T06:00:02", + "date_unixtime": "1696392002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3699, + "type": "message", + "date": "2023-10-04T10:00:02", + "date_unixtime": "1696406402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3700, + "type": "message", + "date": "2023-10-04T14:00:01", + "date_unixtime": "1696420801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3701, + "type": "message", + "date": "2023-10-04T18:00:02", + "date_unixtime": "1696435202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3702, + "type": "message", + "date": "2023-10-04T22:00:02", + "date_unixtime": "1696449602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3703, + "type": "message", + "date": "2023-10-05T02:00:02", + "date_unixtime": "1696464002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3704, + "type": "message", + "date": "2023-10-05T06:00:02", + "date_unixtime": "1696478402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3705, + "type": "message", + "date": "2023-10-05T10:00:02", + "date_unixtime": "1696492802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3706, + "type": "message", + "date": "2023-10-05T14:00:02", + "date_unixtime": "1696507202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3707, + "type": "message", + "date": "2023-10-05T18:00:02", + "date_unixtime": "1696521602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3708, + "type": "message", + "date": "2023-10-05T22:00:02", + "date_unixtime": "1696536002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3709, + "type": "message", + "date": "2023-10-06T02:00:02", + "date_unixtime": "1696550402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3710, + "type": "message", + "date": "2023-10-06T06:00:02", + "date_unixtime": "1696564802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3711, + "type": "message", + "date": "2023-10-06T10:00:02", + "date_unixtime": "1696579202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3712, + "type": "message", + "date": "2023-10-06T14:00:02", + "date_unixtime": "1696593602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3713, + "type": "message", + "date": "2023-10-06T18:00:02", + "date_unixtime": "1696608002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3714, + "type": "message", + "date": "2023-10-06T22:00:02", + "date_unixtime": "1696622402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3715, + "type": "message", + "date": "2023-10-07T02:00:02", + "date_unixtime": "1696636802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3716, + "type": "message", + "date": "2023-10-07T06:00:02", + "date_unixtime": "1696651202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3717, + "type": "message", + "date": "2023-10-07T10:00:02", + "date_unixtime": "1696665602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3718, + "type": "message", + "date": "2023-10-07T14:00:02", + "date_unixtime": "1696680002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3719, + "type": "message", + "date": "2023-10-07T18:00:03", + "date_unixtime": "1696694403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3720, + "type": "message", + "date": "2023-10-07T22:00:02", + "date_unixtime": "1696708802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3721, + "type": "message", + "date": "2023-10-08T02:00:02", + "date_unixtime": "1696723202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3722, + "type": "message", + "date": "2023-10-08T06:00:03", + "date_unixtime": "1696737603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3723, + "type": "message", + "date": "2023-10-08T10:00:02", + "date_unixtime": "1696752002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3724, + "type": "message", + "date": "2023-10-08T14:00:02", + "date_unixtime": "1696766402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3725, + "type": "message", + "date": "2023-10-08T18:00:02", + "date_unixtime": "1696780802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3726, + "type": "message", + "date": "2023-10-08T22:00:01", + "date_unixtime": "1696795201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3727, + "type": "message", + "date": "2023-10-09T02:00:02", + "date_unixtime": "1696809602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3728, + "type": "message", + "date": "2023-10-09T06:00:02", + "date_unixtime": "1696824002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3729, + "type": "message", + "date": "2023-10-09T10:00:02", + "date_unixtime": "1696838402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3730, + "type": "message", + "date": "2023-10-09T14:00:01", + "date_unixtime": "1696852801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3731, + "type": "message", + "date": "2023-10-09T18:00:02", + "date_unixtime": "1696867202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3732, + "type": "message", + "date": "2023-10-09T22:00:02", + "date_unixtime": "1696881602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3733, + "type": "message", + "date": "2023-10-10T02:00:02", + "date_unixtime": "1696896002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3734, + "type": "message", + "date": "2023-10-10T06:00:02", + "date_unixtime": "1696910402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3735, + "type": "message", + "date": "2023-10-10T10:00:01", + "date_unixtime": "1696924801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3736, + "type": "message", + "date": "2023-10-10T14:00:02", + "date_unixtime": "1696939202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3737, + "type": "message", + "date": "2023-10-10T18:00:02", + "date_unixtime": "1696953602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3738, + "type": "message", + "date": "2023-10-10T22:00:02", + "date_unixtime": "1696968002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3739, + "type": "message", + "date": "2023-10-11T02:00:02", + "date_unixtime": "1696982402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3740, + "type": "message", + "date": "2023-10-11T06:00:02", + "date_unixtime": "1696996802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3741, + "type": "message", + "date": "2023-10-11T10:00:02", + "date_unixtime": "1697011202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3742, + "type": "message", + "date": "2023-10-11T14:00:02", + "date_unixtime": "1697025602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3743, + "type": "message", + "date": "2023-10-11T18:00:02", + "date_unixtime": "1697040002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3744, + "type": "message", + "date": "2023-10-11T22:00:02", + "date_unixtime": "1697054402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3745, + "type": "message", + "date": "2023-10-12T02:00:02", + "date_unixtime": "1697068802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3746, + "type": "message", + "date": "2023-10-12T06:00:02", + "date_unixtime": "1697083202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3747, + "type": "message", + "date": "2023-10-12T10:00:02", + "date_unixtime": "1697097602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3748, + "type": "message", + "date": "2023-10-12T14:00:02", + "date_unixtime": "1697112002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3749, + "type": "message", + "date": "2023-10-12T18:00:01", + "date_unixtime": "1697126401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (32.70340186 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3750, + "type": "message", + "date": "2023-10-12T22:00:06", + "date_unixtime": "1697140806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013230 BTC for 82.71 CZK @ 625,162 CZK\nFees are 0.29049445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 18.87 % (62.5161999969117913455588735 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42099411 BTC (217,983.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 625,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.74 % (45,206.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,949.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00052981 BTC (331.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.25 CZK over 2091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013230 BTC for 82.71 CZK @ 625,162 CZK\nFees are 0.29049445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 18.87 % (62.5161999969117913455588735 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42099411 BTC (217,983.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 625,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.74 % (45,206.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,949.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00052981 BTC (331.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.25 CZK over 2091 transactions" + } + ] + }, + { + "id": 3751, + "type": "message", + "date": "2023-10-13T02:00:06", + "date_unixtime": "1697155206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013219 BTC for 82.70 CZK @ 625,647 CZK\nFees are 0.29047810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 15.11 % (62.56469999302313300678881951 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42112630 BTC (218,066.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 625,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.82 % (45,410.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,866.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00066200 BTC (414.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.24 CZK over 2092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013219 BTC for 82.70 CZK @ 625,647 CZK\nFees are 0.29047810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 15.11 % (62.56469999302313300678881951 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42112630 BTC (218,066.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 625,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.82 % (45,410.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,866.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00066200 BTC (414.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.24 CZK over 2092 transactions" + } + ] + }, + { + "id": 3752, + "type": "message", + "date": "2023-10-13T06:00:06", + "date_unixtime": "1697169606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013207 BTC for 82.71 CZK @ 626,253 CZK\nFees are 0.29049551 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.30 % (31.312649996987525564061787378 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42125837 BTC (218,149.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 626,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 20.93 % (45,665.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,783.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00079407 BTC (497.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.23 CZK over 2093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013207 BTC for 82.71 CZK @ 626,253 CZK\nFees are 0.29049551 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.30 % (31.312649996987525564061787378 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42125837 BTC (218,149.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 626,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 20.93 % (45,665.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,783.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00079407 BTC (497.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.23 CZK over 2093 transactions" + } + ] + }, + { + "id": 3753, + "type": "message", + "date": "2023-10-13T10:00:06", + "date_unixtime": "1697184006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013189 BTC for 82.71 CZK @ 627,092 CZK\nFees are 0.29048824 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.40 % (31.354599998647542003926434900 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42139026 BTC (218,232.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 627,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.09 % (46,018.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,700.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00092596 BTC (580.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.22 CZK over 2094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013189 BTC for 82.71 CZK @ 627,092 CZK\nFees are 0.29048824 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.40 % (31.354599998647542003926434900 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42139026 BTC (218,232.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 627,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.09 % (46,018.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,700.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00092596 BTC (580.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.22 CZK over 2094 transactions" + } + ] + }, + { + "id": 3754, + "type": "message", + "date": "2023-10-13T14:00:06", + "date_unixtime": "1697198406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013168 BTC for 82.71 CZK @ 628,092 CZK\nFees are 0.29048820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.73 % (31.404599999636751321771127905 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42152194 BTC (218,315.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.27 % (46,439.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,617.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00105764 BTC (664.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.21 CZK over 2095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013168 BTC for 82.71 CZK @ 628,092 CZK\nFees are 0.29048820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.73 % (31.404599999636751321771127905 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42152194 BTC (218,315.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.27 % (46,439.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,617.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00105764 BTC (664.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.21 CZK over 2095 transactions" + } + ] + }, + { + "id": 3755, + "type": "message", + "date": "2023-10-13T18:00:06", + "date_unixtime": "1697212806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013166 BTC for 82.71 CZK @ 628,210 CZK\nFees are 0.29049865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.57 % (56.538899999931880526618024823 CZK)\nThe limits being 0.10 % (0.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42165360 BTC (218,398.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.29 % (46,488.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,534.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00118930 BTC (747.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.20 CZK over 2096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013166 BTC for 82.71 CZK @ 628,210 CZK\nFees are 0.29049865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.57 % (56.538899999931880526618024823 CZK)\nThe limits being 0.10 % (0.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42165360 BTC (218,398.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.29 % (46,488.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,534.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00118930 BTC (747.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.20 CZK over 2096 transactions" + } + ] + }, + { + "id": 3756, + "type": "message", + "date": "2023-10-13T22:00:06", + "date_unixtime": "1697227206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013165 BTC for 82.71 CZK @ 628,228 CZK\nFees are 0.29048491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.79 % (31.411399997464249225697146958 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42178525 BTC (218,481.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 517,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 628,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.28 % (46,496.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,451.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00132095 BTC (829.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.19 CZK over 2097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013165 BTC for 82.71 CZK @ 628,228 CZK\nFees are 0.29048491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.79 % (31.411399997464249225697146958 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42178525 BTC (218,481.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 517,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 628,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.28 % (46,496.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,451.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00132095 BTC (829.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.19 CZK over 2097 transactions" + } + ] + }, + { + "id": 3757, + "type": "message", + "date": "2023-10-14T02:00:06", + "date_unixtime": "1697241606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013122 BTC for 82.70 CZK @ 630,275 CZK\nFees are 0.29047953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.44 % (31.513749996487677976951117665 CZK)\nThe limits being 0.10 % (0.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42191647 BTC (218,564.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.67 % (47,359.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,368.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00145217 BTC (915.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.18 CZK over 2098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013122 BTC for 82.70 CZK @ 630,275 CZK\nFees are 0.29047953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.44 % (31.513749996487677976951117665 CZK)\nThe limits being 0.10 % (0.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42191647 BTC (218,564.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.67 % (47,359.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,368.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00145217 BTC (915.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.18 CZK over 2098 transactions" + } + ] + }, + { + "id": 3758, + "type": "message", + "date": "2023-10-14T06:00:05", + "date_unixtime": "1697256005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013090 BTC for 82.70 CZK @ 631,814 CZK\nFees are 0.29047871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.16 % (31.590699998439381187996329122 CZK)\nThe limits being 0.10 % (1.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42204737 BTC (218,647.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.96 % (48,008.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,285.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00158307 BTC (1,000.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.17 CZK over 2099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013090 BTC for 82.70 CZK @ 631,814 CZK\nFees are 0.29047871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.16 % (31.590699998439381187996329122 CZK)\nThe limits being 0.10 % (1.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42204737 BTC (218,647.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.96 % (48,008.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,285.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00158307 BTC (1,000.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.17 CZK over 2099 transactions" + } + ] + }, + { + "id": 3759, + "type": "message", + "date": "2023-10-14T10:00:06", + "date_unixtime": "1697270406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013124 BTC for 82.71 CZK @ 630,209 CZK\nFees are 0.29049338 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.17 % (12.604179999687166237886993208 CZK)\nThe limits being 0.10 % (1.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42217861 BTC (218,730.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.64 % (47,330.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,202.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00171431 BTC (1,080.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.16 CZK over 2100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013124 BTC for 82.71 CZK @ 630,209 CZK\nFees are 0.29049338 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.17 % (12.604179999687166237886993208 CZK)\nThe limits being 0.10 % (1.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42217861 BTC (218,730.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.64 % (47,330.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,202.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00171431 BTC (1,080.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.16 CZK over 2100 transactions" + } + ] + }, + { + "id": 3760, + "type": "message", + "date": "2023-10-14T14:00:05", + "date_unixtime": "1697284805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013124 BTC for 82.71 CZK @ 630,216 CZK\nFees are 0.29049661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.08 % (12.604319998870153791203509448 CZK)\nThe limits being 0.10 % (1.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42230985 BTC (218,813.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.63 % (47,333.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,119.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00184555 BTC (1,163.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.15 CZK over 2101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013124 BTC for 82.71 CZK @ 630,216 CZK\nFees are 0.29049661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.08 % (12.604319998870153791203509448 CZK)\nThe limits being 0.10 % (1.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42230985 BTC (218,813.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.63 % (47,333.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,119.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00184555 BTC (1,163.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.15 CZK over 2101 transactions" + } + ] + }, + { + "id": 3761, + "type": "message", + "date": "2023-10-14T18:00:06", + "date_unixtime": "1697299206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013095 BTC for 82.71 CZK @ 631,597 CZK\nFees are 0.29048986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.52 % (18.947909998852812407433090712 CZK)\nThe limits being 0.10 % (1.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42244080 BTC (218,896.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.89 % (47,916.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,036.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00197650 BTC (1,248.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.14 CZK over 2102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013095 BTC for 82.71 CZK @ 631,597 CZK\nFees are 0.29048986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.52 % (18.947909998852812407433090712 CZK)\nThe limits being 0.10 % (1.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42244080 BTC (218,896.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.89 % (47,916.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,036.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00197650 BTC (1,248.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.14 CZK over 2102 transactions" + } + ] + }, + { + "id": 3762, + "type": "message", + "date": "2023-10-14T22:00:06", + "date_unixtime": "1697313606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013123 BTC for 82.71 CZK @ 630,260 CZK\nFees are 0.29049475 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.42 % (18.907799997881376927306283529 CZK)\nThe limits being 0.10 % (1.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42257203 BTC (218,979.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.62 % (47,351.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,953.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00210773 BTC (1,328.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.13 CZK over 2103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013123 BTC for 82.71 CZK @ 630,260 CZK\nFees are 0.29049475 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.42 % (18.907799997881376927306283529 CZK)\nThe limits being 0.10 % (1.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42257203 BTC (218,979.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.62 % (47,351.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,953.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00210773 BTC (1,328.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.13 CZK over 2103 transactions" + } + ] + }, + { + "id": 3763, + "type": "message", + "date": "2023-10-15T02:00:06", + "date_unixtime": "1697328006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013127 BTC for 82.71 CZK @ 630,049 CZK\nFees are 0.29048602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (6.3004899997870635528753651093 CZK)\nThe limits being 0.10 % (1.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42270330 BTC (219,062.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.57 % (47,261.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,870.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00223900 BTC (1,410.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.12 CZK over 2104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013127 BTC for 82.71 CZK @ 630,049 CZK\nFees are 0.29048602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (6.3004899997870635528753651093 CZK)\nThe limits being 0.10 % (1.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42270330 BTC (219,062.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.57 % (47,261.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,870.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00223900 BTC (1,410.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.12 CZK over 2104 transactions" + } + ] + }, + { + "id": 3764, + "type": "message", + "date": "2023-10-15T06:00:05", + "date_unixtime": "1697342405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013116 BTC for 82.70 CZK @ 630,560 CZK\nFees are 0.29047800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (6.3055999997264833831817367482 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42283446 BTC (219,145.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.66 % (47,477.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,787.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00237016 BTC (1,494.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.11 CZK over 2105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013116 BTC for 82.70 CZK @ 630,560 CZK\nFees are 0.29047800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (6.3055999997264833831817367482 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42283446 BTC (219,145.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.66 % (47,477.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,787.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00237016 BTC (1,494.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.11 CZK over 2105 transactions" + } + ] + }, + { + "id": 3765, + "type": "message", + "date": "2023-10-15T10:00:06", + "date_unixtime": "1697356806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013118 BTC for 82.71 CZK @ 630,500 CZK\nFees are 0.29049465 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (6.3049999996201737279789071833 CZK)\nThe limits being 0.10 % (1.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42296564 BTC (219,228.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 630,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.64 % (47,451.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,704.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00250134 BTC (1,577.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.10 CZK over 2106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013118 BTC for 82.71 CZK @ 630,500 CZK\nFees are 0.29049465 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (6.3049999996201737279789071833 CZK)\nThe limits being 0.10 % (1.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42296564 BTC (219,228.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 630,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.64 % (47,451.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,704.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00250134 BTC (1,577.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.10 CZK over 2106 transactions" + } + ] + }, + { + "id": 3766, + "type": "message", + "date": "2023-10-15T14:00:05", + "date_unixtime": "1697371205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013102 BTC for 82.71 CZK @ 631,250 CZK\nFees are 0.29048547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (6.312499999809854944421741125 CZK)\nThe limits being 0.10 % (1.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42309666 BTC (219,311.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.78 % (47,768.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,621.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00263236 BTC (1,661.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.09 CZK over 2107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013102 BTC for 82.71 CZK @ 631,250 CZK\nFees are 0.29048547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (6.312499999809854944421741125 CZK)\nThe limits being 0.10 % (1.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42309666 BTC (219,311.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.78 % (47,768.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,621.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00263236 BTC (1,661.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.09 CZK over 2107 transactions" + } + ] + }, + { + "id": 3767, + "type": "message", + "date": "2023-10-15T18:00:06", + "date_unixtime": "1697385606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013093 BTC for 82.71 CZK @ 631,703 CZK\nFees are 0.29049424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.36 % (6.3170299993709483393321572008 CZK)\nThe limits being 0.10 % (1.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42322759 BTC (219,394.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 631,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 21.86 % (47,959.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,538.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00276329 BTC (1,745.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.08 CZK over 2108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013093 BTC for 82.71 CZK @ 631,703 CZK\nFees are 0.29049424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.36 % (6.3170299993709483393321572008 CZK)\nThe limits being 0.10 % (1.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42322759 BTC (219,394.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 631,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 21.86 % (47,959.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,538.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00276329 BTC (1,745.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.08 CZK over 2108 transactions" + } + ] + }, + { + "id": 3768, + "type": "message", + "date": "2023-10-15T22:00:05", + "date_unixtime": "1697400005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00013029 BTC for 82.71 CZK @ 634,783 CZK\nFees are 0.29048372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (6.3478299992546617960019661018 CZK)\nThe limits being 0.10 % (1.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42335788 BTC (219,477.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 634,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.45 % (49,263.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,455.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00289358 BTC (1,836.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.07 CZK over 2109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00013029 BTC for 82.71 CZK @ 634,783 CZK\nFees are 0.29048372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (6.3478299992546617960019661018 CZK)\nThe limits being 0.10 % (1.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42335788 BTC (219,477.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 634,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.45 % (49,263.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,455.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00289358 BTC (1,836.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.07 CZK over 2109 transactions" + } + ] + }, + { + "id": 3769, + "type": "message", + "date": "2023-10-16T02:00:06", + "date_unixtime": "1697414406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012995 BTC for 82.71 CZK @ 636,476 CZK\nFees are 0.29049839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (6.3647599994862153298392141547 CZK)\nThe limits being 0.10 % (1.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42348783 BTC (219,560.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 636,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 22.76 % (49,979.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,372.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00302353 BTC (1,924.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.06 CZK over 2110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012995 BTC for 82.71 CZK @ 636,476 CZK\nFees are 0.29049839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (6.3647599994862153298392141547 CZK)\nThe limits being 0.10 % (1.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42348783 BTC (219,560.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 636,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 22.76 % (49,979.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,372.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00302353 BTC (1,924.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.06 CZK over 2110 transactions" + } + ] + }, + { + "id": 3770, + "type": "message", + "date": "2023-10-16T06:00:05", + "date_unixtime": "1697428805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012950 BTC for 82.71 CZK @ 638,672 CZK\nFees are 0.29049126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (6.386719999692197001614041973 CZK)\nThe limits being 0.10 % (2.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42361733 BTC (219,643.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 638,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 23.18 % (50,909.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,289.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00315303 BTC (2,013.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.05 CZK over 2111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012950 BTC for 82.71 CZK @ 638,672 CZK\nFees are 0.29049126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (6.386719999692197001614041973 CZK)\nThe limits being 0.10 % (2.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42361733 BTC (219,643.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 638,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 23.18 % (50,909.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,289.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00315303 BTC (2,013.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.05 CZK over 2111 transactions" + } + ] + }, + { + "id": 3771, + "type": "message", + "date": "2023-10-16T10:00:06", + "date_unixtime": "1697443206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012707 BTC for 82.71 CZK @ 650,891 CZK\nFees are 0.29049370 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (13.01781999877739629248366532 CZK)\nThe limits being 0.10 % (2.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42374440 BTC (219,726.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 650,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.53 % (56,085.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,206.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00328010 BTC (2,134.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.04 CZK over 2112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012707 BTC for 82.71 CZK @ 650,891 CZK\nFees are 0.29049370 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (13.01781999877739629248366532 CZK)\nThe limits being 0.10 % (2.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42374440 BTC (219,726.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 650,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.53 % (56,085.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,206.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00328010 BTC (2,134.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.04 CZK over 2112 transactions" + } + ] + }, + { + "id": 3772, + "type": "message", + "date": "2023-10-16T14:00:06", + "date_unixtime": "1697457606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012744 BTC for 82.71 CZK @ 649,000 CZK\nFees are 0.29049314 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (12.98000 CZK)\nThe limits being 0.10 % (2.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42387184 BTC (219,809.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 649,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 25.15 % (55,283.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,123.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00340754 BTC (2,211.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.03 CZK over 2113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012744 BTC for 82.71 CZK @ 649,000 CZK\nFees are 0.29049314 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (12.98000 CZK)\nThe limits being 0.10 % (2.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42387184 BTC (219,809.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 649,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 25.15 % (55,283.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,123.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00340754 BTC (2,211.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.03 CZK over 2113 transactions" + } + ] + }, + { + "id": 3773, + "type": "message", + "date": "2023-10-16T18:00:06", + "date_unixtime": "1697472006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012636 BTC for 82.71 CZK @ 654,533 CZK\nFees are 0.29048692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.26 % (52.362639997110461595873764394 CZK)\nThe limits being 0.10 % (2.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42399820 BTC (219,892.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 654,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 26.21 % (57,628.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,040.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00353390 BTC (2,313.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.02 CZK over 2114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012636 BTC for 82.71 CZK @ 654,533 CZK\nFees are 0.29048692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.26 % (52.362639997110461595873764394 CZK)\nThe limits being 0.10 % (2.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42399820 BTC (219,892.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 654,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 26.21 % (57,628.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,040.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00353390 BTC (2,313.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.02 CZK over 2114 transactions" + } + ] + }, + { + "id": 3774, + "type": "message", + "date": "2023-10-16T22:00:09", + "date_unixtime": "1697486409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012480 BTC for 82.70 CZK @ 662,698 CZK\nFees are 0.29047962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.28 % (79.52375999386761718600283623 CZK)\nThe limits being 0.10 % (2.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42412300 BTC (219,975.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.77 % (61,090.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,957.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00365870 BTC (2,424.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.01 CZK over 2115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012480 BTC for 82.70 CZK @ 662,698 CZK\nFees are 0.29047962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.28 % (79.52375999386761718600283623 CZK)\nThe limits being 0.10 % (2.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42412300 BTC (219,975.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.77 % (61,090.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,957.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00365870 BTC (2,424.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.01 CZK over 2115 transactions" + } + ] + }, + { + "id": 3775, + "type": "message", + "date": "2023-10-17T02:00:06", + "date_unixtime": "1697500806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012464 BTC for 82.70 CZK @ 663,551 CZK\nFees are 0.29048062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.17 % (79.62611999209442177027387456 CZK)\nThe limits being 0.10 % (2.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42424764 BTC (220,058.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.93 % (61,451.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,874.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00378334 BTC (2,510.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 104.00 CZK over 2116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012464 BTC for 82.70 CZK @ 663,551 CZK\nFees are 0.29048062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.17 % (79.62611999209442177027387456 CZK)\nThe limits being 0.10 % (2.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42424764 BTC (220,058.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.93 % (61,451.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,874.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00378334 BTC (2,510.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 104.00 CZK over 2116 transactions" + } + ] + }, + { + "id": 3776, + "type": "message", + "date": "2023-10-17T06:00:06", + "date_unixtime": "1697515206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012554 BTC for 82.71 CZK @ 658,815 CZK\nFees are 0.29048989 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.81 % (72.469649997511497714030842666 CZK)\nThe limits being 0.10 % (2.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42437318 BTC (220,141.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 658,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.00 % (59,442.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,791.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00390888 BTC (2,575.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.99 CZK over 2117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012554 BTC for 82.71 CZK @ 658,815 CZK\nFees are 0.29048989 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.81 % (72.469649997511497714030842666 CZK)\nThe limits being 0.10 % (2.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42437318 BTC (220,141.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 658,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.00 % (59,442.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,791.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00390888 BTC (2,575.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.99 CZK over 2117 transactions" + } + ] + }, + { + "id": 3777, + "type": "message", + "date": "2023-10-17T10:00:06", + "date_unixtime": "1697529606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012495 BTC for 82.70 CZK @ 661,903 CZK\nFees are 0.29047986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.48 % (66.190299992443414834792910684 CZK)\nThe limits being 0.10 % (2.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42449813 BTC (220,224.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.59 % (60,752.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,708.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00403383 BTC (2,670.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.98 CZK over 2118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012495 BTC for 82.70 CZK @ 661,903 CZK\nFees are 0.29047986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.48 % (66.190299992443414834792910684 CZK)\nThe limits being 0.10 % (2.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42449813 BTC (220,224.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.59 % (60,752.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,708.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00403383 BTC (2,670.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.98 CZK over 2118 transactions" + } + ] + }, + { + "id": 3778, + "type": "message", + "date": "2023-10-17T14:00:07", + "date_unixtime": "1697544007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012528 BTC for 82.71 CZK @ 660,186 CZK\nFees are 0.29049153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.40 % (66.018599994209284108430200559 CZK)\nThe limits being 0.10 % (2.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42462341 BTC (220,307.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.25 % (60,023.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,625.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00415911 BTC (2,745.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.97 CZK over 2119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012528 BTC for 82.71 CZK @ 660,186 CZK\nFees are 0.29049153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.40 % (66.018599994209284108430200559 CZK)\nThe limits being 0.10 % (2.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42462341 BTC (220,307.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.25 % (60,023.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,625.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00415911 BTC (2,745.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.97 CZK over 2119 transactions" + } + ] + }, + { + "id": 3779, + "type": "message", + "date": "2023-10-17T18:00:06", + "date_unixtime": "1697558406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012506 BTC for 82.71 CZK @ 661,323 CZK\nFees are 0.29048083 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.70 % (19.839689999921114098416616526 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42474847 BTC (220,390.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.45 % (60,505.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,542.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00428417 BTC (2,833.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.96 CZK over 2120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012506 BTC for 82.71 CZK @ 661,323 CZK\nFees are 0.29048083 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.70 % (19.839689999921114098416616526 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42474847 BTC (220,390.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.45 % (60,505.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,542.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00428417 BTC (2,833.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.96 CZK over 2120 transactions" + } + ] + }, + { + "id": 3780, + "type": "message", + "date": "2023-10-17T22:00:06", + "date_unixtime": "1697572806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012467 BTC for 82.71 CZK @ 663,424 CZK\nFees are 0.29049493 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.68 % (19.902719998733877166661690899 CZK)\nThe limits being 0.10 % (2.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42487314 BTC (220,473.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.85 % (61,397.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,459.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00440884 BTC (2,924.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.95 CZK over 2121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012467 BTC for 82.71 CZK @ 663,424 CZK\nFees are 0.29049493 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.68 % (19.902719998733877166661690899 CZK)\nThe limits being 0.10 % (2.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42487314 BTC (220,473.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.85 % (61,397.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,459.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00440884 BTC (2,924.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.95 CZK over 2121 transactions" + } + ] + }, + { + "id": 3781, + "type": "message", + "date": "2023-10-18T02:00:06", + "date_unixtime": "1697587206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012523 BTC for 82.71 CZK @ 660,438 CZK\nFees are 0.29048643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.66 % (19.813139998188087282628662812 CZK)\nThe limits being 0.10 % (2.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42499837 BTC (220,556.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 518,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.26 % (60,128.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,376.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00453407 BTC (2,994.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.94 CZK over 2122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012523 BTC for 82.71 CZK @ 660,438 CZK\nFees are 0.29048643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.66 % (19.813139998188087282628662812 CZK)\nThe limits being 0.10 % (2.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42499837 BTC (220,556.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 518,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.26 % (60,128.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,376.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00453407 BTC (2,994.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.94 CZK over 2122 transactions" + } + ] + }, + { + "id": 3782, + "type": "message", + "date": "2023-10-18T06:00:06", + "date_unixtime": "1697601606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012474 BTC for 82.71 CZK @ 663,044 CZK\nFees are 0.29049155 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.64 % (19.891320000009586457020438086 CZK)\nThe limits being 0.10 % (3.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42512311 BTC (220,639.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.75 % (61,236.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,293.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00465881 BTC (3,089.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.93 CZK over 2123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012474 BTC for 82.71 CZK @ 663,044 CZK\nFees are 0.29049155 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.64 % (19.891320000009586457020438086 CZK)\nThe limits being 0.10 % (3.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42512311 BTC (220,639.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.75 % (61,236.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,293.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00465881 BTC (3,089.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.93 CZK over 2123 transactions" + } + ] + }, + { + "id": 3783, + "type": "message", + "date": "2023-10-18T10:00:06", + "date_unixtime": "1697616006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012501 BTC for 82.71 CZK @ 661,621 CZK\nFees are 0.29049553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (19.848629998987226014445002846 CZK)\nThe limits being 0.10 % (3.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42524812 BTC (220,722.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.47 % (60,630.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,210.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00478382 BTC (3,165.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.92 CZK over 2124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012501 BTC for 82.71 CZK @ 661,621 CZK\nFees are 0.29049553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (19.848629998987226014445002846 CZK)\nThe limits being 0.10 % (3.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42524812 BTC (220,722.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.47 % (60,630.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,210.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00478382 BTC (3,165.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.92 CZK over 2124 transactions" + } + ] + }, + { + "id": 3784, + "type": "message", + "date": "2023-10-18T14:00:05", + "date_unixtime": "1697630405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012523 BTC for 82.71 CZK @ 660,460 CZK\nFees are 0.29049611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (19.813799999928382896546587464 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42537335 BTC (220,805.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.24 % (60,136.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,127.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00490905 BTC (3,242.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.91 CZK over 2125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012523 BTC for 82.71 CZK @ 660,460 CZK\nFees are 0.29049611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (19.813799999928382896546587464 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42537335 BTC (220,805.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.24 % (60,136.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,127.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00490905 BTC (3,242.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.91 CZK over 2125 transactions" + } + ] + }, + { + "id": 3785, + "type": "message", + "date": "2023-10-18T18:00:06", + "date_unixtime": "1697644806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012510 BTC for 82.71 CZK @ 661,132 CZK\nFees are 0.29048981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (26.445279998024500180622816147 CZK)\nThe limits being 0.10 % (3.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42549845 BTC (220,888.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.35 % (60,422.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,044.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00503415 BTC (3,328.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.90 CZK over 2126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012510 BTC for 82.71 CZK @ 661,132 CZK\nFees are 0.29048981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (26.445279998024500180622816147 CZK)\nThe limits being 0.10 % (3.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42549845 BTC (220,888.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.35 % (60,422.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,044.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00503415 BTC (3,328.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.90 CZK over 2126 transactions" + } + ] + }, + { + "id": 3786, + "type": "message", + "date": "2023-10-18T22:00:08", + "date_unixtime": "1697659208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012517 BTC for 82.71 CZK @ 660,762 CZK\nFees are 0.29048970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (72.683819992652543611938386614 CZK)\nThe limits being 0.10 % (3.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42562362 BTC (220,971.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.27 % (60,264.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,961.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00515932 BTC (3,409.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.89 CZK over 2127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012517 BTC for 82.71 CZK @ 660,762 CZK\nFees are 0.29048970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (72.683819992652543611938386614 CZK)\nThe limits being 0.10 % (3.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42562362 BTC (220,971.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.27 % (60,264.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,961.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00515932 BTC (3,409.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.89 CZK over 2127 transactions" + } + ] + }, + { + "id": 3787, + "type": "message", + "date": "2023-10-19T02:00:07", + "date_unixtime": "1697673607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012505 BTC for 82.71 CZK @ 661,395 CZK\nFees are 0.29048922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (52.911599995776477650095915797 CZK)\nThe limits being 0.10 % (3.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42574867 BTC (221,054.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 661,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.38 % (60,533.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,878.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00528437 BTC (3,495.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.88 CZK over 2128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012505 BTC for 82.71 CZK @ 661,395 CZK\nFees are 0.29048922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (52.911599995776477650095915797 CZK)\nThe limits being 0.10 % (3.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42574867 BTC (221,054.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 661,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.38 % (60,533.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,878.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00528437 BTC (3,495.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.88 CZK over 2128 transactions" + } + ] + }, + { + "id": 3788, + "type": "message", + "date": "2023-10-19T06:00:07", + "date_unixtime": "1697688007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012524 BTC for 82.71 CZK @ 660,399 CZK\nFees are 0.29049261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (26.415971993264710530072246340 CZK)\nThe limits being 0.10 % (3.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42587391 BTC (221,137.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 660,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.18 % (60,109.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,795.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00540961 BTC (3,572.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.87 CZK over 2129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012524 BTC for 82.71 CZK @ 660,399 CZK\nFees are 0.29049261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (26.415971993264710530072246340 CZK)\nThe limits being 0.10 % (3.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42587391 BTC (221,137.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 660,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.18 % (60,109.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,795.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00540961 BTC (3,572.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.87 CZK over 2129 transactions" + } + ] + }, + { + "id": 3789, + "type": "message", + "date": "2023-10-19T10:00:07", + "date_unixtime": "1697702407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012487 BTC for 82.71 CZK @ 662,346 CZK\nFees are 0.29048817 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (6.6234599993958839265581595988 CZK)\nThe limits being 0.10 % (3.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42599878 BTC (221,220.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 662,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.55 % (60,938.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,712.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00553448 BTC (3,665.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.86 CZK over 2130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012487 BTC for 82.71 CZK @ 662,346 CZK\nFees are 0.29048817 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (6.6234599993958839265581595988 CZK)\nThe limits being 0.10 % (3.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42599878 BTC (221,220.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 662,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.55 % (60,938.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,712.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00553448 BTC (3,665.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.86 CZK over 2130 transactions" + } + ] + }, + { + "id": 3790, + "type": "message", + "date": "2023-10-19T14:00:06", + "date_unixtime": "1697716806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012457 BTC for 82.71 CZK @ 663,940 CZK\nFees are 0.29048768 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (6.6393999999760011509847987694 CZK)\nThe limits being 0.10 % (3.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42612335 BTC (221,303.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 663,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 27.84 % (61,617.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,629.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00565905 BTC (3,757.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.85 CZK over 2131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012457 BTC for 82.71 CZK @ 663,940 CZK\nFees are 0.29048768 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (6.6393999999760011509847987694 CZK)\nThe limits being 0.10 % (3.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42612335 BTC (221,303.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 663,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 27.84 % (61,617.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,629.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00565905 BTC (3,757.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.85 CZK over 2131 transactions" + } + ] + }, + { + "id": 3791, + "type": "message", + "date": "2023-10-19T18:00:07", + "date_unixtime": "1697731207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012362 BTC for 82.71 CZK @ 669,038 CZK\nFees are 0.29048583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (53.523039999058464440950767118 CZK)\nThe limits being 0.10 % (3.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42624697 BTC (221,386.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 669,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.81 % (63,789.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,546.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00578267 BTC (3,868.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.84 CZK over 2132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012362 BTC for 82.71 CZK @ 669,038 CZK\nFees are 0.29048583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (53.523039999058464440950767118 CZK)\nThe limits being 0.10 % (3.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42624697 BTC (221,386.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 669,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.81 % (63,789.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,546.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00578267 BTC (3,868.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.84 CZK over 2132 transactions" + } + ] + }, + { + "id": 3792, + "type": "message", + "date": "2023-10-19T22:00:06", + "date_unixtime": "1697745606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012378 BTC for 82.71 CZK @ 668,196 CZK\nFees are 0.29049574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (53.455679998016314365225024741 CZK)\nThe limits being 0.10 % (3.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42637075 BTC (221,469.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 668,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.64 % (63,430.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,463.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00590645 BTC (3,946.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.83 CZK over 2133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012378 BTC for 82.71 CZK @ 668,196 CZK\nFees are 0.29049574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (53.455679998016314365225024741 CZK)\nThe limits being 0.10 % (3.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42637075 BTC (221,469.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 668,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.64 % (63,430.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,463.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00590645 BTC (3,946.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.83 CZK over 2133 transactions" + } + ] + }, + { + "id": 3793, + "type": "message", + "date": "2023-10-20T02:00:06", + "date_unixtime": "1697760006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012384 BTC for 82.71 CZK @ 667,855 CZK\nFees are 0.29048823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (53.428399999227509916841442546 CZK)\nThe limits being 0.10 % (4.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42649459 BTC (221,552.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 667,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 28.56 % (63,284.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,380.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00603029 BTC (4,027.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.82 CZK over 2134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012384 BTC for 82.71 CZK @ 667,855 CZK\nFees are 0.29048823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (53.428399999227509916841442546 CZK)\nThe limits being 0.10 % (4.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42649459 BTC (221,552.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 667,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 28.56 % (63,284.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,380.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00603029 BTC (4,027.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.82 CZK over 2134 transactions" + } + ] + }, + { + "id": 3794, + "type": "message", + "date": "2023-10-20T06:00:06", + "date_unixtime": "1697774406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012158 BTC for 82.71 CZK @ 680,259 CZK\nFees are 0.29048376 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (54.420719998511542878425264820 CZK)\nThe limits being 0.10 % (4.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42661617 BTC (221,635.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 680,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.94 % (68,574.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,297.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00615187 BTC (4,184.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.81 CZK over 2135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012158 BTC for 82.71 CZK @ 680,259 CZK\nFees are 0.29048376 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (54.420719998511542878425264820 CZK)\nThe limits being 0.10 % (4.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42661617 BTC (221,635.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 680,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.94 % (68,574.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,297.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00615187 BTC (4,184.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.81 CZK over 2135 transactions" + } + ] + }, + { + "id": 3795, + "type": "message", + "date": "2023-10-20T10:00:07", + "date_unixtime": "1697788807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012107 BTC for 82.70 CZK @ 683,109 CZK\nFees are 0.29047715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (34.155449998681002054879450789 CZK)\nThe limits being 0.10 % (4.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42673724 BTC (221,718.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 683,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.48 % (69,789.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,214.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00627294 BTC (4,285.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.80 CZK over 2136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012107 BTC for 82.70 CZK @ 683,109 CZK\nFees are 0.29047715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (34.155449998681002054879450789 CZK)\nThe limits being 0.10 % (4.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42673724 BTC (221,718.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 683,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.48 % (69,789.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,214.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00627294 BTC (4,285.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.80 CZK over 2136 transactions" + } + ] + }, + { + "id": 3796, + "type": "message", + "date": "2023-10-20T14:00:05", + "date_unixtime": "1697803205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011915 BTC for 82.71 CZK @ 694,129 CZK\nFees are 0.29048229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (20.823869998438114521959545284 CZK)\nThe limits being 0.10 % (4.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42685639 BTC (221,801.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 694,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.59 % (74,492.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,131.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00639209 BTC (4,436.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.79 CZK over 2137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011915 BTC for 82.71 CZK @ 694,129 CZK\nFees are 0.29048229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (20.823869998438114521959545284 CZK)\nThe limits being 0.10 % (4.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42685639 BTC (221,801.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 694,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.59 % (74,492.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,131.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00639209 BTC (4,436.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.79 CZK over 2137 transactions" + } + ] + }, + { + "id": 3797, + "type": "message", + "date": "2023-10-20T18:00:05", + "date_unixtime": "1697817605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012161 BTC for 82.67 CZK @ 679,761 CZK\nFees are 0.29034279 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (27.190445439973332379513574048 CZK)\nThe limits being 0.10 % (4.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42697800 BTC (221,884.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 679,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 30.81 % (68,359.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,048.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00651370 BTC (4,427.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.78 CZK over 2138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012161 BTC for 82.67 CZK @ 679,761 CZK\nFees are 0.29034279 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (27.190445439973332379513574048 CZK)\nThe limits being 0.10 % (4.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42697800 BTC (221,884.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 679,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 30.81 % (68,359.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,048.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00651370 BTC (4,427.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.78 CZK over 2138 transactions" + } + ] + }, + { + "id": 3798, + "type": "message", + "date": "2023-10-20T22:00:05", + "date_unixtime": "1697832005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012083 BTC for 82.71 CZK @ 684,495 CZK\nFees are 0.29048953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (47.914649995395986595125287924 CZK)\nThe limits being 0.10 % (4.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42709883 BTC (221,967.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 684,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 31.71 % (70,379.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,965.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00663453 BTC (4,541.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.77 CZK over 2139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012083 BTC for 82.71 CZK @ 684,495 CZK\nFees are 0.29048953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (47.914649995395986595125287924 CZK)\nThe limits being 0.10 % (4.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42709883 BTC (221,967.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 684,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 31.71 % (70,379.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,965.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00663453 BTC (4,541.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.77 CZK over 2139 transactions" + } + ] + }, + { + "id": 3799, + "type": "message", + "date": "2023-10-21T02:00:06", + "date_unixtime": "1697846406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012015 BTC for 82.71 CZK @ 688,356 CZK\nFees are 0.29048406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (55.068479995421766638239320929 CZK)\nThe limits being 0.10 % (4.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42721898 BTC (222,050.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 688,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.44 % (72,028.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,882.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00675468 BTC (4,649.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.76 CZK over 2140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012015 BTC for 82.71 CZK @ 688,356 CZK\nFees are 0.29048406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (55.068479995421766638239320929 CZK)\nThe limits being 0.10 % (4.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42721898 BTC (222,050.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 688,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.44 % (72,028.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,882.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00675468 BTC (4,649.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.76 CZK over 2140 transactions" + } + ] + }, + { + "id": 3800, + "type": "message", + "date": "2023-10-21T06:00:06", + "date_unixtime": "1697860806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012041 BTC for 82.71 CZK @ 686,881 CZK\nFees are 0.29048886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (48.081669997546582145614673866 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42733939 BTC (222,133.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 686,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.14 % (71,398.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,799.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00687509 BTC (4,722.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.75 CZK over 2141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012041 BTC for 82.71 CZK @ 686,881 CZK\nFees are 0.29048886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (48.081669997546582145614673866 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42733939 BTC (222,133.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 686,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.14 % (71,398.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,799.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00687509 BTC (4,722.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.75 CZK over 2141 transactions" + } + ] + }, + { + "id": 3801, + "type": "message", + "date": "2023-10-21T10:00:06", + "date_unixtime": "1697875206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00012038 BTC for 82.71 CZK @ 687,035 CZK\nFees are 0.29048160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (48.092449996204511986747165781 CZK)\nThe limits being 0.10 % (4.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42745977 BTC (222,216.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 687,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.16 % (71,463.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,716.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00699547 BTC (4,806.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.74 CZK over 2142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00012038 BTC for 82.71 CZK @ 687,035 CZK\nFees are 0.29048160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (48.092449996204511986747165781 CZK)\nThe limits being 0.10 % (4.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42745977 BTC (222,216.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 687,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.16 % (71,463.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,716.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00699547 BTC (4,806.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.74 CZK over 2142 transactions" + } + ] + }, + { + "id": 3802, + "type": "message", + "date": "2023-10-21T14:00:06", + "date_unixtime": "1697889606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011965 BTC for 82.71 CZK @ 691,268 CZK\nFees are 0.29049888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (13.825356256029096657311611616 CZK)\nThe limits being 0.10 % (4.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42757942 BTC (222,299.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 691,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 32.96 % (73,272.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,633.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00711512 BTC (4,918.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.73 CZK over 2143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011965 BTC for 82.71 CZK @ 691,268 CZK\nFees are 0.29049888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (13.825356256029096657311611616 CZK)\nThe limits being 0.10 % (4.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42757942 BTC (222,299.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 691,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 32.96 % (73,272.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,633.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00711512 BTC (4,918.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.73 CZK over 2143 transactions" + } + ] + }, + { + "id": 3803, + "type": "message", + "date": "2023-10-21T18:00:05", + "date_unixtime": "1697904005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011948 BTC for 82.71 CZK @ 692,254 CZK\nFees are 0.29049998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (20.767619998068361004312158868 CZK)\nThe limits being 0.10 % (5.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42769890 BTC (222,382.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 519,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 692,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.14 % (73,694.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,550.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00723460 BTC (5,008.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.72 CZK over 2144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011948 BTC for 82.71 CZK @ 692,254 CZK\nFees are 0.29049998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (20.767619998068361004312158868 CZK)\nThe limits being 0.10 % (5.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42769890 BTC (222,382.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 519,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 692,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.14 % (73,694.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,550.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00723460 BTC (5,008.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.72 CZK over 2144 transactions" + } + ] + }, + { + "id": 3804, + "type": "message", + "date": "2023-10-21T22:00:05", + "date_unixtime": "1697918405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011849 BTC for 82.71 CZK @ 698,000 CZK\nFees are 0.29048422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (20.94000 CZK)\nThe limits being 0.10 % (5.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42781739 BTC (222,465.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 698,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 34.23 % (76,151.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,467.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00735309 BTC (5,132.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.71 CZK over 2145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011849 BTC for 82.71 CZK @ 698,000 CZK\nFees are 0.29048422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (20.94000 CZK)\nThe limits being 0.10 % (5.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42781739 BTC (222,465.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 698,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 34.23 % (76,151.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,467.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00735309 BTC (5,132.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.71 CZK over 2145 transactions" + } + ] + }, + { + "id": 3805, + "type": "message", + "date": "2023-10-22T02:00:05", + "date_unixtime": "1697932805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011914 BTC for 82.71 CZK @ 694,194 CZK\nFees are 0.29048511 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (20.825819998479386274278066049 CZK)\nThe limits being 0.10 % (5.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42793653 BTC (222,548.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 694,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.49 % (74,522.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,384.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00747223 BTC (5,187.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.70 CZK over 2146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011914 BTC for 82.71 CZK @ 694,194 CZK\nFees are 0.29048511 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (20.825819998479386274278066049 CZK)\nThe limits being 0.10 % (5.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42793653 BTC (222,548.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 694,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.49 % (74,522.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,384.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00747223 BTC (5,187.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.70 CZK over 2146 transactions" + } + ] + }, + { + "id": 3806, + "type": "message", + "date": "2023-10-22T06:00:06", + "date_unixtime": "1697947206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011913 BTC for 82.71 CZK @ 694,243 CZK\nFees are 0.29048123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (13.884859999989125611773214969 CZK)\nThe limits being 0.10 % (5.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42805566 BTC (222,631.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 694,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.48 % (74,543.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,301.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00759136 BTC (5,270.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.69 CZK over 2147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011913 BTC for 82.71 CZK @ 694,243 CZK\nFees are 0.29048123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (13.884859999989125611773214969 CZK)\nThe limits being 0.10 % (5.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42805566 BTC (222,631.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 694,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.48 % (74,543.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,301.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00759136 BTC (5,270.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.69 CZK over 2147 transactions" + } + ] + }, + { + "id": 3807, + "type": "message", + "date": "2023-10-22T10:00:05", + "date_unixtime": "1697961605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011948 BTC for 82.71 CZK @ 692,251 CZK\nFees are 0.29049872 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (20.767529999204324869651899637 CZK)\nThe limits being 0.10 % (5.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42817514 BTC (222,714.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 692,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.09 % (73,690.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,218.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00771084 BTC (5,337.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.68 CZK over 2148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011948 BTC for 82.71 CZK @ 692,251 CZK\nFees are 0.29049872 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (20.767529999204324869651899637 CZK)\nThe limits being 0.10 % (5.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42817514 BTC (222,714.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 692,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.09 % (73,690.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,218.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00771084 BTC (5,337.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.68 CZK over 2148 transactions" + } + ] + }, + { + "id": 3808, + "type": "message", + "date": "2023-10-22T14:00:06", + "date_unixtime": "1697976006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011916 BTC for 82.71 CZK @ 694,095 CZK\nFees are 0.29049244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (20.822849999824381030943560579 CZK)\nThe limits being 0.10 % (5.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42829430 BTC (222,797.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 694,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.43 % (74,479.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,135.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00783000 BTC (5,434.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.67 CZK over 2149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011916 BTC for 82.71 CZK @ 694,095 CZK\nFees are 0.29049244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (20.822849999824381030943560579 CZK)\nThe limits being 0.10 % (5.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42829430 BTC (222,797.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 694,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.43 % (74,479.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,135.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00783000 BTC (5,434.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.67 CZK over 2149 transactions" + } + ] + }, + { + "id": 3809, + "type": "message", + "date": "2023-10-22T18:00:05", + "date_unixtime": "1697990405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011948 BTC for 82.70 CZK @ 692,201 CZK\nFees are 0.29047774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (20.766029998954112564510987574 CZK)\nThe limits being 0.10 % (5.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42841378 BTC (222,880.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 692,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.05 % (73,668.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,052.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00794948 BTC (5,502.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.67 CZK over 2150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011948 BTC for 82.70 CZK @ 692,201 CZK\nFees are 0.29047774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (20.766029998954112564510987574 CZK)\nThe limits being 0.10 % (5.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42841378 BTC (222,880.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 692,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.05 % (73,668.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,052.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00794948 BTC (5,502.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.67 CZK over 2150 transactions" + } + ] + }, + { + "id": 3810, + "type": "message", + "date": "2023-10-22T22:00:05", + "date_unixtime": "1698004805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011942 BTC for 82.71 CZK @ 692,570 CZK\nFees are 0.29048664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (41.554199998548039490321807019 CZK)\nThe limits being 0.10 % (5.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42853320 BTC (222,963.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 692,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.11 % (73,826.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,969.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00806890 BTC (5,588.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.66 CZK over 2151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011942 BTC for 82.71 CZK @ 692,570 CZK\nFees are 0.29048664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (41.554199998548039490321807019 CZK)\nThe limits being 0.10 % (5.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42853320 BTC (222,963.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 692,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.11 % (73,826.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,969.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00806890 BTC (5,588.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.66 CZK over 2151 transactions" + } + ] + }, + { + "id": 3811, + "type": "message", + "date": "2023-10-23T02:00:06", + "date_unixtime": "1698019206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011889 BTC for 82.71 CZK @ 695,666 CZK\nFees are 0.29049023 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (13.913319998727642753265413093 CZK)\nThe limits being 0.10 % (5.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42865209 BTC (223,045.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 695,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 33.69 % (75,152.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,886.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00818779 BTC (5,695.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.65 CZK over 2152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011889 BTC for 82.71 CZK @ 695,666 CZK\nFees are 0.29049023 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (13.913319998727642753265413093 CZK)\nThe limits being 0.10 % (5.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42865209 BTC (223,045.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 695,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 33.69 % (75,152.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,886.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00818779 BTC (5,695.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.65 CZK over 2152 transactions" + } + ] + }, + { + "id": 3812, + "type": "message", + "date": "2023-10-23T06:00:06", + "date_unixtime": "1698033606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011699 BTC for 82.70 CZK @ 706,928 CZK\nFees are 0.29047539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.138559999400337982800858590 CZK)\nThe limits being 0.10 % (5.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42876908 BTC (223,128.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 706,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.84 % (79,979.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,803.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00830478 BTC (5,870.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.64 CZK over 2153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011699 BTC for 82.70 CZK @ 706,928 CZK\nFees are 0.29047539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.138559999400337982800858590 CZK)\nThe limits being 0.10 % (5.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42876908 BTC (223,128.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 706,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.84 % (79,979.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,803.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00830478 BTC (5,870.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.64 CZK over 2153 transactions" + } + ] + }, + { + "id": 3813, + "type": "message", + "date": "2023-10-23T10:00:06", + "date_unixtime": "1698048006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011689 BTC for 82.71 CZK @ 707,577 CZK\nFees are 0.29049355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.151539999257453903211460717 CZK)\nThe limits being 0.10 % (5.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42888597 BTC (223,211.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 707,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 35.96 % (80,257.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,720.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00842167 BTC (5,958.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.63 CZK over 2154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011689 BTC for 82.71 CZK @ 707,577 CZK\nFees are 0.29049355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.151539999257453903211460717 CZK)\nThe limits being 0.10 % (5.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42888597 BTC (223,211.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 707,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 35.96 % (80,257.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,720.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00842167 BTC (5,958.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.63 CZK over 2154 transactions" + } + ] + }, + { + "id": 3814, + "type": "message", + "date": "2023-10-23T14:00:08", + "date_unixtime": "1698062408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011678 BTC for 82.71 CZK @ 708,250 CZK\nFees are 0.29049621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (14.164999999573337811579662994 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42900275 BTC (223,294.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 708,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.07 % (80,546.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,637.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00853845 BTC (6,047.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.62 CZK over 2155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011678 BTC for 82.71 CZK @ 708,250 CZK\nFees are 0.29049621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (14.164999999573337811579662994 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42900275 BTC (223,294.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 708,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.07 % (80,546.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,637.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00853845 BTC (6,047.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.62 CZK over 2155 transactions" + } + ] + }, + { + "id": 3815, + "type": "message", + "date": "2023-10-23T18:00:06", + "date_unixtime": "1698076806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011645 BTC for 82.70 CZK @ 710,215 CZK\nFees are 0.29047901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (21.306449997785766134544551348 CZK)\nThe limits being 0.10 % (6.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42911920 BTC (223,377.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 710,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 36.44 % (81,388.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,554.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00865490 BTC (6,146.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.61 CZK over 2156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011645 BTC for 82.70 CZK @ 710,215 CZK\nFees are 0.29047901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (21.306449997785766134544551348 CZK)\nThe limits being 0.10 % (6.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42911920 BTC (223,377.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 710,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 36.44 % (81,388.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,554.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00865490 BTC (6,146.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.61 CZK over 2156 transactions" + } + ] + }, + { + "id": 3816, + "type": "message", + "date": "2023-10-23T22:00:05", + "date_unixtime": "1698091205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00011443 BTC for 82.71 CZK @ 722,791 CZK\nFees are 0.29049459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (36.139549995883062606055768894 CZK)\nThe limits being 0.10 % (6.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42923363 BTC (223,460.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 722,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 38.84 % (86,785.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,471.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00876933 BTC (6,338.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.60 CZK over 2157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00011443 BTC for 82.71 CZK @ 722,791 CZK\nFees are 0.29049459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (36.139549995883062606055768894 CZK)\nThe limits being 0.10 % (6.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42923363 BTC (223,460.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 722,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 38.84 % (86,785.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,471.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00876933 BTC (6,338.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.60 CZK over 2157 transactions" + } + ] + }, + { + "id": 3817, + "type": "message", + "date": "2023-10-24T02:00:06", + "date_unixtime": "1698105606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010984 BTC for 82.71 CZK @ 753,000 CZK\nFees are 0.29049651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (60.24000 CZK)\nThe limits being 0.10 % (6.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42934347 BTC (223,543.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 753,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 44.62 % (99,751.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,388.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00887917 BTC (6,686.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.59 CZK over 2158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010984 BTC for 82.71 CZK @ 753,000 CZK\nFees are 0.29049651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (60.24000 CZK)\nThe limits being 0.10 % (6.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42934347 BTC (223,543.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 753,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 44.62 % (99,751.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,388.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00887917 BTC (6,686.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.59 CZK over 2158 transactions" + } + ] + }, + { + "id": 3818, + "type": "message", + "date": "2023-10-24T06:00:06", + "date_unixtime": "1698120006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010561 BTC for 82.71 CZK @ 783,141 CZK\nFees are 0.29048949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (70.482689996998008155057337200 CZK)\nThe limits being 0.10 % (7.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42944908 BTC (223,626.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 783,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.39 % (112,692.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,305.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00898478 BTC (7,036.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.58 CZK over 2159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010561 BTC for 82.71 CZK @ 783,141 CZK\nFees are 0.29048949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (70.482689996998008155057337200 CZK)\nThe limits being 0.10 % (7.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42944908 BTC (223,626.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 783,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.39 % (112,692.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,305.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00898478 BTC (7,036.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.58 CZK over 2159 transactions" + } + ] + }, + { + "id": 3819, + "type": "message", + "date": "2023-10-24T10:00:06", + "date_unixtime": "1698134406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010547 BTC for 82.71 CZK @ 784,174 CZK\nFees are 0.29048707 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (70.575659998954073183414321798 CZK)\nThe limits being 0.10 % (7.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42955455 BTC (223,709.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 784,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.57 % (113,135.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,222.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00909025 BTC (7,128.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.57 CZK over 2160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010547 BTC for 82.71 CZK @ 784,174 CZK\nFees are 0.29048707 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (70.575659998954073183414321798 CZK)\nThe limits being 0.10 % (7.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42955455 BTC (223,709.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 784,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.57 % (113,135.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,222.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00909025 BTC (7,128.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.57 CZK over 2160 transactions" + } + ] + }, + { + "id": 3820, + "type": "message", + "date": "2023-10-24T14:00:06", + "date_unixtime": "1698148806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010346 BTC for 82.71 CZK @ 799,433 CZK\nFees are 0.29049587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (79.94329999650363491938277887 CZK)\nThe limits being 0.10 % (7.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42965801 BTC (223,792.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.48 % (119,689.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,139.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00919371 BTC (7,349.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.56 CZK over 2161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010346 BTC for 82.71 CZK @ 799,433 CZK\nFees are 0.29049587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (79.94329999650363491938277887 CZK)\nThe limits being 0.10 % (7.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42965801 BTC (223,792.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.48 % (119,689.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,139.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00919371 BTC (7,349.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.56 CZK over 2161 transactions" + } + ] + }, + { + "id": 3821, + "type": "message", + "date": "2023-10-24T18:00:06", + "date_unixtime": "1698163206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010581 BTC for 82.70 CZK @ 781,617 CZK\nFees are 0.29047324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (156.32339999680731841729450184 CZK)\nThe limits being 0.10 % (7.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42976382 BTC (223,875.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 781,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.04 % (112,034.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,056.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00929952 BTC (7,268.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.55 CZK over 2162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010581 BTC for 82.70 CZK @ 781,617 CZK\nFees are 0.29047324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (156.32339999680731841729450184 CZK)\nThe limits being 0.10 % (7.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42976382 BTC (223,875.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 781,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.04 % (112,034.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,056.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00929952 BTC (7,268.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.55 CZK over 2162 transactions" + } + ] + }, + { + "id": 3822, + "type": "message", + "date": "2023-10-24T22:00:06", + "date_unixtime": "1698177606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010515 BTC for 82.70 CZK @ 786,533 CZK\nFees are 0.29047693 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (141.57593998750450456213523709 CZK)\nThe limits being 0.10 % (7.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42986897 BTC (223,958.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 520,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 786,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.97 % (114,147.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,973.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00940467 BTC (7,397.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.54 CZK over 2163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010515 BTC for 82.70 CZK @ 786,533 CZK\nFees are 0.29047693 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (141.57593998750450456213523709 CZK)\nThe limits being 0.10 % (7.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42986897 BTC (223,958.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 520,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 786,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.97 % (114,147.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,973.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00940467 BTC (7,397.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.54 CZK over 2163 transactions" + } + ] + }, + { + "id": 3823, + "type": "message", + "date": "2023-10-25T02:00:05", + "date_unixtime": "1698192005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010489 BTC for 82.71 CZK @ 788,502 CZK\nFees are 0.29048406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (141.93035999704153016164275450 CZK)\nThe limits being 0.10 % (7.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.42997386 BTC (224,041.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 788,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.33 % (114,993.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,890.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00950956 BTC (7,498.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.53 CZK over 2164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010489 BTC for 82.71 CZK @ 788,502 CZK\nFees are 0.29048406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (141.93035999704153016164275450 CZK)\nThe limits being 0.10 % (7.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.42997386 BTC (224,041.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 788,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.33 % (114,993.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,890.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00950956 BTC (7,498.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.53 CZK over 2164 transactions" + } + ] + }, + { + "id": 3824, + "type": "message", + "date": "2023-10-25T06:00:06", + "date_unixtime": "1698206406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010470 BTC for 82.71 CZK @ 789,942 CZK\nFees are 0.29048741 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.77 % (134.29013999045366051674916207 CZK)\nThe limits being 0.10 % (7.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43007856 BTC (224,124.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 789,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.58 % (115,612.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,808.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00961426 BTC (7,594.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.52 CZK over 2165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010470 BTC for 82.71 CZK @ 789,942 CZK\nFees are 0.29048741 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.77 % (134.29013999045366051674916207 CZK)\nThe limits being 0.10 % (7.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43007856 BTC (224,124.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 789,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.58 % (115,612.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,808.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00961426 BTC (7,594.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.52 CZK over 2165 transactions" + } + ] + }, + { + "id": 3825, + "type": "message", + "date": "2023-10-25T10:00:06", + "date_unixtime": "1698220806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010476 BTC for 82.70 CZK @ 789,465 CZK\nFees are 0.29047837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.34 % (102.63044999146743556772373440 CZK)\nThe limits being 0.10 % (7.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43018332 BTC (224,207.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 789,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.47 % (115,406.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,725.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00971902 BTC (7,672.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.51 CZK over 2166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010476 BTC for 82.70 CZK @ 789,465 CZK\nFees are 0.29047837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.34 % (102.63044999146743556772373440 CZK)\nThe limits being 0.10 % (7.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43018332 BTC (224,207.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 789,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.47 % (115,406.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,725.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00971902 BTC (7,672.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.51 CZK over 2166 transactions" + } + ] + }, + { + "id": 3826, + "type": "message", + "date": "2023-10-25T14:00:05", + "date_unixtime": "1698235205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010346 BTC for 82.71 CZK @ 799,433 CZK\nFees are 0.29049587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (103.92628999545472539519761253 CZK)\nThe limits being 0.10 % (7.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43028678 BTC (224,290.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.37 % (119,694.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,642.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00982248 BTC (7,852.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.50 CZK over 2167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010346 BTC for 82.71 CZK @ 799,433 CZK\nFees are 0.29049587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (103.92628999545472539519761253 CZK)\nThe limits being 0.10 % (7.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43028678 BTC (224,290.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.37 % (119,694.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,642.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00982248 BTC (7,852.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.50 CZK over 2167 transactions" + } + ] + }, + { + "id": 3827, + "type": "message", + "date": "2023-10-25T18:00:06", + "date_unixtime": "1698249606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010180 BTC for 82.71 CZK @ 812,455 CZK\nFees are 0.29049089 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.31 % (105.61914999172836134433216551 CZK)\nThe limits being 0.10 % (8.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43038858 BTC (224,373.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 812,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.84 % (125,297.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,559.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00992428 BTC (8,063.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.49 CZK over 2168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010180 BTC for 82.71 CZK @ 812,455 CZK\nFees are 0.29049089 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.31 % (105.61914999172836134433216551 CZK)\nThe limits being 0.10 % (8.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43038858 BTC (224,373.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 812,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.84 % (125,297.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,559.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00992428 BTC (8,063.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.49 CZK over 2168 transactions" + } + ] + }, + { + "id": 3828, + "type": "message", + "date": "2023-10-25T22:00:06", + "date_unixtime": "1698264006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010180 BTC for 82.71 CZK @ 812,453 CZK\nFees are 0.29049017 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (105.61888999503701680659929931 CZK)\nThe limits being 0.10 % (8.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43049038 BTC (224,456.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 812,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.82 % (125,296.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,476.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01002608 BTC (8,145.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.48 CZK over 2169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010180 BTC for 82.71 CZK @ 812,453 CZK\nFees are 0.29049017 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (105.61888999503701680659929931 CZK)\nThe limits being 0.10 % (8.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43049038 BTC (224,456.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 812,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.82 % (125,296.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,476.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01002608 BTC (8,145.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.48 CZK over 2169 transactions" + } + ] + }, + { + "id": 3829, + "type": "message", + "date": "2023-10-26T02:00:06", + "date_unixtime": "1698278406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010250 BTC for 82.71 CZK @ 806,904 CZK\nFees are 0.29048998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (145.24272 CZK)\nThe limits being 0.10 % (8.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43059288 BTC (224,539.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 806,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.74 % (122,907.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,393.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01012858 BTC (8,172.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.47 CZK over 2170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010250 BTC for 82.71 CZK @ 806,904 CZK\nFees are 0.29048998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (145.24272 CZK)\nThe limits being 0.10 % (8.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43059288 BTC (224,539.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 806,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.74 % (122,907.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,393.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01012858 BTC (8,172.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.47 CZK over 2170 transactions" + } + ] + }, + { + "id": 3830, + "type": "message", + "date": "2023-10-26T06:00:09", + "date_unixtime": "1698292809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010156 BTC for 82.71 CZK @ 814,388 CZK\nFees are 0.29049555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (105.87043998918319163746108785 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43069444 BTC (224,622.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 814,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.15 % (126,129.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,310.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01023014 BTC (8,331.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.47 CZK over 2171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010156 BTC for 82.71 CZK @ 814,388 CZK\nFees are 0.29049555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (105.87043998918319163746108785 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43069444 BTC (224,622.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 814,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.15 % (126,129.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,310.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01023014 BTC (8,331.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.47 CZK over 2171 transactions" + } + ] + }, + { + "id": 3831, + "type": "message", + "date": "2023-10-26T10:00:07", + "date_unixtime": "1698307207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010177 BTC for 82.71 CZK @ 812,690 CZK\nFees are 0.29048929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (48.76140104309183358882605976 CZK)\nThe limits being 0.10 % (8.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43079621 BTC (224,705.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 812,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.81 % (125,397.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,227.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01033191 BTC (8,396.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.46 CZK over 2172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010177 BTC for 82.71 CZK @ 812,690 CZK\nFees are 0.29048929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (48.76140104309183358882605976 CZK)\nThe limits being 0.10 % (8.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43079621 BTC (224,705.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 812,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.81 % (125,397.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,227.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01033191 BTC (8,396.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.46 CZK over 2172 transactions" + } + ] + }, + { + "id": 3832, + "type": "message", + "date": "2023-10-26T14:00:06", + "date_unixtime": "1698321606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010332 BTC for 82.70 CZK @ 800,464 CZK\nFees are 0.29047691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (48.027839999027792968512644766 CZK)\nThe limits being 0.10 % (8.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43089953 BTC (224,788.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.44 % (120,130.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,144.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01043523 BTC (8,353.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.45 CZK over 2173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010332 BTC for 82.70 CZK @ 800,464 CZK\nFees are 0.29047691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (48.027839999027792968512644766 CZK)\nThe limits being 0.10 % (8.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43089953 BTC (224,788.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.44 % (120,130.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,144.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01043523 BTC (8,353.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.45 CZK over 2173 transactions" + } + ] + }, + { + "id": 3833, + "type": "message", + "date": "2023-10-26T18:00:08", + "date_unixtime": "1698336008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010356 BTC for 82.71 CZK @ 798,650 CZK\nFees are 0.29049185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.959499997401909077210066044 CZK)\nThe limits being 0.10 % (8.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43100309 BTC (224,871.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.07 % (119,348.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,061.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01053879 BTC (8,416.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.44 CZK over 2174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010356 BTC for 82.71 CZK @ 798,650 CZK\nFees are 0.29049185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.959499997401909077210066044 CZK)\nThe limits being 0.10 % (8.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43100309 BTC (224,871.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.07 % (119,348.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,061.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01053879 BTC (8,416.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.44 CZK over 2174 transactions" + } + ] + }, + { + "id": 3834, + "type": "message", + "date": "2023-10-26T22:00:07", + "date_unixtime": "1698350407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010409 BTC for 82.71 CZK @ 794,575 CZK\nFees are 0.29048876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (119.18624999838446118764935656 CZK)\nThe limits being 0.10 % (8.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43110718 BTC (224,954.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 794,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.27 % (117,592.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,978.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01064288 BTC (8,456.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.43 CZK over 2175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010409 BTC for 82.71 CZK @ 794,575 CZK\nFees are 0.29048876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (119.18624999838446118764935656 CZK)\nThe limits being 0.10 % (8.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43110718 BTC (224,954.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 794,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.27 % (117,592.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,978.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01064288 BTC (8,456.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.43 CZK over 2175 transactions" + } + ] + }, + { + "id": 3835, + "type": "message", + "date": "2023-10-27T02:00:07", + "date_unixtime": "1698364807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010350 BTC for 82.71 CZK @ 799,121 CZK\nFees are 0.29049477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (103.88572999718376984900673730 CZK)\nThe limits being 0.10 % (8.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43121068 BTC (225,037.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.13 % (119,551.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,895.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01074638 BTC (8,587.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.42 CZK over 2176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010350 BTC for 82.71 CZK @ 799,121 CZK\nFees are 0.29049477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (103.88572999718376984900673730 CZK)\nThe limits being 0.10 % (8.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43121068 BTC (225,037.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.13 % (119,551.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,895.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01074638 BTC (8,587.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.42 CZK over 2176 transactions" + } + ] + }, + { + "id": 3836, + "type": "message", + "date": "2023-10-27T06:00:06", + "date_unixtime": "1698379206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010365 BTC for 82.71 CZK @ 797,976 CZK\nFees are 0.29049894 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (103.73687999575052199116887325 CZK)\nThe limits being 0.10 % (8.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43131433 BTC (225,120.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 521,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 797,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.89 % (119,057.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,812.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01085003 BTC (8,658.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.41 CZK over 2177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010365 BTC for 82.71 CZK @ 797,976 CZK\nFees are 0.29049894 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (103.73687999575052199116887325 CZK)\nThe limits being 0.10 % (8.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43131433 BTC (225,120.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 521,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 797,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.89 % (119,057.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,812.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01085003 BTC (8,658.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.41 CZK over 2177 transactions" + } + ] + }, + { + "id": 3837, + "type": "message", + "date": "2023-10-27T10:00:06", + "date_unixtime": "1698393606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010417 BTC for 82.71 CZK @ 793,966 CZK\nFees are 0.29048920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (87.33625999603289226882258452 CZK)\nThe limits being 0.10 % (8.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43141850 BTC (225,203.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 793,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.10 % (117,327.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,729.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01095420 BTC (8,697.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.40 CZK over 2178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010417 BTC for 82.71 CZK @ 793,966 CZK\nFees are 0.29048920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (87.33625999603289226882258452 CZK)\nThe limits being 0.10 % (8.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43141850 BTC (225,203.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 793,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.10 % (117,327.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,729.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01095420 BTC (8,697.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.40 CZK over 2178 transactions" + } + ] + }, + { + "id": 3838, + "type": "message", + "date": "2023-10-27T14:00:06", + "date_unixtime": "1698408006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010370 BTC for 82.70 CZK @ 797,526 CZK\nFees are 0.29047518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (31.901039999346549372278990748 CZK)\nThe limits being 0.10 % (8.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43152220 BTC (225,286.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 797,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.76 % (118,863.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,646.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01105790 BTC (8,818.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.39 CZK over 2179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010370 BTC for 82.70 CZK @ 797,526 CZK\nFees are 0.29047518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (31.901039999346549372278990748 CZK)\nThe limits being 0.10 % (8.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43152220 BTC (225,286.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 797,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.76 % (118,863.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,646.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01105790 BTC (8,818.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.39 CZK over 2179 transactions" + } + ] + }, + { + "id": 3839, + "type": "message", + "date": "2023-10-27T18:00:06", + "date_unixtime": "1698422406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010431 BTC for 82.70 CZK @ 792,866 CZK\nFees are 0.29047661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (31.714639998620493119255647128 CZK)\nThe limits being 0.10 % (8.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43162651 BTC (225,369.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 792,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.85 % (116,852.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,563.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01116221 BTC (8,850.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.38 CZK over 2180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010431 BTC for 82.70 CZK @ 792,866 CZK\nFees are 0.29047661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (31.714639998620493119255647128 CZK)\nThe limits being 0.10 % (8.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43162651 BTC (225,369.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 792,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.85 % (116,852.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,563.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01116221 BTC (8,850.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.38 CZK over 2180 transactions" + } + ] + }, + { + "id": 3840, + "type": "message", + "date": "2023-10-27T22:00:05", + "date_unixtime": "1698436805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010491 BTC for 82.71 CZK @ 788,380 CZK\nFees are 0.29049449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (94.60559999965804556799272321 CZK)\nThe limits being 0.10 % (8.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43173142 BTC (225,452.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 788,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.97 % (114,915.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,480.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01126712 BTC (8,882.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.37 CZK over 2181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010491 BTC for 82.71 CZK @ 788,380 CZK\nFees are 0.29049449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (94.60559999965804556799272321 CZK)\nThe limits being 0.10 % (8.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43173142 BTC (225,452.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 788,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.97 % (114,915.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,480.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01126712 BTC (8,882.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.37 CZK over 2181 transactions" + } + ] + }, + { + "id": 3841, + "type": "message", + "date": "2023-10-28T02:00:06", + "date_unixtime": "1698451206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010451 BTC for 82.71 CZK @ 791,378 CZK\nFees are 0.29048736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (63.310239998680343608393491402 CZK)\nThe limits being 0.10 % (9.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43183593 BTC (225,535.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 791,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.53 % (116,209.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,397.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01137163 BTC (8,999.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.36 CZK over 2182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010451 BTC for 82.71 CZK @ 791,378 CZK\nFees are 0.29048736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (63.310239998680343608393491402 CZK)\nThe limits being 0.10 % (9.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43183593 BTC (225,535.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 791,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.53 % (116,209.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,397.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01137163 BTC (8,999.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.36 CZK over 2182 transactions" + } + ] + }, + { + "id": 3842, + "type": "message", + "date": "2023-10-28T06:00:05", + "date_unixtime": "1698465605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010387 BTC for 82.71 CZK @ 796,264 CZK\nFees are 0.29049097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (39.813199997179410908455622415 CZK)\nThe limits being 0.10 % (9.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43193980 BTC (225,618.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 796,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.44 % (118,319.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,314.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01147550 BTC (9,137.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.35 CZK over 2183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010387 BTC for 82.71 CZK @ 796,264 CZK\nFees are 0.29049097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (39.813199997179410908455622415 CZK)\nThe limits being 0.10 % (9.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43193980 BTC (225,618.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 796,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.44 % (118,319.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,314.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01147550 BTC (9,137.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.35 CZK over 2183 transactions" + } + ] + }, + { + "id": 3843, + "type": "message", + "date": "2023-10-28T10:00:06", + "date_unixtime": "1698480006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010375 BTC for 82.71 CZK @ 797,177 CZK\nFees are 0.29048806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (31.887079996878395495284576272 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43204355 BTC (225,701.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 797,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.60 % (118,713.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,231.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01157925 BTC (9,230.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.34 CZK over 2184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010375 BTC for 82.71 CZK @ 797,177 CZK\nFees are 0.29048806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (31.887079996878395495284576272 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43204355 BTC (225,701.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 797,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.60 % (118,713.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,231.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01157925 BTC (9,230.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.34 CZK over 2184 transactions" + } + ] + }, + { + "id": 3844, + "type": "message", + "date": "2023-10-28T14:00:06", + "date_unixtime": "1698494406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010333 BTC for 82.71 CZK @ 800,408 CZK\nFees are 0.29048471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (32.016319997978622291253814012 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43214688 BTC (225,784.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.20 % (120,108.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,148.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01168258 BTC (9,350.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.33 CZK over 2185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010333 BTC for 82.71 CZK @ 800,408 CZK\nFees are 0.29048471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (32.016319997978622291253814012 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43214688 BTC (225,784.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.20 % (120,108.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,148.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01168258 BTC (9,350.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.33 CZK over 2185 transactions" + } + ] + }, + { + "id": 3845, + "type": "message", + "date": "2023-10-28T18:00:05", + "date_unixtime": "1698508805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010358 BTC for 82.71 CZK @ 798,469 CZK\nFees are 0.29048211 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (23.954069998103759837287008504 CZK)\nThe limits being 0.10 % (9.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43225046 BTC (225,867.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.81 % (119,270.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,065.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01178616 BTC (9,410.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.32 CZK over 2186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010358 BTC for 82.71 CZK @ 798,469 CZK\nFees are 0.29048211 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (23.954069998103759837287008504 CZK)\nThe limits being 0.10 % (9.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43225046 BTC (225,867.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.81 % (119,270.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,065.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01178616 BTC (9,410.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.32 CZK over 2186 transactions" + } + ] + }, + { + "id": 3846, + "type": "message", + "date": "2023-10-28T22:00:06", + "date_unixtime": "1698523206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010356 BTC for 82.71 CZK @ 798,640 CZK\nFees are 0.29048822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (39.931999997883037025874868625 CZK)\nThe limits being 0.10 % (9.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43235402 BTC (225,950.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.82 % (119,344.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,982.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01188972 BTC (9,495.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.32 CZK over 2187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010356 BTC for 82.71 CZK @ 798,640 CZK\nFees are 0.29048822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (39.931999997883037025874868625 CZK)\nThe limits being 0.10 % (9.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43235402 BTC (225,950.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.82 % (119,344.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,982.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01188972 BTC (9,495.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.32 CZK over 2187 transactions" + } + ] + }, + { + "id": 3847, + "type": "message", + "date": "2023-10-29T02:00:06", + "date_unixtime": "1698537606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010377 BTC for 82.70 CZK @ 796,998 CZK\nFees are 0.29047882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (23.909939997519522953271528834 CZK)\nThe limits being 0.10 % (9.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43245779 BTC (226,033.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 796,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.49 % (118,634.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,899.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01199349 BTC (9,558.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.31 CZK over 2188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010377 BTC for 82.70 CZK @ 796,998 CZK\nFees are 0.29047882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (23.909939997519522953271528834 CZK)\nThe limits being 0.10 % (9.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43245779 BTC (226,033.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 796,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.49 % (118,634.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,899.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01199349 BTC (9,558.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.31 CZK over 2188 transactions" + } + ] + }, + { + "id": 3848, + "type": "message", + "date": "2023-10-29T05:00:07", + "date_unixtime": "1698552007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010406 BTC for 82.70 CZK @ 794,776 CZK\nFees are 0.29047850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (39.738799996667439475960603385 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43256185 BTC (226,116.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 794,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.04 % (117,672.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,816.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01209755 BTC (9,614.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.30 CZK over 2189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010406 BTC for 82.70 CZK @ 794,776 CZK\nFees are 0.29047850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (39.738799996667439475960603385 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43256185 BTC (226,116.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 794,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.04 % (117,672.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,816.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01209755 BTC (9,614.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.30 CZK over 2189 transactions" + } + ] + }, + { + "id": 3849, + "type": "message", + "date": "2023-10-29T09:00:05", + "date_unixtime": "1698566405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010377 BTC for 82.70 CZK @ 796,995 CZK\nFees are 0.29047773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (39.849749995666607559673934905 CZK)\nThe limits being 0.10 % (9.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43266562 BTC (226,199.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 796,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.45 % (118,632.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,733.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01220132 BTC (9,724.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.29 CZK over 2190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010377 BTC for 82.70 CZK @ 796,995 CZK\nFees are 0.29047773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (39.849749995666607559673934905 CZK)\nThe limits being 0.10 % (9.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43266562 BTC (226,199.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 796,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.45 % (118,632.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,733.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01220132 BTC (9,724.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.29 CZK over 2190 transactions" + } + ] + }, + { + "id": 3850, + "type": "message", + "date": "2023-10-29T13:00:07", + "date_unixtime": "1698580807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010344 BTC for 82.71 CZK @ 799,574 CZK\nFees are 0.29049094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (39.978699999537581342332000410 CZK)\nThe limits being 0.10 % (9.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43276906 BTC (226,282.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.92 % (119,748.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,650.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01230476 BTC (9,838.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.28 CZK over 2191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010344 BTC for 82.71 CZK @ 799,574 CZK\nFees are 0.29049094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (39.978699999537581342332000410 CZK)\nThe limits being 0.10 % (9.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43276906 BTC (226,282.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.92 % (119,748.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,650.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01230476 BTC (9,838.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.28 CZK over 2191 transactions" + } + ] + }, + { + "id": 3851, + "type": "message", + "date": "2023-10-29T17:00:08", + "date_unixtime": "1698595208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010274 BTC for 82.70 CZK @ 804,977 CZK\nFees are 0.29047480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (40.248849995426751939556694645 CZK)\nThe limits being 0.10 % (9.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43287180 BTC (226,365.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 522,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 804,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.93 % (122,086.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,567.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01240750 BTC (9,987.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.27 CZK over 2192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010274 BTC for 82.70 CZK @ 804,977 CZK\nFees are 0.29047480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (40.248849995426751939556694645 CZK)\nThe limits being 0.10 % (9.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43287180 BTC (226,365.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 522,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 804,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.93 % (122,086.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,567.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01240750 BTC (9,987.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.27 CZK over 2192 transactions" + } + ] + }, + { + "id": 3852, + "type": "message", + "date": "2023-10-29T21:00:07", + "date_unixtime": "1698609607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010257 BTC for 82.71 CZK @ 806,352 CZK\nFees are 0.29048950 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (24.190559998181270496228978042 CZK)\nThe limits being 0.10 % (10.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43297437 BTC (226,448.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 806,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.18 % (122,680.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,484.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01251007 BTC (10,087.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.26 CZK over 2193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010257 BTC for 82.71 CZK @ 806,352 CZK\nFees are 0.29048950 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (24.190559998181270496228978042 CZK)\nThe limits being 0.10 % (10.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43297437 BTC (226,448.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 806,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.18 % (122,680.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,484.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01251007 BTC (10,087.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.26 CZK over 2193 transactions" + } + ] + }, + { + "id": 3853, + "type": "message", + "date": "2023-10-30T01:00:07", + "date_unixtime": "1698624007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010244 BTC for 82.71 CZK @ 807,399 CZK\nFees are 0.29049803 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (24.221969997822926278914077964 CZK)\nThe limits being 0.10 % (10.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43307681 BTC (226,531.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 807,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.36 % (123,133.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,401.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01261251 BTC (10,183.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.25 CZK over 2194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010244 BTC for 82.71 CZK @ 807,399 CZK\nFees are 0.29049803 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (24.221969997822926278914077964 CZK)\nThe limits being 0.10 % (10.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43307681 BTC (226,531.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 807,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.36 % (123,133.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,401.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01261251 BTC (10,183.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.25 CZK over 2194 transactions" + } + ] + }, + { + "id": 3854, + "type": "message", + "date": "2023-10-30T05:00:06", + "date_unixtime": "1698638406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010323 BTC for 82.71 CZK @ 801,182 CZK\nFees are 0.29048421 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (24.035459999273105015908429767 CZK)\nThe limits being 0.10 % (10.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43318004 BTC (226,614.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.15 % (120,441.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,318.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01271574 BTC (10,187.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.24 CZK over 2195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010323 BTC for 82.71 CZK @ 801,182 CZK\nFees are 0.29048421 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (24.035459999273105015908429767 CZK)\nThe limits being 0.10 % (10.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43318004 BTC (226,614.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.15 % (120,441.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,318.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01271574 BTC (10,187.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.24 CZK over 2195 transactions" + } + ] + }, + { + "id": 3855, + "type": "message", + "date": "2023-10-30T09:00:07", + "date_unixtime": "1698652807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010366 BTC for 82.71 CZK @ 797,896 CZK\nFees are 0.29049784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (31.915839997016039078352142188 CZK)\nThe limits being 0.10 % (10.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43328370 BTC (226,697.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 797,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.50 % (119,017.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,235.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01281940 BTC (10,228.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.23 CZK over 2196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010366 BTC for 82.71 CZK @ 797,896 CZK\nFees are 0.29049784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (31.915839997016039078352142188 CZK)\nThe limits being 0.10 % (10.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43328370 BTC (226,697.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 797,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.50 % (119,017.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,235.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01281940 BTC (10,228.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.23 CZK over 2196 transactions" + } + ] + }, + { + "id": 3856, + "type": "message", + "date": "2023-10-30T13:00:05", + "date_unixtime": "1698667205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010268 BTC for 82.70 CZK @ 805,459 CZK\nFees are 0.29047899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (40.272949997369937590851187190 CZK)\nThe limits being 0.10 % (10.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43338638 BTC (226,780.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 805,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.93 % (122,294.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,152.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01292208 BTC (10,408.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.22 CZK over 2197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010268 BTC for 82.70 CZK @ 805,459 CZK\nFees are 0.29047899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (40.272949997369937590851187190 CZK)\nThe limits being 0.10 % (10.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43338638 BTC (226,780.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 805,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.93 % (122,294.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,152.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01292208 BTC (10,408.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.22 CZK over 2197 transactions" + } + ] + }, + { + "id": 3857, + "type": "message", + "date": "2023-10-30T17:00:07", + "date_unixtime": "1698681607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010278 BTC for 82.70 CZK @ 804,674 CZK\nFees are 0.29047851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (32.186959996889656391382835692 CZK)\nThe limits being 0.10 % (10.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43348916 BTC (226,863.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 804,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.76 % (121,953.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,069.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01302486 BTC (10,480.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.21 CZK over 2198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010278 BTC for 82.70 CZK @ 804,674 CZK\nFees are 0.29047851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (32.186959996889656391382835692 CZK)\nThe limits being 0.10 % (10.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43348916 BTC (226,863.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 804,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.76 % (121,953.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,069.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01302486 BTC (10,480.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.21 CZK over 2198 transactions" + } + ] + }, + { + "id": 3858, + "type": "message", + "date": "2023-10-30T21:00:06", + "date_unixtime": "1698696006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010343 BTC for 82.71 CZK @ 799,650 CZK\nFees are 0.29049047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (63.9719999936411287169951096 CZK)\nThe limits being 0.10 % (10.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43359259 BTC (226,946.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.78 % (119,775.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,986.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01312829 BTC (10,498.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.20 CZK over 2199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010343 BTC for 82.71 CZK @ 799,650 CZK\nFees are 0.29049047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (63.9719999936411287169951096 CZK)\nThe limits being 0.10 % (10.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43359259 BTC (226,946.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.78 % (119,775.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,986.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01312829 BTC (10,498.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.20 CZK over 2199 transactions" + } + ] + }, + { + "id": 3859, + "type": "message", + "date": "2023-10-31T01:00:06", + "date_unixtime": "1698710406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010341 BTC for 82.71 CZK @ 799,792 CZK\nFees are 0.29048587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (47.987519995652003598082660788 CZK)\nThe limits being 0.10 % (10.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43369600 BTC (227,029.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.78 % (119,836.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,903.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01323170 BTC (10,582.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.20 CZK over 2200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010341 BTC for 82.71 CZK @ 799,792 CZK\nFees are 0.29048587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (47.987519995652003598082660788 CZK)\nThe limits being 0.10 % (10.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43369600 BTC (227,029.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.78 % (119,836.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,903.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01323170 BTC (10,582.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.20 CZK over 2200 transactions" + } + ] + }, + { + "id": 3860, + "type": "message", + "date": "2023-10-31T09:00:07", + "date_unixtime": "1698739207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010456 BTC for 82.71 CZK @ 790,995 CZK\nFees are 0.29048568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (47.459699999885633641093205153 CZK)\nThe limits being 0.10 % (10.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43390461 BTC (227,195.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 790,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.07 % (116,020.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,737.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01344031 BTC (10,631.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.18 CZK over 2202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010456 BTC for 82.71 CZK @ 790,995 CZK\nFees are 0.29048568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (47.459699999885633641093205153 CZK)\nThe limits being 0.10 % (10.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43390461 BTC (227,195.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 790,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.07 % (116,020.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,737.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01344031 BTC (10,631.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.18 CZK over 2202 transactions" + } + ] + }, + { + "id": 3861, + "type": "message", + "date": "2023-10-31T13:00:08", + "date_unixtime": "1698753608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010395 BTC for 82.71 CZK @ 795,623 CZK\nFees are 0.29048067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.824919996941920210480250340 CZK)\nThe limits being 0.10 % (10.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43400856 BTC (227,278.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 795,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.93 % (118,028.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,654.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01354426 BTC (10,776.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.17 CZK over 2203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010395 BTC for 82.71 CZK @ 795,623 CZK\nFees are 0.29048067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (31.824919996941920210480250340 CZK)\nThe limits being 0.10 % (10.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43400856 BTC (227,278.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 795,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.93 % (118,028.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,654.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01354426 BTC (10,776.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.17 CZK over 2203 transactions" + } + ] + }, + { + "id": 3862, + "type": "message", + "date": "2023-10-31T17:00:06", + "date_unixtime": "1698768006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010395 BTC for 82.71 CZK @ 795,623 CZK\nFees are 0.29048067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (47.737379995412880315720375510 CZK)\nThe limits being 0.10 % (10.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43411251 BTC (227,361.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 795,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.91 % (118,028.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,571.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01364821 BTC (10,858.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.16 CZK over 2204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010395 BTC for 82.71 CZK @ 795,623 CZK\nFees are 0.29048067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (47.737379995412880315720375510 CZK)\nThe limits being 0.10 % (10.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43411251 BTC (227,361.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 795,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.91 % (118,028.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,571.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01364821 BTC (10,858.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.16 CZK over 2204 transactions" + } + ] + }, + { + "id": 3863, + "type": "message", + "date": "2023-10-31T21:00:06", + "date_unixtime": "1698782406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010318 BTC for 82.71 CZK @ 801,601 CZK\nFees are 0.29049536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (64.128079992945798447438230584 CZK)\nThe limits being 0.10 % (11.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43421569 BTC (227,444.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.03 % (120,622.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,488.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01375139 BTC (11,023.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.15 CZK over 2205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010318 BTC for 82.71 CZK @ 801,601 CZK\nFees are 0.29049536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (64.128079992945798447438230584 CZK)\nThe limits being 0.10 % (11.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43421569 BTC (227,444.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.03 % (120,622.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,488.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01375139 BTC (11,023.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.15 CZK over 2205 transactions" + } + ] + }, + { + "id": 3864, + "type": "message", + "date": "2023-11-01T01:00:07", + "date_unixtime": "1698796807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010264 BTC for 82.71 CZK @ 805,821 CZK\nFees are 0.29049633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (48.349259996481527436513123786 CZK)\nThe limits being 0.10 % (11.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43431833 BTC (227,527.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 805,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.82 % (122,455.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,405.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01385403 BTC (11,163.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.14 CZK over 2206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010264 BTC for 82.71 CZK @ 805,821 CZK\nFees are 0.29049633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (48.349259996481527436513123786 CZK)\nThe limits being 0.10 % (11.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43431833 BTC (227,527.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 805,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.82 % (122,455.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,405.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01385403 BTC (11,163.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.14 CZK over 2206 transactions" + } + ] + }, + { + "id": 3865, + "type": "message", + "date": "2023-11-01T05:00:07", + "date_unixtime": "1698811207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010323 BTC for 82.70 CZK @ 801,150 CZK\nFees are 0.29047261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (72.103499999348400910674887247 CZK)\nThe limits being 0.10 % (11.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43442156 BTC (227,610.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 523,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.91 % (120,426.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,322.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01395726 BTC (11,181.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.13 CZK over 2207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010323 BTC for 82.70 CZK @ 801,150 CZK\nFees are 0.29047261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (72.103499999348400910674887247 CZK)\nThe limits being 0.10 % (11.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43442156 BTC (227,610.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 523,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.91 % (120,426.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,322.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01395726 BTC (11,181.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.13 CZK over 2207 transactions" + } + ] + }, + { + "id": 3866, + "type": "message", + "date": "2023-11-01T09:00:06", + "date_unixtime": "1698825606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010301 BTC for 82.71 CZK @ 802,895 CZK\nFees are 0.29048490 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (48.173699994877650580022634114 CZK)\nThe limits being 0.10 % (11.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43452457 BTC (227,693.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 802,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.22 % (121,183.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,239.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01406027 BTC (11,288.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.12 CZK over 2208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010301 BTC for 82.71 CZK @ 802,895 CZK\nFees are 0.29048490 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (48.173699994877650580022634114 CZK)\nThe limits being 0.10 % (11.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43452457 BTC (227,693.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 802,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.22 % (121,183.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,239.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01406027 BTC (11,288.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.12 CZK over 2208 transactions" + } + ] + }, + { + "id": 3867, + "type": "message", + "date": "2023-11-01T13:00:06", + "date_unixtime": "1698840006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010261 BTC for 82.71 CZK @ 806,050 CZK\nFees are 0.29049395 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (48.362999996066782536339651684 CZK)\nThe limits being 0.10 % (11.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43462718 BTC (227,776.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 806,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.80 % (122,554.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,156.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01416288 BTC (11,415.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.11 CZK over 2209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010261 BTC for 82.71 CZK @ 806,050 CZK\nFees are 0.29049395 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (48.362999996066782536339651684 CZK)\nThe limits being 0.10 % (11.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43462718 BTC (227,776.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 806,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.80 % (122,554.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,156.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01416288 BTC (11,415.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.11 CZK over 2209 transactions" + } + ] + }, + { + "id": 3868, + "type": "message", + "date": "2023-11-01T17:00:07", + "date_unixtime": "1698854407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010294 BTC for 82.71 CZK @ 803,441 CZK\nFees are 0.29048491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (24.103229997708622115194449117 CZK)\nThe limits being 0.10 % (11.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43473012 BTC (227,859.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.29 % (121,420.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,073.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01426582 BTC (11,461.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.10 CZK over 2210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010294 BTC for 82.71 CZK @ 803,441 CZK\nFees are 0.29048491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (24.103229997708622115194449117 CZK)\nThe limits being 0.10 % (11.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43473012 BTC (227,859.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.29 % (121,420.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,073.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01426582 BTC (11,461.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.10 CZK over 2210 transactions" + } + ] + }, + { + "id": 3869, + "type": "message", + "date": "2023-11-01T21:00:06", + "date_unixtime": "1698868806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010247 BTC for 82.70 CZK @ 807,114 CZK\nFees are 0.29048054 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (80.71139999948457941850736242 CZK)\nThe limits being 0.10 % (11.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43483259 BTC (227,942.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 807,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.97 % (123,016.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,990.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01436829 BTC (11,596.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.09 CZK over 2211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010247 BTC for 82.70 CZK @ 807,114 CZK\nFees are 0.29048054 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (80.71139999948457941850736242 CZK)\nThe limits being 0.10 % (11.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43483259 BTC (227,942.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 807,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.97 % (123,016.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,990.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01436829 BTC (11,596.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.09 CZK over 2211 transactions" + } + ] + }, + { + "id": 3870, + "type": "message", + "date": "2023-11-02T01:00:07", + "date_unixtime": "1698883207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010010 BTC for 82.71 CZK @ 826,238 CZK\nFees are 0.29048564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (74.361419997043315428965653182 CZK)\nThe limits being 0.10 % (11.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43493269 BTC (228,025.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 826,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.60 % (131,332.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,907.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01446839 BTC (11,954.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.09 CZK over 2212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010010 BTC for 82.71 CZK @ 826,238 CZK\nFees are 0.29048564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (74.361419997043315428965653182 CZK)\nThe limits being 0.10 % (11.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43493269 BTC (228,025.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 826,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.60 % (131,332.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,907.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01446839 BTC (11,954.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.09 CZK over 2212 transactions" + } + ] + }, + { + "id": 3871, + "type": "message", + "date": "2023-11-02T05:00:07", + "date_unixtime": "1698897607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009977 BTC for 82.71 CZK @ 828,999 CZK\nFees are 0.29049549 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (66.319919995361528825716187592 CZK)\nThe limits being 0.10 % (12.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43503246 BTC (228,108.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.10 % (132,532.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,824.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01456816 BTC (12,076.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.08 CZK over 2213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009977 BTC for 82.71 CZK @ 828,999 CZK\nFees are 0.29049549 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (66.319919995361528825716187592 CZK)\nThe limits being 0.10 % (12.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43503246 BTC (228,108.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.10 % (132,532.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,824.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01456816 BTC (12,076.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.08 CZK over 2213 transactions" + } + ] + }, + { + "id": 3872, + "type": "message", + "date": "2023-11-02T09:00:07", + "date_unixtime": "1698912007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010080 BTC for 82.71 CZK @ 820,531 CZK\nFees are 0.29049636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (65.642440988287027151003234704 CZK)\nThe limits being 0.10 % (12.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43513326 BTC (228,191.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.46 % (128,848.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,741.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01466896 BTC (12,036.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.07 CZK over 2214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010080 BTC for 82.71 CZK @ 820,531 CZK\nFees are 0.29049636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (65.642440988287027151003234704 CZK)\nThe limits being 0.10 % (12.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43513326 BTC (228,191.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.46 % (128,848.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,741.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01466896 BTC (12,036.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.07 CZK over 2214 transactions" + } + ] + }, + { + "id": 3873, + "type": "message", + "date": "2023-11-02T13:00:06", + "date_unixtime": "1698926406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010071 BTC for 82.71 CZK @ 821,230 CZK\nFees are 0.29048441 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (49.27379999611131667700433054 CZK)\nThe limits being 0.10 % (12.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43523397 BTC (228,274.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.58 % (129,152.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,658.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01476967 BTC (12,129.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.06 CZK over 2215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010071 BTC for 82.71 CZK @ 821,230 CZK\nFees are 0.29048441 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (49.27379999611131667700433054 CZK)\nThe limits being 0.10 % (12.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43523397 BTC (228,274.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.58 % (129,152.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,658.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01476967 BTC (12,129.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.06 CZK over 2215 transactions" + } + ] + }, + { + "id": 3874, + "type": "message", + "date": "2023-11-02T17:00:07", + "date_unixtime": "1698940807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010335 BTC for 82.71 CZK @ 800,280 CZK\nFees are 0.29049447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (64.022399997685893277736919328 CZK)\nThe limits being 0.10 % (11.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43533732 BTC (228,357.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.56 % (120,033.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,575.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01487302 BTC (11,902.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.05 CZK over 2216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010335 BTC for 82.71 CZK @ 800,280 CZK\nFees are 0.29049447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (64.022399997685893277736919328 CZK)\nThe limits being 0.10 % (11.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43533732 BTC (228,357.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.56 % (120,033.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,575.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01487302 BTC (11,902.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.05 CZK over 2216 transactions" + } + ] + }, + { + "id": 3875, + "type": "message", + "date": "2023-11-02T21:00:07", + "date_unixtime": "1698955207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010247 BTC for 82.71 CZK @ 807,164 CZK\nFees are 0.29049853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (64.573119997837178541057309472 CZK)\nThe limits being 0.10 % (12.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43543979 BTC (228,440.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 807,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.86 % (123,030.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,492.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01497549 BTC (12,087.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.04 CZK over 2217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010247 BTC for 82.71 CZK @ 807,164 CZK\nFees are 0.29049853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (64.573119997837178541057309472 CZK)\nThe limits being 0.10 % (12.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43543979 BTC (228,440.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 807,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.86 % (123,030.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,492.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01497549 BTC (12,087.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.04 CZK over 2217 transactions" + } + ] + }, + { + "id": 3876, + "type": "message", + "date": "2023-11-03T01:00:07", + "date_unixtime": "1698969607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010253 BTC for 82.70 CZK @ 806,637 CZK\nFees are 0.29047885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (64.530959999506263336296239272 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43554232 BTC (228,523.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 806,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.74 % (122,800.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,409.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01507802 BTC (12,162.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.03 CZK over 2218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010253 BTC for 82.70 CZK @ 806,637 CZK\nFees are 0.29047885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (64.530959999506263336296239272 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43554232 BTC (228,523.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 806,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.74 % (122,800.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,409.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01507802 BTC (12,162.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.03 CZK over 2218 transactions" + } + ] + }, + { + "id": 3877, + "type": "message", + "date": "2023-11-03T05:00:08", + "date_unixtime": "1698984008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010335 BTC for 82.70 CZK @ 800,218 CZK\nFees are 0.29047196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (32.008719997666609055051393660 CZK)\nThe limits being 0.10 % (12.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43564567 BTC (228,606.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.49 % (120,004.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,326.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01518137 BTC (12,148.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.02 CZK over 2219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010335 BTC for 82.70 CZK @ 800,218 CZK\nFees are 0.29047196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (32.008719997666609055051393660 CZK)\nThe limits being 0.10 % (12.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43564567 BTC (228,606.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.49 % (120,004.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,326.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01518137 BTC (12,148.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.02 CZK over 2219 transactions" + } + ] + }, + { + "id": 3878, + "type": "message", + "date": "2023-11-03T09:00:08", + "date_unixtime": "1698998408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010397 BTC for 82.70 CZK @ 795,447 CZK\nFees are 0.29047229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (47.726819996512159351474417782 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43574964 BTC (228,689.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 795,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.57 % (117,926.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,243.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01528534 BTC (12,158.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.01 CZK over 2220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010397 BTC for 82.70 CZK @ 795,447 CZK\nFees are 0.29047229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (47.726819996512159351474417782 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43574964 BTC (228,689.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 795,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.57 % (117,926.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,243.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01528534 BTC (12,158.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.01 CZK over 2220 transactions" + } + ] + }, + { + "id": 3879, + "type": "message", + "date": "2023-11-03T13:00:07", + "date_unixtime": "1699012807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010491 BTC for 82.70 CZK @ 788,337 CZK\nFees are 0.29047865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (63.066959998977936197667139369 CZK)\nThe limits being 0.10 % (12.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43585455 BTC (228,772.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 788,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.19 % (114,827.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,160.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01539025 BTC (12,132.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.00 CZK over 2221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010491 BTC for 82.70 CZK @ 788,337 CZK\nFees are 0.29047865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (63.066959998977936197667139369 CZK)\nThe limits being 0.10 % (12.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43585455 BTC (228,772.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 788,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.19 % (114,827.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,160.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01539025 BTC (12,132.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.00 CZK over 2221 transactions" + } + ] + }, + { + "id": 3880, + "type": "message", + "date": "2023-11-03T17:00:07", + "date_unixtime": "1699027207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010426 BTC for 82.71 CZK @ 793,287 CZK\nFees are 0.29049153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (111.06017998772949960004744567 CZK)\nThe limits being 0.10 % (12.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43595881 BTC (228,855.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 524,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 793,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.12 % (116,984.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,077.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01549451 BTC (12,291.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 103.00 CZK over 2222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010426 BTC for 82.71 CZK @ 793,287 CZK\nFees are 0.29049153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (111.06017998772949960004744567 CZK)\nThe limits being 0.10 % (12.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43595881 BTC (228,855.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 524,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 793,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.12 % (116,984.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,077.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01549451 BTC (12,291.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 103.00 CZK over 2222 transactions" + } + ] + }, + { + "id": 3881, + "type": "message", + "date": "2023-11-03T21:00:08", + "date_unixtime": "1699041608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010490 BTC for 82.70 CZK @ 788,396 CZK\nFees are 0.29047270 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (149.79523999747309583284053952 CZK)\nThe limits being 0.10 % (12.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43606371 BTC (228,938.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 788,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.17 % (114,852.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,994.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01559941 BTC (12,298.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.99 CZK over 2223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010490 BTC for 82.70 CZK @ 788,396 CZK\nFees are 0.29047270 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (149.79523999747309583284053952 CZK)\nThe limits being 0.10 % (12.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43606371 BTC (228,938.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 788,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.17 % (114,852.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,994.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01559941 BTC (12,298.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.99 CZK over 2223 transactions" + } + ] + }, + { + "id": 3882, + "type": "message", + "date": "2023-11-04T01:00:10", + "date_unixtime": "1699056010", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010456 BTC for 82.70 CZK @ 790,963 CZK\nFees are 0.29047393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.15 % (142.37333998373710376345377255 CZK)\nThe limits being 0.10 % (12.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43616827 BTC (229,021.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 790,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.64 % (115,971.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,911.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01570397 BTC (12,421.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.98 CZK over 2224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010456 BTC for 82.70 CZK @ 790,963 CZK\nFees are 0.29047393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.15 % (142.37333998373710376345377255 CZK)\nThe limits being 0.10 % (12.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43616827 BTC (229,021.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 790,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.64 % (115,971.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,911.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01570397 BTC (12,421.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.98 CZK over 2224 transactions" + } + ] + }, + { + "id": 3883, + "type": "message", + "date": "2023-11-04T05:00:08", + "date_unixtime": "1699070408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010440 BTC for 82.71 CZK @ 792,235 CZK\nFees are 0.29049586 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (134.67994998539594178994209920 CZK)\nThe limits being 0.10 % (12.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43627267 BTC (229,104.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 792,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.86 % (116,525.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,828.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01580837 BTC (12,523.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.97 CZK over 2225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010440 BTC for 82.71 CZK @ 792,235 CZK\nFees are 0.29049586 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (134.67994998539594178994209920 CZK)\nThe limits being 0.10 % (12.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43627267 BTC (229,104.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 792,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.86 % (116,525.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,828.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01580837 BTC (12,523.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.97 CZK over 2225 transactions" + } + ] + }, + { + "id": 3884, + "type": "message", + "date": "2023-11-04T09:00:05", + "date_unixtime": "1699084805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010424 BTC for 82.71 CZK @ 793,434 CZK\nFees are 0.29048963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.19 % (150.75245999898283865259007136 CZK)\nThe limits being 0.10 % (12.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43637691 BTC (229,187.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 793,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.07 % (117,048.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,745.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01591261 BTC (12,625.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.96 CZK over 2226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010424 BTC for 82.71 CZK @ 793,434 CZK\nFees are 0.29048963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.19 % (150.75245999898283865259007136 CZK)\nThe limits being 0.10 % (12.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43637691 BTC (229,187.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 793,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.07 % (117,048.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,745.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01591261 BTC (12,625.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.96 CZK over 2226 transactions" + } + ] + }, + { + "id": 3885, + "type": "message", + "date": "2023-11-04T13:00:07", + "date_unixtime": "1699099207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010431 BTC for 82.70 CZK @ 792,871 CZK\nFees are 0.29047844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.19 % (277.50484996978985018259120590 CZK)\nThe limits being 0.10 % (12.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43648122 BTC (229,270.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 792,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.95 % (116,802.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,662.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01601692 BTC (12,699.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.95 CZK over 2227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010431 BTC for 82.70 CZK @ 792,871 CZK\nFees are 0.29047844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.19 % (277.50484996978985018259120590 CZK)\nThe limits being 0.10 % (12.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43648122 BTC (229,270.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 792,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.95 % (116,802.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,662.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01601692 BTC (12,699.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.95 CZK over 2227 transactions" + } + ] + }, + { + "id": 3886, + "type": "message", + "date": "2023-11-04T17:00:07", + "date_unixtime": "1699113607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010440 BTC for 82.70 CZK @ 792,186 CZK\nFees are 0.29047789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (245.57765998698043438005295641 CZK)\nThe limits being 0.10 % (12.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43658562 BTC (229,353.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 792,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.80 % (116,503.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,579.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01612132 BTC (12,771.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.94 CZK over 2228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010440 BTC for 82.70 CZK @ 792,186 CZK\nFees are 0.29047789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (245.57765998698043438005295641 CZK)\nThe limits being 0.10 % (12.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43658562 BTC (229,353.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 792,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.80 % (116,503.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,579.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01612132 BTC (12,771.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.94 CZK over 2228 transactions" + } + ] + }, + { + "id": 3887, + "type": "message", + "date": "2023-11-04T21:00:06", + "date_unixtime": "1699128006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010426 BTC for 82.71 CZK @ 793,263 CZK\nFees are 0.29048274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (245.91152999605925586937183507 CZK)\nThe limits being 0.10 % (12.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43668988 BTC (229,436.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 793,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 50.98 % (116,973.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,496.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01622558 BTC (12,871.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.93 CZK over 2229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010426 BTC for 82.71 CZK @ 793,263 CZK\nFees are 0.29048274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (245.91152999605925586937183507 CZK)\nThe limits being 0.10 % (12.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43668988 BTC (229,436.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 793,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 50.98 % (116,973.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,496.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01622558 BTC (12,871.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.93 CZK over 2229 transactions" + } + ] + }, + { + "id": 3888, + "type": "message", + "date": "2023-11-05T01:00:07", + "date_unixtime": "1699142407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010327 BTC for 82.71 CZK @ 800,869 CZK\nFees are 0.29048324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.71 % (224.24331998458575966011088623 CZK)\nThe limits being 0.10 % (13.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43679315 BTC (229,519.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.41 % (120,294.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,413.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01632885 BTC (13,077.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.92 CZK over 2230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010327 BTC for 82.71 CZK @ 800,869 CZK\nFees are 0.29048324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.71 % (224.24331998458575966011088623 CZK)\nThe limits being 0.10 % (13.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43679315 BTC (229,519.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.41 % (120,294.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,413.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01632885 BTC (13,077.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.92 CZK over 2230 transactions" + } + ] + }, + { + "id": 3889, + "type": "message", + "date": "2023-11-05T05:00:07", + "date_unixtime": "1699156807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010287 BTC for 82.71 CZK @ 804,000 CZK\nFees are 0.29048935 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (168.84000 CZK)\nThe limits being 0.10 % (13.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43689602 BTC (229,602.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 804,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.99 % (121,661.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,330.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01643172 BTC (13,211.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.91 CZK over 2231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010287 BTC for 82.71 CZK @ 804,000 CZK\nFees are 0.29048935 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (168.84000 CZK)\nThe limits being 0.10 % (13.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43689602 BTC (229,602.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 804,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.99 % (121,661.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,330.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01643172 BTC (13,211.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.91 CZK over 2231 transactions" + } + ] + }, + { + "id": 3890, + "type": "message", + "date": "2023-11-05T09:00:08", + "date_unixtime": "1699171208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010303 BTC for 82.70 CZK @ 802,703 CZK\nFees are 0.29047182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.57 % (208.70277998663418209033596426 CZK)\nThe limits being 0.10 % (13.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43699905 BTC (229,685.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 802,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.72 % (121,094.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,247.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01653475 BTC (13,272.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.91 CZK over 2232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010303 BTC for 82.70 CZK @ 802,703 CZK\nFees are 0.29047182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.57 % (208.70277998663418209033596426 CZK)\nThe limits being 0.10 % (13.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43699905 BTC (229,685.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 802,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.72 % (121,094.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,247.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01653475 BTC (13,272.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.91 CZK over 2232 transactions" + } + ] + }, + { + "id": 3891, + "type": "message", + "date": "2023-11-05T13:00:08", + "date_unixtime": "1699185608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010326 BTC for 82.71 CZK @ 800,942 CZK\nFees are 0.29048159 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (208.24491997937491875472453039 CZK)\nThe limits being 0.10 % (13.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43710231 BTC (229,768.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.37 % (120,324.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,164.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01663801 BTC (13,326.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.90 CZK over 2233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010326 BTC for 82.71 CZK @ 800,942 CZK\nFees are 0.29048159 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (208.24491997937491875472453039 CZK)\nThe limits being 0.10 % (13.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43710231 BTC (229,768.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.37 % (120,324.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,164.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01663801 BTC (13,326.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.90 CZK over 2233 transactions" + } + ] + }, + { + "id": 3892, + "type": "message", + "date": "2023-11-05T17:00:08", + "date_unixtime": "1699200008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010389 BTC for 82.71 CZK @ 796,100 CZK\nFees are 0.29048706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.55 % (206.98599999625912252539156555 CZK)\nThe limits being 0.10 % (13.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43720620 BTC (229,851.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 796,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.43 % (118,208.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,081.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01674190 BTC (13,328.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.89 CZK over 2234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010389 BTC for 82.71 CZK @ 796,100 CZK\nFees are 0.29048706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.55 % (206.98599999625912252539156555 CZK)\nThe limits being 0.10 % (13.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43720620 BTC (229,851.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 796,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.43 % (118,208.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,081.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01674190 BTC (13,328.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.89 CZK over 2234 transactions" + } + ] + }, + { + "id": 3893, + "type": "message", + "date": "2023-11-05T21:00:08", + "date_unixtime": "1699214408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010354 BTC for 82.70 CZK @ 798,766 CZK\nFees are 0.29047794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.48 % (199.69149999821948272797189748 CZK)\nThe limits being 0.10 % (13.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43730974 BTC (229,934.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.92 % (119,373.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,998.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01684544 BTC (13,455.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.88 CZK over 2235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010354 BTC for 82.70 CZK @ 798,766 CZK\nFees are 0.29047794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.48 % (199.69149999821948272797189748 CZK)\nThe limits being 0.10 % (13.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43730974 BTC (229,934.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.92 % (119,373.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,998.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01684544 BTC (13,455.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.88 CZK over 2235 transactions" + } + ] + }, + { + "id": 3894, + "type": "message", + "date": "2023-11-06T01:00:07", + "date_unixtime": "1699228807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010346 BTC for 82.70 CZK @ 799,377 CZK\nFees are 0.29047552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.48 % (199.84424998682843182439655675 CZK)\nThe limits being 0.10 % (13.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43741320 BTC (230,017.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 799,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.01 % (119,640.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,915.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01694890 BTC (13,548.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.87 CZK over 2236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010346 BTC for 82.70 CZK @ 799,377 CZK\nFees are 0.29047552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.48 % (199.84424998682843182439655675 CZK)\nThe limits being 0.10 % (13.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43741320 BTC (230,017.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 799,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.01 % (119,640.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,915.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01694890 BTC (13,548.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.87 CZK over 2236 transactions" + } + ] + }, + { + "id": 3895, + "type": "message", + "date": "2023-11-06T05:00:07", + "date_unixtime": "1699243207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010359 BTC for 82.71 CZK @ 798,399 CZK\nFees are 0.29048468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (151.69580999372165564168618639 CZK)\nThe limits being 0.10 % (13.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43751679 BTC (230,100.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.81 % (119,212.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,832.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01705249 BTC (13,614.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.86 CZK over 2237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010359 BTC for 82.71 CZK @ 798,399 CZK\nFees are 0.29048468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (151.69580999372165564168618639 CZK)\nThe limits being 0.10 % (13.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43751679 BTC (230,100.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.81 % (119,212.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,832.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01705249 BTC (13,614.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.86 CZK over 2237 transactions" + } + ] + }, + { + "id": 3896, + "type": "message", + "date": "2023-11-06T09:00:07", + "date_unixtime": "1699257607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010383 BTC for 82.71 CZK @ 796,582 CZK\nFees are 0.29049507 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (207.11131999573293530430260919 CZK)\nThe limits being 0.10 % (13.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43762062 BTC (230,183.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 525,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 796,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.44 % (118,417.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,749.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01715632 BTC (13,666.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.85 CZK over 2238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010383 BTC for 82.71 CZK @ 796,582 CZK\nFees are 0.29049507 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (207.11131999573293530430260919 CZK)\nThe limits being 0.10 % (13.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43762062 BTC (230,183.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 525,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 796,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.44 % (118,417.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,749.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01715632 BTC (13,666.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.85 CZK over 2238 transactions" + } + ] + }, + { + "id": 3897, + "type": "message", + "date": "2023-11-06T13:00:07", + "date_unixtime": "1699272007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010325 BTC for 82.71 CZK @ 801,060 CZK\nFees are 0.29049625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (208.2755999811796725986890918 CZK)\nThe limits being 0.10 % (13.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43772387 BTC (230,266.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.28 % (120,376.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,666.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01725957 BTC (13,825.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.84 CZK over 2239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010325 BTC for 82.71 CZK @ 801,060 CZK\nFees are 0.29049625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (208.2755999811796725986890918 CZK)\nThe limits being 0.10 % (13.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43772387 BTC (230,266.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.28 % (120,376.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,666.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01725957 BTC (13,825.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.84 CZK over 2239 transactions" + } + ] + }, + { + "id": 3898, + "type": "message", + "date": "2023-11-06T17:00:07", + "date_unixtime": "1699286407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010322 BTC for 82.71 CZK @ 801,256 CZK\nFees are 0.29048290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.67 % (232.36423998566536208718043328 CZK)\nThe limits being 0.10 % (13.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43782709 BTC (230,349.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 801,256 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.30 % (120,461.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,583.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01736279 BTC (13,912.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.83 CZK over 2240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010322 BTC for 82.71 CZK @ 801,256 CZK\nFees are 0.29048290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.67 % (232.36423998566536208718043328 CZK)\nThe limits being 0.10 % (13.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43782709 BTC (230,349.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 801,256 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.30 % (120,461.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,583.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01736279 BTC (13,912.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.83 CZK over 2240 transactions" + } + ] + }, + { + "id": 3899, + "type": "message", + "date": "2023-11-06T21:00:06", + "date_unixtime": "1699300806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010296 BTC for 82.71 CZK @ 803,289 CZK\nFees are 0.29048638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.00 % (281.15114998631441082861112757 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43793005 BTC (230,432.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.66 % (121,351.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,500.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01746575 BTC (14,030.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.83 CZK over 2241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010296 BTC for 82.71 CZK @ 803,289 CZK\nFees are 0.29048638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.00 % (281.15114998631441082861112757 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43793005 BTC (230,432.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.66 % (121,351.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,500.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01746575 BTC (14,030.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.83 CZK over 2241 transactions" + } + ] + }, + { + "id": 3900, + "type": "message", + "date": "2023-11-07T01:00:06", + "date_unixtime": "1699315206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010297 BTC for 82.71 CZK @ 803,242 CZK\nFees are 0.29049760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.99 % (281.13469999800155607650585288 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43803302 BTC (230,515.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.63 % (121,330.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,417.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01756872 BTC (14,111.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.82 CZK over 2242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010297 BTC for 82.71 CZK @ 803,242 CZK\nFees are 0.29049760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.99 % (281.13469999800155607650585288 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43803302 BTC (230,515.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.63 % (121,330.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,417.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01756872 BTC (14,111.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.82 CZK over 2242 transactions" + } + ] + }, + { + "id": 3901, + "type": "message", + "date": "2023-11-07T05:00:08", + "date_unixtime": "1699329608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010309 BTC for 82.70 CZK @ 802,258 CZK\nFees are 0.29047985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.98 % (280.79029999908652242130716903 CZK)\nThe limits being 0.10 % (14.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43813611 BTC (230,598.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 802,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.43 % (120,899.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,334.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01767181 BTC (14,177.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.81 CZK over 2243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010309 BTC for 82.70 CZK @ 802,258 CZK\nFees are 0.29047985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.98 % (280.79029999908652242130716903 CZK)\nThe limits being 0.10 % (14.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43813611 BTC (230,598.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 802,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.43 % (120,899.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,334.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01767181 BTC (14,177.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.81 CZK over 2243 transactions" + } + ] + }, + { + "id": 3902, + "type": "message", + "date": "2023-11-07T09:00:06", + "date_unixtime": "1699344006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010288 BTC for 82.71 CZK @ 803,943 CZK\nFees are 0.29049699 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (200.98574998682682152125414858 CZK)\nThe limits being 0.10 % (14.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43823899 BTC (230,681.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 803,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.73 % (121,637.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,251.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01777469 BTC (14,289.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.80 CZK over 2244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010288 BTC for 82.71 CZK @ 803,943 CZK\nFees are 0.29049699 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (200.98574998682682152125414858 CZK)\nThe limits being 0.10 % (14.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43823899 BTC (230,681.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 803,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.73 % (121,637.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,251.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01777469 BTC (14,289.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.80 CZK over 2244 transactions" + } + ] + }, + { + "id": 3903, + "type": "message", + "date": "2023-11-07T13:00:07", + "date_unixtime": "1699358407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010352 BTC for 82.71 CZK @ 798,965 CZK\nFees are 0.29049418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (207.73089997797507795359210305 CZK)\nThe limits being 0.10 % (14.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43834251 BTC (230,764.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 798,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.77 % (119,455.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,168.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01787821 BTC (14,284.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.79 CZK over 2245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010352 BTC for 82.71 CZK @ 798,965 CZK\nFees are 0.29049418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (207.73089997797507795359210305 CZK)\nThe limits being 0.10 % (14.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43834251 BTC (230,764.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 798,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.77 % (119,455.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,168.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01787821 BTC (14,284.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.79 CZK over 2245 transactions" + } + ] + }, + { + "id": 3904, + "type": "message", + "date": "2023-11-07T17:00:07", + "date_unixtime": "1699372807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010326 BTC for 82.70 CZK @ 800,916 CZK\nFees are 0.29047216 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (184.21067999653739511940630802 CZK)\nThe limits being 0.10 % (14.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43844577 BTC (230,847.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 800,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.12 % (120,310.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,085.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01798147 BTC (14,401.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.78 CZK over 2246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010326 BTC for 82.70 CZK @ 800,916 CZK\nFees are 0.29047216 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (184.21067999653739511940630802 CZK)\nThe limits being 0.10 % (14.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43844577 BTC (230,847.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 800,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.12 % (120,310.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,085.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01798147 BTC (14,401.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.78 CZK over 2246 transactions" + } + ] + }, + { + "id": 3905, + "type": "message", + "date": "2023-11-07T21:00:08", + "date_unixtime": "1699387208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010123 BTC for 82.70 CZK @ 817,000 CZK\nFees are 0.29048032 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.99 % (294.11999998228072732298557338 CZK)\nThe limits being 0.10 % (14.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43854700 BTC (230,930.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 817,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.15 % (127,362.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,002.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01808270 BTC (14,773.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.77 CZK over 2247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010123 BTC for 82.70 CZK @ 817,000 CZK\nFees are 0.29048032 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.99 % (294.11999998228072732298557338 CZK)\nThe limits being 0.10 % (14.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43854700 BTC (230,930.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 817,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.15 % (127,362.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,002.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01808270 BTC (14,773.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.77 CZK over 2247 transactions" + } + ] + }, + { + "id": 3906, + "type": "message", + "date": "2023-11-08T01:00:08", + "date_unixtime": "1699401608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010127 BTC for 82.71 CZK @ 816,696 CZK\nFees are 0.29048697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.98 % (294.01055998682206825336167889 CZK)\nThe limits being 0.10 % (14.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43864827 BTC (231,013.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 816,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.07 % (127,228.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,919.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01818397 BTC (14,850.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.76 CZK over 2248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010127 BTC for 82.71 CZK @ 816,696 CZK\nFees are 0.29048697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.98 % (294.01055998682206825336167889 CZK)\nThe limits being 0.10 % (14.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43864827 BTC (231,013.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 816,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.07 % (127,228.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,919.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01818397 BTC (14,850.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.76 CZK over 2248 transactions" + } + ] + }, + { + "id": 3907, + "type": "message", + "date": "2023-11-08T05:00:06", + "date_unixtime": "1699416006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010170 BTC for 82.71 CZK @ 813,230 CZK\nFees are 0.29048236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.59 % (235.83669997584658219339489761 CZK)\nThe limits being 0.10 % (14.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43874997 BTC (231,096.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 813,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.40 % (125,708.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,836.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01828567 BTC (14,870.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.76 CZK over 2249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010170 BTC for 82.71 CZK @ 813,230 CZK\nFees are 0.29048236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.59 % (235.83669997584658219339489761 CZK)\nThe limits being 0.10 % (14.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43874997 BTC (231,096.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 813,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.40 % (125,708.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,836.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01828567 BTC (14,870.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.76 CZK over 2249 transactions" + } + ] + }, + { + "id": 3908, + "type": "message", + "date": "2023-11-08T09:00:07", + "date_unixtime": "1699430407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010144 BTC for 82.70 CZK @ 815,301 CZK\nFees are 0.29047759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.74 % (260.89631997786925571226260138 CZK)\nThe limits being 0.10 % (14.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43885141 BTC (231,179.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 815,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.77 % (126,616.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,753.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01838711 BTC (14,991.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.75 CZK over 2250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010144 BTC for 82.70 CZK @ 815,301 CZK\nFees are 0.29047759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.74 % (260.89631997786925571226260138 CZK)\nThe limits being 0.10 % (14.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43885141 BTC (231,179.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 815,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.77 % (126,616.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,753.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01838711 BTC (14,991.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.75 CZK over 2250 transactions" + } + ] + }, + { + "id": 3909, + "type": "message", + "date": "2023-11-08T13:00:06", + "date_unixtime": "1699444806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010146 BTC for 82.71 CZK @ 815,158 CZK\nFees are 0.29048391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (228.24423997970438768862499878 CZK)\nThe limits being 0.10 % (15.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43895287 BTC (231,262.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 815,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.72 % (126,553.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,670.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01848857 BTC (15,071.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.74 CZK over 2251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010146 BTC for 82.71 CZK @ 815,158 CZK\nFees are 0.29048391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (228.24423997970438768862499878 CZK)\nThe limits being 0.10 % (15.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43895287 BTC (231,262.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 815,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.72 % (126,553.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,670.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01848857 BTC (15,071.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.74 CZK over 2251 transactions" + } + ] + }, + { + "id": 3910, + "type": "message", + "date": "2023-11-08T17:00:05", + "date_unixtime": "1699459205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010192 BTC for 82.71 CZK @ 811,488 CZK\nFees are 0.29048716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.67 % (251.56127997162990756840852932 CZK)\nThe limits being 0.10 % (15.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43905479 BTC (231,345.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 811,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.01 % (124,942.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,587.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01859049 BTC (15,085.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.73 CZK over 2252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010192 BTC for 82.71 CZK @ 811,488 CZK\nFees are 0.29048716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.67 % (251.56127997162990756840852932 CZK)\nThe limits being 0.10 % (15.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43905479 BTC (231,345.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 811,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.01 % (124,942.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,587.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01859049 BTC (15,085.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.73 CZK over 2252 transactions" + } + ] + }, + { + "id": 3911, + "type": "message", + "date": "2023-11-08T21:00:06", + "date_unixtime": "1699473606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010066 BTC for 82.71 CZK @ 821,656 CZK\nFees are 0.29049080 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (213.63055998620366171212201759 CZK)\nThe limits being 0.10 % (15.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43915545 BTC (231,428.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 526,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.92 % (129,406.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,504.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01869115 BTC (15,357.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.72 CZK over 2253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010066 BTC for 82.71 CZK @ 821,656 CZK\nFees are 0.29049080 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (213.63055998620366171212201759 CZK)\nThe limits being 0.10 % (15.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43915545 BTC (231,428.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 526,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.92 % (129,406.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,504.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01869115 BTC (15,357.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.72 CZK over 2253 transactions" + } + ] + }, + { + "id": 3912, + "type": "message", + "date": "2023-11-09T01:00:07", + "date_unixtime": "1699488007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010064 BTC for 82.71 CZK @ 821,841 CZK\nFees are 0.29049847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (221.89706998973386470089187052 CZK)\nThe limits being 0.10 % (15.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43925609 BTC (231,511.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.93 % (129,487.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,421.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01879179 BTC (15,443.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.71 CZK over 2254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010064 BTC for 82.71 CZK @ 821,841 CZK\nFees are 0.29049847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (221.89706998973386470089187052 CZK)\nThe limits being 0.10 % (15.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43925609 BTC (231,511.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.93 % (129,487.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,421.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01879179 BTC (15,443.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.71 CZK over 2254 transactions" + } + ] + }, + { + "id": 3913, + "type": "message", + "date": "2023-11-09T05:00:07", + "date_unixtime": "1699502407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009860 BTC for 82.70 CZK @ 838,772 CZK\nFees are 0.29047333 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.54 % (243.24387997889738855183328938 CZK)\nThe limits being 0.10 % (15.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43935469 BTC (231,594.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.12 % (136,923.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,338.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01889039 BTC (15,844.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.70 CZK over 2255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009860 BTC for 82.70 CZK @ 838,772 CZK\nFees are 0.29047333 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.54 % (243.24387997889738855183328938 CZK)\nThe limits being 0.10 % (15.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43935469 BTC (231,594.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.12 % (136,923.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,338.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01889039 BTC (15,844.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.70 CZK over 2255 transactions" + } + ] + }, + { + "id": 3914, + "type": "message", + "date": "2023-11-09T09:00:07", + "date_unixtime": "1699516807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009800 BTC for 82.71 CZK @ 843,946 CZK\nFees are 0.29048664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.37 % (379.77569996339342912052713463 CZK)\nThe limits being 0.10 % (16.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43945269 BTC (231,677.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.08 % (139,196.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,255.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01898839 BTC (16,025.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.69 CZK over 2256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009800 BTC for 82.71 CZK @ 843,946 CZK\nFees are 0.29048664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.37 % (379.77569996339342912052713463 CZK)\nThe limits being 0.10 % (16.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43945269 BTC (231,677.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.08 % (139,196.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,255.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01898839 BTC (16,025.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.69 CZK over 2256 transactions" + } + ] + }, + { + "id": 3915, + "type": "message", + "date": "2023-11-09T13:00:08", + "date_unixtime": "1699531208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009754 BTC for 82.71 CZK @ 847,927 CZK\nFees are 0.29048696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.57 % (254.37809997385611299553469767 CZK)\nThe limits being 0.10 % (16.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43955023 BTC (231,760.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 847,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.82 % (140,945.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,172.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01908593 BTC (16,183.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.69 CZK over 2257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009754 BTC for 82.71 CZK @ 847,927 CZK\nFees are 0.29048696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.57 % (254.37809997385611299553469767 CZK)\nThe limits being 0.10 % (16.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43955023 BTC (231,760.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 847,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.82 % (140,945.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,172.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01908593 BTC (16,183.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.69 CZK over 2257 transactions" + } + ] + }, + { + "id": 3916, + "type": "message", + "date": "2023-11-09T17:00:06", + "date_unixtime": "1699545606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009726 BTC for 82.71 CZK @ 850,374 CZK\nFees are 0.29048898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (255.11219998973364968446341567 CZK)\nThe limits being 0.10 % (16.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43964749 BTC (231,843.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 850,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.26 % (142,021.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,089.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01918319 BTC (16,312.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.68 CZK over 2258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009726 BTC for 82.71 CZK @ 850,374 CZK\nFees are 0.29048898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (255.11219998973364968446341567 CZK)\nThe limits being 0.10 % (16.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43964749 BTC (231,843.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 850,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.26 % (142,021.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,089.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01918319 BTC (16,312.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.68 CZK over 2258 transactions" + } + ] + }, + { + "id": 3917, + "type": "message", + "date": "2023-11-09T21:00:07", + "date_unixtime": "1699560007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009880 BTC for 82.71 CZK @ 837,120 CZK\nFees are 0.29048926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.80 % (452.04479996732085474119932465 CZK)\nThe limits being 0.10 % (16.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43974629 BTC (231,926.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.72 % (136,193.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,006.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01928199 BTC (16,141.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.67 CZK over 2259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009880 BTC for 82.71 CZK @ 837,120 CZK\nFees are 0.29048926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.80 % (452.04479996732085474119932465 CZK)\nThe limits being 0.10 % (16.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43974629 BTC (231,926.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.72 % (136,193.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,006.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01928199 BTC (16,141.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.67 CZK over 2259 transactions" + } + ] + }, + { + "id": 3918, + "type": "message", + "date": "2023-11-10T01:00:07", + "date_unixtime": "1699574407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009774 BTC for 82.71 CZK @ 846,216 CZK\nFees are 0.29049522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.79 % (456.95663999207194708024676066 CZK)\nThe limits being 0.10 % (16.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43984403 BTC (232,009.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 846,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.43 % (140,193.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 923.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01937973 BTC (16,399.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.66 CZK over 2260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009774 BTC for 82.71 CZK @ 846,216 CZK\nFees are 0.29049522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.79 % (456.95663999207194708024676066 CZK)\nThe limits being 0.10 % (16.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43984403 BTC (232,009.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 846,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.43 % (140,193.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 923.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01937973 BTC (16,399.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.66 CZK over 2260 transactions" + } + ] + }, + { + "id": 3919, + "type": "message", + "date": "2023-11-10T05:00:06", + "date_unixtime": "1699588806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009766 BTC for 82.71 CZK @ 846,904 CZK\nFees are 0.29049344 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.52 % (414.98295996880057623425526526 CZK)\nThe limits being 0.10 % (16.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.43994169 BTC (232,092.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 846,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.53 % (140,495.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 840.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01947739 BTC (16,495.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.65 CZK over 2261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009766 BTC for 82.71 CZK @ 846,904 CZK\nFees are 0.29049344 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.52 % (414.98295996880057623425526526 CZK)\nThe limits being 0.10 % (16.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.43994169 BTC (232,092.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 846,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.53 % (140,495.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 840.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01947739 BTC (16,495.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.65 CZK over 2261 transactions" + } + ] + }, + { + "id": 3920, + "type": "message", + "date": "2023-11-10T09:00:07", + "date_unixtime": "1699603207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009836 BTC for 82.71 CZK @ 840,876 CZK\nFees are 0.29049315 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.50 % (412.02923999126278845512848177 CZK)\nThe limits being 0.10 % (16.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44004005 BTC (232,175.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 840,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.37 % (137,843.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 757.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01957575 BTC (16,460.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.64 CZK over 2262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009836 BTC for 82.71 CZK @ 840,876 CZK\nFees are 0.29049315 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.50 % (412.02923999126278845512848177 CZK)\nThe limits being 0.10 % (16.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44004005 BTC (232,175.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 840,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.37 % (137,843.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 757.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01957575 BTC (16,460.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.64 CZK over 2262 transactions" + } + ] + }, + { + "id": 3921, + "type": "message", + "date": "2023-11-10T13:00:07", + "date_unixtime": "1699617607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009712 BTC for 82.71 CZK @ 851,579 CZK\nFees are 0.29048187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (357.66317998414117310993072842 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44013717 BTC (232,258.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 851,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.38 % (142,553.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 674.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01967287 BTC (16,753.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.63 CZK over 2263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009712 BTC for 82.71 CZK @ 851,579 CZK\nFees are 0.29048187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (357.66317998414117310993072842 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44013717 BTC (232,258.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 851,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.38 % (142,553.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 674.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01967287 BTC (16,753.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.63 CZK over 2263 transactions" + } + ] + }, + { + "id": 3922, + "type": "message", + "date": "2023-11-10T17:00:07", + "date_unixtime": "1699632007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009680 BTC for 82.70 CZK @ 854,389 CZK\nFees are 0.29048013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (196.50946999242321296948284311 CZK)\nThe limits being 0.10 % (16.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44023397 BTC (232,341.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 854,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.89 % (143,789.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 591.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01976967 BTC (16,890.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.62 CZK over 2264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009680 BTC for 82.70 CZK @ 854,389 CZK\nFees are 0.29048013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (196.50946999242321296948284311 CZK)\nThe limits being 0.10 % (16.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44023397 BTC (232,341.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 854,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.89 % (143,789.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 591.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01976967 BTC (16,890.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.62 CZK over 2264 transactions" + } + ] + }, + { + "id": 3923, + "type": "message", + "date": "2023-11-10T21:00:05", + "date_unixtime": "1699646405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009622 BTC for 82.71 CZK @ 859,555 CZK\nFees are 0.29048549 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (137.52879998782063650223593851 CZK)\nThe limits being 0.10 % (17.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44033019 BTC (232,424.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 859,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.84 % (146,063.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 508.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01986589 BTC (17,075.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.62 CZK over 2265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009622 BTC for 82.71 CZK @ 859,555 CZK\nFees are 0.29048549 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (137.52879998782063650223593851 CZK)\nThe limits being 0.10 % (17.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44033019 BTC (232,424.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 859,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.84 % (146,063.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 508.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01986589 BTC (17,075.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.62 CZK over 2265 transactions" + } + ] + }, + { + "id": 3924, + "type": "message", + "date": "2023-11-11T01:00:06", + "date_unixtime": "1699660806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009606 BTC for 82.71 CZK @ 860,999 CZK\nFees are 0.29048964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (103.31987999528197218542098284 CZK)\nThe limits being 0.10 % (17.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44042625 BTC (232,507.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,915 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 860,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.09 % (146,699.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 425.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01996195 BTC (17,187.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.61 CZK over 2266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009606 BTC for 82.71 CZK @ 860,999 CZK\nFees are 0.29048964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (103.31987999528197218542098284 CZK)\nThe limits being 0.10 % (17.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44042625 BTC (232,507.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,915 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 860,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.09 % (146,699.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 425.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01996195 BTC (17,187.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.61 CZK over 2266 transactions" + } + ] + }, + { + "id": 3925, + "type": "message", + "date": "2023-11-11T05:00:06", + "date_unixtime": "1699675206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009670 BTC for 82.71 CZK @ 855,278 CZK\nFees are 0.29048198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (85.52779999062227395429337546 CZK)\nThe limits being 0.10 % (17.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44052295 BTC (232,590.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 527,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 855,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.99 % (144,179.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 342.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02005865 BTC (17,155.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.60 CZK over 2267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009670 BTC for 82.71 CZK @ 855,278 CZK\nFees are 0.29048198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (85.52779999062227395429337546 CZK)\nThe limits being 0.10 % (17.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44052295 BTC (232,590.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 527,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 855,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.99 % (144,179.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 342.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02005865 BTC (17,155.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.60 CZK over 2267 transactions" + } + ] + }, + { + "id": 3926, + "type": "message", + "date": "2023-11-11T09:00:07", + "date_unixtime": "1699689607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009702 BTC for 82.71 CZK @ 852,495 CZK\nFees are 0.29049491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.34929998971852484558015201 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44061997 BTC (232,673.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 852,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.44 % (142,952.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 259.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02015567 BTC (17,182.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.59 CZK over 2268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009702 BTC for 82.71 CZK @ 852,495 CZK\nFees are 0.29049491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.34929998971852484558015201 CZK)\nThe limits being 0.10 % (17.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44061997 BTC (232,673.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 852,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.44 % (142,952.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 259.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02015567 BTC (17,182.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.59 CZK over 2268 transactions" + } + ] + }, + { + "id": 3927, + "type": "message", + "date": "2023-11-11T13:00:06", + "date_unixtime": "1699704006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009703 BTC for 82.71 CZK @ 852,394 CZK\nFees are 0.29049043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.33515999371672504987567733 CZK)\nThe limits being 0.10 % (17.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44071700 BTC (232,756.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 852,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.40 % (142,907.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 176.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02025270 BTC (17,263.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.58 CZK over 2269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009703 BTC for 82.71 CZK @ 852,394 CZK\nFees are 0.29049043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.33515999371672504987567733 CZK)\nThe limits being 0.10 % (17.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44071700 BTC (232,756.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 852,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.40 % (142,907.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 176.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02025270 BTC (17,263.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.58 CZK over 2269 transactions" + } + ] + }, + { + "id": 3928, + "type": "message", + "date": "2023-11-11T17:00:06", + "date_unixtime": "1699718406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009686 BTC for 82.70 CZK @ 853,861 CZK\nFees are 0.29048055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.54053998903898301021790243 CZK)\nThe limits being 0.10 % (17.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44081386 BTC (232,839.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.65 % (143,554.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 93.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02034956 BTC (17,375.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.57 CZK over 2270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009686 BTC for 82.70 CZK @ 853,861 CZK\nFees are 0.29048055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.54053998903898301021790243 CZK)\nThe limits being 0.10 % (17.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44081386 BTC (232,839.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.65 % (143,554.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 93.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02034956 BTC (17,375.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.57 CZK over 2270 transactions" + } + ] + }, + { + "id": 3929, + "type": "message", + "date": "2023-11-11T21:00:05", + "date_unixtime": "1699732805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009666 BTC for 82.71 CZK @ 855,685 CZK\nFees are 0.29050000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (265.26234999248955986965133721 CZK)\nThe limits being 0.10 % (17.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44091052 BTC (232,922.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 855,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.98 % (144,357.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02044622 BTC (17,495.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.56 CZK over 2271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009666 BTC for 82.71 CZK @ 855,685 CZK\nFees are 0.29050000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (265.26234999248955986965133721 CZK)\nThe limits being 0.10 % (17.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44091052 BTC (232,922.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 855,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.98 % (144,357.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02044622 BTC (17,495.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.56 CZK over 2271 transactions" + } + ] + }, + { + "id": 3930, + "type": "message", + "date": "2023-11-12T01:00:02", + "date_unixtime": "1699747202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3931, + "type": "message", + "date": "2023-11-12T05:00:02", + "date_unixtime": "1699761602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3932, + "type": "message", + "date": "2023-11-12T09:00:03", + "date_unixtime": "1699776003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3933, + "type": "message", + "date": "2023-11-12T13:00:02", + "date_unixtime": "1699790402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3934, + "type": "message", + "date": "2023-11-12T17:00:02", + "date_unixtime": "1699804802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3935, + "type": "message", + "date": "2023-11-12T21:00:02", + "date_unixtime": "1699819202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3936, + "type": "message", + "date": "2023-11-13T01:00:02", + "date_unixtime": "1699833602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3937, + "type": "message", + "date": "2023-11-13T05:00:02", + "date_unixtime": "1699848002", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3938, + "type": "message", + "date": "2023-11-13T09:00:02", + "date_unixtime": "1699862402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (10.41396463 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 3939, + "type": "message", + "date": "2023-11-13T13:00:07", + "date_unixtime": "1699876807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009687 BTC for 82.71 CZK @ 853,776 CZK\nFees are 0.29048162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (170.755199991934906880321682 CZK)\nThe limits being 0.10 % (17.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44100739 BTC (233,005.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.59 % (143,516.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,927.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02054309 BTC (17,539.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.56 CZK over 2272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009687 BTC for 82.71 CZK @ 853,776 CZK\nFees are 0.29048162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (170.755199991934906880321682 CZK)\nThe limits being 0.10 % (17.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44100739 BTC (233,005.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.59 % (143,516.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,927.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02054309 BTC (17,539.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.56 CZK over 2272 transactions" + } + ] + }, + { + "id": 3940, + "type": "message", + "date": "2023-11-13T17:00:08", + "date_unixtime": "1699891208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009685 BTC for 82.70 CZK @ 853,933 CZK\nFees are 0.29047506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (179.32592998125558994731655519 CZK)\nThe limits being 0.10 % (17.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44110424 BTC (233,088.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.60 % (143,584.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,844.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02063994 BTC (17,625.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.55 CZK over 2273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009685 BTC for 82.70 CZK @ 853,933 CZK\nFees are 0.29047506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (179.32592998125558994731655519 CZK)\nThe limits being 0.10 % (17.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44110424 BTC (233,088.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.60 % (143,584.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,844.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02063994 BTC (17,625.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.55 CZK over 2273 transactions" + } + ] + }, + { + "id": 3941, + "type": "message", + "date": "2023-11-13T21:00:05", + "date_unixtime": "1699905605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009661 BTC for 82.70 CZK @ 856,049 CZK\nFees are 0.29047324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (171.20979998222761067038576864 CZK)\nThe limits being 0.10 % (17.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44120085 BTC (233,171.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 856,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.98 % (144,518.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,761.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02073655 BTC (17,751.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.54 CZK over 2274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009661 BTC for 82.70 CZK @ 856,049 CZK\nFees are 0.29047324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (171.20979998222761067038576864 CZK)\nThe limits being 0.10 % (17.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44120085 BTC (233,171.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 856,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.98 % (144,518.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,761.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02073655 BTC (17,751.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.54 CZK over 2274 transactions" + } + ] + }, + { + "id": 3942, + "type": "message", + "date": "2023-11-14T01:00:06", + "date_unixtime": "1699920006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009748 BTC for 82.71 CZK @ 848,483 CZK\nFees are 0.29049877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (169.6966836016494587368502404 CZK)\nThe limits being 0.10 % (17.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44129833 BTC (233,254.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 848,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.53 % (141,179.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,678.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02083403 BTC (17,677.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.53 CZK over 2275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009748 BTC for 82.71 CZK @ 848,483 CZK\nFees are 0.29049877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (169.6966836016494587368502404 CZK)\nThe limits being 0.10 % (17.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44129833 BTC (233,254.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 848,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.53 % (141,179.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,678.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02083403 BTC (17,677.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.53 CZK over 2275 transactions" + } + ] + }, + { + "id": 3943, + "type": "message", + "date": "2023-11-14T05:00:06", + "date_unixtime": "1699934406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009748 BTC for 82.71 CZK @ 848,473 CZK\nFees are 0.29049521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (152.72513998502164868589808466 CZK)\nThe limits being 0.10 % (17.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44139581 BTC (233,337.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 848,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.50 % (141,174.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,595.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02093151 BTC (17,759.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.52 CZK over 2276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009748 BTC for 82.71 CZK @ 848,473 CZK\nFees are 0.29049521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (152.72513998502164868589808466 CZK)\nThe limits being 0.10 % (17.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44139581 BTC (233,337.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 848,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.50 % (141,174.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,595.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02093151 BTC (17,759.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.52 CZK over 2276 transactions" + } + ] + }, + { + "id": 3944, + "type": "message", + "date": "2023-11-14T09:00:07", + "date_unixtime": "1699948807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009636 BTC for 82.70 CZK @ 858,285 CZK\nFees are 0.29047833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (120.15989998682485936002736790 CZK)\nThe limits being 0.10 % (18.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44149217 BTC (233,420.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 858,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.34 % (145,505.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,512.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02102787 BTC (18,047.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.51 CZK over 2277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009636 BTC for 82.70 CZK @ 858,285 CZK\nFees are 0.29047833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (120.15989998682485936002736790 CZK)\nThe limits being 0.10 % (18.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44149217 BTC (233,420.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 858,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.34 % (145,505.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,512.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02102787 BTC (18,047.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.51 CZK over 2277 transactions" + } + ] + }, + { + "id": 3945, + "type": "message", + "date": "2023-11-14T13:00:06", + "date_unixtime": "1699963206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009784 BTC for 82.71 CZK @ 845,322 CZK\nFees are 0.29048522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (126.79829999132227718113340838 CZK)\nThe limits being 0.10 % (17.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44159001 BTC (233,503.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 845,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.86 % (139,782.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,429.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02112571 BTC (17,858.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.50 CZK over 2278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009784 BTC for 82.71 CZK @ 845,322 CZK\nFees are 0.29048522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (126.79829999132227718113340838 CZK)\nThe limits being 0.10 % (17.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44159001 BTC (233,503.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 845,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.86 % (139,782.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,429.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02112571 BTC (17,858.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.50 CZK over 2278 transactions" + } + ] + }, + { + "id": 3946, + "type": "message", + "date": "2023-11-14T17:00:09", + "date_unixtime": "1699977609", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009966 BTC for 82.71 CZK @ 829,922 CZK\nFees are 0.29049829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (174.28361999407852168223979467 CZK)\nThe limits being 0.10 % (17.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44168967 BTC (233,586.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 829,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.93 % (132,981.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,346.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02122537 BTC (17,615.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.50 CZK over 2279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009966 BTC for 82.71 CZK @ 829,922 CZK\nFees are 0.29049829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (174.28361999407852168223979467 CZK)\nThe limits being 0.10 % (17.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44168967 BTC (233,586.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 829,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.93 % (132,981.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,346.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02122537 BTC (17,615.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.50 CZK over 2279 transactions" + } + ] + }, + { + "id": 3947, + "type": "message", + "date": "2023-11-14T21:00:08", + "date_unixtime": "1699992008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010237 BTC for 82.70 CZK @ 807,895 CZK\nFees are 0.29047787 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (177.73689998067231622991503947 CZK)\nThe limits being 0.10 % (17.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44179204 BTC (233,669.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 807,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 52.75 % (123,252.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,263.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02132774 BTC (17,230.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.49 CZK over 2280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010237 BTC for 82.70 CZK @ 807,895 CZK\nFees are 0.29047787 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (177.73689998067231622991503947 CZK)\nThe limits being 0.10 % (17.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44179204 BTC (233,669.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 807,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 52.75 % (123,252.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,263.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02132774 BTC (17,230.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.49 CZK over 2280 transactions" + } + ] + }, + { + "id": 3948, + "type": "message", + "date": "2023-11-15T01:00:07", + "date_unixtime": "1700006407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010164 BTC for 82.70 CZK @ 813,682 CZK\nFees are 0.29047234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (179.01003998990546075747869469 CZK)\nThe limits being 0.10 % (17.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44189368 BTC (233,752.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 528,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 813,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.82 % (125,808.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,180.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02142938 BTC (17,436.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.48 CZK over 2281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010164 BTC for 82.70 CZK @ 813,682 CZK\nFees are 0.29047234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (179.01003998990546075747869469 CZK)\nThe limits being 0.10 % (17.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44189368 BTC (233,752.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 528,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 813,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.82 % (125,808.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,180.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02142938 BTC (17,436.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.48 CZK over 2281 transactions" + } + ] + }, + { + "id": 3949, + "type": "message", + "date": "2023-11-15T05:00:07", + "date_unixtime": "1700020807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010212 BTC for 82.71 CZK @ 809,921 CZK\nFees are 0.29049515 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (170.08340999217193407093972507 CZK)\nThe limits being 0.10 % (17.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44199580 BTC (233,835.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 809,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.09 % (124,146.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,097.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02153150 BTC (17,438.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.47 CZK over 2282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010212 BTC for 82.71 CZK @ 809,921 CZK\nFees are 0.29049515 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (170.08340999217193407093972507 CZK)\nThe limits being 0.10 % (17.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44199580 BTC (233,835.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 809,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.09 % (124,146.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,097.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02153150 BTC (17,438.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.47 CZK over 2282 transactions" + } + ] + }, + { + "id": 3950, + "type": "message", + "date": "2023-11-15T09:00:09", + "date_unixtime": "1700035209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010148 BTC for 82.71 CZK @ 815,002 CZK\nFees are 0.29048556 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (163.00039999929297517812606606 CZK)\nThe limits being 0.10 % (17.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44209728 BTC (233,918.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 815,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.03 % (126,391.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,014.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02163298 BTC (17,630.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.46 CZK over 2283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010148 BTC for 82.71 CZK @ 815,002 CZK\nFees are 0.29048556 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (163.00039999929297517812606606 CZK)\nThe limits being 0.10 % (17.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44209728 BTC (233,918.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 815,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.03 % (126,391.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,014.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02163298 BTC (17,630.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.46 CZK over 2283 transactions" + } + ] + }, + { + "id": 3951, + "type": "message", + "date": "2023-11-15T13:00:08", + "date_unixtime": "1700049608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010026 BTC for 82.70 CZK @ 824,885 CZK\nFees are 0.29047351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (131.98159999149197636717528942 CZK)\nThe limits being 0.10 % (17.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44219754 BTC (234,001.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 824,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.88 % (130,760.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,931.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02173324 BTC (17,927.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.45 CZK over 2284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010026 BTC for 82.70 CZK @ 824,885 CZK\nFees are 0.29047351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (131.98159999149197636717528942 CZK)\nThe limits being 0.10 % (17.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44219754 BTC (234,001.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 824,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.88 % (130,760.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,931.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02173324 BTC (17,927.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.45 CZK over 2284 transactions" + } + ] + }, + { + "id": 3952, + "type": "message", + "date": "2023-11-15T17:00:07", + "date_unixtime": "1700064007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009941 BTC for 82.71 CZK @ 832,000 CZK\nFees are 0.29049511 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (232.96000 CZK)\nThe limits being 0.10 % (18.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44229695 BTC (234,084.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 832,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.20 % (133,906.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,848.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02183265 BTC (18,164.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.44 CZK over 2285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009941 BTC for 82.71 CZK @ 832,000 CZK\nFees are 0.29049511 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (232.96000 CZK)\nThe limits being 0.10 % (18.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44229695 BTC (234,084.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 832,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.20 % (133,906.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,848.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02183265 BTC (18,164.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.44 CZK over 2285 transactions" + } + ] + }, + { + "id": 3953, + "type": "message", + "date": "2023-11-15T21:00:08", + "date_unixtime": "1700078408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009730 BTC for 82.71 CZK @ 850,000 CZK\nFees are 0.29048064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.19 % (408.00000 CZK)\nThe limits being 0.10 % (18.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44239425 BTC (234,167.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 850,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.58 % (141,867.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,765.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02192995 BTC (18,640.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.44 CZK over 2286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009730 BTC for 82.71 CZK @ 850,000 CZK\nFees are 0.29048064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.19 % (408.00000 CZK)\nThe limits being 0.10 % (18.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44239425 BTC (234,167.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 850,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.58 % (141,867.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,765.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02192995 BTC (18,640.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.44 CZK over 2286 transactions" + } + ] + }, + { + "id": 3954, + "type": "message", + "date": "2023-11-16T01:00:08", + "date_unixtime": "1700092808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009651 BTC for 82.71 CZK @ 856,965 CZK\nFees are 0.29048307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (385.63424998826767179032540601 CZK)\nThe limits being 0.10 % (18.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44249076 BTC (234,250.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 856,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.88 % (144,948.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,682.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02202646 BTC (18,875.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.43 CZK over 2287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009651 BTC for 82.71 CZK @ 856,965 CZK\nFees are 0.29048307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (385.63424998826767179032540601 CZK)\nThe limits being 0.10 % (18.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44249076 BTC (234,250.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 856,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.88 % (144,948.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,682.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02202646 BTC (18,875.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.43 CZK over 2287 transactions" + } + ] + }, + { + "id": 3955, + "type": "message", + "date": "2023-11-16T05:00:06", + "date_unixtime": "1700107206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009682 BTC for 82.70 CZK @ 854,192 CZK\nFees are 0.29047315 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.62 % (495.43135998185240318254010160 CZK)\nThe limits being 0.10 % (18.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44258758 BTC (234,333.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 854,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.33 % (143,721.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,599.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02212328 BTC (18,897.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.42 CZK over 2288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009682 BTC for 82.70 CZK @ 854,192 CZK\nFees are 0.29047315 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.62 % (495.43135998185240318254010160 CZK)\nThe limits being 0.10 % (18.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44258758 BTC (234,333.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 854,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.33 % (143,721.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,599.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02212328 BTC (18,897.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.42 CZK over 2288 transactions" + } + ] + }, + { + "id": 3956, + "type": "message", + "date": "2023-11-16T09:00:07", + "date_unixtime": "1700121607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009670 BTC for 82.70 CZK @ 855,263 CZK\nFees are 0.29047689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.19 % (795.3945899774779997001188703 CZK)\nThe limits being 0.10 % (19.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44268428 BTC (234,416.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 855,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.51 % (144,195.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,516.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02221998 BTC (19,003.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.41 CZK over 2289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009670 BTC for 82.70 CZK @ 855,263 CZK\nFees are 0.29047689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.19 % (795.3945899774779997001188703 CZK)\nThe limits being 0.10 % (19.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44268428 BTC (234,416.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 855,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.51 % (144,195.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,516.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02221998 BTC (19,003.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.41 CZK over 2289 transactions" + } + ] + }, + { + "id": 3957, + "type": "message", + "date": "2023-11-16T13:00:07", + "date_unixtime": "1700136007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009691 BTC for 82.70 CZK @ 853,396 CZK\nFees are 0.29047223 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.91 % (554.70739998489447495112683974 CZK)\nThe limits being 0.10 % (19.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44278119 BTC (234,499.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 853,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.14 % (143,368.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,433.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02231689 BTC (19,045.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.40 CZK over 2290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009691 BTC for 82.70 CZK @ 853,396 CZK\nFees are 0.29047223 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.91 % (554.70739998489447495112683974 CZK)\nThe limits being 0.10 % (19.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44278119 BTC (234,499.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 853,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.14 % (143,368.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,433.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02231689 BTC (19,045.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.40 CZK over 2290 transactions" + } + ] + }, + { + "id": 3958, + "type": "message", + "date": "2023-11-16T17:00:07", + "date_unixtime": "1700150407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010059 BTC for 82.71 CZK @ 822,242 CZK\nFees are 0.29049582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.77 % (509.79003994023700624709827368 CZK)\nThe limits being 0.10 % (18.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44288178 BTC (234,582.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 822,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.24 % (129,573.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,350.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02241748 BTC (18,432.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.39 CZK over 2291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010059 BTC for 82.71 CZK @ 822,242 CZK\nFees are 0.29049582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.77 % (509.79003994023700624709827368 CZK)\nThe limits being 0.10 % (18.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44288178 BTC (234,582.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 822,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.24 % (129,573.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,350.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02241748 BTC (18,432.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.39 CZK over 2291 transactions" + } + ] + }, + { + "id": 3959, + "type": "message", + "date": "2023-11-16T21:00:08", + "date_unixtime": "1700164808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010170 BTC for 82.71 CZK @ 813,238 CZK\nFees are 0.29048522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.62 % (479.81041996473503014767879778 CZK)\nThe limits being 0.10 % (18.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44298348 BTC (234,665.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 813,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.52 % (125,585.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,267.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02251918 BTC (18,313.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.38 CZK over 2292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010170 BTC for 82.71 CZK @ 813,238 CZK\nFees are 0.29048522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.62 % (479.81041996473503014767879778 CZK)\nThe limits being 0.10 % (18.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44298348 BTC (234,665.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 813,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.52 % (125,585.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,267.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02251918 BTC (18,313.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.38 CZK over 2292 transactions" + } + ] + }, + { + "id": 3960, + "type": "message", + "date": "2023-11-17T01:00:09", + "date_unixtime": "1700179209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010093 BTC for 82.71 CZK @ 819,475 CZK\nFees are 0.29049683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.25 % (417.93224999433519390742329520 CZK)\nThe limits being 0.10 % (18.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44308441 BTC (234,748.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 819,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.67 % (128,348.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,184.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02262011 BTC (18,536.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.38 CZK over 2293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010093 BTC for 82.71 CZK @ 819,475 CZK\nFees are 0.29049683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.25 % (417.93224999433519390742329520 CZK)\nThe limits being 0.10 % (18.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44308441 BTC (234,748.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 819,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.67 % (128,348.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,184.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02262011 BTC (18,536.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.38 CZK over 2293 transactions" + } + ] + }, + { + "id": 3961, + "type": "message", + "date": "2023-11-17T05:00:07", + "date_unixtime": "1700193607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010029 BTC for 82.71 CZK @ 824,667 CZK\nFees are 0.29048363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.38 % (445.32017996241393233166418281 CZK)\nThe limits being 0.10 % (18.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44318470 BTC (234,831.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 824,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.63 % (130,648.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,101.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02272040 BTC (18,736.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.37 CZK over 2294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010029 BTC for 82.71 CZK @ 824,667 CZK\nFees are 0.29048363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.38 % (445.32017996241393233166418281 CZK)\nThe limits being 0.10 % (18.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44318470 BTC (234,831.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 824,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.63 % (130,648.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,101.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02272040 BTC (18,736.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.37 CZK over 2294 transactions" + } + ] + }, + { + "id": 3962, + "type": "message", + "date": "2023-11-17T09:00:06", + "date_unixtime": "1700208006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010083 BTC for 82.71 CZK @ 820,289 CZK\nFees are 0.29049728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.37 % (442.95605994905957681290134932 CZK)\nThe limits being 0.10 % (18.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44328553 BTC (234,914.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 529,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.79 % (128,707.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,018.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02282123 BTC (18,720.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.36 CZK over 2295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010083 BTC for 82.71 CZK @ 820,289 CZK\nFees are 0.29049728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.37 % (442.95605994905957681290134932 CZK)\nThe limits being 0.10 % (18.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44328553 BTC (234,914.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 529,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.79 % (128,707.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,018.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02282123 BTC (18,720.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.36 CZK over 2295 transactions" + } + ] + }, + { + "id": 3963, + "type": "message", + "date": "2023-11-17T13:00:06", + "date_unixtime": "1700222406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010055 BTC for 82.71 CZK @ 822,535 CZK\nFees are 0.29048378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.22 % (419.49284995008767176642071004 CZK)\nThe limits being 0.10 % (18.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44338608 BTC (234,997.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 822,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.19 % (129,703.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,935.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02292178 BTC (18,853.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.35 CZK over 2296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010055 BTC for 82.71 CZK @ 822,535 CZK\nFees are 0.29048378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.22 % (419.49284995008767176642071004 CZK)\nThe limits being 0.10 % (18.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44338608 BTC (234,997.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 822,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.19 % (129,703.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,935.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02292178 BTC (18,853.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.35 CZK over 2296 transactions" + } + ] + }, + { + "id": 3964, + "type": "message", + "date": "2023-11-17T17:00:07", + "date_unixtime": "1700236807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010171 BTC for 82.71 CZK @ 813,160 CZK\nFees are 0.29048592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (398.44839998751787875265202214 CZK)\nThe limits being 0.10 % (18.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44348779 BTC (235,080.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 813,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.41 % (125,546.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,852.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02302349 BTC (18,721.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.34 CZK over 2297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010171 BTC for 82.71 CZK @ 813,160 CZK\nFees are 0.29048592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (398.44839998751787875265202214 CZK)\nThe limits being 0.10 % (18.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44348779 BTC (235,080.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 813,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.41 % (125,546.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,852.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02302349 BTC (18,721.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.34 CZK over 2297 transactions" + } + ] + }, + { + "id": 3965, + "type": "message", + "date": "2023-11-17T21:00:05", + "date_unixtime": "1700251205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010096 BTC for 82.70 CZK @ 819,167 CZK\nFees are 0.29047396 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (401.39182999458314283525884443 CZK)\nThe limits being 0.10 % (18.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44358875 BTC (235,163.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 819,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.52 % (128,209.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,769.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02312445 BTC (18,942.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.33 CZK over 2298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010096 BTC for 82.70 CZK @ 819,167 CZK\nFees are 0.29047396 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (401.39182999458314283525884443 CZK)\nThe limits being 0.10 % (18.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44358875 BTC (235,163.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 819,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.52 % (128,209.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,769.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02312445 BTC (18,942.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.33 CZK over 2298 transactions" + } + ] + }, + { + "id": 3966, + "type": "message", + "date": "2023-11-18T01:00:07", + "date_unixtime": "1700265607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010026 BTC for 82.70 CZK @ 824,883 CZK\nFees are 0.29047280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (288.70904998772001962809003516 CZK)\nThe limits being 0.10 % (19.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44368901 BTC (235,246.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 824,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.58 % (130,745.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,686.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02322471 BTC (19,157.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.33 CZK over 2299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010026 BTC for 82.70 CZK @ 824,883 CZK\nFees are 0.29047280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (288.70904998772001962809003516 CZK)\nThe limits being 0.10 % (19.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44368901 BTC (235,246.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 824,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.58 % (130,745.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,686.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02322471 BTC (19,157.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.33 CZK over 2299 transactions" + } + ] + }, + { + "id": 3967, + "type": "message", + "date": "2023-11-18T05:00:06", + "date_unixtime": "1700280006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010085 BTC for 82.70 CZK @ 820,076 CZK\nFees are 0.29047946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (188.61747998613677117693427491 CZK)\nThe limits being 0.10 % (19.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44378986 BTC (235,329.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.65 % (128,612.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,603.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02332556 BTC (19,128.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.32 CZK over 2300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010085 BTC for 82.70 CZK @ 820,076 CZK\nFees are 0.29047946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (188.61747998613677117693427491 CZK)\nThe limits being 0.10 % (19.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44378986 BTC (235,329.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.65 % (128,612.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,603.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02332556 BTC (19,128.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.32 CZK over 2300 transactions" + } + ] + }, + { + "id": 3968, + "type": "message", + "date": "2023-11-18T09:00:06", + "date_unixtime": "1700294406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010090 BTC for 82.70 CZK @ 819,651 CZK\nFees are 0.29047286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.31 % (442.61153999653344118182989863 CZK)\nThe limits being 0.10 % (19.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44389076 BTC (235,412.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 819,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.55 % (128,423.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,520.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02342646 BTC (19,201.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.31 CZK over 2301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010090 BTC for 82.70 CZK @ 819,651 CZK\nFees are 0.29047286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.31 % (442.61153999653344118182989863 CZK)\nThe limits being 0.10 % (19.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44389076 BTC (235,412.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 819,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.55 % (128,423.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,520.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02342646 BTC (19,201.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.31 CZK over 2301 transactions" + } + ] + }, + { + "id": 3969, + "type": "message", + "date": "2023-11-18T13:00:06", + "date_unixtime": "1700308806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010077 BTC for 82.71 CZK @ 820,776 CZK\nFees are 0.29049678 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.70 % (714.07511998864349887035744052 CZK)\nThe limits being 0.10 % (19.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44399153 BTC (235,495.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.75 % (128,922.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,437.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02352723 BTC (19,310.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.30 CZK over 2302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010077 BTC for 82.71 CZK @ 820,776 CZK\nFees are 0.29049678 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.70 % (714.07511998864349887035744052 CZK)\nThe limits being 0.10 % (19.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44399153 BTC (235,495.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.75 % (128,922.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,437.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02352723 BTC (19,310.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.30 CZK over 2302 transactions" + } + ] + }, + { + "id": 3970, + "type": "message", + "date": "2023-11-18T17:00:06", + "date_unixtime": "1700323206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010039 BTC for 82.71 CZK @ 823,881 CZK\nFees are 0.29049614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.51 % (683.82122993767257372381245774 CZK)\nThe limits being 0.10 % (19.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44409192 BTC (235,578.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 823,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.31 % (130,300.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,354.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02362762 BTC (19,466.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.29 CZK over 2303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010039 BTC for 82.71 CZK @ 823,881 CZK\nFees are 0.29049614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.51 % (683.82122993767257372381245774 CZK)\nThe limits being 0.10 % (19.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44409192 BTC (235,578.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 823,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.31 % (130,300.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,354.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02362762 BTC (19,466.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.29 CZK over 2303 transactions" + } + ] + }, + { + "id": 3971, + "type": "message", + "date": "2023-11-18T21:00:06", + "date_unixtime": "1700337606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010001 BTC for 82.71 CZK @ 826,975 CZK\nFees are 0.29048334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.50 % (686.38924996588532477096087105 CZK)\nThe limits being 0.10 % (19.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44419193 BTC (235,661.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 826,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.87 % (131,674.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,271.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02372763 BTC (19,622.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.28 CZK over 2304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010001 BTC for 82.71 CZK @ 826,975 CZK\nFees are 0.29048334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.50 % (686.38924996588532477096087105 CZK)\nThe limits being 0.10 % (19.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44419193 BTC (235,661.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 826,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.87 % (131,674.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,271.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02372763 BTC (19,622.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.28 CZK over 2304 transactions" + } + ] + }, + { + "id": 3972, + "type": "message", + "date": "2023-11-19T01:00:19", + "date_unixtime": "1700352019", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010029 BTC for 82.70 CZK @ 824,657 CZK\nFees are 0.29048011 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.48 % (684.46530994346589211168031242 CZK)\nThe limits being 0.10 % (19.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44429222 BTC (235,744.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 824,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.42 % (130,644.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,188.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02382792 BTC (19,649.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.28 CZK over 2305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010029 BTC for 82.70 CZK @ 824,657 CZK\nFees are 0.29048011 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.48 % (684.46530994346589211168031242 CZK)\nThe limits being 0.10 % (19.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44429222 BTC (235,744.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 824,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.42 % (130,644.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,188.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02382792 BTC (19,649.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.28 CZK over 2305 transactions" + } + ] + }, + { + "id": 3973, + "type": "message", + "date": "2023-11-19T05:00:06", + "date_unixtime": "1700366406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010045 BTC for 82.71 CZK @ 823,387 CZK\nFees are 0.29049547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.47 % (683.41120996274115756623842436 CZK)\nThe limits being 0.10 % (19.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44439267 BTC (235,827.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 823,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.16 % (130,079.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,105.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02392837 BTC (19,702.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.27 CZK over 2306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010045 BTC for 82.71 CZK @ 823,387 CZK\nFees are 0.29049547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.47 % (683.41120996274115756623842436 CZK)\nThe limits being 0.10 % (19.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44439267 BTC (235,827.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 823,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.16 % (130,079.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,105.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02392837 BTC (19,702.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.27 CZK over 2306 transactions" + } + ] + }, + { + "id": 3974, + "type": "message", + "date": "2023-11-19T09:00:07", + "date_unixtime": "1700380807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010024 BTC for 82.71 CZK @ 825,099 CZK\nFees are 0.29049091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (222.77672999151811437303834027 CZK)\nThe limits being 0.10 % (19.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44449291 BTC (235,910.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 825,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.46 % (130,840.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,022.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02402861 BTC (19,825.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.26 CZK over 2307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010024 BTC for 82.71 CZK @ 825,099 CZK\nFees are 0.29049091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (222.77672999151811437303834027 CZK)\nThe limits being 0.10 % (19.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44449291 BTC (235,910.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 825,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.46 % (130,840.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,022.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02402861 BTC (19,825.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.26 CZK over 2307 transactions" + } + ] + }, + { + "id": 3975, + "type": "message", + "date": "2023-11-19T13:00:08", + "date_unixtime": "1700395208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010065 BTC for 82.71 CZK @ 821,712 CZK\nFees are 0.29048173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (238.29647998621813221533871391 CZK)\nThe limits being 0.10 % (19.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44459356 BTC (235,993.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.80 % (129,334.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,939.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02412926 BTC (19,827.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.25 CZK over 2308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010065 BTC for 82.71 CZK @ 821,712 CZK\nFees are 0.29048173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (238.29647998621813221533871391 CZK)\nThe limits being 0.10 % (19.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44459356 BTC (235,993.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.80 % (129,334.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,939.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02412926 BTC (19,827.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.25 CZK over 2308 transactions" + } + ] + }, + { + "id": 3976, + "type": "message", + "date": "2023-11-19T17:00:07", + "date_unixtime": "1700409607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010036 BTC for 82.70 CZK @ 824,058 CZK\nFees are 0.29047172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (271.93913998990778191038420131 CZK)\nThe limits being 0.10 % (19.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44469392 BTC (236,076.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 824,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.23 % (130,377.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,856.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02422962 BTC (19,966.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.24 CZK over 2309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010036 BTC for 82.70 CZK @ 824,058 CZK\nFees are 0.29047172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (271.93913998990778191038420131 CZK)\nThe limits being 0.10 % (19.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44469392 BTC (236,076.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 824,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.23 % (130,377.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,856.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02422962 BTC (19,966.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.24 CZK over 2309 transactions" + } + ] + }, + { + "id": 3977, + "type": "message", + "date": "2023-11-19T21:00:08", + "date_unixtime": "1700424008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009935 BTC for 82.71 CZK @ 832,498 CZK\nFees are 0.29049355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (274.72433997666446250403406896 CZK)\nThe limits being 0.10 % (20.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44479327 BTC (236,159.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 530,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 832,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.80 % (134,130.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,773.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02432897 BTC (20,253.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.23 CZK over 2310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009935 BTC for 82.71 CZK @ 832,498 CZK\nFees are 0.29049355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (274.72433997666446250403406896 CZK)\nThe limits being 0.10 % (20.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44479327 BTC (236,159.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 530,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 832,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.80 % (134,130.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,773.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02432897 BTC (20,253.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.23 CZK over 2310 transactions" + } + ] + }, + { + "id": 3978, + "type": "message", + "date": "2023-11-20T01:00:08", + "date_unixtime": "1700438408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009828 BTC for 82.70 CZK @ 841,506 CZK\nFees are 0.29047435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (277.69697998701735622512902034 CZK)\nThe limits being 0.10 % (20.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44489155 BTC (236,242.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.47 % (138,136.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,690.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02442725 BTC (20,555.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.23 CZK over 2311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009828 BTC for 82.70 CZK @ 841,506 CZK\nFees are 0.29047435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (277.69697998701735622512902034 CZK)\nThe limits being 0.10 % (20.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44489155 BTC (236,242.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.47 % (138,136.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,690.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02442725 BTC (20,555.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.23 CZK over 2311 transactions" + } + ] + }, + { + "id": 3979, + "type": "message", + "date": "2023-11-20T05:00:07", + "date_unixtime": "1700452807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009901 BTC for 82.70 CZK @ 835,310 CZK\nFees are 0.29047728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (183.76819999811788927623130174 CZK)\nThe limits being 0.10 % (20.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44499056 BTC (236,325.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 835,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.29 % (135,379.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,607.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02452626 BTC (20,487.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.22 CZK over 2312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009901 BTC for 82.70 CZK @ 835,310 CZK\nFees are 0.29047728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (183.76819999811788927623130174 CZK)\nThe limits being 0.10 % (20.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44499056 BTC (236,325.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 835,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.29 % (135,379.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,607.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02452626 BTC (20,487.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.22 CZK over 2312 transactions" + } + ] + }, + { + "id": 3980, + "type": "message", + "date": "2023-11-20T09:00:08", + "date_unixtime": "1700467208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009881 BTC for 82.70 CZK @ 837,005 CZK\nFees are 0.29047875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (184.14109999073680333588033422 CZK)\nThe limits being 0.10 % (20.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44508937 BTC (236,408.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.58 % (136,133.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,524.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02462507 BTC (20,611.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.21 CZK over 2313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009881 BTC for 82.70 CZK @ 837,005 CZK\nFees are 0.29047875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (184.14109999073680333588033422 CZK)\nThe limits being 0.10 % (20.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44508937 BTC (236,408.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.58 % (136,133.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,524.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02462507 BTC (20,611.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.21 CZK over 2313 transactions" + } + ] + }, + { + "id": 3981, + "type": "message", + "date": "2023-11-20T13:00:08", + "date_unixtime": "1700481608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009890 BTC for 82.71 CZK @ 836,302 CZK\nFees are 0.29049906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (150.53432106535114964157299804 CZK)\nThe limits being 0.10 % (20.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44518827 BTC (236,491.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.43 % (135,820.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,441.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02472397 BTC (20,676.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.20 CZK over 2314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009890 BTC for 82.71 CZK @ 836,302 CZK\nFees are 0.29049906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (150.53432106535114964157299804 CZK)\nThe limits being 0.10 % (20.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44518827 BTC (236,491.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.43 % (135,820.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,441.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02472397 BTC (20,676.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.20 CZK over 2314 transactions" + } + ] + }, + { + "id": 3982, + "type": "message", + "date": "2023-11-20T17:00:08", + "date_unixtime": "1700496008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009843 BTC for 82.70 CZK @ 840,237 CZK\nFees are 0.29047893 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (168.04737169778780465667734806 CZK)\nThe limits being 0.10 % (20.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44528670 BTC (236,574.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 840,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.15 % (137,571.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,358.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02482240 BTC (20,856.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.19 CZK over 2315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009843 BTC for 82.70 CZK @ 840,237 CZK\nFees are 0.29047893 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (168.04737169778780465667734806 CZK)\nThe limits being 0.10 % (20.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44528670 BTC (236,574.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 840,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.15 % (137,571.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,358.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02482240 BTC (20,856.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.19 CZK over 2315 transactions" + } + ] + }, + { + "id": 3983, + "type": "message", + "date": "2023-11-20T21:00:06", + "date_unixtime": "1700510406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009818 BTC for 82.71 CZK @ 842,401 CZK\nFees are 0.29048731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (160.05613300281363973292498459 CZK)\nThe limits being 0.10 % (20.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44538488 BTC (236,657.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.54 % (138,535.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,275.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02492058 BTC (20,993.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.18 CZK over 2316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009818 BTC for 82.71 CZK @ 842,401 CZK\nFees are 0.29048731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (160.05613300281363973292498459 CZK)\nThe limits being 0.10 % (20.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44538488 BTC (236,657.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.54 % (138,535.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,275.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02492058 BTC (20,993.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.18 CZK over 2316 transactions" + } + ] + }, + { + "id": 3984, + "type": "message", + "date": "2023-11-21T01:00:07", + "date_unixtime": "1700524807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009856 BTC for 82.70 CZK @ 839,121 CZK\nFees are 0.29047629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (159.43298460158115427173723139 CZK)\nThe limits being 0.10 % (20.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44548344 BTC (236,740.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 839,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.90 % (137,074.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,192.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02501914 BTC (20,994.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.18 CZK over 2317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009856 BTC for 82.70 CZK @ 839,121 CZK\nFees are 0.29047629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (159.43298460158115427173723139 CZK)\nThe limits being 0.10 % (20.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44548344 BTC (236,740.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 839,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.90 % (137,074.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,192.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02501914 BTC (20,994.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.18 CZK over 2317 transactions" + } + ] + }, + { + "id": 3985, + "type": "message", + "date": "2023-11-21T05:00:07", + "date_unixtime": "1700539207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009864 BTC for 82.71 CZK @ 838,486 CZK\nFees are 0.29049195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (176.08197711901289525589875823 CZK)\nThe limits being 0.10 % (21.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44558208 BTC (236,823.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.76 % (136,790.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,109.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02511778 BTC (21,060.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.17 CZK over 2318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009864 BTC for 82.71 CZK @ 838,486 CZK\nFees are 0.29049195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (176.08197711901289525589875823 CZK)\nThe limits being 0.10 % (21.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44558208 BTC (236,823.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.76 % (136,790.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,109.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02511778 BTC (21,060.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.17 CZK over 2318 transactions" + } + ] + }, + { + "id": 3986, + "type": "message", + "date": "2023-11-21T09:00:07", + "date_unixtime": "1700553607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009909 BTC for 82.70 CZK @ 834,622 CZK\nFees are 0.29047270 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (175.27071634685805252310223331 CZK)\nThe limits being 0.10 % (21.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44568117 BTC (236,906.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 834,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.01 % (135,069.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,026.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02521687 BTC (21,046.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.16 CZK over 2319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009909 BTC for 82.70 CZK @ 834,622 CZK\nFees are 0.29047270 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (175.27071634685805252310223331 CZK)\nThe limits being 0.10 % (21.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44568117 BTC (236,906.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 834,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.01 % (135,069.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,026.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02521687 BTC (21,046.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.16 CZK over 2319 transactions" + } + ] + }, + { + "id": 3987, + "type": "message", + "date": "2023-11-21T13:00:05", + "date_unixtime": "1700568005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009934 BTC for 82.70 CZK @ 832,523 CZK\nFees are 0.29047288 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (233.10631497630249030747928855 CZK)\nThe limits being 0.10 % (21.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44578051 BTC (236,989.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 832,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.60 % (134,133.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,943.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02531621 BTC (21,076.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.15 CZK over 2320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009934 BTC for 82.70 CZK @ 832,523 CZK\nFees are 0.29047288 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (233.10631497630249030747928855 CZK)\nThe limits being 0.10 % (21.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44578051 BTC (236,989.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 832,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.60 % (134,133.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,943.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02531621 BTC (21,076.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.15 CZK over 2320 transactions" + } + ] + }, + { + "id": 3988, + "type": "message", + "date": "2023-11-21T17:00:06", + "date_unixtime": "1700582406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009966 BTC for 82.71 CZK @ 829,913 CZK\nFees are 0.29049520 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (232.37568380625666878747982304 CZK)\nThe limits being 0.10 % (21.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44588017 BTC (237,072.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 829,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.09 % (132,969.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,860.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02541587 BTC (21,092.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.14 CZK over 2321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009966 BTC for 82.71 CZK @ 829,913 CZK\nFees are 0.29049520 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (232.37568380625666878747982304 CZK)\nThe limits being 0.10 % (21.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44588017 BTC (237,072.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 829,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.09 % (132,969.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,860.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02541587 BTC (21,092.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.14 CZK over 2321 transactions" + } + ] + }, + { + "id": 3989, + "type": "message", + "date": "2023-11-21T21:00:06", + "date_unixtime": "1700596806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009954 BTC for 82.71 CZK @ 830,894 CZK\nFees are 0.29048839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (224.34142800379503563927699704 CZK)\nThe limits being 0.10 % (21.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44597971 BTC (237,155.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 830,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.25 % (133,406.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,777.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02551541 BTC (21,200.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.13 CZK over 2322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009954 BTC for 82.71 CZK @ 830,894 CZK\nFees are 0.29048839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (224.34142800379503563927699704 CZK)\nThe limits being 0.10 % (21.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44597971 BTC (237,155.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 830,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.25 % (133,406.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,777.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02551541 BTC (21,200.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.13 CZK over 2322 transactions" + } + ] + }, + { + "id": 3990, + "type": "message", + "date": "2023-11-22T01:00:07", + "date_unixtime": "1700611207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010272 BTC for 82.71 CZK @ 805,182 CZK\nFees are 0.29049215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (193.24363824744236294464700650 CZK)\nThe limits being 0.10 % (20.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44608243 BTC (237,238.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 805,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 51.40 % (121,939.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,694.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02561813 BTC (20,627.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.13 CZK over 2323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010272 BTC for 82.71 CZK @ 805,182 CZK\nFees are 0.29049215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (193.24363824744236294464700650 CZK)\nThe limits being 0.10 % (20.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44608243 BTC (237,238.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 805,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 51.40 % (121,939.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,694.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02561813 BTC (20,627.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.13 CZK over 2323 transactions" + } + ] + }, + { + "id": 3991, + "type": "message", + "date": "2023-11-22T05:00:06", + "date_unixtime": "1700625606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010127 BTC for 82.71 CZK @ 816,706 CZK\nFees are 0.29049065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (179.67539265577292943641660232 CZK)\nThe limits being 0.10 % (21.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44618370 BTC (237,321.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 816,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.55 % (127,079.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,611.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02571940 BTC (21,005.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.12 CZK over 2324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010127 BTC for 82.71 CZK @ 816,706 CZK\nFees are 0.29049065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (179.67539265577292943641660232 CZK)\nThe limits being 0.10 % (21.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44618370 BTC (237,321.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 816,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.55 % (127,079.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,611.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02571940 BTC (21,005.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.12 CZK over 2324 transactions" + } + ] + }, + { + "id": 3992, + "type": "message", + "date": "2023-11-22T09:00:06", + "date_unixtime": "1700640006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010072 BTC for 82.71 CZK @ 821,148 CZK\nFees are 0.29048421 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (205.28697496114670931327328140 CZK)\nThe limits being 0.10 % (21.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44628442 BTC (237,404.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 531,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.36 % (129,061.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,528.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02582012 BTC (21,202.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.11 CZK over 2325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010072 BTC for 82.71 CZK @ 821,148 CZK\nFees are 0.29048421 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (205.28697496114670931327328140 CZK)\nThe limits being 0.10 % (21.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44628442 BTC (237,404.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 531,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.36 % (129,061.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,528.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02582012 BTC (21,202.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.11 CZK over 2325 transactions" + } + ] + }, + { + "id": 3993, + "type": "message", + "date": "2023-11-22T13:00:06", + "date_unixtime": "1700654406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010079 BTC for 82.71 CZK @ 820,583 CZK\nFees are 0.29048628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.16 % (459.52673916320163879245341965 CZK)\nThe limits being 0.10 % (21.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44638521 BTC (237,487.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 820,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.24 % (128,809.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,445.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02592091 BTC (21,270.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.10 CZK over 2326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010079 BTC for 82.71 CZK @ 820,583 CZK\nFees are 0.29048628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.16 % (459.52673916320163879245341965 CZK)\nThe limits being 0.10 % (21.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44638521 BTC (237,487.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 820,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.24 % (128,809.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,445.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02592091 BTC (21,270.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.10 CZK over 2326 transactions" + } + ] + }, + { + "id": 3994, + "type": "message", + "date": "2023-11-22T17:00:06", + "date_unixtime": "1700668806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010042 BTC for 82.71 CZK @ 823,608 CZK\nFees are 0.29048682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (288.26295589912502020661205002 CZK)\nThe limits being 0.10 % (21.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44648563 BTC (237,570.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 823,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.79 % (130,159.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,362.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02602133 BTC (21,431.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.09 CZK over 2327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010042 BTC for 82.71 CZK @ 823,608 CZK\nFees are 0.29048682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (288.26295589912502020661205002 CZK)\nThe limits being 0.10 % (21.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44648563 BTC (237,570.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 823,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.79 % (130,159.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,362.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02602133 BTC (21,431.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.09 CZK over 2327 transactions" + } + ] + }, + { + "id": 3995, + "type": "message", + "date": "2023-11-22T21:00:06", + "date_unixtime": "1700683206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009854 BTC for 82.70 CZK @ 839,300 CZK\nFees are 0.29047924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.19 % (260.18293589950901497690901006 CZK)\nThe limits being 0.10 % (21.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44658417 BTC (237,653.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 839,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.72 % (137,164.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,279.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02611987 BTC (21,922.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.08 CZK over 2328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009854 BTC for 82.70 CZK @ 839,300 CZK\nFees are 0.29047924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.19 % (260.18293589950901497690901006 CZK)\nThe limits being 0.10 % (21.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44658417 BTC (237,653.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 839,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.72 % (137,164.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,279.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02611987 BTC (21,922.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.08 CZK over 2328 transactions" + } + ] + }, + { + "id": 3996, + "type": "message", + "date": "2023-11-23T01:00:08", + "date_unixtime": "1700697608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009822 BTC for 82.71 CZK @ 842,085 CZK\nFees are 0.29049676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (286.30890506927646943699495261 CZK)\nThe limits being 0.10 % (22.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44668239 BTC (237,736.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.22 % (138,408.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,196.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02621809 BTC (22,077.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.08 CZK over 2329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009822 BTC for 82.71 CZK @ 842,085 CZK\nFees are 0.29049676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (286.30890506927646943699495261 CZK)\nThe limits being 0.10 % (22.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44668239 BTC (237,736.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.22 % (138,408.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,196.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02621809 BTC (22,077.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.08 CZK over 2329 transactions" + } + ] + }, + { + "id": 3997, + "type": "message", + "date": "2023-11-23T05:00:09", + "date_unixtime": "1700712009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009859 BTC for 82.71 CZK @ 838,908 CZK\nFees are 0.29049102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.37 % (302.00694615604689803357383955 CZK)\nThe limits being 0.10 % (22.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44678098 BTC (237,819.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.60 % (136,988.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,113.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02631668 BTC (22,077.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.07 CZK over 2330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009859 BTC for 82.71 CZK @ 838,908 CZK\nFees are 0.29049102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.37 % (302.00694615604689803357383955 CZK)\nThe limits being 0.10 % (22.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44678098 BTC (237,819.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.60 % (136,988.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,113.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02631668 BTC (22,077.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.07 CZK over 2330 transactions" + } + ] + }, + { + "id": 3998, + "type": "message", + "date": "2023-11-23T09:00:08", + "date_unixtime": "1700726408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009850 BTC for 82.70 CZK @ 839,641 CZK\nFees are 0.29047952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (293.87450833251133722327184803 CZK)\nThe limits being 0.10 % (22.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44687948 BTC (237,902.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 839,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.72 % (137,316.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,030.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02641518 BTC (22,179.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.06 CZK over 2331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009850 BTC for 82.70 CZK @ 839,641 CZK\nFees are 0.29047952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (293.87450833251133722327184803 CZK)\nThe limits being 0.10 % (22.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44687948 BTC (237,902.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 839,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.72 % (137,316.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,030.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02641518 BTC (22,179.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.06 CZK over 2331 transactions" + } + ] + }, + { + "id": 3999, + "type": "message", + "date": "2023-11-23T13:00:07", + "date_unixtime": "1700740807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009901 BTC for 82.71 CZK @ 835,356 CZK\nFees are 0.29049318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (400.97074916712826187024336141 CZK)\nThe limits being 0.10 % (22.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44697849 BTC (237,985.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 835,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.89 % (135,400.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,947.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02651419 BTC (22,148.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.05 CZK over 2332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009901 BTC for 82.71 CZK @ 835,356 CZK\nFees are 0.29049318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (400.97074916712826187024336141 CZK)\nThe limits being 0.10 % (22.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44697849 BTC (237,985.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 835,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.89 % (135,400.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,947.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02651419 BTC (22,148.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.05 CZK over 2332 transactions" + } + ] + }, + { + "id": 4000, + "type": "message", + "date": "2023-11-23T17:00:08", + "date_unixtime": "1700755208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009985 BTC for 82.71 CZK @ 828,328 CZK\nFees are 0.29049302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.50 % (331.33109513797352730640554752 CZK)\nThe limits being 0.10 % (22.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44707834 BTC (238,068.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.56 % (132,259.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,864.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02661404 BTC (22,045.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.04 CZK over 2333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009985 BTC for 82.71 CZK @ 828,328 CZK\nFees are 0.29049302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.50 % (331.33109513797352730640554752 CZK)\nThe limits being 0.10 % (22.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44707834 BTC (238,068.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.56 % (132,259.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,864.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02661404 BTC (22,045.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.04 CZK over 2333 transactions" + } + ] + }, + { + "id": 4001, + "type": "message", + "date": "2023-11-23T21:00:06", + "date_unixtime": "1700769606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009887 BTC for 82.70 CZK @ 836,485 CZK\nFees are 0.29047443 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.50 % (334.59384054262594321311638656 CZK)\nThe limits being 0.10 % (22.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44717721 BTC (238,151.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.07 % (135,905.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,781.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02671291 BTC (22,344.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.04 CZK over 2334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009887 BTC for 82.70 CZK @ 836,485 CZK\nFees are 0.29047443 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.50 % (334.59384054262594321311638656 CZK)\nThe limits being 0.10 % (22.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44717721 BTC (238,151.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.07 % (135,905.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,781.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02671291 BTC (22,344.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.04 CZK over 2334 transactions" + } + ] + }, + { + "id": 4002, + "type": "message", + "date": "2023-11-24T01:00:08", + "date_unixtime": "1700784008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009884 BTC for 82.70 CZK @ 836,753 CZK\nFees are 0.29047958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.49 % (334.70133331397575099857903244 CZK)\nThe limits being 0.10 % (22.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44727605 BTC (238,234.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.10 % (136,025.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,698.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02681175 BTC (22,434.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.03 CZK over 2335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009884 BTC for 82.70 CZK @ 836,753 CZK\nFees are 0.29047958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.49 % (334.70133331397575099857903244 CZK)\nThe limits being 0.10 % (22.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44727605 BTC (238,234.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.10 % (136,025.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,698.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02681175 BTC (22,434.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.03 CZK over 2335 transactions" + } + ] + }, + { + "id": 4003, + "type": "message", + "date": "2023-11-24T05:00:06", + "date_unixtime": "1700798406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009892 BTC for 82.71 CZK @ 836,108 CZK\nFees are 0.29049047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.34 % (300.99887172494328886503384535 CZK)\nThe limits being 0.10 % (22.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44737497 BTC (238,317.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.96 % (135,736.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,615.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02691067 BTC (22,500.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.02 CZK over 2336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009892 BTC for 82.71 CZK @ 836,108 CZK\nFees are 0.29049047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.34 % (300.99887172494328886503384535 CZK)\nThe limits being 0.10 % (22.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44737497 BTC (238,317.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.96 % (135,736.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,615.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02691067 BTC (22,500.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.02 CZK over 2336 transactions" + } + ] + }, + { + "id": 4004, + "type": "message", + "date": "2023-11-24T09:00:05", + "date_unixtime": "1700812805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009857 BTC for 82.71 CZK @ 839,053 CZK\nFees are 0.29048225 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (302.05909415857524938458521887 CZK)\nThe limits being 0.10 % (22.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44747354 BTC (238,400.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 839,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.49 % (137,053.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,532.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02700924 BTC (22,662.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.01 CZK over 2337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009857 BTC for 82.71 CZK @ 839,053 CZK\nFees are 0.29048225 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (302.05909415857524938458521887 CZK)\nThe limits being 0.10 % (22.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44747354 BTC (238,400.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 839,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.49 % (137,053.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,532.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02700924 BTC (22,662.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.01 CZK over 2337 transactions" + } + ] + }, + { + "id": 4005, + "type": "message", + "date": "2023-11-24T13:00:07", + "date_unixtime": "1700827207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009781 BTC for 82.70 CZK @ 845,548 CZK\nFees are 0.29047364 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (295.94164632965685431732215029 CZK)\nThe limits being 0.10 % (22.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44757135 BTC (238,483.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 845,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.69 % (139,959.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,449.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02710705 BTC (22,920.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 102.00 CZK over 2338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009781 BTC for 82.70 CZK @ 845,548 CZK\nFees are 0.29047364 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (295.94164632965685431732215029 CZK)\nThe limits being 0.10 % (22.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44757135 BTC (238,483.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 845,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.69 % (139,959.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,449.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02710705 BTC (22,920.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 102.00 CZK over 2338 transactions" + } + ] + }, + { + "id": 4006, + "type": "message", + "date": "2023-11-24T17:00:05", + "date_unixtime": "1700841605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009674 BTC for 82.70 CZK @ 854,889 CZK\nFees are 0.29047005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (170.97784852458199073554735396 CZK)\nThe limits being 0.10 % (23.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44766809 BTC (238,566.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 854,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.42 % (144,140.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,366.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02720379 BTC (23,256.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.99 CZK over 2339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009674 BTC for 82.70 CZK @ 854,889 CZK\nFees are 0.29047005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (170.97784852458199073554735396 CZK)\nThe limits being 0.10 % (23.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44766809 BTC (238,566.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 854,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.42 % (144,140.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,366.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02720379 BTC (23,256.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.99 CZK over 2339 transactions" + } + ] + }, + { + "id": 4007, + "type": "message", + "date": "2023-11-24T21:00:05", + "date_unixtime": "1700856005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009815 BTC for 82.70 CZK @ 842,630 CZK\nFees are 0.29047776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (176.95239886479847279300847440 CZK)\nThe limits being 0.10 % (23.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44776624 BTC (238,649.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 532,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.10 % (138,652.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,283.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02730194 BTC (23,005.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.99 CZK over 2340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009815 BTC for 82.70 CZK @ 842,630 CZK\nFees are 0.29047776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (176.95239886479847279300847440 CZK)\nThe limits being 0.10 % (23.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44776624 BTC (238,649.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 532,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.10 % (138,652.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,283.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02730194 BTC (23,005.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.99 CZK over 2340 transactions" + } + ] + }, + { + "id": 4008, + "type": "message", + "date": "2023-11-25T01:00:06", + "date_unixtime": "1700870406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009824 BTC for 82.71 CZK @ 841,883 CZK\nFees are 0.29048628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (176.79547539231581971243968586 CZK)\nThe limits being 0.10 % (23.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44786448 BTC (238,732.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.94 % (138,317.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,200.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02740018 BTC (23,067.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.98 CZK over 2341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009824 BTC for 82.71 CZK @ 841,883 CZK\nFees are 0.29048628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (176.79547539231581971243968586 CZK)\nThe limits being 0.10 % (23.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44786448 BTC (238,732.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.94 % (138,317.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,200.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02740018 BTC (23,067.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.98 CZK over 2341 transactions" + } + ] + }, + { + "id": 4009, + "type": "message", + "date": "2023-11-25T05:00:06", + "date_unixtime": "1700884806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009801 BTC for 82.70 CZK @ 843,829 CZK\nFees are 0.29047610 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (194.08073325444405452256760558 CZK)\nThe limits being 0.10 % (23.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44796249 BTC (238,815.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.28 % (139,188.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,117.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02749819 BTC (23,203.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.97 CZK over 2342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009801 BTC for 82.70 CZK @ 843,829 CZK\nFees are 0.29047610 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (194.08073325444405452256760558 CZK)\nThe limits being 0.10 % (23.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44796249 BTC (238,815.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.28 % (139,188.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,117.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02749819 BTC (23,203.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.97 CZK over 2342 transactions" + } + ] + }, + { + "id": 4010, + "type": "message", + "date": "2023-11-25T09:00:09", + "date_unixtime": "1700899209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009800 BTC for 82.70 CZK @ 843,905 CZK\nFees are 0.29047259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (185.65914383535177897765982327 CZK)\nThe limits being 0.10 % (23.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44806049 BTC (238,898.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.28 % (139,222.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,034.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02759619 BTC (23,288.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.96 CZK over 2343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009800 BTC for 82.70 CZK @ 843,905 CZK\nFees are 0.29047259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (185.65914383535177897765982327 CZK)\nThe limits being 0.10 % (23.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44806049 BTC (238,898.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.28 % (139,222.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,034.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02759619 BTC (23,288.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.96 CZK over 2343 transactions" + } + ] + }, + { + "id": 4011, + "type": "message", + "date": "2023-11-25T13:00:07", + "date_unixtime": "1700913607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009843 BTC for 82.70 CZK @ 840,218 CZK\nFees are 0.29047237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (184.84793302279773510381044177 CZK)\nThe limits being 0.10 % (23.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44815892 BTC (238,981.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 840,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.57 % (137,569.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,951.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02769462 BTC (23,269.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.95 CZK over 2344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009843 BTC for 82.70 CZK @ 840,218 CZK\nFees are 0.29047237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (184.84793302279773510381044177 CZK)\nThe limits being 0.10 % (23.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44815892 BTC (238,981.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 840,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.57 % (137,569.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,951.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02769462 BTC (23,269.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.95 CZK over 2344 transactions" + } + ] + }, + { + "id": 4012, + "type": "message", + "date": "2023-11-25T17:00:06", + "date_unixtime": "1700928006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009840 BTC for 82.71 CZK @ 840,534 CZK\nFees are 0.29049294 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (176.5120481272862055974819838 CZK)\nThe limits being 0.10 % (23.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44825732 BTC (239,064.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 840,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.60 % (137,711.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,868.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02779302 BTC (23,360.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.95 CZK over 2345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009840 BTC for 82.71 CZK @ 840,534 CZK\nFees are 0.29049294 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (176.5120481272862055974819838 CZK)\nThe limits being 0.10 % (23.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44825732 BTC (239,064.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 840,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.60 % (137,711.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,868.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02779302 BTC (23,360.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.95 CZK over 2345 transactions" + } + ] + }, + { + "id": 4013, + "type": "message", + "date": "2023-11-25T21:00:08", + "date_unixtime": "1700942408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009800 BTC for 82.71 CZK @ 843,942 CZK\nFees are 0.29048531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (177.22785411061285500747384156 CZK)\nThe limits being 0.10 % (23.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44835532 BTC (239,147.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.22 % (139,238.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,785.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02789102 BTC (23,538.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.94 CZK over 2346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009800 BTC for 82.71 CZK @ 843,942 CZK\nFees are 0.29048531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (177.22785411061285500747384156 CZK)\nThe limits being 0.10 % (23.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44835532 BTC (239,147.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.22 % (139,238.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,785.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02789102 BTC (23,538.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.94 CZK over 2346 transactions" + } + ] + }, + { + "id": 4014, + "type": "message", + "date": "2023-11-26T01:00:07", + "date_unixtime": "1700956807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009816 BTC for 82.71 CZK @ 842,580 CZK\nFees are 0.29048979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.51590431858503388100897064 CZK)\nThe limits being 0.10 % (23.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44845348 BTC (239,230.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.95 % (138,627.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,702.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02798918 BTC (23,583.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.93 CZK over 2347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009816 BTC for 82.71 CZK @ 842,580 CZK\nFees are 0.29048979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.51590431858503388100897064 CZK)\nThe limits being 0.10 % (23.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44845348 BTC (239,230.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.95 % (138,627.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,702.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02798918 BTC (23,583.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.93 CZK over 2347 transactions" + } + ] + }, + { + "id": 4015, + "type": "message", + "date": "2023-11-26T05:00:06", + "date_unixtime": "1700971206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009811 BTC for 82.71 CZK @ 842,993 CZK\nFees are 0.29048434 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.59862181478067006025237224 CZK)\nThe limits being 0.10 % (23.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44855159 BTC (239,313.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.00 % (138,812.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,619.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02808729 BTC (23,677.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.92 CZK over 2348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009811 BTC for 82.71 CZK @ 842,993 CZK\nFees are 0.29048434 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.59862181478067006025237224 CZK)\nThe limits being 0.10 % (23.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44855159 BTC (239,313.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.00 % (138,812.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,619.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02808729 BTC (23,677.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.92 CZK over 2348 transactions" + } + ] + }, + { + "id": 4016, + "type": "message", + "date": "2023-11-26T09:00:08", + "date_unixtime": "1700985608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009795 BTC for 82.70 CZK @ 844,333 CZK\nFees are 0.29047149 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.86655454251111411234746790 CZK)\nThe limits being 0.10 % (23.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44864954 BTC (239,396.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 844,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.24 % (139,413.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,536.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02818524 BTC (23,797.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.91 CZK over 2349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009795 BTC for 82.70 CZK @ 844,333 CZK\nFees are 0.29047149 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.86655454251111411234746790 CZK)\nThe limits being 0.10 % (23.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44864954 BTC (239,396.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 844,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.24 % (139,413.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,536.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02818524 BTC (23,797.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.91 CZK over 2349 transactions" + } + ] + }, + { + "id": 4017, + "type": "message", + "date": "2023-11-26T13:00:07", + "date_unixtime": "1701000007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009835 BTC for 82.71 CZK @ 840,962 CZK\nFees are 0.29049337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.19242700370766374628302718 CZK)\nThe limits being 0.10 % (23.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44874789 BTC (239,479.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 840,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.58 % (137,900.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,453.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02828359 BTC (23,785.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.91 CZK over 2350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009835 BTC for 82.71 CZK @ 840,962 CZK\nFees are 0.29049337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (168.19242700370766374628302718 CZK)\nThe limits being 0.10 % (23.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44874789 BTC (239,479.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 840,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.58 % (137,900.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,453.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02828359 BTC (23,785.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.91 CZK over 2350 transactions" + } + ] + }, + { + "id": 4018, + "type": "message", + "date": "2023-11-26T17:00:06", + "date_unixtime": "1701014406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009886 BTC for 82.70 CZK @ 836,563 CZK\nFees are 0.29047211 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (167.31250471619612561779271236 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44884675 BTC (239,562.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.74 % (135,926.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,370.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02838245 BTC (23,743.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.90 CZK over 2351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009886 BTC for 82.70 CZK @ 836,563 CZK\nFees are 0.29047211 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (167.31250471619612561779271236 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44884675 BTC (239,562.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.74 % (135,926.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,370.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02838245 BTC (23,743.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.90 CZK over 2351 transactions" + } + ] + }, + { + "id": 4019, + "type": "message", + "date": "2023-11-26T21:00:07", + "date_unixtime": "1701028807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009907 BTC for 82.71 CZK @ 834,835 CZK\nFees are 0.29048811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (175.31540178970856468897669099 CZK)\nThe limits being 0.10 % (23.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44894582 BTC (239,645.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 834,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.40 % (135,150.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,287.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02848152 BTC (23,777.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.89 CZK over 2352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009907 BTC for 82.71 CZK @ 834,835 CZK\nFees are 0.29048811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (175.31540178970856468897669099 CZK)\nThe limits being 0.10 % (23.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44894582 BTC (239,645.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 834,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.40 % (135,150.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,287.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02848152 BTC (23,777.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.89 CZK over 2352 transactions" + } + ] + }, + { + "id": 4020, + "type": "message", + "date": "2023-11-27T01:00:08", + "date_unixtime": "1701043208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009885 BTC for 82.70 CZK @ 836,661 CZK\nFees are 0.29047706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (175.69889923356265211365682930 CZK)\nThe limits being 0.10 % (23.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44904467 BTC (239,728.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 836,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.72 % (135,970.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,204.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02858037 BTC (23,912.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.88 CZK over 2353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009885 BTC for 82.70 CZK @ 836,661 CZK\nFees are 0.29047706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (175.69889923356265211365682930 CZK)\nThe limits being 0.10 % (23.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44904467 BTC (239,728.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 836,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.72 % (135,970.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,204.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02858037 BTC (23,912.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.88 CZK over 2353 transactions" + } + ] + }, + { + "id": 4021, + "type": "message", + "date": "2023-11-27T05:00:08", + "date_unixtime": "1701057608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009918 BTC for 82.70 CZK @ 833,867 CZK\nFees are 0.29047344 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (175.11211455911569036502911318 CZK)\nThe limits being 0.10 % (23.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44914385 BTC (239,811.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 833,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.18 % (134,715.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,121.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02867955 BTC (23,914.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.87 CZK over 2354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009918 BTC for 82.70 CZK @ 833,867 CZK\nFees are 0.29047344 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (175.11211455911569036502911318 CZK)\nThe limits being 0.10 % (23.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44914385 BTC (239,811.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 833,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.18 % (134,715.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,121.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02867955 BTC (23,914.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.87 CZK over 2354 transactions" + } + ] + }, + { + "id": 4022, + "type": "message", + "date": "2023-11-27T09:00:07", + "date_unixtime": "1701072007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009907 BTC for 82.71 CZK @ 834,836 CZK\nFees are 0.29048846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (225.40578629686578453156960633 CZK)\nThe limits being 0.10 % (24.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44924292 BTC (239,894.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 533,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 834,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.34 % (135,150.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,038.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02877862 BTC (24,025.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.87 CZK over 2355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009907 BTC for 82.71 CZK @ 834,836 CZK\nFees are 0.29048846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (225.40578629686578453156960633 CZK)\nThe limits being 0.10 % (24.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44924292 BTC (239,894.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 533,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 834,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.34 % (135,150.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,038.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02877862 BTC (24,025.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.87 CZK over 2355 transactions" + } + ] + }, + { + "id": 4023, + "type": "message", + "date": "2023-11-27T13:00:06", + "date_unixtime": "1701086406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010002 BTC for 82.70 CZK @ 826,857 CZK\nFees are 0.29047100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (214.98287323302653868827629591 CZK)\nThe limits being 0.10 % (23.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44934294 BTC (239,977.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 826,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.82 % (131,565.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,955.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02887864 BTC (23,878.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.86 CZK over 2356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010002 BTC for 82.70 CZK @ 826,857 CZK\nFees are 0.29047100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (214.98287323302653868827629591 CZK)\nThe limits being 0.10 % (23.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44934294 BTC (239,977.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 826,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.82 % (131,565.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,955.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02887864 BTC (23,878.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.86 CZK over 2356 transactions" + } + ] + }, + { + "id": 4024, + "type": "message", + "date": "2023-11-27T17:00:06", + "date_unixtime": "1701100806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010071 BTC for 82.70 CZK @ 821,203 CZK\nFees are 0.29047480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (213.51273968772883429494139194 CZK)\nThe limits being 0.10 % (23.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44944365 BTC (240,060.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.75 % (129,024.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,872.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02897935 BTC (23,797.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.85 CZK over 2357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010071 BTC for 82.70 CZK @ 821,203 CZK\nFees are 0.29047480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (213.51273968772883429494139194 CZK)\nThe limits being 0.10 % (23.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44944365 BTC (240,060.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.75 % (129,024.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,872.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02897935 BTC (23,797.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.85 CZK over 2357 transactions" + } + ] + }, + { + "id": 4025, + "type": "message", + "date": "2023-11-27T21:00:06", + "date_unixtime": "1701115206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010072 BTC for 82.71 CZK @ 821,175 CZK\nFees are 0.29049375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (221.71721567049085151928536064 CZK)\nThe limits being 0.10 % (23.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44954437 BTC (240,143.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 821,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 53.72 % (129,011.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,789.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02908007 BTC (23,879.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.84 CZK over 2358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010072 BTC for 82.71 CZK @ 821,175 CZK\nFees are 0.29049375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (221.71721567049085151928536064 CZK)\nThe limits being 0.10 % (23.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44954437 BTC (240,143.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 821,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 53.72 % (129,011.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,789.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02908007 BTC (23,879.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.84 CZK over 2358 transactions" + } + ] + }, + { + "id": 4026, + "type": "message", + "date": "2023-11-28T01:00:06", + "date_unixtime": "1701129606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009984 BTC for 82.71 CZK @ 828,430 CZK\nFees are 0.29049965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (223.67600177324077268023456362 CZK)\nThe limits being 0.10 % (24.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44964421 BTC (240,226.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.06 % (132,272.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,706.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02917991 BTC (24,173.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.83 CZK over 2359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009984 BTC for 82.71 CZK @ 828,430 CZK\nFees are 0.29049965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (223.67600177324077268023456362 CZK)\nThe limits being 0.10 % (24.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44964421 BTC (240,226.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.06 % (132,272.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,706.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02917991 BTC (24,173.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.83 CZK over 2359 transactions" + } + ] + }, + { + "id": 4027, + "type": "message", + "date": "2023-11-28T05:00:06", + "date_unixtime": "1701144006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00010006 BTC for 82.70 CZK @ 826,533 CZK\nFees are 0.29047307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (198.36780686744903730407495412 CZK)\nThe limits being 0.10 % (24.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44974427 BTC (240,309.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 826,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.69 % (131,419.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,623.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02927997 BTC (24,200.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.83 CZK over 2360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00010006 BTC for 82.70 CZK @ 826,533 CZK\nFees are 0.29047307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (198.36780686744903730407495412 CZK)\nThe limits being 0.10 % (24.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44974427 BTC (240,309.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 826,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.69 % (131,419.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,623.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02927997 BTC (24,200.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.83 CZK over 2360 transactions" + } + ] + }, + { + "id": 4028, + "type": "message", + "date": "2023-11-28T09:00:07", + "date_unixtime": "1701158407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009987 BTC for 82.71 CZK @ 828,181 CZK\nFees are 0.29049969 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (231.89064762567022231042856958 CZK)\nThe limits being 0.10 % (24.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44984414 BTC (240,392.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 54.98 % (132,160.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,540.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02937984 BTC (24,331.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.82 CZK over 2361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009987 BTC for 82.71 CZK @ 828,181 CZK\nFees are 0.29049969 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (231.89064762567022231042856958 CZK)\nThe limits being 0.10 % (24.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44984414 BTC (240,392.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 54.98 % (132,160.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,540.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02937984 BTC (24,331.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.82 CZK over 2361 transactions" + } + ] + }, + { + "id": 4029, + "type": "message", + "date": "2023-11-28T13:00:06", + "date_unixtime": "1701172806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009984 BTC for 82.71 CZK @ 828,430 CZK\nFees are 0.29049965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (207.10740904929701174095792928 CZK)\nThe limits being 0.10 % (24.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.44994398 BTC (240,475.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 828,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.00 % (132,271.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,457.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02947968 BTC (24,421.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.81 CZK over 2362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009984 BTC for 82.71 CZK @ 828,430 CZK\nFees are 0.29049965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (207.10740904929701174095792928 CZK)\nThe limits being 0.10 % (24.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.44994398 BTC (240,475.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 828,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.00 % (132,271.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,457.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02947968 BTC (24,421.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.81 CZK over 2362 transactions" + } + ] + }, + { + "id": 4030, + "type": "message", + "date": "2023-11-28T17:00:06", + "date_unixtime": "1701187206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009966 BTC for 82.70 CZK @ 829,866 CZK\nFees are 0.29047876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (190.86922675612278558259017381 CZK)\nThe limits being 0.10 % (24.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45004364 BTC (240,558.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 829,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 55.25 % (132,917.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,374.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02957934 BTC (24,546.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.80 CZK over 2363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009966 BTC for 82.70 CZK @ 829,866 CZK\nFees are 0.29047876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (190.86922675612278558259017381 CZK)\nThe limits being 0.10 % (24.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45004364 BTC (240,558.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 829,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 55.25 % (132,917.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,374.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02957934 BTC (24,546.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.80 CZK over 2363 transactions" + } + ] + }, + { + "id": 4031, + "type": "message", + "date": "2023-11-28T21:00:07", + "date_unixtime": "1701201607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009829 BTC for 82.71 CZK @ 841,474 CZK\nFees are 0.29049273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (235.61261494221846287003525103 CZK)\nThe limits being 0.10 % (24.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45014193 BTC (240,641.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.41 % (138,141.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,291.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02967763 BTC (24,972.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.79 CZK over 2364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009829 BTC for 82.71 CZK @ 841,474 CZK\nFees are 0.29049273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (235.61261494221846287003525103 CZK)\nThe limits being 0.10 % (24.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45014193 BTC (240,641.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.41 % (138,141.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,291.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02967763 BTC (24,972.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.79 CZK over 2364 transactions" + } + ] + }, + { + "id": 4032, + "type": "message", + "date": "2023-11-29T01:00:09", + "date_unixtime": "1701216009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009911 BTC for 82.71 CZK @ 834,514 CZK\nFees are 0.29049342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (225.3186632147186190277324692 CZK)\nThe limits being 0.10 % (24.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45024104 BTC (240,724.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 834,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.08 % (135,008.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,208.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02977674 BTC (24,849.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.79 CZK over 2365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009911 BTC for 82.71 CZK @ 834,514 CZK\nFees are 0.29049342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (225.3186632147186190277324692 CZK)\nThe limits being 0.10 % (24.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45024104 BTC (240,724.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 834,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.08 % (135,008.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,208.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02977674 BTC (24,849.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.79 CZK over 2365 transactions" + } + ] + }, + { + "id": 4033, + "type": "message", + "date": "2023-11-29T05:00:06", + "date_unixtime": "1701230406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009872 BTC for 82.70 CZK @ 837,767 CZK\nFees are 0.29047849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (276.46321621690372190041499807 CZK)\nThe limits being 0.10 % (25.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45033976 BTC (240,807.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.67 % (136,472.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,125.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02987546 BTC (25,028.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.78 CZK over 2366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009872 BTC for 82.70 CZK @ 837,767 CZK\nFees are 0.29047849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (276.46321621690372190041499807 CZK)\nThe limits being 0.10 % (25.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45033976 BTC (240,807.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.67 % (136,472.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,125.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02987546 BTC (25,028.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.78 CZK over 2366 transactions" + } + ] + }, + { + "id": 4034, + "type": "message", + "date": "2023-11-29T09:00:07", + "date_unixtime": "1701244807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009806 BTC for 82.71 CZK @ 843,462 CZK\nFees are 0.29049767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (236.16925968980076971066289404 CZK)\nThe limits being 0.10 % (25.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45043782 BTC (240,890.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.72 % (139,036.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,042.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02997352 BTC (25,281.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.77 CZK over 2367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009806 BTC for 82.71 CZK @ 843,462 CZK\nFees are 0.29049767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (236.16925968980076971066289404 CZK)\nThe limits being 0.10 % (25.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45043782 BTC (240,890.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.72 % (139,036.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,042.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02997352 BTC (25,281.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.77 CZK over 2367 transactions" + } + ] + }, + { + "id": 4035, + "type": "message", + "date": "2023-11-29T13:00:06", + "date_unixtime": "1701259206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009782 BTC for 82.71 CZK @ 845,488 CZK\nFees are 0.29048274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (236.73653381433231491863939308 CZK)\nThe limits being 0.10 % (25.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45053564 BTC (240,973.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 845,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.08 % (139,949.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,959.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03007134 BTC (25,424.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.76 CZK over 2368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009782 BTC for 82.71 CZK @ 845,488 CZK\nFees are 0.29048274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (236.73653381433231491863939308 CZK)\nThe limits being 0.10 % (25.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45053564 BTC (240,973.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 845,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.08 % (139,949.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,959.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03007134 BTC (25,424.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.76 CZK over 2368 transactions" + } + ] + }, + { + "id": 4036, + "type": "message", + "date": "2023-11-29T17:00:06", + "date_unixtime": "1701273606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009867 BTC for 82.70 CZK @ 838,174 CZK\nFees are 0.29047228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (234.68869655708415700616909429 CZK)\nThe limits being 0.10 % (25.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45063431 BTC (241,056.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.69 % (136,653.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,876.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03017001 BTC (25,287.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.75 CZK over 2369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009867 BTC for 82.70 CZK @ 838,174 CZK\nFees are 0.29047228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (234.68869655708415700616909429 CZK)\nThe limits being 0.10 % (25.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45063431 BTC (241,056.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.69 % (136,653.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,876.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03017001 BTC (25,287.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.75 CZK over 2369 transactions" + } + ] + }, + { + "id": 4037, + "type": "message", + "date": "2023-11-29T21:00:06", + "date_unixtime": "1701288006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009871 BTC for 82.70 CZK @ 837,844 CZK\nFees are 0.29047574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (259.73171597211401266673925227 CZK)\nThe limits being 0.10 % (25.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45073302 BTC (241,139.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 534,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.61 % (136,504.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,793.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03026872 BTC (25,360.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.75 CZK over 2370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009871 BTC for 82.70 CZK @ 837,844 CZK\nFees are 0.29047574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (259.73171597211401266673925227 CZK)\nThe limits being 0.10 % (25.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45073302 BTC (241,139.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 534,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.61 % (136,504.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,793.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03026872 BTC (25,360.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.75 CZK over 2370 transactions" + } + ] + }, + { + "id": 4038, + "type": "message", + "date": "2023-11-30T01:00:06", + "date_unixtime": "1701302406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009871 BTC for 82.70 CZK @ 837,843 CZK\nFees are 0.29047539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (335.13729845449749703411174048 CZK)\nThe limits being 0.10 % (25.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45083173 BTC (241,222.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 837,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.59 % (136,504.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,710.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03036743 BTC (25,443.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.74 CZK over 2371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009871 BTC for 82.70 CZK @ 837,843 CZK\nFees are 0.29047539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (335.13729845449749703411174048 CZK)\nThe limits being 0.10 % (25.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45083173 BTC (241,222.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 837,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.59 % (136,504.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,710.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03036743 BTC (25,443.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.74 CZK over 2371 transactions" + } + ] + }, + { + "id": 4039, + "type": "message", + "date": "2023-11-30T05:00:07", + "date_unixtime": "1701316807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009829 BTC for 82.71 CZK @ 841,454 CZK\nFees are 0.29048583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (328.16692142056672842528006186 CZK)\nThe limits being 0.10 % (25.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45093002 BTC (241,305.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 841,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.24 % (138,131.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,627.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03046572 BTC (25,635.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.73 CZK over 2372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009829 BTC for 82.71 CZK @ 841,454 CZK\nFees are 0.29048583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (328.16692142056672842528006186 CZK)\nThe limits being 0.10 % (25.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45093002 BTC (241,305.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 841,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.24 % (138,131.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,627.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03046572 BTC (25,635.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.73 CZK over 2372 transactions" + } + ] + }, + { + "id": 4040, + "type": "message", + "date": "2023-11-30T09:00:07", + "date_unixtime": "1701331207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009851 BTC for 82.71 CZK @ 839,576 CZK\nFees are 0.29048620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (361.01747281327858838598455300 CZK)\nThe limits being 0.10 % (25.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45102853 BTC (241,388.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 839,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.87 % (137,284.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,544.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03056423 BTC (25,660.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.72 CZK over 2373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009851 BTC for 82.71 CZK @ 839,576 CZK\nFees are 0.29048620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (361.01747281327858838598455300 CZK)\nThe limits being 0.10 % (25.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45102853 BTC (241,388.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 839,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.87 % (137,284.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,544.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03056423 BTC (25,660.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.72 CZK over 2373 transactions" + } + ] + }, + { + "id": 4041, + "type": "message", + "date": "2023-11-30T13:00:06", + "date_unixtime": "1701345606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009814 BTC for 82.71 CZK @ 842,733 CZK\nFees are 0.29048363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (269.67467782467904011119021066 CZK)\nThe limits being 0.10 % (25.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45112667 BTC (241,471.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.44 % (138,708.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,461.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03066237 BTC (25,840.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.71 CZK over 2374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009814 BTC for 82.71 CZK @ 842,733 CZK\nFees are 0.29048363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (269.67467782467904011119021066 CZK)\nThe limits being 0.10 % (25.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45112667 BTC (241,471.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.44 % (138,708.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,461.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03066237 BTC (25,840.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.71 CZK over 2374 transactions" + } + ] + }, + { + "id": 4042, + "type": "message", + "date": "2023-11-30T17:00:07", + "date_unixtime": "1701360007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009867 BTC for 82.71 CZK @ 838,228 CZK\nFees are 0.29049097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (268.23291598691091769664590877 CZK)\nThe limits being 0.10 % (25.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45122534 BTC (241,554.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 838,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 56.58 % (136,675.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,378.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03076104 BTC (25,784.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.71 CZK over 2375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009867 BTC for 82.71 CZK @ 838,228 CZK\nFees are 0.29049097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (268.23291598691091769664590877 CZK)\nThe limits being 0.10 % (25.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45122534 BTC (241,554.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 838,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 56.58 % (136,675.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,378.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03076104 BTC (25,784.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.71 CZK over 2375 transactions" + } + ] + }, + { + "id": 4043, + "type": "message", + "date": "2023-11-30T21:00:06", + "date_unixtime": "1701374406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009804 BTC for 82.71 CZK @ 843,617 CZK\nFees are 0.29049208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (219.34054643509040268485027009 CZK)\nThe limits being 0.10 % (26.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45132338 BTC (241,637.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 843,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.57 % (139,107.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,295.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03085908 BTC (26,033.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.70 CZK over 2376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009804 BTC for 82.71 CZK @ 843,617 CZK\nFees are 0.29049208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (219.34054643509040268485027009 CZK)\nThe limits being 0.10 % (26.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45132338 BTC (241,637.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 843,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.57 % (139,107.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,295.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03085908 BTC (26,033.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.70 CZK over 2376 transactions" + } + ] + }, + { + "id": 4044, + "type": "message", + "date": "2023-12-01T01:00:06", + "date_unixtime": "1701388806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009814 BTC for 82.71 CZK @ 842,770 CZK\nFees are 0.29049637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (219.12028612511599660003925531 CZK)\nThe limits being 0.10 % (26.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45142152 BTC (241,720.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 842,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 57.39 % (138,724.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,212.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03095722 BTC (26,089.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.69 CZK over 2377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009814 BTC for 82.71 CZK @ 842,770 CZK\nFees are 0.29049637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (219.12028612511599660003925531 CZK)\nThe limits being 0.10 % (26.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45142152 BTC (241,720.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 842,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 57.39 % (138,724.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,212.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03095722 BTC (26,089.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.69 CZK over 2377 transactions" + } + ] + }, + { + "id": 4045, + "type": "message", + "date": "2023-12-01T05:00:06", + "date_unixtime": "1701403206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009741 BTC for 82.71 CZK @ 849,095 CZK\nFees are 0.29049941 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.87 % (492.47511297155367362982256896 CZK)\nThe limits being 0.10 % (26.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45151893 BTC (241,803.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 849,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.55 % (141,579.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,129.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03105463 BTC (26,368.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.68 CZK over 2378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009741 BTC for 82.71 CZK @ 849,095 CZK\nFees are 0.29049941 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.87 % (492.47511297155367362982256896 CZK)\nThe limits being 0.10 % (26.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45151893 BTC (241,803.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 849,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.55 % (141,579.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,129.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03105463 BTC (26,368.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.68 CZK over 2378 transactions" + } + ] + }, + { + "id": 4046, + "type": "message", + "date": "2023-12-01T09:00:06", + "date_unixtime": "1701417606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009673 BTC for 82.71 CZK @ 855,044 CZK\nFees are 0.29049263 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (171.00881763409375981748157268 CZK)\nThe limits being 0.10 % (26.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45161566 BTC (241,886.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 855,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 59.64 % (144,265.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,046.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03115136 BTC (26,635.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.68 CZK over 2379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009673 BTC for 82.71 CZK @ 855,044 CZK\nFees are 0.29049263 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (171.00881763409375981748157268 CZK)\nThe limits being 0.10 % (26.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45161566 BTC (241,886.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 855,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 59.64 % (144,265.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,046.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03115136 BTC (26,635.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.68 CZK over 2379 transactions" + } + ] + }, + { + "id": 4047, + "type": "message", + "date": "2023-12-01T13:00:06", + "date_unixtime": "1701432006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009593 BTC for 82.71 CZK @ 862,162 CZK\nFees are 0.29048836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (232.78373676807500237233894858 CZK)\nThe limits being 0.10 % (26.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45171159 BTC (241,969.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 862,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.95 % (147,479.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,963.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03124729 BTC (26,940.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.67 CZK over 2380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009593 BTC for 82.71 CZK @ 862,162 CZK\nFees are 0.29048836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (232.78373676807500237233894858 CZK)\nThe limits being 0.10 % (26.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45171159 BTC (241,969.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 862,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.95 % (147,479.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,963.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03124729 BTC (26,940.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.67 CZK over 2380 transactions" + } + ] + }, + { + "id": 4048, + "type": "message", + "date": "2023-12-01T17:00:07", + "date_unixtime": "1701446407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009586 BTC for 82.71 CZK @ 862,796 CZK\nFees are 0.29048997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.53 % (414.14225052291941692496874336 CZK)\nThe limits being 0.10 % (27.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45180745 BTC (242,052.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 862,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.05 % (147,765.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,880.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03134315 BTC (27,042.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.66 CZK over 2381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009586 BTC for 82.71 CZK @ 862,796 CZK\nFees are 0.29048997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.53 % (414.14225052291941692496874336 CZK)\nThe limits being 0.10 % (27.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45180745 BTC (242,052.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 862,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.05 % (147,765.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,880.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03134315 BTC (27,042.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.66 CZK over 2381 transactions" + } + ] + }, + { + "id": 4049, + "type": "message", + "date": "2023-12-01T21:00:07", + "date_unixtime": "1701460807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009545 BTC for 82.71 CZK @ 866,495 CZK\nFees are 0.29048737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (424.58238641548712559994967848 CZK)\nThe limits being 0.10 % (27.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45190290 BTC (242,135.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 866,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.72 % (149,436.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,797.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03143860 BTC (27,241.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.65 CZK over 2382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009545 BTC for 82.71 CZK @ 866,495 CZK\nFees are 0.29048737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (424.58238641548712559994967848 CZK)\nThe limits being 0.10 % (27.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45190290 BTC (242,135.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 866,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.72 % (149,436.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,797.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03143860 BTC (27,241.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.65 CZK over 2382 transactions" + } + ] + }, + { + "id": 4050, + "type": "message", + "date": "2023-12-02T01:00:06", + "date_unixtime": "1701475206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009568 BTC for 82.70 CZK @ 864,385 CZK\nFees are 0.29047830 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (259.31543123315886037664162055 CZK)\nThe limits being 0.10 % (27.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45199858 BTC (242,218.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 864,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.30 % (148,482.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,714.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03153428 BTC (27,257.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.64 CZK over 2383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009568 BTC for 82.70 CZK @ 864,385 CZK\nFees are 0.29047830 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (259.31543123315886037664162055 CZK)\nThe limits being 0.10 % (27.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45199858 BTC (242,218.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 864,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.30 % (148,482.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,714.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03153428 BTC (27,257.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.64 CZK over 2383 transactions" + } + ] + }, + { + "id": 4051, + "type": "message", + "date": "2023-12-02T05:00:08", + "date_unixtime": "1701489608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009741 BTC for 82.71 CZK @ 849,095 CZK\nFees are 0.29049941 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (229.25565603848188255181395451 CZK)\nThe limits being 0.10 % (26.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45209599 BTC (242,301.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 535,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 849,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.43 % (141,571.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,631.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03163169 BTC (26,858.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.64 CZK over 2384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009741 BTC for 82.71 CZK @ 849,095 CZK\nFees are 0.29049941 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (229.25565603848188255181395451 CZK)\nThe limits being 0.10 % (26.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45209599 BTC (242,301.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 535,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 849,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.43 % (141,571.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,631.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03163169 BTC (26,858.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.64 CZK over 2384 transactions" + } + ] + }, + { + "id": 4052, + "type": "message", + "date": "2023-12-02T09:00:07", + "date_unixtime": "1701504007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009565 BTC for 82.70 CZK @ 864,645 CZK\nFees are 0.29047448 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (224.80757304062024420018695675 CZK)\nThe limits being 0.10 % (27.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45219164 BTC (242,384.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 864,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.31 % (148,601.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,548.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03172734 BTC (27,432.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.63 CZK over 2385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009565 BTC for 82.70 CZK @ 864,645 CZK\nFees are 0.29047448 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (224.80757304062024420018695675 CZK)\nThe limits being 0.10 % (27.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45219164 BTC (242,384.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 864,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.31 % (148,601.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,548.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03172734 BTC (27,432.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.63 CZK over 2385 transactions" + } + ] + }, + { + "id": 4053, + "type": "message", + "date": "2023-12-02T13:00:08", + "date_unixtime": "1701518408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009572 BTC for 82.71 CZK @ 864,060 CZK\nFees are 0.29049058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (207.37442270898491302172442418 CZK)\nThe limits being 0.10 % (27.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45228736 BTC (242,467.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 864,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.18 % (148,336.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,465.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03182306 BTC (27,497.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.62 CZK over 2386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009572 BTC for 82.71 CZK @ 864,060 CZK\nFees are 0.29049058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (207.37442270898491302172442418 CZK)\nThe limits being 0.10 % (27.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45228736 BTC (242,467.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 864,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.18 % (148,336.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,465.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03182306 BTC (27,497.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.62 CZK over 2386 transactions" + } + ] + }, + { + "id": 4054, + "type": "message", + "date": "2023-12-02T17:00:07", + "date_unixtime": "1701532807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009550 BTC for 82.62 CZK @ 865,172 CZK\nFees are 0.29019597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (363.37234377479867583875284669 CZK)\nThe limits being 0.10 % (27.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45238286 BTC (242,549.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 865,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.36 % (148,839.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,383.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03191856 BTC (27,615.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.61 CZK over 2387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009550 BTC for 82.62 CZK @ 865,172 CZK\nFees are 0.29019597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (363.37234377479867583875284669 CZK)\nThe limits being 0.10 % (27.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45238286 BTC (242,549.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 865,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.36 % (148,839.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,383.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03191856 BTC (27,615.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.61 CZK over 2387 transactions" + } + ] + }, + { + "id": 4055, + "type": "message", + "date": "2023-12-02T21:00:06", + "date_unixtime": "1701547206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009482 BTC for 82.71 CZK @ 872,263 CZK\nFees are 0.29049107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (392.51831050193758672320365328 CZK)\nThe limits being 0.10 % (27.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45247768 BTC (242,632.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 872,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.67 % (152,046.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,300.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03201338 BTC (27,924.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.61 CZK over 2388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009482 BTC for 82.71 CZK @ 872,263 CZK\nFees are 0.29049107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (392.51831050193758672320365328 CZK)\nThe limits being 0.10 % (27.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45247768 BTC (242,632.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 872,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.67 % (152,046.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,300.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03201338 BTC (27,924.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.61 CZK over 2388 transactions" + } + ] + }, + { + "id": 4056, + "type": "message", + "date": "2023-12-03T01:00:07", + "date_unixtime": "1701561607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009463 BTC for 82.71 CZK @ 874,028 CZK\nFees are 0.29049568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.46 % (410.79323115371166572707243974 CZK)\nThe limits being 0.10 % (28.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45257231 BTC (242,715.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 874,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.97 % (152,845.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,217.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03210801 BTC (28,063.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.60 CZK over 2389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009463 BTC for 82.71 CZK @ 874,028 CZK\nFees are 0.29049568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.46 % (410.79323115371166572707243974 CZK)\nThe limits being 0.10 % (28.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45257231 BTC (242,715.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 874,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.97 % (152,845.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,217.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03210801 BTC (28,063.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.60 CZK over 2389 transactions" + } + ] + }, + { + "id": 4057, + "type": "message", + "date": "2023-12-03T05:00:06", + "date_unixtime": "1701576006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009474 BTC for 82.71 CZK @ 872,999 CZK\nFees are 0.29049097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (462.68956422207727881694205386 CZK)\nThe limits being 0.10 % (28.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45266705 BTC (242,798.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 872,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.76 % (152,379.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,134.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03220275 BTC (28,112.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.59 CZK over 2390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009474 BTC for 82.71 CZK @ 872,999 CZK\nFees are 0.29049097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (462.68956422207727881694205386 CZK)\nThe limits being 0.10 % (28.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45266705 BTC (242,798.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 872,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.76 % (152,379.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,134.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03220275 BTC (28,112.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.59 CZK over 2390 transactions" + } + ] + }, + { + "id": 4058, + "type": "message", + "date": "2023-12-03T09:00:05", + "date_unixtime": "1701590405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009416 BTC for 82.70 CZK @ 878,318 CZK\nFees are 0.29047154 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (570.90661703790344668765522880 CZK)\nThe limits being 0.10 % (28.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45276121 BTC (242,881.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 878,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.73 % (154,786.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,051.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03229691 BTC (28,366.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.58 CZK over 2391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009416 BTC for 82.70 CZK @ 878,318 CZK\nFees are 0.29047154 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (570.90661703790344668765522880 CZK)\nThe limits being 0.10 % (28.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45276121 BTC (242,881.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 878,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.73 % (154,786.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,051.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03229691 BTC (28,366.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.58 CZK over 2391 transactions" + } + ] + }, + { + "id": 4059, + "type": "message", + "date": "2023-12-03T13:00:07", + "date_unixtime": "1701604807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009397 BTC for 82.71 CZK @ 880,150 CZK\nFees are 0.29049012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (607.30353092048427502782508748 CZK)\nThe limits being 0.10 % (28.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45285518 BTC (242,964.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 880,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 64.05 % (155,615.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,968.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03239088 BTC (28,508.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.57 CZK over 2392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009397 BTC for 82.71 CZK @ 880,150 CZK\nFees are 0.29049012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (607.30353092048427502782508748 CZK)\nThe limits being 0.10 % (28.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45285518 BTC (242,964.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 880,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 64.05 % (155,615.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,968.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03239088 BTC (28,508.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.57 CZK over 2392 transactions" + } + ] + }, + { + "id": 4060, + "type": "message", + "date": "2023-12-03T17:00:07", + "date_unixtime": "1701619207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009408 BTC for 82.71 CZK @ 879,123 CZK\nFees are 0.29049082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (606.59491778774289985052316895 CZK)\nThe limits being 0.10 % (28.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45294926 BTC (243,047.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 879,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.84 % (155,150.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,885.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03248496 BTC (28,558.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.57 CZK over 2393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009408 BTC for 82.71 CZK @ 879,123 CZK\nFees are 0.29049082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (606.59491778774289985052316895 CZK)\nThe limits being 0.10 % (28.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45294926 BTC (243,047.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 879,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.84 % (155,150.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,885.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03248496 BTC (28,558.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.57 CZK over 2393 transactions" + } + ] + }, + { + "id": 4061, + "type": "message", + "date": "2023-12-03T21:00:07", + "date_unixtime": "1701633607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009372 BTC for 82.71 CZK @ 882,504 CZK\nFees are 0.29049204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (608.92755096279538899383527694 CZK)\nThe limits being 0.10 % (28.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45304298 BTC (243,130.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 882,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 64.44 % (156,681.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,802.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03257868 BTC (28,750.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.56 CZK over 2394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009372 BTC for 82.71 CZK @ 882,504 CZK\nFees are 0.29049204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.12 % (608.92755096279538899383527694 CZK)\nThe limits being 0.10 % (28.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45304298 BTC (243,130.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 882,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 64.44 % (156,681.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,802.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03257868 BTC (28,750.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.56 CZK over 2394 transactions" + } + ] + }, + { + "id": 4062, + "type": "message", + "date": "2023-12-04T01:00:07", + "date_unixtime": "1701648007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009279 BTC for 82.70 CZK @ 891,306 CZK\nFees are 0.29047809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.11 % (615.00108254797184957723944210 CZK)\nThe limits being 0.10 % (29.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45313577 BTC (243,213.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 891,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 66.06 % (160,668.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,719.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03267147 BTC (29,120.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.55 CZK over 2395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009279 BTC for 82.70 CZK @ 891,306 CZK\nFees are 0.29047809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.11 % (615.00108254797184957723944210 CZK)\nThe limits being 0.10 % (29.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45313577 BTC (243,213.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 891,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 66.06 % (160,668.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,719.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03267147 BTC (29,120.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.55 CZK over 2395 transactions" + } + ] + }, + { + "id": 4063, + "type": "message", + "date": "2023-12-04T05:00:08", + "date_unixtime": "1701662408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009106 BTC for 82.71 CZK @ 908,276 CZK\nFees are 0.29048981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.98 % (590.37939285857723314325623551 CZK)\nThe limits being 0.10 % (29.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45322683 BTC (243,296.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 908,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.20 % (168,358.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,636.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03276253 BTC (29,757.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.54 CZK over 2396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009106 BTC for 82.71 CZK @ 908,276 CZK\nFees are 0.29048981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.98 % (590.37939285857723314325623551 CZK)\nThe limits being 0.10 % (29.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45322683 BTC (243,296.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 908,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.20 % (168,358.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,636.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03276253 BTC (29,757.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.54 CZK over 2396 transactions" + } + ] + }, + { + "id": 4064, + "type": "message", + "date": "2023-12-04T09:00:07", + "date_unixtime": "1701676807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008919 BTC for 82.70 CZK @ 927,290 CZK\nFees are 0.29048063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (574.91981383467092667534913826 CZK)\nThe limits being 0.10 % (30.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45331602 BTC (243,379.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 927,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.72 % (176,975.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,553.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03285172 BTC (30,463.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.54 CZK over 2397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008919 BTC for 82.70 CZK @ 927,290 CZK\nFees are 0.29048063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (574.91981383467092667534913826 CZK)\nThe limits being 0.10 % (30.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45331602 BTC (243,379.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 927,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.72 % (176,975.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,553.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03285172 BTC (30,463.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.54 CZK over 2397 transactions" + } + ] + }, + { + "id": 4065, + "type": "message", + "date": "2023-12-04T13:00:06", + "date_unixtime": "1701691206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008884 BTC for 82.71 CZK @ 930,961 CZK\nFees are 0.29048628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (288.59802164284526893378802288 CZK)\nThe limits being 0.10 % (30.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45340486 BTC (243,462.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 536,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 930,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.37 % (178,639.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,470.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03294056 BTC (30,666.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.53 CZK over 2398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008884 BTC for 82.71 CZK @ 930,961 CZK\nFees are 0.29048628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (288.59802164284526893378802288 CZK)\nThe limits being 0.10 % (30.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45340486 BTC (243,462.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 536,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 930,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.37 % (178,639.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,470.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03294056 BTC (30,666.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.53 CZK over 2398 transactions" + } + ] + }, + { + "id": 4066, + "type": "message", + "date": "2023-12-04T17:00:06", + "date_unixtime": "1701705606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008893 BTC for 82.70 CZK @ 930,000 CZK\nFees are 0.29048038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (409.20014027144732556708217516 CZK)\nThe limits being 0.10 % (30.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45349379 BTC (243,545.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 930,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.17 % (178,203.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,387.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03302949 BTC (30,717.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.52 CZK over 2399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008893 BTC for 82.70 CZK @ 930,000 CZK\nFees are 0.29048038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (409.20014027144732556708217516 CZK)\nThe limits being 0.10 % (30.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45349379 BTC (243,545.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 930,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.17 % (178,203.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,387.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03302949 BTC (30,717.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.52 CZK over 2399 transactions" + } + ] + }, + { + "id": 4067, + "type": "message", + "date": "2023-12-04T21:00:06", + "date_unixtime": "1701720006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008761 BTC for 82.63 CZK @ 943,117 CZK\nFees are 0.29020473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (433.83363226083436883133664064 CZK)\nThe limits being 0.10 % (31.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45358140 BTC (243,628.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.59 % (184,151.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,304.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03311710 BTC (31,233.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.51 CZK over 2400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008761 BTC for 82.63 CZK @ 943,117 CZK\nFees are 0.29020473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (433.83363226083436883133664064 CZK)\nThe limits being 0.10 % (31.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45358140 BTC (243,628.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.59 % (184,151.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,304.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03311710 BTC (31,233.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.51 CZK over 2400 transactions" + } + ] + }, + { + "id": 4068, + "type": "message", + "date": "2023-12-05T01:00:07", + "date_unixtime": "1701734407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008760 BTC for 82.70 CZK @ 944,117 CZK\nFees are 0.29047948 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.63 % (509.82330806560599545426623258 CZK)\nThe limits being 0.10 % (31.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45366900 BTC (243,711.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.75 % (184,604.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,221.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03320470 BTC (31,349.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.50 CZK over 2401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008760 BTC for 82.70 CZK @ 944,117 CZK\nFees are 0.29047948 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.63 % (509.82330806560599545426623258 CZK)\nThe limits being 0.10 % (31.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45366900 BTC (243,711.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.75 % (184,604.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,221.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03320470 BTC (31,349.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.50 CZK over 2401 transactions" + } + ] + }, + { + "id": 4069, + "type": "message", + "date": "2023-12-05T05:00:06", + "date_unixtime": "1701748806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008807 BTC for 82.70 CZK @ 939,063 CZK\nFees are 0.29047468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.77 % (554.04733432984554060787244643 CZK)\nThe limits being 0.10 % (31.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45375707 BTC (243,794.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 939,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.78 % (182,311.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,138.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03329277 BTC (31,264.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.50 CZK over 2402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008807 BTC for 82.70 CZK @ 939,063 CZK\nFees are 0.29047468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.77 % (554.04733432984554060787244643 CZK)\nThe limits being 0.10 % (31.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45375707 BTC (243,794.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 939,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.78 % (182,311.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,138.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03329277 BTC (31,264.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.50 CZK over 2402 transactions" + } + ] + }, + { + "id": 4070, + "type": "message", + "date": "2023-12-05T09:00:07", + "date_unixtime": "1701763207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008834 BTC for 82.70 CZK @ 936,208 CZK\nFees are 0.29047932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.95 % (608.53528225695011990521289594 CZK)\nThe limits being 0.10 % (31.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45384541 BTC (243,877.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 936,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.22 % (181,015.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,055.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03338111 BTC (31,251.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.49 CZK over 2403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008834 BTC for 82.70 CZK @ 936,208 CZK\nFees are 0.29047932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.95 % (608.53528225695011990521289594 CZK)\nThe limits being 0.10 % (31.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45384541 BTC (243,877.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 936,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.22 % (181,015.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,055.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03338111 BTC (31,251.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.49 CZK over 2403 transactions" + } + ] + }, + { + "id": 4071, + "type": "message", + "date": "2023-12-05T13:00:07", + "date_unixtime": "1701777607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008821 BTC for 82.71 CZK @ 937,601 CZK\nFees are 0.29048331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.94 % (609.44047931209138946687387704 CZK)\nThe limits being 0.10 % (31.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45393362 BTC (243,960.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 937,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.46 % (181,647.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,972.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03346932 BTC (31,380.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.48 CZK over 2404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008821 BTC for 82.71 CZK @ 937,601 CZK\nFees are 0.29048331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.94 % (609.44047931209138946687387704 CZK)\nThe limits being 0.10 % (31.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45393362 BTC (243,960.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 937,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.46 % (181,647.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,972.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03346932 BTC (31,380.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.48 CZK over 2404 transactions" + } + ] + }, + { + "id": 4072, + "type": "message", + "date": "2023-12-05T17:00:07", + "date_unixtime": "1701792007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008695 BTC for 82.71 CZK @ 951,216 CZK\nFees are 0.29049203 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (351.94997767388607957255987026 CZK)\nThe limits being 0.10 % (31.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45402057 BTC (244,043.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.96 % (187,827.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,889.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03355627 BTC (31,919.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.47 CZK over 2405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008695 BTC for 82.71 CZK @ 951,216 CZK\nFees are 0.29049203 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (351.94997767388607957255987026 CZK)\nThe limits being 0.10 % (31.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45402057 BTC (244,043.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.96 % (187,827.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,889.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03355627 BTC (31,919.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.47 CZK over 2405 transactions" + } + ] + }, + { + "id": 4073, + "type": "message", + "date": "2023-12-05T21:00:07", + "date_unixtime": "1701806407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008365 BTC for 82.70 CZK @ 988,670 CZK\nFees are 0.29047090 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.19 % (395.46791828123385246675488152 CZK)\nThe limits being 0.10 % (33.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45410422 BTC (244,126.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.90 % (204,832.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,806.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03363992 BTC (33,258.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.47 CZK over 2406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008365 BTC for 82.70 CZK @ 988,670 CZK\nFees are 0.29047090 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.19 % (395.46791828123385246675488152 CZK)\nThe limits being 0.10 % (33.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45410422 BTC (244,126.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.90 % (204,832.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,806.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03363992 BTC (33,258.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.47 CZK over 2406 transactions" + } + ] + }, + { + "id": 4074, + "type": "message", + "date": "2023-12-06T01:00:07", + "date_unixtime": "1701820807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008324 BTC for 82.71 CZK @ 993,595 CZK\nFees are 0.29048709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (466.98959493047759080603759024 CZK)\nThe limits being 0.10 % (33.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45418746 BTC (244,209.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.79 % (207,068.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,723.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03372316 BTC (33,507.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.46 CZK over 2407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008324 BTC for 82.71 CZK @ 993,595 CZK\nFees are 0.29048709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (466.98959493047759080603759024 CZK)\nThe limits being 0.10 % (33.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45418746 BTC (244,209.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.79 % (207,068.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,723.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03372316 BTC (33,507.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.46 CZK over 2407 transactions" + } + ] + }, + { + "id": 4075, + "type": "message", + "date": "2023-12-06T05:00:07", + "date_unixtime": "1701835207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008389 BTC for 82.71 CZK @ 985,904 CZK\nFees are 0.29048924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (483.09274194271652506250771006 CZK)\nThe limits being 0.10 % (33.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45427135 BTC (244,292.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 985,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.33 % (203,574.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,640.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03380705 BTC (33,330.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.45 CZK over 2408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008389 BTC for 82.71 CZK @ 985,904 CZK\nFees are 0.29048924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (483.09274194271652506250771006 CZK)\nThe limits being 0.10 % (33.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45427135 BTC (244,292.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 985,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.33 % (203,574.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,640.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03380705 BTC (33,330.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.45 CZK over 2408 transactions" + } + ] + }, + { + "id": 4076, + "type": "message", + "date": "2023-12-06T09:00:11", + "date_unixtime": "1701849611", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008408 BTC for 82.70 CZK @ 983,617 CZK\nFees are 0.29047187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (481.97224962038194577778915563 CZK)\nThe limits being 0.10 % (33.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45435543 BTC (244,375.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 983,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.88 % (202,535.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,557.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03389113 BTC (33,335.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.44 CZK over 2409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008408 BTC for 82.70 CZK @ 983,617 CZK\nFees are 0.29047187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (481.97224962038194577778915563 CZK)\nThe limits being 0.10 % (33.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45435543 BTC (244,375.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 983,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.88 % (202,535.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,557.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03389113 BTC (33,335.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.44 CZK over 2409 transactions" + } + ] + }, + { + "id": 4077, + "type": "message", + "date": "2023-12-06T13:00:08", + "date_unixtime": "1701864008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008370 BTC for 82.70 CZK @ 988,079 CZK\nFees are 0.29047096 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (553.32445539774469166757448098 CZK)\nThe limits being 0.10 % (33.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45443913 BTC (244,458.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 537,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.68 % (204,563.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,474.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03397483 BTC (33,569.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.44 CZK over 2410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008370 BTC for 82.70 CZK @ 988,079 CZK\nFees are 0.29047096 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (553.32445539774469166757448098 CZK)\nThe limits being 0.10 % (33.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45443913 BTC (244,458.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 537,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.68 % (204,563.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,474.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03397483 BTC (33,569.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.44 CZK over 2410 transactions" + } + ] + }, + { + "id": 4078, + "type": "message", + "date": "2023-12-06T17:00:08", + "date_unixtime": "1701878408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008384 BTC for 82.71 CZK @ 986,520 CZK\nFees are 0.29049761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.79 % (601.77716346674996291605335526 CZK)\nThe limits being 0.10 % (33.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45452297 BTC (244,541.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 986,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.36 % (203,854.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,391.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03405867 BTC (33,599.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.43 CZK over 2411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008384 BTC for 82.71 CZK @ 986,520 CZK\nFees are 0.29049761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.79 % (601.77716346674996291605335526 CZK)\nThe limits being 0.10 % (33.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45452297 BTC (244,541.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 986,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.36 % (203,854.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,391.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03405867 BTC (33,599.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.43 CZK over 2411 transactions" + } + ] + }, + { + "id": 4079, + "type": "message", + "date": "2023-12-06T21:00:07", + "date_unixtime": "1701892807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008336 BTC for 82.70 CZK @ 992,113 CZK\nFees are 0.29047210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.79 % (605.18915001190650382012285217 CZK)\nThe limits being 0.10 % (33.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45460633 BTC (244,624.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.37 % (206,396.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,308.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03414203 BTC (33,872.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.42 CZK over 2412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008336 BTC for 82.70 CZK @ 992,113 CZK\nFees are 0.29047210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.79 % (605.18915001190650382012285217 CZK)\nThe limits being 0.10 % (33.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45460633 BTC (244,624.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.37 % (206,396.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,308.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03414203 BTC (33,872.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.42 CZK over 2412 transactions" + } + ] + }, + { + "id": 4080, + "type": "message", + "date": "2023-12-07T01:00:07", + "date_unixtime": "1701907207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008371 BTC for 82.70 CZK @ 987,981 CZK\nFees are 0.29047688 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (602.66870414545387881156842226 CZK)\nThe limits being 0.10 % (33.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45469004 BTC (244,707.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.58 % (204,517.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,225.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03422574 BTC (33,814.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.41 CZK over 2413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008371 BTC for 82.70 CZK @ 987,981 CZK\nFees are 0.29047688 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (602.66870414545387881156842226 CZK)\nThe limits being 0.10 % (33.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45469004 BTC (244,707.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.58 % (204,517.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,225.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03422574 BTC (33,814.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.41 CZK over 2413 transactions" + } + ] + }, + { + "id": 4081, + "type": "message", + "date": "2023-12-07T05:00:07", + "date_unixtime": "1701921607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008345 BTC for 82.70 CZK @ 991,068 CZK\nFees are 0.29047944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (604.55172587256764296800622630 CZK)\nThe limits being 0.10 % (34.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45477349 BTC (244,790.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.12 % (205,920.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,142.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03430919 BTC (34,002.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.40 CZK over 2414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008345 BTC for 82.70 CZK @ 991,068 CZK\nFees are 0.29047944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (604.55172587256764296800622630 CZK)\nThe limits being 0.10 % (34.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45477349 BTC (244,790.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.12 % (205,920.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,142.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03430919 BTC (34,002.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.40 CZK over 2414 transactions" + } + ] + }, + { + "id": 4082, + "type": "message", + "date": "2023-12-07T09:00:08", + "date_unixtime": "1701936008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008363 BTC for 82.70 CZK @ 988,914 CZK\nFees are 0.29047305 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (365.89801443840495846743738778 CZK)\nThe limits being 0.10 % (34.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45485712 BTC (244,873.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.69 % (204,940.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,059.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03439282 BTC (34,011.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.40 CZK over 2415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008363 BTC for 82.70 CZK @ 988,914 CZK\nFees are 0.29047305 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (365.89801443840495846743738778 CZK)\nThe limits being 0.10 % (34.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45485712 BTC (244,873.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.69 % (204,940.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,059.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03439282 BTC (34,011.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.40 CZK over 2415 transactions" + } + ] + }, + { + "id": 4083, + "type": "message", + "date": "2023-12-07T13:00:08", + "date_unixtime": "1701950408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008460 BTC for 82.70 CZK @ 977,595 CZK\nFees are 0.29047896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (234.62276231770364009654153724 CZK)\nThe limits being 0.10 % (33.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45494172 BTC (244,956.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.56 % (199,791.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,976.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03447742 BTC (33,704.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.39 CZK over 2416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008460 BTC for 82.70 CZK @ 977,595 CZK\nFees are 0.29047896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (234.62276231770364009654153724 CZK)\nThe limits being 0.10 % (33.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45494172 BTC (244,956.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.56 % (199,791.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,976.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03447742 BTC (33,704.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.39 CZK over 2416 transactions" + } + ] + }, + { + "id": 4084, + "type": "message", + "date": "2023-12-07T17:00:07", + "date_unixtime": "1701964807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008392 BTC for 82.70 CZK @ 985,520 CZK\nFees are 0.29048005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.85 % (630.73276006807441827768681875 CZK)\nThe limits being 0.10 % (34.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45502564 BTC (245,039.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 985,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.01 % (203,397.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,893.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03456134 BTC (34,060.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.38 CZK over 2417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008392 BTC for 82.70 CZK @ 985,520 CZK\nFees are 0.29048005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.85 % (630.73276006807441827768681875 CZK)\nThe limits being 0.10 % (34.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45502564 BTC (245,039.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 985,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.01 % (203,397.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,893.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03456134 BTC (34,060.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.38 CZK over 2417 transactions" + } + ] + }, + { + "id": 4085, + "type": "message", + "date": "2023-12-07T21:00:07", + "date_unixtime": "1701979207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008497 BTC for 82.71 CZK @ 973,407 CZK\nFees are 0.29049958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.59 % (535.37386119278066369917833192 CZK)\nThe limits being 0.10 % (33.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45511061 BTC (245,122.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 973,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.73 % (197,885.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,810.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03464631 BTC (33,724.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.37 CZK over 2418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008497 BTC for 82.71 CZK @ 973,407 CZK\nFees are 0.29049958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.59 % (535.37386119278066369917833192 CZK)\nThe limits being 0.10 % (33.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45511061 BTC (245,122.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 973,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.73 % (197,885.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,810.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03464631 BTC (33,724.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.37 CZK over 2418 transactions" + } + ] + }, + { + "id": 4086, + "type": "message", + "date": "2023-12-08T01:00:07", + "date_unixtime": "1701993607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008469 BTC for 82.71 CZK @ 976,604 CZK\nFees are 0.29049320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.58 % (537.13210736092350759824378986 CZK)\nThe limits being 0.10 % (33.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45519530 BTC (245,205.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.29 % (199,339.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,727.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03473100 BTC (33,918.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.37 CZK over 2419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008469 BTC for 82.71 CZK @ 976,604 CZK\nFees are 0.29049320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.58 % (537.13210736092350759824378986 CZK)\nThe limits being 0.10 % (33.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45519530 BTC (245,205.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.29 % (199,339.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,727.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03473100 BTC (33,918.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.37 CZK over 2419 transactions" + } + ] + }, + { + "id": 4087, + "type": "message", + "date": "2023-12-08T05:00:07", + "date_unixtime": "1702008007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008454 BTC for 82.70 CZK @ 978,255 CZK\nFees are 0.29046902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (361.95441820319206882841684105 CZK)\nThe limits being 0.10 % (34.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45527984 BTC (245,288.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 978,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.57 % (200,091.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,644.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03481554 BTC (34,058.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.36 CZK over 2420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008454 BTC for 82.70 CZK @ 978,255 CZK\nFees are 0.29046902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (361.95441820319206882841684105 CZK)\nThe limits being 0.10 % (34.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45527984 BTC (245,288.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 978,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.57 % (200,091.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,644.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03481554 BTC (34,058.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.36 CZK over 2420 transactions" + } + ] + }, + { + "id": 4088, + "type": "message", + "date": "2023-12-08T09:00:08", + "date_unixtime": "1702022408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008475 BTC for 82.70 CZK @ 975,836 CZK\nFees are 0.29047033 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (312.26739130447563321883731424 CZK)\nThe limits being 0.10 % (34.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45536459 BTC (245,371.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.10 % (198,989.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,561.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03490029 BTC (34,056.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.35 CZK over 2421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008475 BTC for 82.70 CZK @ 975,836 CZK\nFees are 0.29047033 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (312.26739130447563321883731424 CZK)\nThe limits being 0.10 % (34.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45536459 BTC (245,371.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.10 % (198,989.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,561.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03490029 BTC (34,056.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.35 CZK over 2421 transactions" + } + ] + }, + { + "id": 4089, + "type": "message", + "date": "2023-12-08T13:00:06", + "date_unixtime": "1702036806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008382 BTC for 82.70 CZK @ 986,674 CZK\nFees are 0.29047360 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (217.06823307400476285755760351 CZK)\nThe limits being 0.10 % (34.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45544841 BTC (245,454.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 538,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 986,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.08 % (203,924.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,478.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03498411 BTC (34,517.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.34 CZK over 2422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008382 BTC for 82.70 CZK @ 986,674 CZK\nFees are 0.29047360 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (217.06823307400476285755760351 CZK)\nThe limits being 0.10 % (34.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45544841 BTC (245,454.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 538,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 986,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.08 % (203,924.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,478.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03498411 BTC (34,517.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.34 CZK over 2422 transactions" + } + ] + }, + { + "id": 4090, + "type": "message", + "date": "2023-12-08T17:00:07", + "date_unixtime": "1702051207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008345 BTC for 82.71 CZK @ 991,074 CZK\nFees are 0.29048119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (198.21487941396245555176415202 CZK)\nThe limits being 0.10 % (34.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45553186 BTC (245,537.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.87 % (205,928.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,395.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03506756 BTC (34,754.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.34 CZK over 2423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008345 BTC for 82.71 CZK @ 991,074 CZK\nFees are 0.29048119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (198.21487941396245555176415202 CZK)\nThe limits being 0.10 % (34.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45553186 BTC (245,537.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.87 % (205,928.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,395.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03506756 BTC (34,754.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.34 CZK over 2423 transactions" + } + ] + }, + { + "id": 4091, + "type": "message", + "date": "2023-12-08T21:00:07", + "date_unixtime": "1702065607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008314 BTC for 82.71 CZK @ 994,797 CZK\nFees are 0.29048905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (149.21950260928223433522723390 CZK)\nThe limits being 0.10 % (34.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45561500 BTC (245,620.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.53 % (207,623.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,312.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03515070 BTC (34,967.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.33 CZK over 2424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008314 BTC for 82.71 CZK @ 994,797 CZK\nFees are 0.29048905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (149.21950260928223433522723390 CZK)\nThe limits being 0.10 % (34.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45561500 BTC (245,620.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.53 % (207,623.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,312.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03515070 BTC (34,967.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.33 CZK over 2424 transactions" + } + ] + }, + { + "id": 4092, + "type": "message", + "date": "2023-12-09T01:00:08", + "date_unixtime": "1702080008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008259 BTC for 82.71 CZK @ 1,001,444 CZK\nFees are 0.29049561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (230.33213223870225852572057855 CZK)\nThe limits being 0.10 % (35.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45569759 BTC (245,703.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,001,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.73 % (210,651.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,229.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03523329 BTC (35,284.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.32 CZK over 2425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008259 BTC for 82.71 CZK @ 1,001,444 CZK\nFees are 0.29049561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (230.33213223870225852572057855 CZK)\nThe limits being 0.10 % (35.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45569759 BTC (245,703.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,001,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.73 % (210,651.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,229.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03523329 BTC (35,284.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.32 CZK over 2425 transactions" + } + ] + }, + { + "id": 4093, + "type": "message", + "date": "2023-12-09T05:00:07", + "date_unixtime": "1702094407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008265 BTC for 82.71 CZK @ 1,000,688 CZK\nFees are 0.29048712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (220.15131766222938408853947663 CZK)\nThe limits being 0.10 % (35.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45578024 BTC (245,786.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,000,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.56 % (210,307.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,146.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03531594 BTC (35,340.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.31 CZK over 2426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008265 BTC for 82.71 CZK @ 1,000,688 CZK\nFees are 0.29048712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (220.15131766222938408853947663 CZK)\nThe limits being 0.10 % (35.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45578024 BTC (245,786.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,000,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.56 % (210,307.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,146.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03531594 BTC (35,340.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.31 CZK over 2426 transactions" + } + ] + }, + { + "id": 4094, + "type": "message", + "date": "2023-12-09T09:00:07", + "date_unixtime": "1702108807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008266 BTC for 82.70 CZK @ 1,000,528 CZK\nFees are 0.29047587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (180.09503406357448904638266429 CZK)\nThe limits being 0.10 % (35.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45586290 BTC (245,869.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,000,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.51 % (210,233.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,063.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03539860 BTC (35,417.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.31 CZK over 2427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008266 BTC for 82.70 CZK @ 1,000,528 CZK\nFees are 0.29047587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (180.09503406357448904638266429 CZK)\nThe limits being 0.10 % (35.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45586290 BTC (245,869.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,000,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.51 % (210,233.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,063.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03539860 BTC (35,417.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.31 CZK over 2427 transactions" + } + ] + }, + { + "id": 4095, + "type": "message", + "date": "2023-12-09T13:00:08", + "date_unixtime": "1702123208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008332 BTC for 82.70 CZK @ 992,616 CZK\nFees are 0.29047977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (178.67085468742263336124811360 CZK)\nThe limits being 0.10 % (35.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45594622 BTC (245,952.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.01 % (206,626.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,980.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03548192 BTC (35,219.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.30 CZK over 2428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008332 BTC for 82.70 CZK @ 992,616 CZK\nFees are 0.29047977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (178.67085468742263336124811360 CZK)\nThe limits being 0.10 % (35.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45594622 BTC (245,952.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.01 % (206,626.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,980.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03548192 BTC (35,219.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.30 CZK over 2428 transactions" + } + ] + }, + { + "id": 4096, + "type": "message", + "date": "2023-12-09T17:00:09", + "date_unixtime": "1702137609", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008297 BTC for 82.70 CZK @ 996,764 CZK\nFees are 0.29046829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (129.57928385158393735701109754 CZK)\nThe limits being 0.10 % (35.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45602919 BTC (246,035.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.75 % (208,517.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,897.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03556489 BTC (35,449.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.29 CZK over 2429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008297 BTC for 82.70 CZK @ 996,764 CZK\nFees are 0.29046829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (129.57928385158393735701109754 CZK)\nThe limits being 0.10 % (35.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45602919 BTC (246,035.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.75 % (208,517.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,897.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03556489 BTC (35,449.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.29 CZK over 2429 transactions" + } + ] + }, + { + "id": 4097, + "type": "message", + "date": "2023-12-09T21:00:06", + "date_unixtime": "1702152006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008314 BTC for 82.71 CZK @ 994,831 CZK\nFees are 0.29049897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (119.37967802611475663898990052 CZK)\nThe limits being 0.10 % (35.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45611233 BTC (246,118.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.36 % (207,635.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,814.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03564803 BTC (35,463.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.28 CZK over 2430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008314 BTC for 82.71 CZK @ 994,831 CZK\nFees are 0.29049897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (119.37967802611475663898990052 CZK)\nThe limits being 0.10 % (35.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45611233 BTC (246,118.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.36 % (207,635.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,814.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03564803 BTC (35,463.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.28 CZK over 2430 transactions" + } + ] + }, + { + "id": 4098, + "type": "message", + "date": "2023-12-10T01:00:08", + "date_unixtime": "1702166408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008349 BTC for 82.70 CZK @ 990,579 CZK\nFees are 0.29047513 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (99.05788913554028143085021088 CZK)\nThe limits being 0.10 % (35.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45619582 BTC (246,201.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 990,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.55 % (205,696.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,731.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03573152 BTC (35,394.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.28 CZK over 2431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008349 BTC for 82.70 CZK @ 990,579 CZK\nFees are 0.29047513 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (99.05788913554028143085021088 CZK)\nThe limits being 0.10 % (35.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45619582 BTC (246,201.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 990,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.55 % (205,696.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,731.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03573152 BTC (35,394.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.28 CZK over 2431 transactions" + } + ] + }, + { + "id": 4099, + "type": "message", + "date": "2023-12-10T05:00:07", + "date_unixtime": "1702180807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008344 BTC for 82.71 CZK @ 991,249 CZK\nFees are 0.29049762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (118.94990671671202564752990611 CZK)\nThe limits being 0.10 % (35.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45627926 BTC (246,284.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.64 % (206,001.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,648.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03581496 BTC (35,501.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.27 CZK over 2432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008344 BTC for 82.71 CZK @ 991,249 CZK\nFees are 0.29049762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (118.94990671671202564752990611 CZK)\nThe limits being 0.10 % (35.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45627926 BTC (246,284.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.64 % (206,001.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,648.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03581496 BTC (35,501.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.27 CZK over 2432 transactions" + } + ] + }, + { + "id": 4100, + "type": "message", + "date": "2023-12-10T09:00:07", + "date_unixtime": "1702195207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008310 BTC for 82.70 CZK @ 995,196 CZK\nFees are 0.29046592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (159.23140567100587174731999973 CZK)\nThe limits being 0.10 % (35.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45636236 BTC (246,367.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.35 % (207,802.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,565.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03589806 BTC (35,725.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.26 CZK over 2433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008310 BTC for 82.70 CZK @ 995,196 CZK\nFees are 0.29046592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (159.23140567100587174731999973 CZK)\nThe limits being 0.10 % (35.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45636236 BTC (246,367.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.35 % (207,802.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,565.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03589806 BTC (35,725.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.26 CZK over 2433 transactions" + } + ] + }, + { + "id": 4101, + "type": "message", + "date": "2023-12-10T13:00:07", + "date_unixtime": "1702209607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008366 BTC for 82.70 CZK @ 988,541 CZK\nFees are 0.29046776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (88.96868318165883905494050764 CZK)\nThe limits being 0.10 % (35.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45644602 BTC (246,450.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 539,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.09 % (204,764.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,482.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03598172 BTC (35,569.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.25 CZK over 2434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008366 BTC for 82.70 CZK @ 988,541 CZK\nFees are 0.29046776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (88.96868318165883905494050764 CZK)\nThe limits being 0.10 % (35.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45644602 BTC (246,450.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 539,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.09 % (204,764.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,482.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03598172 BTC (35,569.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.25 CZK over 2434 transactions" + } + ] + }, + { + "id": 4102, + "type": "message", + "date": "2023-12-10T17:00:07", + "date_unixtime": "1702224007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008319 BTC for 82.71 CZK @ 994,207 CZK\nFees are 0.29049153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (169.01523624400785494548381064 CZK)\nThe limits being 0.10 % (35.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45652921 BTC (246,533.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.11 % (207,351.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,399.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03606491 BTC (35,856.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.25 CZK over 2435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008319 BTC for 82.71 CZK @ 994,207 CZK\nFees are 0.29049153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (169.01523624400785494548381064 CZK)\nThe limits being 0.10 % (35.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45652921 BTC (246,533.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.11 % (207,351.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,399.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03606491 BTC (35,856.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.25 CZK over 2435 transactions" + } + ] + }, + { + "id": 4103, + "type": "message", + "date": "2023-12-10T21:00:07", + "date_unixtime": "1702238407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008339 BTC for 82.71 CZK @ 991,788 CZK\nFees are 0.29048125 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (168.60390654175788266669247871 CZK)\nThe limits being 0.10 % (35.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45661260 BTC (246,616.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.63 % (206,246.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,316.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03614830 BTC (35,851.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.24 CZK over 2436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008339 BTC for 82.71 CZK @ 991,788 CZK\nFees are 0.29048125 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (168.60390654175788266669247871 CZK)\nThe limits being 0.10 % (35.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45661260 BTC (246,616.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.63 % (206,246.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,316.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03614830 BTC (35,851.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.24 CZK over 2436 transactions" + } + ] + }, + { + "id": 4104, + "type": "message", + "date": "2023-12-11T01:00:08", + "date_unixtime": "1702252808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008352 BTC for 82.70 CZK @ 990,220 CZK\nFees are 0.29047430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (158.43523985972468009476411106 CZK)\nThe limits being 0.10 % (35.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45669612 BTC (246,699.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 990,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.31 % (205,530.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,233.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03623182 BTC (35,877.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.23 CZK over 2437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008352 BTC for 82.70 CZK @ 990,220 CZK\nFees are 0.29047430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (158.43523985972468009476411106 CZK)\nThe limits being 0.10 % (35.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45669612 BTC (246,699.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 990,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.31 % (205,530.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,233.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03623182 BTC (35,877.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.23 CZK over 2437 transactions" + } + ] + }, + { + "id": 4105, + "type": "message", + "date": "2023-12-11T05:00:08", + "date_unixtime": "1702267208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008629 BTC for 82.71 CZK @ 958,462 CZK\nFees are 0.29048302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (143.76928922372345764213940512 CZK)\nThe limits being 0.10 % (34.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45678241 BTC (246,782.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.41 % (191,025.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,150.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03631811 BTC (34,809.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.22 CZK over 2438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008629 BTC for 82.71 CZK @ 958,462 CZK\nFees are 0.29048302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (143.76928922372345764213940512 CZK)\nThe limits being 0.10 % (34.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45678241 BTC (246,782.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.41 % (191,025.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,150.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03631811 BTC (34,809.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.22 CZK over 2438 transactions" + } + ] + }, + { + "id": 4106, + "type": "message", + "date": "2023-12-11T09:00:08", + "date_unixtime": "1702281608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008625 BTC for 82.71 CZK @ 958,941 CZK\nFees are 0.29049363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (143.84121747795758324126427072 CZK)\nThe limits being 0.10 % (34.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45686866 BTC (246,865.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.47 % (191,244.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,067.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03640436 BTC (34,909.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.22 CZK over 2439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008625 BTC for 82.71 CZK @ 958,941 CZK\nFees are 0.29049363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (143.84121747795758324126427072 CZK)\nThe limits being 0.10 % (34.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45686866 BTC (246,865.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.47 % (191,244.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,067.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03640436 BTC (34,909.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.22 CZK over 2439 transactions" + } + ] + }, + { + "id": 4107, + "type": "message", + "date": "2023-12-11T13:00:08", + "date_unixtime": "1702296008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008649 BTC for 82.70 CZK @ 956,201 CZK\nFees are 0.29046954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (181.67822481644916857365275415 CZK)\nThe limits being 0.10 % (34.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45695515 BTC (246,948.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.94 % (189,992.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 984.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03649085 BTC (34,892.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.21 CZK over 2440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008649 BTC for 82.70 CZK @ 956,201 CZK\nFees are 0.29046954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (181.67822481644916857365275415 CZK)\nThe limits being 0.10 % (34.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45695515 BTC (246,948.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.94 % (189,992.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 984.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03649085 BTC (34,892.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.21 CZK over 2440 transactions" + } + ] + }, + { + "id": 4108, + "type": "message", + "date": "2023-12-11T17:00:07", + "date_unixtime": "1702310407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008725 BTC for 82.71 CZK @ 947,934 CZK\nFees are 0.29048864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (151.66950871948181365221723966 CZK)\nThe limits being 0.10 % (34.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45704240 BTC (247,031.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.38 % (186,214.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 901.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03657810 BTC (34,673.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.20 CZK over 2441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008725 BTC for 82.71 CZK @ 947,934 CZK\nFees are 0.29048864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (151.66950871948181365221723966 CZK)\nThe limits being 0.10 % (34.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45704240 BTC (247,031.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.38 % (186,214.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 901.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03657810 BTC (34,673.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.20 CZK over 2441 transactions" + } + ] + }, + { + "id": 4109, + "type": "message", + "date": "2023-12-11T21:00:08", + "date_unixtime": "1702324808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008959 BTC for 82.70 CZK @ 923,121 CZK\nFees are 0.29047160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (221.54908338951853577775252850 CZK)\nThe limits being 0.10 % (33.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45713199 BTC (247,114.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 923,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.77 % (174,873.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 818.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03666769 BTC (33,848.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.19 CZK over 2442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008959 BTC for 82.70 CZK @ 923,121 CZK\nFees are 0.29047160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (221.54908338951853577775252850 CZK)\nThe limits being 0.10 % (33.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45713199 BTC (247,114.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 923,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.77 % (174,873.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 818.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03666769 BTC (33,848.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.19 CZK over 2442 transactions" + } + ] + }, + { + "id": 4110, + "type": "message", + "date": "2023-12-12T01:00:07", + "date_unixtime": "1702339207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008838 BTC for 82.71 CZK @ 935,823 CZK\nFees are 0.29049115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (215.23917755721009505878553822 CZK)\nThe limits being 0.10 % (34.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45722037 BTC (247,197.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 935,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.09 % (180,679.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 735.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03675607 BTC (34,397.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.19 CZK over 2443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008838 BTC for 82.71 CZK @ 935,823 CZK\nFees are 0.29049115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (215.23917755721009505878553822 CZK)\nThe limits being 0.10 % (34.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45722037 BTC (247,197.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 935,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.09 % (180,679.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 735.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03675607 BTC (34,397.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.19 CZK over 2443 transactions" + } + ] + }, + { + "id": 4111, + "type": "message", + "date": "2023-12-12T05:00:08", + "date_unixtime": "1702353608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008738 BTC for 82.71 CZK @ 946,501 CZK\nFees are 0.29048150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (217.69519768245336789307918964 CZK)\nThe limits being 0.10 % (34.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45730775 BTC (247,280.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.04 % (185,561.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 652.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03684345 BTC (34,872.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.18 CZK over 2444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008738 BTC for 82.71 CZK @ 946,501 CZK\nFees are 0.29048150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (217.69519768245336789307918964 CZK)\nThe limits being 0.10 % (34.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45730775 BTC (247,280.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.04 % (185,561.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 652.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03684345 BTC (34,872.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.18 CZK over 2444 transactions" + } + ] + }, + { + "id": 4112, + "type": "message", + "date": "2023-12-12T09:00:06", + "date_unixtime": "1702368006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008692 BTC for 82.71 CZK @ 951,508 CZK\nFees are 0.29048086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (114.18094378831934524607958661 CZK)\nThe limits being 0.10 % (35.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45739467 BTC (247,363.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.94 % (187,851.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 569.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03693037 BTC (35,139.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.17 CZK over 2445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008692 BTC for 82.71 CZK @ 951,508 CZK\nFees are 0.29048086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (114.18094378831934524607958661 CZK)\nThe limits being 0.10 % (35.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45739467 BTC (247,363.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.94 % (187,851.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 569.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03693037 BTC (35,139.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.17 CZK over 2445 transactions" + } + ] + }, + { + "id": 4113, + "type": "message", + "date": "2023-12-12T13:00:07", + "date_unixtime": "1702382407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008781 BTC for 82.70 CZK @ 941,836 CZK\nFees are 0.29047212 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (207.20381290015182597158663504 CZK)\nThe limits being 0.10 % (34.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45748248 BTC (247,446.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 941,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.13 % (183,426.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 486.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03701818 BTC (34,865.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.16 CZK over 2446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008781 BTC for 82.70 CZK @ 941,836 CZK\nFees are 0.29047212 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (207.20381290015182597158663504 CZK)\nThe limits being 0.10 % (34.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45748248 BTC (247,446.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 941,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.13 % (183,426.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 486.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03701818 BTC (34,865.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.16 CZK over 2446 transactions" + } + ] + }, + { + "id": 4114, + "type": "message", + "date": "2023-12-12T17:00:06", + "date_unixtime": "1702396806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008794 BTC for 82.71 CZK @ 940,523 CZK\nFees are 0.29049671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (244.53593387891073532832946864 CZK)\nThe limits being 0.10 % (34.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45757042 BTC (247,529.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 540,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 940,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.86 % (182,825.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 403.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03710612 BTC (34,899.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.16 CZK over 2447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008794 BTC for 82.71 CZK @ 940,523 CZK\nFees are 0.29049671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (244.53593387891073532832946864 CZK)\nThe limits being 0.10 % (34.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45757042 BTC (247,529.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 540,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 940,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.86 % (182,825.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 403.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03710612 BTC (34,899.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.16 CZK over 2447 transactions" + } + ] + }, + { + "id": 4115, + "type": "message", + "date": "2023-12-12T21:00:06", + "date_unixtime": "1702411206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008854 BTC for 82.71 CZK @ 934,148 CZK\nFees are 0.29049637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (242.87852713154737726743387079 CZK)\nThe limits being 0.10 % (34.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45765896 BTC (247,612.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 934,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.66 % (179,908.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 320.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03719466 BTC (34,745.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.15 CZK over 2448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008854 BTC for 82.71 CZK @ 934,148 CZK\nFees are 0.29049637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (242.87852713154737726743387079 CZK)\nThe limits being 0.10 % (34.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45765896 BTC (247,612.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 934,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.66 % (179,908.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 320.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03719466 BTC (34,745.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.15 CZK over 2448 transactions" + } + ] + }, + { + "id": 4116, + "type": "message", + "date": "2023-12-13T01:00:07", + "date_unixtime": "1702425607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008792 BTC for 82.71 CZK @ 940,713 CZK\nFees are 0.29048926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (244.58528462483219559566993232 CZK)\nThe limits being 0.10 % (35.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45774688 BTC (247,695.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 940,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.85 % (182,912.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 237.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03728258 BTC (35,072.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.14 CZK over 2449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008792 BTC for 82.71 CZK @ 940,713 CZK\nFees are 0.29048926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (244.58528462483219559566993232 CZK)\nThe limits being 0.10 % (35.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45774688 BTC (247,695.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 940,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.85 % (182,912.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 237.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03728258 BTC (35,072.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.14 CZK over 2449 transactions" + } + ] + }, + { + "id": 4117, + "type": "message", + "date": "2023-12-13T05:00:08", + "date_unixtime": "1702440008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008928 BTC for 82.70 CZK @ 926,349 CZK\nFees are 0.29047865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (222.32375066300207338830223250 CZK)\nThe limits being 0.10 % (34.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45783616 BTC (247,778.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 926,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.17 % (176,337.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 154.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03737186 BTC (34,619.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.13 CZK over 2450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008928 BTC for 82.70 CZK @ 926,349 CZK\nFees are 0.29047865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (222.32375066300207338830223250 CZK)\nThe limits being 0.10 % (34.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45783616 BTC (247,778.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 926,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.17 % (176,337.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 154.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03737186 BTC (34,619.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.13 CZK over 2450 transactions" + } + ] + }, + { + "id": 4118, + "type": "message", + "date": "2023-12-13T09:00:07", + "date_unixtime": "1702454407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008840 BTC for 82.71 CZK @ 935,633 CZK\nFees are 0.29049795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (196.48286710089347915778936617 CZK)\nThe limits being 0.10 % (35.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45792456 BTC (247,861.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 935,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.86 % (180,587.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 71.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03746026 BTC (35,049.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.13 CZK over 2451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008840 BTC for 82.71 CZK @ 935,633 CZK\nFees are 0.29049795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (196.48286710089347915778936617 CZK)\nThe limits being 0.10 % (35.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45792456 BTC (247,861.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 935,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.86 % (180,587.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 71.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03746026 BTC (35,049.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.13 CZK over 2451 transactions" + } + ] + }, + { + "id": 4119, + "type": "message", + "date": "2023-12-13T13:00:02", + "date_unixtime": "1702468802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (71.40194671 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (71.40194671 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4120, + "type": "message", + "date": "2023-12-13T17:00:02", + "date_unixtime": "1702483202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (71.40194671 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (71.40194671 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4121, + "type": "message", + "date": "2023-12-13T21:00:02", + "date_unixtime": "1702497602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (71.40194671 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (71.40194671 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4122, + "type": "message", + "date": "2023-12-14T01:00:08", + "date_unixtime": "1702512008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008585 BTC for 82.71 CZK @ 963,412 CZK\nFees are 0.29049440 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (481.70599523682254798943360445 CZK)\nThe limits being 0.10 % (36.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45801041 BTC (247,944.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 963,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.96 % (193,308.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,988.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03754611 BTC (36,172.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.12 CZK over 2452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008585 BTC for 82.71 CZK @ 963,412 CZK\nFees are 0.29049440 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (481.70599523682254798943360445 CZK)\nThe limits being 0.10 % (36.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45801041 BTC (247,944.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 963,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.96 % (193,308.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,988.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03754611 BTC (36,172.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.12 CZK over 2452 transactions" + } + ] + }, + { + "id": 4123, + "type": "message", + "date": "2023-12-14T05:00:06", + "date_unixtime": "1702526406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008630 BTC for 82.71 CZK @ 958,406 CZK\nFees are 0.29049973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.54 % (555.87547074232076492415595243 CZK)\nThe limits being 0.10 % (36.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45809671 BTC (248,027.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.01 % (191,015.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,905.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03763241 BTC (36,067.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.11 CZK over 2453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008630 BTC for 82.71 CZK @ 958,406 CZK\nFees are 0.29049973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.54 % (555.87547074232076492415595243 CZK)\nThe limits being 0.10 % (36.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45809671 BTC (248,027.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.01 % (191,015.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,905.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03763241 BTC (36,067.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.11 CZK over 2453 transactions" + } + ] + }, + { + "id": 4124, + "type": "message", + "date": "2023-12-14T09:00:08", + "date_unixtime": "1702540808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008556 BTC for 82.71 CZK @ 966,658 CZK\nFees are 0.29048849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.52 % (918.3248651575493253742802482 CZK)\nThe limits being 0.10 % (36.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45818227 BTC (248,110.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 966,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.51 % (194,794.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,822.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03771797 BTC (36,460.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.10 CZK over 2454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008556 BTC for 82.71 CZK @ 966,658 CZK\nFees are 0.29048849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.52 % (918.3248651575493253742802482 CZK)\nThe limits being 0.10 % (36.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45818227 BTC (248,110.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 966,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.51 % (194,794.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,822.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03771797 BTC (36,460.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.10 CZK over 2454 transactions" + } + ] + }, + { + "id": 4125, + "type": "message", + "date": "2023-12-14T13:00:07", + "date_unixtime": "1702555207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008562 BTC for 82.71 CZK @ 965,963 CZK\nFees are 0.29048341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.64 % (598.89733614200333869997405720 CZK)\nThe limits being 0.10 % (36.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45826789 BTC (248,193.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 965,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.36 % (194,476.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,739.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03780359 BTC (36,516.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.10 CZK over 2455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008562 BTC for 82.71 CZK @ 965,963 CZK\nFees are 0.29048341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.64 % (598.89733614200333869997405720 CZK)\nThe limits being 0.10 % (36.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45826789 BTC (248,193.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 965,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.36 % (194,476.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,739.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03780359 BTC (36,516.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.10 CZK over 2455 transactions" + } + ] + }, + { + "id": 4126, + "type": "message", + "date": "2023-12-14T17:00:06", + "date_unixtime": "1702569606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008753 BTC for 82.71 CZK @ 944,881 CZK\nFees are 0.29048231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (557.48007010878354412589183602 CZK)\nThe limits being 0.10 % (35.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45835542 BTC (248,276.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.44 % (184,815.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,656.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03789112 BTC (35,802.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.09 CZK over 2456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008753 BTC for 82.71 CZK @ 944,881 CZK\nFees are 0.29048231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.56 % (557.48007010878354412589183602 CZK)\nThe limits being 0.10 % (35.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45835542 BTC (248,276.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.44 % (184,815.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,656.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03789112 BTC (35,802.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.09 CZK over 2456 transactions" + } + ] + }, + { + "id": 4127, + "type": "message", + "date": "2023-12-14T21:00:06", + "date_unixtime": "1702584006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008641 BTC for 82.70 CZK @ 957,081 CZK\nFees are 0.29046798 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (354.12008298002472194443622763 CZK)\nThe limits being 0.10 % (36.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45844183 BTC (248,359.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.67 % (190,406.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,573.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03797753 BTC (36,347.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.08 CZK over 2457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008641 BTC for 82.70 CZK @ 957,081 CZK\nFees are 0.29046798 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (354.12008298002472194443622763 CZK)\nThe limits being 0.10 % (36.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45844183 BTC (248,359.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.67 % (190,406.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,573.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03797753 BTC (36,347.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.08 CZK over 2457 transactions" + } + ] + }, + { + "id": 4128, + "type": "message", + "date": "2023-12-15T01:00:07", + "date_unixtime": "1702598407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008642 BTC for 82.71 CZK @ 957,013 CZK\nFees are 0.29048097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (334.95468059200804589629423608 CZK)\nThe limits being 0.10 % (36.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45852825 BTC (248,442.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.63 % (190,375.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,490.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03806395 BTC (36,427.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.08 CZK over 2458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008642 BTC for 82.71 CZK @ 957,013 CZK\nFees are 0.29048097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (334.95468059200804589629423608 CZK)\nThe limits being 0.10 % (36.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45852825 BTC (248,442.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.63 % (190,375.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,490.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03806395 BTC (36,427.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.08 CZK over 2458 transactions" + } + ] + }, + { + "id": 4129, + "type": "message", + "date": "2023-12-15T05:00:07", + "date_unixtime": "1702612807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008699 BTC for 82.71 CZK @ 950,780 CZK\nFees are 0.29049229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (656.03791803294744976099000093 CZK)\nThe limits being 0.10 % (36.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45861524 BTC (248,525.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.45 % (187,516.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,407.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03815094 BTC (36,273.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.07 CZK over 2459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008699 BTC for 82.71 CZK @ 950,780 CZK\nFees are 0.29049229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (656.03791803294744976099000093 CZK)\nThe limits being 0.10 % (36.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45861524 BTC (248,525.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.45 % (187,516.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,407.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03815094 BTC (36,273.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.07 CZK over 2459 transactions" + } + ] + }, + { + "id": 4130, + "type": "message", + "date": "2023-12-15T09:00:07", + "date_unixtime": "1702627207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008715 BTC for 82.71 CZK @ 949,036 CZK\nFees are 0.29049299 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (645.34470458615728484441002671 CZK)\nThe limits being 0.10 % (36.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45870239 BTC (248,608.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 541,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.10 % (186,716.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,324.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03823809 BTC (36,289.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.06 CZK over 2460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008715 BTC for 82.71 CZK @ 949,036 CZK\nFees are 0.29049299 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (645.34470458615728484441002671 CZK)\nThe limits being 0.10 % (36.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45870239 BTC (248,608.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 541,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.10 % (186,716.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,324.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03823809 BTC (36,289.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.06 CZK over 2460 transactions" + } + ] + }, + { + "id": 4131, + "type": "message", + "date": "2023-12-15T13:00:06", + "date_unixtime": "1702641606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008656 BTC for 82.71 CZK @ 955,516 CZK\nFees are 0.29049628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (468.20277480412824983168890395 CZK)\nThe limits being 0.10 % (36.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45878895 BTC (248,691.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.27 % (189,688.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,241.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03832465 BTC (36,619.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.05 CZK over 2461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008656 BTC for 82.71 CZK @ 955,516 CZK\nFees are 0.29049628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (468.20277480412824983168890395 CZK)\nThe limits being 0.10 % (36.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45878895 BTC (248,691.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.27 % (189,688.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,241.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03832465 BTC (36,619.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.05 CZK over 2461 transactions" + } + ] + }, + { + "id": 4132, + "type": "message", + "date": "2023-12-15T17:00:06", + "date_unixtime": "1702656006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008743 BTC for 82.71 CZK @ 945,989 CZK\nFees are 0.29049065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (350.01606678922752409344373501 CZK)\nThe limits being 0.10 % (36.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45887638 BTC (248,774.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 945,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.49 % (185,317.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,158.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03841208 BTC (36,337.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.05 CZK over 2462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008743 BTC for 82.71 CZK @ 945,989 CZK\nFees are 0.29049065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (350.01606678922752409344373501 CZK)\nThe limits being 0.10 % (36.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45887638 BTC (248,774.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 945,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.49 % (185,317.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,158.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03841208 BTC (36,337.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.05 CZK over 2462 transactions" + } + ] + }, + { + "id": 4133, + "type": "message", + "date": "2023-12-15T21:00:07", + "date_unixtime": "1702670407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008703 BTC for 82.71 CZK @ 950,328 CZK\nFees are 0.29048783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (332.61481462588626810643959515 CZK)\nThe limits being 0.10 % (36.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45896341 BTC (248,857.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.27 % (187,308.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,075.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03849911 BTC (36,586.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.04 CZK over 2463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008703 BTC for 82.71 CZK @ 950,328 CZK\nFees are 0.29048783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (332.61481462588626810643959515 CZK)\nThe limits being 0.10 % (36.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45896341 BTC (248,857.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.27 % (187,308.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,075.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03849911 BTC (36,586.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.04 CZK over 2463 transactions" + } + ] + }, + { + "id": 4134, + "type": "message", + "date": "2023-12-16T01:00:06", + "date_unixtime": "1702684806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008725 BTC for 82.70 CZK @ 947,889 CZK\nFees are 0.29047486 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (331.76131600144479993375620858 CZK)\nThe limits being 0.10 % (36.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45905066 BTC (248,940.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.79 % (186,188.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,992.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03858636 BTC (36,575.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.03 CZK over 2464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008725 BTC for 82.70 CZK @ 947,889 CZK\nFees are 0.29047486 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (331.76131600144479993375620858 CZK)\nThe limits being 0.10 % (36.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45905066 BTC (248,940.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.79 % (186,188.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,992.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03858636 BTC (36,575.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.03 CZK over 2464 transactions" + } + ] + }, + { + "id": 4135, + "type": "message", + "date": "2023-12-16T05:00:06", + "date_unixtime": "1702699206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008690 BTC for 82.71 CZK @ 951,759 CZK\nFees are 0.29049055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (247.45723985154376253882412707 CZK)\nThe limits being 0.10 % (36.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45913756 BTC (249,023.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.48 % (187,964.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,909.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03867326 BTC (36,807.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.02 CZK over 2465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008690 BTC for 82.71 CZK @ 951,759 CZK\nFees are 0.29049055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (247.45723985154376253882412707 CZK)\nThe limits being 0.10 % (36.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45913756 BTC (249,023.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.48 % (187,964.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,909.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03867326 BTC (36,807.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.02 CZK over 2465 transactions" + } + ] + }, + { + "id": 4136, + "type": "message", + "date": "2023-12-16T09:00:06", + "date_unixtime": "1702713606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008714 BTC for 82.71 CZK @ 949,123 CZK\nFees are 0.29048625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (303.71943793235038393851951952 CZK)\nThe limits being 0.10 % (36.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45922470 BTC (249,106.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.97 % (186,754.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,826.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03876040 BTC (36,788.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.02 CZK over 2466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008714 BTC for 82.71 CZK @ 949,123 CZK\nFees are 0.29048625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (303.71943793235038393851951952 CZK)\nThe limits being 0.10 % (36.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45922470 BTC (249,106.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.97 % (186,754.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,826.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03876040 BTC (36,788.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.02 CZK over 2466 transactions" + } + ] + }, + { + "id": 4137, + "type": "message", + "date": "2023-12-16T13:00:07", + "date_unixtime": "1702728007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008687 BTC for 82.70 CZK @ 952,050 CZK\nFees are 0.29047927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (514.10717485691985498665342421 CZK)\nThe limits being 0.10 % (36.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45931157 BTC (249,189.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 952,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.48 % (188,098.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,743.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03884727 BTC (36,984.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.01 CZK over 2467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008687 BTC for 82.70 CZK @ 952,050 CZK\nFees are 0.29047927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (514.10717485691985498665342421 CZK)\nThe limits being 0.10 % (36.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45931157 BTC (249,189.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 952,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.48 % (188,098.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,743.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03884727 BTC (36,984.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.01 CZK over 2467 transactions" + } + ] + }, + { + "id": 4138, + "type": "message", + "date": "2023-12-16T17:00:08", + "date_unixtime": "1702742408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008648 BTC for 82.70 CZK @ 956,337 CZK\nFees are 0.29047722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (602.49234010403919307400969869 CZK)\nThe limits being 0.10 % (37.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45939805 BTC (249,272.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.25 % (190,066.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,660.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03893375 BTC (37,233.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 101.00 CZK over 2468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008648 BTC for 82.70 CZK @ 956,337 CZK\nFees are 0.29047722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (602.49234010403919307400969869 CZK)\nThe limits being 0.10 % (37.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45939805 BTC (249,272.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.25 % (190,066.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,660.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03893375 BTC (37,233.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 101.00 CZK over 2468 transactions" + } + ] + }, + { + "id": 4139, + "type": "message", + "date": "2023-12-16T21:00:08", + "date_unixtime": "1702756808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008664 BTC for 82.71 CZK @ 954,626 CZK\nFees are 0.29049390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.23 % (830.5244066784260627968315881 CZK)\nThe limits being 0.10 % (37.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45948469 BTC (249,355.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 954,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.91 % (189,280.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,577.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03902039 BTC (37,249.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.99 CZK over 2469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008664 BTC for 82.71 CZK @ 954,626 CZK\nFees are 0.29049390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.23 % (830.5244066784260627968315881 CZK)\nThe limits being 0.10 % (37.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45948469 BTC (249,355.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 954,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.91 % (189,280.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,577.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03902039 BTC (37,249.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.99 CZK over 2469 transactions" + } + ] + }, + { + "id": 4140, + "type": "message", + "date": "2023-12-17T01:00:07", + "date_unixtime": "1702771207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008660 BTC for 82.71 CZK @ 955,045 CZK\nFees are 0.29048740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.05 % (764.03626899385637566438941768 CZK)\nThe limits being 0.10 % (37.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45957129 BTC (249,438.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.96 % (189,472.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,494.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03910699 BTC (37,348.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.99 CZK over 2470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008660 BTC for 82.71 CZK @ 955,045 CZK\nFees are 0.29048740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.05 % (764.03626899385637566438941768 CZK)\nThe limits being 0.10 % (37.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45957129 BTC (249,438.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.96 % (189,472.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,494.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03910699 BTC (37,348.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.99 CZK over 2470 transactions" + } + ] + }, + { + "id": 4141, + "type": "message", + "date": "2023-12-17T05:00:07", + "date_unixtime": "1702785607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008762 BTC for 82.71 CZK @ 943,907 CZK\nFees are 0.29048123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (755.12595711858529385907597776 CZK)\nThe limits being 0.10 % (37.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45965891 BTC (249,521.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.88 % (184,354.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,411.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03919461 BTC (36,996.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.98 CZK over 2471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008762 BTC for 82.71 CZK @ 943,907 CZK\nFees are 0.29048123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (755.12595711858529385907597776 CZK)\nThe limits being 0.10 % (37.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45965891 BTC (249,521.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.88 % (184,354.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,411.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03919461 BTC (36,996.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.98 CZK over 2471 transactions" + } + ] + }, + { + "id": 4142, + "type": "message", + "date": "2023-12-17T09:00:07", + "date_unixtime": "1702800007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008728 BTC for 82.70 CZK @ 947,565 CZK\nFees are 0.29047521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (758.05183854675455338030915624 CZK)\nThe limits being 0.10 % (37.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45974619 BTC (249,604.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.53 % (186,034.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,328.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03928189 BTC (37,222.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.97 CZK over 2472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008728 BTC for 82.70 CZK @ 947,565 CZK\nFees are 0.29047521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (758.05183854675455338030915624 CZK)\nThe limits being 0.10 % (37.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45974619 BTC (249,604.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.53 % (186,034.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,328.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03928189 BTC (37,222.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.97 CZK over 2472 transactions" + } + ] + }, + { + "id": 4143, + "type": "message", + "date": "2023-12-17T13:00:07", + "date_unixtime": "1702814407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008690 BTC for 82.71 CZK @ 951,760 CZK\nFees are 0.29049086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.34 % (875.6188447407606174706134972 CZK)\nThe limits being 0.10 % (37.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45983309 BTC (249,687.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 542,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.28 % (187,963.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,245.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03936879 BTC (37,469.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.97 CZK over 2473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008690 BTC for 82.71 CZK @ 951,760 CZK\nFees are 0.29049086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.34 % (875.6188447407606174706134972 CZK)\nThe limits being 0.10 % (37.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45983309 BTC (249,687.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 542,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.28 % (187,963.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,245.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03936879 BTC (37,469.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.97 CZK over 2473 transactions" + } + ] + }, + { + "id": 4144, + "type": "message", + "date": "2023-12-17T17:00:05", + "date_unixtime": "1702828805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008728 BTC for 82.70 CZK @ 947,564 CZK\nFees are 0.29047491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.82 % (682.24593539477091408301924020 CZK)\nThe limits being 0.10 % (37.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.45992037 BTC (249,770.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.48 % (186,033.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,162.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03945607 BTC (37,387.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.96 CZK over 2474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008728 BTC for 82.70 CZK @ 947,564 CZK\nFees are 0.29047491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.82 % (682.24593539477091408301924020 CZK)\nThe limits being 0.10 % (37.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.45992037 BTC (249,770.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.48 % (186,033.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,162.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03945607 BTC (37,387.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.96 CZK over 2474 transactions" + } + ] + }, + { + "id": 4145, + "type": "message", + "date": "2023-12-17T21:00:07", + "date_unixtime": "1702843207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008678 BTC for 82.71 CZK @ 953,053 CZK\nFees are 0.29048403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (390.75186254424333914038822176 CZK)\nThe limits being 0.10 % (37.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46000715 BTC (249,853.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 953,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.47 % (188,557.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,079.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03954285 BTC (37,686.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.95 CZK over 2475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008678 BTC for 82.71 CZK @ 953,053 CZK\nFees are 0.29048403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (390.75186254424333914038822176 CZK)\nThe limits being 0.10 % (37.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46000715 BTC (249,853.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 953,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.47 % (188,557.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,079.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03954285 BTC (37,686.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.95 CZK over 2475 transactions" + } + ] + }, + { + "id": 4146, + "type": "message", + "date": "2023-12-18T01:00:07", + "date_unixtime": "1702857607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008816 BTC for 82.71 CZK @ 938,160 CZK\nFees are 0.29049188 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (384.64567350367181290166811804 CZK)\nThe limits being 0.10 % (37.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46009531 BTC (249,936.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 938,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.70 % (181,706.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,996.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03963101 BTC (37,180.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.94 CZK over 2476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008816 BTC for 82.71 CZK @ 938,160 CZK\nFees are 0.29049188 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (384.64567350367181290166811804 CZK)\nThe limits being 0.10 % (37.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46009531 BTC (249,936.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 938,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.70 % (181,706.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,996.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03963101 BTC (37,180.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.94 CZK over 2476 transactions" + } + ] + }, + { + "id": 4147, + "type": "message", + "date": "2023-12-18T05:00:08", + "date_unixtime": "1702872008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008904 BTC for 82.70 CZK @ 928,848 CZK\nFees are 0.29047947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (306.51999437615246905372973569 CZK)\nThe limits being 0.10 % (36.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46018435 BTC (250,019.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 928,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.96 % (177,422.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,913.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03972005 BTC (36,893.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.94 CZK over 2477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008904 BTC for 82.70 CZK @ 928,848 CZK\nFees are 0.29047947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (306.51999437615246905372973569 CZK)\nThe limits being 0.10 % (36.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46018435 BTC (250,019.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 928,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.96 % (177,422.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,913.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03972005 BTC (36,893.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.94 CZK over 2477 transactions" + } + ] + }, + { + "id": 4148, + "type": "message", + "date": "2023-12-18T09:00:07", + "date_unixtime": "1702886407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008904 BTC for 82.70 CZK @ 928,848 CZK\nFees are 0.29047947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (241.50060162969588470899918569 CZK)\nThe limits being 0.10 % (36.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46027339 BTC (250,102.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 928,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.94 % (177,421.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,830.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03980909 BTC (36,976.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.93 CZK over 2478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008904 BTC for 82.70 CZK @ 928,848 CZK\nFees are 0.29047947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (241.50060162969588470899918569 CZK)\nThe limits being 0.10 % (36.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46027339 BTC (250,102.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 928,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.94 % (177,421.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,830.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03980909 BTC (36,976.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.93 CZK over 2478 transactions" + } + ] + }, + { + "id": 4149, + "type": "message", + "date": "2023-12-18T13:00:09", + "date_unixtime": "1702900809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008904 BTC for 82.70 CZK @ 928,843 CZK\nFees are 0.29047791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (260.07617239034448612247072353 CZK)\nThe limits being 0.10 % (37.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46036243 BTC (250,185.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 928,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.92 % (177,419.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,747.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03989813 BTC (37,059.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.92 CZK over 2479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008904 BTC for 82.70 CZK @ 928,843 CZK\nFees are 0.29047791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (260.07617239034448612247072353 CZK)\nThe limits being 0.10 % (37.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46036243 BTC (250,185.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 928,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.92 % (177,419.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,747.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03989813 BTC (37,059.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.92 CZK over 2479 transactions" + } + ] + }, + { + "id": 4150, + "type": "message", + "date": "2023-12-18T17:00:09", + "date_unixtime": "1702915209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008860 BTC for 82.71 CZK @ 933,493 CZK\nFees are 0.29048929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (420.07177575438560973387725355 CZK)\nThe limits being 0.10 % (37.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46045103 BTC (250,268.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 933,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.75 % (179,559.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,664.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03998673 BTC (37,327.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.91 CZK over 2480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008860 BTC for 82.71 CZK @ 933,493 CZK\nFees are 0.29048929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (420.07177575438560973387725355 CZK)\nThe limits being 0.10 % (37.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46045103 BTC (250,268.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 933,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.75 % (179,559.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,664.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03998673 BTC (37,327.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.91 CZK over 2480 transactions" + } + ] + }, + { + "id": 4151, + "type": "message", + "date": "2023-12-18T21:00:06", + "date_unixtime": "1702929606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008841 BTC for 82.70 CZK @ 935,442 CZK\nFees are 0.29047157 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (477.07536432462627833461743758 CZK)\nThe limits being 0.10 % (37.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46053944 BTC (250,351.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 935,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.08 % (180,456.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,581.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04007514 BTC (37,487.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.91 CZK over 2481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008841 BTC for 82.70 CZK @ 935,442 CZK\nFees are 0.29047157 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (477.07536432462627833461743758 CZK)\nThe limits being 0.10 % (37.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46053944 BTC (250,351.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 935,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.08 % (180,456.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,581.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04007514 BTC (37,487.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.91 CZK over 2481 transactions" + } + ] + }, + { + "id": 4152, + "type": "message", + "date": "2023-12-19T01:00:07", + "date_unixtime": "1702944007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008651 BTC for 82.71 CZK @ 956,045 CZK\nFees are 0.29048935 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (334.61586854977639526251807269 CZK)\nThe limits being 0.10 % (38.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46062595 BTC (250,434.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.85 % (189,944.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,498.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04016165 BTC (38,396.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.90 CZK over 2482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008651 BTC for 82.71 CZK @ 956,045 CZK\nFees are 0.29048935 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (334.61586854977639526251807269 CZK)\nThe limits being 0.10 % (38.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46062595 BTC (250,434.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.85 % (189,944.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,498.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04016165 BTC (38,396.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.90 CZK over 2482 transactions" + } + ] + }, + { + "id": 4153, + "type": "message", + "date": "2023-12-19T05:00:09", + "date_unixtime": "1702958409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008579 BTC for 82.71 CZK @ 964,091 CZK\nFees are 0.29049607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (472.40474331098876278287678631 CZK)\nThe limits being 0.10 % (38.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46071174 BTC (250,517.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 964,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.30 % (193,650.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,415.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04024744 BTC (38,802.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.89 CZK over 2483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008579 BTC for 82.71 CZK @ 964,091 CZK\nFees are 0.29049607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (472.40474331098876278287678631 CZK)\nThe limits being 0.10 % (38.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46071174 BTC (250,517.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 964,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.30 % (193,650.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,415.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04024744 BTC (38,802.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.89 CZK over 2483 transactions" + } + ] + }, + { + "id": 4154, + "type": "message", + "date": "2023-12-19T09:00:08", + "date_unixtime": "1702972808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008594 BTC for 82.71 CZK @ 962,401 CZK\nFees are 0.29049378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.46 % (567.81658940624268400138727857 CZK)\nThe limits being 0.10 % (38.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46079768 BTC (250,600.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.96 % (192,871.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,332.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04033338 BTC (38,816.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.89 CZK over 2484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008594 BTC for 82.71 CZK @ 962,401 CZK\nFees are 0.29049378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.46 % (567.81658940624268400138727857 CZK)\nThe limits being 0.10 % (38.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46079768 BTC (250,600.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.96 % (192,871.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,332.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04033338 BTC (38,816.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.89 CZK over 2484 transactions" + } + ] + }, + { + "id": 4155, + "type": "message", + "date": "2023-12-19T13:00:09", + "date_unixtime": "1702987209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008582 BTC for 82.70 CZK @ 963,657 CZK\nFees are 0.29046666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.93 % (751.65226216515326164994414218 CZK)\nThe limits being 0.10 % (38.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46088350 BTC (250,683.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 963,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.17 % (193,450.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,249.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04041920 BTC (38,950.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.88 CZK over 2485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008582 BTC for 82.70 CZK @ 963,657 CZK\nFees are 0.29046666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.93 % (751.65226216515326164994414218 CZK)\nThe limits being 0.10 % (38.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46088350 BTC (250,683.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 963,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.17 % (193,450.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,249.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04041920 BTC (38,950.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.88 CZK over 2485 transactions" + } + ] + }, + { + "id": 4156, + "type": "message", + "date": "2023-12-19T17:00:09", + "date_unixtime": "1703001609", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008723 BTC for 82.70 CZK @ 948,100 CZK\nFees are 0.29047286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (578.34116104125072734938205793 CZK)\nThe limits being 0.10 % (38.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46097073 BTC (250,766.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 543,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 948,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.28 % (186,280.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,166.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04050643 BTC (38,404.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.87 CZK over 2486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008723 BTC for 82.70 CZK @ 948,100 CZK\nFees are 0.29047286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.51 % (578.34116104125072734938205793 CZK)\nThe limits being 0.10 % (38.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46097073 BTC (250,766.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 543,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 948,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.28 % (186,280.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,166.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04050643 BTC (38,404.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.87 CZK over 2486 transactions" + } + ] + }, + { + "id": 4157, + "type": "message", + "date": "2023-12-19T21:00:08", + "date_unixtime": "1703016008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008758 BTC for 82.71 CZK @ 944,362 CZK\nFees are 0.29048845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (519.39909615842154651002832860 CZK)\nThe limits being 0.10 % (38.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46105831 BTC (250,849.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.57 % (184,556.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,083.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04059401 BTC (38,335.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.86 CZK over 2487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008758 BTC for 82.71 CZK @ 944,362 CZK\nFees are 0.29048845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.35 % (519.39909615842154651002832860 CZK)\nThe limits being 0.10 % (38.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46105831 BTC (250,849.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.57 % (184,556.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,083.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04059401 BTC (38,335.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.86 CZK over 2487 transactions" + } + ] + }, + { + "id": 4158, + "type": "message", + "date": "2023-12-20T01:00:08", + "date_unixtime": "1703030408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008752 BTC for 82.71 CZK @ 945,039 CZK\nFees are 0.29049764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (434.71808599062331200942951955 CZK)\nThe limits being 0.10 % (38.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46114583 BTC (250,932.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 945,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.67 % (184,868.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,000.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04068153 BTC (38,445.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.86 CZK over 2488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008752 BTC for 82.71 CZK @ 945,039 CZK\nFees are 0.29049764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (434.71808599062331200942951955 CZK)\nThe limits being 0.10 % (38.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46114583 BTC (250,932.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 945,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.67 % (184,868.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,000.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04068153 BTC (38,445.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.86 CZK over 2488 transactions" + } + ] + }, + { + "id": 4159, + "type": "message", + "date": "2023-12-20T05:00:06", + "date_unixtime": "1703044806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008732 BTC for 82.71 CZK @ 947,184 CZK\nFees are 0.29049160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (454.64840537733142430261834381 CZK)\nThe limits being 0.10 % (38.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46123315 BTC (251,015.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.04 % (185,857.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,917.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04076885 BTC (38,615.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.85 CZK over 2489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008732 BTC for 82.71 CZK @ 947,184 CZK\nFees are 0.29049160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (454.64840537733142430261834381 CZK)\nThe limits being 0.10 % (38.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46123315 BTC (251,015.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.04 % (185,857.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,917.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04076885 BTC (38,615.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.85 CZK over 2489 transactions" + } + ] + }, + { + "id": 4160, + "type": "message", + "date": "2023-12-20T09:00:07", + "date_unixtime": "1703059207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008610 BTC for 82.71 CZK @ 960,626 CZK\nFees are 0.29049777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (480.31288486811838009475546390 CZK)\nThe limits being 0.10 % (39.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46131925 BTC (251,098.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.49 % (192,056.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,834.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04085495 BTC (39,246.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.84 CZK over 2490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008610 BTC for 82.71 CZK @ 960,626 CZK\nFees are 0.29049777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (480.31288486811838009475546390 CZK)\nThe limits being 0.10 % (39.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46131925 BTC (251,098.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.49 % (192,056.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,834.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04085495 BTC (39,246.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.84 CZK over 2490 transactions" + } + ] + }, + { + "id": 4161, + "type": "message", + "date": "2023-12-20T13:00:05", + "date_unixtime": "1703073605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008602 BTC for 82.71 CZK @ 961,484 CZK\nFees are 0.29048715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.25 % (1278.7737198785881592987668017 CZK)\nThe limits being 0.10 % (39.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46140527 BTC (251,181.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 961,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.62 % (192,452.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,751.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04094097 BTC (39,364.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.84 CZK over 2491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008602 BTC for 82.71 CZK @ 961,484 CZK\nFees are 0.29048715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.25 % (1278.7737198785881592987668017 CZK)\nThe limits being 0.10 % (39.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46140527 BTC (251,181.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 961,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.62 % (192,452.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,751.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04094097 BTC (39,364.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.84 CZK over 2491 transactions" + } + ] + }, + { + "id": 4162, + "type": "message", + "date": "2023-12-20T17:00:08", + "date_unixtime": "1703088008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008408 BTC for 82.71 CZK @ 983,704 CZK\nFees are 0.29049761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.07 % (836.1483999685686206744519776 CZK)\nThe limits being 0.10 % (40.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46148935 BTC (251,264.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 983,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.67 % (202,704.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,668.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04102505 BTC (40,356.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.83 CZK over 2492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008408 BTC for 82.71 CZK @ 983,704 CZK\nFees are 0.29049761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.07 % (836.1483999685686206744519776 CZK)\nThe limits being 0.10 % (40.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46148935 BTC (251,264.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 983,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.67 % (202,704.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,668.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04102505 BTC (40,356.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.83 CZK over 2492 transactions" + } + ] + }, + { + "id": 4163, + "type": "message", + "date": "2023-12-20T21:00:08", + "date_unixtime": "1703102408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008456 BTC for 82.71 CZK @ 978,078 CZK\nFees are 0.29048512 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.63 % (655.31225996146882316810746115 CZK)\nThe limits being 0.10 % (40.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46157391 BTC (251,347.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 978,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.61 % (200,107.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,585.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04110961 BTC (40,208.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.82 CZK over 2493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008456 BTC for 82.71 CZK @ 978,078 CZK\nFees are 0.29048512 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.63 % (655.31225996146882316810746115 CZK)\nThe limits being 0.10 % (40.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46157391 BTC (251,347.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 978,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.61 % (200,107.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,585.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04110961 BTC (40,208.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.82 CZK over 2493 transactions" + } + ] + }, + { + "id": 4164, + "type": "message", + "date": "2023-12-21T01:00:06", + "date_unixtime": "1703116806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008466 BTC for 82.71 CZK @ 976,935 CZK\nFees are 0.29048877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (517.77554993855076803594694735 CZK)\nThe limits being 0.10 % (40.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46165857 BTC (251,430.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.38 % (199,580.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,502.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04119427 BTC (40,244.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.81 CZK over 2494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008466 BTC for 82.71 CZK @ 976,935 CZK\nFees are 0.29048877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (517.77554993855076803594694735 CZK)\nThe limits being 0.10 % (40.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46165857 BTC (251,430.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.38 % (199,580.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,502.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04119427 BTC (40,244.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.81 CZK over 2494 transactions" + } + ] + }, + { + "id": 4165, + "type": "message", + "date": "2023-12-21T05:00:08", + "date_unixtime": "1703131208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,322 CZK\nFees are 0.29046654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (488.66099996031380124657058840 CZK)\nThe limits being 0.10 % (40.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46174319 BTC (251,513.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.42 % (199,758.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,419.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04127889 BTC (40,342.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.81 CZK over 2495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,322 CZK\nFees are 0.29046654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.21 % (488.66099996031380124657058840 CZK)\nThe limits being 0.10 % (40.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46174319 BTC (251,513.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.42 % (199,758.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,419.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04127889 BTC (40,342.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.81 CZK over 2495 transactions" + } + ] + }, + { + "id": 4166, + "type": "message", + "date": "2023-12-21T09:00:08", + "date_unixtime": "1703145608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008450 BTC for 82.70 CZK @ 978,752 CZK\nFees are 0.29047903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (469.80095997735735576370277995 CZK)\nThe limits being 0.10 % (40.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46182769 BTC (251,596.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 978,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.66 % (200,418.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,336.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04136339 BTC (40,484.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.80 CZK over 2496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008450 BTC for 82.70 CZK @ 978,752 CZK\nFees are 0.29047903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (469.80095997735735576370277995 CZK)\nThe limits being 0.10 % (40.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46182769 BTC (251,596.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 978,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.66 % (200,418.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,336.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04136339 BTC (40,484.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.80 CZK over 2496 transactions" + } + ] + }, + { + "id": 4167, + "type": "message", + "date": "2023-12-21T13:00:09", + "date_unixtime": "1703160009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008422 BTC for 82.71 CZK @ 982,059 CZK\nFees are 0.29049472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (471.38831999187834268495317446 CZK)\nThe limits being 0.10 % (40.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46191191 BTC (251,679.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 982,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.24 % (201,945.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,253.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04144761 BTC (40,704.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.79 CZK over 2497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008422 BTC for 82.71 CZK @ 982,059 CZK\nFees are 0.29049472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (471.38831999187834268495317446 CZK)\nThe limits being 0.10 % (40.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46191191 BTC (251,679.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 982,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.24 % (201,945.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,253.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04144761 BTC (40,704.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.79 CZK over 2497 transactions" + } + ] + }, + { + "id": 4168, + "type": "message", + "date": "2023-12-21T17:00:08", + "date_unixtime": "1703174408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008439 BTC for 82.70 CZK @ 980,000 CZK\nFees are 0.29047080 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.26 % (921.20000 CZK)\nThe limits being 0.10 % (40.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46199630 BTC (251,762.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 544,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 980,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.83 % (200,994.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,170.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04153200 BTC (40,701.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.79 CZK over 2498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008439 BTC for 82.70 CZK @ 980,000 CZK\nFees are 0.29047080 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.26 % (921.20000 CZK)\nThe limits being 0.10 % (40.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46199630 BTC (251,762.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 544,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 980,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.83 % (200,994.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,170.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04153200 BTC (40,701.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.79 CZK over 2498 transactions" + } + ] + }, + { + "id": 4169, + "type": "message", + "date": "2023-12-21T21:00:07", + "date_unixtime": "1703188807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008475 BTC for 82.70 CZK @ 975,832 CZK\nFees are 0.29046926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (653.80743994485377873607565264 CZK)\nThe limits being 0.10 % (40.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46208105 BTC (251,845.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.04 % (199,068.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,087.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04161675 BTC (40,610.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.78 CZK over 2499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008475 BTC for 82.70 CZK @ 975,832 CZK\nFees are 0.29046926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (653.80743994485377873607565264 CZK)\nThe limits being 0.10 % (40.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46208105 BTC (251,845.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.04 % (199,068.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,087.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04161675 BTC (40,610.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.78 CZK over 2499 transactions" + } + ] + }, + { + "id": 4170, + "type": "message", + "date": "2023-12-22T01:00:08", + "date_unixtime": "1703203208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008423 BTC for 82.70 CZK @ 981,891 CZK\nFees are 0.29047951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (490.94549996299902732694858040 CZK)\nThe limits being 0.10 % (40.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46216528 BTC (251,928.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 981,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.13 % (201,867.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,004.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04170098 BTC (40,945.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.77 CZK over 2500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008423 BTC for 82.70 CZK @ 981,891 CZK\nFees are 0.29047951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (490.94549996299902732694858040 CZK)\nThe limits being 0.10 % (40.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46216528 BTC (251,928.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 981,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.13 % (201,867.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,004.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04170098 BTC (40,945.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.77 CZK over 2500 transactions" + } + ] + }, + { + "id": 4171, + "type": "message", + "date": "2023-12-22T05:00:08", + "date_unixtime": "1703217608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008391 BTC for 82.71 CZK @ 985,695 CZK\nFees are 0.29049703 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (492.84749996392675688718373785 CZK)\nThe limits being 0.10 % (41.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46224919 BTC (252,011.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 985,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.80 % (203,625.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,921.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04178489 BTC (41,187.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.76 CZK over 2501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008391 BTC for 82.71 CZK @ 985,695 CZK\nFees are 0.29049703 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (492.84749996392675688718373785 CZK)\nThe limits being 0.10 % (41.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46224919 BTC (252,011.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 985,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.80 % (203,625.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,921.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04178489 BTC (41,187.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.76 CZK over 2501 transactions" + } + ] + }, + { + "id": 4172, + "type": "message", + "date": "2023-12-22T09:00:07", + "date_unixtime": "1703232007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008464 BTC for 82.70 CZK @ 977,129 CZK\nFees are 0.29047782 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.15 % (469.02191997196956210917742533 CZK)\nThe limits being 0.10 % (40.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46233383 BTC (252,094.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.20 % (199,665.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,838.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04186953 BTC (40,911.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.76 CZK over 2502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008464 BTC for 82.70 CZK @ 977,129 CZK\nFees are 0.29047782 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.15 % (469.02191997196956210917742533 CZK)\nThe limits being 0.10 % (40.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46233383 BTC (252,094.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.20 % (199,665.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,838.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04186953 BTC (40,911.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.76 CZK over 2502 transactions" + } + ] + }, + { + "id": 4173, + "type": "message", + "date": "2023-12-22T13:00:07", + "date_unixtime": "1703246407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008485 BTC for 82.71 CZK @ 974,765 CZK\nFees are 0.29049402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (448.39189996826076322734894575 CZK)\nThe limits being 0.10 % (40.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46241868 BTC (252,177.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 974,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.74 % (198,572.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,755.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04195438 BTC (40,895.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.75 CZK over 2503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008485 BTC for 82.71 CZK @ 974,765 CZK\nFees are 0.29049402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (448.39189996826076322734894575 CZK)\nThe limits being 0.10 % (40.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46241868 BTC (252,177.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 974,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.74 % (198,572.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,755.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04195438 BTC (40,895.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.75 CZK over 2503 transactions" + } + ] + }, + { + "id": 4174, + "type": "message", + "date": "2023-12-22T17:00:08", + "date_unixtime": "1703260808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008466 BTC for 82.71 CZK @ 976,950 CZK\nFees are 0.29049323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (400.54949997828295508597301367 CZK)\nThe limits being 0.10 % (41.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46250334 BTC (252,260.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.12 % (199,582.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,672.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04203904 BTC (41,070.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.74 CZK over 2504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008466 BTC for 82.71 CZK @ 976,950 CZK\nFees are 0.29049323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (400.54949997828295508597301367 CZK)\nThe limits being 0.10 % (41.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46250334 BTC (252,260.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.12 % (199,582.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,672.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04203904 BTC (41,070.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.74 CZK over 2504 transactions" + } + ] + }, + { + "id": 4175, + "type": "message", + "date": "2023-12-22T21:00:08", + "date_unixtime": "1703275208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008460 BTC for 82.71 CZK @ 977,617 CZK\nFees are 0.29048555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (400.82296998213109907286671591 CZK)\nThe limits being 0.10 % (41.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46258794 BTC (252,343.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.21 % (199,890.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,589.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04212364 BTC (41,180.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.74 CZK over 2505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008460 BTC for 82.71 CZK @ 977,617 CZK\nFees are 0.29048555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (400.82296998213109907286671591 CZK)\nThe limits being 0.10 % (41.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46258794 BTC (252,343.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.21 % (199,890.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,589.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04212364 BTC (41,180.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.74 CZK over 2505 transactions" + } + ] + }, + { + "id": 4176, + "type": "message", + "date": "2023-12-23T01:00:06", + "date_unixtime": "1703289606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008398 BTC for 82.70 CZK @ 984,786 CZK\nFees are 0.29047125 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (403.76225995631151887659683129 CZK)\nThe limits being 0.10 % (41.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46267192 BTC (252,426.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.50 % (203,206.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,506.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04220762 BTC (41,565.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.73 CZK over 2506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008398 BTC for 82.70 CZK @ 984,786 CZK\nFees are 0.29047125 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (403.76225995631151887659683129 CZK)\nThe limits being 0.10 % (41.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46267192 BTC (252,426.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.50 % (203,206.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,506.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04220762 BTC (41,565.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.73 CZK over 2506 transactions" + } + ] + }, + { + "id": 4177, + "type": "message", + "date": "2023-12-23T05:00:07", + "date_unixtime": "1703304007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008480 BTC for 82.70 CZK @ 975,266 CZK\nFees are 0.29047206 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (243.81649997414708896221714562 CZK)\nThe limits being 0.10 % (41.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46275672 BTC (252,509.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.73 % (198,801.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,423.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04229242 BTC (41,246.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.72 CZK over 2507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008480 BTC for 82.70 CZK @ 975,266 CZK\nFees are 0.29047206 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (243.81649997414708896221714562 CZK)\nThe limits being 0.10 % (41.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46275672 BTC (252,509.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.73 % (198,801.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,423.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04229242 BTC (41,246.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.72 CZK over 2507 transactions" + } + ] + }, + { + "id": 4178, + "type": "message", + "date": "2023-12-23T09:00:08", + "date_unixtime": "1703318408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008476 BTC for 82.71 CZK @ 975,814 CZK\nFees are 0.29049818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (185.40465999723008168907643447 CZK)\nThe limits being 0.10 % (41.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46284148 BTC (252,592.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.80 % (199,054.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,340.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04237718 BTC (41,352.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.71 CZK over 2508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008476 BTC for 82.71 CZK @ 975,814 CZK\nFees are 0.29049818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (185.40465999723008168907643447 CZK)\nThe limits being 0.10 % (41.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46284148 BTC (252,592.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.80 % (199,054.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,340.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04237718 BTC (41,352.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.71 CZK over 2508 transactions" + } + ] + }, + { + "id": 4179, + "type": "message", + "date": "2023-12-23T13:00:07", + "date_unixtime": "1703332807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008476 BTC for 82.70 CZK @ 975,715 CZK\nFees are 0.29046871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (273.20019999374534574952743268 CZK)\nThe limits being 0.10 % (41.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46292624 BTC (252,675.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.76 % (199,008.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,257.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04246194 BTC (41,430.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.71 CZK over 2509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008476 BTC for 82.70 CZK @ 975,715 CZK\nFees are 0.29046871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (273.20019999374534574952743268 CZK)\nThe limits being 0.10 % (41.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46292624 BTC (252,675.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.76 % (199,008.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,257.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04246194 BTC (41,430.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.71 CZK over 2509 transactions" + } + ] + }, + { + "id": 4180, + "type": "message", + "date": "2023-12-23T17:00:06", + "date_unixtime": "1703347206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008440 BTC for 82.70 CZK @ 979,903 CZK\nFees are 0.29047647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (195.98059998535929932440250592 CZK)\nThe limits being 0.10 % (41.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46301064 BTC (252,758.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 979,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.50 % (200,947.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,174.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04254634 BTC (41,691.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.70 CZK over 2510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008440 BTC for 82.70 CZK @ 979,903 CZK\nFees are 0.29047647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (195.98059998535929932440250592 CZK)\nThe limits being 0.10 % (41.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46301064 BTC (252,758.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 979,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.50 % (200,947.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,174.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04254634 BTC (41,691.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.70 CZK over 2510 transactions" + } + ] + }, + { + "id": 4181, + "type": "message", + "date": "2023-12-23T21:00:10", + "date_unixtime": "1703361610", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008450 BTC for 82.71 CZK @ 978,758 CZK\nFees are 0.29048082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (274.05223997193255558208990428 CZK)\nThe limits being 0.10 % (41.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46309514 BTC (252,841.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 545,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 978,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.27 % (200,416.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,091.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04263084 BTC (41,725.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.69 CZK over 2511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008450 BTC for 82.71 CZK @ 978,758 CZK\nFees are 0.29048082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (274.05223997193255558208990428 CZK)\nThe limits being 0.10 % (41.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46309514 BTC (252,841.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 545,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 978,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.27 % (200,416.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,091.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04263084 BTC (41,725.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.69 CZK over 2511 transactions" + } + ] + }, + { + "id": 4182, + "type": "message", + "date": "2023-12-24T01:00:08", + "date_unixtime": "1703376008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008444 BTC for 82.70 CZK @ 979,434 CZK\nFees are 0.29047504 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (244.85849998713644829548498778 CZK)\nThe limits being 0.10 % (41.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46317958 BTC (252,924.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 979,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.36 % (200,729.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,008.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04271528 BTC (41,836.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.69 CZK over 2512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008444 BTC for 82.70 CZK @ 979,434 CZK\nFees are 0.29047504 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (244.85849998713644829548498778 CZK)\nThe limits being 0.10 % (41.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46317958 BTC (252,924.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 979,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.36 % (200,729.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,008.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04271528 BTC (41,836.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.69 CZK over 2512 transactions" + } + ] + }, + { + "id": 4183, + "type": "message", + "date": "2023-12-24T05:00:07", + "date_unixtime": "1703390407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008426 BTC for 82.70 CZK @ 981,519 CZK\nFees are 0.29047288 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (245.37974997548930038480320065 CZK)\nThe limits being 0.10 % (42.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46326384 BTC (253,007.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 981,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.72 % (201,695.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,925.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04279954 BTC (42,008.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.68 CZK over 2513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008426 BTC for 82.70 CZK @ 981,519 CZK\nFees are 0.29047288 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (245.37974997548930038480320065 CZK)\nThe limits being 0.10 % (42.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46326384 BTC (253,007.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 981,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.72 % (201,695.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,925.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04279954 BTC (42,008.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.68 CZK over 2513 transactions" + } + ] + }, + { + "id": 4184, + "type": "message", + "date": "2023-12-24T09:00:08", + "date_unixtime": "1703404808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,323 CZK\nFees are 0.29046684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (215.01105999246079986885889931 CZK)\nThe limits being 0.10 % (41.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46334846 BTC (253,090.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.92 % (199,750.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,842.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04288416 BTC (41,911.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.67 CZK over 2514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,323 CZK\nFees are 0.29046684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (215.01105999246079986885889931 CZK)\nThe limits being 0.10 % (41.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46334846 BTC (253,090.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.92 % (199,750.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,842.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04288416 BTC (41,911.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.67 CZK over 2514 transactions" + } + ] + }, + { + "id": 4185, + "type": "message", + "date": "2023-12-24T13:00:07", + "date_unixtime": "1703419207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008458 BTC for 82.71 CZK @ 977,881 CZK\nFees are 0.29049530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (205.35500999398770182818399966 CZK)\nThe limits being 0.10 % (42.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46343304 BTC (253,173.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.00 % (200,009.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,759.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04296874 BTC (42,018.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.67 CZK over 2515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008458 BTC for 82.71 CZK @ 977,881 CZK\nFees are 0.29049530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (205.35500999398770182818399966 CZK)\nThe limits being 0.10 % (42.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46343304 BTC (253,173.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.00 % (200,009.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,759.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04296874 BTC (42,018.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.67 CZK over 2515 transactions" + } + ] + }, + { + "id": 4186, + "type": "message", + "date": "2023-12-24T17:00:07", + "date_unixtime": "1703433607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008443 BTC for 82.71 CZK @ 979,606 CZK\nFees are 0.29049165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (186.12513999769018786019628917 CZK)\nThe limits being 0.10 % (42.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46351747 BTC (253,256.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 979,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.29 % (200,808.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,676.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04305317 BTC (42,175.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.66 CZK over 2516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008443 BTC for 82.71 CZK @ 979,606 CZK\nFees are 0.29049165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (186.12513999769018786019628917 CZK)\nThe limits being 0.10 % (42.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46351747 BTC (253,256.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 979,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.29 % (200,808.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,676.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04305317 BTC (42,175.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.66 CZK over 2516 transactions" + } + ] + }, + { + "id": 4187, + "type": "message", + "date": "2023-12-24T21:00:07", + "date_unixtime": "1703448007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008457 BTC for 82.71 CZK @ 977,987 CZK\nFees are 0.29049244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (185.81752999537682908213118812 CZK)\nThe limits being 0.10 % (42.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46360204 BTC (253,339.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.97 % (200,057.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,593.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04313774 BTC (42,188.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.65 CZK over 2517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008457 BTC for 82.71 CZK @ 977,987 CZK\nFees are 0.29049244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (185.81752999537682908213118812 CZK)\nThe limits being 0.10 % (42.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46360204 BTC (253,339.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.97 % (200,057.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,593.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04313774 BTC (42,188.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.65 CZK over 2517 transactions" + } + ] + }, + { + "id": 4188, + "type": "message", + "date": "2023-12-25T01:00:07", + "date_unixtime": "1703462407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008575 BTC for 82.70 CZK @ 964,475 CZK\nFees are 0.29047618 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (183.25024997929985575267903444 CZK)\nThe limits being 0.10 % (41.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46368779 BTC (253,422.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 964,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.47 % (193,793.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,510.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04322349 BTC (41,687.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.64 CZK over 2518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008575 BTC for 82.70 CZK @ 964,475 CZK\nFees are 0.29047618 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (183.25024997929985575267903444 CZK)\nThe limits being 0.10 % (41.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46368779 BTC (253,422.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 964,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.47 % (193,793.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,510.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04322349 BTC (41,687.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.64 CZK over 2518 transactions" + } + ] + }, + { + "id": 4189, + "type": "message", + "date": "2023-12-25T05:00:07", + "date_unixtime": "1703476807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008551 BTC for 82.71 CZK @ 967,216 CZK\nFees are 0.29048640 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (174.09887999882530194721934812 CZK)\nThe limits being 0.10 % (41.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46377330 BTC (253,505.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.95 % (195,063.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,427.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04330900 BTC (41,889.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.64 CZK over 2519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008551 BTC for 82.71 CZK @ 967,216 CZK\nFees are 0.29048640 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (174.09887999882530194721934812 CZK)\nThe limits being 0.10 % (41.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46377330 BTC (253,505.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.95 % (195,063.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,427.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04330900 BTC (41,889.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.64 CZK over 2519 transactions" + } + ] + }, + { + "id": 4190, + "type": "message", + "date": "2023-12-25T09:00:07", + "date_unixtime": "1703491207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008524 BTC for 82.71 CZK @ 970,313 CZK\nFees are 0.29049637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (213.46885999891978263782065446 CZK)\nThe limits being 0.10 % (42.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46385854 BTC (253,588.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.49 % (196,499.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,344.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04339424 BTC (42,106.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.63 CZK over 2520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008524 BTC for 82.71 CZK @ 970,313 CZK\nFees are 0.29049637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (213.46885999891978263782065446 CZK)\nThe limits being 0.10 % (42.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46385854 BTC (253,588.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.49 % (196,499.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,344.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04339424 BTC (42,106.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.63 CZK over 2520 transactions" + } + ] + }, + { + "id": 4191, + "type": "message", + "date": "2023-12-25T13:00:06", + "date_unixtime": "1703505606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008547 BTC for 82.70 CZK @ 967,622 CZK\nFees are 0.29047239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (261.25793998995792717765811936 CZK)\nThe limits being 0.10 % (42.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46394401 BTC (253,671.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.97 % (195,251.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,261.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04347971 BTC (42,071.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.62 CZK over 2521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008547 BTC for 82.70 CZK @ 967,622 CZK\nFees are 0.29047239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (261.25793998995792717765811936 CZK)\nThe limits being 0.10 % (42.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46394401 BTC (253,671.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.97 % (195,251.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,261.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04347971 BTC (42,071.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.62 CZK over 2521 transactions" + } + ] + }, + { + "id": 4192, + "type": "message", + "date": "2023-12-25T17:00:07", + "date_unixtime": "1703520007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,322 CZK\nFees are 0.29046654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (273.65015997777572869807952950 CZK)\nThe limits being 0.10 % (42.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46402863 BTC (253,754.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.72 % (199,751.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,178.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04356433 BTC (42,576.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.62 CZK over 2522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,322 CZK\nFees are 0.29046654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (273.65015997777572869807952950 CZK)\nThe limits being 0.10 % (42.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46402863 BTC (253,754.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.72 % (199,751.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,178.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04356433 BTC (42,576.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.62 CZK over 2522 transactions" + } + ] + }, + { + "id": 4193, + "type": "message", + "date": "2023-12-25T21:00:07", + "date_unixtime": "1703534407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008495 BTC for 82.71 CZK @ 973,630 CZK\nFees are 0.29049774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (428.39719994967584026830167399 CZK)\nThe limits being 0.10 % (42.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46411358 BTC (253,837.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 546,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 973,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.02 % (198,037.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,095.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04364928 BTC (42,498.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.61 CZK over 2523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008495 BTC for 82.71 CZK @ 973,630 CZK\nFees are 0.29049774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (428.39719994967584026830167399 CZK)\nThe limits being 0.10 % (42.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46411358 BTC (253,837.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 546,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 973,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.02 % (198,037.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,095.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04364928 BTC (42,498.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.61 CZK over 2523 transactions" + } + ] + }, + { + "id": 4194, + "type": "message", + "date": "2023-12-26T01:00:07", + "date_unixtime": "1703548807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008473 BTC for 82.71 CZK @ 976,161 CZK\nFees are 0.29049862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (380.70278997543767355974848094 CZK)\nThe limits being 0.10 % (42.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46419831 BTC (253,920.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.45 % (199,212.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,012.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04373401 BTC (42,691.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.60 CZK over 2524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008473 BTC for 82.71 CZK @ 976,161 CZK\nFees are 0.29049862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (380.70278997543767355974848094 CZK)\nThe limits being 0.10 % (42.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46419831 BTC (253,920.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.45 % (199,212.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,012.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04373401 BTC (42,691.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.60 CZK over 2524 transactions" + } + ] + }, + { + "id": 4195, + "type": "message", + "date": "2023-12-26T05:00:06", + "date_unixtime": "1703563206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008510 BTC for 82.71 CZK @ 971,918 CZK\nFees are 0.29049898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (165.22605998745870065815474277 CZK)\nThe limits being 0.10 % (42.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46428341 BTC (254,003.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 971,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.65 % (197,242.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,929.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04381911 BTC (42,588.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.60 CZK over 2525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008510 BTC for 82.71 CZK @ 971,918 CZK\nFees are 0.29049898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (165.22605998745870065815474277 CZK)\nThe limits being 0.10 % (42.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46428341 BTC (254,003.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 971,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.65 % (197,242.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,929.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04381911 BTC (42,588.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.60 CZK over 2525 transactions" + } + ] + }, + { + "id": 4196, + "type": "message", + "date": "2023-12-26T09:00:07", + "date_unixtime": "1703577607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008606 BTC for 82.70 CZK @ 961,007 CZK\nFees are 0.29047805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (201.81146997940394767511941994 CZK)\nThe limits being 0.10 % (42.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46436947 BTC (254,086.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 961,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.63 % (192,176.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,846.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04390517 BTC (42,193.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.59 CZK over 2526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008606 BTC for 82.70 CZK @ 961,007 CZK\nFees are 0.29047805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (201.81146997940394767511941994 CZK)\nThe limits being 0.10 % (42.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46436947 BTC (254,086.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 961,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.63 % (192,176.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,846.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04390517 BTC (42,193.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.59 CZK over 2526 transactions" + } + ] + }, + { + "id": 4197, + "type": "message", + "date": "2023-12-26T13:00:06", + "date_unixtime": "1703592006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008650 BTC for 82.70 CZK @ 956,101 CZK\nFees are 0.29047269 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (325.07433996964381888822646746 CZK)\nThe limits being 0.10 % (42.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46445597 BTC (254,169.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.71 % (189,897.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,763.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04399167 BTC (42,060.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.58 CZK over 2527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008650 BTC for 82.70 CZK @ 956,101 CZK\nFees are 0.29047269 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (325.07433996964381888822646746 CZK)\nThe limits being 0.10 % (42.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46445597 BTC (254,169.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.71 % (189,897.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,763.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04399167 BTC (42,060.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.58 CZK over 2527 transactions" + } + ] + }, + { + "id": 4198, + "type": "message", + "date": "2023-12-26T17:00:05", + "date_unixtime": "1703606405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008742 BTC for 82.71 CZK @ 946,067 CZK\nFees are 0.29048126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (264.89876000003191757241327738 CZK)\nThe limits being 0.10 % (41.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46454339 BTC (254,252.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.86 % (185,236.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,680.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04407909 BTC (41,701.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.57 CZK over 2528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008742 BTC for 82.71 CZK @ 946,067 CZK\nFees are 0.29048126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (264.89876000003191757241327738 CZK)\nThe limits being 0.10 % (41.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46454339 BTC (254,252.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.86 % (185,236.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,680.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04407909 BTC (41,701.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.57 CZK over 2528 transactions" + } + ] + }, + { + "id": 4199, + "type": "message", + "date": "2023-12-26T21:00:06", + "date_unixtime": "1703620806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008806 BTC for 82.70 CZK @ 939,189 CZK\nFees are 0.29048058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (291.14858999407139739505869816 CZK)\nThe limits being 0.10 % (41.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46463145 BTC (254,335.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 939,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.58 % (182,041.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,597.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04416715 BTC (41,481.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.57 CZK over 2529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008806 BTC for 82.70 CZK @ 939,189 CZK\nFees are 0.29048058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (291.14858999407139739505869816 CZK)\nThe limits being 0.10 % (41.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46463145 BTC (254,335.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 939,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.58 % (182,041.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,597.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04416715 BTC (41,481.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.57 CZK over 2529 transactions" + } + ] + }, + { + "id": 4200, + "type": "message", + "date": "2023-12-27T01:00:06", + "date_unixtime": "1703635206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008727 BTC for 82.71 CZK @ 947,727 CZK\nFees are 0.29049165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (284.31809998795895356283944662 CZK)\nThe limits being 0.10 % (41.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46471872 BTC (254,418.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.11 % (186,008.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,514.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04425442 BTC (41,941.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.56 CZK over 2530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008727 BTC for 82.71 CZK @ 947,727 CZK\nFees are 0.29049165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (284.31809998795895356283944662 CZK)\nThe limits being 0.10 % (41.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46471872 BTC (254,418.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.11 % (186,008.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,514.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04425442 BTC (41,941.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.56 CZK over 2530 transactions" + } + ] + }, + { + "id": 4201, + "type": "message", + "date": "2023-12-27T05:00:08", + "date_unixtime": "1703649608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008769 BTC for 82.70 CZK @ 943,145 CZK\nFees are 0.29047848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (264.08059997557868932109722256 CZK)\nThe limits being 0.10 % (41.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46480641 BTC (254,501.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.25 % (183,878.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,431.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04434211 BTC (41,821.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.55 CZK over 2531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008769 BTC for 82.70 CZK @ 943,145 CZK\nFees are 0.29047848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (264.08059997557868932109722256 CZK)\nThe limits being 0.10 % (41.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46480641 BTC (254,501.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.25 % (183,878.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,431.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04434211 BTC (41,821.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.55 CZK over 2531 transactions" + } + ] + }, + { + "id": 4202, + "type": "message", + "date": "2023-12-27T09:00:08", + "date_unixtime": "1703664008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008725 BTC for 82.70 CZK @ 947,865 CZK\nFees are 0.29046736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (246.44489998700822193954397431 CZK)\nThe limits being 0.10 % (42.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46489366 BTC (254,584.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.09 % (186,072.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,348.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04442936 BTC (42,113.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.55 CZK over 2532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008725 BTC for 82.70 CZK @ 947,865 CZK\nFees are 0.29046736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (246.44489998700822193954397431 CZK)\nThe limits being 0.10 % (42.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46489366 BTC (254,584.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.09 % (186,072.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,348.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04442936 BTC (42,113.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.55 CZK over 2532 transactions" + } + ] + }, + { + "id": 4203, + "type": "message", + "date": "2023-12-27T13:00:09", + "date_unixtime": "1703678409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008589 BTC for 82.70 CZK @ 962,900 CZK\nFees are 0.29047530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (375.53099998416300893084473288 CZK)\nThe limits being 0.10 % (42.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46497955 BTC (254,667.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.81 % (193,061.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,265.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04451525 BTC (42,863.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.54 CZK over 2533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008589 BTC for 82.70 CZK @ 962,900 CZK\nFees are 0.29047530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (375.53099998416300893084473288 CZK)\nThe limits being 0.10 % (42.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46497955 BTC (254,667.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.81 % (193,061.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,265.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04451525 BTC (42,863.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.54 CZK over 2533 transactions" + } + ] + }, + { + "id": 4204, + "type": "message", + "date": "2023-12-27T17:00:08", + "date_unixtime": "1703692808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008608 BTC for 82.71 CZK @ 960,851 CZK\nFees are 0.29049839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (557.29357993769020324774071419 CZK)\nThe limits being 0.10 % (42.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46506563 BTC (254,750.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.41 % (192,108.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,182.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04460133 BTC (42,855.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.53 CZK over 2534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008608 BTC for 82.71 CZK @ 960,851 CZK\nFees are 0.29049839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (557.29357993769020324774071419 CZK)\nThe limits being 0.10 % (42.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46506563 BTC (254,750.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.41 % (192,108.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,182.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04460133 BTC (42,855.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.53 CZK over 2534 transactions" + } + ] + }, + { + "id": 4205, + "type": "message", + "date": "2023-12-27T21:00:07", + "date_unixtime": "1703707207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008593 BTC for 82.71 CZK @ 962,500 CZK\nFees are 0.29048986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (866.2499999217216641556716046 CZK)\nThe limits being 0.10 % (43.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46515156 BTC (254,833.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.69 % (192,875.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,099.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04468726 BTC (43,011.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.53 CZK over 2535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008593 BTC for 82.71 CZK @ 962,500 CZK\nFees are 0.29048986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (866.2499999217216641556716046 CZK)\nThe limits being 0.10 % (43.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46515156 BTC (254,833.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.69 % (192,875.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,099.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04468726 BTC (43,011.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.53 CZK over 2535 transactions" + } + ] + }, + { + "id": 4206, + "type": "message", + "date": "2023-12-28T01:00:05", + "date_unixtime": "1703721605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008544 BTC for 82.71 CZK @ 968,000 CZK\nFees are 0.29048387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (871.2000 CZK)\nThe limits being 0.10 % (43.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46523700 BTC (254,916.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 547,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 968,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.67 % (195,433.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,016.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04477270 BTC (43,339.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.52 CZK over 2536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008544 BTC for 82.71 CZK @ 968,000 CZK\nFees are 0.29048387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (871.2000 CZK)\nThe limits being 0.10 % (43.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46523700 BTC (254,916.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 547,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 968,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.67 % (195,433.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,016.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04477270 BTC (43,339.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.52 CZK over 2536 transactions" + } + ] + }, + { + "id": 4207, + "type": "message", + "date": "2023-12-28T05:00:10", + "date_unixtime": "1703736010", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008537 BTC for 82.70 CZK @ 968,738 CZK\nFees are 0.29046716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (833.1146799928725506177599440 CZK)\nThe limits being 0.10 % (43.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46532237 BTC (254,999.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 968,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.78 % (195,776.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,933.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04485807 BTC (43,455.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.51 CZK over 2537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008537 BTC for 82.70 CZK @ 968,738 CZK\nFees are 0.29046716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (833.1146799928725506177599440 CZK)\nThe limits being 0.10 % (43.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46532237 BTC (254,999.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 968,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.78 % (195,776.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,933.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04485807 BTC (43,455.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.51 CZK over 2537 transactions" + } + ] + }, + { + "id": 4208, + "type": "message", + "date": "2023-12-28T09:00:06", + "date_unixtime": "1703750406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008610 BTC for 82.71 CZK @ 960,622 CZK\nFees are 0.29049663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (710.86027991692259438075909692 CZK)\nThe limits being 0.10 % (43.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46540847 BTC (255,082.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.27 % (191,999.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,850.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04494417 BTC (43,174.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.51 CZK over 2538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008610 BTC for 82.71 CZK @ 960,622 CZK\nFees are 0.29049663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (710.86027991692259438075909692 CZK)\nThe limits being 0.10 % (43.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46540847 BTC (255,082.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.27 % (191,999.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,850.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04494417 BTC (43,174.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.51 CZK over 2538 transactions" + } + ] + }, + { + "id": 4209, + "type": "message", + "date": "2023-12-28T13:00:07", + "date_unixtime": "1703764807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008610 BTC for 82.70 CZK @ 960,557 CZK\nFees are 0.29047698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (480.27849998871545409880748390 CZK)\nThe limits being 0.10 % (43.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46549457 BTC (255,165.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.23 % (191,968.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,767.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04503027 BTC (43,254.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.50 CZK over 2539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008610 BTC for 82.70 CZK @ 960,557 CZK\nFees are 0.29047698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (480.27849998871545409880748390 CZK)\nThe limits being 0.10 % (43.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46549457 BTC (255,165.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.23 % (191,968.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,767.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04503027 BTC (43,254.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.50 CZK over 2539 transactions" + } + ] + }, + { + "id": 4210, + "type": "message", + "date": "2023-12-28T17:00:08", + "date_unixtime": "1703779208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008710 BTC for 82.71 CZK @ 949,561 CZK\nFees are 0.29048683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (246.88585999747153619049743806 CZK)\nThe limits being 0.10 % (42.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46558167 BTC (255,248.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.20 % (186,850.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,684.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04511737 BTC (42,841.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.49 CZK over 2540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008710 BTC for 82.71 CZK @ 949,561 CZK\nFees are 0.29048683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (246.88585999747153619049743806 CZK)\nThe limits being 0.10 % (42.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46558167 BTC (255,248.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.20 % (186,850.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,684.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04511737 BTC (42,841.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.49 CZK over 2540 transactions" + } + ] + }, + { + "id": 4211, + "type": "message", + "date": "2023-12-28T21:00:08", + "date_unixtime": "1703793608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008650 BTC for 82.70 CZK @ 956,084 CZK\nFees are 0.29046752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (219.89931999735031436216018501 CZK)\nThe limits being 0.10 % (43.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46566817 BTC (255,331.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.37 % (189,886.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,601.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04520387 BTC (43,218.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.48 CZK over 2541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008650 BTC for 82.70 CZK @ 956,084 CZK\nFees are 0.29046752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (219.89931999735031436216018501 CZK)\nThe limits being 0.10 % (43.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46566817 BTC (255,331.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.37 % (189,886.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,601.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04520387 BTC (43,218.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.48 CZK over 2541 transactions" + } + ] + }, + { + "id": 4212, + "type": "message", + "date": "2023-12-29T01:00:10", + "date_unixtime": "1703808010", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008658 BTC for 82.71 CZK @ 955,264 CZK\nFees are 0.29048681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (219.71072000021177898606897114 CZK)\nThe limits being 0.10 % (43.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46575475 BTC (255,414.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.20 % (189,504.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,518.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04529045 BTC (43,264.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.48 CZK over 2542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008658 BTC for 82.71 CZK @ 955,264 CZK\nFees are 0.29048681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (219.71072000021177898606897114 CZK)\nThe limits being 0.10 % (43.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46575475 BTC (255,414.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.20 % (189,504.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,518.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04529045 BTC (43,264.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.48 CZK over 2542 transactions" + } + ] + }, + { + "id": 4213, + "type": "message", + "date": "2023-12-29T05:00:08", + "date_unixtime": "1703822408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008650 BTC for 82.70 CZK @ 956,101 CZK\nFees are 0.29047269 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (191.2201999821434228754273338 CZK)\nThe limits being 0.10 % (43.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46584125 BTC (255,497.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.32 % (189,894.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,435.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04537695 BTC (43,384.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.47 CZK over 2543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008650 BTC for 82.70 CZK @ 956,101 CZK\nFees are 0.29047269 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (191.2201999821434228754273338 CZK)\nThe limits being 0.10 % (43.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46584125 BTC (255,497.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.32 % (189,894.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,435.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04537695 BTC (43,384.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.47 CZK over 2543 transactions" + } + ] + }, + { + "id": 4214, + "type": "message", + "date": "2023-12-29T09:00:07", + "date_unixtime": "1703836807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008713 BTC for 82.71 CZK @ 949,251 CZK\nFees are 0.29049201 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (151.88015998407044413758776453 CZK)\nThe limits being 0.10 % (43.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46592838 BTC (255,580.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.05 % (186,702.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,352.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04546408 BTC (43,156.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.46 CZK over 2544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008713 BTC for 82.71 CZK @ 949,251 CZK\nFees are 0.29049201 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (151.88015998407044413758776453 CZK)\nThe limits being 0.10 % (43.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46592838 BTC (255,580.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.05 % (186,702.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,352.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04546408 BTC (43,156.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.46 CZK over 2544 transactions" + } + ] + }, + { + "id": 4215, + "type": "message", + "date": "2023-12-29T13:00:08", + "date_unixtime": "1703851208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008609 BTC for 82.71 CZK @ 960,693 CZK\nFees are 0.29048436 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (153.71087999760161076376716803 CZK)\nThe limits being 0.10 % (43.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46601447 BTC (255,663.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.11 % (192,033.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,269.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04555017 BTC (43,759.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.46 CZK over 2545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008609 BTC for 82.71 CZK @ 960,693 CZK\nFees are 0.29048436 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (153.71087999760161076376716803 CZK)\nThe limits being 0.10 % (43.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46601447 BTC (255,663.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.11 % (192,033.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,269.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04555017 BTC (43,759.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.46 CZK over 2545 transactions" + } + ] + }, + { + "id": 4216, + "type": "message", + "date": "2023-12-29T17:00:08", + "date_unixtime": "1703865608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008688 BTC for 82.70 CZK @ 951,905 CZK\nFees are 0.29046837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (218.9381499936685688488081769 CZK)\nThe limits being 0.10 % (43.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46610135 BTC (255,746.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.49 % (187,938.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,186.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04563705 BTC (43,442.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.45 CZK over 2546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008688 BTC for 82.70 CZK @ 951,905 CZK\nFees are 0.29046837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (218.9381499936685688488081769 CZK)\nThe limits being 0.10 % (43.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46610135 BTC (255,746.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.49 % (187,938.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,186.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04563705 BTC (43,442.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.45 CZK over 2546 transactions" + } + ] + }, + { + "id": 4217, + "type": "message", + "date": "2023-12-29T21:00:07", + "date_unixtime": "1703880007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008739 BTC for 82.71 CZK @ 946,414 CZK\nFees are 0.29048808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (198.74693998057947201957583746 CZK)\nThe limits being 0.10 % (43.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46618874 BTC (255,829.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.46 % (185,378.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,103.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04572444 BTC (43,274.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.44 CZK over 2547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008739 BTC for 82.71 CZK @ 946,414 CZK\nFees are 0.29048808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (198.74693998057947201957583746 CZK)\nThe limits being 0.10 % (43.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46618874 BTC (255,829.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.46 % (185,378.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,103.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04572444 BTC (43,274.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.44 CZK over 2547 transactions" + } + ] + }, + { + "id": 4218, + "type": "message", + "date": "2023-12-30T01:00:08", + "date_unixtime": "1703894408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008763 BTC for 82.70 CZK @ 943,791 CZK\nFees are 0.29047855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (188.75819998031538707300893296 CZK)\nThe limits being 0.10 % (43.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46627637 BTC (255,912.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.96 % (184,155.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,020.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04581207 BTC (43,237.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.44 CZK over 2548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008763 BTC for 82.70 CZK @ 943,791 CZK\nFees are 0.29047855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (188.75819998031538707300893296 CZK)\nThe limits being 0.10 % (43.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46627637 BTC (255,912.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.96 % (184,155.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,020.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04581207 BTC (43,237.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.44 CZK over 2548 transactions" + } + ] + }, + { + "id": 4219, + "type": "message", + "date": "2023-12-30T05:00:07", + "date_unixtime": "1703908807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008757 BTC for 82.71 CZK @ 944,458 CZK\nFees are 0.29048481 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (179.44701998981638946796865306 CZK)\nThe limits being 0.10 % (43.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46636394 BTC (255,995.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.06 % (184,466.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,937.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04589964 BTC (43,350.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.43 CZK over 2549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008757 BTC for 82.71 CZK @ 944,458 CZK\nFees are 0.29048481 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (179.44701998981638946796865306 CZK)\nThe limits being 0.10 % (43.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46636394 BTC (255,995.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.06 % (184,466.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,937.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04589964 BTC (43,350.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.43 CZK over 2549 transactions" + } + ] + }, + { + "id": 4220, + "type": "message", + "date": "2023-12-30T09:00:06", + "date_unixtime": "1703923206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008770 BTC for 82.70 CZK @ 943,028 CZK\nFees are 0.29047556 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (207.46615998850090816691181775 CZK)\nThe limits being 0.10 % (43.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46645164 BTC (256,078.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 548,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 943,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.77 % (183,798.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,854.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04598734 BTC (43,367.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.42 CZK over 2550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008770 BTC for 82.70 CZK @ 943,028 CZK\nFees are 0.29047556 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (207.46615998850090816691181775 CZK)\nThe limits being 0.10 % (43.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46645164 BTC (256,078.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 548,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 943,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.77 % (183,798.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,854.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04598734 BTC (43,367.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.42 CZK over 2550 transactions" + } + ] + }, + { + "id": 4221, + "type": "message", + "date": "2023-12-30T13:00:08", + "date_unixtime": "1703937608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008777 BTC for 82.70 CZK @ 942,286 CZK\nFees are 0.29047868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (216.72577997970984430192174035 CZK)\nThe limits being 0.10 % (43.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46653941 BTC (256,161.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 942,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.62 % (183,452.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,771.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04607511 BTC (43,415.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.42 CZK over 2551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008777 BTC for 82.70 CZK @ 942,286 CZK\nFees are 0.29047868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (216.72577997970984430192174035 CZK)\nThe limits being 0.10 % (43.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46653941 BTC (256,161.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 942,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.62 % (183,452.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,771.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04607511 BTC (43,415.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.42 CZK over 2551 transactions" + } + ] + }, + { + "id": 4222, + "type": "message", + "date": "2023-12-30T17:00:06", + "date_unixtime": "1703952006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008698 BTC for 82.70 CZK @ 950,808 CZK\nFees are 0.29046757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (256.71815997079891568290014610 CZK)\nThe limits being 0.10 % (43.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46662639 BTC (256,244.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.14 % (187,428.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,688.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04616209 BTC (43,891.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.41 CZK over 2552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008698 BTC for 82.70 CZK @ 950,808 CZK\nFees are 0.29046757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (256.71815997079891568290014610 CZK)\nThe limits being 0.10 % (43.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46662639 BTC (256,244.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.14 % (187,428.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,688.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04616209 BTC (43,891.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.41 CZK over 2552 transactions" + } + ] + }, + { + "id": 4223, + "type": "message", + "date": "2023-12-30T21:00:07", + "date_unixtime": "1703966407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008633 BTC for 82.71 CZK @ 958,018 CZK\nFees are 0.29048307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (325.72611996550241651035923097 CZK)\nThe limits being 0.10 % (44.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46671272 BTC (256,327.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.43 % (190,792.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,605.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04624842 BTC (44,306.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.40 CZK over 2553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008633 BTC for 82.71 CZK @ 958,018 CZK\nFees are 0.29048307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (325.72611996550241651035923097 CZK)\nThe limits being 0.10 % (44.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46671272 BTC (256,327.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.43 % (190,792.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,605.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04624842 BTC (44,306.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.40 CZK over 2553 transactions" + } + ] + }, + { + "id": 4224, + "type": "message", + "date": "2023-12-31T01:00:08", + "date_unixtime": "1703980808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008676 BTC for 82.70 CZK @ 953,252 CZK\nFees are 0.29047763 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (305.04063999147290614706526237 CZK)\nThe limits being 0.10 % (44.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46679948 BTC (256,410.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 953,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.54 % (188,567.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,522.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04633518 BTC (44,169.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.40 CZK over 2554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008676 BTC for 82.70 CZK @ 953,252 CZK\nFees are 0.29047763 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (305.04063999147290614706526237 CZK)\nThe limits being 0.10 % (44.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46679948 BTC (256,410.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 953,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.54 % (188,567.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,522.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04633518 BTC (44,169.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.40 CZK over 2554 transactions" + } + ] + }, + { + "id": 4225, + "type": "message", + "date": "2023-12-31T05:00:08", + "date_unixtime": "1703995208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008676 BTC for 82.70 CZK @ 953,251 CZK\nFees are 0.29047732 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (257.37776997314378926867995211 CZK)\nThe limits being 0.10 % (44.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46688624 BTC (256,493.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 953,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.52 % (188,566.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,439.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04642194 BTC (44,251.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.39 CZK over 2555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008676 BTC for 82.70 CZK @ 953,251 CZK\nFees are 0.29047732 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (257.37776997314378926867995211 CZK)\nThe limits being 0.10 % (44.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46688624 BTC (256,493.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 953,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.52 % (188,566.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,439.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04642194 BTC (44,251.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.39 CZK over 2555 transactions" + } + ] + }, + { + "id": 4226, + "type": "message", + "date": "2023-12-31T09:00:06", + "date_unixtime": "1704009606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008633 BTC for 82.70 CZK @ 957,999 CZK\nFees are 0.29047731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (335.29964996830564817416812500 CZK)\nThe limits being 0.10 % (44.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46697257 BTC (256,576.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.36 % (190,783.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,356.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04650827 BTC (44,554.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.38 CZK over 2556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008633 BTC for 82.70 CZK @ 957,999 CZK\nFees are 0.29047731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (335.29964996830564817416812500 CZK)\nThe limits being 0.10 % (44.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46697257 BTC (256,576.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.36 % (190,783.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,356.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04650827 BTC (44,554.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.38 CZK over 2556 transactions" + } + ] + }, + { + "id": 4227, + "type": "message", + "date": "2023-12-31T13:00:08", + "date_unixtime": "1704024008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008624 BTC for 82.70 CZK @ 958,998 CZK\nFees are 0.29047708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (412.36913996859784816222996878 CZK)\nThe limits being 0.10 % (44.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46705881 BTC (256,659.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.51 % (191,249.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,273.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04659451 BTC (44,684.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.38 CZK over 2557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008624 BTC for 82.70 CZK @ 958,998 CZK\nFees are 0.29047708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (412.36913996859784816222996878 CZK)\nThe limits being 0.10 % (44.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46705881 BTC (256,659.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.51 % (191,249.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,273.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04659451 BTC (44,684.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.38 CZK over 2557 transactions" + } + ] + }, + { + "id": 4228, + "type": "message", + "date": "2023-12-31T17:00:05", + "date_unixtime": "1704038405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008628 BTC for 82.71 CZK @ 958,606 CZK\nFees are 0.29049302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (393.02845995321428315684164300 CZK)\nThe limits being 0.10 % (44.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46714509 BTC (256,742.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.42 % (191,066.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,190.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04668079 BTC (44,748.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.37 CZK over 2558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008628 BTC for 82.71 CZK @ 958,606 CZK\nFees are 0.29049302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (393.02845995321428315684164300 CZK)\nThe limits being 0.10 % (44.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46714509 BTC (256,742.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.42 % (191,066.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,190.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04668079 BTC (44,748.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.37 CZK over 2558 transactions" + } + ] + }, + { + "id": 4229, + "type": "message", + "date": "2023-12-31T21:00:07", + "date_unixtime": "1704052807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008633 BTC for 82.71 CZK @ 958,018 CZK\nFees are 0.29048307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (479.00899994926825957405769260 CZK)\nThe limits being 0.10 % (44.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46723142 BTC (256,825.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.29 % (190,791.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,107.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04676712 BTC (44,803.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.36 CZK over 2559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008633 BTC for 82.71 CZK @ 958,018 CZK\nFees are 0.29048307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (479.00899994926825957405769260 CZK)\nThe limits being 0.10 % (44.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46723142 BTC (256,825.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.29 % (190,791.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,107.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04676712 BTC (44,803.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.36 CZK over 2559 transactions" + } + ] + }, + { + "id": 4230, + "type": "message", + "date": "2024-01-01T01:00:10", + "date_unixtime": "1704067210", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008692 BTC for 82.70 CZK @ 951,500 CZK\nFees are 0.29047846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (447.20500 CZK)\nThe limits being 0.10 % (44.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46731834 BTC (256,908.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.08 % (187,745.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,024.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04685404 BTC (44,581.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.35 CZK over 2560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008692 BTC for 82.70 CZK @ 951,500 CZK\nFees are 0.29047846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (447.20500 CZK)\nThe limits being 0.10 % (44.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46731834 BTC (256,908.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.08 % (187,745.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,024.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04685404 BTC (44,581.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.35 CZK over 2560 transactions" + } + ] + }, + { + "id": 4231, + "type": "message", + "date": "2024-01-01T05:00:07", + "date_unixtime": "1704081607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008681 BTC for 82.70 CZK @ 952,678 CZK\nFees are 0.29047002 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (428.70509999932846487587189798 CZK)\nThe limits being 0.10 % (44.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46740515 BTC (256,991.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 952,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.27 % (188,295.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,941.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04694085 BTC (44,719.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.35 CZK over 2561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008681 BTC for 82.70 CZK @ 952,678 CZK\nFees are 0.29047002 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (428.70509999932846487587189798 CZK)\nThe limits being 0.10 % (44.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46740515 BTC (256,991.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 952,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.27 % (188,295.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,941.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04694085 BTC (44,719.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.35 CZK over 2561 transactions" + } + ] + }, + { + "id": 4232, + "type": "message", + "date": "2024-01-01T09:00:08", + "date_unixtime": "1704096008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008646 BTC for 82.71 CZK @ 956,603 CZK\nFees are 0.29049081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (334.81104998454979627745177330 CZK)\nThe limits being 0.10 % (44.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46749161 BTC (257,074.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 956,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.96 % (190,129.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,858.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04702731 BTC (44,986.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.34 CZK over 2562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008646 BTC for 82.71 CZK @ 956,603 CZK\nFees are 0.29049081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (334.81104998454979627745177330 CZK)\nThe limits being 0.10 % (44.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46749161 BTC (257,074.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 956,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.96 % (190,129.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,858.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04702731 BTC (44,986.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.34 CZK over 2562 transactions" + } + ] + }, + { + "id": 4233, + "type": "message", + "date": "2024-01-01T13:00:06", + "date_unixtime": "1704110406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008628 BTC for 82.71 CZK @ 958,579 CZK\nFees are 0.29048484 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (335.50264997404771755046488886 CZK)\nThe limits being 0.10 % (45.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46757789 BTC (257,157.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 549,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.29 % (191,053.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,775.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04711359 BTC (45,162.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.33 CZK over 2563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008628 BTC for 82.71 CZK @ 958,579 CZK\nFees are 0.29048484 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (335.50264997404771755046488886 CZK)\nThe limits being 0.10 % (45.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46757789 BTC (257,157.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 549,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.29 % (191,053.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,775.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04711359 BTC (45,162.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.33 CZK over 2563 transactions" + } + ] + }, + { + "id": 4234, + "type": "message", + "date": "2024-01-01T17:00:07", + "date_unixtime": "1704124807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008615 BTC for 82.70 CZK @ 960,000 CZK\nFees are 0.29047712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (278.40000 CZK)\nThe limits being 0.10 % (45.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46766404 BTC (257,240.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 960,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.53 % (191,717.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,692.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04719974 BTC (45,311.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.33 CZK over 2564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008615 BTC for 82.70 CZK @ 960,000 CZK\nFees are 0.29047712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (278.40000 CZK)\nThe limits being 0.10 % (45.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46766404 BTC (257,240.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 960,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.53 % (191,717.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,692.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04719974 BTC (45,311.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.33 CZK over 2564 transactions" + } + ] + }, + { + "id": 4235, + "type": "message", + "date": "2024-01-01T21:00:07", + "date_unixtime": "1704139207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008483 BTC for 82.70 CZK @ 974,947 CZK\nFees are 0.29047977 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (204.73886997771151200669165642 CZK)\nThe limits being 0.10 % (46.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46774887 BTC (257,322.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 974,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.22 % (198,707.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,609.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04728457 BTC (46,099.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.32 CZK over 2565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008483 BTC for 82.70 CZK @ 974,947 CZK\nFees are 0.29047977 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (204.73886997771151200669165642 CZK)\nThe limits being 0.10 % (46.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46774887 BTC (257,322.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 974,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.22 % (198,707.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,609.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04728457 BTC (46,099.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.32 CZK over 2565 transactions" + } + ] + }, + { + "id": 4236, + "type": "message", + "date": "2024-01-02T01:00:06", + "date_unixtime": "1704153606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008356 BTC for 82.71 CZK @ 989,811 CZK\nFees are 0.29049331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (168.26786998974150549667833241 CZK)\nThe limits being 0.10 % (46.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46783243 BTC (257,405.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 989,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.90 % (205,659.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,526.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04736813 BTC (46,885.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.31 CZK over 2566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008356 BTC for 82.71 CZK @ 989,811 CZK\nFees are 0.29049331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (168.26786998974150549667833241 CZK)\nThe limits being 0.10 % (46.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46783243 BTC (257,405.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 989,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.90 % (205,659.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,526.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04736813 BTC (46,885.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.31 CZK over 2566 transactions" + } + ] + }, + { + "id": 4237, + "type": "message", + "date": "2024-01-02T05:00:07", + "date_unixtime": "1704168007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008113 BTC for 82.70 CZK @ 1,019,357 CZK\nFees are 0.29046460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (163.09711998637088690753323555 CZK)\nThe limits being 0.10 % (48.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46791356 BTC (257,488.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,019,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.24 % (219,481.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,443.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04744926 BTC (48,367.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.31 CZK over 2567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008113 BTC for 82.70 CZK @ 1,019,357 CZK\nFees are 0.29046460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (163.09711998637088690753323555 CZK)\nThe limits being 0.10 % (48.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46791356 BTC (257,488.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,019,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.24 % (219,481.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,443.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04744926 BTC (48,367.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.31 CZK over 2567 transactions" + } + ] + }, + { + "id": 4238, + "type": "message", + "date": "2024-01-02T09:00:11", + "date_unixtime": "1704182411", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008081 BTC for 82.71 CZK @ 1,023,451 CZK\nFees are 0.29048090 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (153.51764999336871130476570464 CZK)\nThe limits being 0.10 % (48.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46799437 BTC (257,571.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,023,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.96 % (221,397.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,360.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04753007 BTC (48,644.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.30 CZK over 2568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008081 BTC for 82.71 CZK @ 1,023,451 CZK\nFees are 0.29048090 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (153.51764999336871130476570464 CZK)\nThe limits being 0.10 % (48.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46799437 BTC (257,571.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,023,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.96 % (221,397.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,360.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04753007 BTC (48,644.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.30 CZK over 2568 transactions" + } + ] + }, + { + "id": 4239, + "type": "message", + "date": "2024-01-02T13:00:08", + "date_unixtime": "1704196808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008070 BTC for 82.71 CZK @ 1,024,887 CZK\nFees are 0.29049258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (153.73308840989621825469592485 CZK)\nThe limits being 0.10 % (48.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46807507 BTC (257,654.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,024,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.19 % (222,069.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,277.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04761077 BTC (48,795.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.29 CZK over 2569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008070 BTC for 82.71 CZK @ 1,024,887 CZK\nFees are 0.29049258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (153.73308840989621825469592485 CZK)\nThe limits being 0.10 % (48.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46807507 BTC (257,654.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,024,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.19 % (222,069.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,277.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04761077 BTC (48,795.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.29 CZK over 2569 transactions" + } + ] + }, + { + "id": 4240, + "type": "message", + "date": "2024-01-02T17:00:08", + "date_unixtime": "1704211208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008108 BTC for 82.71 CZK @ 1,020,065 CZK\nFees are 0.29048720 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (142.80909999019219608528512319 CZK)\nThe limits being 0.10 % (48.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46815615 BTC (257,737.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,020,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.28 % (219,811.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,194.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04769185 BTC (48,648.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.29 CZK over 2570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008108 BTC for 82.71 CZK @ 1,020,065 CZK\nFees are 0.29048720 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (142.80909999019219608528512319 CZK)\nThe limits being 0.10 % (48.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46815615 BTC (257,737.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,020,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.28 % (219,811.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,194.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04769185 BTC (48,648.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.29 CZK over 2570 transactions" + } + ] + }, + { + "id": 4241, + "type": "message", + "date": "2024-01-02T21:00:10", + "date_unixtime": "1704225610", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008123 BTC for 82.70 CZK @ 1,018,106 CZK\nFees are 0.29046571 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (142.53483998912828858689281592 CZK)\nThe limits being 0.10 % (48.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46823738 BTC (257,820.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,018,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.90 % (218,894.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,111.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04777308 BTC (48,638.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.28 CZK over 2571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008123 BTC for 82.70 CZK @ 1,018,106 CZK\nFees are 0.29046571 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (142.53483998912828858689281592 CZK)\nThe limits being 0.10 % (48.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46823738 BTC (257,820.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,018,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.90 % (218,894.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,111.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04777308 BTC (48,638.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.28 CZK over 2571 transactions" + } + ] + }, + { + "id": 4242, + "type": "message", + "date": "2024-01-03T01:00:10", + "date_unixtime": "1704240010", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008148 BTC for 82.71 CZK @ 1,015,048 CZK\nFees are 0.29048454 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (121.80575998731978575721352291 CZK)\nThe limits being 0.10 % (48.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46831886 BTC (257,903.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,015,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.32 % (217,462.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,028.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04785456 BTC (48,574.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.27 CZK over 2572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008148 BTC for 82.71 CZK @ 1,015,048 CZK\nFees are 0.29048454 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (121.80575998731978575721352291 CZK)\nThe limits being 0.10 % (48.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46831886 BTC (257,903.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,015,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.32 % (217,462.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,028.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04785456 BTC (48,574.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.27 CZK over 2572 transactions" + } + ] + }, + { + "id": 4243, + "type": "message", + "date": "2024-01-03T05:00:09", + "date_unixtime": "1704254409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008093 BTC for 82.70 CZK @ 1,021,906 CZK\nFees are 0.29047309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (112.40965999454153142858268640 CZK)\nThe limits being 0.10 % (48.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46839979 BTC (257,986.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,021,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.54 % (220,673.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,946.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04793549 BTC (48,985.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.27 CZK over 2573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008093 BTC for 82.70 CZK @ 1,021,906 CZK\nFees are 0.29047309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (112.40965999454153142858268640 CZK)\nThe limits being 0.10 % (48.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46839979 BTC (257,986.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,021,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.54 % (220,673.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,946.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04793549 BTC (48,985.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.27 CZK over 2573 transactions" + } + ] + }, + { + "id": 4244, + "type": "message", + "date": "2024-01-03T09:00:08", + "date_unixtime": "1704268808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008145 BTC for 82.70 CZK @ 1,015,400 CZK\nFees are 0.29047828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (101.53999999388267521623978444 CZK)\nThe limits being 0.10 % (48.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46848124 BTC (258,069.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,015,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.33 % (217,625.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,863.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04801694 BTC (48,756.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.26 CZK over 2574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008145 BTC for 82.70 CZK @ 1,015,400 CZK\nFees are 0.29047828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (101.53999999388267521623978444 CZK)\nThe limits being 0.10 % (48.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46848124 BTC (258,069.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,015,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.33 % (217,625.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,863.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04801694 BTC (48,756.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.26 CZK over 2574 transactions" + } + ] + }, + { + "id": 4245, + "type": "message", + "date": "2024-01-03T13:00:10", + "date_unixtime": "1704283210", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008343 BTC for 82.71 CZK @ 991,363 CZK\nFees are 0.29049614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (109.04992999630145025791009187 CZK)\nThe limits being 0.10 % (47.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46856467 BTC (258,152.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 550,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.94 % (206,364.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,780.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04810037 BTC (47,684.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.25 CZK over 2575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008343 BTC for 82.71 CZK @ 991,363 CZK\nFees are 0.29049614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (109.04992999630145025791009187 CZK)\nThe limits being 0.10 % (47.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46856467 BTC (258,152.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 550,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.94 % (206,364.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,780.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04810037 BTC (47,684.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.25 CZK over 2575 transactions" + } + ] + }, + { + "id": 4246, + "type": "message", + "date": "2024-01-03T17:00:07", + "date_unixtime": "1704297607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008459 BTC for 82.71 CZK @ 977,732 CZK\nFees are 0.29048538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (117.32783999352543906941616389 CZK)\nThe limits being 0.10 % (47.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46864926 BTC (258,235.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.44 % (199,977.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,697.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04818496 BTC (47,111.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.25 CZK over 2576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008459 BTC for 82.71 CZK @ 977,732 CZK\nFees are 0.29048538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (117.32783999352543906941616389 CZK)\nThe limits being 0.10 % (47.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46864926 BTC (258,235.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.44 % (199,977.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,697.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04818496 BTC (47,111.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.25 CZK over 2576 transactions" + } + ] + }, + { + "id": 4247, + "type": "message", + "date": "2024-01-03T21:00:06", + "date_unixtime": "1704312006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008523 BTC for 82.70 CZK @ 970,352 CZK\nFees are 0.29047397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (116.44223999528577118417113492 CZK)\nThe limits being 0.10 % (46.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46873449 BTC (258,318.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.08 % (196,518.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,614.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04827019 BTC (46,839.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.24 CZK over 2577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008523 BTC for 82.70 CZK @ 970,352 CZK\nFees are 0.29047397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (116.44223999528577118417113492 CZK)\nThe limits being 0.10 % (46.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46873449 BTC (258,318.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.08 % (196,518.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,614.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04827019 BTC (46,839.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.24 CZK over 2577 transactions" + } + ] + }, + { + "id": 4248, + "type": "message", + "date": "2024-01-04T01:00:05", + "date_unixtime": "1704326405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008479 BTC for 82.71 CZK @ 975,462 CZK\nFees are 0.29049617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (107.30081999944409685807187522 CZK)\nThe limits being 0.10 % (47.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46881928 BTC (258,401.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.98 % (198,913.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,531.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04835498 BTC (47,168.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.23 CZK over 2578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008479 BTC for 82.71 CZK @ 975,462 CZK\nFees are 0.29049617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (107.30081999944409685807187522 CZK)\nThe limits being 0.10 % (47.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46881928 BTC (258,401.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.98 % (198,913.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,531.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04835498 BTC (47,168.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.23 CZK over 2578 transactions" + } + ] + }, + { + "id": 4249, + "type": "message", + "date": "2024-01-04T05:00:05", + "date_unixtime": "1704340805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008459 BTC for 82.71 CZK @ 977,724 CZK\nFees are 0.29048300 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (97.77239999286101906125581389 CZK)\nThe limits being 0.10 % (47.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46890387 BTC (258,484.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.36 % (199,973.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,448.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04843957 BTC (47,360.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.23 CZK over 2579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008459 BTC for 82.71 CZK @ 977,724 CZK\nFees are 0.29048300 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (97.77239999286101906125581389 CZK)\nThe limits being 0.10 % (47.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46890387 BTC (258,484.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.36 % (199,973.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,448.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04843957 BTC (47,360.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.23 CZK over 2579 transactions" + } + ] + }, + { + "id": 4250, + "type": "message", + "date": "2024-01-04T09:00:07", + "date_unixtime": "1704355207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008505 BTC for 82.71 CZK @ 972,460 CZK\nFees are 0.29049020 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (106.97059999935557705584832861 CZK)\nThe limits being 0.10 % (47.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46898892 BTC (258,567.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.38 % (197,505.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,365.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04852462 BTC (47,188.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.22 CZK over 2580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008505 BTC for 82.71 CZK @ 972,460 CZK\nFees are 0.29049020 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (106.97059999935557705584832861 CZK)\nThe limits being 0.10 % (47.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46898892 BTC (258,567.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.38 % (197,505.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,365.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04852462 BTC (47,188.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.22 CZK over 2580 transactions" + } + ] + }, + { + "id": 4251, + "type": "message", + "date": "2024-01-04T13:00:06", + "date_unixtime": "1704369606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008458 BTC for 82.70 CZK @ 977,826 CZK\nFees are 0.29047896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (97.78259999908101262511924745 CZK)\nThe limits being 0.10 % (47.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46907350 BTC (258,650.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.33 % (200,021.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,282.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04860920 BTC (47,531.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.21 CZK over 2581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008458 BTC for 82.70 CZK @ 977,826 CZK\nFees are 0.29047896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (97.78259999908101262511924745 CZK)\nThe limits being 0.10 % (47.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46907350 BTC (258,650.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.33 % (200,021.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,282.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04860920 BTC (47,531.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.21 CZK over 2581 transactions" + } + ] + }, + { + "id": 4252, + "type": "message", + "date": "2024-01-04T17:00:06", + "date_unixtime": "1704384006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008290 BTC for 82.70 CZK @ 997,610 CZK\nFees are 0.29046964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (89.78489999837721172518621495 CZK)\nThe limits being 0.10 % (48.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46915640 BTC (258,733.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.89 % (209,301.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,199.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04869210 BTC (48,575.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.21 CZK over 2582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008290 BTC for 82.70 CZK @ 997,610 CZK\nFees are 0.29046964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (89.78489999837721172518621495 CZK)\nThe limits being 0.10 % (48.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46915640 BTC (258,733.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.89 % (209,301.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,199.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04869210 BTC (48,575.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.21 CZK over 2582 transactions" + } + ] + }, + { + "id": 4253, + "type": "message", + "date": "2024-01-04T21:00:04", + "date_unixtime": "1704398404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008300 BTC for 82.71 CZK @ 996,466 CZK\nFees are 0.29048653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.71727999711851891872422425 CZK)\nThe limits being 0.10 % (48.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46923940 BTC (258,816.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.66 % (208,764.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,116.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04877510 BTC (48,602.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.20 CZK over 2583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008300 BTC for 82.71 CZK @ 996,466 CZK\nFees are 0.29048653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.71727999711851891872422425 CZK)\nThe limits being 0.10 % (48.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46923940 BTC (258,816.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.66 % (208,764.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,116.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04877510 BTC (48,602.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.20 CZK over 2583 transactions" + } + ] + }, + { + "id": 4254, + "type": "message", + "date": "2024-01-05T01:00:06", + "date_unixtime": "1704412806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008263 BTC for 82.70 CZK @ 1,000,862 CZK\nFees are 0.29046738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (80.06895999545581750331542614 CZK)\nThe limits being 0.10 % (48.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46932203 BTC (258,899.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,000,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.43 % (210,826.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,033.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04885773 BTC (48,899.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.19 CZK over 2584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008263 BTC for 82.70 CZK @ 1,000,862 CZK\nFees are 0.29046738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (80.06895999545581750331542614 CZK)\nThe limits being 0.10 % (48.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46932203 BTC (258,899.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,000,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.43 % (210,826.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,033.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04885773 BTC (48,899.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.19 CZK over 2584 transactions" + } + ] + }, + { + "id": 4255, + "type": "message", + "date": "2024-01-05T05:00:05", + "date_unixtime": "1704427205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008391 BTC for 82.70 CZK @ 985,623 CZK\nFees are 0.29047581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (88.70606999919302819110588806 CZK)\nThe limits being 0.10 % (48.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46940594 BTC (258,982.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 985,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.64 % (203,674.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,950.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04894164 BTC (48,238.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.19 CZK over 2585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008391 BTC for 82.70 CZK @ 985,623 CZK\nFees are 0.29047581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (88.70606999919302819110588806 CZK)\nThe limits being 0.10 % (48.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46940594 BTC (258,982.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 985,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.64 % (203,674.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,950.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04894164 BTC (48,238.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.19 CZK over 2585 transactions" + } + ] + }, + { + "id": 4256, + "type": "message", + "date": "2024-01-05T09:00:05", + "date_unixtime": "1704441605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008325 BTC for 82.71 CZK @ 993,508 CZK\nFees are 0.29049659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (89.41571999622941326977201416 CZK)\nThe limits being 0.10 % (48.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46948919 BTC (259,065.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.05 % (207,375.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,867.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04902489 BTC (48,706.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.18 CZK over 2586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008325 BTC for 82.71 CZK @ 993,508 CZK\nFees are 0.29049659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (89.41571999622941326977201416 CZK)\nThe limits being 0.10 % (48.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46948919 BTC (259,065.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.05 % (207,375.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,867.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04902489 BTC (48,706.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.18 CZK over 2586 transactions" + } + ] + }, + { + "id": 4257, + "type": "message", + "date": "2024-01-05T13:00:05", + "date_unixtime": "1704456005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008323 BTC for 82.71 CZK @ 993,702 CZK\nFees are 0.29048351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (99.37019999867099777715398484 CZK)\nThe limits being 0.10 % (48.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46957242 BTC (259,148.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.06 % (207,466.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,784.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04910812 BTC (48,798.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.17 CZK over 2587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008323 BTC for 82.71 CZK @ 993,702 CZK\nFees are 0.29048351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (99.37019999867099777715398484 CZK)\nThe limits being 0.10 % (48.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46957242 BTC (259,148.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.06 % (207,466.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,784.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04910812 BTC (48,798.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.17 CZK over 2587 transactions" + } + ] + }, + { + "id": 4258, + "type": "message", + "date": "2024-01-05T17:00:06", + "date_unixtime": "1704470406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008467 BTC for 82.71 CZK @ 976,810 CZK\nFees are 0.29048591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (97.68099998887794926332302513 CZK)\nThe limits being 0.10 % (48.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46965709 BTC (259,231.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 551,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.97 % (199,533.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,701.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04919279 BTC (48,052.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.17 CZK over 2588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008467 BTC for 82.71 CZK @ 976,810 CZK\nFees are 0.29048591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (97.68099998887794926332302513 CZK)\nThe limits being 0.10 % (48.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46965709 BTC (259,231.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 551,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.97 % (199,533.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,701.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04919279 BTC (48,052.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.17 CZK over 2588 transactions" + } + ] + }, + { + "id": 4259, + "type": "message", + "date": "2024-01-05T21:00:04", + "date_unixtime": "1704484804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008392 BTC for 82.70 CZK @ 985,490 CZK\nFees are 0.29047123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (88.69409999700761348625853364 CZK)\nThe limits being 0.10 % (48.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46974101 BTC (259,314.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 985,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.52 % (203,610.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,618.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04927671 BTC (48,561.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.16 CZK over 2589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008392 BTC for 82.70 CZK @ 985,490 CZK\nFees are 0.29047123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (88.69409999700761348625853364 CZK)\nThe limits being 0.10 % (48.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46974101 BTC (259,314.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 985,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.52 % (203,610.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,618.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04927671 BTC (48,561.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.16 CZK over 2589 transactions" + } + ] + }, + { + "id": 4260, + "type": "message", + "date": "2024-01-06T01:00:04", + "date_unixtime": "1704499204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008283 BTC for 82.71 CZK @ 998,500 CZK\nFees are 0.29048329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (119.81999999639075622138884784 CZK)\nThe limits being 0.10 % (49.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46982384 BTC (259,397.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 998,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.85 % (209,721.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,535.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04935954 BTC (49,285.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.15 CZK over 2590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008283 BTC for 82.71 CZK @ 998,500 CZK\nFees are 0.29048329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (119.81999999639075622138884784 CZK)\nThe limits being 0.10 % (49.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46982384 BTC (259,397.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 998,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.85 % (209,721.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,535.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04935954 BTC (49,285.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.15 CZK over 2590 transactions" + } + ] + }, + { + "id": 4261, + "type": "message", + "date": "2024-01-06T05:00:04", + "date_unixtime": "1704513604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008325 BTC for 82.71 CZK @ 993,455 CZK\nFees are 0.29048109 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (119.21459999910224125470762241 CZK)\nThe limits being 0.10 % (49.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46990709 BTC (259,480.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.91 % (207,350.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,452.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04944279 BTC (49,119.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.15 CZK over 2591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008325 BTC for 82.71 CZK @ 993,455 CZK\nFees are 0.29048109 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (119.21459999910224125470762241 CZK)\nThe limits being 0.10 % (49.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46990709 BTC (259,480.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.91 % (207,350.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,452.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04944279 BTC (49,119.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.15 CZK over 2591 transactions" + } + ] + }, + { + "id": 4262, + "type": "message", + "date": "2024-01-06T09:00:05", + "date_unixtime": "1704528005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008379 BTC for 82.70 CZK @ 987,045 CZK\nFees are 0.29047888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (108.57494999748166296824938947 CZK)\nThe limits being 0.10 % (48.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.46999088 BTC (259,563.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.72 % (204,338.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,369.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04952658 BTC (48,884.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.14 CZK over 2592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008379 BTC for 82.70 CZK @ 987,045 CZK\nFees are 0.29047888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (108.57494999748166296824938947 CZK)\nThe limits being 0.10 % (48.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.46999088 BTC (259,563.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.72 % (204,338.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,369.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04952658 BTC (48,884.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.14 CZK over 2592 transactions" + } + ] + }, + { + "id": 4263, + "type": "message", + "date": "2024-01-06T13:00:04", + "date_unixtime": "1704542404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008374 BTC for 82.70 CZK @ 987,631 CZK\nFees are 0.29047790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.010479990679861944860054528 CZK)\nThe limits being 0.10 % (49.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47007462 BTC (259,646.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.80 % (204,613.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,286.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04961032 BTC (48,996.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.13 CZK over 2593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008374 BTC for 82.70 CZK @ 987,631 CZK\nFees are 0.29047790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.010479990679861944860054528 CZK)\nThe limits being 0.10 % (49.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47007462 BTC (259,646.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.80 % (204,613.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,286.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04961032 BTC (48,996.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.13 CZK over 2593 transactions" + } + ] + }, + { + "id": 4264, + "type": "message", + "date": "2024-01-06T17:00:04", + "date_unixtime": "1704556804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008337 BTC for 82.71 CZK @ 992,057 CZK\nFees are 0.29049044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.36455999778632528742659657 CZK)\nThe limits being 0.10 % (49.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47015799 BTC (259,729.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.58 % (206,693.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,203.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04969369 BTC (49,298.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.13 CZK over 2594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008337 BTC for 82.71 CZK @ 992,057 CZK\nFees are 0.29049044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.36455999778632528742659657 CZK)\nThe limits being 0.10 % (49.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47015799 BTC (259,729.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.58 % (206,693.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,203.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04969369 BTC (49,298.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.13 CZK over 2594 transactions" + } + ] + }, + { + "id": 4265, + "type": "message", + "date": "2024-01-06T21:00:05", + "date_unixtime": "1704571205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008324 BTC for 82.71 CZK @ 993,624 CZK\nFees are 0.29049560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.553679994837865644200128956 CZK)\nThe limits being 0.10 % (49.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47024123 BTC (259,812.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.84 % (207,430.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,120.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04977693 BTC (49,459.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.12 CZK over 2595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008324 BTC for 82.71 CZK @ 993,624 CZK\nFees are 0.29049560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.553679994837865644200128956 CZK)\nThe limits being 0.10 % (49.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47024123 BTC (259,812.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.84 % (207,430.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,120.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04977693 BTC (49,459.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.12 CZK over 2595 transactions" + } + ] + }, + { + "id": 4266, + "type": "message", + "date": "2024-01-07T01:00:04", + "date_unixtime": "1704585604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008342 BTC for 82.70 CZK @ 991,426 CZK\nFees are 0.29047978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.399819992290230417465984857 CZK)\nThe limits being 0.10 % (49.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47032465 BTC (259,895.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.41 % (206,396.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,037.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04986035 BTC (49,432.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.11 CZK over 2596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008342 BTC for 82.70 CZK @ 991,426 CZK\nFees are 0.29047978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.399819992290230417465984857 CZK)\nThe limits being 0.10 % (49.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47032465 BTC (259,895.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.41 % (206,396.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,037.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04986035 BTC (49,432.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.11 CZK over 2596 transactions" + } + ] + }, + { + "id": 4267, + "type": "message", + "date": "2024-01-07T05:00:04", + "date_unixtime": "1704600004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008320 BTC for 82.71 CZK @ 994,084 CZK\nFees are 0.29049043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.52671999923345214825035453 CZK)\nThe limits being 0.10 % (49.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47040785 BTC (259,978.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.87 % (207,646.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,954.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.04994355 BTC (49,648.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.11 CZK over 2597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008320 BTC for 82.71 CZK @ 994,084 CZK\nFees are 0.29049043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.52671999923345214825035453 CZK)\nThe limits being 0.10 % (49.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47040785 BTC (259,978.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.87 % (207,646.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,954.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.04994355 BTC (49,648.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.11 CZK over 2597 transactions" + } + ] + }, + { + "id": 4268, + "type": "message", + "date": "2024-01-07T09:00:04", + "date_unixtime": "1704614404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008296 BTC for 82.70 CZK @ 996,923 CZK\nFees are 0.29047970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.75383999780901848352367485 CZK)\nThe limits being 0.10 % (49.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47049081 BTC (260,061.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.36 % (208,981.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,871.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05002651 BTC (49,872.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.10 CZK over 2598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008296 BTC for 82.70 CZK @ 996,923 CZK\nFees are 0.29047970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.75383999780901848352367485 CZK)\nThe limits being 0.10 % (49.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47049081 BTC (260,061.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.36 % (208,981.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,871.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05002651 BTC (49,872.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.10 CZK over 2598 transactions" + } + ] + }, + { + "id": 4269, + "type": "message", + "date": "2024-01-07T13:00:04", + "date_unixtime": "1704628804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008296 BTC for 82.70 CZK @ 996,887 CZK\nFees are 0.29046921 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.75095999104388257300028493 CZK)\nThe limits being 0.10 % (49.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47057377 BTC (260,144.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.33 % (208,964.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,788.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05010947 BTC (49,953.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.09 CZK over 2599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008296 BTC for 82.70 CZK @ 996,887 CZK\nFees are 0.29046921 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.75095999104388257300028493 CZK)\nThe limits being 0.10 % (49.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47057377 BTC (260,144.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.33 % (208,964.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,788.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05010947 BTC (49,953.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.09 CZK over 2599 transactions" + } + ] + }, + { + "id": 4270, + "type": "message", + "date": "2024-01-07T17:00:04", + "date_unixtime": "1704643204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008303 BTC for 82.71 CZK @ 996,146 CZK\nFees are 0.29049821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.730219993001731084405832152 CZK)\nThe limits being 0.10 % (50.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47065680 BTC (260,227.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.17 % (208,615.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,705.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05019250 BTC (49,999.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.09 CZK over 2600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008303 BTC for 82.71 CZK @ 996,146 CZK\nFees are 0.29049821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.730219993001731084405832152 CZK)\nThe limits being 0.10 % (50.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47065680 BTC (260,227.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.17 % (208,615.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,705.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05019250 BTC (49,999.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.09 CZK over 2600 transactions" + } + ] + }, + { + "id": 4271, + "type": "message", + "date": "2024-01-07T21:00:05", + "date_unixtime": "1704657605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008284 BTC for 82.71 CZK @ 998,389 CZK\nFees are 0.29048606 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.887229994391912228013156276 CZK)\nThe limits being 0.10 % (50.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47073964 BTC (260,310.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 552,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 998,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.55 % (209,670.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,622.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05027534 BTC (50,194.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.08 CZK over 2601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008284 BTC for 82.71 CZK @ 998,389 CZK\nFees are 0.29048606 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (69.887229994391912228013156276 CZK)\nThe limits being 0.10 % (50.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47073964 BTC (260,310.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 552,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 998,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.55 % (209,670.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,622.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05027534 BTC (50,194.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.08 CZK over 2601 transactions" + } + ] + }, + { + "id": 4272, + "type": "message", + "date": "2024-01-08T01:00:05", + "date_unixtime": "1704672005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008337 BTC for 82.71 CZK @ 992,056 CZK\nFees are 0.29049015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.36447999950275989177616856 CZK)\nThe limits being 0.10 % (49.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47082301 BTC (260,393.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.38 % (206,688.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,539.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05035871 BTC (49,958.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.07 CZK over 2602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008337 BTC for 82.71 CZK @ 992,056 CZK\nFees are 0.29049015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (79.36447999950275989177616856 CZK)\nThe limits being 0.10 % (49.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47082301 BTC (260,393.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.38 % (206,688.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,539.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05035871 BTC (49,958.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.07 CZK over 2602 transactions" + } + ] + }, + { + "id": 4273, + "type": "message", + "date": "2024-01-08T05:00:04", + "date_unixtime": "1704686404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008401 BTC for 82.70 CZK @ 984,461 CZK\nFees are 0.29047912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (88.60148999985587878444964111 CZK)\nThe limits being 0.10 % (49.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47090702 BTC (260,476.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.98 % (203,112.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,456.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05044272 BTC (49,658.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.07 CZK over 2603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008401 BTC for 82.70 CZK @ 984,461 CZK\nFees are 0.29047912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (88.60148999985587878444964111 CZK)\nThe limits being 0.10 % (49.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47090702 BTC (260,476.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.98 % (203,112.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,456.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05044272 BTC (49,658.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.07 CZK over 2603 transactions" + } + ] + }, + { + "id": 4274, + "type": "message", + "date": "2024-01-08T09:00:05", + "date_unixtime": "1704700805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008304 BTC for 82.71 CZK @ 995,986 CZK\nFees are 0.29048653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (89.63873999887676369700268713 CZK)\nThe limits being 0.10 % (50.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47099006 BTC (260,559.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.04 % (208,539.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,373.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05052576 BTC (50,322.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.06 CZK over 2604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008304 BTC for 82.71 CZK @ 995,986 CZK\nFees are 0.29048653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (89.63873999887676369700268713 CZK)\nThe limits being 0.10 % (50.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47099006 BTC (260,559.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.04 % (208,539.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,373.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05052576 BTC (50,322.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.06 CZK over 2604 transactions" + } + ] + }, + { + "id": 4275, + "type": "message", + "date": "2024-01-08T13:00:05", + "date_unixtime": "1704715205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008250 BTC for 82.70 CZK @ 1,002,455 CZK\nFees are 0.29047199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (90.22094999864111971735290122 CZK)\nThe limits being 0.10 % (50.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47107256 BTC (260,642.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,002,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.18 % (211,586.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,290.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05060826 BTC (50,732.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.05 CZK over 2605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008250 BTC for 82.70 CZK @ 1,002,455 CZK\nFees are 0.29047199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (90.22094999864111971735290122 CZK)\nThe limits being 0.10 % (50.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47107256 BTC (260,642.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,002,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.18 % (211,586.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,290.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05060826 BTC (50,732.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.05 CZK over 2605 transactions" + } + ] + }, + { + "id": 4276, + "type": "message", + "date": "2024-01-08T17:00:05", + "date_unixtime": "1704729605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008193 BTC for 82.71 CZK @ 1,009,522 CZK\nFees are 0.29049868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (100.95219999864991022815240032 CZK)\nThe limits being 0.10 % (51.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47115449 BTC (260,725.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,009,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.43 % (214,915.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,207.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05069019 BTC (51,172.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.05 CZK over 2606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008193 BTC for 82.71 CZK @ 1,009,522 CZK\nFees are 0.29049868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (100.95219999864991022815240032 CZK)\nThe limits being 0.10 % (51.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47115449 BTC (260,725.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,009,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.43 % (214,915.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,207.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05069019 BTC (51,172.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.05 CZK over 2606 transactions" + } + ] + }, + { + "id": 4277, + "type": "message", + "date": "2024-01-08T21:00:05", + "date_unixtime": "1704744005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007849 BTC for 82.71 CZK @ 1,053,733 CZK\nFees are 0.29048943 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (505.79183999332696119068037000 CZK)\nThe limits being 0.10 % (53.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47123298 BTC (260,808.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,053,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.39 % (235,744.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,124.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05076868 BTC (53,496.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.04 CZK over 2607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007849 BTC for 82.71 CZK @ 1,053,733 CZK\nFees are 0.29048943 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (505.79183999332696119068037000 CZK)\nThe limits being 0.10 % (53.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47123298 BTC (260,808.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,053,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.39 % (235,744.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,124.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05076868 BTC (53,496.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.04 CZK over 2607 transactions" + } + ] + }, + { + "id": 4278, + "type": "message", + "date": "2024-01-09T01:00:05", + "date_unixtime": "1704758405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007845 BTC for 82.71 CZK @ 1,054,295 CZK\nFees are 0.29049624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (484.97569994375962016943248027 CZK)\nThe limits being 0.10 % (53.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47131143 BTC (260,891.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,054,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.46 % (236,009.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,041.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05084713 BTC (53,607.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.04 CZK over 2608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007845 BTC for 82.71 CZK @ 1,054,295 CZK\nFees are 0.29049624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (484.97569994375962016943248027 CZK)\nThe limits being 0.10 % (53.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47131143 BTC (260,891.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,054,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.46 % (236,009.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,041.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05084713 BTC (53,607.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.04 CZK over 2608 transactions" + } + ] + }, + { + "id": 4279, + "type": "message", + "date": "2024-01-09T05:00:05", + "date_unixtime": "1704772805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007859 BTC for 82.70 CZK @ 1,052,352 CZK\nFees are 0.29047833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (273.61151999050530168205656078 CZK)\nThe limits being 0.10 % (53.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47139002 BTC (260,974.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,052,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.08 % (235,093.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,958.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05092572 BTC (53,591.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.03 CZK over 2609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007859 BTC for 82.70 CZK @ 1,052,352 CZK\nFees are 0.29047833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (273.61151999050530168205656078 CZK)\nThe limits being 0.10 % (53.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47139002 BTC (260,974.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,052,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.08 % (235,093.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,958.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05092572 BTC (53,591.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.03 CZK over 2609 transactions" + } + ] + }, + { + "id": 4280, + "type": "message", + "date": "2024-01-09T09:00:06", + "date_unixtime": "1704787206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007858 BTC for 82.71 CZK @ 1,052,533 CZK\nFees are 0.29049132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (115.77862999861898473692800574 CZK)\nThe limits being 0.10 % (53.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47146860 BTC (261,057.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,052,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.09 % (235,178.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,875.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05100430 BTC (53,683.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.02 CZK over 2610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007858 BTC for 82.71 CZK @ 1,052,533 CZK\nFees are 0.29049132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (115.77862999861898473692800574 CZK)\nThe limits being 0.10 % (53.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47146860 BTC (261,057.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,052,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.09 % (235,178.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,875.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05100430 BTC (53,683.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.02 CZK over 2610 transactions" + } + ] + }, + { + "id": 4281, + "type": "message", + "date": "2024-01-09T13:00:07", + "date_unixtime": "1704801607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007882 BTC for 82.71 CZK @ 1,049,290 CZK\nFees are 0.29048077 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (125.91479999651056369947002290 CZK)\nThe limits being 0.10 % (53.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47154742 BTC (261,140.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,049,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.47 % (233,649.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,792.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05108312 BTC (53,601.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.02 CZK over 2611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007882 BTC for 82.71 CZK @ 1,049,290 CZK\nFees are 0.29048077 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (125.91479999651056369947002290 CZK)\nThe limits being 0.10 % (53.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47154742 BTC (261,140.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,049,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.47 % (233,649.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,792.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05108312 BTC (53,601.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.02 CZK over 2611 transactions" + } + ] + }, + { + "id": 4282, + "type": "message", + "date": "2024-01-09T17:00:07", + "date_unixtime": "1704816007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007808 BTC for 82.70 CZK @ 1,059,191 CZK\nFees are 0.29046881 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (158.87864998759464823935896494 CZK)\nThe limits being 0.10 % (54.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47162550 BTC (261,223.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,059,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.23 % (238,317.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,709.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05116120 BTC (54,189.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.01 CZK over 2612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007808 BTC for 82.70 CZK @ 1,059,191 CZK\nFees are 0.29046881 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (158.87864998759464823935896494 CZK)\nThe limits being 0.10 % (54.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47162550 BTC (261,223.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,059,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.23 % (238,317.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,709.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05116120 BTC (54,189.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.01 CZK over 2612 transactions" + } + ] + }, + { + "id": 4283, + "type": "message", + "date": "2024-01-09T21:00:05", + "date_unixtime": "1704830405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007817 BTC for 82.70 CZK @ 1,057,998 CZK\nFees are 0.29047608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (148.11971999498493152946394158 CZK)\nThe limits being 0.10 % (54.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47170367 BTC (261,306.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 553,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,057,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.99 % (237,754.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,626.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05123937 BTC (54,211.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.00 CZK over 2613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007817 BTC for 82.70 CZK @ 1,057,998 CZK\nFees are 0.29047608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (148.11971999498493152946394158 CZK)\nThe limits being 0.10 % (54.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47170367 BTC (261,306.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 553,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,057,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.99 % (237,754.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,626.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05123937 BTC (54,211.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.00 CZK over 2613 transactions" + } + ] + }, + { + "id": 4284, + "type": "message", + "date": "2024-01-10T01:00:05", + "date_unixtime": "1704844805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007940 BTC for 82.71 CZK @ 1,041,633 CZK\nFees are 0.29048296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (93.74696999920931651060080649 CZK)\nThe limits being 0.10 % (53.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47178307 BTC (261,389.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,041,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.00 % (230,035.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,543.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05131877 BTC (53,455.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 100.00 CZK over 2614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007940 BTC for 82.71 CZK @ 1,041,633 CZK\nFees are 0.29048296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (93.74696999920931651060080649 CZK)\nThe limits being 0.10 % (53.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47178307 BTC (261,389.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,041,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.00 % (230,035.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,543.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05131877 BTC (53,455.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 100.00 CZK over 2614 transactions" + } + ] + }, + { + "id": 4285, + "type": "message", + "date": "2024-01-10T05:00:04", + "date_unixtime": "1704859204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007943 BTC for 82.71 CZK @ 1,041,233 CZK\nFees are 0.29048112 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (93.71096999981369499838817946 CZK)\nThe limits being 0.10 % (53.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47186250 BTC (261,472.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,041,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.90 % (229,846.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,460.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05139820 BTC (53,517.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.99 CZK over 2615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007943 BTC for 82.71 CZK @ 1,041,233 CZK\nFees are 0.29048112 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (93.71096999981369499838817946 CZK)\nThe limits being 0.10 % (53.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47186250 BTC (261,472.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,041,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.90 % (229,846.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,460.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05139820 BTC (53,517.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.99 CZK over 2615 transactions" + } + ] + }, + { + "id": 4286, + "type": "message", + "date": "2024-01-10T09:00:05", + "date_unixtime": "1704873605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007993 BTC for 82.71 CZK @ 1,034,777 CZK\nFees are 0.29049723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (82.78215999039019630467640750 CZK)\nThe limits being 0.10 % (53.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47194243 BTC (261,555.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,034,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.71 % (226,799.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,377.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05147813 BTC (53,268.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.98 CZK over 2616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007993 BTC for 82.71 CZK @ 1,034,777 CZK\nFees are 0.29049723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (82.78215999039019630467640750 CZK)\nThe limits being 0.10 % (53.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47194243 BTC (261,555.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,034,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.71 % (226,799.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,377.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05147813 BTC (53,268.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.98 CZK over 2616 transactions" + } + ] + }, + { + "id": 4287, + "type": "message", + "date": "2024-01-10T13:00:05", + "date_unixtime": "1704888005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008055 BTC for 82.70 CZK @ 1,026,723 CZK\nFees are 0.29047199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (92.40506999802367690736055092 CZK)\nThe limits being 0.10 % (52.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47202298 BTC (261,638.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,026,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.23 % (222,998.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,294.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05155868 BTC (52,936.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.98 CZK over 2617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008055 BTC for 82.70 CZK @ 1,026,723 CZK\nFees are 0.29047199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (92.40506999802367690736055092 CZK)\nThe limits being 0.10 % (52.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47202298 BTC (261,638.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,026,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.23 % (222,998.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,294.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05155868 BTC (52,936.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.98 CZK over 2617 transactions" + } + ] + }, + { + "id": 4288, + "type": "message", + "date": "2024-01-10T17:00:05", + "date_unixtime": "1704902405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008084 BTC for 82.70 CZK @ 1,023,047 CZK\nFees are 0.29047403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (102.30469998991653902089840432 CZK)\nThe limits being 0.10 % (52.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47210382 BTC (261,721.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,023,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.54 % (221,262.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,211.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05163952 BTC (52,829.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.97 CZK over 2618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008084 BTC for 82.70 CZK @ 1,023,047 CZK\nFees are 0.29047403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (102.30469998991653902089840432 CZK)\nThe limits being 0.10 % (52.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47210382 BTC (261,721.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,023,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.54 % (221,262.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,211.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05163952 BTC (52,829.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.97 CZK over 2618 transactions" + } + ] + }, + { + "id": 4289, + "type": "message", + "date": "2024-01-10T21:00:04", + "date_unixtime": "1704916804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007913 BTC for 82.70 CZK @ 1,045,118 CZK\nFees are 0.29046373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (104.51179999283438081714630665 CZK)\nThe limits being 0.10 % (54.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47218295 BTC (261,804.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,045,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.49 % (231,682.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,128.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05171865 BTC (54,052.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.96 CZK over 2619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007913 BTC for 82.70 CZK @ 1,045,118 CZK\nFees are 0.29046373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (104.51179999283438081714630665 CZK)\nThe limits being 0.10 % (54.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47218295 BTC (261,804.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,045,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.49 % (231,682.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,128.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05171865 BTC (54,052.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.96 CZK over 2619 transactions" + } + ] + }, + { + "id": 4290, + "type": "message", + "date": "2024-01-11T01:00:05", + "date_unixtime": "1704931205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007870 BTC for 82.70 CZK @ 1,050,861 CZK\nFees are 0.29047277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.0860999968977701298314856 CZK)\nThe limits being 0.10 % (54.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47226165 BTC (261,887.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,050,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.50 % (234,393.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,045.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05179735 BTC (54,431.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.96 CZK over 2620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007870 BTC for 82.70 CZK @ 1,050,861 CZK\nFees are 0.29047277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.0860999968977701298314856 CZK)\nThe limits being 0.10 % (54.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47226165 BTC (261,887.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,050,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.50 % (234,393.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,045.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05179735 BTC (54,431.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.96 CZK over 2620 transactions" + } + ] + }, + { + "id": 4291, + "type": "message", + "date": "2024-01-11T05:00:05", + "date_unixtime": "1704945605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007904 BTC for 82.70 CZK @ 1,046,328 CZK\nFees are 0.29046927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.70623999201176449229316824 CZK)\nThe limits being 0.10 % (54.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47234069 BTC (261,970.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,046,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.66 % (232,252.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 962.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05187639 BTC (54,279.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.95 CZK over 2621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007904 BTC for 82.70 CZK @ 1,046,328 CZK\nFees are 0.29046927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.70623999201176449229316824 CZK)\nThe limits being 0.10 % (54.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47234069 BTC (261,970.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,046,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.66 % (232,252.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 962.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05187639 BTC (54,279.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.95 CZK over 2621 transactions" + } + ] + }, + { + "id": 4292, + "type": "message", + "date": "2024-01-11T09:00:06", + "date_unixtime": "1704960006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007950 BTC for 82.71 CZK @ 1,040,318 CZK\nFees are 0.29048162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.22543999649027147123432765 CZK)\nThe limits being 0.10 % (54.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47242019 BTC (262,053.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,040,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.54 % (229,413.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 879.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05195589 BTC (54,050.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.94 CZK over 2622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007950 BTC for 82.71 CZK @ 1,040,318 CZK\nFees are 0.29048162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.22543999649027147123432765 CZK)\nThe limits being 0.10 % (54.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47242019 BTC (262,053.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,040,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.54 % (229,413.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 879.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05195589 BTC (54,050.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.94 CZK over 2622 transactions" + } + ] + }, + { + "id": 4293, + "type": "message", + "date": "2024-01-11T13:00:06", + "date_unixtime": "1704974406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007799 BTC for 82.70 CZK @ 1,060,426 CZK\nFees are 0.29047229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (84.83407999684141790436894386 CZK)\nThe limits being 0.10 % (55.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47249818 BTC (262,136.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,060,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.14 % (238,912.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 796.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05203388 BTC (55,178.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.94 CZK over 2623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007799 BTC for 82.70 CZK @ 1,060,426 CZK\nFees are 0.29047229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (84.83407999684141790436894386 CZK)\nThe limits being 0.10 % (55.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47249818 BTC (262,136.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,060,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.14 % (238,912.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 796.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05203388 BTC (55,178.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.94 CZK over 2623 transactions" + } + ] + }, + { + "id": 4294, + "type": "message", + "date": "2024-01-11T17:00:06", + "date_unixtime": "1704988806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007813 BTC for 82.70 CZK @ 1,058,533 CZK\nFees are 0.29047426 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.85329999806768719567269069 CZK)\nThe limits being 0.10 % (55.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47257631 BTC (262,219.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,058,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.77 % (238,017.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 713.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05211201 BTC (55,162.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.93 CZK over 2624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007813 BTC for 82.70 CZK @ 1,058,533 CZK\nFees are 0.29047426 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.85329999806768719567269069 CZK)\nThe limits being 0.10 % (55.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47257631 BTC (262,219.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,058,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.77 % (238,017.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 713.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05211201 BTC (55,162.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.93 CZK over 2624 transactions" + } + ] + }, + { + "id": 4295, + "type": "message", + "date": "2024-01-11T21:00:04", + "date_unixtime": "1705003204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007844 BTC for 82.71 CZK @ 1,054,391 CZK\nFees are 0.29048566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (84.35127999477606043305341046 CZK)\nThe limits being 0.10 % (55.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47265475 BTC (262,302.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 554,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,054,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.00 % (236,060.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 630.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05219045 BTC (55,029.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.92 CZK over 2625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007844 BTC for 82.71 CZK @ 1,054,391 CZK\nFees are 0.29048566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (84.35127999477606043305341046 CZK)\nThe limits being 0.10 % (55.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47265475 BTC (262,302.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 554,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,054,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.00 % (236,060.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 630.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05219045 BTC (55,029.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.92 CZK over 2625 transactions" + } + ] + }, + { + "id": 4296, + "type": "message", + "date": "2024-01-12T01:00:05", + "date_unixtime": "1705017605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007901 BTC for 82.71 CZK @ 1,046,804 CZK\nFees are 0.29049112 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (104.68039999477843242865891415 CZK)\nThe limits being 0.10 % (54.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47273376 BTC (262,385.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,046,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.60 % (232,473.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 547.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05226946 BTC (54,715.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.92 CZK over 2626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007901 BTC for 82.71 CZK @ 1,046,804 CZK\nFees are 0.29049112 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (104.68039999477843242865891415 CZK)\nThe limits being 0.10 % (54.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47273376 BTC (262,385.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,046,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.60 % (232,473.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 547.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05226946 BTC (54,715.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.92 CZK over 2626 transactions" + } + ] + }, + { + "id": 4297, + "type": "message", + "date": "2024-01-12T05:00:04", + "date_unixtime": "1705032004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007955 BTC for 82.71 CZK @ 1,039,716 CZK\nFees are 0.29049612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.17727999268431013138490456 CZK)\nThe limits being 0.10 % (54.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47281331 BTC (262,468.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,039,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.30 % (229,122.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 464.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05234901 BTC (54,428.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.91 CZK over 2627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007955 BTC for 82.71 CZK @ 1,039,716 CZK\nFees are 0.29049612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.17727999268431013138490456 CZK)\nThe limits being 0.10 % (54.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47281331 BTC (262,468.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,039,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.30 % (229,122.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 464.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05234901 BTC (54,428.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.91 CZK over 2627 transactions" + } + ] + }, + { + "id": 4298, + "type": "message", + "date": "2024-01-12T09:00:04", + "date_unixtime": "1705046404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007960 BTC for 82.70 CZK @ 1,038,990 CZK\nFees are 0.29047573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (93.50909999549316087162268743 CZK)\nThe limits being 0.10 % (54.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47289291 BTC (262,551.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,038,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.14 % (228,779.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 381.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05242861 BTC (54,472.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.91 CZK over 2628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007960 BTC for 82.70 CZK @ 1,038,990 CZK\nFees are 0.29047573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (93.50909999549316087162268743 CZK)\nThe limits being 0.10 % (54.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47289291 BTC (262,551.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,038,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.14 % (228,779.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 381.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05242861 BTC (54,472.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.91 CZK over 2628 transactions" + } + ] + }, + { + "id": 4299, + "type": "message", + "date": "2024-01-12T13:00:05", + "date_unixtime": "1705060805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007922 BTC for 82.70 CZK @ 1,043,973 CZK\nFees are 0.29047551 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.51783999626653846100627103 CZK)\nThe limits being 0.10 % (54.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47297213 BTC (262,634.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,043,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.01 % (231,135.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 298.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05250783 BTC (54,816.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.90 CZK over 2629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007922 BTC for 82.70 CZK @ 1,043,973 CZK\nFees are 0.29047551 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (83.51783999626653846100627103 CZK)\nThe limits being 0.10 % (54.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47297213 BTC (262,634.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,043,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.01 % (231,135.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 298.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05250783 BTC (54,816.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.90 CZK over 2629 transactions" + } + ] + }, + { + "id": 4300, + "type": "message", + "date": "2024-01-12T17:00:05", + "date_unixtime": "1705075205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008201 BTC for 82.71 CZK @ 1,008,479 CZK\nFees are 0.29048191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (121.01747998576133392898055197 CZK)\nThe limits being 0.10 % (53.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47305414 BTC (262,717.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,008,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.59 % (214,347.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 215.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05258984 BTC (53,035.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.89 CZK over 2630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008201 BTC for 82.71 CZK @ 1,008,479 CZK\nFees are 0.29048191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (121.01747998576133392898055197 CZK)\nThe limits being 0.10 % (53.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47305414 BTC (262,717.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,008,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.59 % (214,347.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 215.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05258984 BTC (53,035.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.89 CZK over 2630 transactions" + } + ] + }, + { + "id": 4301, + "type": "message", + "date": "2024-01-12T21:00:05", + "date_unixtime": "1705089605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008301 BTC for 82.70 CZK @ 996,320 CZK\nFees are 0.29047896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (89.66879999870348971948379442 CZK)\nThe limits being 0.10 % (52.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47313715 BTC (262,800.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.37 % (208,595.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 132.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05267285 BTC (52,479.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.89 CZK over 2631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008301 BTC for 82.70 CZK @ 996,320 CZK\nFees are 0.29047896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (89.66879999870348971948379442 CZK)\nThe limits being 0.10 % (52.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47313715 BTC (262,800.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.37 % (208,595.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 132.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05267285 BTC (52,479.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.89 CZK over 2631 transactions" + } + ] + }, + { + "id": 4302, + "type": "message", + "date": "2024-01-13T01:00:04", + "date_unixtime": "1705104004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008510 BTC for 82.71 CZK @ 971,895 CZK\nFees are 0.29049210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (106.90844999259349035133788498 CZK)\nThe limits being 0.10 % (51.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47322225 BTC (262,883.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 971,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.95 % (197,038.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 49.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05275795 BTC (51,275.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.88 CZK over 2632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008510 BTC for 82.71 CZK @ 971,895 CZK\nFees are 0.29049210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (106.90844999259349035133788498 CZK)\nThe limits being 0.10 % (51.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47322225 BTC (262,883.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 971,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.95 % (197,038.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 49.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05275795 BTC (51,275.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.88 CZK over 2632 transactions" + } + ] + }, + { + "id": 4303, + "type": "message", + "date": "2024-01-13T05:00:01", + "date_unixtime": "1705118401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4304, + "type": "message", + "date": "2024-01-13T09:00:01", + "date_unixtime": "1705132801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4305, + "type": "message", + "date": "2024-01-13T13:00:01", + "date_unixtime": "1705147201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4306, + "type": "message", + "date": "2024-01-13T17:00:01", + "date_unixtime": "1705161601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4307, + "type": "message", + "date": "2024-01-13T21:00:01", + "date_unixtime": "1705176001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4308, + "type": "message", + "date": "2024-01-14T01:00:01", + "date_unixtime": "1705190401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4309, + "type": "message", + "date": "2024-01-14T05:00:01", + "date_unixtime": "1705204801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4310, + "type": "message", + "date": "2024-01-14T09:00:01", + "date_unixtime": "1705219201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4311, + "type": "message", + "date": "2024-01-14T13:00:01", + "date_unixtime": "1705233601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4312, + "type": "message", + "date": "2024-01-14T17:00:01", + "date_unixtime": "1705248001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4313, + "type": "message", + "date": "2024-01-14T21:00:01", + "date_unixtime": "1705262401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (49.29495746 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4314, + "type": "message", + "date": "2024-01-15T01:00:04", + "date_unixtime": "1705276804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008732 BTC for 82.70 CZK @ 947,139 CZK\nFees are 0.29047775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (445.15532999367080084568873806 CZK)\nThe limits being 0.10 % (50.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47330957 BTC (262,966.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 947,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.47 % (185,323.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,966.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05284527 BTC (50,051.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.87 CZK over 2633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008732 BTC for 82.70 CZK @ 947,139 CZK\nFees are 0.29047775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (445.15532999367080084568873806 CZK)\nThe limits being 0.10 % (50.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47330957 BTC (262,966.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 947,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.47 % (185,323.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,966.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05284527 BTC (50,051.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.87 CZK over 2633 transactions" + } + ] + }, + { + "id": 4315, + "type": "message", + "date": "2024-01-15T05:00:05", + "date_unixtime": "1705291205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008618 BTC for 82.71 CZK @ 959,721 CZK\nFees are 0.29049383 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (393.48560997520513894106760014 CZK)\nThe limits being 0.10 % (50.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47339575 BTC (263,049.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 959,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.72 % (191,278.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,883.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05293145 BTC (50,799.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.87 CZK over 2634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008618 BTC for 82.71 CZK @ 959,721 CZK\nFees are 0.29049383 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (393.48560997520513894106760014 CZK)\nThe limits being 0.10 % (50.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47339575 BTC (263,049.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 959,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.72 % (191,278.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,883.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05293145 BTC (50,799.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.87 CZK over 2634 transactions" + } + ] + }, + { + "id": 4316, + "type": "message", + "date": "2024-01-15T09:00:05", + "date_unixtime": "1705305605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008562 BTC for 82.71 CZK @ 965,973 CZK\nFees are 0.29048628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (376.72946995955640891078841432 CZK)\nThe limits being 0.10 % (51.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47348137 BTC (263,132.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 965,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.82 % (194,237.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,800.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05301707 BTC (51,213.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.86 CZK over 2635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008562 BTC for 82.71 CZK @ 965,973 CZK\nFees are 0.29048628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (376.72946995955640891078841432 CZK)\nThe limits being 0.10 % (51.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47348137 BTC (263,132.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 965,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.82 % (194,237.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,800.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05301707 BTC (51,213.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.86 CZK over 2635 transactions" + } + ] + }, + { + "id": 4317, + "type": "message", + "date": "2024-01-15T13:00:05", + "date_unixtime": "1705320005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008557 BTC for 82.70 CZK @ 966,500 CZK\nFees are 0.29047503 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (376.93499996593668100645054452 CZK)\nThe limits being 0.10 % (51.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47356694 BTC (263,215.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 966,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.89 % (194,486.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,717.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05310264 BTC (51,323.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.85 CZK over 2636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008557 BTC for 82.70 CZK @ 966,500 CZK\nFees are 0.29047503 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (376.93499996593668100645054452 CZK)\nThe limits being 0.10 % (51.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47356694 BTC (263,215.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 966,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.89 % (194,486.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,717.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05310264 BTC (51,323.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.85 CZK over 2636 transactions" + } + ] + }, + { + "id": 4318, + "type": "message", + "date": "2024-01-15T17:00:05", + "date_unixtime": "1705334405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008622 BTC for 82.71 CZK @ 959,253 CZK\nFees are 0.29048694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (335.73854996840679519154543418 CZK)\nThe limits being 0.10 % (51.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47365316 BTC (263,298.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 959,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.56 % (191,054.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,634.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05318886 BTC (51,021.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.85 CZK over 2637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008622 BTC for 82.71 CZK @ 959,253 CZK\nFees are 0.29048694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (335.73854996840679519154543418 CZK)\nThe limits being 0.10 % (51.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47365316 BTC (263,298.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 959,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.56 % (191,054.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,634.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05318886 BTC (51,021.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.85 CZK over 2637 transactions" + } + ] + }, + { + "id": 4319, + "type": "message", + "date": "2024-01-15T21:00:05", + "date_unixtime": "1705348805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008502 BTC for 82.71 CZK @ 972,824 CZK\nFees are 0.29049643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (330.76015996939434632280314594 CZK)\nThe limits being 0.10 % (51.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47373818 BTC (263,381.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 555,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.98 % (197,482.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,551.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05327388 BTC (51,826.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.84 CZK over 2638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008502 BTC for 82.71 CZK @ 972,824 CZK\nFees are 0.29049643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (330.76015996939434632280314594 CZK)\nThe limits being 0.10 % (51.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47373818 BTC (263,381.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 555,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.98 % (197,482.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,551.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05327388 BTC (51,826.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.84 CZK over 2638 transactions" + } + ] + }, + { + "id": 4320, + "type": "message", + "date": "2024-01-16T01:00:05", + "date_unixtime": "1705363205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008596 BTC for 82.70 CZK @ 962,128 CZK\nFees are 0.29047896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (298.25967999971249996811995615 CZK)\nThe limits being 0.10 % (51.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47382414 BTC (263,464.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.03 % (192,414.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,468.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05335984 BTC (51,339.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.84 CZK over 2639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008596 BTC for 82.70 CZK @ 962,128 CZK\nFees are 0.29047896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (298.25967999971249996811995615 CZK)\nThe limits being 0.10 % (51.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47382414 BTC (263,464.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.03 % (192,414.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,468.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05335984 BTC (51,339.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.84 CZK over 2639 transactions" + } + ] + }, + { + "id": 4321, + "type": "message", + "date": "2024-01-16T05:00:04", + "date_unixtime": "1705377604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008509 BTC for 82.71 CZK @ 972,000 CZK\nFees are 0.29048935 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (184.68000 CZK)\nThe limits being 0.10 % (51.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47390923 BTC (263,547.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.78 % (197,092.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,385.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05344493 BTC (51,948.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.83 CZK over 2640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008509 BTC for 82.71 CZK @ 972,000 CZK\nFees are 0.29048935 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (184.68000 CZK)\nThe limits being 0.10 % (51.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47390923 BTC (263,547.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.78 % (197,092.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,385.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05344493 BTC (51,948.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.83 CZK over 2640 transactions" + } + ] + }, + { + "id": 4322, + "type": "message", + "date": "2024-01-16T09:00:05", + "date_unixtime": "1705392005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008536 BTC for 82.70 CZK @ 968,858 CZK\nFees are 0.29046911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (232.52591998296496470413533886 CZK)\nThe limits being 0.10 % (51.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47399459 BTC (263,630.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 968,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.20 % (195,602.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,302.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05353029 BTC (51,863.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.82 CZK over 2641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008536 BTC for 82.70 CZK @ 968,858 CZK\nFees are 0.29046911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (232.52591998296496470413533886 CZK)\nThe limits being 0.10 % (51.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47399459 BTC (263,630.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 968,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.20 % (195,602.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,302.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05353029 BTC (51,863.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.82 CZK over 2641 transactions" + } + ] + }, + { + "id": 4323, + "type": "message", + "date": "2024-01-16T13:00:06", + "date_unixtime": "1705406406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008475 BTC for 82.71 CZK @ 975,931 CZK\nFees are 0.29049873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (175.66757999391510245115546914 CZK)\nThe limits being 0.10 % (52.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47407934 BTC (263,713.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.44 % (198,955.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,219.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05361504 BTC (52,324.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.82 CZK over 2642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008475 BTC for 82.71 CZK @ 975,931 CZK\nFees are 0.29049873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (175.66757999391510245115546914 CZK)\nThe limits being 0.10 % (52.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47407934 BTC (263,713.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.44 % (198,955.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,219.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05361504 BTC (52,324.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.82 CZK over 2642 transactions" + } + ] + }, + { + "id": 4324, + "type": "message", + "date": "2024-01-16T17:00:05", + "date_unixtime": "1705420805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008412 BTC for 82.70 CZK @ 983,156 CZK\nFees are 0.29047390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (176.96807997970015075623335444 CZK)\nThe limits being 0.10 % (52.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47416346 BTC (263,796.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 983,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.72 % (202,380.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,136.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05369916 BTC (52,794.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.81 CZK over 2643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008412 BTC for 82.70 CZK @ 983,156 CZK\nFees are 0.29047390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (176.96807997970015075623335444 CZK)\nThe limits being 0.10 % (52.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47416346 BTC (263,796.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 983,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.72 % (202,380.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,136.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05369916 BTC (52,794.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.81 CZK over 2643 transactions" + } + ] + }, + { + "id": 4325, + "type": "message", + "date": "2024-01-16T21:00:05", + "date_unixtime": "1705435205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008399 BTC for 82.70 CZK @ 984,691 CZK\nFees are 0.29047782 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (177.24437997903871750694215678 CZK)\nThe limits being 0.10 % (52.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47424745 BTC (263,879.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.97 % (203,107.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,053.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05378315 BTC (52,959.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.80 CZK over 2644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008399 BTC for 82.70 CZK @ 984,691 CZK\nFees are 0.29047782 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (177.24437997903871750694215678 CZK)\nThe limits being 0.10 % (52.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47424745 BTC (263,879.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.97 % (203,107.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,053.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05378315 BTC (52,959.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.80 CZK over 2644 transactions" + } + ] + }, + { + "id": 4326, + "type": "message", + "date": "2024-01-17T01:00:06", + "date_unixtime": "1705449606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008417 BTC for 82.70 CZK @ 982,552 CZK\nFees are 0.29046800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (225.98695998246365829375018018 CZK)\nThe limits being 0.10 % (52.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47433162 BTC (263,962.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 982,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.56 % (202,092.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,970.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05386732 BTC (52,927.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.80 CZK over 2645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008417 BTC for 82.70 CZK @ 982,552 CZK\nFees are 0.29046800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (225.98695998246365829375018018 CZK)\nThe limits being 0.10 % (52.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47433162 BTC (263,962.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 982,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.56 % (202,092.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,970.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05386732 BTC (52,927.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.80 CZK over 2645 transactions" + } + ] + }, + { + "id": 4327, + "type": "message", + "date": "2024-01-17T05:00:04", + "date_unixtime": "1705464004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008458 BTC for 82.71 CZK @ 977,834 CZK\nFees are 0.29048134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (156.45343998299637718682176818 CZK)\nThe limits being 0.10 % (52.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47441620 BTC (264,045.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.69 % (199,854.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,887.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05395190 BTC (52,756.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.79 CZK over 2646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008458 BTC for 82.71 CZK @ 977,834 CZK\nFees are 0.29048134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (156.45343998299637718682176818 CZK)\nThe limits being 0.10 % (52.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47441620 BTC (264,045.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.69 % (199,854.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,887.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05395190 BTC (52,756.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.79 CZK over 2646 transactions" + } + ] + }, + { + "id": 4328, + "type": "message", + "date": "2024-01-17T09:00:05", + "date_unixtime": "1705478405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008476 BTC for 82.70 CZK @ 975,734 CZK\nFees are 0.29047436 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (156.11743998412352424842452080 CZK)\nThe limits being 0.10 % (52.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47450096 BTC (264,128.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 975,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.29 % (198,858.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,804.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05403666 BTC (52,725.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.78 CZK over 2647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008476 BTC for 82.70 CZK @ 975,734 CZK\nFees are 0.29047436 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (156.11743998412352424842452080 CZK)\nThe limits being 0.10 % (52.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47450096 BTC (264,128.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 975,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.29 % (198,858.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,804.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05403666 BTC (52,725.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.78 CZK over 2647 transactions" + } + ] + }, + { + "id": 4329, + "type": "message", + "date": "2024-01-17T13:00:05", + "date_unixtime": "1705492805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008486 BTC for 82.71 CZK @ 974,668 CZK\nFees are 0.29049934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (155.94687999496459539854675499 CZK)\nThe limits being 0.10 % (52.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47458582 BTC (264,211.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 974,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.07 % (198,352.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,721.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05412152 BTC (52,750.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.78 CZK over 2648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008486 BTC for 82.71 CZK @ 974,668 CZK\nFees are 0.29049934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (155.94687999496459539854675499 CZK)\nThe limits being 0.10 % (52.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47458582 BTC (264,211.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 974,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.07 % (198,352.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,721.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05412152 BTC (52,750.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.78 CZK over 2648 transactions" + } + ] + }, + { + "id": 4330, + "type": "message", + "date": "2024-01-17T17:00:05", + "date_unixtime": "1705507205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008519 BTC for 82.71 CZK @ 970,830 CZK\nFees are 0.29048066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.04109998617937348403723485 CZK)\nThe limits being 0.10 % (52.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47467101 BTC (264,294.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.36 % (196,530.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,638.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05420671 BTC (52,625.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.77 CZK over 2649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008519 BTC for 82.71 CZK @ 970,830 CZK\nFees are 0.29048066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.04109998617937348403723485 CZK)\nThe limits being 0.10 % (52.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47467101 BTC (264,294.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.36 % (196,530.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,638.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05420671 BTC (52,625.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.77 CZK over 2649 transactions" + } + ] + }, + { + "id": 4331, + "type": "message", + "date": "2024-01-17T21:00:05", + "date_unixtime": "1705521605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008505 BTC for 82.71 CZK @ 972,459 CZK\nFees are 0.29048990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.31802999437301601947563305 CZK)\nThe limits being 0.10 % (52.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47475606 BTC (264,377.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.63 % (197,303.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,555.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05429176 BTC (52,796.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.77 CZK over 2650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008505 BTC for 82.71 CZK @ 972,459 CZK\nFees are 0.29048990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.31802999437301601947563305 CZK)\nThe limits being 0.10 % (52.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47475606 BTC (264,377.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.63 % (197,303.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,555.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05429176 BTC (52,796.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.77 CZK over 2650 transactions" + } + ] + }, + { + "id": 4332, + "type": "message", + "date": "2024-01-18T01:00:05", + "date_unixtime": "1705536005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008503 BTC for 82.71 CZK @ 972,664 CZK\nFees are 0.29048281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.35287998063463752439787803 CZK)\nThe limits being 0.10 % (52.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47484109 BTC (264,460.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 556,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.64 % (197,400.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,472.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05437679 BTC (52,890.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.76 CZK over 2651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008503 BTC for 82.71 CZK @ 972,664 CZK\nFees are 0.29048281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.35287998063463752439787803 CZK)\nThe limits being 0.10 % (52.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47484109 BTC (264,460.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 556,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.64 % (197,400.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,472.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05437679 BTC (52,890.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.76 CZK over 2651 transactions" + } + ] + }, + { + "id": 4333, + "type": "message", + "date": "2024-01-18T05:00:04", + "date_unixtime": "1705550404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008520 BTC for 82.71 CZK @ 970,729 CZK\nFees are 0.29048454 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.02392998449090156283991944 CZK)\nThe limits being 0.10 % (52.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47492629 BTC (264,543.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.27 % (196,481.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,389.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05446199 BTC (52,867.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.75 CZK over 2652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008520 BTC for 82.71 CZK @ 970,729 CZK\nFees are 0.29048454 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (165.02392998449090156283991944 CZK)\nThe limits being 0.10 % (52.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47492629 BTC (264,543.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.27 % (196,481.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,389.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05446199 BTC (52,867.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.75 CZK over 2652 transactions" + } + ] + }, + { + "id": 4334, + "type": "message", + "date": "2024-01-18T09:00:05", + "date_unixtime": "1705564805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,323 CZK\nFees are 0.29046684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (273.65043999040465437854769004 CZK)\nThe limits being 0.10 % (53.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47501091 BTC (264,626.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 977,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.43 % (199,612.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,306.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05454661 BTC (53,309.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.75 CZK over 2653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008462 BTC for 82.70 CZK @ 977,323 CZK\nFees are 0.29046684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (273.65043999040465437854769004 CZK)\nThe limits being 0.10 % (53.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47501091 BTC (264,626.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 977,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.43 % (199,612.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,306.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05454661 BTC (53,309.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.75 CZK over 2653 transactions" + } + ] + }, + { + "id": 4335, + "type": "message", + "date": "2024-01-18T13:00:05", + "date_unixtime": "1705579205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008537 BTC for 82.71 CZK @ 968,806 CZK\nFees are 0.29048755 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (271.26567997133612069598971249 CZK)\nThe limits being 0.10 % (52.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47509628 BTC (264,709.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 968,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.88 % (195,566.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,223.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05463198 BTC (52,927.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.74 CZK over 2654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008537 BTC for 82.71 CZK @ 968,806 CZK\nFees are 0.29048755 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (271.26567997133612069598971249 CZK)\nThe limits being 0.10 % (52.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47509628 BTC (264,709.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 968,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.88 % (195,566.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,223.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05463198 BTC (52,927.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.74 CZK over 2654 transactions" + } + ] + }, + { + "id": 4336, + "type": "message", + "date": "2024-01-18T17:00:06", + "date_unixtime": "1705593606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008471 BTC for 82.71 CZK @ 976,360 CZK\nFees are 0.29048926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (273.38079998484821481561083250 CZK)\nThe limits being 0.10 % (53.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47518099 BTC (264,792.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.21 % (199,155.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,140.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05471669 BTC (53,423.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.73 CZK over 2655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008471 BTC for 82.71 CZK @ 976,360 CZK\nFees are 0.29048926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (273.38079998484821481561083250 CZK)\nThe limits being 0.10 % (53.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47518099 BTC (264,792.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.21 % (199,155.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,140.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05471669 BTC (53,423.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.73 CZK over 2655 transactions" + } + ] + }, + { + "id": 4337, + "type": "message", + "date": "2024-01-18T21:00:04", + "date_unixtime": "1705608004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008794 BTC for 82.70 CZK @ 940,427 CZK\nFees are 0.29046712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (150.46831998852322534082723205 CZK)\nThe limits being 0.10 % (51.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47526893 BTC (264,875.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 940,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.74 % (182,080.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,057.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05480463 BTC (51,539.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.73 CZK over 2656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008794 BTC for 82.70 CZK @ 940,427 CZK\nFees are 0.29046712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (150.46831998852322534082723205 CZK)\nThe limits being 0.10 % (51.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47526893 BTC (264,875.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 940,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.74 % (182,080.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,057.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05480463 BTC (51,539.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.73 CZK over 2656 transactions" + } + ] + }, + { + "id": 4338, + "type": "message", + "date": "2024-01-19T01:00:05", + "date_unixtime": "1705622405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008742 BTC for 82.70 CZK @ 946,036 CZK\nFees are 0.29047174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (151.36575999102660249866715637 CZK)\nThe limits being 0.10 % (51.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47535635 BTC (264,958.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.73 % (184,745.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,974.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05489205 BTC (51,929.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.72 CZK over 2657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008742 BTC for 82.70 CZK @ 946,036 CZK\nFees are 0.29047174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (151.36575999102660249866715637 CZK)\nThe limits being 0.10 % (51.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47535635 BTC (264,958.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.73 % (184,745.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,974.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05489205 BTC (51,929.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.72 CZK over 2657 transactions" + } + ] + }, + { + "id": 4339, + "type": "message", + "date": "2024-01-19T05:00:05", + "date_unixtime": "1705636805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008807 BTC for 82.71 CZK @ 939,095 CZK\nFees are 0.29048449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (150.25519998501893763561383234 CZK)\nThe limits being 0.10 % (51.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47544442 BTC (265,041.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 939,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.46 % (181,445.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,891.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05498012 BTC (51,631.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.71 CZK over 2658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008807 BTC for 82.71 CZK @ 939,095 CZK\nFees are 0.29048449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (150.25519998501893763561383234 CZK)\nThe limits being 0.10 % (51.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47544442 BTC (265,041.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 939,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.46 % (181,445.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,891.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05498012 BTC (51,631.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.71 CZK over 2658 transactions" + } + ] + }, + { + "id": 4340, + "type": "message", + "date": "2024-01-19T09:00:07", + "date_unixtime": "1705651207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008759 BTC for 82.71 CZK @ 944,261 CZK\nFees are 0.29049054 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (122.75392999487522635270217898 CZK)\nThe limits being 0.10 % (52.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47553201 BTC (265,124.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 944,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.36 % (183,901.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,808.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05506771 BTC (51,998.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.71 CZK over 2659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008759 BTC for 82.71 CZK @ 944,261 CZK\nFees are 0.29049054 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (122.75392999487522635270217898 CZK)\nThe limits being 0.10 % (52.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47553201 BTC (265,124.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 944,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.36 % (183,901.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,808.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05506771 BTC (51,998.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.71 CZK over 2659 transactions" + } + ] + }, + { + "id": 4341, + "type": "message", + "date": "2024-01-19T13:00:07", + "date_unixtime": "1705665607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008738 BTC for 82.70 CZK @ 946,483 CZK\nFees are 0.29047602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (113.57795999193940457654332518 CZK)\nThe limits being 0.10 % (52.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47561939 BTC (265,207.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.74 % (184,958.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,725.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05515509 BTC (52,203.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.70 CZK over 2660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008738 BTC for 82.70 CZK @ 946,483 CZK\nFees are 0.29047602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (113.57795999193940457654332518 CZK)\nThe limits being 0.10 % (52.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47561939 BTC (265,207.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.74 % (184,958.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,725.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05515509 BTC (52,203.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.70 CZK over 2660 transactions" + } + ] + }, + { + "id": 4342, + "type": "message", + "date": "2024-01-19T17:00:06", + "date_unixtime": "1705680006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008838 BTC for 82.71 CZK @ 935,831 CZK\nFees are 0.29049379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (112.29971999562968848676610816 CZK)\nThe limits being 0.10 % (51.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47570777 BTC (265,290.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 935,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.81 % (179,891.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,642.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05524347 BTC (51,698.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.70 CZK over 2661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008838 BTC for 82.71 CZK @ 935,831 CZK\nFees are 0.29049379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (112.29971999562968848676610816 CZK)\nThe limits being 0.10 % (51.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47570777 BTC (265,290.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 935,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.81 % (179,891.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,642.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05524347 BTC (51,698.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.70 CZK over 2661 transactions" + } + ] + }, + { + "id": 4343, + "type": "message", + "date": "2024-01-19T21:00:04", + "date_unixtime": "1705694404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008664 BTC for 82.70 CZK @ 954,545 CZK\nFees are 0.29046932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (162.27264998865926781656630232 CZK)\nThe limits being 0.10 % (52.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47579441 BTC (265,373.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 954,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.14 % (188,793.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,559.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05533011 BTC (52,815.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.69 CZK over 2662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008664 BTC for 82.70 CZK @ 954,545 CZK\nFees are 0.29046932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (162.27264998865926781656630232 CZK)\nThe limits being 0.10 % (52.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47579441 BTC (265,373.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 954,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.14 % (188,793.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,559.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05533011 BTC (52,815.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.69 CZK over 2662 transactions" + } + ] + }, + { + "id": 4344, + "type": "message", + "date": "2024-01-20T01:00:05", + "date_unixtime": "1705708805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008701 BTC for 82.71 CZK @ 950,568 CZK\nFees are 0.29049441 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (133.07951999057201644605906679 CZK)\nThe limits being 0.10 % (52.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47588142 BTC (265,456.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.41 % (186,901.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,476.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05541712 BTC (52,677.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.68 CZK over 2663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008701 BTC for 82.71 CZK @ 950,568 CZK\nFees are 0.29049441 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (133.07951999057201644605906679 CZK)\nThe limits being 0.10 % (52.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47588142 BTC (265,456.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.41 % (186,901.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,476.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05541712 BTC (52,677.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.68 CZK over 2663 transactions" + } + ] + }, + { + "id": 4345, + "type": "message", + "date": "2024-01-20T05:00:04", + "date_unixtime": "1705723204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008709 BTC for 82.71 CZK @ 949,652 CZK\nFees are 0.29048131 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (123.45475999348473934065768088 CZK)\nThe limits being 0.10 % (52.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47596851 BTC (265,539.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.22 % (186,464.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,393.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05550421 BTC (52,709.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.68 CZK over 2664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008709 BTC for 82.71 CZK @ 949,652 CZK\nFees are 0.29048131 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (123.45475999348473934065768088 CZK)\nThe limits being 0.10 % (52.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47596851 BTC (265,539.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.22 % (186,464.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,393.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05550421 BTC (52,709.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.68 CZK over 2664 transactions" + } + ] + }, + { + "id": 4346, + "type": "message", + "date": "2024-01-20T09:00:05", + "date_unixtime": "1705737605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008699 BTC for 82.70 CZK @ 950,705 CZK\nFees are 0.29046950 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (114.08459998924330425760671080 CZK)\nThe limits being 0.10 % (52.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47605550 BTC (265,622.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 557,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.39 % (186,965.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,310.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05559120 BTC (52,850.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.67 CZK over 2665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008699 BTC for 82.70 CZK @ 950,705 CZK\nFees are 0.29046950 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (114.08459998924330425760671080 CZK)\nThe limits being 0.10 % (52.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47605550 BTC (265,622.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 557,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.39 % (186,965.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,310.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05559120 BTC (52,850.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.67 CZK over 2665 transactions" + } + ] + }, + { + "id": 4347, + "type": "message", + "date": "2024-01-20T13:00:04", + "date_unixtime": "1705752004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008720 BTC for 82.71 CZK @ 948,510 CZK\nFees are 0.29049845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (104.33609999748586369724313526 CZK)\nThe limits being 0.10 % (52.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47614270 BTC (265,705.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 948,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.97 % (185,920.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,227.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05567840 BTC (52,811.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.66 CZK over 2666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008720 BTC for 82.71 CZK @ 948,510 CZK\nFees are 0.29049845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (104.33609999748586369724313526 CZK)\nThe limits being 0.10 % (52.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47614270 BTC (265,705.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 948,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.97 % (185,920.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,227.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05567840 BTC (52,811.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.66 CZK over 2666 transactions" + } + ] + }, + { + "id": 4348, + "type": "message", + "date": "2024-01-20T17:00:05", + "date_unixtime": "1705766405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008723 BTC for 82.70 CZK @ 948,113 CZK\nFees are 0.29047676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (113.77355998702466393416919035 CZK)\nThe limits being 0.10 % (52.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47622993 BTC (265,788.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 948,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.88 % (185,731.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,144.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05576563 BTC (52,872.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.66 CZK over 2667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008723 BTC for 82.70 CZK @ 948,113 CZK\nFees are 0.29047676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (113.77355998702466393416919035 CZK)\nThe limits being 0.10 % (52.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47622993 BTC (265,788.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 948,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.88 % (185,731.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,144.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05576563 BTC (52,872.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.66 CZK over 2667 transactions" + } + ] + }, + { + "id": 4349, + "type": "message", + "date": "2024-01-20T21:00:04", + "date_unixtime": "1705780804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008710 BTC for 82.71 CZK @ 949,566 CZK\nFees are 0.29048836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (132.93923999183111692314556915 CZK)\nThe limits being 0.10 % (53.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47631703 BTC (265,871.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.12 % (186,422.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,061.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05585273 BTC (53,035.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.65 CZK over 2668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008710 BTC for 82.71 CZK @ 949,566 CZK\nFees are 0.29048836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (132.93923999183111692314556915 CZK)\nThe limits being 0.10 % (53.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47631703 BTC (265,871.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.12 % (186,422.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,061.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05585273 BTC (53,035.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.65 CZK over 2668 transactions" + } + ] + }, + { + "id": 4350, + "type": "message", + "date": "2024-01-21T01:00:04", + "date_unixtime": "1705795204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008690 BTC for 82.71 CZK @ 951,749 CZK\nFees are 0.29048762 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (133.24485998659467468004676383 CZK)\nThe limits being 0.10 % (53.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47640393 BTC (265,954.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.49 % (187,462.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,978.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05593963 BTC (53,240.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.65 CZK over 2669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008690 BTC for 82.71 CZK @ 951,749 CZK\nFees are 0.29048762 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (133.24485998659467468004676383 CZK)\nThe limits being 0.10 % (53.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47640393 BTC (265,954.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.49 % (187,462.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,978.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05593963 BTC (53,240.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.65 CZK over 2669 transactions" + } + ] + }, + { + "id": 4351, + "type": "message", + "date": "2024-01-21T05:00:04", + "date_unixtime": "1705809604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008693 BTC for 82.70 CZK @ 951,376 CZK\nFees are 0.29047402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (123.67887999272762746698530297 CZK)\nThe limits being 0.10 % (53.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47649086 BTC (266,037.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.40 % (187,284.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,895.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05602656 BTC (53,302.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.64 CZK over 2670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008693 BTC for 82.70 CZK @ 951,376 CZK\nFees are 0.29047402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (123.67887999272762746698530297 CZK)\nThe limits being 0.10 % (53.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47649086 BTC (266,037.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.40 % (187,284.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,895.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05602656 BTC (53,302.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.64 CZK over 2670 transactions" + } + ] + }, + { + "id": 4352, + "type": "message", + "date": "2024-01-21T09:00:04", + "date_unixtime": "1705824004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008702 BTC for 82.71 CZK @ 950,431 CZK\nFees are 0.29048592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (104.54740998781900672399531999 CZK)\nThe limits being 0.10 % (53.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47657788 BTC (266,120.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.21 % (186,833.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,812.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05611358 BTC (53,332.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.63 CZK over 2671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008702 BTC for 82.71 CZK @ 950,431 CZK\nFees are 0.29048592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (104.54740998781900672399531999 CZK)\nThe limits being 0.10 % (53.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47657788 BTC (266,120.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.21 % (186,833.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,812.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05611358 BTC (53,332.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.63 CZK over 2671 transactions" + } + ] + }, + { + "id": 4353, + "type": "message", + "date": "2024-01-21T13:00:05", + "date_unixtime": "1705838405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008687 BTC for 82.70 CZK @ 952,022 CZK\nFees are 0.29047063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (123.76285998659348662781450602 CZK)\nThe limits being 0.10 % (53.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47666475 BTC (266,203.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 952,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.47 % (187,591.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,729.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05620045 BTC (53,504.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.63 CZK over 2672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008687 BTC for 82.70 CZK @ 952,022 CZK\nFees are 0.29047063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (123.76285998659348662781450602 CZK)\nThe limits being 0.10 % (53.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47666475 BTC (266,203.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 952,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.47 % (187,591.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,729.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05620045 BTC (53,504.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.63 CZK over 2672 transactions" + } + ] + }, + { + "id": 4354, + "type": "message", + "date": "2024-01-21T17:00:04", + "date_unixtime": "1705852804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008698 BTC for 82.71 CZK @ 950,854 CZK\nFees are 0.29048162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (104.59393999594200248543755170 CZK)\nThe limits being 0.10 % (53.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47675173 BTC (266,286.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 950,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.24 % (187,034.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,646.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05628743 BTC (53,521.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.62 CZK over 2673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008698 BTC for 82.71 CZK @ 950,854 CZK\nFees are 0.29048162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (104.59393999594200248543755170 CZK)\nThe limits being 0.10 % (53.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47675173 BTC (266,286.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 950,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.24 % (187,034.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,646.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05628743 BTC (53,521.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.62 CZK over 2673 transactions" + } + ] + }, + { + "id": 4355, + "type": "message", + "date": "2024-01-21T21:00:05", + "date_unixtime": "1705867205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008693 BTC for 82.71 CZK @ 951,400 CZK\nFees are 0.29048135 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (133.19599998876588101772635073 CZK)\nThe limits being 0.10 % (53.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47683866 BTC (266,369.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 951,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.31 % (187,294.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,563.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05637436 BTC (53,634.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.61 CZK over 2674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008693 BTC for 82.71 CZK @ 951,400 CZK\nFees are 0.29048135 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (133.19599998876588101772635073 CZK)\nThe limits being 0.10 % (53.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47683866 BTC (266,369.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 951,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.31 % (187,294.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,563.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05637436 BTC (53,634.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.61 CZK over 2674 transactions" + } + ] + }, + { + "id": 4356, + "type": "message", + "date": "2024-01-22T01:00:05", + "date_unixtime": "1705881605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008714 BTC for 82.70 CZK @ 949,064 CZK\nFees are 0.29046812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (151.85023998287380443407907074 CZK)\nThe limits being 0.10 % (53.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47692580 BTC (266,452.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 949,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 69.87 % (186,180.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,480.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05646150 BTC (53,585.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.61 CZK over 2675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008714 BTC for 82.70 CZK @ 949,064 CZK\nFees are 0.29046812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (151.85023998287380443407907074 CZK)\nThe limits being 0.10 % (53.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47692580 BTC (266,452.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 949,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 69.87 % (186,180.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,480.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05646150 BTC (53,585.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.61 CZK over 2675 transactions" + } + ] + }, + { + "id": 4357, + "type": "message", + "date": "2024-01-22T05:00:04", + "date_unixtime": "1705896004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008807 BTC for 82.70 CZK @ 939,046 CZK\nFees are 0.29046933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (150.24735999226959077994816485 CZK)\nThe limits being 0.10 % (53.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47701387 BTC (266,535.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 939,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.06 % (181,402.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,397.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05654957 BTC (53,102.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.60 CZK over 2676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008807 BTC for 82.70 CZK @ 939,046 CZK\nFees are 0.29046933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (150.24735999226959077994816485 CZK)\nThe limits being 0.10 % (53.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47701387 BTC (266,535.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 939,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.06 % (181,402.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,397.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05654957 BTC (53,102.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.60 CZK over 2676 transactions" + } + ] + }, + { + "id": 4358, + "type": "message", + "date": "2024-01-22T09:00:06", + "date_unixtime": "1705910406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008821 BTC for 82.70 CZK @ 937,555 CZK\nFees are 0.29046914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (112.50659999603473773094475423 CZK)\nThe limits being 0.10 % (53.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47710208 BTC (266,618.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 937,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 67.77 % (180,691.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,314.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05663778 BTC (53,101.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.60 CZK over 2677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008821 BTC for 82.70 CZK @ 937,555 CZK\nFees are 0.29046914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (112.50659999603473773094475423 CZK)\nThe limits being 0.10 % (53.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47710208 BTC (266,618.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 937,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 67.77 % (180,691.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,314.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05663778 BTC (53,101.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.60 CZK over 2677 transactions" + } + ] + }, + { + "id": 4359, + "type": "message", + "date": "2024-01-22T13:00:06", + "date_unixtime": "1705924806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008884 BTC for 82.71 CZK @ 930,952 CZK\nFees are 0.29048336 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (102.40471999397875109337041203 CZK)\nThe limits being 0.10 % (52.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47719092 BTC (266,701.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 930,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 66.57 % (177,540.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,231.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05672662 BTC (52,809.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.59 CZK over 2678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008884 BTC for 82.71 CZK @ 930,952 CZK\nFees are 0.29048336 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (102.40471999397875109337041203 CZK)\nThe limits being 0.10 % (52.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47719092 BTC (266,701.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 930,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 66.57 % (177,540.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,231.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05672662 BTC (52,809.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.59 CZK over 2678 transactions" + } + ] + }, + { + "id": 4360, + "type": "message", + "date": "2024-01-22T17:00:05", + "date_unixtime": "1705939205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008889 BTC for 82.70 CZK @ 930,381 CZK\nFees are 0.29046864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (111.64574340130165413291078256 CZK)\nThe limits being 0.10 % (52.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47727981 BTC (266,784.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 558,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 930,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 66.45 % (177,267.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,148.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05681551 BTC (52,860.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.58 CZK over 2679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008889 BTC for 82.70 CZK @ 930,381 CZK\nFees are 0.29046864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (111.64574340130165413291078256 CZK)\nThe limits being 0.10 % (52.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47727981 BTC (266,784.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 558,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 930,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 66.45 % (177,267.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,148.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05681551 BTC (52,860.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.58 CZK over 2679 transactions" + } + ] + }, + { + "id": 4361, + "type": "message", + "date": "2024-01-22T21:00:05", + "date_unixtime": "1705953605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009119 BTC for 82.70 CZK @ 906,935 CZK\nFees are 0.29047503 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (99.76284998885084351933492127 CZK)\nThe limits being 0.10 % (51.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47737100 BTC (266,867.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 906,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.23 % (166,077.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,065.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05690670 BTC (51,610.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.58 CZK over 2680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009119 BTC for 82.70 CZK @ 906,935 CZK\nFees are 0.29047503 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (99.76284998885084351933492127 CZK)\nThe limits being 0.10 % (51.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47737100 BTC (266,867.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 906,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.23 % (166,077.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,065.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05690670 BTC (51,610.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.58 CZK over 2680 transactions" + } + ] + }, + { + "id": 4362, + "type": "message", + "date": "2024-01-23T01:00:06", + "date_unixtime": "1705968006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009153 BTC for 82.70 CZK @ 903,563 CZK\nFees are 0.29047404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (90.3562999947033411030365642 CZK)\nThe limits being 0.10 % (51.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47746253 BTC (266,950.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 903,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.61 % (164,467.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,982.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05699823 BTC (51,501.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.57 CZK over 2681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009153 BTC for 82.70 CZK @ 903,563 CZK\nFees are 0.29047404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (90.3562999947033411030365642 CZK)\nThe limits being 0.10 % (51.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47746253 BTC (266,950.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 903,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.61 % (164,467.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,982.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05699823 BTC (51,501.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.57 CZK over 2681 transactions" + } + ] + }, + { + "id": 4363, + "type": "message", + "date": "2024-01-23T05:00:04", + "date_unixtime": "1705982404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009071 BTC for 82.71 CZK @ 911,795 CZK\nFees are 0.29049442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (91.17949999387547618172687073 CZK)\nThe limits being 0.10 % (52.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47755324 BTC (267,033.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 911,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.06 % (168,397.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,899.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05708894 BTC (52,053.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.57 CZK over 2682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009071 BTC for 82.71 CZK @ 911,795 CZK\nFees are 0.29049442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (91.17949999387547618172687073 CZK)\nThe limits being 0.10 % (52.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47755324 BTC (267,033.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 911,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.06 % (168,397.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,899.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05708894 BTC (52,053.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.57 CZK over 2682 transactions" + } + ] + }, + { + "id": 4364, + "type": "message", + "date": "2024-01-23T09:00:05", + "date_unixtime": "1705996805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009151 BTC for 82.71 CZK @ 903,785 CZK\nFees are 0.29048192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (90.37849999049877717356534394 CZK)\nThe limits being 0.10 % (51.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47764475 BTC (267,116.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 903,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.61 % (164,571.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,816.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05718045 BTC (51,678.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.56 CZK over 2683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009151 BTC for 82.71 CZK @ 903,785 CZK\nFees are 0.29048192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (90.37849999049877717356534394 CZK)\nThe limits being 0.10 % (51.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47764475 BTC (267,116.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 903,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.61 % (164,571.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,816.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05718045 BTC (51,678.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.56 CZK over 2683 transactions" + } + ] + }, + { + "id": 4365, + "type": "message", + "date": "2024-01-23T13:00:06", + "date_unixtime": "1706011206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009311 BTC for 82.70 CZK @ 888,226 CZK\nFees are 0.29047264 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (88.82259999998929747387740802 CZK)\nThe limits being 0.10 % (50.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47773786 BTC (267,199.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 888,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 58.81 % (157,139.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,733.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05727356 BTC (50,871.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.55 CZK over 2684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009311 BTC for 82.70 CZK @ 888,226 CZK\nFees are 0.29047264 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (88.82259999998929747387740802 CZK)\nThe limits being 0.10 % (50.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47773786 BTC (267,199.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 888,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 58.81 % (157,139.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,733.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05727356 BTC (50,871.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.55 CZK over 2684 transactions" + } + ] + }, + { + "id": 4366, + "type": "message", + "date": "2024-01-23T17:00:05", + "date_unixtime": "1706025605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009177 BTC for 82.70 CZK @ 901,202 CZK\nFees are 0.29047469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (198.26443998473469694904056789 CZK)\nThe limits being 0.10 % (51.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47782963 BTC (267,282.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 901,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 61.11 % (163,338.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,650.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05736533 BTC (51,697.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.55 CZK over 2685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009177 BTC for 82.70 CZK @ 901,202 CZK\nFees are 0.29047469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (198.26443998473469694904056789 CZK)\nThe limits being 0.10 % (51.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47782963 BTC (267,282.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 901,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 61.11 % (163,338.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,650.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05736533 BTC (51,697.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.55 CZK over 2685 transactions" + } + ] + }, + { + "id": 4367, + "type": "message", + "date": "2024-01-23T21:00:05", + "date_unixtime": "1706040005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009211 BTC for 82.71 CZK @ 897,900 CZK\nFees are 0.29048263 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (179.57999999675438429939896066 CZK)\nThe limits being 0.10 % (51.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47792174 BTC (267,365.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 897,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 60.50 % (161,760.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,567.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05745744 BTC (51,591.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.54 CZK over 2686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009211 BTC for 82.71 CZK @ 897,900 CZK\nFees are 0.29048263 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (179.57999999675438429939896066 CZK)\nThe limits being 0.10 % (51.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47792174 BTC (267,365.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 897,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 60.50 % (161,760.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,567.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05745744 BTC (51,591.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.54 CZK over 2686 transactions" + } + ] + }, + { + "id": 4368, + "type": "message", + "date": "2024-01-24T01:00:04", + "date_unixtime": "1706054404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009050 BTC for 82.71 CZK @ 913,909 CZK\nFees are 0.29049386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (164.50361998860342392785471844 CZK)\nThe limits being 0.10 % (52.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47801224 BTC (267,448.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 913,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.34 % (169,411.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,484.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05754794 BTC (52,593.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.53 CZK over 2687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009050 BTC for 82.71 CZK @ 913,909 CZK\nFees are 0.29049386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (164.50361998860342392785471844 CZK)\nThe limits being 0.10 % (52.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47801224 BTC (267,448.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 913,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.34 % (169,411.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,484.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05754794 BTC (52,593.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.53 CZK over 2687 transactions" + } + ] + }, + { + "id": 4369, + "type": "message", + "date": "2024-01-24T05:00:04", + "date_unixtime": "1706068804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009104 BTC for 82.71 CZK @ 908,500 CZK\nFees are 0.29049764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (109.02000 CZK)\nThe limits being 0.10 % (52.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47810328 BTC (267,531.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 908,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.36 % (166,825.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,401.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05763898 BTC (52,365.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.53 CZK over 2688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009104 BTC for 82.71 CZK @ 908,500 CZK\nFees are 0.29049764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (109.02000 CZK)\nThe limits being 0.10 % (52.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47810328 BTC (267,531.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 908,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.36 % (166,825.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,401.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05763898 BTC (52,365.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.53 CZK over 2688 transactions" + } + ] + }, + { + "id": 4370, + "type": "message", + "date": "2024-01-24T09:00:07", + "date_unixtime": "1706083207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009032 BTC for 82.71 CZK @ 915,690 CZK\nFees are 0.29048106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.56899999691072389241728353 CZK)\nThe limits being 0.10 % (52.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47819360 BTC (267,614.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 915,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.62 % (170,262.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,318.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05772930 BTC (52,862.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.52 CZK over 2689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009032 BTC for 82.71 CZK @ 915,690 CZK\nFees are 0.29048106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.56899999691072389241728353 CZK)\nThe limits being 0.10 % (52.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47819360 BTC (267,614.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 915,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.62 % (170,262.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,318.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05772930 BTC (52,862.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.52 CZK over 2689 transactions" + } + ] + }, + { + "id": 4371, + "type": "message", + "date": "2024-01-24T13:00:07", + "date_unixtime": "1706097607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009001 BTC for 82.71 CZK @ 918,878 CZK\nFees are 0.29049191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.88779999919180767546893284 CZK)\nThe limits being 0.10 % (53.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47828361 BTC (267,697.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 918,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 64.17 % (171,786.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,235.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05781931 BTC (53,128.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.52 CZK over 2690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009001 BTC for 82.71 CZK @ 918,878 CZK\nFees are 0.29049191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.88779999919180767546893284 CZK)\nThe limits being 0.10 % (53.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47828361 BTC (267,697.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 918,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 64.17 % (171,786.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,235.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05781931 BTC (53,128.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.52 CZK over 2690 transactions" + } + ] + }, + { + "id": 4372, + "type": "message", + "date": "2024-01-24T17:00:06", + "date_unixtime": "1706112006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009045 BTC for 82.71 CZK @ 914,385 CZK\nFees are 0.29048458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.43849999848512516859868294 CZK)\nThe limits being 0.10 % (52.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47837406 BTC (267,780.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 914,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.35 % (169,637.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,152.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05790976 BTC (52,951.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.51 CZK over 2691 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009045 BTC for 82.71 CZK @ 914,385 CZK\nFees are 0.29048458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.43849999848512516859868294 CZK)\nThe limits being 0.10 % (52.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47837406 BTC (267,780.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 914,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.35 % (169,637.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,152.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05790976 BTC (52,951.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.51 CZK over 2691 transactions" + } + ] + }, + { + "id": 4373, + "type": "message", + "date": "2024-01-24T21:00:05", + "date_unixtime": "1706126405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009093 BTC for 82.71 CZK @ 909,567 CZK\nFees are 0.29048741 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (90.95669999387933500755713081 CZK)\nThe limits being 0.10 % (52.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47846499 BTC (267,863.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,839 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 909,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.47 % (167,332.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,069.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05800069 BTC (52,755.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.50 CZK over 2692 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009093 BTC for 82.71 CZK @ 909,567 CZK\nFees are 0.29048741 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (90.95669999387933500755713081 CZK)\nThe limits being 0.10 % (52.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47846499 BTC (267,863.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,839 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 909,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.47 % (167,332.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,069.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05800069 BTC (52,755.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.50 CZK over 2692 transactions" + } + ] + }, + { + "id": 4374, + "type": "message", + "date": "2024-01-25T01:00:05", + "date_unixtime": "1706140805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009014 BTC for 82.71 CZK @ 917,531 CZK\nFees are 0.29048501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.5777899948361343241852982 CZK)\nThe limits being 0.10 % (53.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47855513 BTC (267,946.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 917,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.87 % (171,142.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,986.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05809083 BTC (53,300.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.50 CZK over 2693 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009014 BTC for 82.71 CZK @ 917,531 CZK\nFees are 0.29048501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.5777899948361343241852982 CZK)\nThe limits being 0.10 % (53.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47855513 BTC (267,946.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 917,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.87 % (171,142.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,986.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05809083 BTC (53,300.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.50 CZK over 2693 transactions" + } + ] + }, + { + "id": 4375, + "type": "message", + "date": "2024-01-25T05:00:04", + "date_unixtime": "1706155204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009031 BTC for 82.70 CZK @ 915,758 CZK\nFees are 0.29047047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.41821999262132971980418221 CZK)\nThe limits being 0.10 % (53.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47864544 BTC (268,029.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 559,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 915,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.54 % (170,294.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,903.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05818114 BTC (53,279.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.49 CZK over 2694 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009031 BTC for 82.70 CZK @ 915,758 CZK\nFees are 0.29047047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.41821999262132971980418221 CZK)\nThe limits being 0.10 % (53.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47864544 BTC (268,029.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 559,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 915,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.54 % (170,294.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,903.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05818114 BTC (53,279.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.49 CZK over 2694 transactions" + } + ] + }, + { + "id": 4376, + "type": "message", + "date": "2024-01-25T09:00:05", + "date_unixtime": "1706169605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009013 BTC for 82.70 CZK @ 917,585 CZK\nFees are 0.29046987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.58264999385541263516226438 CZK)\nThe limits being 0.10 % (53.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47873557 BTC (268,112.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 917,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.84 % (171,168.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,820.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05827127 BTC (53,468.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.49 CZK over 2695 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009013 BTC for 82.70 CZK @ 917,585 CZK\nFees are 0.29046987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.58264999385541263516226438 CZK)\nThe limits being 0.10 % (53.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47873557 BTC (268,112.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 917,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.84 % (171,168.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,820.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05827127 BTC (53,468.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.49 CZK over 2695 transactions" + } + ] + }, + { + "id": 4377, + "type": "message", + "date": "2024-01-25T13:00:04", + "date_unixtime": "1706184004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009035 BTC for 82.71 CZK @ 915,420 CZK\nFees are 0.29049186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.38779999056980700365544060 CZK)\nThe limits being 0.10 % (53.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47882592 BTC (268,195.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 915,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.44 % (170,131.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,737.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05836162 BTC (53,425.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.48 CZK over 2696 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009035 BTC for 82.71 CZK @ 915,420 CZK\nFees are 0.29049186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.38779999056980700365544060 CZK)\nThe limits being 0.10 % (53.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47882592 BTC (268,195.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 915,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.44 % (170,131.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,737.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05836162 BTC (53,425.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.48 CZK over 2696 transactions" + } + ] + }, + { + "id": 4378, + "type": "message", + "date": "2024-01-25T17:00:05", + "date_unixtime": "1706198405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009059 BTC for 82.71 CZK @ 912,980 CZK\nFees are 0.29048716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.29799999592990929802870657 CZK)\nThe limits being 0.10 % (53.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47891651 BTC (268,278.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 912,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 62.98 % (168,962.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,654.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05845221 BTC (53,365.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.47 CZK over 2697 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009059 BTC for 82.71 CZK @ 912,980 CZK\nFees are 0.29048716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.29799999592990929802870657 CZK)\nThe limits being 0.10 % (53.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47891651 BTC (268,278.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 912,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 62.98 % (168,962.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,654.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05845221 BTC (53,365.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.47 CZK over 2697 transactions" + } + ] + }, + { + "id": 4379, + "type": "message", + "date": "2024-01-25T21:00:04", + "date_unixtime": "1706212804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009031 BTC for 82.70 CZK @ 915,788 CZK\nFees are 0.29047998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.57880000002206870130161752 CZK)\nThe limits being 0.10 % (53.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47900682 BTC (268,361.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 915,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.46 % (170,307.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,571.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05854252 BTC (53,612.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.47 CZK over 2698 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009031 BTC for 82.70 CZK @ 915,788 CZK\nFees are 0.29047998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (91.57880000002206870130161752 CZK)\nThe limits being 0.10 % (53.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47900682 BTC (268,361.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 915,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.46 % (170,307.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,571.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05854252 BTC (53,612.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.47 CZK over 2698 transactions" + } + ] + }, + { + "id": 4380, + "type": "message", + "date": "2024-01-26T01:00:07", + "date_unixtime": "1706227207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009033 BTC for 82.70 CZK @ 915,572 CZK\nFees are 0.29047578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.40147999438034630371249614 CZK)\nThe limits being 0.10 % (53.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47909715 BTC (268,444.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 915,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.40 % (170,203.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,488.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05863285 BTC (53,682.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.46 CZK over 2699 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009033 BTC for 82.70 CZK @ 915,572 CZK\nFees are 0.29047578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.40147999438034630371249614 CZK)\nThe limits being 0.10 % (53.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47909715 BTC (268,444.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 915,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.40 % (170,203.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,488.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05863285 BTC (53,682.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.46 CZK over 2699 transactions" + } + ] + }, + { + "id": 4381, + "type": "message", + "date": "2024-01-26T05:00:07", + "date_unixtime": "1706241607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009013 BTC for 82.71 CZK @ 917,645 CZK\nFees are 0.29048887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.58804999654211480278362246 CZK)\nThe limits being 0.10 % (53.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47918728 BTC (268,527.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 917,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.75 % (171,196.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,405.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05872298 BTC (53,886.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.45 CZK over 2700 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009013 BTC for 82.71 CZK @ 917,645 CZK\nFees are 0.29048887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (82.58804999654211480278362246 CZK)\nThe limits being 0.10 % (53.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47918728 BTC (268,527.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 917,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.75 % (171,196.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,405.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05872298 BTC (53,886.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.45 CZK over 2700 transactions" + } + ] + }, + { + "id": 4382, + "type": "message", + "date": "2024-01-26T09:00:06", + "date_unixtime": "1706256006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00009003 BTC for 82.71 CZK @ 918,688 CZK\nFees are 0.29049637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (73.495039998016494640191076208 CZK)\nThe limits being 0.10 % (54.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47927731 BTC (268,610.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 918,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 63.92 % (171,696.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,322.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05881301 BTC (54,030.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.45 CZK over 2701 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00009003 BTC for 82.71 CZK @ 918,688 CZK\nFees are 0.29049637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (73.495039998016494640191076208 CZK)\nThe limits being 0.10 % (54.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47927731 BTC (268,610.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 918,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 63.92 % (171,696.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,322.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05881301 BTC (54,030.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.45 CZK over 2701 transactions" + } + ] + }, + { + "id": 4383, + "type": "message", + "date": "2024-01-26T13:00:06", + "date_unixtime": "1706270406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008781 BTC for 82.71 CZK @ 941,891 CZK\nFees are 0.29048924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (75.351279999559678013412457376 CZK)\nThe limits being 0.10 % (55.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47936512 BTC (268,693.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 941,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.04 % (182,816.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,239.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05890082 BTC (55,478.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.44 CZK over 2702 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008781 BTC for 82.71 CZK @ 941,891 CZK\nFees are 0.29048924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (75.351279999559678013412457376 CZK)\nThe limits being 0.10 % (55.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47936512 BTC (268,693.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 941,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.04 % (182,816.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,239.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05890082 BTC (55,478.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.44 CZK over 2702 transactions" + } + ] + }, + { + "id": 4384, + "type": "message", + "date": "2024-01-26T17:00:06", + "date_unixtime": "1706284806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008736 BTC for 82.70 CZK @ 946,670 CZK\nFees are 0.29046691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (85.20029999055503539808472544 CZK)\nThe limits being 0.10 % (55.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47945248 BTC (268,776.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 946,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 68.87 % (185,107.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,156.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05898818 BTC (55,842.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.44 CZK over 2703 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008736 BTC for 82.70 CZK @ 946,670 CZK\nFees are 0.29046691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (85.20029999055503539808472544 CZK)\nThe limits being 0.10 % (55.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47945248 BTC (268,776.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 946,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 68.87 % (185,107.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,156.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05898818 BTC (55,842.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.44 CZK over 2703 transactions" + } + ] + }, + { + "id": 4385, + "type": "message", + "date": "2024-01-26T21:00:06", + "date_unixtime": "1706299206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008590 BTC for 82.70 CZK @ 962,761 CZK\nFees are 0.29046718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.90370999406617003468071296 CZK)\nThe limits being 0.10 % (56.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47953838 BTC (268,859.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 962,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.72 % (192,821.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,073.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05907408 BTC (56,874.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.43 CZK over 2704 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008590 BTC for 82.70 CZK @ 962,761 CZK\nFees are 0.29046718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.90370999406617003468071296 CZK)\nThe limits being 0.10 % (56.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47953838 BTC (268,859.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 962,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.72 % (192,821.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,073.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05907408 BTC (56,874.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.43 CZK over 2704 transactions" + } + ] + }, + { + "id": 4386, + "type": "message", + "date": "2024-01-27T01:00:04", + "date_unixtime": "1706313604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008638 BTC for 82.71 CZK @ 957,497 CZK\nFees are 0.29049325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.32466998983529861276225500 CZK)\nThe limits being 0.10 % (56.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47962476 BTC (268,942.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.76 % (190,297.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,990.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05916046 BTC (56,645.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.42 CZK over 2705 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008638 BTC for 82.71 CZK @ 957,497 CZK\nFees are 0.29049325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (105.32466998983529861276225500 CZK)\nThe limits being 0.10 % (56.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47962476 BTC (268,942.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.76 % (190,297.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,990.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05916046 BTC (56,645.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.42 CZK over 2705 transactions" + } + ] + }, + { + "id": 4387, + "type": "message", + "date": "2024-01-27T05:00:05", + "date_unixtime": "1706328005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008638 BTC for 82.71 CZK @ 957,482 CZK\nFees are 0.29048870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (76.598559997175895018050391584 CZK)\nThe limits being 0.10 % (56.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47971114 BTC (269,025.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.73 % (190,289.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,907.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05924684 BTC (56,727.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.42 CZK over 2706 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008638 BTC for 82.71 CZK @ 957,482 CZK\nFees are 0.29048870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (76.598559997175895018050391584 CZK)\nThe limits being 0.10 % (56.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47971114 BTC (269,025.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.73 % (190,289.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,907.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05924684 BTC (56,727.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.42 CZK over 2706 transactions" + } + ] + }, + { + "id": 4388, + "type": "message", + "date": "2024-01-27T09:00:05", + "date_unixtime": "1706342405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008664 BTC for 82.71 CZK @ 954,635 CZK\nFees are 0.29049671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (76.370799993190959987228449272 CZK)\nThe limits being 0.10 % (56.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47979778 BTC (269,108.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 954,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.20 % (188,923.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,824.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05933348 BTC (56,641.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.41 CZK over 2707 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008664 BTC for 82.71 CZK @ 954,635 CZK\nFees are 0.29049671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (76.370799993190959987228449272 CZK)\nThe limits being 0.10 % (56.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47979778 BTC (269,108.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 954,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.20 % (188,923.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,824.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05933348 BTC (56,641.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.41 CZK over 2707 transactions" + } + ] + }, + { + "id": 4389, + "type": "message", + "date": "2024-01-27T13:00:04", + "date_unixtime": "1706356804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008655 BTC for 82.70 CZK @ 955,570 CZK\nFees are 0.29047917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (76.445599997927530938077215024 CZK)\nThe limits being 0.10 % (56.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47988433 BTC (269,191.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 560,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 955,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.35 % (189,371.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,741.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05942003 BTC (56,780.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.41 CZK over 2708 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008655 BTC for 82.70 CZK @ 955,570 CZK\nFees are 0.29047917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (76.445599997927530938077215024 CZK)\nThe limits being 0.10 % (56.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47988433 BTC (269,191.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 560,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 955,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.35 % (189,371.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,741.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05942003 BTC (56,780.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.41 CZK over 2708 transactions" + } + ] + }, + { + "id": 4390, + "type": "message", + "date": "2024-01-27T17:00:04", + "date_unixtime": "1706371204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008636 BTC for 82.70 CZK @ 957,666 CZK\nFees are 0.29047725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (114.91991999285502132069946019 CZK)\nThe limits being 0.10 % (56.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.47997069 BTC (269,274.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 957,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.70 % (190,377.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,658.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05950639 BTC (56,987.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.40 CZK over 2709 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008636 BTC for 82.70 CZK @ 957,666 CZK\nFees are 0.29047725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (114.91991999285502132069946019 CZK)\nThe limits being 0.10 % (56.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.47997069 BTC (269,274.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 957,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.70 % (190,377.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,658.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05950639 BTC (56,987.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.40 CZK over 2709 transactions" + } + ] + }, + { + "id": 4391, + "type": "message", + "date": "2024-01-27T21:00:05", + "date_unixtime": "1706385605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008619 BTC for 82.70 CZK @ 959,528 CZK\nFees are 0.29046911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (86.35751999571288169790696016 CZK)\nThe limits being 0.10 % (57.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48005688 BTC (269,357.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 959,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.01 % (191,270.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,575.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05959258 BTC (57,180.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.39 CZK over 2710 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008619 BTC for 82.70 CZK @ 959,528 CZK\nFees are 0.29046911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (86.35751999571288169790696016 CZK)\nThe limits being 0.10 % (57.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48005688 BTC (269,357.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 959,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.01 % (191,270.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,575.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05959258 BTC (57,180.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.39 CZK over 2710 transactions" + } + ] + }, + { + "id": 4392, + "type": "message", + "date": "2024-01-28T01:00:06", + "date_unixtime": "1706400006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008575 BTC for 82.71 CZK @ 964,542 CZK\nFees are 0.29049636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.163359992794897160230737608 CZK)\nThe limits being 0.10 % (57.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48014263 BTC (269,440.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 964,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.88 % (193,677.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,492.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05967833 BTC (57,562.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.39 CZK over 2711 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008575 BTC for 82.71 CZK @ 964,542 CZK\nFees are 0.29049636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.163359992794897160230737608 CZK)\nThe limits being 0.10 % (57.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48014263 BTC (269,440.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 964,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.88 % (193,677.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,492.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05967833 BTC (57,562.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.39 CZK over 2711 transactions" + } + ] + }, + { + "id": 4393, + "type": "message", + "date": "2024-01-28T05:00:05", + "date_unixtime": "1706414405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008570 BTC for 82.70 CZK @ 965,008 CZK\nFees are 0.29046724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.200639991069762249861773168 CZK)\nThe limits being 0.10 % (57.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48022833 BTC (269,523.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 965,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.94 % (193,900.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,409.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05976403 BTC (57,672.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.38 CZK over 2712 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008570 BTC for 82.70 CZK @ 965,008 CZK\nFees are 0.29046724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.200639991069762249861773168 CZK)\nThe limits being 0.10 % (57.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48022833 BTC (269,523.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 965,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.94 % (193,900.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,409.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05976403 BTC (57,672.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.38 CZK over 2712 transactions" + } + ] + }, + { + "id": 4394, + "type": "message", + "date": "2024-01-28T09:00:05", + "date_unixtime": "1706428805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008503 BTC for 82.71 CZK @ 972,678 CZK\nFees are 0.29048699 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (106.99457999202016744756869714 CZK)\nThe limits being 0.10 % (58.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48031336 BTC (269,606.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.29 % (197,584.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,326.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05984906 BTC (58,213.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.38 CZK over 2713 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008503 BTC for 82.71 CZK @ 972,678 CZK\nFees are 0.29048699 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (106.99457999202016744756869714 CZK)\nThe limits being 0.10 % (58.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48031336 BTC (269,606.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.29 % (197,584.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,326.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05984906 BTC (58,213.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.38 CZK over 2713 transactions" + } + ] + }, + { + "id": 4395, + "type": "message", + "date": "2024-01-28T13:00:05", + "date_unixtime": "1706443205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008483 BTC for 82.71 CZK @ 974,967 CZK\nFees are 0.29048573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (107.24636999078023569634065752 CZK)\nThe limits being 0.10 % (58.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48039819 BTC (269,689.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 974,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.67 % (198,683.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,243.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.05993389 BTC (58,433.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.37 CZK over 2714 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008483 BTC for 82.71 CZK @ 974,967 CZK\nFees are 0.29048573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (107.24636999078023569634065752 CZK)\nThe limits being 0.10 % (58.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48039819 BTC (269,689.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 974,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.67 % (198,683.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,243.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.05993389 BTC (58,433.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.37 CZK over 2714 transactions" + } + ] + }, + { + "id": 4396, + "type": "message", + "date": "2024-01-28T17:00:04", + "date_unixtime": "1706457604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008532 BTC for 82.71 CZK @ 969,393 CZK\nFees are 0.29049332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.24536999194801317750741603 CZK)\nThe limits being 0.10 % (58.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48048351 BTC (269,772.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 969,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.66 % (196,005.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,160.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06001921 BTC (58,182.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.36 CZK over 2715 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008532 BTC for 82.71 CZK @ 969,393 CZK\nFees are 0.29049332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.24536999194801317750741603 CZK)\nThe limits being 0.10 % (58.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48048351 BTC (269,772.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 969,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.66 % (196,005.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,160.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06001921 BTC (58,182.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.36 CZK over 2715 transactions" + } + ] + }, + { + "id": 4397, + "type": "message", + "date": "2024-01-28T21:00:05", + "date_unixtime": "1706472005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008632 BTC for 82.71 CZK @ 958,169 CZK\nFees are 0.29049521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (86.23520999139711657946030413 CZK)\nThe limits being 0.10 % (57.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48056983 BTC (269,855.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 958,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 70.63 % (190,611.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,077.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06010553 BTC (57,591.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.36 CZK over 2716 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008632 BTC for 82.71 CZK @ 958,169 CZK\nFees are 0.29049521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (86.23520999139711657946030413 CZK)\nThe limits being 0.10 % (57.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48056983 BTC (269,855.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 958,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 70.63 % (190,611.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,077.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06010553 BTC (57,591.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.36 CZK over 2716 transactions" + } + ] + }, + { + "id": 4398, + "type": "message", + "date": "2024-01-29T01:00:05", + "date_unixtime": "1706486405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008606 BTC for 82.70 CZK @ 961,006 CZK\nFees are 0.29047774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (86.49053999243410322759488896 CZK)\nThe limits being 0.10 % (57.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48065589 BTC (269,938.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 961,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.12 % (191,974.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,994.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06019159 BTC (57,844.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.35 CZK over 2717 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008606 BTC for 82.70 CZK @ 961,006 CZK\nFees are 0.29047774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (86.49053999243410322759488896 CZK)\nThe limits being 0.10 % (57.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48065589 BTC (269,938.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 961,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.12 % (191,974.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,994.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06019159 BTC (57,844.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.35 CZK over 2717 transactions" + } + ] + }, + { + "id": 4399, + "type": "message", + "date": "2024-01-29T05:00:05", + "date_unixtime": "1706500805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008525 BTC for 82.71 CZK @ 970,154 CZK\nFees are 0.29048284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.31385998974264560840577042 CZK)\nThe limits being 0.10 % (58.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48074114 BTC (270,021.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.72 % (196,371.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,911.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06027684 BTC (58,477.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.35 CZK over 2718 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008525 BTC for 82.71 CZK @ 970,154 CZK\nFees are 0.29048284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.31385998974264560840577042 CZK)\nThe limits being 0.10 % (58.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48074114 BTC (270,021.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.72 % (196,371.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,911.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06027684 BTC (58,477.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.35 CZK over 2718 transactions" + } + ] + }, + { + "id": 4400, + "type": "message", + "date": "2024-01-29T09:00:06", + "date_unixtime": "1706515206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008556 BTC for 82.71 CZK @ 966,687 CZK\nFees are 0.29049728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.00182999054501390994073338 CZK)\nThe limits being 0.10 % (58.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48082670 BTC (270,104.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 966,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.09 % (194,704.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,828.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06036240 BTC (58,351.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.34 CZK over 2719 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008556 BTC for 82.71 CZK @ 966,687 CZK\nFees are 0.29049728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.00182999054501390994073338 CZK)\nThe limits being 0.10 % (58.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48082670 BTC (270,104.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 966,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.09 % (194,704.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,828.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06036240 BTC (58,351.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.34 CZK over 2719 transactions" + } + ] + }, + { + "id": 4401, + "type": "message", + "date": "2024-01-29T13:00:08", + "date_unixtime": "1706529608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008551 BTC for 82.71 CZK @ 967,206 CZK\nFees are 0.29048339 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.04853999191346251166176248 CZK)\nThe limits being 0.10 % (58.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48091221 BTC (270,187.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 967,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.16 % (194,953.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,745.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06044791 BTC (58,465.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.33 CZK over 2720 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008551 BTC for 82.71 CZK @ 967,206 CZK\nFees are 0.29048339 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (87.04853999191346251166176248 CZK)\nThe limits being 0.10 % (58.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48091221 BTC (270,187.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 967,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.16 % (194,953.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,745.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06044791 BTC (58,465.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.33 CZK over 2720 transactions" + } + ] + }, + { + "id": 4402, + "type": "message", + "date": "2024-01-29T17:00:10", + "date_unixtime": "1706544010", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008417 BTC for 82.71 CZK @ 982,597 CZK\nFees are 0.29048130 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (88.43372999657430429874197586 CZK)\nThe limits being 0.10 % (59.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48099638 BTC (270,270.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 982,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.87 % (202,355.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,662.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06053208 BTC (59,478.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.33 CZK over 2721 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008417 BTC for 82.71 CZK @ 982,597 CZK\nFees are 0.29048130 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (88.43372999657430429874197586 CZK)\nThe limits being 0.10 % (59.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48099638 BTC (270,270.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 982,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.87 % (202,355.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,662.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06053208 BTC (59,478.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.33 CZK over 2721 transactions" + } + ] + }, + { + "id": 4403, + "type": "message", + "date": "2024-01-29T21:00:05", + "date_unixtime": "1706558405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008358 BTC for 82.71 CZK @ 989,554 CZK\nFees are 0.29048739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (118.74647999768219701969166783 CZK)\nThe limits being 0.10 % (59.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48107996 BTC (270,353.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 561,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 989,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.09 % (205,701.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,579.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06061566 BTC (59,982.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.32 CZK over 2722 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008358 BTC for 82.71 CZK @ 989,554 CZK\nFees are 0.29048739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (118.74647999768219701969166783 CZK)\nThe limits being 0.10 % (59.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48107996 BTC (270,353.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 561,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 989,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.09 % (205,701.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,579.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06061566 BTC (59,982.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.32 CZK over 2722 transactions" + } + ] + }, + { + "id": 4404, + "type": "message", + "date": "2024-01-30T01:00:05", + "date_unixtime": "1706572805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008329 BTC for 82.71 CZK @ 993,000 CZK\nFees are 0.29048756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (109.22999999341959762275187282 CZK)\nThe limits being 0.10 % (60.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48116325 BTC (270,436.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.68 % (207,358.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,496.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06069895 BTC (60,274.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.32 CZK over 2723 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008329 BTC for 82.71 CZK @ 993,000 CZK\nFees are 0.29048756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (109.22999999341959762275187282 CZK)\nThe limits being 0.10 % (60.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48116325 BTC (270,436.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.68 % (207,358.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,496.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06069895 BTC (60,274.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.32 CZK over 2723 transactions" + } + ] + }, + { + "id": 4405, + "type": "message", + "date": "2024-01-30T05:00:06", + "date_unixtime": "1706587206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008271 BTC for 82.71 CZK @ 999,995 CZK\nFees are 0.29049675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (89.99954999720781400029168855 CZK)\nThe limits being 0.10 % (60.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48124596 BTC (270,519.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 999,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.90 % (210,724.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,413.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06078166 BTC (60,781.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.31 CZK over 2724 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008271 BTC for 82.71 CZK @ 999,995 CZK\nFees are 0.29049675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (89.99954999720781400029168855 CZK)\nThe limits being 0.10 % (60.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48124596 BTC (270,519.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 999,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.90 % (210,724.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,413.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06078166 BTC (60,781.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.31 CZK over 2724 transactions" + } + ] + }, + { + "id": 4406, + "type": "message", + "date": "2024-01-30T09:00:06", + "date_unixtime": "1706601606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008297 BTC for 82.71 CZK @ 996,807 CZK\nFees are 0.29048091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (89.71262999052550735556803448 CZK)\nThe limits being 0.10 % (60.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48132893 BTC (270,602.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.31 % (209,189.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,330.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06086463 BTC (60,670.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.30 CZK over 2725 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008297 BTC for 82.71 CZK @ 996,807 CZK\nFees are 0.29048091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (89.71262999052550735556803448 CZK)\nThe limits being 0.10 % (60.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48132893 BTC (270,602.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.31 % (209,189.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,330.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06086463 BTC (60,670.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.30 CZK over 2725 transactions" + } + ] + }, + { + "id": 4407, + "type": "message", + "date": "2024-01-30T13:00:05", + "date_unixtime": "1706616005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008288 BTC for 82.70 CZK @ 997,887 CZK\nFees are 0.29048020 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (89.80982999896116488044739166 CZK)\nThe limits being 0.10 % (60.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48141181 BTC (270,685.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.47 % (209,709.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,247.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06094751 BTC (60,818.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.30 CZK over 2726 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008288 BTC for 82.70 CZK @ 997,887 CZK\nFees are 0.29048020 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (89.80982999896116488044739166 CZK)\nThe limits being 0.10 % (60.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48141181 BTC (270,685.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.47 % (209,709.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,247.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06094751 BTC (60,818.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.30 CZK over 2726 transactions" + } + ] + }, + { + "id": 4408, + "type": "message", + "date": "2024-01-30T17:00:06", + "date_unixtime": "1706630406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008325 BTC for 82.70 CZK @ 993,426 CZK\nFees are 0.29047261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.34259999910224125470762243 CZK)\nThe limits being 0.10 % (60.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48149506 BTC (270,768.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.66 % (207,561.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,164.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06103076 BTC (60,629.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.29 CZK over 2727 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008325 BTC for 82.70 CZK @ 993,426 CZK\nFees are 0.29047261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.34259999910224125470762243 CZK)\nThe limits being 0.10 % (60.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48149506 BTC (270,768.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.66 % (207,561.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,164.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06103076 BTC (60,629.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.29 CZK over 2727 transactions" + } + ] + }, + { + "id": 4409, + "type": "message", + "date": "2024-01-30T21:00:05", + "date_unixtime": "1706644805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008311 BTC for 82.70 CZK @ 995,099 CZK\nFees are 0.29047248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.50989999686454166523532694 CZK)\nThe limits being 0.10 % (60.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48157817 BTC (270,851.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.93 % (208,366.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,081.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06111387 BTC (60,814.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.29 CZK over 2728 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008311 BTC for 82.70 CZK @ 995,099 CZK\nFees are 0.29047248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.50989999686454166523532694 CZK)\nThe limits being 0.10 % (60.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48157817 BTC (270,851.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.93 % (208,366.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,081.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06111387 BTC (60,814.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.29 CZK over 2728 transactions" + } + ] + }, + { + "id": 4410, + "type": "message", + "date": "2024-01-31T01:00:05", + "date_unixtime": "1706659205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008420 BTC for 82.70 CZK @ 982,198 CZK\nFees are 0.29046684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.21979999928989628935306001 CZK)\nThe limits being 0.10 % (60.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48166237 BTC (270,934.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 982,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.61 % (202,153.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,998.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06119807 BTC (60,108.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.28 CZK over 2729 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008420 BTC for 82.70 CZK @ 982,198 CZK\nFees are 0.29046684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.21979999928989628935306001 CZK)\nThe limits being 0.10 % (60.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48166237 BTC (270,934.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 982,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.61 % (202,153.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,998.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06119807 BTC (60,108.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.28 CZK over 2729 transactions" + } + ] + }, + { + "id": 4411, + "type": "message", + "date": "2024-01-31T05:00:05", + "date_unixtime": "1706673605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008409 BTC for 82.71 CZK @ 983,576 CZK\nFees are 0.29049435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (88.52183999953071847534698836 CZK)\nThe limits being 0.10 % (60.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48174646 BTC (271,017.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 983,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.84 % (202,817.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,915.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06128216 BTC (60,275.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.27 CZK over 2730 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008409 BTC for 82.71 CZK @ 983,576 CZK\nFees are 0.29049435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (88.52183999953071847534698836 CZK)\nThe limits being 0.10 % (60.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48174646 BTC (271,017.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 983,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.84 % (202,817.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,915.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06128216 BTC (60,275.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.27 CZK over 2730 transactions" + } + ] + }, + { + "id": 4412, + "type": "message", + "date": "2024-01-31T09:00:09", + "date_unixtime": "1706688009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008373 BTC for 82.71 CZK @ 987,774 CZK\nFees are 0.29048526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (88.89965998974924203839053460 CZK)\nThe limits being 0.10 % (60.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48183019 BTC (271,100.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.56 % (204,839.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,832.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06136589 BTC (60,615.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.27 CZK over 2731 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008373 BTC for 82.71 CZK @ 987,774 CZK\nFees are 0.29048526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (88.89965998974924203839053460 CZK)\nThe limits being 0.10 % (60.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48183019 BTC (271,100.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.56 % (204,839.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,832.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06136589 BTC (60,615.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.27 CZK over 2731 transactions" + } + ] + }, + { + "id": 4413, + "type": "message", + "date": "2024-01-31T13:00:07", + "date_unixtime": "1706702407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008439 BTC for 82.70 CZK @ 980,019 CZK\nFees are 0.29047643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.00189999771507154748639272 CZK)\nThe limits being 0.10 % (60.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48191458 BTC (271,183.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 980,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.16 % (201,102.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,749.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06145028 BTC (60,222.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.26 CZK over 2732 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008439 BTC for 82.70 CZK @ 980,019 CZK\nFees are 0.29047643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.00189999771507154748639272 CZK)\nThe limits being 0.10 % (60.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48191458 BTC (271,183.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 980,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.16 % (201,102.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,749.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06145028 BTC (60,222.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.26 CZK over 2732 transactions" + } + ] + }, + { + "id": 4414, + "type": "message", + "date": "2024-01-31T17:00:06", + "date_unixtime": "1706716806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008307 BTC for 82.70 CZK @ 995,574 CZK\nFees are 0.29047127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (109.51313999652954157259511056 CZK)\nThe limits being 0.10 % (61.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48199765 BTC (271,266.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.90 % (208,598.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,666.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06153335 BTC (61,261.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.26 CZK over 2733 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008307 BTC for 82.70 CZK @ 995,574 CZK\nFees are 0.29047127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (109.51313999652954157259511056 CZK)\nThe limits being 0.10 % (61.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48199765 BTC (271,266.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.90 % (208,598.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,666.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06153335 BTC (61,261.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.26 CZK over 2733 transactions" + } + ] + }, + { + "id": 4415, + "type": "message", + "date": "2024-01-31T21:00:05", + "date_unixtime": "1706731205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008326 BTC for 82.71 CZK @ 993,365 CZK\nFees are 0.29048966 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.33649999443456429999206476 CZK)\nThe limits being 0.10 % (61.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48208091 BTC (271,349.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.48 % (207,533.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,583.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06161661 BTC (61,207.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.25 CZK over 2734 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008326 BTC for 82.71 CZK @ 993,365 CZK\nFees are 0.29048966 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.33649999443456429999206476 CZK)\nThe limits being 0.10 % (61.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48208091 BTC (271,349.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.48 % (207,533.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,583.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06161661 BTC (61,207.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.25 CZK over 2734 transactions" + } + ] + }, + { + "id": 4416, + "type": "message", + "date": "2024-02-01T01:00:06", + "date_unixtime": "1706745606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008443 BTC for 82.71 CZK @ 979,614 CZK\nFees are 0.29049402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (97.9613999940159695713823128 CZK)\nThe limits being 0.10 % (60.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48216534 BTC (271,432.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 562,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 979,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.02 % (200,903.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,500.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06170104 BTC (60,443.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.24 CZK over 2735 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008443 BTC for 82.71 CZK @ 979,614 CZK\nFees are 0.29049402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (97.9613999940159695713823128 CZK)\nThe limits being 0.10 % (60.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48216534 BTC (271,432.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 562,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 979,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.02 % (200,903.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,500.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06170104 BTC (60,443.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.24 CZK over 2735 transactions" + } + ] + }, + { + "id": 4417, + "type": "message", + "date": "2024-02-01T05:00:05", + "date_unixtime": "1706760005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008571 BTC for 82.71 CZK @ 964,979 CZK\nFees are 0.29049240 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (96.49789999382048491230407725 CZK)\nThe limits being 0.10 % (59.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48225105 BTC (271,515.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 964,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 71.39 % (193,847.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,417.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06178675 BTC (59,622.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.24 CZK over 2736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008571 BTC for 82.71 CZK @ 964,979 CZK\nFees are 0.29049240 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (96.49789999382048491230407725 CZK)\nThe limits being 0.10 % (59.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48225105 BTC (271,515.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 964,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 71.39 % (193,847.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,417.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06178675 BTC (59,622.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.24 CZK over 2736 transactions" + } + ] + }, + { + "id": 4418, + "type": "message", + "date": "2024-02-01T09:00:06", + "date_unixtime": "1706774406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008501 BTC for 82.71 CZK @ 972,890 CZK\nFees are 0.29048197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.831199994232631384789163112 CZK)\nThe limits being 0.10 % (60.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48233606 BTC (271,598.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 972,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.78 % (197,661.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,334.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06187176 BTC (60,194.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.23 CZK over 2737 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008501 BTC for 82.71 CZK @ 972,890 CZK\nFees are 0.29048197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.831199994232631384789163112 CZK)\nThe limits being 0.10 % (60.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48233606 BTC (271,598.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 972,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.78 % (197,661.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,334.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06187176 BTC (60,194.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.23 CZK over 2737 transactions" + } + ] + }, + { + "id": 4419, + "type": "message", + "date": "2024-02-01T13:00:06", + "date_unixtime": "1706788806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008526 BTC for 82.71 CZK @ 970,096 CZK\nFees are 0.29049955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.607679993118151681406889168 CZK)\nThe limits being 0.10 % (60.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48242132 BTC (271,681.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 970,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 72.26 % (196,313.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,251.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06195702 BTC (60,104.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.23 CZK over 2738 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008526 BTC for 82.71 CZK @ 970,096 CZK\nFees are 0.29049955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (77.607679993118151681406889168 CZK)\nThe limits being 0.10 % (60.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48242132 BTC (271,681.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 970,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 72.26 % (196,313.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,251.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06195702 BTC (60,104.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.23 CZK over 2738 transactions" + } + ] + }, + { + "id": 4420, + "type": "message", + "date": "2024-02-01T17:00:05", + "date_unixtime": "1706803205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008467 BTC for 82.70 CZK @ 976,782 CZK\nFees are 0.29047759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (117.21383999747194021350453524 CZK)\nThe limits being 0.10 % (60.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48250599 BTC (271,764.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 976,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 73.42 % (199,539.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,168.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06204169 BTC (60,601.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.22 CZK over 2739 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008467 BTC for 82.70 CZK @ 976,782 CZK\nFees are 0.29047759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (117.21383999747194021350453524 CZK)\nThe limits being 0.10 % (60.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48250599 BTC (271,764.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 976,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 73.42 % (199,539.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,168.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06204169 BTC (60,601.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.22 CZK over 2739 transactions" + } + ] + }, + { + "id": 4421, + "type": "message", + "date": "2024-02-01T21:00:05", + "date_unixtime": "1706817605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008366 BTC for 82.70 CZK @ 988,575 CZK\nFees are 0.29047777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (138.40049999041127986067410965 CZK)\nThe limits being 0.10 % (61.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48258965 BTC (271,847.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.49 % (205,228.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,085.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06212535 BTC (61,415.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.21 CZK over 2740 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008366 BTC for 82.70 CZK @ 988,575 CZK\nFees are 0.29047777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (138.40049999041127986067410965 CZK)\nThe limits being 0.10 % (61.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48258965 BTC (271,847.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.49 % (205,228.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,085.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06212535 BTC (61,415.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.21 CZK over 2740 transactions" + } + ] + }, + { + "id": 4422, + "type": "message", + "date": "2024-02-02T01:00:05", + "date_unixtime": "1706832005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008373 BTC for 82.70 CZK @ 987,711 CZK\nFees are 0.29046673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (138.27953998816158255612105510 CZK)\nThe limits being 0.10 % (61.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48267338 BTC (271,930.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.32 % (204,811.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,002.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06220908 BTC (61,444.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.21 CZK over 2741 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008373 BTC for 82.70 CZK @ 987,711 CZK\nFees are 0.29046673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (138.27953998816158255612105510 CZK)\nThe limits being 0.10 % (61.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48267338 BTC (271,930.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.32 % (204,811.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,002.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06220908 BTC (61,444.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.21 CZK over 2741 transactions" + } + ] + }, + { + "id": 4423, + "type": "message", + "date": "2024-02-02T05:00:06", + "date_unixtime": "1706846406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008385 BTC for 82.71 CZK @ 986,366 CZK\nFees are 0.29048692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.63659999780137437870256725 CZK)\nThe limits being 0.10 % (61.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48275723 BTC (272,013.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 986,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.06 % (204,162.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,919.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06229293 BTC (61,443.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.20 CZK over 2742 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008385 BTC for 82.71 CZK @ 986,366 CZK\nFees are 0.29048692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.63659999780137437870256725 CZK)\nThe limits being 0.10 % (61.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48275723 BTC (272,013.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 986,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.06 % (204,162.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,919.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06229293 BTC (61,443.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.20 CZK over 2742 transactions" + } + ] + }, + { + "id": 4424, + "type": "message", + "date": "2024-02-02T09:00:06", + "date_unixtime": "1706860806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008374 BTC for 82.71 CZK @ 987,691 CZK\nFees are 0.29049554 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (108.64600999320624768171680941 CZK)\nThe limits being 0.10 % (61.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48284097 BTC (272,096.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.27 % (204,801.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,836.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06237667 BTC (61,608.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.20 CZK over 2743 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008374 BTC for 82.71 CZK @ 987,691 CZK\nFees are 0.29049554 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (108.64600999320624768171680941 CZK)\nThe limits being 0.10 % (61.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48284097 BTC (272,096.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.27 % (204,801.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,836.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06237667 BTC (61,608.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.20 CZK over 2743 transactions" + } + ] + }, + { + "id": 4425, + "type": "message", + "date": "2024-02-02T13:00:06", + "date_unixtime": "1706875206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008358 BTC for 82.70 CZK @ 989,505 CZK\nFees are 0.29047301 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (108.84554998996691765468383986 CZK)\nThe limits being 0.10 % (61.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48292455 BTC (272,179.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 989,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.57 % (205,677.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,753.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06246025 BTC (61,804.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.19 CZK over 2744 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008358 BTC for 82.70 CZK @ 989,505 CZK\nFees are 0.29047301 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (108.84554998996691765468383986 CZK)\nThe limits being 0.10 % (61.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48292455 BTC (272,179.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 989,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.57 % (205,677.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,753.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06246025 BTC (61,804.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.19 CZK over 2744 transactions" + } + ] + }, + { + "id": 4426, + "type": "message", + "date": "2024-02-02T17:00:05", + "date_unixtime": "1706889605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008280 BTC for 82.70 CZK @ 998,834 CZK\nFees are 0.29047521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.88339999614874509265878604 CZK)\nThe limits being 0.10 % (62.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48300735 BTC (272,262.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 998,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.20 % (210,182.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,670.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06254305 BTC (62,470.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.18 CZK over 2745 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008280 BTC for 82.70 CZK @ 998,834 CZK\nFees are 0.29047521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.88339999614874509265878604 CZK)\nThe limits being 0.10 % (62.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48300735 BTC (272,262.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 998,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.20 % (210,182.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,670.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06254305 BTC (62,470.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.18 CZK over 2745 transactions" + } + ] + }, + { + "id": 4427, + "type": "message", + "date": "2024-02-02T21:00:05", + "date_unixtime": "1706904005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008308 BTC for 82.71 CZK @ 995,527 CZK\nFees are 0.29049252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.59742999885571419626876467 CZK)\nThe limits being 0.10 % (62.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48309043 BTC (272,345.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.59 % (208,584.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,587.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06262613 BTC (62,346.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.18 CZK over 2746 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008308 BTC for 82.71 CZK @ 995,527 CZK\nFees are 0.29049252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.59742999885571419626876467 CZK)\nThe limits being 0.10 % (62.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48309043 BTC (272,345.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.59 % (208,584.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,587.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06262613 BTC (62,346.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.18 CZK over 2746 transactions" + } + ] + }, + { + "id": 4428, + "type": "message", + "date": "2024-02-03T01:00:04", + "date_unixtime": "1706918404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008277 BTC for 82.70 CZK @ 999,172 CZK\nFees are 0.29046823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.92547999724776258810004058 CZK)\nThe limits being 0.10 % (62.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48317320 BTC (272,428.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 999,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.21 % (210,345.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,504.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06270890 BTC (62,656.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.17 CZK over 2747 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008277 BTC for 82.70 CZK @ 999,172 CZK\nFees are 0.29046823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.92547999724776258810004058 CZK)\nThe limits being 0.10 % (62.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48317320 BTC (272,428.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 999,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.21 % (210,345.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,504.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06270890 BTC (62,656.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.17 CZK over 2747 transactions" + } + ] + }, + { + "id": 4429, + "type": "message", + "date": "2024-02-03T05:00:05", + "date_unixtime": "1706932805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008282 BTC for 82.70 CZK @ 998,586 CZK\nFees are 0.29047323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.87273999586330721008226821 CZK)\nThe limits being 0.10 % (62.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48325602 BTC (272,511.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 998,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.08 % (210,061.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,421.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06279172 BTC (62,702.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.17 CZK over 2748 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008282 BTC for 82.70 CZK @ 998,586 CZK\nFees are 0.29047323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.87273999586330721008226821 CZK)\nThe limits being 0.10 % (62.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48325602 BTC (272,511.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 998,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.08 % (210,061.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,421.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06279172 BTC (62,702.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.17 CZK over 2748 transactions" + } + ] + }, + { + "id": 4430, + "type": "message", + "date": "2024-02-03T09:00:05", + "date_unixtime": "1706947205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008322 BTC for 82.71 CZK @ 993,857 CZK\nFees are 0.29049391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (278.27995997186966501647023209 CZK)\nThe limits being 0.10 % (62.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48333924 BTC (272,594.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 563,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.22 % (207,776.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,338.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06287494 BTC (62,488.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.16 CZK over 2749 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008322 BTC for 82.71 CZK @ 993,857 CZK\nFees are 0.29049391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (278.27995997186966501647023209 CZK)\nThe limits being 0.10 % (62.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48333924 BTC (272,594.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 563,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.22 % (207,776.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,338.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06287494 BTC (62,488.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.16 CZK over 2749 transactions" + } + ] + }, + { + "id": 4431, + "type": "message", + "date": "2024-02-03T13:00:04", + "date_unixtime": "1706961604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008334 BTC for 82.71 CZK @ 992,396 CZK\nFees are 0.29048514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (208.40315997679826869455824698 CZK)\nThe limits being 0.10 % (62.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48342258 BTC (272,677.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.94 % (207,069.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,255.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06295828 BTC (62,479.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.16 CZK over 2750 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008334 BTC for 82.71 CZK @ 992,396 CZK\nFees are 0.29048514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (208.40315997679826869455824698 CZK)\nThe limits being 0.10 % (62.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48342258 BTC (272,677.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.94 % (207,069.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,255.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06295828 BTC (62,479.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.16 CZK over 2750 transactions" + } + ] + }, + { + "id": 4432, + "type": "message", + "date": "2024-02-03T17:00:05", + "date_unixtime": "1706976005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008309 BTC for 82.71 CZK @ 995,424 CZK\nFees are 0.29049743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (179.17631999879108881341589189 CZK)\nThe limits being 0.10 % (62.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48350567 BTC (272,760.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.45 % (208,533.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,172.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06304137 BTC (62,752.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.15 CZK over 2751 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008309 BTC for 82.71 CZK @ 995,424 CZK\nFees are 0.29049743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (179.17631999879108881341589189 CZK)\nThe limits being 0.10 % (62.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48350567 BTC (272,760.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.45 % (208,533.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,172.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06304137 BTC (62,752.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.15 CZK over 2751 transactions" + } + ] + }, + { + "id": 4433, + "type": "message", + "date": "2024-02-03T21:00:04", + "date_unixtime": "1706990404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008314 BTC for 82.71 CZK @ 994,768 CZK\nFees are 0.29048068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (567.01775999781376200857738829 CZK)\nThe limits being 0.10 % (62.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48358881 BTC (272,843.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.31 % (208,215.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,089.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06312451 BTC (62,794.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.14 CZK over 2752 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008314 BTC for 82.71 CZK @ 994,768 CZK\nFees are 0.29048068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (567.01775999781376200857738829 CZK)\nThe limits being 0.10 % (62.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48358881 BTC (272,843.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.31 % (208,215.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,089.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06312451 BTC (62,794.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.14 CZK over 2752 transactions" + } + ] + }, + { + "id": 4434, + "type": "message", + "date": "2024-02-04T01:00:05", + "date_unixtime": "1707004805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008330 BTC for 82.71 CZK @ 992,920 CZK\nFees are 0.29049903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (565.96439995908677372294209165 CZK)\nThe limits being 0.10 % (62.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48367211 BTC (272,926.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 992,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.96 % (207,321.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,006.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06320781 BTC (62,760.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.14 CZK over 2753 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008330 BTC for 82.71 CZK @ 992,920 CZK\nFees are 0.29049903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (565.96439995908677372294209165 CZK)\nThe limits being 0.10 % (62.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48367211 BTC (272,926.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 992,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.96 % (207,321.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,006.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06320781 BTC (62,760.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.14 CZK over 2753 transactions" + } + ] + }, + { + "id": 4435, + "type": "message", + "date": "2024-02-04T05:00:06", + "date_unixtime": "1707019206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008323 BTC for 82.71 CZK @ 993,731 CZK\nFees are 0.29049198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (536.61473994210219775660832885 CZK)\nThe limits being 0.10 % (62.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48375534 BTC (273,009.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.08 % (207,713.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,923.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06329104 BTC (62,894.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.13 CZK over 2754 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008323 BTC for 82.71 CZK @ 993,731 CZK\nFees are 0.29049198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (536.61473994210219775660832885 CZK)\nThe limits being 0.10 % (62.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48375534 BTC (273,009.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.08 % (207,713.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,923.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06329104 BTC (62,894.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.13 CZK over 2754 transactions" + } + ] + }, + { + "id": 4436, + "type": "message", + "date": "2024-02-04T09:00:05", + "date_unixtime": "1707033605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008369 BTC for 82.70 CZK @ 988,209 CZK\nFees are 0.29047435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.82089998900371581529409881 CZK)\nThe limits being 0.10 % (62.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48383903 BTC (273,092.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 988,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.08 % (205,042.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,840.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06337473 BTC (62,627.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.13 CZK over 2755 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008369 BTC for 82.70 CZK @ 988,209 CZK\nFees are 0.29047435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.82089998900371581529409881 CZK)\nThe limits being 0.10 % (62.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48383903 BTC (273,092.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 988,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.08 % (205,042.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,840.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06337473 BTC (62,627.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.13 CZK over 2755 transactions" + } + ] + }, + { + "id": 4437, + "type": "message", + "date": "2024-02-04T13:00:05", + "date_unixtime": "1707048005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008325 BTC for 82.71 CZK @ 993,477 CZK\nFees are 0.29048752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.41292999905735331744300355 CZK)\nThe limits being 0.10 % (63.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48392228 BTC (273,175.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.99 % (207,590.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,757.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06345798 BTC (63,044.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.12 CZK over 2756 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008325 BTC for 82.71 CZK @ 993,477 CZK\nFees are 0.29048752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.41292999905735331744300355 CZK)\nThe limits being 0.10 % (63.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48392228 BTC (273,175.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.99 % (207,590.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,757.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06345798 BTC (63,044.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.12 CZK over 2756 transactions" + } + ] + }, + { + "id": 4438, + "type": "message", + "date": "2024-02-04T17:00:05", + "date_unixtime": "1707062405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008338 BTC for 82.71 CZK @ 991,947 CZK\nFees are 0.29049307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.19469999640261244435552563 CZK)\nThe limits being 0.10 % (63.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48400566 BTC (273,258.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.70 % (206,849.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,674.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06354136 BTC (63,029.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.11 CZK over 2757 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008338 BTC for 82.71 CZK @ 991,947 CZK\nFees are 0.29049307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (99.19469999640261244435552563 CZK)\nThe limits being 0.10 % (63.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48400566 BTC (273,258.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.70 % (206,849.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,674.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06354136 BTC (63,029.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.11 CZK over 2757 transactions" + } + ] + }, + { + "id": 4439, + "type": "message", + "date": "2024-02-04T21:00:04", + "date_unixtime": "1707076804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008395 BTC for 82.70 CZK @ 985,122 CZK\nFees are 0.29046656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (315.23903999373247831517621616 CZK)\nThe limits being 0.10 % (62.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48408961 BTC (273,341.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 985,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.47 % (203,546.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,591.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06362531 BTC (62,678.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.11 CZK over 2758 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008395 BTC for 82.70 CZK @ 985,122 CZK\nFees are 0.29046656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (315.23903999373247831517621616 CZK)\nThe limits being 0.10 % (62.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48408961 BTC (273,341.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 985,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.47 % (203,546.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,591.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06362531 BTC (62,678.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.11 CZK over 2758 transactions" + } + ] + }, + { + "id": 4440, + "type": "message", + "date": "2024-02-05T01:00:05", + "date_unixtime": "1707091205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008399 BTC for 82.71 CZK @ 984,744 CZK\nFees are 0.29049345 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.47440000004745861208594066 CZK)\nThe limits being 0.10 % (62.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48417360 BTC (273,424.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 984,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.38 % (203,363.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,508.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06370930 BTC (62,737.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.10 CZK over 2759 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008399 BTC for 82.71 CZK @ 984,744 CZK\nFees are 0.29049345 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (98.47440000004745861208594066 CZK)\nThe limits being 0.10 % (62.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48417360 BTC (273,424.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 984,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.38 % (203,363.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,508.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06370930 BTC (62,737.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.10 CZK over 2759 transactions" + } + ] + }, + { + "id": 4441, + "type": "message", + "date": "2024-02-05T05:00:05", + "date_unixtime": "1707105605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008378 BTC for 82.70 CZK @ 987,120 CZK\nFees are 0.29046628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (88.84079999186423550040839397 CZK)\nThe limits being 0.10 % (62.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48425738 BTC (273,507.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 987,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 74.77 % (204,513.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,425.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06379308 BTC (62,971.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.10 CZK over 2760 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008378 BTC for 82.70 CZK @ 987,120 CZK\nFees are 0.29046628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (88.84079999186423550040839397 CZK)\nThe limits being 0.10 % (62.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48425738 BTC (273,507.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 987,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 74.77 % (204,513.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,425.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06379308 BTC (62,971.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.10 CZK over 2760 transactions" + } + ] + }, + { + "id": 4442, + "type": "message", + "date": "2024-02-05T09:00:06", + "date_unixtime": "1707120006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008300 BTC for 82.70 CZK @ 996,442 CZK\nFees are 0.29047953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.67977999891944459452158410 CZK)\nThe limits being 0.10 % (63.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48434038 BTC (273,590.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.40 % (209,027.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,342.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06387608 BTC (63,648.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.09 CZK over 2761 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008300 BTC for 82.70 CZK @ 996,442 CZK\nFees are 0.29047953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.67977999891944459452158410 CZK)\nThe limits being 0.10 % (63.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48434038 BTC (273,590.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.40 % (209,027.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,342.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06387608 BTC (63,648.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.09 CZK over 2761 transactions" + } + ] + }, + { + "id": 4443, + "type": "message", + "date": "2024-02-05T13:00:05", + "date_unixtime": "1707134405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008245 BTC for 82.70 CZK @ 1,003,062 CZK\nFees are 0.29047172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.27557999276637287988099868 CZK)\nThe limits being 0.10 % (64.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48442283 BTC (273,672.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 564,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,003,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.55 % (212,233.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,259.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06395853 BTC (64,154.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.09 CZK over 2762 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008245 BTC for 82.70 CZK @ 1,003,062 CZK\nFees are 0.29047172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.27557999276637287988099868 CZK)\nThe limits being 0.10 % (64.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48442283 BTC (273,672.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 564,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,003,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.55 % (212,233.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,259.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06395853 BTC (64,154.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.09 CZK over 2762 transactions" + } + ] + }, + { + "id": 4444, + "type": "message", + "date": "2024-02-05T17:00:05", + "date_unixtime": "1707148805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008326 BTC for 82.71 CZK @ 993,394 CZK\nFees are 0.29049814 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.40545999403241668812052364 CZK)\nThe limits being 0.10 % (63.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48450609 BTC (273,755.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 993,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.82 % (207,549.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,176.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06404179 BTC (63,618.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.08 CZK over 2763 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008326 BTC for 82.71 CZK @ 993,394 CZK\nFees are 0.29049814 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.40545999403241668812052364 CZK)\nThe limits being 0.10 % (63.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48450609 BTC (273,755.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 993,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.82 % (207,549.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,176.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06404179 BTC (63,618.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.08 CZK over 2763 transactions" + } + ] + }, + { + "id": 4445, + "type": "message", + "date": "2024-02-05T21:00:05", + "date_unixtime": "1707163205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008320 BTC for 82.71 CZK @ 994,053 CZK\nFees are 0.29048137 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (109.34582999525698516729906864 CZK)\nThe limits being 0.10 % (63.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48458929 BTC (273,838.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.91 % (207,868.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,093.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06412499 BTC (63,743.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.07 CZK over 2764 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008320 BTC for 82.71 CZK @ 994,053 CZK\nFees are 0.29048137 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (109.34582999525698516729906864 CZK)\nThe limits being 0.10 % (63.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48458929 BTC (273,838.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.91 % (207,868.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,093.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06412499 BTC (63,743.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.07 CZK over 2764 transactions" + } + ] + }, + { + "id": 4446, + "type": "message", + "date": "2024-02-06T01:00:07", + "date_unixtime": "1707177607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008342 BTC for 82.70 CZK @ 991,394 CZK\nFees are 0.29047041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.22545999335578890330737647 CZK)\nThe limits being 0.10 % (63.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48467271 BTC (273,921.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 991,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.42 % (206,579.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,010.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06420841 BTC (63,655.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.07 CZK over 2765 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008342 BTC for 82.70 CZK @ 991,394 CZK\nFees are 0.29047041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.22545999335578890330737647 CZK)\nThe limits being 0.10 % (63.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48467271 BTC (273,921.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 991,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.42 % (206,579.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,010.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06420841 BTC (63,655.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.07 CZK over 2765 transactions" + } + ] + }, + { + "id": 4447, + "type": "message", + "date": "2024-02-06T05:00:06", + "date_unixtime": "1707192006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008299 BTC for 82.70 CZK @ 996,562 CZK\nFees are 0.29047951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.69057999856268814061016591 CZK)\nThe limits being 0.10 % (64.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48475570 BTC (274,004.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.31 % (209,084.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,927.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06429140 BTC (64,070.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.06 CZK over 2766 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008299 BTC for 82.70 CZK @ 996,562 CZK\nFees are 0.29047951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.69057999856268814061016591 CZK)\nThe limits being 0.10 % (64.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48475570 BTC (274,004.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.31 % (209,084.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,927.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06429140 BTC (64,070.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.06 CZK over 2766 transactions" + } + ] + }, + { + "id": 4448, + "type": "message", + "date": "2024-02-06T09:00:06", + "date_unixtime": "1707206406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008293 BTC for 82.70 CZK @ 997,242 CZK\nFees are 0.29046757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.75177999274335316564458977 CZK)\nThe limits being 0.10 % (64.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48483863 BTC (274,087.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 997,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.40 % (209,413.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,844.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06437433 BTC (64,196.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.06 CZK over 2767 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008293 BTC for 82.70 CZK @ 997,242 CZK\nFees are 0.29046757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.75177999274335316564458977 CZK)\nThe limits being 0.10 % (64.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48483863 BTC (274,087.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 997,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.40 % (209,413.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,844.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06437433 BTC (64,196.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.06 CZK over 2767 transactions" + } + ] + }, + { + "id": 4449, + "type": "message", + "date": "2024-02-06T13:00:06", + "date_unixtime": "1707220806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008307 BTC for 82.71 CZK @ 995,633 CZK\nFees are 0.29048848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.60696999289053858623744306 CZK)\nThe limits being 0.10 % (64.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48492170 BTC (274,170.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 995,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.10 % (208,633.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,761.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06445740 BTC (64,175.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.05 CZK over 2768 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008307 BTC for 82.71 CZK @ 995,633 CZK\nFees are 0.29048848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.60696999289053858623744306 CZK)\nThe limits being 0.10 % (64.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48492170 BTC (274,170.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 995,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.10 % (208,633.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,761.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06445740 BTC (64,175.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.05 CZK over 2768 transactions" + } + ] + }, + { + "id": 4450, + "type": "message", + "date": "2024-02-06T17:00:06", + "date_unixtime": "1707235206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008239 BTC for 82.71 CZK @ 1,003,825 CZK\nFees are 0.29048113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.34424999333259674402124425 CZK)\nThe limits being 0.10 % (64.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48500409 BTC (274,253.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,003,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.52 % (212,605.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,678.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06453979 BTC (64,786.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.04 CZK over 2769 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008239 BTC for 82.71 CZK @ 1,003,825 CZK\nFees are 0.29048113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.34424999333259674402124425 CZK)\nThe limits being 0.10 % (64.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48500409 BTC (274,253.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,003,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.52 % (212,605.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,678.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06453979 BTC (64,786.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.04 CZK over 2769 transactions" + } + ] + }, + { + "id": 4451, + "type": "message", + "date": "2024-02-06T21:00:05", + "date_unixtime": "1707249605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008221 BTC for 82.70 CZK @ 1,005,996 CZK\nFees are 0.29047337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.53963999011609227816981885 CZK)\nThe limits being 0.10 % (65.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48508630 BTC (274,336.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,005,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 77.88 % (213,657.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,595.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06462200 BTC (65,009.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.04 CZK over 2770 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008221 BTC for 82.70 CZK @ 1,005,996 CZK\nFees are 0.29047337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.53963999011609227816981885 CZK)\nThe limits being 0.10 % (65.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48508630 BTC (274,336.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,005,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 77.88 % (213,657.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,595.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06462200 BTC (65,009.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.04 CZK over 2770 transactions" + } + ] + }, + { + "id": 4452, + "type": "message", + "date": "2024-02-07T01:00:05", + "date_unixtime": "1707264005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008263 BTC for 82.71 CZK @ 1,000,965 CZK\nFees are 0.29049728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.08684999693376220864635642 CZK)\nThe limits being 0.10 % (64.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48516893 BTC (274,419.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,000,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.97 % (211,217.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,512.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06470463 BTC (64,767.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.03 CZK over 2771 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008263 BTC for 82.71 CZK @ 1,000,965 CZK\nFees are 0.29049728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (90.08684999693376220864635642 CZK)\nThe limits being 0.10 % (64.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48516893 BTC (274,419.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,000,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.97 % (211,217.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,512.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06470463 BTC (64,767.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.03 CZK over 2771 transactions" + } + ] + }, + { + "id": 4453, + "type": "message", + "date": "2024-02-07T05:00:05", + "date_unixtime": "1707278405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008315 BTC for 82.70 CZK @ 994,624 CZK\nFees are 0.29047356 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.51615998964538127377989423 CZK)\nThe limits being 0.10 % (64.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48525208 BTC (274,502.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 994,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 75.82 % (208,140.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,430.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06478778 BTC (64,439.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.03 CZK over 2772 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008315 BTC for 82.70 CZK @ 994,624 CZK\nFees are 0.29047356 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.51615998964538127377989423 CZK)\nThe limits being 0.10 % (64.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48525208 BTC (274,502.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 994,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 75.82 % (208,140.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,430.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06478778 BTC (64,439.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.03 CZK over 2772 transactions" + } + ] + }, + { + "id": 4454, + "type": "message", + "date": "2024-02-07T09:00:06", + "date_unixtime": "1707292806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008301 BTC for 82.70 CZK @ 996,300 CZK\nFees are 0.29047313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.66699999945978738311824768 CZK)\nThe limits being 0.10 % (64.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48533509 BTC (274,585.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.10 % (208,953.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,347.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06487079 BTC (64,630.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.02 CZK over 2773 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008301 BTC for 82.70 CZK @ 996,300 CZK\nFees are 0.29047313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (89.66699999945978738311824768 CZK)\nThe limits being 0.10 % (64.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48533509 BTC (274,585.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.10 % (208,953.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,347.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06487079 BTC (64,630.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.02 CZK over 2773 transactions" + } + ] + }, + { + "id": 4455, + "type": "message", + "date": "2024-02-07T13:00:06", + "date_unixtime": "1707307206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008298 BTC for 82.70 CZK @ 996,662 CZK\nFees are 0.29047366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (79.73295999552302059686733934 CZK)\nThe limits being 0.10 % (64.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48541807 BTC (274,668.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 996,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.14 % (209,128.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,264.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06495377 BTC (64,736.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.02 CZK over 2774 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008298 BTC for 82.70 CZK @ 996,662 CZK\nFees are 0.29047366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (79.73295999552302059686733934 CZK)\nThe limits being 0.10 % (64.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48541807 BTC (274,668.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 996,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.14 % (209,128.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,264.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06495377 BTC (64,736.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.02 CZK over 2774 transactions" + } + ] + }, + { + "id": 4456, + "type": "message", + "date": "2024-02-07T17:00:06", + "date_unixtime": "1707321606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008271 BTC for 82.71 CZK @ 999,981 CZK\nFees are 0.29049268 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (289.99448996581123364801600878 CZK)\nThe limits being 0.10 % (65.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48550078 BTC (274,751.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 999,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 76.70 % (210,739.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,181.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06503648 BTC (65,035.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.01 CZK over 2775 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008271 BTC for 82.71 CZK @ 999,981 CZK\nFees are 0.29049268 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (289.99448996581123364801600878 CZK)\nThe limits being 0.10 % (65.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48550078 BTC (274,751.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 999,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 76.70 % (210,739.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,181.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06503648 BTC (65,035.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.01 CZK over 2775 transactions" + } + ] + }, + { + "id": 4457, + "type": "message", + "date": "2024-02-07T21:00:05", + "date_unixtime": "1707336005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008165 BTC for 82.71 CZK @ 1,012,929 CZK\nFees are 0.29048293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (253.23224998482042795103848105 CZK)\nThe limits being 0.10 % (65.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48558243 BTC (274,834.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 565,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,012,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.97 % (217,025.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,098.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06511813 BTC (65,960.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.00 CZK over 2776 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008165 BTC for 82.71 CZK @ 1,012,929 CZK\nFees are 0.29048293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (253.23224998482042795103848105 CZK)\nThe limits being 0.10 % (65.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48558243 BTC (274,834.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 565,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,012,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.97 % (217,025.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,098.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06511813 BTC (65,960.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.00 CZK over 2776 transactions" + } + ] + }, + { + "id": 4458, + "type": "message", + "date": "2024-02-08T01:00:05", + "date_unixtime": "1707350405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008045 BTC for 82.70 CZK @ 1,028,000 CZK\nFees are 0.29047221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (246.72000 CZK)\nThe limits being 0.10 % (67.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48566288 BTC (274,917.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,028,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.60 % (224,343.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,015.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06519858 BTC (67,024.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 99.00 CZK over 2777 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008045 BTC for 82.70 CZK @ 1,028,000 CZK\nFees are 0.29047221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (246.72000 CZK)\nThe limits being 0.10 % (67.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48566288 BTC (274,917.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,028,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.60 % (224,343.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,015.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06519858 BTC (67,024.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 99.00 CZK over 2777 transactions" + } + ] + }, + { + "id": 4459, + "type": "message", + "date": "2024-02-08T05:00:05", + "date_unixtime": "1707364805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007997 BTC for 82.70 CZK @ 1,034,200 CZK\nFees are 0.29048054 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (134.44599998542054167173676675 CZK)\nThe limits being 0.10 % (67.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48574285 BTC (275,000.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,034,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.67 % (227,354.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,932.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06527855 BTC (67,511.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.99 CZK over 2778 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007997 BTC for 82.70 CZK @ 1,034,200 CZK\nFees are 0.29048054 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (134.44599998542054167173676675 CZK)\nThe limits being 0.10 % (67.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48574285 BTC (275,000.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,034,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.67 % (227,354.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,932.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06527855 BTC (67,511.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.99 CZK over 2778 transactions" + } + ] + }, + { + "id": 4460, + "type": "message", + "date": "2024-02-08T09:00:06", + "date_unixtime": "1707379206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00008000 BTC for 82.71 CZK @ 1,033,855 CZK\nFees are 0.29049258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (82.70840 CZK)\nThe limits being 0.10 % (67.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48582285 BTC (275,083.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,033,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.59 % (227,186.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,849.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06535855 BTC (67,571.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.99 CZK over 2779 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00008000 BTC for 82.71 CZK @ 1,033,855 CZK\nFees are 0.29049258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (82.70840 CZK)\nThe limits being 0.10 % (67.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48582285 BTC (275,083.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,033,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.59 % (227,186.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,849.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06535855 BTC (67,571.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.99 CZK over 2779 transactions" + } + ] + }, + { + "id": 4461, + "type": "message", + "date": "2024-02-08T13:00:07", + "date_unixtime": "1707393607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007966 BTC for 82.71 CZK @ 1,038,264 CZK\nFees are 0.29049156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (83.06111999415552971078753862 CZK)\nThe limits being 0.10 % (67.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48590251 BTC (275,166.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,038,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.34 % (229,328.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,766.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06543821 BTC (67,942.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.98 CZK over 2780 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007966 BTC for 82.71 CZK @ 1,038,264 CZK\nFees are 0.29049156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (83.06111999415552971078753862 CZK)\nThe limits being 0.10 % (67.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48590251 BTC (275,166.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,038,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.34 % (229,328.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,766.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06543821 BTC (67,942.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.98 CZK over 2780 transactions" + } + ] + }, + { + "id": 4462, + "type": "message", + "date": "2024-02-08T17:00:07", + "date_unixtime": "1707408007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007778 BTC for 82.71 CZK @ 1,063,387 CZK\nFees are 0.29049904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (116.97256999575796873452558627 CZK)\nThe limits being 0.10 % (69.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48598029 BTC (275,249.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,063,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.75 % (241,535.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,683.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06551599 BTC (69,668.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.98 CZK over 2781 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007778 BTC for 82.71 CZK @ 1,063,387 CZK\nFees are 0.29049904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (116.97256999575796873452558627 CZK)\nThe limits being 0.10 % (69.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48598029 BTC (275,249.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,063,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.75 % (241,535.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,683.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06551599 BTC (69,668.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.98 CZK over 2781 transactions" + } + ] + }, + { + "id": 4463, + "type": "message", + "date": "2024-02-08T21:00:06", + "date_unixtime": "1707422406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007802 BTC for 82.71 CZK @ 1,060,070 CZK\nFees are 0.29048647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (116.60769999311561035989519890 CZK)\nThe limits being 0.10 % (69.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48605831 BTC (275,332.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,060,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.14 % (239,922.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,600.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06559401 BTC (69,534.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.97 CZK over 2782 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007802 BTC for 82.71 CZK @ 1,060,070 CZK\nFees are 0.29048647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (116.60769999311561035989519890 CZK)\nThe limits being 0.10 % (69.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48605831 BTC (275,332.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,060,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.14 % (239,922.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,600.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06559401 BTC (69,534.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.97 CZK over 2782 transactions" + } + ] + }, + { + "id": 4464, + "type": "message", + "date": "2024-02-09T01:00:06", + "date_unixtime": "1707436806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007789 BTC for 82.70 CZK @ 1,061,768 CZK\nFees are 0.29046697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (95.55911999617720057088673402 CZK)\nThe limits being 0.10 % (69.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48613620 BTC (275,415.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,061,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 87.41 % (240,747.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,517.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06567190 BTC (69,728.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.96 CZK over 2783 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007789 BTC for 82.70 CZK @ 1,061,768 CZK\nFees are 0.29046697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (95.55911999617720057088673402 CZK)\nThe limits being 0.10 % (69.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48613620 BTC (275,415.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,061,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 87.41 % (240,747.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,517.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06567190 BTC (69,728.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.96 CZK over 2783 transactions" + } + ] + }, + { + "id": 4465, + "type": "message", + "date": "2024-02-09T05:00:04", + "date_unixtime": "1707451204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007663 BTC for 82.71 CZK @ 1,079,341 CZK\nFees are 0.29049785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (97.14068999660005067738577254 CZK)\nThe limits being 0.10 % (70.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48621283 BTC (275,498.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,079,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.49 % (249,290.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,434.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06574853 BTC (70,965.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.96 CZK over 2784 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007663 BTC for 82.71 CZK @ 1,079,341 CZK\nFees are 0.29049785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (97.14068999660005067738577254 CZK)\nThe limits being 0.10 % (70.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48621283 BTC (275,498.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,079,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.49 % (249,290.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,434.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06574853 BTC (70,965.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.96 CZK over 2784 transactions" + } + ] + }, + { + "id": 4466, + "type": "message", + "date": "2024-02-09T09:00:06", + "date_unixtime": "1707465606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007660 BTC for 82.71 CZK @ 1,079,760 CZK\nFees are 0.29049685 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (86.38079999375553708235275751 CZK)\nThe limits being 0.10 % (71.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48628943 BTC (275,581.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,079,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.53 % (249,493.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,351.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06582513 BTC (71,075.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.95 CZK over 2785 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007660 BTC for 82.71 CZK @ 1,079,760 CZK\nFees are 0.29049685 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (86.38079999375553708235275751 CZK)\nThe limits being 0.10 % (71.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48628943 BTC (275,581.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,079,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.53 % (249,493.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,351.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06582513 BTC (71,075.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.95 CZK over 2785 transactions" + } + ] + }, + { + "id": 4467, + "type": "message", + "date": "2024-02-09T13:00:04", + "date_unixtime": "1707480004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007521 BTC for 82.71 CZK @ 1,099,698 CZK\nFees are 0.29049218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (87.97583999678826540296040047 CZK)\nThe limits being 0.10 % (72.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48636464 BTC (275,664.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,099,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.02 % (259,189.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,268.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06590034 BTC (72,470.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.95 CZK over 2786 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007521 BTC for 82.71 CZK @ 1,099,698 CZK\nFees are 0.29049218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (87.97583999678826540296040047 CZK)\nThe limits being 0.10 % (72.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48636464 BTC (275,664.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,099,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.02 % (259,189.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,268.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06590034 BTC (72,470.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.95 CZK over 2786 transactions" + } + ] + }, + { + "id": 4468, + "type": "message", + "date": "2024-02-09T17:00:04", + "date_unixtime": "1707494404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007512 BTC for 82.71 CZK @ 1,101,031 CZK\nFees are 0.29049626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.08247999944815085433145864 CZK)\nThe limits being 0.10 % (72.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48643976 BTC (275,747.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,101,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.23 % (259,837.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,185.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06597546 BTC (72,641.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.94 CZK over 2787 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007512 BTC for 82.71 CZK @ 1,101,031 CZK\nFees are 0.29049626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.08247999944815085433145864 CZK)\nThe limits being 0.10 % (72.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48643976 BTC (275,747.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,101,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.23 % (259,837.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,185.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06597546 BTC (72,641.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.94 CZK over 2787 transactions" + } + ] + }, + { + "id": 4469, + "type": "message", + "date": "2024-02-09T21:00:05", + "date_unixtime": "1707508805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007439 BTC for 82.71 CZK @ 1,111,842 CZK\nFees are 0.29049794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (100.06577999719090455887255207 CZK)\nThe limits being 0.10 % (73.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48651415 BTC (275,830.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 566,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,111,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.11 % (265,095.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,102.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06604985 BTC (73,437.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.94 CZK over 2788 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007439 BTC for 82.71 CZK @ 1,111,842 CZK\nFees are 0.29049794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (100.06577999719090455887255207 CZK)\nThe limits being 0.10 % (73.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48651415 BTC (275,830.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 566,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,111,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.11 % (265,095.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,102.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06604985 BTC (73,437.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.94 CZK over 2788 transactions" + } + ] + }, + { + "id": 4470, + "type": "message", + "date": "2024-02-10T01:00:05", + "date_unixtime": "1707523205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007501 BTC for 82.71 CZK @ 1,102,653 CZK\nFees are 0.29049820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (99.23876999359726625388662677 CZK)\nThe limits being 0.10 % (72.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48658916 BTC (275,913.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,102,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.46 % (260,625.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,019.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06612486 BTC (72,912.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.93 CZK over 2789 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007501 BTC for 82.71 CZK @ 1,102,653 CZK\nFees are 0.29049820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (99.23876999359726625388662677 CZK)\nThe limits being 0.10 % (72.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48658916 BTC (275,913.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,102,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.46 % (260,625.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,019.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06612486 BTC (72,912.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.93 CZK over 2789 transactions" + } + ] + }, + { + "id": 4471, + "type": "message", + "date": "2024-02-10T05:00:05", + "date_unixtime": "1707537605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007465 BTC for 82.71 CZK @ 1,107,974 CZK\nFees are 0.29049911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.63791999268467930895582808 CZK)\nThe limits being 0.10 % (73.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48666381 BTC (275,996.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,107,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.37 % (263,213.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,936.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06619951 BTC (73,347.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.92 CZK over 2790 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007465 BTC for 82.71 CZK @ 1,107,974 CZK\nFees are 0.29049911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.63791999268467930895582808 CZK)\nThe limits being 0.10 % (73.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48666381 BTC (275,996.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,107,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.37 % (263,213.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,936.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06619951 BTC (73,347.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.92 CZK over 2790 transactions" + } + ] + }, + { + "id": 4472, + "type": "message", + "date": "2024-02-10T09:00:08", + "date_unixtime": "1707552008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007497 BTC for 82.71 CZK @ 1,103,192 CZK\nFees are 0.29048522 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.25535999485328095696009678 CZK)\nThe limits being 0.10 % (73.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48673878 BTC (276,079.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,103,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.50 % (260,886.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,853.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06627448 BTC (73,113.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.92 CZK over 2791 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007497 BTC for 82.71 CZK @ 1,103,192 CZK\nFees are 0.29048522 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.25535999485328095696009678 CZK)\nThe limits being 0.10 % (73.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48673878 BTC (276,079.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,103,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.50 % (260,886.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,853.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06627448 BTC (73,113.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.92 CZK over 2791 transactions" + } + ] + }, + { + "id": 4473, + "type": "message", + "date": "2024-02-10T13:00:04", + "date_unixtime": "1707566404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007514 BTC for 82.70 CZK @ 1,100,672 CZK\nFees are 0.29047886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.05375999015423658929175090 CZK)\nThe limits being 0.10 % (73.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48681392 BTC (276,162.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,100,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.02 % (259,659.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,770.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06634962 BTC (73,029.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.91 CZK over 2792 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007514 BTC for 82.70 CZK @ 1,100,672 CZK\nFees are 0.29047886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.05375999015423658929175090 CZK)\nThe limits being 0.10 % (73.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48681392 BTC (276,162.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,100,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.02 % (259,659.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,770.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06634962 BTC (73,029.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.91 CZK over 2792 transactions" + } + ] + }, + { + "id": 4474, + "type": "message", + "date": "2024-02-10T17:00:05", + "date_unixtime": "1707580805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007497 BTC for 82.71 CZK @ 1,103,220 CZK\nFees are 0.29049259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.25759999797959376409590577 CZK)\nThe limits being 0.10 % (73.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48688889 BTC (276,245.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,103,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.44 % (260,899.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,687.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06642459 BTC (73,280.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.91 CZK over 2793 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007497 BTC for 82.71 CZK @ 1,103,220 CZK\nFees are 0.29049259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (88.25759999797959376409590577 CZK)\nThe limits being 0.10 % (73.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48688889 BTC (276,245.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,103,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.44 % (260,899.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,687.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06642459 BTC (73,280.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.91 CZK over 2793 transactions" + } + ] + }, + { + "id": 4475, + "type": "message", + "date": "2024-02-10T21:00:04", + "date_unixtime": "1707595204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007451 BTC for 82.71 CZK @ 1,110,000 CZK\nFees are 0.29048450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (122.10000 CZK)\nThe limits being 0.10 % (73.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48696340 BTC (276,328.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,110,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.61 % (264,200.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,604.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06649910 BTC (73,814.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.90 CZK over 2794 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007451 BTC for 82.71 CZK @ 1,110,000 CZK\nFees are 0.29048450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (122.10000 CZK)\nThe limits being 0.10 % (73.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48696340 BTC (276,328.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,110,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.61 % (264,200.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,604.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06649910 BTC (73,814.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.90 CZK over 2794 transactions" + } + ] + }, + { + "id": 4476, + "type": "message", + "date": "2024-02-11T01:00:04", + "date_unixtime": "1707609604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007419 BTC for 82.70 CZK @ 1,114,743 CZK\nFees are 0.29047285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (111.47429999852920761967162646 CZK)\nThe limits being 0.10 % (74.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48703759 BTC (276,411.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,114,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.42 % (266,509.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,521.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06657329 BTC (74,212.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.90 CZK over 2795 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007419 BTC for 82.70 CZK @ 1,114,743 CZK\nFees are 0.29047285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (111.47429999852920761967162646 CZK)\nThe limits being 0.10 % (74.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48703759 BTC (276,411.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,114,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.42 % (266,509.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,521.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06657329 BTC (74,212.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.90 CZK over 2795 transactions" + } + ] + }, + { + "id": 4477, + "type": "message", + "date": "2024-02-11T05:00:05", + "date_unixtime": "1707624005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007327 BTC for 82.71 CZK @ 1,128,835 CZK\nFees are 0.29049729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (112.88349999785791357109676662 CZK)\nThe limits being 0.10 % (75.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48711086 BTC (276,494.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,128,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.87 % (273,372.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,438.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06664656 BTC (75,232.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.89 CZK over 2796 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007327 BTC for 82.71 CZK @ 1,128,835 CZK\nFees are 0.29049729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (112.88349999785791357109676662 CZK)\nThe limits being 0.10 % (75.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48711086 BTC (276,494.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,128,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.87 % (273,372.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,438.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06664656 BTC (75,232.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.89 CZK over 2796 transactions" + } + ] + }, + { + "id": 4478, + "type": "message", + "date": "2024-02-11T09:00:05", + "date_unixtime": "1707638405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007353 BTC for 82.71 CZK @ 1,124,805 CZK\nFees are 0.29048735 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (112.48049999894968453605634733 CZK)\nThe limits being 0.10 % (75.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48718439 BTC (276,577.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,124,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.13 % (271,409.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,355.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06672009 BTC (75,047.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.88 CZK over 2797 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007353 BTC for 82.71 CZK @ 1,124,805 CZK\nFees are 0.29048735 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (112.48049999894968453605634733 CZK)\nThe limits being 0.10 % (75.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48718439 BTC (276,577.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,124,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.13 % (271,409.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,355.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06672009 BTC (75,047.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.88 CZK over 2797 transactions" + } + ] + }, + { + "id": 4479, + "type": "message", + "date": "2024-02-11T13:00:05", + "date_unixtime": "1707652805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007331 BTC for 82.70 CZK @ 1,128,102 CZK\nFees are 0.29046714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (67.686119998637968583154974502 CZK)\nThe limits being 0.10 % (75.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48725770 BTC (276,660.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,128,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.68 % (273,015.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,272.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06679340 BTC (75,349.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.88 CZK over 2798 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007331 BTC for 82.70 CZK @ 1,128,102 CZK\nFees are 0.29046714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (67.686119998637968583154974502 CZK)\nThe limits being 0.10 % (75.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48725770 BTC (276,660.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,128,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.68 % (273,015.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,272.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06679340 BTC (75,349.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.88 CZK over 2798 transactions" + } + ] + }, + { + "id": 4480, + "type": "message", + "date": "2024-02-11T17:00:04", + "date_unixtime": "1707667204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007369 BTC for 82.70 CZK @ 1,122,324 CZK\nFees are 0.29047732 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (56.116199996984363926961294315 CZK)\nThe limits being 0.10 % (75.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48733139 BTC (276,743.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,122,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.64 % (270,199.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,189.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06686709 BTC (75,046.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.87 CZK over 2799 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007369 BTC for 82.70 CZK @ 1,122,324 CZK\nFees are 0.29047732 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (56.116199996984363926961294315 CZK)\nThe limits being 0.10 % (75.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48733139 BTC (276,743.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,122,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.64 % (270,199.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,189.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06686709 BTC (75,046.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.87 CZK over 2799 transactions" + } + ] + }, + { + "id": 4481, + "type": "message", + "date": "2024-02-11T21:00:05", + "date_unixtime": "1707681605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007350 BTC for 82.70 CZK @ 1,125,176 CZK\nFees are 0.29046461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (56.258799995932603235614126070 CZK)\nThe limits being 0.10 % (75.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48740489 BTC (276,826.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 567,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,125,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.11 % (271,589.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,106.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06694059 BTC (75,319.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.87 CZK over 2800 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007350 BTC for 82.70 CZK @ 1,125,176 CZK\nFees are 0.29046461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (56.258799995932603235614126070 CZK)\nThe limits being 0.10 % (75.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48740489 BTC (276,826.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 567,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,125,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.11 % (271,589.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,106.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06694059 BTC (75,319.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.87 CZK over 2800 transactions" + } + ] + }, + { + "id": 4482, + "type": "message", + "date": "2024-02-12T01:00:04", + "date_unixtime": "1707696004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007352 BTC for 82.71 CZK @ 1,125,000 CZK\nFees are 0.29049820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (67.50000 CZK)\nThe limits being 0.10 % (75.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48747841 BTC (276,909.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,125,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.05 % (271,503.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,023.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06701411 BTC (75,390.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.86 CZK over 2801 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007352 BTC for 82.71 CZK @ 1,125,000 CZK\nFees are 0.29049820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (67.50000 CZK)\nThe limits being 0.10 % (75.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48747841 BTC (276,909.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,125,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.05 % (271,503.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,023.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06701411 BTC (75,390.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.86 CZK over 2801 transactions" + } + ] + }, + { + "id": 4483, + "type": "message", + "date": "2024-02-12T05:00:04", + "date_unixtime": "1707710404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007349 BTC for 82.70 CZK @ 1,125,372 CZK\nFees are 0.29047568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (67.522319992693961392304780592 CZK)\nThe limits being 0.10 % (75.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48755190 BTC (276,992.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,125,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.08 % (271,684.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 940.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06708760 BTC (75,498.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.86 CZK over 2802 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007349 BTC for 82.70 CZK @ 1,125,372 CZK\nFees are 0.29047568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (67.522319992693961392304780592 CZK)\nThe limits being 0.10 % (75.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48755190 BTC (276,992.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,125,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.08 % (271,684.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 940.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06708760 BTC (75,498.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.86 CZK over 2802 transactions" + } + ] + }, + { + "id": 4484, + "type": "message", + "date": "2024-02-12T09:00:06", + "date_unixtime": "1707724806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007334 BTC for 82.71 CZK @ 1,127,715 CZK\nFees are 0.29048632 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (45.10859999817926594253083936 CZK)\nThe limits being 0.10 % (75.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48762524 BTC (277,075.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,127,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.47 % (272,826.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 857.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06716094 BTC (75,738.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.85 CZK over 2803 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007334 BTC for 82.71 CZK @ 1,127,715 CZK\nFees are 0.29048632 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (45.10859999817926594253083936 CZK)\nThe limits being 0.10 % (75.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48762524 BTC (277,075.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,127,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.47 % (272,826.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 857.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06716094 BTC (75,738.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.85 CZK over 2803 transactions" + } + ] + }, + { + "id": 4485, + "type": "message", + "date": "2024-02-12T13:00:06", + "date_unixtime": "1707739206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007396 BTC for 82.70 CZK @ 1,118,206 CZK\nFees are 0.29047191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (55.910299996523794625786491470 CZK)\nThe limits being 0.10 % (75.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48769920 BTC (277,158.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,118,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.76 % (268,189.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 774.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06723490 BTC (75,182.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.84 CZK over 2804 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007396 BTC for 82.70 CZK @ 1,118,206 CZK\nFees are 0.29047191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (55.910299996523794625786491470 CZK)\nThe limits being 0.10 % (75.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48769920 BTC (277,158.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,118,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.76 % (268,189.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 774.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06723490 BTC (75,182.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.84 CZK over 2804 transactions" + } + ] + }, + { + "id": 4486, + "type": "message", + "date": "2024-02-12T17:00:05", + "date_unixtime": "1707753605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007074 BTC for 82.71 CZK @ 1,169,191 CZK\nFees are 0.29049318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (58.459549993174863381050124390 CZK)\nThe limits being 0.10 % (78.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48776994 BTC (277,241.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,169,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.70 % (293,054.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 691.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06730564 BTC (78,693.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.84 CZK over 2805 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007074 BTC for 82.71 CZK @ 1,169,191 CZK\nFees are 0.29049318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (58.459549993174863381050124390 CZK)\nThe limits being 0.10 % (78.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48776994 BTC (277,241.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,169,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.70 % (293,054.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 691.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06730564 BTC (78,693.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.84 CZK over 2805 transactions" + } + ] + }, + { + "id": 4487, + "type": "message", + "date": "2024-02-12T21:00:04", + "date_unixtime": "1707768004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007128 BTC for 82.71 CZK @ 1,160,337 CZK\nFees are 0.29049406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (464.13479997338160433991691256 CZK)\nThe limits being 0.10 % (78.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48784122 BTC (277,324.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,160,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.11 % (288,735.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 608.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06737692 BTC (78,179.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.83 CZK over 2806 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007128 BTC for 82.71 CZK @ 1,160,337 CZK\nFees are 0.29049406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (464.13479997338160433991691256 CZK)\nThe limits being 0.10 % (78.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48784122 BTC (277,324.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,160,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.11 % (288,735.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 608.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06737692 BTC (78,179.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.83 CZK over 2806 transactions" + } + ] + }, + { + "id": 4488, + "type": "message", + "date": "2024-02-13T01:00:05", + "date_unixtime": "1707782405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007069 BTC for 82.71 CZK @ 1,170,042 CZK\nFees are 0.29049914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (245.70881999576669096273102142 CZK)\nThe limits being 0.10 % (78.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48791191 BTC (277,407.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,170,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.79 % (293,469.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 525.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06744761 BTC (78,916.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.83 CZK over 2807 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007069 BTC for 82.71 CZK @ 1,170,042 CZK\nFees are 0.29049914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (245.70881999576669096273102142 CZK)\nThe limits being 0.10 % (78.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48791191 BTC (277,407.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,170,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.79 % (293,469.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 525.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06744761 BTC (78,916.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.83 CZK over 2807 transactions" + } + ] + }, + { + "id": 4489, + "type": "message", + "date": "2024-02-13T05:00:04", + "date_unixtime": "1707796804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007075 BTC for 82.70 CZK @ 1,168,905 CZK\nFees are 0.29046318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (210.40289999841543995309702260 CZK)\nThe limits being 0.10 % (78.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48798266 BTC (277,490.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,168,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.56 % (292,914.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 442.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06751836 BTC (78,922.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.82 CZK over 2808 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007075 BTC for 82.70 CZK @ 1,168,905 CZK\nFees are 0.29046318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (210.40289999841543995309702260 CZK)\nThe limits being 0.10 % (78.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48798266 BTC (277,490.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,168,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.56 % (292,914.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 442.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06751836 BTC (78,922.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.82 CZK over 2808 transactions" + } + ] + }, + { + "id": 4490, + "type": "message", + "date": "2024-02-13T09:00:06", + "date_unixtime": "1707811206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007063 BTC for 82.71 CZK @ 1,170,997 CZK\nFees are 0.29048948 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (70.259819997134480683881369192 CZK)\nThe limits being 0.10 % (79.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48805329 BTC (277,573.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,170,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.89 % (293,935.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 359.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06758899 BTC (79,146.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.82 CZK over 2809 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007063 BTC for 82.71 CZK @ 1,170,997 CZK\nFees are 0.29048948 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (70.259819997134480683881369192 CZK)\nThe limits being 0.10 % (79.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48805329 BTC (277,573.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,170,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.89 % (293,935.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 359.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06758899 BTC (79,146.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.82 CZK over 2809 transactions" + } + ] + }, + { + "id": 4491, + "type": "message", + "date": "2024-02-13T13:00:09", + "date_unixtime": "1707825609", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007063 BTC for 82.70 CZK @ 1,170,909 CZK\nFees are 0.29046765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (58.54544999340761250390728585 CZK)\nThe limits being 0.10 % (79.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48812392 BTC (277,656.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,170,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.85 % (293,891.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 276.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06765962 BTC (79,223.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.81 CZK over 2810 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007063 BTC for 82.70 CZK @ 1,170,909 CZK\nFees are 0.29046765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (58.54544999340761250390728585 CZK)\nThe limits being 0.10 % (79.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48812392 BTC (277,656.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,170,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.85 % (293,891.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 276.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06765962 BTC (79,223.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.81 CZK over 2810 transactions" + } + ] + }, + { + "id": 4492, + "type": "message", + "date": "2024-02-13T17:00:11", + "date_unixtime": "1707840011", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007192 BTC for 82.71 CZK @ 1,150,001 CZK\nFees are 0.29049143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.250054998689237280197839270 CZK)\nThe limits being 0.10 % (77.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48819584 BTC (277,739.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,150,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.14 % (283,685.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 193.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06773154 BTC (77,891.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.80 CZK over 2811 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007192 BTC for 82.71 CZK @ 1,150,001 CZK\nFees are 0.29049143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.250054998689237280197839270 CZK)\nThe limits being 0.10 % (77.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48819584 BTC (277,739.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,150,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.14 % (283,685.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 193.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06773154 BTC (77,891.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.80 CZK over 2811 transactions" + } + ] + }, + { + "id": 4493, + "type": "message", + "date": "2024-02-13T21:00:06", + "date_unixtime": "1707854406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007099 BTC for 82.70 CZK @ 1,164,989 CZK\nFees are 0.29047210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (64.074394998544676671514469045 CZK)\nThe limits being 0.10 % (78.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48826683 BTC (277,822.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 568,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,164,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.74 % (291,002.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 110.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06780253 BTC (78,989.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.80 CZK over 2812 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007099 BTC for 82.70 CZK @ 1,164,989 CZK\nFees are 0.29047210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (64.074394998544676671514469045 CZK)\nThe limits being 0.10 % (78.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48826683 BTC (277,822.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 568,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,164,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.74 % (291,002.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 110.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06780253 BTC (78,989.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.80 CZK over 2812 transactions" + } + ] + }, + { + "id": 4494, + "type": "message", + "date": "2024-02-14T01:00:49", + "date_unixtime": "1707868849", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007051 BTC for 82.71 CZK @ 1,173,000 CZK\nFees are 0.29049198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (64.514999996113446929506477714 CZK)\nThe limits being 0.10 % (79.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48833734 BTC (277,905.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,173,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.12 % (294,913.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 27.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06787304 BTC (79,615.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.79 CZK over 2813 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007051 BTC for 82.71 CZK @ 1,173,000 CZK\nFees are 0.29049198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (64.514999996113446929506477714 CZK)\nThe limits being 0.10 % (79.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48833734 BTC (277,905.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,173,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.12 % (294,913.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 27.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06787304 BTC (79,615.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.79 CZK over 2813 transactions" + } + ] + }, + { + "id": 4495, + "type": "message", + "date": "2024-02-14T05:00:01", + "date_unixtime": "1707883201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (27.17424955 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (27.17424955 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4496, + "type": "message", + "date": "2024-02-14T09:00:06", + "date_unixtime": "1707897606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00007015 BTC for 82.71 CZK @ 1,179,000 CZK\nFees are 0.29048713 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (137.94299999168981266920020839 CZK)\nThe limits being 0.10 % (80.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48840749 BTC (277,988.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,179,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.14 % (297,843.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,944.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06794319 BTC (80,105.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.79 CZK over 2814 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00007015 BTC for 82.71 CZK @ 1,179,000 CZK\nFees are 0.29048713 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (137.94299999168981266920020839 CZK)\nThe limits being 0.10 % (80.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48840749 BTC (277,988.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,179,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.14 % (297,843.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,944.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06794319 BTC (80,105.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.79 CZK over 2814 transactions" + } + ] + }, + { + "id": 4497, + "type": "message", + "date": "2024-02-14T13:00:05", + "date_unixtime": "1707912005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006796 BTC for 82.71 CZK @ 1,216,999 CZK\nFees are 0.29048855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (142.38888299632862380139200849 CZK)\nThe limits being 0.10 % (82.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48847545 BTC (278,071.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,216,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.78 % (316,402.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,861.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06801115 BTC (82,769.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.78 CZK over 2815 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006796 BTC for 82.71 CZK @ 1,216,999 CZK\nFees are 0.29048855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (142.38888299632862380139200849 CZK)\nThe limits being 0.10 % (82.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48847545 BTC (278,071.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,216,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.78 % (316,402.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,861.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06801115 BTC (82,769.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.78 CZK over 2815 transactions" + } + ] + }, + { + "id": 4498, + "type": "message", + "date": "2024-02-14T17:00:06", + "date_unixtime": "1707926406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006778 BTC for 82.70 CZK @ 1,220,178 CZK\nFees are 0.29047595 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (142.76082598806214248948391460 CZK)\nThe limits being 0.10 % (83.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48854323 BTC (278,154.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,220,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.31 % (317,954.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,778.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06807893 BTC (83,068.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.78 CZK over 2816 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006778 BTC for 82.70 CZK @ 1,220,178 CZK\nFees are 0.29047595 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (142.76082598806214248948391460 CZK)\nThe limits being 0.10 % (83.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48854323 BTC (278,154.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,220,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.31 % (317,954.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,778.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06807893 BTC (83,068.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.78 CZK over 2816 transactions" + } + ] + }, + { + "id": 4499, + "type": "message", + "date": "2024-02-14T21:00:05", + "date_unixtime": "1707940805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006784 BTC for 82.70 CZK @ 1,219,062 CZK\nFees are 0.29046717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (174.32586599731129725207058315 CZK)\nThe limits being 0.10 % (83.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48861107 BTC (278,237.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,219,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.08 % (317,409.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,695.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06814677 BTC (83,075.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.77 CZK over 2817 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006784 BTC for 82.70 CZK @ 1,219,062 CZK\nFees are 0.29046717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (174.32586599731129725207058315 CZK)\nThe limits being 0.10 % (83.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48861107 BTC (278,237.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,219,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.08 % (317,409.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,695.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06814677 BTC (83,075.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.77 CZK over 2817 transactions" + } + ] + }, + { + "id": 4500, + "type": "message", + "date": "2024-02-15T01:00:04", + "date_unixtime": "1707955204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006767 BTC for 82.71 CZK @ 1,222,211 CZK\nFees are 0.29048773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (174.77617299095547731602020386 CZK)\nThe limits being 0.10 % (83.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48867874 BTC (278,320.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,222,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.60 % (318,947.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,612.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06821444 BTC (83,372.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.77 CZK over 2818 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006767 BTC for 82.71 CZK @ 1,222,211 CZK\nFees are 0.29048773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (174.77617299095547731602020386 CZK)\nThe limits being 0.10 % (83.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48867874 BTC (278,320.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,222,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.60 % (318,947.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,612.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06821444 BTC (83,372.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.77 CZK over 2818 transactions" + } + ] + }, + { + "id": 4501, + "type": "message", + "date": "2024-02-15T05:00:05", + "date_unixtime": "1707969605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006691 BTC for 82.70 CZK @ 1,236,000 CZK\nFees are 0.29046574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (144.61200000 CZK)\nThe limits being 0.10 % (84.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48874565 BTC (278,403.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,236,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.98 % (325,685.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,529.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06828135 BTC (84,395.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.76 CZK over 2819 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006691 BTC for 82.70 CZK @ 1,236,000 CZK\nFees are 0.29046574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (144.61200000 CZK)\nThe limits being 0.10 % (84.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48874565 BTC (278,403.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,236,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.98 % (325,685.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,529.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06828135 BTC (84,395.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.76 CZK over 2819 transactions" + } + ] + }, + { + "id": 4502, + "type": "message", + "date": "2024-02-15T09:00:06", + "date_unixtime": "1707984006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006744 BTC for 82.70 CZK @ 1,226,265 CZK\nFees are 0.29046066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (111.59011499919321520585424324 CZK)\nThe limits being 0.10 % (83.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48881309 BTC (278,486.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,226,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.24 % (320,927.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,446.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06834879 BTC (83,813.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.75 CZK over 2820 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006744 BTC for 82.70 CZK @ 1,226,265 CZK\nFees are 0.29046066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (111.59011499919321520585424324 CZK)\nThe limits being 0.10 % (83.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48881309 BTC (278,486.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,226,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.24 % (320,927.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,446.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06834879 BTC (83,813.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.75 CZK over 2820 transactions" + } + ] + }, + { + "id": 4503, + "type": "message", + "date": "2024-02-15T13:00:08", + "date_unixtime": "1707998408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006687 BTC for 82.71 CZK @ 1,236,859 CZK\nFees are 0.29049385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (64.316667996392765890640422649 CZK)\nThe limits being 0.10 % (84.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48887996 BTC (278,569.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,236,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.06 % (326,105.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,363.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06841566 BTC (84,620.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.75 CZK over 2821 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006687 BTC for 82.71 CZK @ 1,236,859 CZK\nFees are 0.29049385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (64.316667996392765890640422649 CZK)\nThe limits being 0.10 % (84.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48887996 BTC (278,569.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,236,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.06 % (326,105.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,363.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06841566 BTC (84,620.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.75 CZK over 2821 transactions" + } + ] + }, + { + "id": 4504, + "type": "message", + "date": "2024-02-15T17:00:09", + "date_unixtime": "1708012809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006758 BTC for 82.71 CZK @ 1,223,821 CZK\nFees are 0.29048353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.638691999133544579765434769 CZK)\nThe limits being 0.10 % (83.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48894754 BTC (278,652.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,223,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.74 % (319,731.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,280.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06848324 BTC (83,811.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.74 CZK over 2822 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006758 BTC for 82.71 CZK @ 1,223,821 CZK\nFees are 0.29048353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.638691999133544579765434769 CZK)\nThe limits being 0.10 % (83.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48894754 BTC (278,652.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,223,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.74 % (319,731.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,280.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06848324 BTC (83,811.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.74 CZK over 2822 transactions" + } + ] + }, + { + "id": 4505, + "type": "message", + "date": "2024-02-15T21:00:06", + "date_unixtime": "1708027206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006751 BTC for 82.70 CZK @ 1,225,073 CZK\nFees are 0.29047951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.55569399561909557107079746 CZK)\nThe limits being 0.10 % (83.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48901505 BTC (278,735.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 569,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,225,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.93 % (320,343.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,197.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06855075 BTC (83,979.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.74 CZK over 2823 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006751 BTC for 82.70 CZK @ 1,225,073 CZK\nFees are 0.29047951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.55569399561909557107079746 CZK)\nThe limits being 0.10 % (83.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48901505 BTC (278,735.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 569,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,225,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.93 % (320,343.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,197.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06855075 BTC (83,979.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.74 CZK over 2823 transactions" + } + ] + }, + { + "id": 4506, + "type": "message", + "date": "2024-02-16T01:00:06", + "date_unixtime": "1708041606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006783 BTC for 82.71 CZK @ 1,219,356 CZK\nFees are 0.29049440 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (79.25813999887317578802952750 CZK)\nThe limits being 0.10 % (83.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48908288 BTC (278,818.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,219,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.89 % (317,547.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,114.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06861858 BTC (83,670.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.73 CZK over 2824 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006783 BTC for 82.71 CZK @ 1,219,356 CZK\nFees are 0.29049440 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (79.25813999887317578802952750 CZK)\nThe limits being 0.10 % (83.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48908288 BTC (278,818.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,219,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.89 % (317,547.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,114.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06861858 BTC (83,670.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.73 CZK over 2824 transactions" + } + ] + }, + { + "id": 4507, + "type": "message", + "date": "2024-02-16T05:00:06", + "date_unixtime": "1708056006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006736 BTC for 82.70 CZK @ 1,227,787 CZK\nFees are 0.29047618 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.844923997599849458013342852 CZK)\nThe limits being 0.10 % (84.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48915024 BTC (278,901.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,227,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.33 % (321,670.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,031.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06868594 BTC (84,331.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.73 CZK over 2825 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006736 BTC for 82.70 CZK @ 1,227,787 CZK\nFees are 0.29047618 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.844923997599849458013342852 CZK)\nThe limits being 0.10 % (84.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48915024 BTC (278,901.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,227,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.33 % (321,670.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,031.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06868594 BTC (84,331.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.73 CZK over 2825 transactions" + } + ] + }, + { + "id": 4508, + "type": "message", + "date": "2024-02-16T09:00:08", + "date_unixtime": "1708070408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006783 BTC for 82.71 CZK @ 1,219,319 CZK\nFees are 0.29048558 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.404587994503389691438949376 CZK)\nThe limits being 0.10 % (83.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48921807 BTC (278,984.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,219,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.82 % (317,528.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,948.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06875377 BTC (83,832.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.72 CZK over 2826 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006783 BTC for 82.71 CZK @ 1,219,319 CZK\nFees are 0.29048558 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (63.404587994503389691438949376 CZK)\nThe limits being 0.10 % (83.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48921807 BTC (278,984.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,219,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.82 % (317,528.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,948.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06875377 BTC (83,832.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.72 CZK over 2826 transactions" + } + ] + }, + { + "id": 4509, + "type": "message", + "date": "2024-02-16T13:00:07", + "date_unixtime": "1708084807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006733 BTC for 82.71 CZK @ 1,228,378 CZK\nFees are 0.29048657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.616191992810548495385710387 CZK)\nThe limits being 0.10 % (84.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48928540 BTC (279,067.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,228,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.37 % (321,959.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,865.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06882110 BTC (84,538.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.72 CZK over 2827 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006733 BTC for 82.71 CZK @ 1,228,378 CZK\nFees are 0.29048657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.616191992810548495385710387 CZK)\nThe limits being 0.10 % (84.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48928540 BTC (279,067.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,228,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.37 % (321,959.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,865.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06882110 BTC (84,538.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.72 CZK over 2827 transactions" + } + ] + }, + { + "id": 4510, + "type": "message", + "date": "2024-02-16T17:00:07", + "date_unixtime": "1708099207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006770 BTC for 82.71 CZK @ 1,221,683 CZK\nFees are 0.29049096 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (97.73463999193369734731983111 CZK)\nThe limits being 0.10 % (84.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48935310 BTC (279,150.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,221,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.16 % (318,683.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,782.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06888880 BTC (84,160.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.71 CZK over 2828 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006770 BTC for 82.71 CZK @ 1,221,683 CZK\nFees are 0.29049096 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (97.73463999193369734731983111 CZK)\nThe limits being 0.10 % (84.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48935310 BTC (279,150.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,221,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.16 % (318,683.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,782.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06888880 BTC (84,160.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.71 CZK over 2828 transactions" + } + ] + }, + { + "id": 4511, + "type": "message", + "date": "2024-02-16T21:00:05", + "date_unixtime": "1708113605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006783 BTC for 82.70 CZK @ 1,219,283 CZK\nFees are 0.29047700 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (136.55969599898806190716393552 CZK)\nThe limits being 0.10 % (84.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48942093 BTC (279,233.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,219,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.71 % (317,508.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,699.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06895663 BTC (84,077.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.70 CZK over 2829 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006783 BTC for 82.70 CZK @ 1,219,283 CZK\nFees are 0.29047700 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (136.55969599898806190716393552 CZK)\nThe limits being 0.10 % (84.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48942093 BTC (279,233.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,219,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.71 % (317,508.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,699.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06895663 BTC (84,077.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.70 CZK over 2829 transactions" + } + ] + }, + { + "id": 4512, + "type": "message", + "date": "2024-02-17T01:00:04", + "date_unixtime": "1708128004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006727 BTC for 82.70 CZK @ 1,229,354 CZK\nFees are 0.29045831 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.68764799580241267945126500 CZK)\nThe limits being 0.10 % (84.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48948820 BTC (279,316.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,229,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.44 % (322,437.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,616.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06902390 BTC (84,854.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.70 CZK over 2830 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006727 BTC for 82.70 CZK @ 1,229,354 CZK\nFees are 0.29045831 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.68764799580241267945126500 CZK)\nThe limits being 0.10 % (84.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48948820 BTC (279,316.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,229,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.44 % (322,437.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,616.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06902390 BTC (84,854.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.70 CZK over 2830 transactions" + } + ] + }, + { + "id": 4513, + "type": "message", + "date": "2024-02-17T05:00:05", + "date_unixtime": "1708142405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006742 BTC for 82.70 CZK @ 1,226,662 CZK\nFees are 0.29046853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.38614399645737101988191138 CZK)\nThe limits being 0.10 % (84.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48955562 BTC (279,399.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,226,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.93 % (321,119.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,533.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06909132 BTC (84,751.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.69 CZK over 2831 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006742 BTC for 82.70 CZK @ 1,226,662 CZK\nFees are 0.29046853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.38614399645737101988191138 CZK)\nThe limits being 0.10 % (84.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48955562 BTC (279,399.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,226,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.93 % (321,119.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,533.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06909132 BTC (84,751.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.69 CZK over 2831 transactions" + } + ] + }, + { + "id": 4514, + "type": "message", + "date": "2024-02-17T09:00:06", + "date_unixtime": "1708156806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006761 BTC for 82.70 CZK @ 1,223,170 CZK\nFees are 0.29045789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.282879997217253294876009696 CZK)\nThe limits being 0.10 % (84.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48962323 BTC (279,482.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,223,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.29 % (319,409.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,450.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06915893 BTC (84,593.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.69 CZK over 2832 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006761 BTC for 82.70 CZK @ 1,223,170 CZK\nFees are 0.29045789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.282879997217253294876009696 CZK)\nThe limits being 0.10 % (84.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48962323 BTC (279,482.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,223,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.29 % (319,409.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,450.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06915893 BTC (84,593.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.69 CZK over 2832 transactions" + } + ] + }, + { + "id": 4515, + "type": "message", + "date": "2024-02-17T13:00:05", + "date_unixtime": "1708171205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006790 BTC for 82.70 CZK @ 1,218,037 CZK\nFees are 0.29047963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.954367997135210856259351482 CZK)\nThe limits being 0.10 % (84.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48969113 BTC (279,565.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,218,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.35 % (316,896.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,367.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06922683 BTC (84,320.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.68 CZK over 2833 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006790 BTC for 82.70 CZK @ 1,218,037 CZK\nFees are 0.29047963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.954367997135210856259351482 CZK)\nThe limits being 0.10 % (84.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48969113 BTC (279,565.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,218,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.35 % (316,896.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,367.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06922683 BTC (84,320.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.68 CZK over 2833 transactions" + } + ] + }, + { + "id": 4516, + "type": "message", + "date": "2024-02-17T17:00:07", + "date_unixtime": "1708185607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006887 BTC for 82.71 CZK @ 1,200,916 CZK\nFees are 0.29048796 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.858623993313948588101945210 CZK)\nThe limits being 0.10 % (83.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48976000 BTC (279,648.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 570,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,200,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.32 % (308,511.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,284.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06929570 BTC (83,218.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.68 CZK over 2834 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006887 BTC for 82.71 CZK @ 1,200,916 CZK\nFees are 0.29048796 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.858623993313948588101945210 CZK)\nThe limits being 0.10 % (83.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48976000 BTC (279,648.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 570,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,200,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.32 % (308,511.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,284.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06929570 BTC (83,218.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.68 CZK over 2834 transactions" + } + ] + }, + { + "id": 4517, + "type": "message", + "date": "2024-02-17T21:00:05", + "date_unixtime": "1708200005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006829 BTC for 82.71 CZK @ 1,211,096 CZK\nFees are 0.29048326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.510143999589079165956201178 CZK)\nThe limits being 0.10 % (84.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48982829 BTC (279,731.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,211,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.07 % (313,497.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,201.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06936399 BTC (84,006.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.67 CZK over 2835 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006829 BTC for 82.71 CZK @ 1,211,096 CZK\nFees are 0.29048326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.510143999589079165956201178 CZK)\nThe limits being 0.10 % (84.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48982829 BTC (279,731.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,211,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.07 % (313,497.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,201.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06936399 BTC (84,006.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.67 CZK over 2835 transactions" + } + ] + }, + { + "id": 4518, + "type": "message", + "date": "2024-02-18T01:00:06", + "date_unixtime": "1708214406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006805 BTC for 82.70 CZK @ 1,215,299 CZK\nFees are 0.29046693 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.779135991260565976466643014 CZK)\nThe limits being 0.10 % (84.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48989634 BTC (279,814.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,215,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.77 % (315,555.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,118.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06943204 BTC (84,380.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.67 CZK over 2836 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006805 BTC for 82.70 CZK @ 1,215,299 CZK\nFees are 0.29046693 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.779135991260565976466643014 CZK)\nThe limits being 0.10 % (84.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48989634 BTC (279,814.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,215,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.77 % (315,555.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,118.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06943204 BTC (84,380.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.67 CZK over 2836 transactions" + } + ] + }, + { + "id": 4519, + "type": "message", + "date": "2024-02-18T05:00:06", + "date_unixtime": "1708228806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006816 BTC for 82.71 CZK @ 1,213,458 CZK\nFees are 0.29049573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.661311999550867737566404909 CZK)\nThe limits being 0.10 % (84.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.48996450 BTC (279,897.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,213,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.42 % (314,653.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,035.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06950020 BTC (84,335.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.66 CZK over 2837 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006816 BTC for 82.71 CZK @ 1,213,458 CZK\nFees are 0.29049573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.661311999550867737566404909 CZK)\nThe limits being 0.10 % (84.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.48996450 BTC (279,897.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,213,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.42 % (314,653.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,035.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06950020 BTC (84,335.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.66 CZK over 2837 transactions" + } + ] + }, + { + "id": 4520, + "type": "message", + "date": "2024-02-18T09:00:05", + "date_unixtime": "1708243205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006792 BTC for 82.70 CZK @ 1,217,600 CZK\nFees are 0.29046094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.926399998122002907374249018 CZK)\nThe limits being 0.10 % (84.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49003242 BTC (279,980.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,217,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.11 % (316,682.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,952.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06956812 BTC (84,706.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.65 CZK over 2838 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006792 BTC for 82.70 CZK @ 1,217,600 CZK\nFees are 0.29046094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.926399998122002907374249018 CZK)\nThe limits being 0.10 % (84.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49003242 BTC (279,980.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,217,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.11 % (316,682.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,952.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06956812 BTC (84,706.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.65 CZK over 2838 transactions" + } + ] + }, + { + "id": 4521, + "type": "message", + "date": "2024-02-18T13:00:05", + "date_unixtime": "1708257605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006770 BTC for 82.71 CZK @ 1,221,714 CZK\nFees are 0.29049833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.189695997833285126871312301 CZK)\nThe limits being 0.10 % (85.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49010012 BTC (280,063.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,221,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.80 % (318,698.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,869.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06963582 BTC (85,075.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.65 CZK over 2839 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006770 BTC for 82.71 CZK @ 1,221,714 CZK\nFees are 0.29049833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.189695997833285126871312301 CZK)\nThe limits being 0.10 % (85.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49010012 BTC (280,063.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,221,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.80 % (318,698.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,869.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06963582 BTC (85,075.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.65 CZK over 2839 transactions" + } + ] + }, + { + "id": 4522, + "type": "message", + "date": "2024-02-18T17:00:06", + "date_unixtime": "1708272006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006776 BTC for 82.71 CZK @ 1,220,628 CZK\nFees are 0.29049733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.120191993900921744378735821 CZK)\nThe limits being 0.10 % (85.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49016788 BTC (280,146.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,220,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.57 % (318,166.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,786.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06970358 BTC (85,082.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.64 CZK over 2840 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006776 BTC for 82.71 CZK @ 1,220,628 CZK\nFees are 0.29049733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.120191993900921744378735821 CZK)\nThe limits being 0.10 % (85.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49016788 BTC (280,146.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,220,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.57 % (318,166.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,786.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06970358 BTC (85,082.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.64 CZK over 2840 transactions" + } + ] + }, + { + "id": 4523, + "type": "message", + "date": "2024-02-18T21:00:05", + "date_unixtime": "1708286405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006773 BTC for 82.70 CZK @ 1,221,091 CZK\nFees are 0.29047886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.68727999175482886524949477 CZK)\nThe limits being 0.10 % (85.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49023561 BTC (280,229.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,221,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.62 % (318,392.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,703.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06977131 BTC (85,197.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.64 CZK over 2841 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006773 BTC for 82.70 CZK @ 1,221,091 CZK\nFees are 0.29047886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.68727999175482886524949477 CZK)\nThe limits being 0.10 % (85.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49023561 BTC (280,229.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,221,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.62 % (318,392.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,703.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06977131 BTC (85,197.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.64 CZK over 2841 transactions" + } + ] + }, + { + "id": 4524, + "type": "message", + "date": "2024-02-19T01:00:05", + "date_unixtime": "1708300805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006733 BTC for 82.70 CZK @ 1,228,262 CZK\nFees are 0.29045914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (98.26095999809370604044318078 CZK)\nThe limits being 0.10 % (85.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49030294 BTC (280,312.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,228,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.84 % (321,907.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,620.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06983864 BTC (85,780.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.63 CZK over 2842 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006733 BTC for 82.70 CZK @ 1,228,262 CZK\nFees are 0.29045914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (98.26095999809370604044318078 CZK)\nThe limits being 0.10 % (85.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49030294 BTC (280,312.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,228,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.84 % (321,907.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,620.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06983864 BTC (85,780.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.63 CZK over 2842 transactions" + } + ] + }, + { + "id": 4525, + "type": "message", + "date": "2024-02-19T05:00:07", + "date_unixtime": "1708315207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006737 BTC for 82.70 CZK @ 1,227,539 CZK\nFees are 0.29046062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (98.20311998993577399688887617 CZK)\nThe limits being 0.10 % (85.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49037031 BTC (280,395.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,227,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.68 % (321,553.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,537.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06990601 BTC (85,812.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.63 CZK over 2843 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006737 BTC for 82.70 CZK @ 1,227,539 CZK\nFees are 0.29046062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (98.20311998993577399688887617 CZK)\nThe limits being 0.10 % (85.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49037031 BTC (280,395.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,227,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.68 % (321,553.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,537.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06990601 BTC (85,812.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.63 CZK over 2843 transactions" + } + ] + }, + { + "id": 4526, + "type": "message", + "date": "2024-02-19T09:00:06", + "date_unixtime": "1708329606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006691 BTC for 82.71 CZK @ 1,236,075 CZK\nFees are 0.29048337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (79.108799996306456024449473920 CZK)\nThe limits being 0.10 % (86.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49043722 BTC (280,478.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,236,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.14 % (325,738.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,454.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.06997292 BTC (86,491.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.62 CZK over 2844 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006691 BTC for 82.71 CZK @ 1,236,075 CZK\nFees are 0.29048337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (79.108799996306456024449473920 CZK)\nThe limits being 0.10 % (86.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49043722 BTC (280,478.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,236,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.14 % (325,738.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,454.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.06997292 BTC (86,491.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.62 CZK over 2844 transactions" + } + ] + }, + { + "id": 4527, + "type": "message", + "date": "2024-02-19T13:00:05", + "date_unixtime": "1708344005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006698 BTC for 82.70 CZK @ 1,234,706 CZK\nFees are 0.29046521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (79.021183992782502209718954694 CZK)\nThe limits being 0.10 % (86.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49050420 BTC (280,561.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 571,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,234,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.86 % (325,066.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,371.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07003990 BTC (86,478.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.62 CZK over 2845 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006698 BTC for 82.70 CZK @ 1,234,706 CZK\nFees are 0.29046521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (79.021183992782502209718954694 CZK)\nThe limits being 0.10 % (86.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49050420 BTC (280,561.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 571,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,234,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.86 % (325,066.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,371.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07003990 BTC (86,478.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.62 CZK over 2845 transactions" + } + ] + }, + { + "id": 4528, + "type": "message", + "date": "2024-02-19T17:00:06", + "date_unixtime": "1708358406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006707 BTC for 82.71 CZK @ 1,233,127 CZK\nFees are 0.29048354 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.920127992758905779971382400 CZK)\nThe limits being 0.10 % (86.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49057127 BTC (280,644.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,233,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.55 % (324,292.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,288.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07010697 BTC (86,450.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.61 CZK over 2846 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006707 BTC for 82.71 CZK @ 1,233,127 CZK\nFees are 0.29048354 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.920127992758905779971382400 CZK)\nThe limits being 0.10 % (86.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49057127 BTC (280,644.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,233,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.55 % (324,292.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,288.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07010697 BTC (86,450.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.61 CZK over 2846 transactions" + } + ] + }, + { + "id": 4529, + "type": "message", + "date": "2024-02-19T21:00:05", + "date_unixtime": "1708372805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006758 BTC for 82.70 CZK @ 1,223,760 CZK\nFees are 0.29046905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.90079999669697048787367917 CZK)\nThe limits being 0.10 % (85.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49063885 BTC (280,727.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,223,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.88 % (319,696.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,205.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07017455 BTC (85,876.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.60 CZK over 2847 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006758 BTC for 82.70 CZK @ 1,223,760 CZK\nFees are 0.29046905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.90079999669697048787367917 CZK)\nThe limits being 0.10 % (85.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49063885 BTC (280,727.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,223,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.88 % (319,696.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,205.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07017455 BTC (85,876.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.60 CZK over 2847 transactions" + } + ] + }, + { + "id": 4530, + "type": "message", + "date": "2024-02-20T01:00:04", + "date_unixtime": "1708387204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006763 BTC for 82.70 CZK @ 1,222,889 CZK\nFees are 0.29047706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (117.39734399894616955398085114 CZK)\nThe limits being 0.10 % (85.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49070648 BTC (280,810.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,222,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.70 % (319,269.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,122.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07024218 BTC (85,898.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.60 CZK over 2848 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006763 BTC for 82.70 CZK @ 1,222,889 CZK\nFees are 0.29047706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (117.39734399894616955398085114 CZK)\nThe limits being 0.10 % (85.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49070648 BTC (280,810.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,222,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.70 % (319,269.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,122.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07024218 BTC (85,898.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.60 CZK over 2848 transactions" + } + ] + }, + { + "id": 4531, + "type": "message", + "date": "2024-02-20T05:00:05", + "date_unixtime": "1708401605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006771 BTC for 82.71 CZK @ 1,221,519 CZK\nFees are 0.29049487 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.72151999974686146854050993 CZK)\nThe limits being 0.10 % (85.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49077419 BTC (280,893.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,221,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.42 % (318,596.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,039.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07030989 BTC (85,884.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.59 CZK over 2849 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006771 BTC for 82.71 CZK @ 1,221,519 CZK\nFees are 0.29049487 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.72151999974686146854050993 CZK)\nThe limits being 0.10 % (85.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49077419 BTC (280,893.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,221,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.42 % (318,596.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,039.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07030989 BTC (85,884.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.59 CZK over 2849 transactions" + } + ] + }, + { + "id": 4532, + "type": "message", + "date": "2024-02-20T09:00:05", + "date_unixtime": "1708416005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006747 BTC for 82.70 CZK @ 1,225,722 CZK\nFees are 0.29046119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.446207998402508369070488358 CZK)\nThe limits being 0.10 % (86.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49084166 BTC (280,976.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,225,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.12 % (320,658.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,956.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07037736 BTC (86,263.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.59 CZK over 2850 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006747 BTC for 82.70 CZK @ 1,225,722 CZK\nFees are 0.29046119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (78.446207998402508369070488358 CZK)\nThe limits being 0.10 % (86.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49084166 BTC (280,976.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,225,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.12 % (320,658.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,956.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07037736 BTC (86,263.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.59 CZK over 2850 transactions" + } + ] + }, + { + "id": 4533, + "type": "message", + "date": "2024-02-20T13:00:05", + "date_unixtime": "1708430405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006715 BTC for 82.71 CZK @ 1,231,712 CZK\nFees are 0.29049630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (98.53695999667581929367838032 CZK)\nThe limits being 0.10 % (86.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49090881 BTC (281,059.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,231,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.14 % (323,598.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,873.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07044451 BTC (86,767.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.58 CZK over 2851 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006715 BTC for 82.71 CZK @ 1,231,712 CZK\nFees are 0.29049630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (98.53695999667581929367838032 CZK)\nThe limits being 0.10 % (86.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49090881 BTC (281,059.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,231,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.14 % (323,598.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,873.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07044451 BTC (86,767.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.58 CZK over 2851 transactions" + } + ] + }, + { + "id": 4534, + "type": "message", + "date": "2024-02-20T17:00:07", + "date_unixtime": "1708444807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006811 BTC for 82.71 CZK @ 1,214,304 CZK\nFees are 0.29048501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.14431998941891604315156825 CZK)\nThe limits being 0.10 % (85.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49097692 BTC (281,142.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,214,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.06 % (315,052.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,790.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07051262 BTC (85,623.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.58 CZK over 2852 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006811 BTC for 82.71 CZK @ 1,214,304 CZK\nFees are 0.29048501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.14431998941891604315156825 CZK)\nThe limits being 0.10 % (85.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49097692 BTC (281,142.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,214,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.06 % (315,052.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,790.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07051262 BTC (85,623.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.58 CZK over 2852 transactions" + } + ] + }, + { + "id": 4535, + "type": "message", + "date": "2024-02-20T21:00:06", + "date_unixtime": "1708459206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006736 BTC for 82.70 CZK @ 1,227,765 CZK\nFees are 0.29047098 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.50967998939578458767236288 CZK)\nThe limits being 0.10 % (86.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49104428 BTC (281,225.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,227,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.38 % (321,661.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,707.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07057998 BTC (86,655.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.57 CZK over 2853 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006736 BTC for 82.70 CZK @ 1,227,765 CZK\nFees are 0.29047098 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.50967998939578458767236288 CZK)\nThe limits being 0.10 % (86.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49104428 BTC (281,225.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,227,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.38 % (321,661.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,707.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07057998 BTC (86,655.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.57 CZK over 2853 transactions" + } + ] + }, + { + "id": 4536, + "type": "message", + "date": "2024-02-21T01:00:04", + "date_unixtime": "1708473604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006731 BTC for 82.71 CZK @ 1,228,724 CZK\nFees are 0.29048208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.61708799413018630307221412 CZK)\nThe limits being 0.10 % (86.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49111159 BTC (281,308.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,228,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.51 % (322,132.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,624.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07064729 BTC (86,806.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.57 CZK over 2854 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006731 BTC for 82.71 CZK @ 1,228,724 CZK\nFees are 0.29048208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (137.61708799413018630307221412 CZK)\nThe limits being 0.10 % (86.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49111159 BTC (281,308.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,228,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.51 % (322,132.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,624.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07064729 BTC (86,806.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.57 CZK over 2854 transactions" + } + ] + }, + { + "id": 4537, + "type": "message", + "date": "2024-02-21T05:00:06", + "date_unixtime": "1708488006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006755 BTC for 82.71 CZK @ 1,224,392 CZK\nFees are 0.29049005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.95135998985047522420602650 CZK)\nThe limits being 0.10 % (86.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49117914 BTC (281,391.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,224,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.72 % (320,004.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,541.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07071484 BTC (86,582.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.56 CZK over 2855 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006755 BTC for 82.71 CZK @ 1,224,392 CZK\nFees are 0.29049005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.95135998985047522420602650 CZK)\nThe limits being 0.10 % (86.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49117914 BTC (281,391.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,224,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.72 % (320,004.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,541.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07071484 BTC (86,582.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.56 CZK over 2855 transactions" + } + ] + }, + { + "id": 4538, + "type": "message", + "date": "2024-02-21T09:00:07", + "date_unixtime": "1708502407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006804 BTC for 82.71 CZK @ 1,215,589 CZK\nFees are 0.29049355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.24711999477431576197008296 CZK)\nThe limits being 0.10 % (86.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49124718 BTC (281,474.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 572,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,215,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.15 % (315,680.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,458.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07078288 BTC (86,042.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.56 CZK over 2856 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006804 BTC for 82.71 CZK @ 1,215,589 CZK\nFees are 0.29049355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (97.24711999477431576197008296 CZK)\nThe limits being 0.10 % (86.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49124718 BTC (281,474.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 572,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,215,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.15 % (315,680.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,458.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07078288 BTC (86,042.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.56 CZK over 2856 transactions" + } + ] + }, + { + "id": 4539, + "type": "message", + "date": "2024-02-21T13:00:05", + "date_unixtime": "1708516805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006895 BTC for 82.71 CZK @ 1,199,500 CZK\nFees are 0.29048248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.95999999132839268506564949 CZK)\nThe limits being 0.10 % (84.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49131613 BTC (281,557.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,199,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.31 % (307,776.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,375.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07085183 BTC (84,986.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.55 CZK over 2857 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006895 BTC for 82.71 CZK @ 1,199,500 CZK\nFees are 0.29048248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.95999999132839268506564949 CZK)\nThe limits being 0.10 % (84.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49131613 BTC (281,557.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,199,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.31 % (307,776.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,375.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07085183 BTC (84,986.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.55 CZK over 2857 transactions" + } + ] + }, + { + "id": 4540, + "type": "message", + "date": "2024-02-21T17:00:06", + "date_unixtime": "1708531206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006897 BTC for 82.71 CZK @ 1,199,181 CZK\nFees are 0.29048946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (115.12137598960402401945517787 CZK)\nThe limits being 0.10 % (85.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49138510 BTC (281,640.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,199,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.22 % (307,619.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,292.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07092080 BTC (85,046.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.54 CZK over 2858 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006897 BTC for 82.71 CZK @ 1,199,181 CZK\nFees are 0.29048946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (115.12137598960402401945517787 CZK)\nThe limits being 0.10 % (85.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49138510 BTC (281,640.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,199,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.22 % (307,619.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,292.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07092080 BTC (85,046.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.54 CZK over 2858 transactions" + } + ] + }, + { + "id": 4541, + "type": "message", + "date": "2024-02-21T21:00:06", + "date_unixtime": "1708545606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006909 BTC for 82.70 CZK @ 1,197,023 CZK\nFees are 0.29047122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (134.06657598910399215713594112 CZK)\nThe limits being 0.10 % (84.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49145419 BTC (281,723.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,197,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.82 % (306,558.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,209.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07098989 BTC (84,976.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.54 CZK over 2859 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006909 BTC for 82.70 CZK @ 1,197,023 CZK\nFees are 0.29047122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (134.06657598910399215713594112 CZK)\nThe limits being 0.10 % (84.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49145419 BTC (281,723.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,197,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.82 % (306,558.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,209.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07098989 BTC (84,976.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.54 CZK over 2859 transactions" + } + ] + }, + { + "id": 4542, + "type": "message", + "date": "2024-02-22T01:00:04", + "date_unixtime": "1708560004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006814 BTC for 82.71 CZK @ 1,213,826 CZK\nFees are 0.29049856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (135.94851199551203894675065214 CZK)\nThe limits being 0.10 % (86.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49152233 BTC (281,806.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,213,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.71 % (314,816.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,126.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07105803 BTC (86,252.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.53 CZK over 2860 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006814 BTC for 82.71 CZK @ 1,213,826 CZK\nFees are 0.29049856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (135.94851199551203894675065214 CZK)\nThe limits being 0.10 % (86.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49152233 BTC (281,806.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,213,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.71 % (314,816.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,126.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07105803 BTC (86,252.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.53 CZK over 2860 transactions" + } + ] + }, + { + "id": 4543, + "type": "message", + "date": "2024-02-22T05:00:07", + "date_unixtime": "1708574407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006850 BTC for 82.71 CZK @ 1,207,402 CZK\nFees are 0.29048779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (135.22902398452132863445095452 CZK)\nThe limits being 0.10 % (85.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49159083 BTC (281,889.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,207,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.56 % (311,658.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,043.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07112653 BTC (85,878.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.53 CZK over 2861 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006850 BTC for 82.71 CZK @ 1,207,402 CZK\nFees are 0.29048779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (135.22902398452132863445095452 CZK)\nThe limits being 0.10 % (85.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49159083 BTC (281,889.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,207,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.56 % (311,658.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,043.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07112653 BTC (85,878.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.53 CZK over 2861 transactions" + } + ] + }, + { + "id": 4544, + "type": "message", + "date": "2024-02-22T09:00:06", + "date_unixtime": "1708588806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006850 BTC for 82.70 CZK @ 1,207,338 CZK\nFees are 0.29047239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.58703999359904567590077066 CZK)\nThe limits being 0.10 % (85.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49165933 BTC (281,972.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,207,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.52 % (311,626.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,960.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07119503 BTC (85,956.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.52 CZK over 2862 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006850 BTC for 82.70 CZK @ 1,207,338 CZK\nFees are 0.29047239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.58703999359904567590077066 CZK)\nThe limits being 0.10 % (85.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49165933 BTC (281,972.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,207,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.52 % (311,626.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,960.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07119503 BTC (85,956.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.52 CZK over 2862 transactions" + } + ] + }, + { + "id": 4545, + "type": "message", + "date": "2024-02-22T13:00:05", + "date_unixtime": "1708603205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006869 BTC for 82.70 CZK @ 1,204,002 CZK\nFees are 0.29047325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.32015999903670970209594706 CZK)\nThe limits being 0.10 % (85.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49172802 BTC (282,055.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,204,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.90 % (309,986.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,877.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07126372 BTC (85,801.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.52 CZK over 2863 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006869 BTC for 82.70 CZK @ 1,204,002 CZK\nFees are 0.29047325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.32015999903670970209594706 CZK)\nThe limits being 0.10 % (85.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49172802 BTC (282,055.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,204,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.90 % (309,986.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,877.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07126372 BTC (85,801.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.52 CZK over 2863 transactions" + } + ] + }, + { + "id": 4546, + "type": "message", + "date": "2024-02-22T17:00:06", + "date_unixtime": "1708617606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006830 BTC for 82.70 CZK @ 1,210,859 CZK\nFees are 0.29046894 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.86871999538948964130667116 CZK)\nThe limits being 0.10 % (86.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49179632 BTC (282,138.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,210,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.07 % (313,357.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,794.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07133202 BTC (86,373.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.51 CZK over 2864 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006830 BTC for 82.70 CZK @ 1,210,859 CZK\nFees are 0.29046894 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.86871999538948964130667116 CZK)\nThe limits being 0.10 % (86.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49179632 BTC (282,138.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,210,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.07 % (313,357.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,794.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07133202 BTC (86,373.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.51 CZK over 2864 transactions" + } + ] + }, + { + "id": 4547, + "type": "message", + "date": "2024-02-22T21:00:05", + "date_unixtime": "1708632005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006847 BTC for 82.71 CZK @ 1,207,964 CZK\nFees are 0.29049572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (115.96454399611582915324333287 CZK)\nThe limits being 0.10 % (86.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49186479 BTC (282,221.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,207,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.53 % (311,933.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,711.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07140049 BTC (86,249.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.51 CZK over 2865 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006847 BTC for 82.71 CZK @ 1,207,964 CZK\nFees are 0.29049572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (115.96454399611582915324333287 CZK)\nThe limits being 0.10 % (86.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49186479 BTC (282,221.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,207,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.53 % (311,933.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,711.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07140049 BTC (86,249.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.51 CZK over 2865 transactions" + } + ] + }, + { + "id": 4548, + "type": "message", + "date": "2024-02-23T01:00:05", + "date_unixtime": "1708646405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006872 BTC for 82.70 CZK @ 1,203,473 CZK\nFees are 0.29047243 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.27783999308589900424184737 CZK)\nThe limits being 0.10 % (86.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49193351 BTC (282,304.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,203,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.71 % (309,724.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,628.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07146921 BTC (86,011.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.50 CZK over 2866 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006872 BTC for 82.70 CZK @ 1,203,473 CZK\nFees are 0.29047243 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.27783999308589900424184737 CZK)\nThe limits being 0.10 % (86.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49193351 BTC (282,304.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,203,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.71 % (309,724.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,628.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07146921 BTC (86,011.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.50 CZK over 2866 transactions" + } + ] + }, + { + "id": 4549, + "type": "message", + "date": "2024-02-23T05:00:05", + "date_unixtime": "1708660805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006905 BTC for 82.71 CZK @ 1,197,769 CZK\nFees are 0.29048397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.82151999644978996394588528 CZK)\nThe limits being 0.10 % (85.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49200256 BTC (282,387.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 573,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,197,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.69 % (306,917.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,545.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07153826 BTC (85,686.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.50 CZK over 2867 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006905 BTC for 82.71 CZK @ 1,197,769 CZK\nFees are 0.29048397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.82151999644978996394588528 CZK)\nThe limits being 0.10 % (85.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49200256 BTC (282,387.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 573,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,197,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.69 % (306,917.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,545.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07153826 BTC (85,686.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.50 CZK over 2867 transactions" + } + ] + }, + { + "id": 4550, + "type": "message", + "date": "2024-02-23T09:00:06", + "date_unixtime": "1708675206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006927 BTC for 82.71 CZK @ 1,193,976 CZK\nFees are 0.29048667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.414463998784678052973104314 CZK)\nThe limits being 0.10 % (85.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49207183 BTC (282,470.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,193,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.99 % (305,051.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,462.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07160753 BTC (85,497.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.49 CZK over 2868 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006927 BTC for 82.71 CZK @ 1,193,976 CZK\nFees are 0.29048667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.414463998784678052973104314 CZK)\nThe limits being 0.10 % (85.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49207183 BTC (282,470.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,193,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.99 % (305,051.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,462.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07160753 BTC (85,497.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.49 CZK over 2868 transactions" + } + ] + }, + { + "id": 4551, + "type": "message", + "date": "2024-02-23T13:00:05", + "date_unixtime": "1708689605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006886 BTC for 82.70 CZK @ 1,200,975 CZK\nFees are 0.29046005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.862399995600643174390649280 CZK)\nThe limits being 0.10 % (86.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49214069 BTC (282,553.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,200,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.18 % (308,495.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,379.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07167639 BTC (86,081.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.48 CZK over 2869 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006886 BTC for 82.70 CZK @ 1,200,975 CZK\nFees are 0.29046005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.862399995600643174390649280 CZK)\nThe limits being 0.10 % (86.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49214069 BTC (282,553.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,200,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.18 % (308,495.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,379.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07167639 BTC (86,081.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.48 CZK over 2869 transactions" + } + ] + }, + { + "id": 4552, + "type": "message", + "date": "2024-02-23T17:00:07", + "date_unixtime": "1708704007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006926 BTC for 82.70 CZK @ 1,194,060 CZK\nFees are 0.29046517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.419839995764175659520295770 CZK)\nThe limits being 0.10 % (85.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49220995 BTC (282,636.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,194,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.94 % (305,091.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,296.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07174565 BTC (85,668.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.48 CZK over 2870 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006926 BTC for 82.70 CZK @ 1,194,060 CZK\nFees are 0.29046517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.419839995764175659520295770 CZK)\nThe limits being 0.10 % (85.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49220995 BTC (282,636.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,194,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.94 % (305,091.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,296.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07174565 BTC (85,668.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.48 CZK over 2870 transactions" + } + ] + }, + { + "id": 4553, + "type": "message", + "date": "2024-02-23T21:00:06", + "date_unixtime": "1708718406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006896 BTC for 82.70 CZK @ 1,199,278 CZK\nFees are 0.29047084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (134.31913598692280036114897165 CZK)\nThe limits being 0.10 % (86.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49227891 BTC (282,719.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,199,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.82 % (307,659.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,213.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07181461 BTC (86,125.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.47 CZK over 2871 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006896 BTC for 82.70 CZK @ 1,199,278 CZK\nFees are 0.29047084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (134.31913598692280036114897165 CZK)\nThe limits being 0.10 % (86.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49227891 BTC (282,719.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,199,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.82 % (307,659.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,213.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07181461 BTC (86,125.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.47 CZK over 2871 transactions" + } + ] + }, + { + "id": 4554, + "type": "message", + "date": "2024-02-24T01:00:05", + "date_unixtime": "1708732805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006938 BTC for 82.71 CZK @ 1,192,094 CZK\nFees are 0.29048935 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (114.44102399169927450521617693 CZK)\nThe limits being 0.10 % (85.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49234829 BTC (282,802.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,192,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.54 % (304,123.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,130.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07188399 BTC (85,692.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.47 CZK over 2872 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006938 BTC for 82.71 CZK @ 1,192,094 CZK\nFees are 0.29048935 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (114.44102399169927450521617693 CZK)\nThe limits being 0.10 % (85.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49234829 BTC (282,802.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,192,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.54 % (304,123.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,130.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07188399 BTC (85,692.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.47 CZK over 2872 transactions" + } + ] + }, + { + "id": 4555, + "type": "message", + "date": "2024-02-24T05:00:06", + "date_unixtime": "1708747206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006927 BTC for 82.71 CZK @ 1,194,000 CZK\nFees are 0.29049251 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.41600000 CZK)\nThe limits being 0.10 % (85.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49241756 BTC (282,885.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,194,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.84 % (305,061.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,047.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07195326 BTC (85,912.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.46 CZK over 2873 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006927 BTC for 82.71 CZK @ 1,194,000 CZK\nFees are 0.29049251 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.41600000 CZK)\nThe limits being 0.10 % (85.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49241756 BTC (282,885.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,194,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.84 % (305,061.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,047.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07195326 BTC (85,912.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.46 CZK over 2873 transactions" + } + ] + }, + { + "id": 4556, + "type": "message", + "date": "2024-02-24T09:00:06", + "date_unixtime": "1708761606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006911 BTC for 82.70 CZK @ 1,196,642 CZK\nFees are 0.29046282 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.585087999843118900084691283 CZK)\nThe limits being 0.10 % (86.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49248667 BTC (282,968.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,196,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.27 % (306,361.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,964.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07202237 BTC (86,184.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.46 CZK over 2874 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006911 BTC for 82.70 CZK @ 1,196,642 CZK\nFees are 0.29046282 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.585087999843118900084691283 CZK)\nThe limits being 0.10 % (86.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49248667 BTC (282,968.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,196,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.27 % (306,361.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,964.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07202237 BTC (86,184.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.46 CZK over 2874 transactions" + } + ] + }, + { + "id": 4557, + "type": "message", + "date": "2024-02-24T13:00:05", + "date_unixtime": "1708776005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006906 BTC for 82.70 CZK @ 1,197,559 CZK\nFees are 0.29047510 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.643775994560595979522006016 CZK)\nThe limits being 0.10 % (86.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49255573 BTC (283,051.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,197,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.39 % (306,813.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,881.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07209143 BTC (86,333.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.45 CZK over 2875 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006906 BTC for 82.70 CZK @ 1,197,559 CZK\nFees are 0.29047510 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.643775994560595979522006016 CZK)\nThe limits being 0.10 % (86.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49255573 BTC (283,051.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,197,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.39 % (306,813.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,881.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07209143 BTC (86,333.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.45 CZK over 2875 transactions" + } + ] + }, + { + "id": 4558, + "type": "message", + "date": "2024-02-24T17:00:04", + "date_unixtime": "1708790404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006908 BTC for 82.70 CZK @ 1,197,156 CZK\nFees are 0.29046145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.617983992909587722646475610 CZK)\nThe limits being 0.10 % (86.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49262481 BTC (283,134.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,197,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.29 % (306,614.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,798.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07216051 BTC (86,387.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.45 CZK over 2876 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006908 BTC for 82.70 CZK @ 1,197,156 CZK\nFees are 0.29046145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (76.617983992909587722646475610 CZK)\nThe limits being 0.10 % (86.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49262481 BTC (283,134.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,197,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.29 % (306,614.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,798.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07216051 BTC (86,387.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.45 CZK over 2876 transactions" + } + ] + }, + { + "id": 4559, + "type": "message", + "date": "2024-02-24T21:00:06", + "date_unixtime": "1708804806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006853 BTC for 82.70 CZK @ 1,206,835 CZK\nFees are 0.29047854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (135.16551998546456147101080845 CZK)\nThe limits being 0.10 % (87.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49269334 BTC (283,217.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,206,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.94 % (311,382.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,715.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07222904 BTC (87,168.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.44 CZK over 2877 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006853 BTC for 82.70 CZK @ 1,206,835 CZK\nFees are 0.29047854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (135.16551998546456147101080845 CZK)\nThe limits being 0.10 % (87.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49269334 BTC (283,217.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,206,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.94 % (311,382.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,715.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07222904 BTC (87,168.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.44 CZK over 2877 transactions" + } + ] + }, + { + "id": 4560, + "type": "message", + "date": "2024-02-25T01:00:04", + "date_unixtime": "1708819204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006844 BTC for 82.70 CZK @ 1,208,416 CZK\nFees are 0.29047709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (116.00793598792304083574234772 CZK)\nThe limits being 0.10 % (87.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49276178 BTC (283,300.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 574,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,208,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.19 % (312,160.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,632.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07229748 BTC (87,365.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.44 CZK over 2878 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006844 BTC for 82.70 CZK @ 1,208,416 CZK\nFees are 0.29047709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (116.00793598792304083574234772 CZK)\nThe limits being 0.10 % (87.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49276178 BTC (283,300.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 574,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,208,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.19 % (312,160.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,632.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07229748 BTC (87,365.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.44 CZK over 2878 transactions" + } + ] + }, + { + "id": 4561, + "type": "message", + "date": "2024-02-25T05:00:05", + "date_unixtime": "1708833605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006841 BTC for 82.71 CZK @ 1,208,986 CZK\nFees are 0.29048672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.375103997287086193790232941 CZK)\nThe limits being 0.10 % (87.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49283019 BTC (283,383.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,208,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.25 % (312,441.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,549.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07236589 BTC (87,489.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.43 CZK over 2879 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006841 BTC for 82.71 CZK @ 1,208,986 CZK\nFees are 0.29048672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.375103997287086193790232941 CZK)\nThe limits being 0.10 % (87.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49283019 BTC (283,383.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,208,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.25 % (312,441.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,549.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07236589 BTC (87,489.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.43 CZK over 2879 transactions" + } + ] + }, + { + "id": 4562, + "type": "message", + "date": "2024-02-25T09:00:05", + "date_unixtime": "1708848005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006825 BTC for 82.71 CZK @ 1,211,808 CZK\nFees are 0.29048378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.555711994393249998631164550 CZK)\nThe limits being 0.10 % (87.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49289844 BTC (283,466.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,211,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.71 % (313,831.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,466.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07243414 BTC (87,776.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.43 CZK over 2880 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006825 BTC for 82.71 CZK @ 1,211,808 CZK\nFees are 0.29048378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.555711994393249998631164550 CZK)\nThe limits being 0.10 % (87.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49289844 BTC (283,466.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,211,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.71 % (313,831.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,466.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07243414 BTC (87,776.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.43 CZK over 2880 transactions" + } + ] + }, + { + "id": 4563, + "type": "message", + "date": "2024-02-25T13:00:04", + "date_unixtime": "1708862404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006838 BTC for 82.70 CZK @ 1,209,396 CZK\nFees are 0.29045780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.401343995635049190949547309 CZK)\nThe limits being 0.10 % (87.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49296682 BTC (283,549.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,209,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.26 % (312,642.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,383.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07250252 BTC (87,684.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.42 CZK over 2881 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006838 BTC for 82.70 CZK @ 1,209,396 CZK\nFees are 0.29045780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.401343995635049190949547309 CZK)\nThe limits being 0.10 % (87.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49296682 BTC (283,549.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,209,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.26 % (312,642.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,383.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07250252 BTC (87,684.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.42 CZK over 2881 transactions" + } + ] + }, + { + "id": 4564, + "type": "message", + "date": "2024-02-25T17:00:04", + "date_unixtime": "1708876804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006852 BTC for 82.71 CZK @ 1,207,099 CZK\nFees are 0.29049968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.254335997970908009939525728 CZK)\nThe limits being 0.10 % (87.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49303534 BTC (283,632.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,207,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.83 % (311,510.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,300.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07257104 BTC (87,600.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.42 CZK over 2882 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006852 BTC for 82.71 CZK @ 1,207,099 CZK\nFees are 0.29049968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.254335997970908009939525728 CZK)\nThe limits being 0.10 % (87.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49303534 BTC (283,632.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,207,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.83 % (311,510.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,300.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07257104 BTC (87,600.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.42 CZK over 2882 transactions" + } + ] + }, + { + "id": 4565, + "type": "message", + "date": "2024-02-25T21:00:05", + "date_unixtime": "1708891205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006838 BTC for 82.71 CZK @ 1,209,550 CZK\nFees are 0.29049479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.411199998600977304791521574 CZK)\nThe limits being 0.10 % (87.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49310372 BTC (283,715.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,209,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.22 % (312,718.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,217.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07263942 BTC (87,861.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.41 CZK over 2883 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006838 BTC for 82.71 CZK @ 1,209,550 CZK\nFees are 0.29049479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (77.411199998600977304791521574 CZK)\nThe limits being 0.10 % (87.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49310372 BTC (283,715.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,209,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.22 % (312,718.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,217.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07263942 BTC (87,861.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.41 CZK over 2883 transactions" + } + ] + }, + { + "id": 4566, + "type": "message", + "date": "2024-02-26T01:00:06", + "date_unixtime": "1708905606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006826 BTC for 82.71 CZK @ 1,211,664 CZK\nFees are 0.29049182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (58.159871995627375676488866754 CZK)\nThe limits being 0.10 % (88.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49317198 BTC (283,798.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,211,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.56 % (313,760.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,134.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07270768 BTC (88,097.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.40 CZK over 2884 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006826 BTC for 82.71 CZK @ 1,211,664 CZK\nFees are 0.29049182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (58.159871995627375676488866754 CZK)\nThe limits being 0.10 % (88.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49317198 BTC (283,798.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,211,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.56 % (313,760.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,134.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07270768 BTC (88,097.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.40 CZK over 2884 transactions" + } + ] + }, + { + "id": 4567, + "type": "message", + "date": "2024-02-26T05:00:04", + "date_unixtime": "1708920004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006854 BTC for 82.70 CZK @ 1,206,634 CZK\nFees are 0.29047254 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (57.918431999818551614432648846 CZK)\nThe limits being 0.10 % (87.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49324052 BTC (283,881.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,206,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.65 % (311,279.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,051.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07277622 BTC (87,814.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.40 CZK over 2885 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006854 BTC for 82.70 CZK @ 1,206,634 CZK\nFees are 0.29047254 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (57.918431999818551614432648846 CZK)\nThe limits being 0.10 % (87.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49324052 BTC (283,881.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,206,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.65 % (311,279.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,051.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07277622 BTC (87,814.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.40 CZK over 2885 transactions" + } + ] + }, + { + "id": 4568, + "type": "message", + "date": "2024-02-26T09:00:07", + "date_unixtime": "1708934407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006881 BTC for 82.70 CZK @ 1,201,905 CZK\nFees are 0.29047390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.15239999921796745832255323 CZK)\nThe limits being 0.10 % (87.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49330933 BTC (283,964.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,201,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.80 % (308,946.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,968.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07284503 BTC (87,552.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.39 CZK over 2886 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006881 BTC for 82.70 CZK @ 1,201,905 CZK\nFees are 0.29047390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (96.15239999921796745832255323 CZK)\nThe limits being 0.10 % (87.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49330933 BTC (283,964.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,201,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.80 % (308,946.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,968.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07284503 BTC (87,552.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.39 CZK over 2886 transactions" + } + ] + }, + { + "id": 4569, + "type": "message", + "date": "2024-02-26T13:00:05", + "date_unixtime": "1708948805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006924 BTC for 82.71 CZK @ 1,194,533 CZK\nFees are 0.29049632 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.56263999168709631828749578 CZK)\nThe limits being 0.10 % (87.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49337857 BTC (284,047.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,194,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.49 % (305,309.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,885.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07291427 BTC (87,098.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.39 CZK over 2887 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006924 BTC for 82.71 CZK @ 1,194,533 CZK\nFees are 0.29049632 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (95.56263999168709631828749578 CZK)\nThe limits being 0.10 % (87.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49337857 BTC (284,047.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,194,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.49 % (305,309.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,885.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07291427 BTC (87,098.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.39 CZK over 2887 transactions" + } + ] + }, + { + "id": 4570, + "type": "message", + "date": "2024-02-26T17:00:05", + "date_unixtime": "1708963205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006697 BTC for 82.70 CZK @ 1,234,857 CZK\nFees are 0.29045736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (118.54627199069346580681218840 CZK)\nThe limits being 0.10 % (90.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49344554 BTC (284,130.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,234,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.46 % (325,204.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,802.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07298124 BTC (90,121.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.38 CZK over 2888 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006697 BTC for 82.70 CZK @ 1,234,857 CZK\nFees are 0.29045736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (118.54627199069346580681218840 CZK)\nThe limits being 0.10 % (90.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49344554 BTC (284,130.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,234,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.46 % (325,204.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,802.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07298124 BTC (90,121.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.38 CZK over 2888 transactions" + } + ] + }, + { + "id": 4571, + "type": "message", + "date": "2024-02-26T21:00:05", + "date_unixtime": "1708977605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006502 BTC for 82.71 CZK @ 1,272,000 CZK\nFees are 0.29048218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (142.46400000 CZK)\nThe limits being 0.10 % (92.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49351056 BTC (284,213.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,272,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.87 % (343,532.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,719.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07304626 BTC (92,914.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.38 CZK over 2889 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006502 BTC for 82.71 CZK @ 1,272,000 CZK\nFees are 0.29048218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (142.46400000 CZK)\nThe limits being 0.10 % (92.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49351056 BTC (284,213.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,272,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.87 % (343,532.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,719.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07304626 BTC (92,914.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.38 CZK over 2889 transactions" + } + ] + }, + { + "id": 4572, + "type": "message", + "date": "2024-02-27T01:00:05", + "date_unixtime": "1708992005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006500 BTC for 82.70 CZK @ 1,272,341 CZK\nFees are 0.29047068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (183.21710398344256640220765780 CZK)\nThe limits being 0.10 % (93.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49357556 BTC (284,296.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 575,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,272,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.90 % (343,700.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,636.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07311126 BTC (93,022.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.37 CZK over 2890 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006500 BTC for 82.70 CZK @ 1,272,341 CZK\nFees are 0.29047068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (183.21710398344256640220765780 CZK)\nThe limits being 0.10 % (93.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49357556 BTC (284,296.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 575,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,272,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.90 % (343,700.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,636.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07311126 BTC (93,022.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.37 CZK over 2890 transactions" + } + ] + }, + { + "id": 4573, + "type": "message", + "date": "2024-02-27T05:00:07", + "date_unixtime": "1709006407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006367 BTC for 82.70 CZK @ 1,298,963 CZK\nFees are 0.29048055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (166.26726398049734676864052617 CZK)\nThe limits being 0.10 % (95.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49363923 BTC (284,379.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,298,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.48 % (356,839.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,553.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07317493 BTC (95,051.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.37 CZK over 2891 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006367 BTC for 82.70 CZK @ 1,298,963 CZK\nFees are 0.29048055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (166.26726398049734676864052617 CZK)\nThe limits being 0.10 % (95.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49363923 BTC (284,379.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,298,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.48 % (356,839.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,553.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07317493 BTC (95,051.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.37 CZK over 2891 transactions" + } + ] + }, + { + "id": 4574, + "type": "message", + "date": "2024-02-27T09:00:07", + "date_unixtime": "1709020807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006326 BTC for 82.70 CZK @ 1,307,300 CZK\nFees are 0.29046237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (146.41759999470711189307231833 CZK)\nThe limits being 0.10 % (95.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49370249 BTC (284,462.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,307,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.89 % (360,954.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,470.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07323819 BTC (95,744.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.36 CZK over 2892 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006326 BTC for 82.70 CZK @ 1,307,300 CZK\nFees are 0.29046237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (146.41759999470711189307231833 CZK)\nThe limits being 0.10 % (95.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49370249 BTC (284,462.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,307,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.89 % (360,954.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,470.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07323819 BTC (95,744.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.36 CZK over 2892 transactions" + } + ] + }, + { + "id": 4575, + "type": "message", + "date": "2024-02-27T13:00:08", + "date_unixtime": "1709035208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006278 BTC for 82.71 CZK @ 1,317,421 CZK\nFees are 0.29049009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (147.55115198874661843788854332 CZK)\nThe limits being 0.10 % (96.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49376527 BTC (284,545.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,317,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.61 % (365,951.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,387.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07330097 BTC (96,568.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.36 CZK over 2893 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006278 BTC for 82.71 CZK @ 1,317,421 CZK\nFees are 0.29049009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (147.55115198874661843788854332 CZK)\nThe limits being 0.10 % (96.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49376527 BTC (284,545.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,317,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.61 % (365,951.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,387.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07330097 BTC (96,568.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.36 CZK over 2893 transactions" + } + ] + }, + { + "id": 4576, + "type": "message", + "date": "2024-02-27T17:00:09", + "date_unixtime": "1709049609", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006242 BTC for 82.71 CZK @ 1,324,979 CZK\nFees are 0.29048130 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (190.79697599510332867325782383 CZK)\nThe limits being 0.10 % (97.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49382769 BTC (284,628.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,324,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.88 % (369,683.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,304.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07336339 BTC (97,204.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.35 CZK over 2894 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006242 BTC for 82.71 CZK @ 1,324,979 CZK\nFees are 0.29048130 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (190.79697599510332867325782383 CZK)\nThe limits being 0.10 % (97.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49382769 BTC (284,628.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,324,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.88 % (369,683.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,304.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07336339 BTC (97,204.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.35 CZK over 2894 transactions" + } + ] + }, + { + "id": 4577, + "type": "message", + "date": "2024-02-27T21:00:05", + "date_unixtime": "1709064005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006188 BTC for 82.71 CZK @ 1,336,579 CZK\nFees are 0.29048945 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (342.16422395951596690188090875 CZK)\nThe limits being 0.10 % (98.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49388957 BTC (284,711.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.86 % (375,411.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,221.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07342527 BTC (98,138.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.35 CZK over 2895 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006188 BTC for 82.71 CZK @ 1,336,579 CZK\nFees are 0.29048945 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (342.16422395951596690188090875 CZK)\nThe limits being 0.10 % (98.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49388957 BTC (284,711.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.86 % (375,411.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,221.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07342527 BTC (98,138.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.35 CZK over 2895 transactions" + } + ] + }, + { + "id": 4578, + "type": "message", + "date": "2024-02-28T01:00:05", + "date_unixtime": "1709078405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006216 BTC for 82.70 CZK @ 1,330,512 CZK\nFees are 0.29047932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (319.32287999722977301452637776 CZK)\nThe limits being 0.10 % (97.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49395173 BTC (284,794.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,330,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.77 % (372,414.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,138.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07348743 BTC (97,775.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.34 CZK over 2896 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006216 BTC for 82.70 CZK @ 1,330,512 CZK\nFees are 0.29047932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (319.32287999722977301452637776 CZK)\nThe limits being 0.10 % (97.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49395173 BTC (284,794.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,330,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.77 % (372,414.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,138.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07348743 BTC (97,775.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.34 CZK over 2896 transactions" + } + ] + }, + { + "id": 4579, + "type": "message", + "date": "2024-02-28T05:00:05", + "date_unixtime": "1709092805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006219 BTC for 82.70 CZK @ 1,329,836 CZK\nFees are 0.29047186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (319.16063998869369651949003380 CZK)\nThe limits being 0.10 % (97.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49401392 BTC (284,877.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.61 % (372,080.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,055.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07354962 BTC (97,808.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.34 CZK over 2897 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006219 BTC for 82.70 CZK @ 1,329,836 CZK\nFees are 0.29047186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (319.16063998869369651949003380 CZK)\nThe limits being 0.10 % (97.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49401392 BTC (284,877.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.61 % (372,080.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,055.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07354962 BTC (97,808.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.34 CZK over 2897 transactions" + } + ] + }, + { + "id": 4580, + "type": "message", + "date": "2024-02-28T09:00:05", + "date_unixtime": "1709107205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006080 BTC for 82.71 CZK @ 1,360,364 CZK\nFees are 0.29049866 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (326.48735996381087247266147431 CZK)\nThe limits being 0.10 % (100.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49407472 BTC (284,960.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,755 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.86 % (387,161.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,972.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07361042 BTC (100,136.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.33 CZK over 2898 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006080 BTC for 82.71 CZK @ 1,360,364 CZK\nFees are 0.29049866 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (326.48735996381087247266147431 CZK)\nThe limits being 0.10 % (100.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49407472 BTC (284,960.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,755 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.86 % (387,161.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,972.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07361042 BTC (100,136.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.33 CZK over 2898 transactions" + } + ] + }, + { + "id": 4581, + "type": "message", + "date": "2024-02-28T13:00:08", + "date_unixtime": "1709121608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005992 BTC for 82.71 CZK @ 1,380,276 CZK\nFees are 0.29048463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (110.42207999638115727131275515 CZK)\nThe limits being 0.10 % (101.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49413464 BTC (285,043.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.28 % (396,998.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,889.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07367034 BTC (101,685.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.32 CZK over 2899 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005992 BTC for 82.71 CZK @ 1,380,276 CZK\nFees are 0.29048463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (110.42207999638115727131275515 CZK)\nThe limits being 0.10 % (101.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49413464 BTC (285,043.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.28 % (396,998.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,889.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07367034 BTC (101,685.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.32 CZK over 2899 transactions" + } + ] + }, + { + "id": 4582, + "type": "message", + "date": "2024-02-28T17:00:07", + "date_unixtime": "1709136007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005800 BTC for 82.70 CZK @ 1,425,844 CZK\nFees are 0.29045939 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (228.13503999450200161503702557 CZK)\nThe limits being 0.10 % (105.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49419264 BTC (285,126.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 576,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,425,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.13 % (419,515.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,806.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07372834 BTC (105,125.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.32 CZK over 2900 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005800 BTC for 82.70 CZK @ 1,425,844 CZK\nFees are 0.29045939 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (228.13503999450200161503702557 CZK)\nThe limits being 0.10 % (105.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49419264 BTC (285,126.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 576,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,425,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.13 % (419,515.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,806.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07372834 BTC (105,125.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.32 CZK over 2900 transactions" + } + ] + }, + { + "id": 4583, + "type": "message", + "date": "2024-02-28T21:00:07", + "date_unixtime": "1709150407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005942 BTC for 82.70 CZK @ 1,391,787 CZK\nFees are 0.29046302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (423.10324798781511428277702561 CZK)\nThe limits being 0.10 % (102.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49425206 BTC (285,209.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,391,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.19 % (402,684.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,723.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07378776 BTC (102,696.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.31 CZK over 2901 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005942 BTC for 82.70 CZK @ 1,391,787 CZK\nFees are 0.29046302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (423.10324798781511428277702561 CZK)\nThe limits being 0.10 % (102.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49425206 BTC (285,209.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,391,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.19 % (402,684.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,723.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07378776 BTC (102,696.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.31 CZK over 2901 transactions" + } + ] + }, + { + "id": 4584, + "type": "message", + "date": "2024-02-29T01:00:06", + "date_unixtime": "1709164806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005896 BTC for 82.71 CZK @ 1,402,781 CZK\nFees are 0.29049106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (426.44542396321152763157983691 CZK)\nThe limits being 0.10 % (103.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49431102 BTC (285,292.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,402,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.05 % (408,117.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,640.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07384672 BTC (103,590.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.31 CZK over 2902 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005896 BTC for 82.71 CZK @ 1,402,781 CZK\nFees are 0.29049106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (426.44542396321152763157983691 CZK)\nThe limits being 0.10 % (103.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49431102 BTC (285,292.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,402,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.05 % (408,117.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,640.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07384672 BTC (103,590.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.31 CZK over 2902 transactions" + } + ] + }, + { + "id": 4585, + "type": "message", + "date": "2024-02-29T05:00:07", + "date_unixtime": "1709179207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005932 BTC for 82.70 CZK @ 1,394,156 CZK\nFees are 0.29046776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (401.51692795781185271643650458 CZK)\nThe limits being 0.10 % (103.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49437034 BTC (285,375.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,394,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.52 % (403,854.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,557.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07390604 BTC (103,036.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.30 CZK over 2903 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005932 BTC for 82.70 CZK @ 1,394,156 CZK\nFees are 0.29046776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (401.51692795781185271643650458 CZK)\nThe limits being 0.10 % (103.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49437034 BTC (285,375.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,394,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.52 % (403,854.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,557.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07390604 BTC (103,036.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.30 CZK over 2903 transactions" + } + ] + }, + { + "id": 4586, + "type": "message", + "date": "2024-02-29T09:00:07", + "date_unixtime": "1709193607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005684 BTC for 82.70 CZK @ 1,455,000 CZK\nFees are 0.29047080 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (395.76000000 CZK)\nThe limits being 0.10 % (107.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49442718 BTC (285,458.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,455,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.01 % (433,933.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,474.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07396288 BTC (107,615.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.30 CZK over 2904 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005684 BTC for 82.70 CZK @ 1,455,000 CZK\nFees are 0.29047080 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (395.76000000 CZK)\nThe limits being 0.10 % (107.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49442718 BTC (285,458.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,455,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.01 % (433,933.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,474.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07396288 BTC (107,615.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.30 CZK over 2904 transactions" + } + ] + }, + { + "id": 4587, + "type": "message", + "date": "2024-02-29T13:00:09", + "date_unixtime": "1709208009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005631 BTC for 82.70 CZK @ 1,468,675 CZK\nFees are 0.29046690 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (281.98559999193021547651944885 CZK)\nThe limits being 0.10 % (108.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49448349 BTC (285,541.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,468,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.34 % (440,694.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,391.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07401919 BTC (108,710.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.29 CZK over 2905 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005631 BTC for 82.70 CZK @ 1,468,675 CZK\nFees are 0.29046690 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (281.98559999193021547651944885 CZK)\nThe limits being 0.10 % (108.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49448349 BTC (285,541.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,468,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.34 % (440,694.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,391.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07401919 BTC (108,710.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.29 CZK over 2905 transactions" + } + ] + }, + { + "id": 4588, + "type": "message", + "date": "2024-02-29T17:00:09", + "date_unixtime": "1709222409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005641 BTC for 82.71 CZK @ 1,466,235 CZK\nFees are 0.29049931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (304.97687997345225057450492148 CZK)\nThe limits being 0.10 % (108.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49453990 BTC (285,624.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,466,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.87 % (439,487.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,308.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07407560 BTC (108,612.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.29 CZK over 2906 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005641 BTC for 82.71 CZK @ 1,466,235 CZK\nFees are 0.29049931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (304.97687997345225057450492148 CZK)\nThe limits being 0.10 % (108.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49453990 BTC (285,624.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,466,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.87 % (439,487.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,308.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07407560 BTC (108,612.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.29 CZK over 2906 transactions" + } + ] + }, + { + "id": 4589, + "type": "message", + "date": "2024-02-29T21:00:08", + "date_unixtime": "1709236808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005737 BTC for 82.70 CZK @ 1,441,496 CZK\nFees are 0.29045825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (461.27871994819595595301402387 CZK)\nThe limits being 0.10 % (106.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49459727 BTC (285,707.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.54 % (427,252.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,225.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07413297 BTC (106,862.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.28 CZK over 2907 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005737 BTC for 82.70 CZK @ 1,441,496 CZK\nFees are 0.29045825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (461.27871994819595595301402387 CZK)\nThe limits being 0.10 % (106.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49459727 BTC (285,707.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.54 % (427,252.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,225.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07413297 BTC (106,862.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.28 CZK over 2907 transactions" + } + ] + }, + { + "id": 4590, + "type": "message", + "date": "2024-03-01T01:00:05", + "date_unixtime": "1709251205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005782 BTC for 82.70 CZK @ 1,430,374 CZK\nFees are 0.29047791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (457.71967996481357104165169402 CZK)\nThe limits being 0.10 % (106.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49465509 BTC (285,790.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.57 % (421,751.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,142.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07419079 BTC (106,120.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.28 CZK over 2908 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005782 BTC for 82.70 CZK @ 1,430,374 CZK\nFees are 0.29047791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (457.71967996481357104165169402 CZK)\nThe limits being 0.10 % (106.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49465509 BTC (285,790.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.57 % (421,751.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,142.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07419079 BTC (106,120.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.28 CZK over 2908 transactions" + } + ] + }, + { + "id": 4591, + "type": "message", + "date": "2024-03-01T05:00:04", + "date_unixtime": "1709265604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005781 BTC for 82.70 CZK @ 1,430,494 CZK\nFees are 0.29045204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (457.75807998074892175948442691 CZK)\nThe limits being 0.10 % (106.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49471290 BTC (285,873.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.55 % (421,810.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,059.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07424860 BTC (106,212.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.27 CZK over 2909 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005781 BTC for 82.70 CZK @ 1,430,494 CZK\nFees are 0.29045204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (457.75807998074892175948442691 CZK)\nThe limits being 0.10 % (106.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49471290 BTC (285,873.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.55 % (421,810.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,059.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07424860 BTC (106,212.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.27 CZK over 2909 transactions" + } + ] + }, + { + "id": 4592, + "type": "message", + "date": "2024-03-01T09:00:05", + "date_unixtime": "1709280005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005756 BTC for 82.71 CZK @ 1,436,898 CZK\nFees are 0.29049064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (183.92294399760670869469019654 CZK)\nThe limits being 0.10 % (106.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49477046 BTC (285,956.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 577,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,898 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.62 % (424,978.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,976.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07430616 BTC (106,770.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.27 CZK over 2910 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005756 BTC for 82.71 CZK @ 1,436,898 CZK\nFees are 0.29049064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (183.92294399760670869469019654 CZK)\nThe limits being 0.10 % (106.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49477046 BTC (285,956.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 577,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,898 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.62 % (424,978.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,976.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07430616 BTC (106,770.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.27 CZK over 2910 transactions" + } + ] + }, + { + "id": 4593, + "type": "message", + "date": "2024-03-01T13:00:02", + "date_unixtime": "1709294402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005723 BTC for 82.70 CZK @ 1,445,084 CZK\nFees are 0.29047065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (184.97075199861815116600895642 CZK)\nThe limits being 0.10 % (107.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49482769 BTC (286,039.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.99 % (429,028.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,893.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07436339 BTC (107,461.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.26 CZK over 2911 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005723 BTC for 82.70 CZK @ 1,445,084 CZK\nFees are 0.29047065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (184.97075199861815116600895642 CZK)\nThe limits being 0.10 % (107.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49482769 BTC (286,039.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.99 % (429,028.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,893.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07436339 BTC (107,461.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.26 CZK over 2911 transactions" + } + ] + }, + { + "id": 4594, + "type": "message", + "date": "2024-03-01T17:00:06", + "date_unixtime": "1709308806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005790 BTC for 82.71 CZK @ 1,428,464 CZK\nFees are 0.29049140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (182.84339197885122279276418545 CZK)\nThe limits being 0.10 % (106.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49488559 BTC (286,122.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.07 % (420,804.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,810.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07442129 BTC (106,308.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.26 CZK over 2912 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005790 BTC for 82.71 CZK @ 1,428,464 CZK\nFees are 0.29049140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (182.84339197885122279276418545 CZK)\nThe limits being 0.10 % (106.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49488559 BTC (286,122.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.07 % (420,804.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,810.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07442129 BTC (106,308.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.26 CZK over 2912 transactions" + } + ] + }, + { + "id": 4595, + "type": "message", + "date": "2024-03-01T21:00:02", + "date_unixtime": "1709323202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005734 BTC for 82.71 CZK @ 1,442,425 CZK\nFees are 0.29049345 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (161.55159999367404179546682530 CZK)\nThe limits being 0.10 % (107.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49494293 BTC (286,205.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.44 % (427,712.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,727.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07447863 BTC (107,429.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.25 CZK over 2913 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005734 BTC for 82.71 CZK @ 1,442,425 CZK\nFees are 0.29049345 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (161.55159999367404179546682530 CZK)\nThe limits being 0.10 % (107.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49494293 BTC (286,205.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.44 % (427,712.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,727.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07447863 BTC (107,429.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.25 CZK over 2913 transactions" + } + ] + }, + { + "id": 4596, + "type": "message", + "date": "2024-03-02T01:00:05", + "date_unixtime": "1709337605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005688 BTC for 82.71 CZK @ 1,454,048 CZK\nFees are 0.29048503 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (209.38291198526675622662453565 CZK)\nThe limits being 0.10 % (108.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49499981 BTC (286,288.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,454,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.41 % (433,465.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,644.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07453551 BTC (108,378.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.25 CZK over 2914 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005688 BTC for 82.71 CZK @ 1,454,048 CZK\nFees are 0.29048503 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (209.38291198526675622662453565 CZK)\nThe limits being 0.10 % (108.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49499981 BTC (286,288.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,454,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.41 % (433,465.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,644.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07453551 BTC (108,378.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.25 CZK over 2914 transactions" + } + ] + }, + { + "id": 4597, + "type": "message", + "date": "2024-03-02T05:00:05", + "date_unixtime": "1709352005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005692 BTC for 82.71 CZK @ 1,453,042 CZK\nFees are 0.29048819 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (162.74070398580372771196805558 CZK)\nThe limits being 0.10 % (108.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49505673 BTC (286,371.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,453,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.19 % (432,967.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,561.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07459243 BTC (108,385.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.24 CZK over 2915 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005692 BTC for 82.71 CZK @ 1,453,042 CZK\nFees are 0.29048819 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (162.74070398580372771196805558 CZK)\nThe limits being 0.10 % (108.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49505673 BTC (286,371.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,453,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.19 % (432,967.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,561.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07459243 BTC (108,385.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.24 CZK over 2915 transactions" + } + ] + }, + { + "id": 4598, + "type": "message", + "date": "2024-03-02T09:00:05", + "date_unixtime": "1709366405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005705 BTC for 82.70 CZK @ 1,449,684 CZK\nFees are 0.29047878 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (115.97471999622705281733040406 CZK)\nThe limits being 0.10 % (108.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49511378 BTC (286,454.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.57 % (431,304.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,478.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07464948 BTC (108,218.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.24 CZK over 2916 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005705 BTC for 82.70 CZK @ 1,449,684 CZK\nFees are 0.29047878 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (115.97471999622705281733040406 CZK)\nThe limits being 0.10 % (108.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49511378 BTC (286,454.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.57 % (431,304.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,478.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07464948 BTC (108,218.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.24 CZK over 2916 transactions" + } + ] + }, + { + "id": 4599, + "type": "message", + "date": "2024-03-02T13:00:05", + "date_unixtime": "1709380805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005732 BTC for 82.70 CZK @ 1,442,772 CZK\nFees are 0.29046199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (115.42175998798343967780597636 CZK)\nThe limits being 0.10 % (107.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49517110 BTC (286,537.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.33 % (427,881.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,395.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07470680 BTC (107,784.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.23 CZK over 2917 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005732 BTC for 82.70 CZK @ 1,442,772 CZK\nFees are 0.29046199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (115.42175998798343967780597636 CZK)\nThe limits being 0.10 % (107.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49517110 BTC (286,537.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.33 % (427,881.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,395.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07470680 BTC (107,784.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.23 CZK over 2917 transactions" + } + ] + }, + { + "id": 4600, + "type": "message", + "date": "2024-03-02T17:00:05", + "date_unixtime": "1709395205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005730 BTC for 82.71 CZK @ 1,443,429 CZK\nFees are 0.29049286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (115.47431999172181831304222308 CZK)\nThe limits being 0.10 % (107.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49522840 BTC (286,620.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.40 % (428,206.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,312.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07476410 BTC (107,916.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.22 CZK over 2918 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005730 BTC for 82.71 CZK @ 1,443,429 CZK\nFees are 0.29049286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (115.47431999172181831304222308 CZK)\nThe limits being 0.10 % (107.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49522840 BTC (286,620.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.40 % (428,206.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,312.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07476410 BTC (107,916.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.22 CZK over 2918 transactions" + } + ] + }, + { + "id": 4601, + "type": "message", + "date": "2024-03-02T21:00:06", + "date_unixtime": "1709409606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005712 BTC for 82.70 CZK @ 1,447,806 CZK\nFees are 0.29045843 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (185.31916798767339521757881030 CZK)\nThe limits being 0.10 % (108.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49528552 BTC (286,703.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.11 % (430,374.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,229.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07482122 BTC (108,326.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.22 CZK over 2919 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005712 BTC for 82.70 CZK @ 1,447,806 CZK\nFees are 0.29045843 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (185.31916798767339521757881030 CZK)\nThe limits being 0.10 % (108.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49528552 BTC (286,703.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.11 % (430,374.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,229.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07482122 BTC (108,326.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.22 CZK over 2919 transactions" + } + ] + }, + { + "id": 4602, + "type": "message", + "date": "2024-03-03T01:00:04", + "date_unixtime": "1709424004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005722 BTC for 82.70 CZK @ 1,445,357 CZK\nFees are 0.29047476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (185.00569598575555287357582958 CZK)\nThe limits being 0.10 % (108.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49534274 BTC (286,786.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 578,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.64 % (429,160.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,146.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07487844 BTC (108,226.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.21 CZK over 2920 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005722 BTC for 82.70 CZK @ 1,445,357 CZK\nFees are 0.29047476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (185.00569598575555287357582958 CZK)\nThe limits being 0.10 % (108.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49534274 BTC (286,786.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 578,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.64 % (429,160.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,146.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07487844 BTC (108,226.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.21 CZK over 2920 transactions" + } + ] + }, + { + "id": 4603, + "type": "message", + "date": "2024-03-03T05:00:04", + "date_unixtime": "1709438404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005723 BTC for 82.70 CZK @ 1,445,000 CZK\nFees are 0.29045377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (161.83999999024905056659545861 CZK)\nThe limits being 0.10 % (108.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49539997 BTC (286,869.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.54 % (428,983.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,063.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07493567 BTC (108,282.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.21 CZK over 2921 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005723 BTC for 82.70 CZK @ 1,445,000 CZK\nFees are 0.29045377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (161.83999999024905056659545861 CZK)\nThe limits being 0.10 % (108.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49539997 BTC (286,869.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.54 % (428,983.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,063.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07493567 BTC (108,282.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.21 CZK over 2921 transactions" + } + ] + }, + { + "id": 4604, + "type": "message", + "date": "2024-03-03T09:00:04", + "date_unixtime": "1709452804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005744 BTC for 82.71 CZK @ 1,439,946 CZK\nFees are 0.29049995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (138.23481599360455675331326430 CZK)\nThe limits being 0.10 % (107.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49545741 BTC (286,952.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.62 % (426,479.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,980.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07499311 BTC (107,986.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.20 CZK over 2922 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005744 BTC for 82.71 CZK @ 1,439,946 CZK\nFees are 0.29049995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (138.23481599360455675331326430 CZK)\nThe limits being 0.10 % (107.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49545741 BTC (286,952.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.62 % (426,479.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,980.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07499311 BTC (107,986.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.20 CZK over 2922 transactions" + } + ] + }, + { + "id": 4605, + "type": "message", + "date": "2024-03-03T13:00:04", + "date_unixtime": "1709467204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005733 BTC for 82.70 CZK @ 1,442,535 CZK\nFees are 0.29046494 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (138.48335999929081287185066814 CZK)\nThe limits being 0.10 % (108.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49551474 BTC (287,035.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.03 % (427,762.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,897.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07505044 BTC (108,262.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.20 CZK over 2923 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005733 BTC for 82.70 CZK @ 1,442,535 CZK\nFees are 0.29046494 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (138.48335999929081287185066814 CZK)\nThe limits being 0.10 % (108.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49551474 BTC (287,035.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.03 % (427,762.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,897.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07505044 BTC (108,262.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.20 CZK over 2923 transactions" + } + ] + }, + { + "id": 4606, + "type": "message", + "date": "2024-03-03T17:00:04", + "date_unixtime": "1709481604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005727 BTC for 82.70 CZK @ 1,443,999 CZK\nFees are 0.29045543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (138.62390398403910044545505084 CZK)\nThe limits being 0.10 % (108.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49557201 BTC (287,118.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.24 % (428,487.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,814.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07510771 BTC (108,455.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.19 CZK over 2924 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005727 BTC for 82.70 CZK @ 1,443,999 CZK\nFees are 0.29045543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (138.62390398403910044545505084 CZK)\nThe limits being 0.10 % (108.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49557201 BTC (287,118.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.24 % (428,487.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,814.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07510771 BTC (108,455.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.19 CZK over 2924 transactions" + } + ] + }, + { + "id": 4607, + "type": "message", + "date": "2024-03-03T21:00:05", + "date_unixtime": "1709496005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005700 BTC for 82.71 CZK @ 1,451,001 CZK\nFees are 0.29048786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (278.59219196811160936721474840 CZK)\nThe limits being 0.10 % (109.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49562901 BTC (287,201.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,451,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.40 % (431,957.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,731.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07516471 BTC (109,064.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.19 CZK over 2925 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005700 BTC for 82.71 CZK @ 1,451,001 CZK\nFees are 0.29048786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (278.59219196811160936721474840 CZK)\nThe limits being 0.10 % (109.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49562901 BTC (287,201.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,451,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.40 % (431,957.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,731.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07516471 BTC (109,064.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.19 CZK over 2925 transactions" + } + ] + }, + { + "id": 4608, + "type": "message", + "date": "2024-03-04T01:00:04", + "date_unixtime": "1709510404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005684 BTC for 82.70 CZK @ 1,454,999 CZK\nFees are 0.29047060 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (256.07982399672925198119039379 CZK)\nThe limits being 0.10 % (109.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49568585 BTC (287,284.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,454,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.05 % (433,938.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,648.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07522155 BTC (109,447.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.18 CZK over 2926 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005684 BTC for 82.70 CZK @ 1,454,999 CZK\nFees are 0.29047060 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (256.07982399672925198119039379 CZK)\nThe limits being 0.10 % (109.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49568585 BTC (287,284.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,454,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.05 % (433,938.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,648.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07522155 BTC (109,447.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.18 CZK over 2926 transactions" + } + ] + }, + { + "id": 4609, + "type": "message", + "date": "2024-03-04T05:00:04", + "date_unixtime": "1709524804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005642 BTC for 82.70 CZK @ 1,465,841 CZK\nFees are 0.29047273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (351.80183999037752834946527988 CZK)\nThe limits being 0.10 % (110.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49574227 BTC (287,367.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,465,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.87 % (439,312.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,565.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07527797 BTC (110,345.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.18 CZK over 2927 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005642 BTC for 82.70 CZK @ 1,465,841 CZK\nFees are 0.29047273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (351.80183999037752834946527988 CZK)\nThe limits being 0.10 % (110.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49574227 BTC (287,367.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,465,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.87 % (439,312.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,565.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07527797 BTC (110,345.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.18 CZK over 2927 transactions" + } + ] + }, + { + "id": 4610, + "type": "message", + "date": "2024-03-04T09:00:04", + "date_unixtime": "1709539204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005607 BTC for 82.70 CZK @ 1,475,030 CZK\nFees are 0.29048040 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (354.00719998997622819862956910 CZK)\nThe limits being 0.10 % (111.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49579834 BTC (287,450.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,475,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.42 % (443,867.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,482.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07533404 BTC (111,119.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.17 CZK over 2928 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005607 BTC for 82.70 CZK @ 1,475,030 CZK\nFees are 0.29048040 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (354.00719998997622819862956910 CZK)\nThe limits being 0.10 % (111.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49579834 BTC (287,450.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,475,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.42 % (443,867.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,482.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07533404 BTC (111,119.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.17 CZK over 2928 transactions" + } + ] + }, + { + "id": 4611, + "type": "message", + "date": "2024-03-04T13:00:03", + "date_unixtime": "1709553603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005453 BTC for 82.70 CZK @ 1,516,615 CZK\nFees are 0.29046664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (339.72175997615534333299434010 CZK)\nThe limits being 0.10 % (114.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49585287 BTC (287,533.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.54 % (464,484.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,399.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07538857 BTC (114,335.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.17 CZK over 2929 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005453 BTC for 82.70 CZK @ 1,516,615 CZK\nFees are 0.29046664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (339.72175997615534333299434010 CZK)\nThe limits being 0.10 % (114.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49585287 BTC (287,533.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.54 % (464,484.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,399.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07538857 BTC (114,335.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.17 CZK over 2929 transactions" + } + ] + }, + { + "id": 4612, + "type": "message", + "date": "2024-03-04T17:00:04", + "date_unixtime": "1709568004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005344 BTC for 82.70 CZK @ 1,547,600 CZK\nFees are 0.29047622 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (371.42399998209858310285259078 CZK)\nThe limits being 0.10 % (116.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49590631 BTC (287,616.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 579,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.84 % (479,848.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,316.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07544201 BTC (116,754.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.16 CZK over 2930 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005344 BTC for 82.70 CZK @ 1,547,600 CZK\nFees are 0.29047622 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (371.42399998209858310285259078 CZK)\nThe limits being 0.10 % (116.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49590631 BTC (287,616.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 579,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.84 % (479,848.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,316.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07544201 BTC (116,754.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.16 CZK over 2930 transactions" + } + ] + }, + { + "id": 4613, + "type": "message", + "date": "2024-03-04T21:00:05", + "date_unixtime": "1709582405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005269 BTC for 82.71 CZK @ 1,569,689 CZK\nFees are 0.29048736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (627.87559994753606257393107800 CZK)\nThe limits being 0.10 % (118.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49595900 BTC (287,699.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,569,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.60 % (490,802.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,233.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07549470 BTC (118,503.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.16 CZK over 2931 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005269 BTC for 82.71 CZK @ 1,569,689 CZK\nFees are 0.29048736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (627.87559994753606257393107800 CZK)\nThe limits being 0.10 % (118.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49595900 BTC (287,699.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,569,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.60 % (490,802.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,233.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07549470 BTC (118,503.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.16 CZK over 2931 transactions" + } + ] + }, + { + "id": 4614, + "type": "message", + "date": "2024-03-05T01:00:04", + "date_unixtime": "1709596804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005234 BTC for 82.70 CZK @ 1,580,000 CZK\nFees are 0.29045324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (682.56000000 CZK)\nThe limits being 0.10 % (119.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49601134 BTC (287,782.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.32 % (495,915.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,150.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07554704 BTC (119,364.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.15 CZK over 2932 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005234 BTC for 82.70 CZK @ 1,580,000 CZK\nFees are 0.29045324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (682.56000000 CZK)\nThe limits being 0.10 % (119.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49601134 BTC (287,782.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.32 % (495,915.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,150.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07554704 BTC (119,364.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.15 CZK over 2932 transactions" + } + ] + }, + { + "id": 4615, + "type": "message", + "date": "2024-03-05T05:00:03", + "date_unixtime": "1709611203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,575,000 CZK\nFees are 0.29047449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (680.39999995900844852955618955 CZK)\nThe limits being 0.10 % (119.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49606385 BTC (287,865.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.41 % (493,435.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,067.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07559955 BTC (119,069.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.15 CZK over 2933 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,575,000 CZK\nFees are 0.29047449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (680.39999995900844852955618955 CZK)\nThe limits being 0.10 % (119.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49606385 BTC (287,865.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.41 % (493,435.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,067.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07559955 BTC (119,069.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.15 CZK over 2933 transactions" + } + ] + }, + { + "id": 4616, + "type": "message", + "date": "2024-03-05T09:00:04", + "date_unixtime": "1709625604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005354 BTC for 82.70 CZK @ 1,544,685 CZK\nFees are 0.29047163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (543.72911998591407473916004482 CZK)\nThe limits being 0.10 % (116.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49611739 BTC (287,948.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.14 % (478,397.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,984.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07565309 BTC (116,860.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.14 CZK over 2934 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005354 BTC for 82.70 CZK @ 1,544,685 CZK\nFees are 0.29047163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (543.72911998591407473916004482 CZK)\nThe limits being 0.10 % (116.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49611739 BTC (287,948.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.14 % (478,397.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,984.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07565309 BTC (116,860.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.14 CZK over 2934 transactions" + } + ] + }, + { + "id": 4617, + "type": "message", + "date": "2024-03-05T13:00:04", + "date_unixtime": "1709640004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,481 CZK\nFees are 0.29044845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (498.07391997386148292757768288 CZK)\nThe limits being 0.10 % (117.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49617052 BTC (288,030.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.12 % (484,249.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,901.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07570622 BTC (117,835.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.14 CZK over 2935 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,481 CZK\nFees are 0.29044845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (498.07391997386148292757768288 CZK)\nThe limits being 0.10 % (117.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49617052 BTC (288,030.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.12 % (484,249.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,901.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07570622 BTC (117,835.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.14 CZK over 2935 transactions" + } + ] + }, + { + "id": 4618, + "type": "message", + "date": "2024-03-05T17:00:03", + "date_unixtime": "1709654403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005319 BTC for 82.70 CZK @ 1,554,757 CZK\nFees are 0.29045438 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (472.64612796067308320108797624 CZK)\nThe limits being 0.10 % (117.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49622371 BTC (288,113.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.78 % (483,393.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,818.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07575941 BTC (117,787.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.13 CZK over 2936 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005319 BTC for 82.70 CZK @ 1,554,757 CZK\nFees are 0.29045438 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (472.64612796067308320108797624 CZK)\nThe limits being 0.10 % (117.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49622371 BTC (288,113.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.78 % (483,393.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,818.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07575941 BTC (117,787.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.13 CZK over 2936 transactions" + } + ] + }, + { + "id": 4619, + "type": "message", + "date": "2024-03-05T21:00:06", + "date_unixtime": "1709668806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005825 BTC for 82.70 CZK @ 1,419,759 CZK\nFees are 0.29046645 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (545.18745595976314658352418894 CZK)\nThe limits being 0.10 % (107.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49628196 BTC (288,196.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,419,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.49 % (416,403.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,735.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07581766 BTC (107,642.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.13 CZK over 2937 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005825 BTC for 82.70 CZK @ 1,419,759 CZK\nFees are 0.29046645 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (545.18745595976314658352418894 CZK)\nThe limits being 0.10 % (107.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49628196 BTC (288,196.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,419,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.49 % (416,403.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,735.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07581766 BTC (107,642.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.13 CZK over 2937 transactions" + } + ] + }, + { + "id": 4620, + "type": "message", + "date": "2024-03-06T01:00:04", + "date_unixtime": "1709683204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005564 BTC for 82.70 CZK @ 1,486,277 CZK\nFees are 0.29045061 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (285.36518398975261638184399175 CZK)\nThe limits being 0.10 % (112.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49633760 BTC (288,279.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,486,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.90 % (449,415.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,652.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07587330 BTC (112,768.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.12 CZK over 2938 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005564 BTC for 82.70 CZK @ 1,486,277 CZK\nFees are 0.29045061 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (285.36518398975261638184399175 CZK)\nThe limits being 0.10 % (112.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49633760 BTC (288,279.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,486,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.90 % (449,415.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,652.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07587330 BTC (112,768.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.12 CZK over 2938 transactions" + } + ] + }, + { + "id": 4621, + "type": "message", + "date": "2024-03-06T05:00:03", + "date_unixtime": "1709697603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005601 BTC for 82.70 CZK @ 1,476,510 CZK\nFees are 0.29046070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (259.86575997541900972021954581 CZK)\nThe limits being 0.10 % (112.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49639361 BTC (288,362.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 580,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,476,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.17 % (444,567.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,570.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07592931 BTC (112,110.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.12 CZK over 2939 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005601 BTC for 82.70 CZK @ 1,476,510 CZK\nFees are 0.29046070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (259.86575997541900972021954581 CZK)\nThe limits being 0.10 % (112.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49639361 BTC (288,362.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 580,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,476,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.17 % (444,567.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,570.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07592931 BTC (112,110.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.12 CZK over 2939 transactions" + } + ] + }, + { + "id": 4622, + "type": "message", + "date": "2024-03-06T09:00:04", + "date_unixtime": "1709712004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005331 BTC for 82.70 CZK @ 1,551,289 CZK\nFees are 0.29046032 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (198.56499198070306730794124521 CZK)\nThe limits being 0.10 % (117.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49644692 BTC (288,445.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.99 % (481,686.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,487.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07598262 BTC (117,871.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.11 CZK over 2940 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005331 BTC for 82.70 CZK @ 1,551,289 CZK\nFees are 0.29046032 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (198.56499198070306730794124521 CZK)\nThe limits being 0.10 % (117.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49644692 BTC (288,445.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.99 % (481,686.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,487.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07598262 BTC (117,871.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.11 CZK over 2940 transactions" + } + ] + }, + { + "id": 4623, + "type": "message", + "date": "2024-03-06T13:00:03", + "date_unixtime": "1709726403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005295 BTC for 82.70 CZK @ 1,561,938 CZK\nFees are 0.29047929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (274.90108796737387039601244559 CZK)\nThe limits being 0.10 % (118.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49649987 BTC (288,528.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.78 % (486,973.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,404.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07603557 BTC (118,762.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.11 CZK over 2941 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005295 BTC for 82.70 CZK @ 1,561,938 CZK\nFees are 0.29047929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (274.90108796737387039601244559 CZK)\nThe limits being 0.10 % (118.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49649987 BTC (288,528.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.78 % (486,973.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,404.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07603557 BTC (118,762.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.11 CZK over 2941 transactions" + } + ] + }, + { + "id": 4624, + "type": "message", + "date": "2024-03-06T17:00:04", + "date_unixtime": "1709740804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005352 BTC for 82.70 CZK @ 1,545,166 CZK\nFees are 0.29045354 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (296.67187198169634977131608876 CZK)\nThe limits being 0.10 % (117.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49655339 BTC (288,611.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.84 % (478,645.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,321.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07608909 BTC (117,570.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.10 CZK over 2942 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005352 BTC for 82.70 CZK @ 1,545,166 CZK\nFees are 0.29045354 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (296.67187198169634977131608876 CZK)\nThe limits being 0.10 % (117.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49655339 BTC (288,611.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.84 % (478,645.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,321.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07608909 BTC (117,570.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.10 CZK over 2942 transactions" + } + ] + }, + { + "id": 4625, + "type": "message", + "date": "2024-03-06T21:00:04", + "date_unixtime": "1709755204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005336 BTC for 82.71 CZK @ 1,550,002 CZK\nFees are 0.29049155 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (347.20044798527492606462090329 CZK)\nThe limits being 0.10 % (118.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49660675 BTC (288,694.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.63 % (481,046.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,238.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07614245 BTC (118,020.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.10 CZK over 2943 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005336 BTC for 82.71 CZK @ 1,550,002 CZK\nFees are 0.29049155 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (347.20044798527492606462090329 CZK)\nThe limits being 0.10 % (118.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49660675 BTC (288,694.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.63 % (481,046.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,238.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07614245 BTC (118,020.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.10 CZK over 2943 transactions" + } + ] + }, + { + "id": 4626, + "type": "message", + "date": "2024-03-07T01:00:04", + "date_unixtime": "1709769604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005392 BTC for 82.71 CZK @ 1,533,849 CZK\nFees are 0.29048112 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (269.95742398933110966217644772 CZK)\nThe limits being 0.10 % (116.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49666067 BTC (288,777.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,533,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.80 % (473,024.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,155.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07619637 BTC (116,873.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.09 CZK over 2944 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005392 BTC for 82.71 CZK @ 1,533,849 CZK\nFees are 0.29048112 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (269.95742398933110966217644772 CZK)\nThe limits being 0.10 % (116.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49666067 BTC (288,777.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,533,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.80 % (473,024.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,155.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07619637 BTC (116,873.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.09 CZK over 2944 transactions" + } + ] + }, + { + "id": 4627, + "type": "message", + "date": "2024-03-07T05:00:03", + "date_unixtime": "1709784003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005410 BTC for 82.70 CZK @ 1,528,612 CZK\nFees are 0.29045573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (244.57791999351622371606954218 CZK)\nThe limits being 0.10 % (116.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49671477 BTC (288,860.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,528,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.85 % (470,423.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,072.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07625047 BTC (116,557.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.09 CZK over 2945 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005410 BTC for 82.70 CZK @ 1,528,612 CZK\nFees are 0.29045573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (244.57791999351622371606954218 CZK)\nThe limits being 0.10 % (116.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49671477 BTC (288,860.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,528,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.85 % (470,423.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,072.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07625047 BTC (116,557.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.09 CZK over 2945 transactions" + } + ] + }, + { + "id": 4628, + "type": "message", + "date": "2024-03-07T09:00:01", + "date_unixtime": "1709798401", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005365 BTC for 82.70 CZK @ 1,541,451 CZK\nFees are 0.29045902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (123.31607999773393309808958486 CZK)\nThe limits being 0.10 % (117.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49676842 BTC (288,943.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.01 % (476,800.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,989.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07630412 BTC (117,619.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.08 CZK over 2946 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005365 BTC for 82.70 CZK @ 1,541,451 CZK\nFees are 0.29045902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (123.31607999773393309808958486 CZK)\nThe limits being 0.10 % (117.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49676842 BTC (288,943.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.01 % (476,800.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,989.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07630412 BTC (117,619.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.08 CZK over 2946 transactions" + } + ] + }, + { + "id": 4629, + "type": "message", + "date": "2024-03-07T13:00:04", + "date_unixtime": "1709812804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005350 BTC for 82.70 CZK @ 1,545,820 CZK\nFees are 0.29046789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (98.93247999403955315275042025 CZK)\nThe limits being 0.10 % (118.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49682192 BTC (289,026.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.72 % (478,970.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,906.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07635762 BTC (118,035.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.07 CZK over 2947 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005350 BTC for 82.70 CZK @ 1,545,820 CZK\nFees are 0.29046789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (98.93247999403955315275042025 CZK)\nThe limits being 0.10 % (118.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49682192 BTC (289,026.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.72 % (478,970.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,906.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07635762 BTC (118,035.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.07 CZK over 2947 transactions" + } + ] + }, + { + "id": 4630, + "type": "message", + "date": "2024-03-07T17:00:04", + "date_unixtime": "1709827204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005303 BTC for 82.71 CZK @ 1,559,671 CZK\nFees are 0.29049593 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.77367999104773872250442328 CZK)\nThe limits being 0.10 % (119.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49687495 BTC (289,109.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,671 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.05 % (485,851.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,823.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07641065 BTC (119,175.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.07 CZK over 2948 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005303 BTC for 82.71 CZK @ 1,559,671 CZK\nFees are 0.29049593 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.77367999104773872250442328 CZK)\nThe limits being 0.10 % (119.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49687495 BTC (289,109.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,671 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.05 % (485,851.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,823.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07641065 BTC (119,175.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.07 CZK over 2948 transactions" + } + ] + }, + { + "id": 4631, + "type": "message", + "date": "2024-03-07T21:00:04", + "date_unixtime": "1709841604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005310 BTC for 82.71 CZK @ 1,557,628 CZK\nFees are 0.29049836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.61023999429492069658267626 CZK)\nThe limits being 0.10 % (119.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49692805 BTC (289,192.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 581,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.65 % (484,836.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,740.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07646375 BTC (119,102.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.06 CZK over 2949 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005310 BTC for 82.71 CZK @ 1,557,628 CZK\nFees are 0.29049836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.61023999429492069658267626 CZK)\nThe limits being 0.10 % (119.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49692805 BTC (289,192.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 581,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.65 % (484,836.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,740.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07646375 BTC (119,102.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.06 CZK over 2949 transactions" + } + ] + }, + { + "id": 4632, + "type": "message", + "date": "2024-03-08T01:00:03", + "date_unixtime": "1709856003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005352 BTC for 82.70 CZK @ 1,545,268 CZK\nFees are 0.29047271 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (173.07001599632973680310244487 CZK)\nThe limits being 0.10 % (118.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49698157 BTC (289,275.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.48 % (478,693.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,657.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07651727 BTC (118,239.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.06 CZK over 2950 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005352 BTC for 82.70 CZK @ 1,545,268 CZK\nFees are 0.29047271 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (173.07001599632973680310244487 CZK)\nThe limits being 0.10 % (118.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49698157 BTC (289,275.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.48 % (478,693.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,657.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07651727 BTC (118,239.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.06 CZK over 2950 transactions" + } + ] + }, + { + "id": 4633, + "type": "message", + "date": "2024-03-08T05:00:03", + "date_unixtime": "1709870403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005320 BTC for 82.70 CZK @ 1,554,572 CZK\nFees are 0.29047442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (174.11206398657330920724831512 CZK)\nThe limits being 0.10 % (119.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49703477 BTC (289,358.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.03 % (483,317.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,574.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07657047 BTC (119,034.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.05 CZK over 2951 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005320 BTC for 82.70 CZK @ 1,554,572 CZK\nFees are 0.29047442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (174.11206398657330920724831512 CZK)\nThe limits being 0.10 % (119.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49703477 BTC (289,358.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.03 % (483,317.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,574.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07657047 BTC (119,034.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.05 CZK over 2951 transactions" + } + ] + }, + { + "id": 4634, + "type": "message", + "date": "2024-03-08T09:00:03", + "date_unixtime": "1709884803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005304 BTC for 82.70 CZK @ 1,559,206 CZK\nFees are 0.29046408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.73647999723441559368755359 CZK)\nThe limits being 0.10 % (119.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49708781 BTC (289,441.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.78 % (485,620.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,491.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07662351 BTC (119,471.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.05 CZK over 2952 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005304 BTC for 82.70 CZK @ 1,559,206 CZK\nFees are 0.29046408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.73647999723441559368755359 CZK)\nThe limits being 0.10 % (119.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49708781 BTC (289,441.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.78 % (485,620.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,491.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07662351 BTC (119,471.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.05 CZK over 2952 transactions" + } + ] + }, + { + "id": 4635, + "type": "message", + "date": "2024-03-08T13:00:03", + "date_unixtime": "1709899203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005305 BTC for 82.70 CZK @ 1,559,000 CZK\nFees are 0.29048046 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.71999999248624160396200479 CZK)\nThe limits being 0.10 % (119.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49714086 BTC (289,524.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.69 % (485,517.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,408.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07667656 BTC (119,538.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.04 CZK over 2953 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005305 BTC for 82.70 CZK @ 1,559,000 CZK\nFees are 0.29048046 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (124.71999999248624160396200479 CZK)\nThe limits being 0.10 % (119.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49714086 BTC (289,524.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.69 % (485,517.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,408.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07667656 BTC (119,538.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.04 CZK over 2953 transactions" + } + ] + }, + { + "id": 4636, + "type": "message", + "date": "2024-03-08T17:00:04", + "date_unixtime": "1709913604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005287 BTC for 82.71 CZK @ 1,564,324 CZK\nFees are 0.29048348 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (150.17510399171275794790109027 CZK)\nThe limits being 0.10 % (120.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49719373 BTC (289,607.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.56 % (488,164.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,325.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07672943 BTC (120,029.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.04 CZK over 2954 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005287 BTC for 82.71 CZK @ 1,564,324 CZK\nFees are 0.29048348 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (150.17510399171275794790109027 CZK)\nThe limits being 0.10 % (120.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49719373 BTC (289,607.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.56 % (488,164.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,325.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07672943 BTC (120,029.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.04 CZK over 2954 transactions" + } + ] + }, + { + "id": 4637, + "type": "message", + "date": "2024-03-08T21:00:03", + "date_unixtime": "1709928003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005204 BTC for 82.70 CZK @ 1,589,192 CZK\nFees are 0.29046850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (177.98948934991940200076059694 CZK)\nThe limits being 0.10 % (122.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49724577 BTC (289,690.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.78 % (500,528.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,242.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07678147 BTC (122,020.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.03 CZK over 2955 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005204 BTC for 82.70 CZK @ 1,589,192 CZK\nFees are 0.29046850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (177.98948934991940200076059694 CZK)\nThe limits being 0.10 % (122.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49724577 BTC (289,690.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.78 % (500,528.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,242.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07678147 BTC (122,020.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.03 CZK over 2955 transactions" + } + ] + }, + { + "id": 4638, + "type": "message", + "date": "2024-03-09T01:00:04", + "date_unixtime": "1709942404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005245 BTC for 82.70 CZK @ 1,576,707 CZK\nFees are 0.29045704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (227.04580797941238078545871147 CZK)\nThe limits being 0.10 % (121.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49729822 BTC (289,773.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.59 % (494,319.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,159.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07683392 BTC (121,144.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.03 CZK over 2956 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005245 BTC for 82.70 CZK @ 1,576,707 CZK\nFees are 0.29045704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (227.04580797941238078545871147 CZK)\nThe limits being 0.10 % (121.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49729822 BTC (289,773.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.59 % (494,319.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,159.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07683392 BTC (121,144.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.03 CZK over 2956 transactions" + } + ] + }, + { + "id": 4639, + "type": "message", + "date": "2024-03-09T05:00:03", + "date_unixtime": "1709956803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005236 BTC for 82.70 CZK @ 1,579,511 CZK\nFees are 0.29047430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (202.17740798572452489624739692 CZK)\nThe limits being 0.10 % (121.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49735058 BTC (289,856.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.02 % (495,713.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,076.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07688628 BTC (121,442.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.02 CZK over 2957 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005236 BTC for 82.70 CZK @ 1,579,511 CZK\nFees are 0.29047430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (202.17740798572452489624739692 CZK)\nThe limits being 0.10 % (121.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49735058 BTC (289,856.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.02 % (495,713.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,076.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07688628 BTC (121,442.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.02 CZK over 2957 transactions" + } + ] + }, + { + "id": 4640, + "type": "message", + "date": "2024-03-09T09:00:04", + "date_unixtime": "1709971204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005233 BTC for 82.71 CZK @ 1,580,552 CZK\nFees are 0.29049920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.73299199714814316526973098 CZK)\nThe limits being 0.10 % (121.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49740291 BTC (289,939.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 582,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.15 % (496,231.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,993.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07693861 BTC (121,605.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.02 CZK over 2958 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005233 BTC for 82.71 CZK @ 1,580,552 CZK\nFees are 0.29049920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.73299199714814316526973098 CZK)\nThe limits being 0.10 % (121.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49740291 BTC (289,939.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 582,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.15 % (496,231.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,993.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07693861 BTC (121,605.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.02 CZK over 2958 transactions" + } + ] + }, + { + "id": 4641, + "type": "message", + "date": "2024-03-09T13:00:04", + "date_unixtime": "1709985604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,000 CZK\nFees are 0.29047049 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (126.47999999237994871133978884 CZK)\nThe limits being 0.10 % (121.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49745522 BTC (290,022.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.18 % (496,453.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,910.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07699092 BTC (121,722.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.01 CZK over 2959 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,000 CZK\nFees are 0.29047049 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (126.47999999237994871133978884 CZK)\nThe limits being 0.10 % (121.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49745522 BTC (290,022.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.18 % (496,453.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,910.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07699092 BTC (121,722.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.01 CZK over 2959 transactions" + } + ] + }, + { + "id": 4642, + "type": "message", + "date": "2024-03-09T17:00:03", + "date_unixtime": "1710000003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005229 BTC for 82.70 CZK @ 1,581,658 CZK\nFees are 0.29048027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.22611198918148690331592344 CZK)\nThe limits being 0.10 % (121.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49750751 BTC (290,105.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.24 % (496,780.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,827.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07704321 BTC (121,856.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.01 CZK over 2960 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005229 BTC for 82.70 CZK @ 1,581,658 CZK\nFees are 0.29048027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.22611198918148690331592344 CZK)\nThe limits being 0.10 % (121.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49750751 BTC (290,105.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.24 % (496,780.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,827.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07704321 BTC (121,856.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.01 CZK over 2960 transactions" + } + ] + }, + { + "id": 4643, + "type": "message", + "date": "2024-03-09T21:00:03", + "date_unixtime": "1710014403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005233 BTC for 82.70 CZK @ 1,580,293 CZK\nFees are 0.29045160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.13875199461925302336147962 CZK)\nThe limits being 0.10 % (121.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49755984 BTC (290,188.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.96 % (496,101.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,744.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07709554 BTC (121,833.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.00 CZK over 2961 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005233 BTC for 82.70 CZK @ 1,580,293 CZK\nFees are 0.29045160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.13875199461925302336147962 CZK)\nThe limits being 0.10 % (121.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49755984 BTC (290,188.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.96 % (496,101.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,744.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07709554 BTC (121,833.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.00 CZK over 2961 transactions" + } + ] + }, + { + "id": 4644, + "type": "message", + "date": "2024-03-10T01:00:03", + "date_unixtime": "1710028803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,000 CZK\nFees are 0.29047049 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (177.07199998933192819587570438 CZK)\nThe limits being 0.10 % (121.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49761215 BTC (290,271.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.03 % (496,453.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,661.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07714785 BTC (121,970.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 98.00 CZK over 2962 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,000 CZK\nFees are 0.29047049 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (177.07199998933192819587570438 CZK)\nThe limits being 0.10 % (121.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49761215 BTC (290,271.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.03 % (496,453.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,661.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07714785 BTC (121,970.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 98.00 CZK over 2962 transactions" + } + ] + }, + { + "id": 4645, + "type": "message", + "date": "2024-03-10T05:00:03", + "date_unixtime": "1710043203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005171 BTC for 82.70 CZK @ 1,599,313 CZK\nFees are 0.29046474 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (179.12305599286658366573692906 CZK)\nThe limits being 0.10 % (123.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49766386 BTC (290,354.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.12 % (505,565.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,578.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07719956 BTC (123,466.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.99 CZK over 2963 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005171 BTC for 82.70 CZK @ 1,599,313 CZK\nFees are 0.29046474 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (179.12305599286658366573692906 CZK)\nThe limits being 0.10 % (123.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49766386 BTC (290,354.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.12 % (505,565.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,578.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07719956 BTC (123,466.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.99 CZK over 2963 transactions" + } + ] + }, + { + "id": 4646, + "type": "message", + "date": "2024-03-10T09:00:04", + "date_unixtime": "1710057604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005155 BTC for 82.71 CZK @ 1,604,427 CZK\nFees are 0.29049192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (231.03748799589409907225776707 CZK)\nThe limits being 0.10 % (123.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49771541 BTC (290,437.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,604,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.95 % (508,110.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,495.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07725111 BTC (123,943.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.99 CZK over 2964 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005155 BTC for 82.71 CZK @ 1,604,427 CZK\nFees are 0.29049192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (231.03748799589409907225776707 CZK)\nThe limits being 0.10 % (123.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49771541 BTC (290,437.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,604,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.95 % (508,110.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,495.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07725111 BTC (123,943.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.99 CZK over 2964 transactions" + } + ] + }, + { + "id": 4647, + "type": "message", + "date": "2024-03-10T13:00:03", + "date_unixtime": "1710072003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005139 BTC for 82.71 CZK @ 1,609,361 CZK\nFees are 0.29048085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (205.99820798444983325048456110 CZK)\nThe limits being 0.10 % (124.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49776680 BTC (290,520.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.74 % (510,565.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,412.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07730250 BTC (124,407.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.98 CZK over 2965 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005139 BTC for 82.71 CZK @ 1,609,361 CZK\nFees are 0.29048085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (205.99820798444983325048456110 CZK)\nThe limits being 0.10 % (124.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49776680 BTC (290,520.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.74 % (510,565.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,412.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07730250 BTC (124,407.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.98 CZK over 2965 transactions" + } + ] + }, + { + "id": 4648, + "type": "message", + "date": "2024-03-10T17:00:04", + "date_unixtime": "1710086404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005166 BTC for 82.70 CZK @ 1,600,947 CZK\nFees are 0.29048036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (102.46060799127174131731352191 CZK)\nThe limits being 0.10 % (123.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49781846 BTC (290,603.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,600,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.25 % (506,377.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,329.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07735416 BTC (123,839.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.98 CZK over 2966 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005166 BTC for 82.70 CZK @ 1,600,947 CZK\nFees are 0.29048036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (102.46060799127174131731352191 CZK)\nThe limits being 0.10 % (123.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49781846 BTC (290,603.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,600,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.25 % (506,377.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,329.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07735416 BTC (123,839.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.98 CZK over 2966 transactions" + } + ] + }, + { + "id": 4649, + "type": "message", + "date": "2024-03-10T21:00:03", + "date_unixtime": "1710100803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005152 BTC for 82.70 CZK @ 1,605,132 CZK\nFees are 0.29045043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (102.72844799722709646671432595 CZK)\nThe limits being 0.10 % (124.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49786998 BTC (290,686.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,605,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.92 % (508,460.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,246.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07740568 BTC (124,246.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.97 CZK over 2967 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005152 BTC for 82.70 CZK @ 1,605,132 CZK\nFees are 0.29045043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (102.72844799722709646671432595 CZK)\nThe limits being 0.10 % (124.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49786998 BTC (290,686.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,605,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.92 % (508,460.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,246.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07740568 BTC (124,246.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.97 CZK over 2967 transactions" + } + ] + }, + { + "id": 4650, + "type": "message", + "date": "2024-03-11T01:00:03", + "date_unixtime": "1710115203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005190 BTC for 82.70 CZK @ 1,593,367 CZK\nFees are 0.29044814 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.97548799317993957564708491 CZK)\nThe limits being 0.10 % (123.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49792188 BTC (290,769.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 583,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,593,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.85 % (502,602.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,163.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07745758 BTC (123,418.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.97 CZK over 2968 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005190 BTC for 82.70 CZK @ 1,593,367 CZK\nFees are 0.29044814 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.97548799317993957564708491 CZK)\nThe limits being 0.10 % (123.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49792188 BTC (290,769.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 583,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,593,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.85 % (502,602.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,163.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07745758 BTC (123,418.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.97 CZK over 2968 transactions" + } + ] + }, + { + "id": 4651, + "type": "message", + "date": "2024-03-11T05:00:04", + "date_unixtime": "1710129604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005223 BTC for 82.71 CZK @ 1,583,478 CZK\nFees are 0.29048083 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.006943994697478984381774650 CZK)\nThe limits being 0.10 % (122.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49797411 BTC (290,852.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.11 % (497,678.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,080.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07750981 BTC (122,735.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.96 CZK over 2969 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005223 BTC for 82.71 CZK @ 1,583,478 CZK\nFees are 0.29048083 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.006943994697478984381774650 CZK)\nThe limits being 0.10 % (122.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49797411 BTC (290,852.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.11 % (497,678.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,080.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07750981 BTC (122,735.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.96 CZK over 2969 transactions" + } + ] + }, + { + "id": 4652, + "type": "message", + "date": "2024-03-11T09:00:05", + "date_unixtime": "1710144005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005036 BTC for 82.71 CZK @ 1,642,323 CZK\nFees are 0.29048902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.831503998119370131466000853 CZK)\nThe limits being 0.10 % (127.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49802447 BTC (290,935.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,642,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.13 % (526,981.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,997.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07756017 BTC (127,378.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.96 CZK over 2970 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005036 BTC for 82.71 CZK @ 1,642,323 CZK\nFees are 0.29048902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.831503998119370131466000853 CZK)\nThe limits being 0.10 % (127.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49802447 BTC (290,935.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,642,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.13 % (526,981.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,997.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07756017 BTC (127,378.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.96 CZK over 2970 transactions" + } + ] + }, + { + "id": 4653, + "type": "message", + "date": "2024-03-11T13:00:03", + "date_unixtime": "1710158403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005017 BTC for 82.70 CZK @ 1,648,408 CZK\nFees are 0.29046529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.49811199649145074161900361 CZK)\nThe limits being 0.10 % (127.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49807464 BTC (291,018.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,648,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.12 % (530,011.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,914.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07761034 BTC (127,933.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.95 CZK over 2971 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005017 BTC for 82.70 CZK @ 1,648,408 CZK\nFees are 0.29046529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.49811199649145074161900361 CZK)\nThe limits being 0.10 % (127.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49807464 BTC (291,018.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,648,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.12 % (530,011.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,914.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07761034 BTC (127,933.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.95 CZK over 2971 transactions" + } + ] + }, + { + "id": 4654, + "type": "message", + "date": "2024-03-11T17:00:05", + "date_unixtime": "1710172805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004962 BTC for 82.70 CZK @ 1,666,669 CZK\nFees are 0.29046348 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.00011199495839531410317818 CZK)\nThe limits being 0.10 % (129.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49812426 BTC (291,101.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,666,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.20 % (539,106.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,831.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07765996 BTC (129,433.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.95 CZK over 2972 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004962 BTC for 82.70 CZK @ 1,666,669 CZK\nFees are 0.29046348 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.00011199495839531410317818 CZK)\nThe limits being 0.10 % (129.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49812426 BTC (291,101.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,666,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.20 % (539,106.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,831.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07765996 BTC (129,433.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.95 CZK over 2972 transactions" + } + ] + }, + { + "id": 4655, + "type": "message", + "date": "2024-03-11T21:00:04", + "date_unixtime": "1710187204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004969 BTC for 82.70 CZK @ 1,664,315 CZK\nFees are 0.29046242 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (159.77423999379110124024557638 CZK)\nThe limits being 0.10 % (129.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49817395 BTC (291,184.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,664,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.74 % (537,933.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,748.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07770965 BTC (129,333.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.94 CZK over 2973 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004969 BTC for 82.70 CZK @ 1,664,315 CZK\nFees are 0.29046242 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (159.77423999379110124024557638 CZK)\nThe limits being 0.10 % (129.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49817395 BTC (291,184.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,664,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.74 % (537,933.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,748.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07770965 BTC (129,333.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.94 CZK over 2973 transactions" + } + ] + }, + { + "id": 4656, + "type": "message", + "date": "2024-03-12T01:00:03", + "date_unixtime": "1710201603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004963 BTC for 82.70 CZK @ 1,666,311 CZK\nFees are 0.29045962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (159.96585599565333542956292107 CZK)\nThe limits being 0.10 % (129.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49822358 BTC (291,267.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,666,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.03 % (538,927.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,665.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07775928 BTC (129,571.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.94 CZK over 2974 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004963 BTC for 82.70 CZK @ 1,666,311 CZK\nFees are 0.29045962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (159.96585599565333542956292107 CZK)\nThe limits being 0.10 % (129.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49822358 BTC (291,267.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,666,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.03 % (538,927.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,665.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07775928 BTC (129,571.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.94 CZK over 2974 transactions" + } + ] + }, + { + "id": 4657, + "type": "message", + "date": "2024-03-12T05:00:04", + "date_unixtime": "1710216004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004999 BTC for 82.70 CZK @ 1,654,346 CZK\nFees are 0.29046573 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (158.81721598490101607765499289 CZK)\nThe limits being 0.10 % (128.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49827357 BTC (291,350.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,654,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.93 % (532,966.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,582.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07780927 BTC (128,723.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.93 CZK over 2975 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004999 BTC for 82.70 CZK @ 1,654,346 CZK\nFees are 0.29046573 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (158.81721598490101607765499289 CZK)\nThe limits being 0.10 % (128.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49827357 BTC (291,350.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,654,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.93 % (532,966.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,582.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07780927 BTC (128,723.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.93 CZK over 2975 transactions" + } + ] + }, + { + "id": 4658, + "type": "message", + "date": "2024-03-12T09:00:03", + "date_unixtime": "1710230403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004963 BTC for 82.70 CZK @ 1,666,289 CZK\nFees are 0.29045578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (159.96374399856396225943431317 CZK)\nThe limits being 0.10 % (129.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49832320 BTC (291,433.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,666,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.92 % (538,916.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,499.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07785890 BTC (129,735.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.93 CZK over 2976 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004963 BTC for 82.70 CZK @ 1,666,289 CZK\nFees are 0.29045578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (159.96374399856396225943431317 CZK)\nThe limits being 0.10 % (129.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49832320 BTC (291,433.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,666,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.92 % (538,916.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,499.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07785890 BTC (129,735.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.93 CZK over 2976 transactions" + } + ] + }, + { + "id": 4659, + "type": "message", + "date": "2024-03-12T13:00:04", + "date_unixtime": "1710244804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004972 BTC for 82.70 CZK @ 1,663,359 CZK\nFees are 0.29047084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (133.06871999490119256776663817 CZK)\nThe limits being 0.10 % (129.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49837292 BTC (291,516.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 584,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,663,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.37 % (537,456.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,416.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07790862 BTC (129,590.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.92 CZK over 2977 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004972 BTC for 82.70 CZK @ 1,663,359 CZK\nFees are 0.29047084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (133.06871999490119256776663817 CZK)\nThe limits being 0.10 % (129.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49837292 BTC (291,516.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 584,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,663,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.37 % (537,456.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,416.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07790862 BTC (129,590.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.92 CZK over 2977 transactions" + } + ] + }, + { + "id": 4660, + "type": "message", + "date": "2024-03-12T17:00:04", + "date_unixtime": "1710259204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004992 BTC for 82.70 CZK @ 1,656,583 CZK\nFees are 0.29045122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (106.02131199775145963486770662 CZK)\nThe limits being 0.10 % (129.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49842284 BTC (291,599.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,656,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.15 % (534,079.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,333.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07795854 BTC (129,144.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.92 CZK over 2978 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004992 BTC for 82.70 CZK @ 1,656,583 CZK\nFees are 0.29045122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (106.02131199775145963486770662 CZK)\nThe limits being 0.10 % (129.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49842284 BTC (291,599.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,656,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.15 % (534,079.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,333.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07795854 BTC (129,144.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.92 CZK over 2978 transactions" + } + ] + }, + { + "id": 4661, + "type": "message", + "date": "2024-03-12T21:00:04", + "date_unixtime": "1710273604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005012 BTC for 82.70 CZK @ 1,650,126 CZK\nFees are 0.29047823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (132.01007999535544190703646574 CZK)\nThe limits being 0.10 % (128.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49847296 BTC (291,682.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,650,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.00 % (530,860.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,250.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07800866 BTC (128,724.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.91 CZK over 2979 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005012 BTC for 82.70 CZK @ 1,650,126 CZK\nFees are 0.29047823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (132.01007999535544190703646574 CZK)\nThe limits being 0.10 % (128.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49847296 BTC (291,682.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,650,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.00 % (530,860.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,250.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07800866 BTC (128,724.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.91 CZK over 2979 transactions" + } + ] + }, + { + "id": 4662, + "type": "message", + "date": "2024-03-13T01:00:03", + "date_unixtime": "1710288003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004998 BTC for 82.69 CZK @ 1,654,544 CZK\nFees are 0.29044238 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (132.36351999693748949505063610 CZK)\nThe limits being 0.10 % (129.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49852294 BTC (291,765.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,654,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.70 % (533,062.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,167.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07805864 BTC (129,151.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.91 CZK over 2980 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004998 BTC for 82.69 CZK @ 1,654,544 CZK\nFees are 0.29044238 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (132.36351999693748949505063610 CZK)\nThe limits being 0.10 % (129.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49852294 BTC (291,765.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,654,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.70 % (533,062.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,167.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07805864 BTC (129,151.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.91 CZK over 2980 transactions" + } + ] + }, + { + "id": 4663, + "type": "message", + "date": "2024-03-13T05:00:04", + "date_unixtime": "1710302404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004966 BTC for 82.71 CZK @ 1,665,466 CZK\nFees are 0.29048781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.94236799474091986946211819 CZK)\nThe limits being 0.10 % (130.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49857260 BTC (291,848.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,665,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.52 % (538,507.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,084.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07810830 BTC (130,086.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.90 CZK over 2981 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004966 BTC for 82.71 CZK @ 1,665,466 CZK\nFees are 0.29048781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.94236799474091986946211819 CZK)\nThe limits being 0.10 % (130.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49857260 BTC (291,848.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,665,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.52 % (538,507.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,084.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07810830 BTC (130,086.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.90 CZK over 2981 transactions" + } + ] + }, + { + "id": 4664, + "type": "message", + "date": "2024-03-13T09:00:04", + "date_unixtime": "1710316804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004911 BTC for 82.70 CZK @ 1,683,997 CZK\nFees are 0.29046691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.83185599576801901956469400 CZK)\nThe limits being 0.10 % (131.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49862171 BTC (291,931.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,683,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.63 % (547,745.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,001.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07815741 BTC (131,616.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.90 CZK over 2982 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004911 BTC for 82.70 CZK @ 1,683,997 CZK\nFees are 0.29046691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.83185599576801901956469400 CZK)\nThe limits being 0.10 % (131.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49862171 BTC (291,931.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,683,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.63 % (547,745.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,001.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07815741 BTC (131,616.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.90 CZK over 2982 transactions" + } + ] + }, + { + "id": 4665, + "type": "message", + "date": "2024-03-13T13:00:03", + "date_unixtime": "1710331203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004898 BTC for 82.71 CZK @ 1,688,581 CZK\nFees are 0.29048660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (81.05188799918944372523851290 CZK)\nThe limits being 0.10 % (132.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49867069 BTC (292,014.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,688,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.36 % (550,031.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 918.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07820639 BTC (132,057.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.89 CZK over 2983 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004898 BTC for 82.71 CZK @ 1,688,581 CZK\nFees are 0.29048660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (81.05188799918944372523851290 CZK)\nThe limits being 0.10 % (132.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49867069 BTC (292,014.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,688,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.36 % (550,031.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 918.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07820639 BTC (132,057.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.89 CZK over 2983 transactions" + } + ] + }, + { + "id": 4666, + "type": "message", + "date": "2024-03-13T17:00:04", + "date_unixtime": "1710345604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004941 BTC for 82.70 CZK @ 1,673,673 CZK\nFees are 0.29044967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.33630399975314087397206318 CZK)\nThe limits being 0.10 % (130.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49872010 BTC (292,097.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,673,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.76 % (542,596.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 835.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07825580 BTC (130,974.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.89 CZK over 2984 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004941 BTC for 82.70 CZK @ 1,673,673 CZK\nFees are 0.29044967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.33630399975314087397206318 CZK)\nThe limits being 0.10 % (130.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49872010 BTC (292,097.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,673,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.76 % (542,596.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 835.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07825580 BTC (130,974.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.89 CZK over 2984 transactions" + } + ] + }, + { + "id": 4667, + "type": "message", + "date": "2024-03-13T21:00:04", + "date_unixtime": "1710360004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004900 BTC for 82.71 CZK @ 1,687,860 CZK\nFees are 0.29048113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (108.02304000 CZK)\nThe limits being 0.10 % (132.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49876910 BTC (292,180.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,687,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.13 % (549,671.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 752.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07830480 BTC (132,167.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.88 CZK over 2985 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004900 BTC for 82.71 CZK @ 1,687,860 CZK\nFees are 0.29048113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (108.02304000 CZK)\nThe limits being 0.10 % (132.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49876910 BTC (292,180.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,687,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.13 % (549,671.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 752.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07830480 BTC (132,167.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.88 CZK over 2985 transactions" + } + ] + }, + { + "id": 4668, + "type": "message", + "date": "2024-03-14T01:00:04", + "date_unixtime": "1710374404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004908 BTC for 82.70 CZK @ 1,685,038 CZK\nFees are 0.29046892 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.88182399255417773733253905 CZK)\nThe limits being 0.10 % (132.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49881818 BTC (292,263.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 585,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,685,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.59 % (548,264.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 669.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07835388 BTC (132,029.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.88 CZK over 2986 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004908 BTC for 82.70 CZK @ 1,685,038 CZK\nFees are 0.29046892 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.88182399255417773733253905 CZK)\nThe limits being 0.10 % (132.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49881818 BTC (292,263.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 585,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,685,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.59 % (548,264.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 669.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07835388 BTC (132,029.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.88 CZK over 2986 transactions" + } + ] + }, + { + "id": 4669, + "type": "message", + "date": "2024-03-14T05:00:03", + "date_unixtime": "1710388803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004904 BTC for 82.71 CZK @ 1,686,493 CZK\nFees are 0.29048280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.95166399168977095662733451 CZK)\nThe limits being 0.10 % (132.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49886722 BTC (292,346.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,686,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.79 % (548,989.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 586.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07840292 BTC (132,225.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.87 CZK over 2987 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004904 BTC for 82.71 CZK @ 1,686,493 CZK\nFees are 0.29048280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.95166399168977095662733451 CZK)\nThe limits being 0.10 % (132.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49886722 BTC (292,346.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,686,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.79 % (548,989.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 586.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07840292 BTC (132,225.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.87 CZK over 2987 transactions" + } + ] + }, + { + "id": 4670, + "type": "message", + "date": "2024-03-14T09:00:04", + "date_unixtime": "1710403204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004899 BTC for 82.70 CZK @ 1,688,187 CZK\nFees are 0.29047811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (81.03297599613843891755463349 CZK)\nThe limits being 0.10 % (132.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49891621 BTC (292,429.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,688,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.02 % (549,834.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 503.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07845191 BTC (132,441.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.87 CZK over 2988 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004899 BTC for 82.70 CZK @ 1,688,187 CZK\nFees are 0.29047811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (81.03297599613843891755463349 CZK)\nThe limits being 0.10 % (132.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49891621 BTC (292,429.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,688,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.02 % (549,834.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 503.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07845191 BTC (132,441.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.87 CZK over 2988 transactions" + } + ] + }, + { + "id": 4671, + "type": "message", + "date": "2024-03-14T13:00:04", + "date_unixtime": "1710417604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004932 BTC for 82.70 CZK @ 1,676,742 CZK\nFees are 0.29045224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.48361599608184008039986567 CZK)\nThe limits being 0.10 % (131.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49896553 BTC (292,512.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,676,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.02 % (544,123.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 420.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07850123 BTC (131,626.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.86 CZK over 2989 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004932 BTC for 82.70 CZK @ 1,676,742 CZK\nFees are 0.29045224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (80.48361599608184008039986567 CZK)\nThe limits being 0.10 % (131.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49896553 BTC (292,512.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,676,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.02 % (544,123.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 420.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07850123 BTC (131,626.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.86 CZK over 2989 transactions" + } + ] + }, + { + "id": 4672, + "type": "message", + "date": "2024-03-14T17:00:04", + "date_unixtime": "1710432004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005046 BTC for 82.70 CZK @ 1,638,987 CZK\nFees are 0.29047461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.671375996141921822965636920 CZK)\nThe limits being 0.10 % (128.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49901599 BTC (292,595.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,638,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.53 % (525,285.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 337.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07855169 BTC (128,745.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.86 CZK over 2990 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005046 BTC for 82.70 CZK @ 1,638,987 CZK\nFees are 0.29047461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.671375996141921822965636920 CZK)\nThe limits being 0.10 % (128.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49901599 BTC (292,595.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,638,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.53 % (525,285.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 337.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07855169 BTC (128,745.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.86 CZK over 2990 transactions" + } + ] + }, + { + "id": 4673, + "type": "message", + "date": "2024-03-14T21:00:04", + "date_unixtime": "1710446404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005154 BTC for 82.70 CZK @ 1,604,672 CZK\nFees are 0.29047992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (154.04851199613924024934846778 CZK)\nThe limits being 0.10 % (126.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49906753 BTC (292,678.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,604,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.62 % (508,161.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 254.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07860323 BTC (126,132.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.85 CZK over 2991 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005154 BTC for 82.70 CZK @ 1,604,672 CZK\nFees are 0.29047992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (154.04851199613924024934846778 CZK)\nThe limits being 0.10 % (126.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49906753 BTC (292,678.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,604,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.62 % (508,161.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 254.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07860323 BTC (126,132.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.85 CZK over 2991 transactions" + } + ] + }, + { + "id": 4674, + "type": "message", + "date": "2024-03-15T01:00:04", + "date_unixtime": "1710460804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005001 BTC for 82.70 CZK @ 1,653,700 CZK\nFees are 0.29046847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (158.75519998182725188893461966 CZK)\nThe limits being 0.10 % (130.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49911754 BTC (292,761.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,653,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.93 % (532,629.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 171.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07865324 BTC (130,068.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.85 CZK over 2992 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005001 BTC for 82.70 CZK @ 1,653,700 CZK\nFees are 0.29046847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (158.75519998182725188893461966 CZK)\nThe limits being 0.10 % (130.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49911754 BTC (292,761.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,653,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.93 % (532,629.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 171.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07865324 BTC (130,068.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.85 CZK over 2992 transactions" + } + ] + }, + { + "id": 4675, + "type": "message", + "date": "2024-03-15T05:00:03", + "date_unixtime": "1710475203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005239 BTC for 82.70 CZK @ 1,578,516 CZK\nFees are 0.29045764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.53753598842303512434480843 CZK)\nThe limits being 0.10 % (124.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49916993 BTC (292,844.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.07 % (495,103.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 88.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07870563 BTC (124,238.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.84 CZK over 2993 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005239 BTC for 82.70 CZK @ 1,578,516 CZK\nFees are 0.29045764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.53753598842303512434480843 CZK)\nThe limits being 0.10 % (124.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49916993 BTC (292,844.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.07 % (495,103.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 88.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07870563 BTC (124,238.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.84 CZK over 2993 transactions" + } + ] + }, + { + "id": 4676, + "type": "message", + "date": "2024-03-15T09:00:03", + "date_unixtime": "1710489603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005224 BTC for 82.70 CZK @ 1,583,062 CZK\nFees are 0.29046012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.31596799257728120033176379 CZK)\nThe limits being 0.10 % (124.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49922217 BTC (292,927.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.79 % (497,372.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07875787 BTC (124,678.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.84 CZK over 2994 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005224 BTC for 82.70 CZK @ 1,583,062 CZK\nFees are 0.29046012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.31596799257728120033176379 CZK)\nThe limits being 0.10 % (124.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49922217 BTC (292,927.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.79 % (497,372.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07875787 BTC (124,678.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.84 CZK over 2994 transactions" + } + ] + }, + { + "id": 4677, + "type": "message", + "date": "2024-03-15T13:00:01", + "date_unixtime": "1710504001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (5.45929074 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (5.45929074 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4678, + "type": "message", + "date": "2024-03-15T17:00:04", + "date_unixtime": "1710518404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005247 BTC for 82.70 CZK @ 1,576,105 CZK\nFees are 0.29045686 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.30607999503168299174729499 CZK)\nThe limits being 0.10 % (124.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49927464 BTC (293,010.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.56 % (493,898.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,922.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07881034 BTC (124,213.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.83 CZK over 2995 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005247 BTC for 82.70 CZK @ 1,576,105 CZK\nFees are 0.29045686 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.30607999503168299174729499 CZK)\nThe limits being 0.10 % (124.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49927464 BTC (293,010.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.56 % (493,898.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,922.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07881034 BTC (124,213.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.83 CZK over 2995 transactions" + } + ] + }, + { + "id": 4679, + "type": "message", + "date": "2024-03-15T21:00:03", + "date_unixtime": "1710532803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,591,005 CZK\nFees are 0.29046462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (152.73647998223992095384507437 CZK)\nThe limits being 0.10 % (125.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49932662 BTC (293,093.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 586,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.05 % (501,337.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,839.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07886232 BTC (125,470.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.83 CZK over 2996 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,591,005 CZK\nFees are 0.29046462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (152.73647998223992095384507437 CZK)\nThe limits being 0.10 % (125.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49932662 BTC (293,093.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 586,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.05 % (501,337.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,839.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07886232 BTC (125,470.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.83 CZK over 2996 transactions" + } + ] + }, + { + "id": 4680, + "type": "message", + "date": "2024-03-16T01:00:03", + "date_unixtime": "1710547203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005145 BTC for 82.71 CZK @ 1,607,532 CZK\nFees are 0.29048949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (154.32307199088903124777564240 CZK)\nThe limits being 0.10 % (126.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49937807 BTC (293,176.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,607,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.82 % (509,589.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,756.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07891377 BTC (126,856.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.82 CZK over 2997 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005145 BTC for 82.71 CZK @ 1,607,532 CZK\nFees are 0.29048949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (154.32307199088903124777564240 CZK)\nThe limits being 0.10 % (126.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49937807 BTC (293,176.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,607,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.82 % (509,589.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,756.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07891377 BTC (126,856.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.82 CZK over 2997 transactions" + } + ] + }, + { + "id": 4681, + "type": "message", + "date": "2024-03-16T05:00:03", + "date_unixtime": "1710561603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005166 BTC for 82.70 CZK @ 1,600,910 CZK\nFees are 0.29047365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (153.68735998685205728845671972 CZK)\nThe limits being 0.10 % (126.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49942973 BTC (293,259.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,189 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,600,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.64 % (506,282.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,673.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07896543 BTC (126,416.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.82 CZK over 2998 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005166 BTC for 82.70 CZK @ 1,600,910 CZK\nFees are 0.29047365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (153.68735998685205728845671972 CZK)\nThe limits being 0.10 % (126.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49942973 BTC (293,259.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,189 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,600,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.64 % (506,282.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,673.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07896543 BTC (126,416.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.82 CZK over 2998 transactions" + } + ] + }, + { + "id": 4682, + "type": "message", + "date": "2024-03-16T09:00:04", + "date_unixtime": "1710576004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005150 BTC for 82.71 CZK @ 1,606,000 CZK\nFees are 0.29049469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (179.87200000 CZK)\nThe limits being 0.10 % (126.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49948123 BTC (293,342.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,606,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.46 % (508,824.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,590.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07901693 BTC (126,901.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.81 CZK over 2999 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005150 BTC for 82.71 CZK @ 1,606,000 CZK\nFees are 0.29049469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (179.87200000 CZK)\nThe limits being 0.10 % (126.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49948123 BTC (293,342.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,606,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.46 % (508,824.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,590.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07901693 BTC (126,901.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.81 CZK over 2999 transactions" + } + ] + }, + { + "id": 4683, + "type": "message", + "date": "2024-03-16T13:00:03", + "date_unixtime": "1710590403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,247 CZK\nFees are 0.29046358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.51171198210842204954415271 CZK)\nThe limits being 0.10 % (124.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49953363 BTC (293,425.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.68 % (494,962.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,507.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07906933 BTC (124,790.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.81 CZK over 3000 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,247 CZK\nFees are 0.29046358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (151.51171198210842204954415271 CZK)\nThe limits being 0.10 % (124.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49953363 BTC (293,425.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.68 % (494,962.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,507.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07906933 BTC (124,790.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.81 CZK over 3000 transactions" + } + ] + }, + { + "id": 4684, + "type": "message", + "date": "2024-03-16T17:00:03", + "date_unixtime": "1710604803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005223 BTC for 82.71 CZK @ 1,583,478 CZK\nFees are 0.29048083 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.34259199292997197917569953 CZK)\nThe limits being 0.10 % (125.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49958586 BTC (293,508.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.53 % (497,574.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,424.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07912156 BTC (125,287.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.80 CZK over 3001 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005223 BTC for 82.71 CZK @ 1,583,478 CZK\nFees are 0.29048083 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (101.34259199292997197917569953 CZK)\nThe limits being 0.10 % (125.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49958586 BTC (293,508.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.53 % (497,574.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,424.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07912156 BTC (125,287.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.80 CZK over 3001 transactions" + } + ] + }, + { + "id": 4685, + "type": "message", + "date": "2024-03-16T21:00:05", + "date_unixtime": "1710619205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005333 BTC for 82.70 CZK @ 1,550,771 CZK\nFees are 0.29047227 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (74.437007999098598370918361766 CZK)\nThe limits being 0.10 % (122.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49963919 BTC (293,591.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.91 % (481,234.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,341.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07917489 BTC (122,782.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.80 CZK over 3002 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005333 BTC for 82.70 CZK @ 1,550,771 CZK\nFees are 0.29047227 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (74.437007999098598370918361766 CZK)\nThe limits being 0.10 % (122.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49963919 BTC (293,591.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.91 % (481,234.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,341.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07917489 BTC (122,782.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.80 CZK over 3002 transactions" + } + ] + }, + { + "id": 4686, + "type": "message", + "date": "2024-03-17T01:00:04", + "date_unixtime": "1710633604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005471 BTC for 82.70 CZK @ 1,511,627 CZK\nFees are 0.29046698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.372063996447454927676364314 CZK)\nThe limits being 0.10 % (119.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49969390 BTC (293,674.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.21 % (461,676.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,258.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07922960 BTC (119,765.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.79 CZK over 3003 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005471 BTC for 82.70 CZK @ 1,511,627 CZK\nFees are 0.29046698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.372063996447454927676364314 CZK)\nThe limits being 0.10 % (119.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49969390 BTC (293,674.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.21 % (461,676.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,258.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07922960 BTC (119,765.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.79 CZK over 3003 transactions" + } + ] + }, + { + "id": 4687, + "type": "message", + "date": "2024-03-17T05:00:04", + "date_unixtime": "1710648004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005371 BTC for 82.71 CZK @ 1,539,875 CZK\nFees are 0.29048656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.275999998886785841808371869 CZK)\nThe limits being 0.10 % (122.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49974761 BTC (293,757.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,539,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.97 % (475,791.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,175.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07928331 BTC (122,086.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.79 CZK over 3004 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005371 BTC for 82.71 CZK @ 1,539,875 CZK\nFees are 0.29048656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.275999998886785841808371869 CZK)\nThe limits being 0.10 % (122.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49974761 BTC (293,757.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,539,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.97 % (475,791.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,175.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07928331 BTC (122,086.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.79 CZK over 3004 transactions" + } + ] + }, + { + "id": 4688, + "type": "message", + "date": "2024-03-17T09:00:04", + "date_unixtime": "1710662404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005440 BTC for 82.71 CZK @ 1,520,337 CZK\nFees are 0.29048532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.650783997186318473577771917 CZK)\nThe limits being 0.10 % (120.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49980201 BTC (293,840.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 587,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.60 % (466,027.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,092.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07933771 BTC (120,620.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.78 CZK over 3005 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005440 BTC for 82.71 CZK @ 1,520,337 CZK\nFees are 0.29048532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.650783997186318473577771917 CZK)\nThe limits being 0.10 % (120.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49980201 BTC (293,840.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 587,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.60 % (466,027.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,092.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07933771 BTC (120,620.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.78 CZK over 3005 transactions" + } + ] + }, + { + "id": 4689, + "type": "message", + "date": "2024-03-17T13:00:03", + "date_unixtime": "1710676803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005326 BTC for 82.70 CZK @ 1,552,678 CZK\nFees are 0.29044773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.685695996419591138113860218 CZK)\nThe limits being 0.10 % (123.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49985527 BTC (293,923.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.05 % (482,190.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,009.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07939097 BTC (123,268.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.78 CZK over 3006 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005326 BTC for 82.70 CZK @ 1,552,678 CZK\nFees are 0.29044773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.685695996419591138113860218 CZK)\nThe limits being 0.10 % (123.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49985527 BTC (293,923.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.05 % (482,190.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,009.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07939097 BTC (123,268.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.78 CZK over 3006 transactions" + } + ] + }, + { + "id": 4690, + "type": "message", + "date": "2024-03-17T17:00:03", + "date_unixtime": "1710691203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005258 BTC for 82.70 CZK @ 1,572,788 CZK\nFees are 0.29045322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.329215996579487957989562205 CZK)\nThe limits being 0.10 % (124.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49990785 BTC (294,006.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.43 % (492,242.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,926.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07944355 BTC (124,947.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.77 CZK over 3007 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005258 BTC for 82.70 CZK @ 1,572,788 CZK\nFees are 0.29045322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.329215996579487957989562205 CZK)\nThe limits being 0.10 % (124.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49990785 BTC (294,006.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.43 % (492,242.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,926.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07944355 BTC (124,947.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.77 CZK over 3007 transactions" + } + ] + }, + { + "id": 4691, + "type": "message", + "date": "2024-03-17T21:00:03", + "date_unixtime": "1710705603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005217 BTC for 82.70 CZK @ 1,585,280 CZK\nFees are 0.29047733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.093439998533024007692455362 CZK)\nThe limits being 0.10 % (126.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.49996002 BTC (294,089.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.50 % (498,487.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,843.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07949572 BTC (126,022.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.77 CZK over 3008 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005217 BTC for 82.70 CZK @ 1,585,280 CZK\nFees are 0.29047733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.093439998533024007692455362 CZK)\nThe limits being 0.10 % (126.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.49996002 BTC (294,089.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.50 % (498,487.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,843.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07949572 BTC (126,022.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.77 CZK over 3008 transactions" + } + ] + }, + { + "id": 4692, + "type": "message", + "date": "2024-03-18T01:00:03", + "date_unixtime": "1710720003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005218 BTC for 82.71 CZK @ 1,585,082 CZK\nFees are 0.29049672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.083935994811566951469015210 CZK)\nThe limits being 0.10 % (126.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50001220 BTC (294,172.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.42 % (498,387.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,760.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07954790 BTC (126,089.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.76 CZK over 3009 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005218 BTC for 82.71 CZK @ 1,585,082 CZK\nFees are 0.29049672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.083935994811566951469015210 CZK)\nThe limits being 0.10 % (126.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50001220 BTC (294,172.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.42 % (498,387.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,760.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07954790 BTC (126,089.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.76 CZK over 3009 transactions" + } + ] + }, + { + "id": 4693, + "type": "message", + "date": "2024-03-18T05:00:03", + "date_unixtime": "1710734403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005257 BTC for 82.70 CZK @ 1,573,188 CZK\nFees are 0.29047183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.342015996324069864282316435 CZK)\nThe limits being 0.10 % (125.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50006477 BTC (294,255.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,573,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.35 % (492,440.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,677.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07960047 BTC (125,226.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.76 CZK over 3010 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005257 BTC for 82.70 CZK @ 1,573,188 CZK\nFees are 0.29047183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.342015996324069864282316435 CZK)\nThe limits being 0.10 % (125.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50006477 BTC (294,255.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,573,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.35 % (492,440.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,677.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07960047 BTC (125,226.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.76 CZK over 3010 transactions" + } + ] + }, + { + "id": 4694, + "type": "message", + "date": "2024-03-18T09:00:04", + "date_unixtime": "1710748804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005238 BTC for 82.70 CZK @ 1,578,810 CZK\nFees are 0.29045629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.782879993333755681004228611 CZK)\nThe limits being 0.10 % (125.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50011715 BTC (294,338.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.26 % (495,251.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,594.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07965285 BTC (125,756.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.75 CZK over 3011 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005238 BTC for 82.70 CZK @ 1,578,810 CZK\nFees are 0.29045629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.782879993333755681004228611 CZK)\nThe limits being 0.10 % (125.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50011715 BTC (294,338.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.26 % (495,251.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,594.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07965285 BTC (125,756.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.75 CZK over 3011 transactions" + } + ] + }, + { + "id": 4695, + "type": "message", + "date": "2024-03-18T13:00:03", + "date_unixtime": "1710763203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005238 BTC for 82.70 CZK @ 1,578,783 CZK\nFees are 0.29045132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.521055995501046071472260221 CZK)\nThe limits being 0.10 % (125.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50016953 BTC (294,421.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.21 % (495,237.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,511.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07970523 BTC (125,837.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.75 CZK over 3012 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005238 BTC for 82.70 CZK @ 1,578,783 CZK\nFees are 0.29045132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.521055995501046071472260221 CZK)\nThe limits being 0.10 % (125.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50016953 BTC (294,421.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.21 % (495,237.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,511.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07970523 BTC (125,837.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.75 CZK over 3012 transactions" + } + ] + }, + { + "id": 4696, + "type": "message", + "date": "2024-03-18T17:00:04", + "date_unixtime": "1710777604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005286 BTC for 82.70 CZK @ 1,564,554 CZK\nFees are 0.29047124 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (150.19718398997379772385753155 CZK)\nThe limits being 0.10 % (124.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50022239 BTC (294,504.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.74 % (488,120.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,428.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07975809 BTC (124,785.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.74 CZK over 3013 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005286 BTC for 82.70 CZK @ 1,564,554 CZK\nFees are 0.29047124 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (150.19718398997379772385753155 CZK)\nThe limits being 0.10 % (124.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50022239 BTC (294,504.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.74 % (488,120.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,428.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07975809 BTC (124,785.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.74 CZK over 3013 transactions" + } + ] + }, + { + "id": 4697, + "type": "message", + "date": "2024-03-18T21:00:03", + "date_unixtime": "1710792003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005304 BTC for 82.70 CZK @ 1,559,198 CZK\nFees are 0.29046259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (224.52451198181928859850252623 CZK)\nThe limits being 0.10 % (124.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50027543 BTC (294,587.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.79 % (485,441.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,345.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07981113 BTC (124,441.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.74 CZK over 3014 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005304 BTC for 82.70 CZK @ 1,559,198 CZK\nFees are 0.29046259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (224.52451198181928859850252623 CZK)\nThe limits being 0.10 % (124.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50027543 BTC (294,587.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.79 % (485,441.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,345.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07981113 BTC (124,441.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.74 CZK over 3014 transactions" + } + ] + }, + { + "id": 4698, + "type": "message", + "date": "2024-03-19T01:00:04", + "date_unixtime": "1710806404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005257 BTC for 82.71 CZK @ 1,573,333 CZK\nFees are 0.29049860 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (201.38662398705538793791825623 CZK)\nThe limits being 0.10 % (125.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50032800 BTC (294,670.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 588,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,573,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.14 % (492,512.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,262.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07986370 BTC (125,652.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.73 CZK over 3015 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005257 BTC for 82.71 CZK @ 1,573,333 CZK\nFees are 0.29049860 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (201.38662398705538793791825623 CZK)\nThe limits being 0.10 % (125.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50032800 BTC (294,670.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 588,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,573,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.14 % (492,512.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,262.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07986370 BTC (125,652.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.73 CZK over 3015 transactions" + } + ] + }, + { + "id": 4699, + "type": "message", + "date": "2024-03-19T05:00:03", + "date_unixtime": "1710820803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005394 BTC for 82.70 CZK @ 1,533,175 CZK\nFees are 0.29046118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (196.24639998049097347271202627 CZK)\nThe limits being 0.10 % (122.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50038194 BTC (294,753.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,533,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.28 % (472,419.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,179.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07991764 BTC (122,527.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.73 CZK over 3016 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005394 BTC for 82.70 CZK @ 1,533,175 CZK\nFees are 0.29046118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (196.24639998049097347271202627 CZK)\nThe limits being 0.10 % (122.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50038194 BTC (294,753.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,533,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.28 % (472,419.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,179.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07991764 BTC (122,527.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.73 CZK over 3016 transactions" + } + ] + }, + { + "id": 4700, + "type": "message", + "date": "2024-03-19T09:00:03", + "date_unixtime": "1710835203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005497 BTC for 82.70 CZK @ 1,504,438 CZK\nFees are 0.29045941 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (120.35503998693312717839752970 CZK)\nThe limits being 0.10 % (120.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50043691 BTC (294,836.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,504,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.35 % (458,040.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,096.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.07997261 BTC (120,313.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.72 CZK over 3017 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005497 BTC for 82.70 CZK @ 1,504,438 CZK\nFees are 0.29045941 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (120.35503998693312717839752970 CZK)\nThe limits being 0.10 % (120.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50043691 BTC (294,836.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,504,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.35 % (458,040.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,096.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.07997261 BTC (120,313.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.72 CZK over 3017 transactions" + } + ] + }, + { + "id": 4701, + "type": "message", + "date": "2024-03-19T13:00:03", + "date_unixtime": "1710849603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005641 BTC for 82.70 CZK @ 1,466,128 CZK\nFees are 0.29047811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (93.83219199810060286250383894 CZK)\nThe limits being 0.10 % (117.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50049332 BTC (294,919.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,466,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.81 % (438,867.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,013.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08002902 BTC (117,332.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.72 CZK over 3018 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005641 BTC for 82.70 CZK @ 1,466,128 CZK\nFees are 0.29047811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (93.83219199810060286250383894 CZK)\nThe limits being 0.10 % (117.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50049332 BTC (294,919.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,466,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.81 % (438,867.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,013.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08002902 BTC (117,332.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.72 CZK over 3018 transactions" + } + ] + }, + { + "id": 4702, + "type": "message", + "date": "2024-03-19T17:00:04", + "date_unixtime": "1710864004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005552 BTC for 82.70 CZK @ 1,489,542 CZK\nFees are 0.29046087 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (95.33068799834584717178635583 CZK)\nThe limits being 0.10 % (119.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50054884 BTC (295,002.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,489,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.74 % (450,586.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,930.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08008454 BTC (119,289.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.72 CZK over 3019 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005552 BTC for 82.70 CZK @ 1,489,542 CZK\nFees are 0.29046087 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (95.33068799834584717178635583 CZK)\nThe limits being 0.10 % (119.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50054884 BTC (295,002.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,489,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.74 % (450,586.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,930.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08008454 BTC (119,289.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.72 CZK over 3019 transactions" + } + ] + }, + { + "id": 4703, + "type": "message", + "date": "2024-03-19T21:00:03", + "date_unixtime": "1710878403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005512 BTC for 82.71 CZK @ 1,500,461 CZK\nFees are 0.29048208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (96.02950399291883342987497316 CZK)\nThe limits being 0.10 % (120.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50060396 BTC (295,085.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,500,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.55 % (456,051.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,847.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08013966 BTC (120,246.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.71 CZK over 3020 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005512 BTC for 82.71 CZK @ 1,500,461 CZK\nFees are 0.29048208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (96.02950399291883342987497316 CZK)\nThe limits being 0.10 % (120.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50060396 BTC (295,085.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,500,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.55 % (456,051.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,847.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08013966 BTC (120,246.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.71 CZK over 3020 transactions" + } + ] + }, + { + "id": 4704, + "type": "message", + "date": "2024-03-20T01:00:03", + "date_unixtime": "1710892803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005740 BTC for 82.71 CZK @ 1,440,892 CZK\nFees are 0.29048837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (69.162815997666703124430347438 CZK)\nThe limits being 0.10 % (115.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50066136 BTC (295,168.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.40 % (426,230.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,764.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08019706 BTC (115,555.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.71 CZK over 3021 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005740 BTC for 82.71 CZK @ 1,440,892 CZK\nFees are 0.29048837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (69.162815997666703124430347438 CZK)\nThe limits being 0.10 % (115.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50066136 BTC (295,168.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.40 % (426,230.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,764.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08019706 BTC (115,555.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.71 CZK over 3021 transactions" + } + ] + }, + { + "id": 4705, + "type": "message", + "date": "2024-03-20T05:00:04", + "date_unixtime": "1710907204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005752 BTC for 82.71 CZK @ 1,437,852 CZK\nFees are 0.29048150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (69.016895996141460382402897234 CZK)\nThe limits being 0.10 % (115.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50071888 BTC (295,251.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.85 % (424,708.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,681.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08025458 BTC (115,394.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.70 CZK over 3022 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005752 BTC for 82.71 CZK @ 1,437,852 CZK\nFees are 0.29048150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (69.016895996141460382402897234 CZK)\nThe limits being 0.10 % (115.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50071888 BTC (295,251.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.85 % (424,708.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,681.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08025458 BTC (115,394.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.70 CZK over 3022 transactions" + } + ] + }, + { + "id": 4706, + "type": "message", + "date": "2024-03-20T09:00:04", + "date_unixtime": "1710921604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005642 BTC for 82.70 CZK @ 1,465,856 CZK\nFees are 0.29047570 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (46.907391997558350805855507142 CZK)\nThe limits being 0.10 % (117.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50077530 BTC (295,334.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,465,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.55 % (438,730.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,598.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08031100 BTC (117,724.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.70 CZK over 3023 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005642 BTC for 82.70 CZK @ 1,465,856 CZK\nFees are 0.29047570 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (46.907391997558350805855507142 CZK)\nThe limits being 0.10 % (117.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50077530 BTC (295,334.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,465,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.55 % (438,730.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,598.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08031100 BTC (117,724.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.70 CZK over 3023 transactions" + } + ] + }, + { + "id": 4707, + "type": "message", + "date": "2024-03-20T13:00:04", + "date_unixtime": "1710936004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005590 BTC for 82.70 CZK @ 1,479,441 CZK\nFees are 0.29046572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.342111999058750544828342304 CZK)\nThe limits being 0.10 % (118.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50083120 BTC (295,417.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,479,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.81 % (445,532.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,515.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08036690 BTC (118,898.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.69 CZK over 3024 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005590 BTC for 82.70 CZK @ 1,479,441 CZK\nFees are 0.29046572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (47.342111999058750544828342304 CZK)\nThe limits being 0.10 % (118.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50083120 BTC (295,417.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,479,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.81 % (445,532.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,515.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08036690 BTC (118,898.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.69 CZK over 3024 transactions" + } + ] + }, + { + "id": 4708, + "type": "message", + "date": "2024-03-20T17:00:04", + "date_unixtime": "1710950404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005596 BTC for 82.70 CZK @ 1,477,854 CZK\nFees are 0.29046557 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (94.58265599493979791245294792 CZK)\nThe limits being 0.10 % (118.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50088716 BTC (295,500.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 589,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,477,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.50 % (444,737.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,432.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08042286 BTC (118,853.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.69 CZK over 3025 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005596 BTC for 82.70 CZK @ 1,477,854 CZK\nFees are 0.29046557 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (94.58265599493979791245294792 CZK)\nThe limits being 0.10 % (118.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50088716 BTC (295,500.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 589,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,477,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.50 % (444,737.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,432.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08042286 BTC (118,853.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.69 CZK over 3025 transactions" + } + ] + }, + { + "id": 4709, + "type": "message", + "date": "2024-03-20T21:00:04", + "date_unixtime": "1710964804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005450 BTC for 82.70 CZK @ 1,517,454 CZK\nFees are 0.29046744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (169.95484799897606085124084054 CZK)\nThe limits being 0.10 % (122.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50094166 BTC (295,583.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.17 % (464,572.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,349.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08047736 BTC (122,120.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.68 CZK over 3026 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005450 BTC for 82.70 CZK @ 1,517,454 CZK\nFees are 0.29046744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (169.95484799897606085124084054 CZK)\nThe limits being 0.10 % (122.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50094166 BTC (295,583.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.17 % (464,572.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,349.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08047736 BTC (122,120.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.68 CZK over 3026 transactions" + } + ] + }, + { + "id": 4710, + "type": "message", + "date": "2024-03-21T01:00:04", + "date_unixtime": "1710979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005277 BTC for 82.70 CZK @ 1,567,129 CZK\nFees are 0.29045393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (125.37031999901047489745715654 CZK)\nThe limits being 0.10 % (126.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50099443 BTC (295,666.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.54 % (489,456.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,266.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08053013 BTC (126,201.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.68 CZK over 3027 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005277 BTC for 82.70 CZK @ 1,567,129 CZK\nFees are 0.29045393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (125.37031999901047489745715654 CZK)\nThe limits being 0.10 % (126.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50099443 BTC (295,666.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.54 % (489,456.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,266.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08053013 BTC (126,201.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.68 CZK over 3027 transactions" + } + ] + }, + { + "id": 4711, + "type": "message", + "date": "2024-03-21T05:00:03", + "date_unixtime": "1710993603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005372 BTC for 82.71 CZK @ 1,539,630 CZK\nFees are 0.29049442 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (123.17039999614157596587669145 CZK)\nThe limits being 0.10 % (124.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50104815 BTC (295,749.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,539,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.84 % (475,679.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,183.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08058385 BTC (124,069.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.67 CZK over 3028 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005372 BTC for 82.71 CZK @ 1,539,630 CZK\nFees are 0.29049442 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (123.17039999614157596587669145 CZK)\nThe limits being 0.10 % (124.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50104815 BTC (295,749.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,539,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.84 % (475,679.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,183.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08058385 BTC (124,069.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.67 CZK over 3028 transactions" + } + ] + }, + { + "id": 4712, + "type": "message", + "date": "2024-03-21T09:00:03", + "date_unixtime": "1711008003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,122 CZK\nFees are 0.29045959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (124.00975999932756439621586864 CZK)\nThe limits being 0.10 % (125.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50110150 BTC (295,832.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.57 % (480,936.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,100.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08063720 BTC (124,997.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.67 CZK over 3029 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,122 CZK\nFees are 0.29045959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (124.00975999932756439621586864 CZK)\nThe limits being 0.10 % (125.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50110150 BTC (295,832.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.57 % (480,936.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,100.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08063720 BTC (124,997.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.67 CZK over 3029 transactions" + } + ] + }, + { + "id": 4713, + "type": "message", + "date": "2024-03-21T13:00:04", + "date_unixtime": "1711022404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005318 BTC for 82.71 CZK @ 1,555,193 CZK\nFees are 0.29048121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (124.41543999536784848367307129 CZK)\nThe limits being 0.10 % (125.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50115468 BTC (295,915.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,555,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.38 % (483,477.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,017.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08069038 BTC (125,489.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.66 CZK over 3030 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005318 BTC for 82.71 CZK @ 1,555,193 CZK\nFees are 0.29048121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (124.41543999536784848367307129 CZK)\nThe limits being 0.10 % (125.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50115468 BTC (295,915.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,555,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.38 % (483,477.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,017.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08069038 BTC (125,489.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.66 CZK over 3030 transactions" + } + ] + }, + { + "id": 4714, + "type": "message", + "date": "2024-03-21T17:00:04", + "date_unixtime": "1711036804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005332 BTC for 82.70 CZK @ 1,550,937 CZK\nFees are 0.29044889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (148.88995199472513868377408253 CZK)\nThe limits being 0.10 % (125.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50120800 BTC (295,998.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.62 % (481,343.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,934.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08074370 BTC (125,228.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.66 CZK over 3031 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005332 BTC for 82.70 CZK @ 1,550,937 CZK\nFees are 0.29044889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (148.88995199472513868377408253 CZK)\nThe limits being 0.10 % (125.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50120800 BTC (295,998.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.62 % (481,343.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,934.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08074370 BTC (125,228.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.66 CZK over 3031 transactions" + } + ] + }, + { + "id": 4715, + "type": "message", + "date": "2024-03-21T21:00:04", + "date_unixtime": "1711051204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,643 CZK\nFees are 0.29045126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (146.36572798744218244992085223 CZK)\nThe limits being 0.10 % (123.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50126224 BTC (296,081.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,671 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,524,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.12 % (468,164.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,851.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08079794 BTC (123,188.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.65 CZK over 3032 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,643 CZK\nFees are 0.29045126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (146.36572798744218244992085223 CZK)\nThe limits being 0.10 % (123.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50126224 BTC (296,081.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,671 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,524,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.12 % (468,164.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,851.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08079794 BTC (123,188.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.65 CZK over 3032 transactions" + } + ] + }, + { + "id": 4716, + "type": "message", + "date": "2024-03-22T01:00:04", + "date_unixtime": "1711065604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005411 BTC for 82.71 CZK @ 1,528,501 CZK\nFees are 0.29048832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (171.19211199611192649787838297 CZK)\nThe limits being 0.10 % (123.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50131635 BTC (296,164.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,528,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.73 % (470,098.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,768.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08085205 BTC (123,582.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.65 CZK over 3033 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005411 BTC for 82.71 CZK @ 1,528,501 CZK\nFees are 0.29048832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (171.19211199611192649787838297 CZK)\nThe limits being 0.10 % (123.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50131635 BTC (296,164.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,528,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.73 % (470,098.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,768.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08085205 BTC (123,582.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.65 CZK over 3033 transactions" + } + ] + }, + { + "id": 4717, + "type": "message", + "date": "2024-03-22T05:00:03", + "date_unixtime": "1711080003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005359 BTC for 82.70 CZK @ 1,543,192 CZK\nFees are 0.29046188 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (148.14643198664721989550847086 CZK)\nThe limits being 0.10 % (124.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50136994 BTC (296,247.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,543,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.17 % (477,462.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,685.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08090564 BTC (124,852.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.64 CZK over 3034 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005359 BTC for 82.70 CZK @ 1,543,192 CZK\nFees are 0.29046188 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (148.14643198664721989550847086 CZK)\nThe limits being 0.10 % (124.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50136994 BTC (296,247.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,543,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.17 % (477,462.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,685.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08090564 BTC (124,852.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.64 CZK over 3034 transactions" + } + ] + }, + { + "id": 4718, + "type": "message", + "date": "2024-03-22T09:00:04", + "date_unixtime": "1711094404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005335 BTC for 82.71 CZK @ 1,550,294 CZK\nFees are 0.29049182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (173.63292798504204356915743352 CZK)\nThe limits being 0.10 % (125.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50142329 BTC (296,330.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 590,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.33 % (481,023.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,602.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08095899 BTC (125,510.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.64 CZK over 3035 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005335 BTC for 82.71 CZK @ 1,550,294 CZK\nFees are 0.29049182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (173.63292798504204356915743352 CZK)\nThe limits being 0.10 % (125.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50142329 BTC (296,330.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 590,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.33 % (481,023.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,602.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08095899 BTC (125,510.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.64 CZK over 3035 transactions" + } + ] + }, + { + "id": 4719, + "type": "message", + "date": "2024-03-22T13:00:04", + "date_unixtime": "1711108804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005481 BTC for 82.71 CZK @ 1,508,964 CZK\nFees are 0.29048526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (169.00396798179551645867815138 CZK)\nThe limits being 0.10 % (122.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50147810 BTC (296,413.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,508,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.29 % (460,299.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,519.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08101380 BTC (122,246.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.63 CZK over 3036 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005481 BTC for 82.71 CZK @ 1,508,964 CZK\nFees are 0.29048526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (169.00396798179551645867815138 CZK)\nThe limits being 0.10 % (122.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50147810 BTC (296,413.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,508,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.29 % (460,299.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,519.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08101380 BTC (122,246.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.63 CZK over 3036 transactions" + } + ] + }, + { + "id": 4720, + "type": "message", + "date": "2024-03-22T17:00:03", + "date_unixtime": "1711123203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005515 BTC for 82.70 CZK @ 1,499,536 CZK\nFees are 0.29046100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (95.97030399259888667090387633 CZK)\nThe limits being 0.10 % (121.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50153325 BTC (296,496.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,499,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.65 % (455,571.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,436.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08106895 BTC (121,565.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.63 CZK over 3037 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005515 BTC for 82.70 CZK @ 1,499,536 CZK\nFees are 0.29046100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (95.97030399259888667090387633 CZK)\nThe limits being 0.10 % (121.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50153325 BTC (296,496.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,499,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.65 % (455,571.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,436.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08106895 BTC (121,565.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.63 CZK over 3037 transactions" + } + ] + }, + { + "id": 4721, + "type": "message", + "date": "2024-03-22T21:00:05", + "date_unixtime": "1711137605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005495 BTC for 82.70 CZK @ 1,505,073 CZK\nFees are 0.29047629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.243503995887006940675787611 CZK)\nThe limits being 0.10 % (122.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50158820 BTC (296,579.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,505,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.54 % (458,347.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,353.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08112390 BTC (122,097.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.62 CZK over 3038 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005495 BTC for 82.70 CZK @ 1,505,073 CZK\nFees are 0.29047629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.243503995887006940675787611 CZK)\nThe limits being 0.10 % (122.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50158820 BTC (296,579.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,505,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.54 % (458,347.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,353.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08112390 BTC (122,097.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.62 CZK over 3038 transactions" + } + ] + }, + { + "id": 4722, + "type": "message", + "date": "2024-03-23T01:00:03", + "date_unixtime": "1711152003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005521 BTC for 82.70 CZK @ 1,497,918 CZK\nFees are 0.29046326 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.900063995902044348132378918 CZK)\nThe limits being 0.10 % (121.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50164341 BTC (296,662.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,497,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.29 % (454,758.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,270.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08117911 BTC (121,599.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.62 CZK over 3039 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005521 BTC for 82.70 CZK @ 1,497,918 CZK\nFees are 0.29046326 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.900063995902044348132378918 CZK)\nThe limits being 0.10 % (121.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50164341 BTC (296,662.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,497,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.29 % (454,758.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,270.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08117911 BTC (121,599.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.62 CZK over 3039 transactions" + } + ] + }, + { + "id": 4723, + "type": "message", + "date": "2024-03-23T05:00:04", + "date_unixtime": "1711166404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005536 BTC for 82.70 CZK @ 1,493,941 CZK\nFees are 0.29047914 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.709167992949532128878405354 CZK)\nThe limits being 0.10 % (121.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50169877 BTC (296,745.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.58 % (452,763.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,187.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08123447 BTC (121,359.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.61 CZK over 3040 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005536 BTC for 82.70 CZK @ 1,493,941 CZK\nFees are 0.29047914 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.709167992949532128878405354 CZK)\nThe limits being 0.10 % (121.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50169877 BTC (296,745.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.58 % (452,763.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,187.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08123447 BTC (121,359.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.61 CZK over 3040 transactions" + } + ] + }, + { + "id": 4724, + "type": "message", + "date": "2024-03-23T09:00:03", + "date_unixtime": "1711180803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005446 BTC for 82.70 CZK @ 1,518,559 CZK\nFees are 0.29046561 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.593887999420317540828912982 CZK)\nThe limits being 0.10 % (123.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50175323 BTC (296,828.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.69 % (465,113.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,104.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08128893 BTC (123,442.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.61 CZK over 3041 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005446 BTC for 82.70 CZK @ 1,518,559 CZK\nFees are 0.29046561 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.593887999420317540828912982 CZK)\nThe limits being 0.10 % (123.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50175323 BTC (296,828.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.69 % (465,113.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,104.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08128893 BTC (123,442.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.61 CZK over 3041 transactions" + } + ] + }, + { + "id": 4725, + "type": "message", + "date": "2024-03-23T13:00:03", + "date_unixtime": "1711195203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005452 BTC for 82.71 CZK @ 1,517,006 CZK\nFees are 0.29048825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.544191997122324249572570835 CZK)\nThe limits being 0.10 % (123.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50180775 BTC (296,911.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.39 % (464,334.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,021.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08134345 BTC (123,398.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.60 CZK over 3042 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005452 BTC for 82.71 CZK @ 1,517,006 CZK\nFees are 0.29048825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.544191997122324249572570835 CZK)\nThe limits being 0.10 % (123.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50180775 BTC (296,911.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.39 % (464,334.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,021.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08134345 BTC (123,398.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.60 CZK over 3042 transactions" + } + ] + }, + { + "id": 4726, + "type": "message", + "date": "2024-03-23T17:00:03", + "date_unixtime": "1711209603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005405 BTC for 82.70 CZK @ 1,530,103 CZK\nFees are 0.29047034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.963295997035353137284997424 CZK)\nThe limits being 0.10 % (124.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50186180 BTC (296,994.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,530,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.56 % (470,906.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,938.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08139750 BTC (124,546.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.60 CZK over 3043 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005405 BTC for 82.70 CZK @ 1,530,103 CZK\nFees are 0.29047034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.963295997035353137284997424 CZK)\nThe limits being 0.10 % (124.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50186180 BTC (296,994.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,530,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.56 % (470,906.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,938.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08139750 BTC (124,546.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.60 CZK over 3043 transactions" + } + ] + }, + { + "id": 4727, + "type": "message", + "date": "2024-03-23T21:00:03", + "date_unixtime": "1711224003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005420 BTC for 82.70 CZK @ 1,525,840 CZK\nFees are 0.29046493 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.826879995293226474865645520 CZK)\nThe limits being 0.10 % (124.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50191600 BTC (297,077.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,525,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.79 % (468,766.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,855.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08145170 BTC (124,282.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.59 CZK over 3044 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005420 BTC for 82.70 CZK @ 1,525,840 CZK\nFees are 0.29046493 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.826879995293226474865645520 CZK)\nThe limits being 0.10 % (124.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50191600 BTC (297,077.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,525,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.79 % (468,766.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,855.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08145170 BTC (124,282.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.59 CZK over 3044 transactions" + } + ] + }, + { + "id": 4728, + "type": "message", + "date": "2024-03-24T01:00:03", + "date_unixtime": "1711238403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005492 BTC for 82.70 CZK @ 1,505,752 CZK\nFees are 0.29044867 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.184063994518819964066045606 CZK)\nThe limits being 0.10 % (122.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50197092 BTC (297,160.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 591,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,505,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.36 % (458,683.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,772.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08150662 BTC (122,728.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.59 CZK over 3045 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005492 BTC for 82.70 CZK @ 1,505,752 CZK\nFees are 0.29044867 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.184063994518819964066045606 CZK)\nThe limits being 0.10 % (122.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50197092 BTC (297,160.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 591,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,505,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.36 % (458,683.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,772.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08150662 BTC (122,728.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.59 CZK over 3045 transactions" + } + ] + }, + { + "id": 4729, + "type": "message", + "date": "2024-03-24T05:00:03", + "date_unixtime": "1711252803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005496 BTC for 82.70 CZK @ 1,504,724 CZK\nFees are 0.29046178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.151167994986977891789218083 CZK)\nThe limits being 0.10 % (122.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50202588 BTC (297,243.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,504,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.14 % (458,167.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,689.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08156158 BTC (122,727.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.58 CZK over 3046 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005496 BTC for 82.70 CZK @ 1,504,724 CZK\nFees are 0.29046178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.151167994986977891789218083 CZK)\nThe limits being 0.10 % (122.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50202588 BTC (297,243.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,504,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.14 % (458,167.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,689.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08156158 BTC (122,727.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.58 CZK over 3046 transactions" + } + ] + }, + { + "id": 4730, + "type": "message", + "date": "2024-03-24T09:00:03", + "date_unixtime": "1711267203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005445 BTC for 82.71 CZK @ 1,518,999 CZK\nFees are 0.29049643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.607967997408519218547755030 CZK)\nThe limits being 0.10 % (123.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50208033 BTC (297,326.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.51 % (465,333.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,606.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08161603 BTC (123,974.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.58 CZK over 3047 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005445 BTC for 82.71 CZK @ 1,518,999 CZK\nFees are 0.29049643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (48.607967997408519218547755030 CZK)\nThe limits being 0.10 % (123.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50208033 BTC (297,326.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.51 % (465,333.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,606.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08161603 BTC (123,974.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.58 CZK over 3047 transactions" + } + ] + }, + { + "id": 4731, + "type": "message", + "date": "2024-03-24T13:00:04", + "date_unixtime": "1711281604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005389 BTC for 82.70 CZK @ 1,534,594 CZK\nFees are 0.29046051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.107007995674445434669508454 CZK)\nThe limits being 0.10 % (125.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50213422 BTC (297,409.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,534,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.10 % (473,163.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,523.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08166992 BTC (125,330.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.58 CZK over 3048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005389 BTC for 82.70 CZK @ 1,534,594 CZK\nFees are 0.29046051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.107007995674445434669508454 CZK)\nThe limits being 0.10 % (125.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50213422 BTC (297,409.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,534,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.10 % (473,163.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,523.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08166992 BTC (125,330.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.58 CZK over 3048 transactions" + } + ] + }, + { + "id": 4732, + "type": "message", + "date": "2024-03-24T17:00:03", + "date_unixtime": "1711296003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005367 BTC for 82.70 CZK @ 1,540,971 CZK\nFees are 0.29047682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.311071995546795457560546659 CZK)\nThe limits being 0.10 % (125.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50218789 BTC (297,492.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,540,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.13 % (476,364.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,440.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08172359 BTC (125,933.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.57 CZK over 3049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005367 BTC for 82.70 CZK @ 1,540,971 CZK\nFees are 0.29047682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.311071995546795457560546659 CZK)\nThe limits being 0.10 % (125.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50218789 BTC (297,492.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,540,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.13 % (476,364.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,440.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08172359 BTC (125,933.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.57 CZK over 3049 transactions" + } + ] + }, + { + "id": 4733, + "type": "message", + "date": "2024-03-24T21:00:04", + "date_unixtime": "1711310404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005343 BTC for 82.70 CZK @ 1,547,760 CZK\nFees are 0.29045189 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.528319994747934913559606694 CZK)\nThe limits being 0.10 % (126.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50224132 BTC (297,575.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.23 % (479,774.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,357.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08177702 BTC (126,571.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.57 CZK over 3050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005343 BTC for 82.70 CZK @ 1,547,760 CZK\nFees are 0.29045189 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.528319994747934913559606694 CZK)\nThe limits being 0.10 % (126.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50224132 BTC (297,575.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.23 % (479,774.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,357.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08177702 BTC (126,571.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.57 CZK over 3050 transactions" + } + ] + }, + { + "id": 4734, + "type": "message", + "date": "2024-03-25T01:00:03", + "date_unixtime": "1711324803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005245 BTC for 82.70 CZK @ 1,576,760 CZK\nFees are 0.29046680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.456319995744161402678803408 CZK)\nThe limits being 0.10 % (129.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50229377 BTC (297,658.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.08 % (494,338.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,274.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08182947 BTC (129,025.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.56 CZK over 3051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005245 BTC for 82.70 CZK @ 1,576,760 CZK\nFees are 0.29046680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.456319995744161402678803408 CZK)\nThe limits being 0.10 % (129.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50229377 BTC (297,658.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.08 % (494,338.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,274.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08182947 BTC (129,025.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.56 CZK over 3051 transactions" + } + ] + }, + { + "id": 4735, + "type": "message", + "date": "2024-03-25T05:00:03", + "date_unixtime": "1711339203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,183 CZK\nFees are 0.29045180 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.501855998661174439081535235 CZK)\nThe limits being 0.10 % (129.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50234617 BTC (297,741.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.27 % (495,053.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,191.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08188187 BTC (129,224.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.56 CZK over 3052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,183 CZK\nFees are 0.29045180 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.501855998661174439081535235 CZK)\nThe limits being 0.10 % (129.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50234617 BTC (297,741.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.27 % (495,053.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,191.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08188187 BTC (129,224.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.56 CZK over 3052 transactions" + } + ] + }, + { + "id": 4736, + "type": "message", + "date": "2024-03-25T09:00:03", + "date_unixtime": "1711353603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005282 BTC for 82.71 CZK @ 1,565,835 CZK\nFees are 0.29048908 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.106719996106018182857537430 CZK)\nThe limits being 0.10 % (128.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50239899 BTC (297,823.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.14 % (488,849.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,108.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08193469 BTC (128,296.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.55 CZK over 3053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005282 BTC for 82.71 CZK @ 1,565,835 CZK\nFees are 0.29048908 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.106719996106018182857537430 CZK)\nThe limits being 0.10 % (128.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50239899 BTC (297,823.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.14 % (488,849.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,108.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08193469 BTC (128,296.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.55 CZK over 3053 transactions" + } + ] + }, + { + "id": 4737, + "type": "message", + "date": "2024-03-25T13:00:05", + "date_unixtime": "1711368005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005294 BTC for 82.71 CZK @ 1,562,262 CZK\nFees are 0.29048468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.992383996397949074725050912 CZK)\nThe limits being 0.10 % (128.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50245193 BTC (297,906.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 592,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.49 % (487,054.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,025.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08198763 BTC (128,086.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.55 CZK over 3054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005294 BTC for 82.71 CZK @ 1,562,262 CZK\nFees are 0.29048468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.992383996397949074725050912 CZK)\nThe limits being 0.10 % (128.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50245193 BTC (297,906.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 592,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.49 % (487,054.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,025.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08198763 BTC (128,086.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.55 CZK over 3054 transactions" + } + ] + }, + { + "id": 4738, + "type": "message", + "date": "2024-03-25T17:00:03", + "date_unixtime": "1711382403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005074 BTC for 82.71 CZK @ 1,629,979 CZK\nFees are 0.29048111 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.238991999424953144875867061 CZK)\nThe limits being 0.10 % (133.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50250267 BTC (297,989.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,629,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.86 % (521,078.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,942.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08203837 BTC (133,720.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.54 CZK over 3055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005074 BTC for 82.71 CZK @ 1,629,979 CZK\nFees are 0.29048111 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.238991999424953144875867061 CZK)\nThe limits being 0.10 % (133.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50250267 BTC (297,989.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,629,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.86 % (521,078.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,942.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08203837 BTC (133,720.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.54 CZK over 3055 transactions" + } + ] + }, + { + "id": 4739, + "type": "message", + "date": "2024-03-25T21:00:04", + "date_unixtime": "1711396804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005038 BTC for 82.70 CZK @ 1,641,613 CZK\nFees are 0.29047875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (157.59484799944932711690108835 CZK)\nThe limits being 0.10 % (134.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50255305 BTC (298,072.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,641,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.78 % (526,924.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,859.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08208875 BTC (134,757.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.54 CZK over 3056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005038 BTC for 82.70 CZK @ 1,641,613 CZK\nFees are 0.29047875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (157.59484799944932711690108835 CZK)\nThe limits being 0.10 % (134.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50255305 BTC (298,072.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,641,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.78 % (526,924.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,859.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08208875 BTC (134,757.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.54 CZK over 3056 transactions" + } + ] + }, + { + "id": 4740, + "type": "message", + "date": "2024-03-26T01:00:04", + "date_unixtime": "1711411204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005076 BTC for 82.70 CZK @ 1,629,193 CZK\nFees are 0.29045548 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.40252798420657721615009405 CZK)\nThe limits being 0.10 % (133.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50260381 BTC (298,155.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,629,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.63 % (520,682.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,776.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08213951 BTC (133,821.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.53 CZK over 3057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005076 BTC for 82.70 CZK @ 1,629,193 CZK\nFees are 0.29045548 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.40252798420657721615009405 CZK)\nThe limits being 0.10 % (133.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50260381 BTC (298,155.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,629,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.63 % (520,682.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,776.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08213951 BTC (133,821.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.53 CZK over 3057 transactions" + } + ] + }, + { + "id": 4741, + "type": "message", + "date": "2024-03-26T05:00:04", + "date_unixtime": "1711425604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005071 BTC for 82.71 CZK @ 1,631,001 CZK\nFees are 0.29049139 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.57609599531201040884610429 CZK)\nThe limits being 0.10 % (134.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50265452 BTC (298,238.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,631,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.89 % (521,591.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,693.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08219022 BTC (134,052.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.53 CZK over 3058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005071 BTC for 82.71 CZK @ 1,631,001 CZK\nFees are 0.29049139 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.57609599531201040884610429 CZK)\nThe limits being 0.10 % (134.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50265452 BTC (298,238.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,631,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.89 % (521,591.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,693.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08219022 BTC (134,052.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.53 CZK over 3058 transactions" + } + ] + }, + { + "id": 4742, + "type": "message", + "date": "2024-03-26T09:00:03", + "date_unixtime": "1711440003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005040 BTC for 82.71 CZK @ 1,641,073 CZK\nFees are 0.29049848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (157.54300798633354687166346360 CZK)\nThe limits being 0.10 % (134.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50270492 BTC (298,321.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,641,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.54 % (526,653.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,610.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08224062 BTC (134,962.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.52 CZK over 3059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005040 BTC for 82.71 CZK @ 1,641,073 CZK\nFees are 0.29049848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (157.54300798633354687166346360 CZK)\nThe limits being 0.10 % (134.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50270492 BTC (298,321.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,641,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.54 % (526,653.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,610.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08224062 BTC (134,962.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.52 CZK over 3059 transactions" + } + ] + }, + { + "id": 4743, + "type": "message", + "date": "2024-03-26T13:00:04", + "date_unixtime": "1711454404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005033 BTC for 82.70 CZK @ 1,643,209 CZK\nFees are 0.29047259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.874031998674220993461094003 CZK)\nThe limits being 0.10 % (135.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50275525 BTC (298,404.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,643,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.85 % (527,727.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,527.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08229095 BTC (135,221.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.52 CZK over 3060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005033 BTC for 82.70 CZK @ 1,643,209 CZK\nFees are 0.29047259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.874031998674220993461094003 CZK)\nThe limits being 0.10 % (135.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50275525 BTC (298,404.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,643,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.85 % (527,727.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,527.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08229095 BTC (135,221.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.52 CZK over 3060 transactions" + } + ] + }, + { + "id": 4744, + "type": "message", + "date": "2024-03-26T17:00:03", + "date_unixtime": "1711468803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005038 BTC for 82.70 CZK @ 1,641,596 CZK\nFees are 0.29047574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.06214399660734867424118800 CZK)\nThe limits being 0.10 % (135.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50280563 BTC (298,487.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,641,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.53 % (526,915.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,444.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08234133 BTC (135,171.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.51 CZK over 3061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005038 BTC for 82.70 CZK @ 1,641,596 CZK\nFees are 0.29047574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.06214399660734867424118800 CZK)\nThe limits being 0.10 % (135.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50280563 BTC (298,487.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,641,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.53 % (526,915.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,444.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08234133 BTC (135,171.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.51 CZK over 3061 transactions" + } + ] + }, + { + "id": 4745, + "type": "message", + "date": "2024-03-26T21:00:03", + "date_unixtime": "1711483203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005096 BTC for 82.70 CZK @ 1,622,818 CZK\nFees are 0.29045888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.895263992040417408771028245 CZK)\nThe limits being 0.10 % (133.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50285659 BTC (298,570.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,622,818 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.32 % (517,473.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,362.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08239229 BTC (133,707.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.51 CZK over 3062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005096 BTC for 82.70 CZK @ 1,622,818 CZK\nFees are 0.29045888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.895263992040417408771028245 CZK)\nThe limits being 0.10 % (133.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50285659 BTC (298,570.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,622,818 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.32 % (517,473.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,362.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08239229 BTC (133,707.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.51 CZK over 3062 transactions" + } + ] + }, + { + "id": 4746, + "type": "message", + "date": "2024-03-27T01:00:03", + "date_unixtime": "1711497603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005084 BTC for 82.71 CZK @ 1,626,840 CZK\nFees are 0.29049309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.11775998795717741641469647 CZK)\nThe limits being 0.10 % (134.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50290743 BTC (298,653.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,626,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.95 % (519,495.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,279.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08244313 BTC (134,121.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.50 CZK over 3063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005084 BTC for 82.71 CZK @ 1,626,840 CZK\nFees are 0.29049309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.11775998795717741641469647 CZK)\nThe limits being 0.10 % (134.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50290743 BTC (298,653.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,626,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.95 % (519,495.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,279.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08244313 BTC (134,121.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.50 CZK over 3063 transactions" + } + ] + }, + { + "id": 4747, + "type": "message", + "date": "2024-03-27T05:21:51", + "date_unixtime": "1711513311", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005059 BTC for 82.70 CZK @ 1,634,754 CZK\nFees are 0.29047082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.62425599116277452714668457 CZK)\nThe limits being 0.10 % (134.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50295802 BTC (298,736.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.23 % (523,475.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,196.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08249372 BTC (134,856.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.50 CZK over 3064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005059 BTC for 82.70 CZK @ 1,634,754 CZK\nFees are 0.29047082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.62425599116277452714668457 CZK)\nThe limits being 0.10 % (134.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50295802 BTC (298,736.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.23 % (523,475.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,196.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08249372 BTC (134,856.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.50 CZK over 3064 transactions" + } + ] + }, + { + "id": 4748, + "type": "message", + "date": "2024-03-27T05:21:51", + "date_unixtime": "1711513311", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005059 BTC for 82.70 CZK @ 1,634,754 CZK\nFees are 0.29047082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.62425599116277452714668457 CZK)\nThe limits being 0.10 % (134.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50295802 BTC (298,736.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.23 % (523,475.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,196.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08249372 BTC (134,856.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.50 CZK over 3064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005059 BTC for 82.70 CZK @ 1,634,754 CZK\nFees are 0.29047082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.62425599116277452714668457 CZK)\nThe limits being 0.10 % (134.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50295802 BTC (298,736.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.23 % (523,475.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,196.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08249372 BTC (134,856.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.50 CZK over 3064 transactions" + } + ] + }, + { + "id": 4749, + "type": "message", + "date": "2024-03-27T05:21:51", + "date_unixtime": "1711513311", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005059 BTC for 82.70 CZK @ 1,634,754 CZK\nFees are 0.29047082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.62425599116277452714668457 CZK)\nThe limits being 0.10 % (134.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50295802 BTC (298,736.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 593,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.23 % (523,475.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,196.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08249372 BTC (134,856.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.50 CZK over 3064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005059 BTC for 82.70 CZK @ 1,634,754 CZK\nFees are 0.29047082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.62425599116277452714668457 CZK)\nThe limits being 0.10 % (134.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50295802 BTC (298,736.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 593,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.23 % (523,475.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,196.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08249372 BTC (134,856.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.50 CZK over 3064 transactions" + } + ] + }, + { + "id": 4750, + "type": "message", + "date": "2024-03-27T09:00:04", + "date_unixtime": "1711526404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005080 BTC for 82.70 CZK @ 1,628,000 CZK\nFees are 0.29047150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.09600000 CZK)\nThe limits being 0.10 % (134.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50300882 BTC (298,819.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,628,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.04 % (520,078.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,113.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08254452 BTC (134,382.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.49 CZK over 3065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005080 BTC for 82.70 CZK @ 1,628,000 CZK\nFees are 0.29047150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.09600000 CZK)\nThe limits being 0.10 % (134.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50300882 BTC (298,819.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,628,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.04 % (520,078.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,113.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08254452 BTC (134,382.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.49 CZK over 3065 transactions" + } + ] + }, + { + "id": 4751, + "type": "message", + "date": "2024-03-27T13:00:04", + "date_unixtime": "1711540804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005038 BTC for 82.70 CZK @ 1,641,596 CZK\nFees are 0.29047574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.531071998303674337120594000 CZK)\nThe limits being 0.10 % (135.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50305920 BTC (298,902.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,641,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.28 % (526,917.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,030.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08259490 BTC (135,587.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.49 CZK over 3066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005038 BTC for 82.70 CZK @ 1,641,596 CZK\nFees are 0.29047574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.531071998303674337120594000 CZK)\nThe limits being 0.10 % (135.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50305920 BTC (298,902.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,641,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.28 % (526,917.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,030.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08259490 BTC (135,587.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.49 CZK over 3066 transactions" + } + ] + }, + { + "id": 4752, + "type": "message", + "date": "2024-03-27T17:00:03", + "date_unixtime": "1711555203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005136 BTC for 82.70 CZK @ 1,610,125 CZK\nFees are 0.29044910 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.28600000 CZK)\nThe limits being 0.10 % (133.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50311056 BTC (298,985.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,610,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.94 % (511,084.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,947.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08264626 BTC (133,070.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.48 CZK over 3067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005136 BTC for 82.70 CZK @ 1,610,125 CZK\nFees are 0.29044910 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.28600000 CZK)\nThe limits being 0.10 % (133.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50311056 BTC (298,985.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,610,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.94 % (511,084.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,947.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08264626 BTC (133,070.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.48 CZK over 3067 transactions" + } + ] + }, + { + "id": 4753, + "type": "message", + "date": "2024-03-27T21:00:04", + "date_unixtime": "1711569604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005152 BTC for 82.71 CZK @ 1,605,329 CZK\nFees are 0.29048608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (179.79684798856177292519659452 CZK)\nThe limits being 0.10 % (132.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50316208 BTC (299,068.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,605,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.09 % (508,671.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,864.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08269778 BTC (132,757.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.48 CZK over 3068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005152 BTC for 82.71 CZK @ 1,605,329 CZK\nFees are 0.29048608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (179.79684798856177292519659452 CZK)\nThe limits being 0.10 % (132.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50316208 BTC (299,068.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,605,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.09 % (508,671.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,864.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08269778 BTC (132,757.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.48 CZK over 3068 transactions" + } + ] + }, + { + "id": 4754, + "type": "message", + "date": "2024-03-28T01:00:04", + "date_unixtime": "1711584004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005095 BTC for 82.69 CZK @ 1,623,053 CZK\nFees are 0.29044393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (155.81308798831176260908214772 CZK)\nThe limits being 0.10 % (134.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50321303 BTC (299,151.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,623,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.02 % (517,589.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,781.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08274873 BTC (134,305.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.48 CZK over 3069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005095 BTC for 82.69 CZK @ 1,623,053 CZK\nFees are 0.29044393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (155.81308798831176260908214772 CZK)\nThe limits being 0.10 % (134.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50321303 BTC (299,151.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,623,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.02 % (517,589.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,781.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08274873 BTC (134,305.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.48 CZK over 3069 transactions" + } + ] + }, + { + "id": 4755, + "type": "message", + "date": "2024-03-28T05:00:04", + "date_unixtime": "1711598404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005109 BTC for 82.70 CZK @ 1,618,632 CZK\nFees are 0.29044871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (103.59244799865181202257161590 CZK)\nThe limits being 0.10 % (134.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50326412 BTC (299,234.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,618,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.23 % (515,364.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,698.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08279982 BTC (134,022.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.47 CZK over 3070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005109 BTC for 82.70 CZK @ 1,618,632 CZK\nFees are 0.29044871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (103.59244799865181202257161590 CZK)\nThe limits being 0.10 % (134.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50326412 BTC (299,234.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,618,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.23 % (515,364.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,698.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08279982 BTC (134,022.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.47 CZK over 3070 transactions" + } + ] + }, + { + "id": 4756, + "type": "message", + "date": "2024-03-28T09:00:04", + "date_unixtime": "1711612804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005027 BTC for 82.65 CZK @ 1,644,180 CZK\nFees are 0.29029781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.920657698056801195814648733 CZK)\nThe limits being 0.10 % (136.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50331439 BTC (299,317.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,644,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.48 % (528,221.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,615.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08285009 BTC (136,220.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.47 CZK over 3071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005027 BTC for 82.65 CZK @ 1,644,180 CZK\nFees are 0.29029781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.920657698056801195814648733 CZK)\nThe limits being 0.10 % (136.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50331439 BTC (299,317.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,644,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.48 % (528,221.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,615.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08285009 BTC (136,220.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.47 CZK over 3071 transactions" + } + ] + }, + { + "id": 4757, + "type": "message", + "date": "2024-03-28T13:00:03", + "date_unixtime": "1711627203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004993 BTC for 82.70 CZK @ 1,656,367 CZK\nFees are 0.29047152 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.003743996752404038299359014 CZK)\nThe limits being 0.10 % (137.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50336432 BTC (299,400.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,656,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.47 % (534,355.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,532.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08290002 BTC (137,312.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.46 CZK over 3072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004993 BTC for 82.70 CZK @ 1,656,367 CZK\nFees are 0.29047152 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.003743996752404038299359014 CZK)\nThe limits being 0.10 % (137.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50336432 BTC (299,400.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,656,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.47 % (534,355.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,532.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08290002 BTC (137,312.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.46 CZK over 3072 transactions" + } + ] + }, + { + "id": 4758, + "type": "message", + "date": "2024-03-28T17:00:04", + "date_unixtime": "1711641604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004969 BTC for 82.70 CZK @ 1,664,324 CZK\nFees are 0.29046399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.258367994570823410075201674 CZK)\nThe limits being 0.10 % (138.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50341401 BTC (299,483.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 594,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,664,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.76 % (538,360.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,449.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08294971 BTC (138,055.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.46 CZK over 3073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004969 BTC for 82.70 CZK @ 1,664,324 CZK\nFees are 0.29046399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.258367994570823410075201674 CZK)\nThe limits being 0.10 % (138.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50341401 BTC (299,483.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 594,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,664,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.76 % (538,360.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,449.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08294971 BTC (138,055.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.46 CZK over 3073 transactions" + } + ] + }, + { + "id": 4759, + "type": "message", + "date": "2024-03-28T21:00:04", + "date_unixtime": "1711656004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004990 BTC for 82.70 CZK @ 1,657,300 CZK\nFees are 0.29046051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.033599996804770477676828493 CZK)\nThe limits being 0.10 % (137.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50346391 BTC (299,566.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,657,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.53 % (534,823.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,366.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08299961 BTC (137,555.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.45 CZK over 3074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004990 BTC for 82.70 CZK @ 1,657,300 CZK\nFees are 0.29046051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.033599996804770477676828493 CZK)\nThe limits being 0.10 % (137.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50346391 BTC (299,566.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,657,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.53 % (534,823.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,366.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08299961 BTC (137,555.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.45 CZK over 3074 transactions" + } + ] + }, + { + "id": 4760, + "type": "message", + "date": "2024-03-29T01:00:04", + "date_unixtime": "1711670404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004995 BTC for 82.71 CZK @ 1,655,865 CZK\nFees are 0.29049980 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.97535998898749272441350170 CZK)\nThe limits being 0.10 % (137.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50351386 BTC (299,649.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,655,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.24 % (534,101.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,283.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08304956 BTC (137,518.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.45 CZK over 3075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004995 BTC for 82.71 CZK @ 1,655,865 CZK\nFees are 0.29049980 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.97535998898749272441350170 CZK)\nThe limits being 0.10 % (137.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50351386 BTC (299,649.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,655,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.24 % (534,101.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,283.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08304956 BTC (137,518.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.45 CZK over 3075 transactions" + } + ] + }, + { + "id": 4761, + "type": "message", + "date": "2024-03-29T05:00:03", + "date_unixtime": "1711684803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005015 BTC for 82.71 CZK @ 1,649,204 CZK\nFees are 0.29048970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.774527998664693512884366333 CZK)\nThe limits being 0.10 % (137.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50356401 BTC (299,732.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,649,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.07 % (530,747.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,200.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08309971 BTC (137,048.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.44 CZK over 3076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005015 BTC for 82.71 CZK @ 1,649,204 CZK\nFees are 0.29048970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.774527998664693512884366333 CZK)\nThe limits being 0.10 % (137.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50356401 BTC (299,732.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,649,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.07 % (530,747.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,200.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08309971 BTC (137,048.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.44 CZK over 3076 transactions" + } + ] + }, + { + "id": 4762, + "type": "message", + "date": "2024-03-29T09:00:04", + "date_unixtime": "1711699204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005051 BTC for 82.71 CZK @ 1,637,435 CZK\nFees are 0.29048711 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.596879993868224232410873957 CZK)\nThe limits being 0.10 % (136.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50361452 BTC (299,815.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,637,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.05 % (524,820.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,117.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08315022 BTC (136,153.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.44 CZK over 3077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005051 BTC for 82.71 CZK @ 1,637,435 CZK\nFees are 0.29048711 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.596879993868224232410873957 CZK)\nThe limits being 0.10 % (136.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50361452 BTC (299,815.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,637,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.05 % (524,820.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,117.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08315022 BTC (136,153.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.44 CZK over 3077 transactions" + } + ] + }, + { + "id": 4763, + "type": "message", + "date": "2024-03-29T13:00:03", + "date_unixtime": "1711713603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005036 BTC for 82.70 CZK @ 1,642,141 CZK\nFees are 0.29045683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.09702399663132966309734832 CZK)\nThe limits being 0.10 % (136.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50366488 BTC (299,898.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,642,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.79 % (527,189.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,034.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08320058 BTC (136,627.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.43 CZK over 3078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005036 BTC for 82.70 CZK @ 1,642,141 CZK\nFees are 0.29045683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.09702399663132966309734832 CZK)\nThe limits being 0.10 % (136.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50366488 BTC (299,898.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,642,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.79 % (527,189.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,034.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08320058 BTC (136,627.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.43 CZK over 3078 transactions" + } + ] + }, + { + "id": 4764, + "type": "message", + "date": "2024-03-29T17:00:04", + "date_unixtime": "1711728004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005110 BTC for 82.70 CZK @ 1,618,404 CZK\nFees are 0.29046464 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (103.57785599326037927917650259 CZK)\nThe limits being 0.10 % (134.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50371598 BTC (299,981.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,618,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.76 % (515,234.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,951.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08325168 BTC (134,734.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.43 CZK over 3079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005110 BTC for 82.70 CZK @ 1,618,404 CZK\nFees are 0.29046464 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (103.57785599326037927917650259 CZK)\nThe limits being 0.10 % (134.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50371598 BTC (299,981.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,618,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.76 % (515,234.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,951.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08325168 BTC (134,734.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.43 CZK over 3079 transactions" + } + ] + }, + { + "id": 4765, + "type": "message", + "date": "2024-03-29T21:00:03", + "date_unixtime": "1711742403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005089 BTC for 82.70 CZK @ 1,625,000 CZK\nFees are 0.29044990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.999999995300394385028701370 CZK)\nThe limits being 0.10 % (135.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50376687 BTC (300,064.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,625,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.81 % (518,556.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,868.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08330257 BTC (135,366.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.42 CZK over 3080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005089 BTC for 82.70 CZK @ 1,625,000 CZK\nFees are 0.29044990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.999999995300394385028701370 CZK)\nThe limits being 0.10 % (135.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50376687 BTC (300,064.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,625,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.81 % (518,556.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,868.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08330257 BTC (135,366.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.42 CZK over 3080 transactions" + } + ] + }, + { + "id": 4766, + "type": "message", + "date": "2024-03-30T01:00:03", + "date_unixtime": "1711756803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005064 BTC for 82.70 CZK @ 1,633,005 CZK\nFees are 0.29044682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.256159996095813153174001581 CZK)\nThe limits being 0.10 % (136.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50381751 BTC (300,147.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,633,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.11 % (522,588.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,785.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08335321 BTC (136,116.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.42 CZK over 3081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005064 BTC for 82.70 CZK @ 1,633,005 CZK\nFees are 0.29044682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.256159996095813153174001581 CZK)\nThe limits being 0.10 % (136.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50381751 BTC (300,147.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,633,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.11 % (522,588.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,785.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08335321 BTC (136,116.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.42 CZK over 3081 transactions" + } + ] + }, + { + "id": 4767, + "type": "message", + "date": "2024-03-30T05:00:03", + "date_unixtime": "1711771203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005068 BTC for 82.69 CZK @ 1,631,704 CZK\nFees are 0.29044467 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.64358398958027330546717115 CZK)\nThe limits being 0.10 % (136.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50386819 BTC (300,230.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,631,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.84 % (521,933.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,702.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08340389 BTC (136,090.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.41 CZK over 3082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005068 BTC for 82.69 CZK @ 1,631,704 CZK\nFees are 0.29044467 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.64358398958027330546717115 CZK)\nThe limits being 0.10 % (136.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50386819 BTC (300,230.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,631,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.84 % (521,933.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,702.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08340389 BTC (136,090.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.41 CZK over 3082 transactions" + } + ] + }, + { + "id": 4768, + "type": "message", + "date": "2024-03-30T09:00:03", + "date_unixtime": "1711785603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005060 BTC for 82.71 CZK @ 1,634,546 CZK\nFees are 0.29049127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.91641598752193410021446676 CZK)\nThe limits being 0.10 % (136.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50391879 BTC (300,313.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 595,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.27 % (523,364.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,619.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08345449 BTC (136,410.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.41 CZK over 3083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005060 BTC for 82.71 CZK @ 1,634,546 CZK\nFees are 0.29049127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (156.91641598752193410021446676 CZK)\nThe limits being 0.10 % (136.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50391879 BTC (300,313.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 595,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.27 % (523,364.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,619.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08345449 BTC (136,410.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.41 CZK over 3083 transactions" + } + ] + }, + { + "id": 4769, + "type": "message", + "date": "2024-03-30T13:00:03", + "date_unixtime": "1711800003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005046 BTC for 82.70 CZK @ 1,638,976 CZK\nFees are 0.29047266 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (157.34169599742162834360357062 CZK)\nThe limits being 0.10 % (136.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50396925 BTC (300,396.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,638,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.97 % (525,596.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,536.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08350495 BTC (136,862.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.40 CZK over 3084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005046 BTC for 82.70 CZK @ 1,638,976 CZK\nFees are 0.29047266 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (157.34169599742162834360357062 CZK)\nThe limits being 0.10 % (136.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50396925 BTC (300,396.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,638,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.97 % (525,596.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,536.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08350495 BTC (136,862.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.40 CZK over 3084 transactions" + } + ] + }, + { + "id": 4770, + "type": "message", + "date": "2024-03-30T17:00:05", + "date_unixtime": "1711814405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005060 BTC for 82.70 CZK @ 1,634,418 CZK\nFees are 0.29046852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.301375995084398281902668723 CZK)\nThe limits being 0.10 % (136.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50401985 BTC (300,479.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.15 % (523,299.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,453.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08355555 BTC (136,564.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.40 CZK over 3085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005060 BTC for 82.70 CZK @ 1,634,418 CZK\nFees are 0.29046852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.301375995084398281902668723 CZK)\nThe limits being 0.10 % (136.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50401985 BTC (300,479.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.15 % (523,299.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,453.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08355555 BTC (136,564.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.40 CZK over 3085 transactions" + } + ] + }, + { + "id": 4771, + "type": "message", + "date": "2024-03-30T21:00:03", + "date_unixtime": "1711828803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005050 BTC for 82.70 CZK @ 1,637,536 CZK\nFees are 0.29044751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.401151994948373761142930438 CZK)\nThe limits being 0.10 % (136.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50407035 BTC (300,562.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,637,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.63 % (524,870.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,370.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08360605 BTC (136,907.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.40 CZK over 3086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005050 BTC for 82.70 CZK @ 1,637,536 CZK\nFees are 0.29044751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.401151994948373761142930438 CZK)\nThe limits being 0.10 % (136.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50407035 BTC (300,562.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,637,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.63 % (524,870.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,370.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08360605 BTC (136,907.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.40 CZK over 3086 transactions" + } + ] + }, + { + "id": 4772, + "type": "message", + "date": "2024-03-31T01:00:04", + "date_unixtime": "1711843204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005084 BTC for 82.71 CZK @ 1,626,866 CZK\nFees are 0.29049773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.059711996211528728913789936 CZK)\nThe limits being 0.10 % (136.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50412119 BTC (300,645.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,626,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.79 % (519,491.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,287.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08365689 BTC (136,098.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.39 CZK over 3087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005084 BTC for 82.71 CZK @ 1,626,866 CZK\nFees are 0.29049773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.059711996211528728913789936 CZK)\nThe limits being 0.10 % (136.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50412119 BTC (300,645.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,626,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.79 % (519,491.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,287.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08365689 BTC (136,098.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.39 CZK over 3087 transactions" + } + ] + }, + { + "id": 4773, + "type": "message", + "date": "2024-03-31T06:00:03", + "date_unixtime": "1711857603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005058 BTC for 82.71 CZK @ 1,635,147 CZK\nFees are 0.29048322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.324703997850150018627961485 CZK)\nThe limits being 0.10 % (136.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50417177 BTC (300,728.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,635,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.13 % (523,666.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,204.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08370747 BTC (136,874.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.39 CZK over 3088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005058 BTC for 82.71 CZK @ 1,635,147 CZK\nFees are 0.29048322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.324703997850150018627961485 CZK)\nThe limits being 0.10 % (136.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50417177 BTC (300,728.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,635,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.13 % (523,666.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,204.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08370747 BTC (136,874.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.39 CZK over 3088 transactions" + } + ] + }, + { + "id": 4774, + "type": "message", + "date": "2024-03-31T10:00:04", + "date_unixtime": "1711872004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005034 BTC for 82.71 CZK @ 1,643,035 CZK\nFees are 0.29049954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.577119995787489119824753213 CZK)\nThe limits being 0.10 % (137.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50422211 BTC (300,811.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,643,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.41 % (527,642.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,121.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08375781 BTC (137,617.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.38 CZK over 3089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005034 BTC for 82.71 CZK @ 1,643,035 CZK\nFees are 0.29049954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.577119995787489119824753213 CZK)\nThe limits being 0.10 % (137.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50422211 BTC (300,811.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,643,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.41 % (527,642.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,121.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08375781 BTC (137,617.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.38 CZK over 3089 transactions" + } + ] + }, + { + "id": 4775, + "type": "message", + "date": "2024-03-31T14:00:04", + "date_unixtime": "1711886404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005026 BTC for 82.70 CZK @ 1,645,381 CZK\nFees are 0.29045201 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.30438399783011746987414325 CZK)\nThe limits being 0.10 % (137.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50427237 BTC (300,894.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,645,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.75 % (528,825.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,038.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08380807 BTC (137,896.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.38 CZK over 3090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005026 BTC for 82.70 CZK @ 1,645,381 CZK\nFees are 0.29045201 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.30438399783011746987414325 CZK)\nThe limits being 0.10 % (137.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50427237 BTC (300,894.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,645,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.75 % (528,825.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,038.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08380807 BTC (137,896.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.38 CZK over 3090 transactions" + } + ] + }, + { + "id": 4776, + "type": "message", + "date": "2024-03-31T18:00:03", + "date_unixtime": "1711900803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005033 BTC for 82.70 CZK @ 1,643,098 CZK\nFees are 0.29045297 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.15827198962185895956641324 CZK)\nThe limits being 0.10 % (137.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50432270 BTC (300,977.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,643,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.32 % (527,673.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,955.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08385840 BTC (137,787.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.37 CZK over 3091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005033 BTC for 82.70 CZK @ 1,643,098 CZK\nFees are 0.29045297 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (105.15827198962185895956641324 CZK)\nThe limits being 0.10 % (137.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50432270 BTC (300,977.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,643,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.32 % (527,673.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,955.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08385840 BTC (137,787.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.37 CZK over 3091 transactions" + } + ] + }, + { + "id": 4777, + "type": "message", + "date": "2024-03-31T22:00:03", + "date_unixtime": "1711915203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004985 BTC for 82.71 CZK @ 1,659,171 CZK\nFees are 0.29049705 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (106.18694399971214090702601077 CZK)\nThe limits being 0.10 % (139.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50437255 BTC (301,060.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 596,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,659,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.96 % (535,779.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,872.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08390825 BTC (139,218.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.37 CZK over 3092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004985 BTC for 82.71 CZK @ 1,659,171 CZK\nFees are 0.29049705 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (106.18694399971214090702601077 CZK)\nThe limits being 0.10 % (139.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50437255 BTC (301,060.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 596,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,659,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.96 % (535,779.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,872.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08390825 BTC (139,218.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.37 CZK over 3092 transactions" + } + ] + }, + { + "id": 4778, + "type": "message", + "date": "2024-04-01T02:00:04", + "date_unixtime": "1711929604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004972 BTC for 82.71 CZK @ 1,663,457 CZK\nFees are 0.29048795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (106.46124799084138740474309346 CZK)\nThe limits being 0.10 % (139.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50442227 BTC (301,143.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,663,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.63 % (537,941.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,789.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08395797 BTC (139,660.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.36 CZK over 3093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004972 BTC for 82.71 CZK @ 1,663,457 CZK\nFees are 0.29048795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (106.46124799084138740474309346 CZK)\nThe limits being 0.10 % (139.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50442227 BTC (301,143.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,663,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.63 % (537,941.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,789.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08395797 BTC (139,660.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.36 CZK over 3093 transactions" + } + ] + }, + { + "id": 4779, + "type": "message", + "date": "2024-04-01T06:00:04", + "date_unixtime": "1711944004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005005 BTC for 82.70 CZK @ 1,652,436 CZK\nFees are 0.29047861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.31692799397911505534823920 CZK)\nThe limits being 0.10 % (138.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50447232 BTC (301,226.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,652,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.74 % (532,381.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,706.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08400802 BTC (138,817.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.36 CZK over 3094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005005 BTC for 82.70 CZK @ 1,652,436 CZK\nFees are 0.29047861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (79.31692799397911505534823920 CZK)\nThe limits being 0.10 % (138.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50447232 BTC (301,226.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,652,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.74 % (532,381.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,706.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08400802 BTC (138,817.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.36 CZK over 3094 transactions" + } + ] + }, + { + "id": 4780, + "type": "message", + "date": "2024-04-01T10:00:03", + "date_unixtime": "1711958403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005071 BTC for 82.70 CZK @ 1,630,921 CZK\nFees are 0.29047714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.284207996524096248812453592 CZK)\nThe limits being 0.10 % (137.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50452303 BTC (301,309.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,630,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.09 % (521,527.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,623.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08405873 BTC (137,093.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.35 CZK over 3095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005071 BTC for 82.70 CZK @ 1,630,921 CZK\nFees are 0.29047714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.284207996524096248812453592 CZK)\nThe limits being 0.10 % (137.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50452303 BTC (301,309.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,630,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.09 % (521,527.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,623.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08405873 BTC (137,093.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.35 CZK over 3095 transactions" + } + ] + }, + { + "id": 4781, + "type": "message", + "date": "2024-04-01T14:00:03", + "date_unixtime": "1711972803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005073 BTC for 82.70 CZK @ 1,630,287 CZK\nFees are 0.29047874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.253775992188192891998054122 CZK)\nThe limits being 0.10 % (137.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50457376 BTC (301,392.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,630,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.93 % (521,207.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,540.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08410946 BTC (137,122.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.35 CZK over 3096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005073 BTC for 82.70 CZK @ 1,630,287 CZK\nFees are 0.29047874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (78.253775992188192891998054122 CZK)\nThe limits being 0.10 % (137.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50457376 BTC (301,392.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,630,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.93 % (521,207.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,540.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08410946 BTC (137,122.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.35 CZK over 3096 transactions" + } + ] + }, + { + "id": 4782, + "type": "message", + "date": "2024-04-01T18:00:04", + "date_unixtime": "1711987204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005149 BTC for 82.71 CZK @ 1,606,310 CZK\nFees are 0.29049434 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.102879993822359748261159746 CZK)\nThe limits being 0.10 % (135.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50462525 BTC (301,475.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,606,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.87 % (509,108.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,457.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08416095 BTC (135,188.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.34 CZK over 3097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005149 BTC for 82.71 CZK @ 1,606,310 CZK\nFees are 0.29049434 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.102879993822359748261159746 CZK)\nThe limits being 0.10 % (135.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50462525 BTC (301,475.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,606,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.87 % (509,108.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,457.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08416095 BTC (135,188.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.34 CZK over 3097 transactions" + } + ] + }, + { + "id": 4783, + "type": "message", + "date": "2024-04-01T22:00:04", + "date_unixtime": "1712001604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005044 BTC for 82.70 CZK @ 1,639,662 CZK\nFees are 0.29047906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.93836798801340431408389432 CZK)\nThe limits being 0.10 % (138.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50467569 BTC (301,558.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,639,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.41 % (525,938.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,374.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08421139 BTC (138,078.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.34 CZK over 3098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005044 BTC for 82.70 CZK @ 1,639,662 CZK\nFees are 0.29047906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.93836798801340431408389432 CZK)\nThe limits being 0.10 % (138.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50467569 BTC (301,558.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,639,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.41 % (525,938.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,374.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08421139 BTC (138,078.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.34 CZK over 3098 transactions" + } + ] + }, + { + "id": 4784, + "type": "message", + "date": "2024-04-02T02:00:03", + "date_unixtime": "1712016003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005043 BTC for 82.71 CZK @ 1,640,099 CZK\nFees are 0.29049887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.96633599494768508514863850 CZK)\nThe limits being 0.10 % (138.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50472612 BTC (301,641.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,640,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.43 % (526,159.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,291.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08426182 BTC (138,197.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.34 CZK over 3099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005043 BTC for 82.71 CZK @ 1,640,099 CZK\nFees are 0.29049887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (104.96633599494768508514863850 CZK)\nThe limits being 0.10 % (138.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50472612 BTC (301,641.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,640,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.43 % (526,159.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,291.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08426182 BTC (138,197.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.34 CZK over 3099 transactions" + } + ] + }, + { + "id": 4785, + "type": "message", + "date": "2024-04-02T06:00:04", + "date_unixtime": "1712030404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005262 BTC for 82.70 CZK @ 1,571,703 CZK\nFees are 0.29047365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.294495999084920755311559674 CZK)\nThe limits being 0.10 % (132.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50477874 BTC (301,724.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.94 % (491,637.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,208.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08431444 BTC (132,517.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.33 CZK over 3100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005262 BTC for 82.70 CZK @ 1,571,703 CZK\nFees are 0.29047365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.294495999084920755311559674 CZK)\nThe limits being 0.10 % (132.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50477874 BTC (301,724.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.94 % (491,637.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,208.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08431444 BTC (132,517.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.33 CZK over 3100 transactions" + } + ] + }, + { + "id": 4786, + "type": "message", + "date": "2024-04-02T10:00:05", + "date_unixtime": "1712044805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005281 BTC for 82.71 CZK @ 1,566,090 CZK\nFees are 0.29048138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.114879996890262985062600912 CZK)\nThe limits being 0.10 % (132.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50483155 BTC (301,807.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,566,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.96 % (488,804.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,125.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08436725 BTC (132,126.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.33 CZK over 3101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005281 BTC for 82.71 CZK @ 1,566,090 CZK\nFees are 0.29048138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.114879996890262985062600912 CZK)\nThe limits being 0.10 % (132.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50483155 BTC (301,807.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,566,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.96 % (488,804.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,125.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08436725 BTC (132,126.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.33 CZK over 3101 transactions" + } + ] + }, + { + "id": 4787, + "type": "message", + "date": "2024-04-02T14:00:04", + "date_unixtime": "1712059204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005347 BTC for 82.70 CZK @ 1,546,693 CZK\nFees are 0.29046896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.494175999114377032173441210 CZK)\nThe limits being 0.10 % (130.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50488502 BTC (301,890.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 597,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.67 % (479,011.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,042.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08442072 BTC (130,572.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.32 CZK over 3102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005347 BTC for 82.70 CZK @ 1,546,693 CZK\nFees are 0.29046896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.494175999114377032173441210 CZK)\nThe limits being 0.10 % (130.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50488502 BTC (301,890.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 597,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.67 % (479,011.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,042.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08442072 BTC (130,572.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.32 CZK over 3102 transactions" + } + ] + }, + { + "id": 4788, + "type": "message", + "date": "2024-04-02T18:00:04", + "date_unixtime": "1712073604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005413 BTC for 82.71 CZK @ 1,527,987 CZK\nFees are 0.29049797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (73.343375993739259718272210200 CZK)\nThe limits being 0.10 % (129.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50493915 BTC (301,973.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,527,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.50 % (469,566.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,959.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08447485 BTC (129,076.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.32 CZK over 3103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005413 BTC for 82.71 CZK @ 1,527,987 CZK\nFees are 0.29049797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (73.343375993739259718272210200 CZK)\nThe limits being 0.10 % (129.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50493915 BTC (301,973.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,527,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.50 % (469,566.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,959.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08447485 BTC (129,076.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.32 CZK over 3103 transactions" + } + ] + }, + { + "id": 4789, + "type": "message", + "date": "2024-04-02T22:00:04", + "date_unixtime": "1712088004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005324 BTC for 82.70 CZK @ 1,553,353 CZK\nFees are 0.29046488 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (74.560943992794565377302656330 CZK)\nThe limits being 0.10 % (131.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50499239 BTC (302,056.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.70 % (482,374.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,876.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08452809 BTC (131,301.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.31 CZK over 3104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005324 BTC for 82.70 CZK @ 1,553,353 CZK\nFees are 0.29046488 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (74.560943992794565377302656330 CZK)\nThe limits being 0.10 % (131.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50499239 BTC (302,056.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.70 % (482,374.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,876.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08452809 BTC (131,301.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.31 CZK over 3104 transactions" + } + ] + }, + { + "id": 4790, + "type": "message", + "date": "2024-04-03T02:00:04", + "date_unixtime": "1712102404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005379 BTC for 82.70 CZK @ 1,537,446 CZK\nFees are 0.29046034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (73.797407998941796295231052725 CZK)\nThe limits being 0.10 % (130.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50504618 BTC (302,139.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,537,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.99 % (474,341.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,793.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08458188 BTC (130,040.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.31 CZK over 3105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005379 BTC for 82.70 CZK @ 1,537,446 CZK\nFees are 0.29046034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (73.797407998941796295231052725 CZK)\nThe limits being 0.10 % (130.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50504618 BTC (302,139.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,537,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.99 % (474,341.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,793.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08458188 BTC (130,040.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.31 CZK over 3105 transactions" + } + ] + }, + { + "id": 4791, + "type": "message", + "date": "2024-04-03T06:00:04", + "date_unixtime": "1712116804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005324 BTC for 82.70 CZK @ 1,553,319 CZK\nFees are 0.29045852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.706207998526569478650418499 CZK)\nThe limits being 0.10 % (131.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50509942 BTC (302,222.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.60 % (482,357.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,710.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08463512 BTC (131,465.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.30 CZK over 3106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005324 BTC for 82.70 CZK @ 1,553,319 CZK\nFees are 0.29045852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.706207998526569478650418499 CZK)\nThe limits being 0.10 % (131.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50509942 BTC (302,222.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.60 % (482,357.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,710.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08463512 BTC (131,465.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.30 CZK over 3106 transactions" + } + ] + }, + { + "id": 4792, + "type": "message", + "date": "2024-04-03T10:00:04", + "date_unixtime": "1712131204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005311 BTC for 82.71 CZK @ 1,557,324 CZK\nFees are 0.29049636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.834367998955266433796905706 CZK)\nThe limits being 0.10 % (131.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50515253 BTC (302,305.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.23 % (484,380.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,627.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08468823 BTC (131,887.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.30 CZK over 3107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005311 BTC for 82.71 CZK @ 1,557,324 CZK\nFees are 0.29049636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.834367998955266433796905706 CZK)\nThe limits being 0.10 % (131.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50515253 BTC (302,305.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.23 % (484,380.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,627.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08468823 BTC (131,887.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.30 CZK over 3107 transactions" + } + ] + }, + { + "id": 4793, + "type": "message", + "date": "2024-04-03T14:00:04", + "date_unixtime": "1712145604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005325 BTC for 82.71 CZK @ 1,553,219 CZK\nFees are 0.29049438 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.703007999326301606349607360 CZK)\nThe limits being 0.10 % (131.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50520578 BTC (302,388.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.50 % (482,306.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,544.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08474148 BTC (131,622.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.29 CZK over 3108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005325 BTC for 82.71 CZK @ 1,553,219 CZK\nFees are 0.29049438 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.703007999326301606349607360 CZK)\nThe limits being 0.10 % (131.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50520578 BTC (302,388.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.50 % (482,306.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,544.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08474148 BTC (131,622.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.29 CZK over 3108 transactions" + } + ] + }, + { + "id": 4794, + "type": "message", + "date": "2024-04-03T18:00:04", + "date_unixtime": "1712160004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005365 BTC for 82.71 CZK @ 1,541,656 CZK\nFees are 0.29049765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (73.999487995185536549383773754 CZK)\nThe limits being 0.10 % (130.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50525943 BTC (302,471.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.52 % (476,464.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,461.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08479513 BTC (130,724.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.29 CZK over 3109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005365 BTC for 82.71 CZK @ 1,541,656 CZK\nFees are 0.29049765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (73.999487995185536549383773754 CZK)\nThe limits being 0.10 % (130.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50525943 BTC (302,471.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.52 % (476,464.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,461.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08479513 BTC (130,724.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.29 CZK over 3109 transactions" + } + ] + }, + { + "id": 4795, + "type": "message", + "date": "2024-04-03T22:00:05", + "date_unixtime": "1712174405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005371 BTC for 82.70 CZK @ 1,539,754 CZK\nFees are 0.29046373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (172.45244798817618135446065378 CZK)\nThe limits being 0.10 % (130.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50531314 BTC (302,554.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,539,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.16 % (475,503.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,378.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08484884 BTC (130,646.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.28 CZK over 3110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005371 BTC for 82.70 CZK @ 1,539,754 CZK\nFees are 0.29046373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (172.45244798817618135446065378 CZK)\nThe limits being 0.10 % (130.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50531314 BTC (302,554.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,539,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.16 % (475,503.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,378.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08484884 BTC (130,646.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.28 CZK over 3110 transactions" + } + ] + }, + { + "id": 4796, + "type": "message", + "date": "2024-04-04T02:00:03", + "date_unixtime": "1712188803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005357 BTC for 82.70 CZK @ 1,543,709 CZK\nFees are 0.29045075 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (148.19606398400818341702863944 CZK)\nThe limits being 0.10 % (131.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50536671 BTC (302,637.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,543,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.78 % (477,501.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,295.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08490241 BTC (131,064.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.28 CZK over 3111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005357 BTC for 82.70 CZK @ 1,543,709 CZK\nFees are 0.29045075 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (148.19606398400818341702863944 CZK)\nThe limits being 0.10 % (131.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50536671 BTC (302,637.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,543,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.78 % (477,501.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,295.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08490241 BTC (131,064.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.28 CZK over 3111 transactions" + } + ] + }, + { + "id": 4797, + "type": "message", + "date": "2024-04-04T06:00:04", + "date_unixtime": "1712203204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005387 BTC for 82.70 CZK @ 1,535,239 CZK\nFees are 0.29047475 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (122.81911998926349201592458694 CZK)\nThe limits being 0.10 % (130.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50542058 BTC (302,720.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 598,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.32 % (473,220.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,212.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08495628 BTC (130,428.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.28 CZK over 3112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005387 BTC for 82.70 CZK @ 1,535,239 CZK\nFees are 0.29047475 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (122.81911998926349201592458694 CZK)\nThe limits being 0.10 % (130.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50542058 BTC (302,720.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 598,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.32 % (473,220.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,212.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08495628 BTC (130,428.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.28 CZK over 3112 transactions" + } + ] + }, + { + "id": 4798, + "type": "message", + "date": "2024-04-04T10:00:04", + "date_unixtime": "1712217604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005368 BTC for 82.70 CZK @ 1,540,523 CZK\nFees are 0.29044648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (123.24183999815845732187715574 CZK)\nThe limits being 0.10 % (130.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50547426 BTC (302,803.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,540,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.16 % (475,891.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,129.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08500996 BTC (130,959.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.27 CZK over 3113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005368 BTC for 82.70 CZK @ 1,540,523 CZK\nFees are 0.29044648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (123.24183999815845732187715574 CZK)\nThe limits being 0.10 % (130.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50547426 BTC (302,803.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,540,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.16 % (475,891.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,129.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08500996 BTC (130,959.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.27 CZK over 3113 transactions" + } + ] + }, + { + "id": 4799, + "type": "message", + "date": "2024-04-04T14:00:04", + "date_unixtime": "1712232004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005343 BTC for 82.70 CZK @ 1,547,902 CZK\nFees are 0.29047854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.532863997905142221203888579 CZK)\nThe limits being 0.10 % (131.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50552769 BTC (302,886.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.35 % (479,620.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,046.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08506339 BTC (131,669.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.27 CZK over 3114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005343 BTC for 82.70 CZK @ 1,547,902 CZK\nFees are 0.29047854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.532863997905142221203888579 CZK)\nThe limits being 0.10 % (131.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50552769 BTC (302,886.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.35 % (479,620.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,046.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08506339 BTC (131,669.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.27 CZK over 3114 transactions" + } + ] + }, + { + "id": 4800, + "type": "message", + "date": "2024-04-04T18:00:03", + "date_unixtime": "1712246403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005244 BTC for 82.70 CZK @ 1,577,020 CZK\nFees are 0.29045931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.696959999270288543872191038 CZK)\nThe limits being 0.10 % (134.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50558013 BTC (302,969.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.17 % (494,340.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,963.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08511583 BTC (134,229.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.26 CZK over 3115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005244 BTC for 82.70 CZK @ 1,577,020 CZK\nFees are 0.29045931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.696959999270288543872191038 CZK)\nThe limits being 0.10 % (134.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50558013 BTC (302,969.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.17 % (494,340.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,963.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08511583 BTC (134,229.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.26 CZK over 3115 transactions" + } + ] + }, + { + "id": 4801, + "type": "message", + "date": "2024-04-04T22:00:03", + "date_unixtime": "1712260803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005168 BTC for 82.70 CZK @ 1,600,253 CZK\nFees are 0.29046685 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.812143997556539727054380874 CZK)\nThe limits being 0.10 % (136.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50563181 BTC (303,052.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,600,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.00 % (506,086.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,880.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08516751 BTC (136,289.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.26 CZK over 3116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005168 BTC for 82.70 CZK @ 1,600,253 CZK\nFees are 0.29046685 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.812143997556539727054380874 CZK)\nThe limits being 0.10 % (136.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50563181 BTC (303,052.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,600,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.00 % (506,086.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,880.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08516751 BTC (136,289.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.26 CZK over 3116 transactions" + } + ] + }, + { + "id": 4802, + "type": "message", + "date": "2024-04-05T02:00:03", + "date_unixtime": "1712275203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005172 BTC for 82.70 CZK @ 1,599,000 CZK\nFees are 0.29046406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.16800000 CZK)\nThe limits being 0.10 % (136.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50568353 BTC (303,135.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.74 % (505,452.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,797.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08521923 BTC (136,265.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.25 CZK over 3117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005172 BTC for 82.70 CZK @ 1,599,000 CZK\nFees are 0.29046406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.16800000 CZK)\nThe limits being 0.10 % (136.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50568353 BTC (303,135.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.74 % (505,452.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,797.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08521923 BTC (136,265.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.25 CZK over 3117 transactions" + } + ] + }, + { + "id": 4803, + "type": "message", + "date": "2024-04-05T06:00:04", + "date_unixtime": "1712289604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005206 BTC for 82.70 CZK @ 1,588,645 CZK\nFees are 0.29048014 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.836639996661703247240114838 CZK)\nThe limits being 0.10 % (135.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50573559 BTC (303,218.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.97 % (500,215.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,714.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08527129 BTC (135,465.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.25 CZK over 3118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005206 BTC for 82.70 CZK @ 1,588,645 CZK\nFees are 0.29048014 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.836639996661703247240114838 CZK)\nThe limits being 0.10 % (135.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50573559 BTC (303,218.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.97 % (500,215.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,714.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08527129 BTC (135,465.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.25 CZK over 3118 transactions" + } + ] + }, + { + "id": 4804, + "type": "message", + "date": "2024-04-05T10:00:03", + "date_unixtime": "1712304003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005298 BTC for 82.70 CZK @ 1,561,058 CZK\nFees are 0.29048012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.953855997026639303020778726 CZK)\nThe limits being 0.10 % (133.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50578857 BTC (303,301.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.32 % (486,263.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,631.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08532427 BTC (133,196.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.24 CZK over 3119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005298 BTC for 82.70 CZK @ 1,561,058 CZK\nFees are 0.29048012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.953855997026639303020778726 CZK)\nThe limits being 0.10 % (133.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50578857 BTC (303,301.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.32 % (486,263.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,631.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08532427 BTC (133,196.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.24 CZK over 3119 transactions" + } + ] + }, + { + "id": 4805, + "type": "message", + "date": "2024-04-05T14:00:04", + "date_unixtime": "1712318404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,478 CZK\nFees are 0.29046484 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.679295999574981089745118666 CZK)\nThe limits being 0.10 % (132.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50584184 BTC (303,384.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.85 % (481,923.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,548.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08537754 BTC (132,546.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.24 CZK over 3120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,478 CZK\nFees are 0.29046484 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (49.679295999574981089745118666 CZK)\nThe limits being 0.10 % (132.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50584184 BTC (303,384.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.85 % (481,923.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,548.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08537754 BTC (132,546.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.24 CZK over 3120 transactions" + } + ] + }, + { + "id": 4806, + "type": "message", + "date": "2024-04-05T18:00:03", + "date_unixtime": "1712332803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,999 CZK\nFees are 0.29046553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.039967997832081446855004592 CZK)\nThe limits being 0.10 % (136.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50589369 BTC (303,467.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,594,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.89 % (503,432.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,465.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08542939 BTC (136,259.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.23 CZK over 3121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,999 CZK\nFees are 0.29046553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.039967997832081446855004592 CZK)\nThe limits being 0.10 % (136.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50589369 BTC (303,467.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,594,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.89 % (503,432.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,465.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08542939 BTC (136,259.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.23 CZK over 3121 transactions" + } + ] + }, + { + "id": 4807, + "type": "message", + "date": "2024-04-05T22:00:04", + "date_unixtime": "1712347204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,099 CZK\nFees are 0.29049275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.403167994100252999476124179 CZK)\nThe limits being 0.10 % (134.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50594620 BTC (303,550.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 599,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.53 % (493,364.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,382.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08548190 BTC (134,642.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.23 CZK over 3122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,099 CZK\nFees are 0.29049275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.403167994100252999476124179 CZK)\nThe limits being 0.10 % (134.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50594620 BTC (303,550.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 599,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.53 % (493,364.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,382.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08548190 BTC (134,642.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.23 CZK over 3122 transactions" + } + ] + }, + { + "id": 4808, + "type": "message", + "date": "2024-04-06T02:00:05", + "date_unixtime": "1712361605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005215 BTC for 82.70 CZK @ 1,585,744 CZK\nFees are 0.29045096 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (101.48761599559738422711306209 CZK)\nThe limits being 0.10 % (135.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50599835 BTC (303,633.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.26 % (498,750.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,299.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08553405 BTC (135,635.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.22 CZK over 3123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005215 BTC for 82.70 CZK @ 1,585,744 CZK\nFees are 0.29045096 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (101.48761599559738422711306209 CZK)\nThe limits being 0.10 % (135.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50599835 BTC (303,633.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.26 % (498,750.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,299.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08553405 BTC (135,635.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.22 CZK over 3123 transactions" + } + ] + }, + { + "id": 4809, + "type": "message", + "date": "2024-04-06T06:00:04", + "date_unixtime": "1712376004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005223 BTC for 82.71 CZK @ 1,583,525 CZK\nFees are 0.29048945 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (101.34559999068929815910444022 CZK)\nThe limits being 0.10 % (135.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50605058 BTC (303,716.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.85 % (497,627.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,216.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08558628 BTC (135,528.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.22 CZK over 3124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005223 BTC for 82.71 CZK @ 1,583,525 CZK\nFees are 0.29048945 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (101.34559999068929815910444022 CZK)\nThe limits being 0.10 % (135.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50605058 BTC (303,716.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.85 % (497,627.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,216.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08558628 BTC (135,528.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.22 CZK over 3124 transactions" + } + ] + }, + { + "id": 4810, + "type": "message", + "date": "2024-04-06T10:00:03", + "date_unixtime": "1712390403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005204 BTC for 82.71 CZK @ 1,589,342 CZK\nFees are 0.29049594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.858943998847998186209910205 CZK)\nThe limits being 0.10 % (136.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50610262 BTC (303,799.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.77 % (500,570.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,133.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08563832 BTC (136,108.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.22 CZK over 3125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005204 BTC for 82.71 CZK @ 1,589,342 CZK\nFees are 0.29049594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.858943998847998186209910205 CZK)\nThe limits being 0.10 % (136.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50610262 BTC (303,799.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.77 % (500,570.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,133.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08563832 BTC (136,108.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.22 CZK over 3125 transactions" + } + ] + }, + { + "id": 4811, + "type": "message", + "date": "2024-04-06T14:00:04", + "date_unixtime": "1712404804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005228 BTC for 82.70 CZK @ 1,581,793 CZK\nFees are 0.29044951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.617375998084744709507542269 CZK)\nThe limits being 0.10 % (135.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50615490 BTC (303,882.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.47 % (496,749.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,050.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08569060 BTC (135,544.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.21 CZK over 3126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005228 BTC for 82.70 CZK @ 1,581,793 CZK\nFees are 0.29044951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.617375998084744709507542269 CZK)\nThe limits being 0.10 % (135.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50615490 BTC (303,882.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.47 % (496,749.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,050.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08569060 BTC (135,544.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.21 CZK over 3126 transactions" + } + ] + }, + { + "id": 4812, + "type": "message", + "date": "2024-04-06T18:00:03", + "date_unixtime": "1712419203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005196 BTC for 82.70 CZK @ 1,591,562 CZK\nFees are 0.29045451 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.929983996735060851300663229 CZK)\nThe limits being 0.10 % (136.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50620686 BTC (303,965.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.05 % (501,694.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,967.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08574256 BTC (136,464.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.21 CZK over 3127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005196 BTC for 82.70 CZK @ 1,591,562 CZK\nFees are 0.29045451 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (50.929983996735060851300663229 CZK)\nThe limits being 0.10 % (136.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50620686 BTC (303,965.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.05 % (501,694.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,967.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08574256 BTC (136,464.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.21 CZK over 3127 transactions" + } + ] + }, + { + "id": 4813, + "type": "message", + "date": "2024-04-06T22:00:04", + "date_unixtime": "1712433604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005184 BTC for 82.70 CZK @ 1,595,228 CZK\nFees are 0.29045120 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.047295994882110145355453443 CZK)\nThe limits being 0.10 % (136.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50625870 BTC (304,048.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,595,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.61 % (503,549.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,884.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08579440 BTC (136,861.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.20 CZK over 3128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005184 BTC for 82.70 CZK @ 1,595,228 CZK\nFees are 0.29045120 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.047295994882110145355453443 CZK)\nThe limits being 0.10 % (136.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50625870 BTC (304,048.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,595,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.61 % (503,549.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,884.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08579440 BTC (136,861.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.20 CZK over 3128 transactions" + } + ] + }, + { + "id": 4814, + "type": "message", + "date": "2024-04-07T02:00:03", + "date_unixtime": "1712448003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005139 BTC for 82.70 CZK @ 1,609,266 CZK\nFees are 0.29046371 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.496511994359496578088773354 CZK)\nThe limits being 0.10 % (138.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50631009 BTC (304,131.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.91 % (510,656.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,801.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08584579 BTC (138,148.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.20 CZK over 3129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005139 BTC for 82.70 CZK @ 1,609,266 CZK\nFees are 0.29046371 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.496511994359496578088773354 CZK)\nThe limits being 0.10 % (138.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50631009 BTC (304,131.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.91 % (510,656.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,801.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08584579 BTC (138,148.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.20 CZK over 3129 transactions" + } + ] + }, + { + "id": 4815, + "type": "message", + "date": "2024-04-07T06:00:04", + "date_unixtime": "1712462404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005110 BTC for 82.70 CZK @ 1,618,358 CZK\nFees are 0.29045638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.787455994820476668256015882 CZK)\nThe limits being 0.10 % (139.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50636119 BTC (304,214.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,618,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.37 % (515,259.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,718.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08589689 BTC (139,011.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.19 CZK over 3130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005110 BTC for 82.70 CZK @ 1,618,358 CZK\nFees are 0.29045638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.787455994820476668256015882 CZK)\nThe limits being 0.10 % (139.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50636119 BTC (304,214.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,618,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.37 % (515,259.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,718.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08589689 BTC (139,011.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.19 CZK over 3130 transactions" + } + ] + }, + { + "id": 4816, + "type": "message", + "date": "2024-04-07T10:00:03", + "date_unixtime": "1712476803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005105 BTC for 82.70 CZK @ 1,620,000 CZK\nFees are 0.29046659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.84000000 CZK)\nThe limits being 0.10 % (139.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50641224 BTC (304,297.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,620,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.60 % (516,090.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,635.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08594794 BTC (139,235.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.19 CZK over 3131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005105 BTC for 82.70 CZK @ 1,620,000 CZK\nFees are 0.29046659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.84000000 CZK)\nThe limits being 0.10 % (139.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50641224 BTC (304,297.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,620,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.60 % (516,090.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,635.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08594794 BTC (139,235.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.19 CZK over 3131 transactions" + } + ] + }, + { + "id": 4817, + "type": "message", + "date": "2024-04-07T14:00:03", + "date_unixtime": "1712491203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005104 BTC for 82.70 CZK @ 1,620,321 CZK\nFees are 0.29046723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.850271997850782449514473635 CZK)\nThe limits being 0.10 % (139.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50646328 BTC (304,380.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 600,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,620,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.61 % (516,252.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,552.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08599898 BTC (139,345.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.18 CZK over 3132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005104 BTC for 82.70 CZK @ 1,620,321 CZK\nFees are 0.29046723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.850271997850782449514473635 CZK)\nThe limits being 0.10 % (139.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50646328 BTC (304,380.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 600,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,620,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.61 % (516,252.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,552.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08599898 BTC (139,345.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.18 CZK over 3132 transactions" + } + ] + }, + { + "id": 4818, + "type": "message", + "date": "2024-04-07T18:00:04", + "date_unixtime": "1712505604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005095 BTC for 82.70 CZK @ 1,623,099 CZK\nFees are 0.29045217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.939167994257586181436610726 CZK)\nThe limits being 0.10 % (139.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50651423 BTC (304,463.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,623,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.02 % (517,659.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,469.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08604993 BTC (139,667.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.18 CZK over 3133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005095 BTC for 82.70 CZK @ 1,623,099 CZK\nFees are 0.29045217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.939167994257586181436610726 CZK)\nThe limits being 0.10 % (139.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50651423 BTC (304,463.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,623,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.02 % (517,659.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,469.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08604993 BTC (139,667.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.18 CZK over 3133 transactions" + } + ] + }, + { + "id": 4819, + "type": "message", + "date": "2024-04-07T22:00:04", + "date_unixtime": "1712520004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005134 BTC for 82.70 CZK @ 1,610,913 CZK\nFees are 0.29047808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.549215995670781404158293654 CZK)\nThe limits being 0.10 % (138.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50656557 BTC (304,546.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,610,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.95 % (511,486.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,386.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08610127 BTC (138,701.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.17 CZK over 3134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005134 BTC for 82.70 CZK @ 1,610,913 CZK\nFees are 0.29047808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.549215995670781404158293654 CZK)\nThe limits being 0.10 % (138.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50656557 BTC (304,546.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,610,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.95 % (511,486.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,386.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08610127 BTC (138,701.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.17 CZK over 3134 transactions" + } + ] + }, + { + "id": 4820, + "type": "message", + "date": "2024-04-08T02:00:04", + "date_unixtime": "1712534404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005107 BTC for 82.71 CZK @ 1,619,525 CZK\nFees are 0.29049518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.824799996175516102882129114 CZK)\nThe limits being 0.10 % (139.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50661664 BTC (304,629.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,619,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.34 % (515,849.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,303.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08615234 BTC (139,525.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.17 CZK over 3135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005107 BTC for 82.71 CZK @ 1,619,525 CZK\nFees are 0.29049518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.824799996175516102882129114 CZK)\nThe limits being 0.10 % (139.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50661664 BTC (304,629.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,619,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.34 % (515,849.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,303.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08615234 BTC (139,525.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.17 CZK over 3135 transactions" + } + ] + }, + { + "id": 4821, + "type": "message", + "date": "2024-04-08T06:00:03", + "date_unixtime": "1712548803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005097 BTC for 82.71 CZK @ 1,622,654 CZK\nFees are 0.29048652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.924927999793541908793032506 CZK)\nThe limits being 0.10 % (139.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50666761 BTC (304,712.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,622,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.81 % (517,433.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,220.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08620331 BTC (139,878.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.17 CZK over 3136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005097 BTC for 82.71 CZK @ 1,622,654 CZK\nFees are 0.29048652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (51.924927999793541908793032506 CZK)\nThe limits being 0.10 % (139.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50666761 BTC (304,712.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,622,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.81 % (517,433.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,220.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08620331 BTC (139,878.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.17 CZK over 3136 transactions" + } + ] + }, + { + "id": 4822, + "type": "message", + "date": "2024-04-08T10:00:03", + "date_unixtime": "1712563203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005013 BTC for 82.70 CZK @ 1,649,727 CZK\nFees are 0.29046594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.791263999500650575568792691 CZK)\nThe limits being 0.10 % (142.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50671774 BTC (304,795.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,649,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.26 % (531,150.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,137.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08625344 BTC (142,294.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.16 CZK over 3137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005013 BTC for 82.70 CZK @ 1,649,727 CZK\nFees are 0.29046594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (52.791263999500650575568792691 CZK)\nThe limits being 0.10 % (142.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50671774 BTC (304,795.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,649,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.26 % (531,150.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,137.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08625344 BTC (142,294.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.16 CZK over 3137 transactions" + } + ] + }, + { + "id": 4823, + "type": "message", + "date": "2024-04-08T14:00:03", + "date_unixtime": "1712577603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004925 BTC for 82.70 CZK @ 1,679,173 CZK\nFees are 0.29046049 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.733532635774788241155954160 CZK)\nThe limits being 0.10 % (144.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50676699 BTC (304,878.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,679,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.11 % (546,071.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,054.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08630269 BTC (144,917.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.16 CZK over 3138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004925 BTC for 82.70 CZK @ 1,679,173 CZK\nFees are 0.29046049 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.733532635774788241155954160 CZK)\nThe limits being 0.10 % (144.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50676699 BTC (304,878.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,679,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.11 % (546,071.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,054.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08630269 BTC (144,917.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.16 CZK over 3138 transactions" + } + ] + }, + { + "id": 4824, + "type": "message", + "date": "2024-04-08T18:00:03", + "date_unixtime": "1712592003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004940 BTC for 82.70 CZK @ 1,674,060 CZK\nFees are 0.29045806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.569926058794220229197807677 CZK)\nThe limits being 0.10 % (144.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50681639 BTC (304,961.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,674,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.21 % (543,479.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,971.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08635209 BTC (144,558.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.15 CZK over 3139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004940 BTC for 82.70 CZK @ 1,674,060 CZK\nFees are 0.29045806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (53.569926058794220229197807677 CZK)\nThe limits being 0.10 % (144.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50681639 BTC (304,961.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,674,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.21 % (543,479.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,971.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08635209 BTC (144,558.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.15 CZK over 3139 transactions" + } + ] + }, + { + "id": 4825, + "type": "message", + "date": "2024-04-08T22:00:04", + "date_unixtime": "1712606404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004955 BTC for 82.71 CZK @ 1,669,148 CZK\nFees are 0.29048514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (186.94457399103139013452914798 CZK)\nThe limits being 0.10 % (144.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50686594 BTC (305,044.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,669,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.35 % (540,990.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,888.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08640164 BTC (144,217.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.15 CZK over 3140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004955 BTC for 82.71 CZK @ 1,669,148 CZK\nFees are 0.29048514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (186.94457399103139013452914798 CZK)\nThe limits being 0.10 % (144.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50686594 BTC (305,044.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,669,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.35 % (540,990.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,888.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08640164 BTC (144,217.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.15 CZK over 3140 transactions" + } + ] + }, + { + "id": 4826, + "type": "message", + "date": "2024-04-09T02:00:04", + "date_unixtime": "1712620804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005018 BTC for 82.71 CZK @ 1,648,184 CZK\nFees are 0.29048368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (184.59659504210353440121789757 CZK)\nThe limits being 0.10 % (142.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50691612 BTC (305,127.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 601,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,648,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.82 % (530,363.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,805.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08645182 BTC (142,488.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.14 CZK over 3141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005018 BTC for 82.71 CZK @ 1,648,184 CZK\nFees are 0.29048368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (184.59659504210353440121789757 CZK)\nThe limits being 0.10 % (142.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50691612 BTC (305,127.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 601,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,648,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.82 % (530,363.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,805.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08645182 BTC (142,488.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.14 CZK over 3141 transactions" + } + ] + }, + { + "id": 4827, + "type": "message", + "date": "2024-04-09T06:00:03", + "date_unixtime": "1712635203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004967 BTC for 82.70 CZK @ 1,665,075 CZK\nFees are 0.29047807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (186.48838430823304261539213118 CZK)\nThe limits being 0.10 % (144.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50696579 BTC (305,210.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,665,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.58 % (538,925.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,722.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08650149 BTC (144,031.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.14 CZK over 3142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004967 BTC for 82.70 CZK @ 1,665,075 CZK\nFees are 0.29047807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (186.48838430823304261539213118 CZK)\nThe limits being 0.10 % (144.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50696579 BTC (305,210.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,665,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.58 % (538,925.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,722.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08650149 BTC (144,031.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.14 CZK over 3142 transactions" + } + ] + }, + { + "id": 4828, + "type": "message", + "date": "2024-04-09T10:00:03", + "date_unixtime": "1712649603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005030 BTC for 82.70 CZK @ 1,644,086 CZK\nFees are 0.29045433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (157.83222720478325859491778775 CZK)\nThe limits being 0.10 % (142.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50701609 BTC (305,293.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,644,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.04 % (528,284.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,639.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08655179 BTC (142,298.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.13 CZK over 3143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005030 BTC for 82.70 CZK @ 1,644,086 CZK\nFees are 0.29045433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (157.83222720478325859491778775 CZK)\nThe limits being 0.10 % (142.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50701609 BTC (305,293.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,644,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.04 % (528,284.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,639.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08655179 BTC (142,298.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.13 CZK over 3143 transactions" + } + ] + }, + { + "id": 4829, + "type": "message", + "date": "2024-04-09T14:00:04", + "date_unixtime": "1712664004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005067 BTC for 82.70 CZK @ 1,632,180 CZK\nFees are 0.29047209 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (104.45952725987954729986393586 CZK)\nThe limits being 0.10 % (141.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50706676 BTC (305,376.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,632,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.02 % (522,248.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,556.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08660246 BTC (141,350.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.13 CZK over 3144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005067 BTC for 82.70 CZK @ 1,632,180 CZK\nFees are 0.29047209 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (104.45952725987954729986393586 CZK)\nThe limits being 0.10 % (141.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50706676 BTC (305,376.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,632,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.02 % (522,248.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,556.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08660246 BTC (141,350.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.13 CZK over 3144 transactions" + } + ] + }, + { + "id": 4830, + "type": "message", + "date": "2024-04-09T18:00:04", + "date_unixtime": "1712678404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005096 BTC for 82.70 CZK @ 1,622,852 CZK\nFees are 0.29046495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (103.86252365386766411750396376 CZK)\nThe limits being 0.10 % (140.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50711772 BTC (305,459.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,622,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.42 % (517,517.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,473.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08665342 BTC (140,625.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.13 CZK over 3145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005096 BTC for 82.70 CZK @ 1,622,852 CZK\nFees are 0.29046495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (103.86252365386766411750396376 CZK)\nThe limits being 0.10 % (140.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50711772 BTC (305,459.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,622,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.42 % (517,517.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,473.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08665342 BTC (140,625.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.13 CZK over 3145 transactions" + } + ] + }, + { + "id": 4831, + "type": "message", + "date": "2024-04-09T22:00:05", + "date_unixtime": "1712692805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005108 BTC for 82.71 CZK @ 1,619,147 CZK\nFees are 0.29048420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (233.15712830309266041837125268 CZK)\nThe limits being 0.10 % (140.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50716880 BTC (305,542.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,619,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.76 % (515,638.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,390.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08670450 BTC (140,387.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.12 CZK over 3146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005108 BTC for 82.71 CZK @ 1,619,147 CZK\nFees are 0.29048420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (233.15712830309266041837125268 CZK)\nThe limits being 0.10 % (140.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50716880 BTC (305,542.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,619,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.76 % (515,638.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,390.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08670450 BTC (140,387.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.12 CZK over 3146 transactions" + } + ] + }, + { + "id": 4832, + "type": "message", + "date": "2024-04-10T02:00:55", + "date_unixtime": "1712707255", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005104 BTC for 82.71 CZK @ 1,620,485 CZK\nFees are 0.29049664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (181.49432561895434943215985429 CZK)\nThe limits being 0.10 % (140.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50721984 BTC (305,625.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,620,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.94 % (516,316.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,307.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08675554 BTC (140,586.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.12 CZK over 3147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005104 BTC for 82.71 CZK @ 1,620,485 CZK\nFees are 0.29049664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (181.49432561895434943215985429 CZK)\nThe limits being 0.10 % (140.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50721984 BTC (305,625.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,620,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.94 % (516,316.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,307.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08675554 BTC (140,586.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.12 CZK over 3147 transactions" + } + ] + }, + { + "id": 4833, + "type": "message", + "date": "2024-04-10T06:00:03", + "date_unixtime": "1712721603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005101 BTC for 82.71 CZK @ 1,621,427 CZK\nFees are 0.29049472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (103.77135309381290165854521916 CZK)\nThe limits being 0.10 % (140.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50727085 BTC (305,708.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,621,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.05 % (516,794.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,224.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08680655 BTC (140,750.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.11 CZK over 3148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005101 BTC for 82.71 CZK @ 1,621,427 CZK\nFees are 0.29049472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (103.77135309381290165854521916 CZK)\nThe limits being 0.10 % (140.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50727085 BTC (305,708.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,621,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.05 % (516,794.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,224.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08680655 BTC (140,750.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.11 CZK over 3148 transactions" + } + ] + }, + { + "id": 4834, + "type": "message", + "date": "2024-04-10T10:00:03", + "date_unixtime": "1712736003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005087 BTC for 82.70 CZK @ 1,625,761 CZK\nFees are 0.29047175 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (104.04871435918848606249269683 CZK)\nThe limits being 0.10 % (141.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50732172 BTC (305,791.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,625,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.72 % (518,992.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,141.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08685742 BTC (141,209.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.11 CZK over 3149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005087 BTC for 82.70 CZK @ 1,625,761 CZK\nFees are 0.29047175 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (104.04871435918848606249269683 CZK)\nThe limits being 0.10 % (141.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50732172 BTC (305,791.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,625,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.72 % (518,992.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,141.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08685742 BTC (141,209.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.11 CZK over 3149 transactions" + } + ] + }, + { + "id": 4835, + "type": "message", + "date": "2024-04-10T14:00:03", + "date_unixtime": "1712750403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005122 BTC for 82.71 CZK @ 1,614,713 CZK\nFees are 0.29048269 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (232.51862958520617121605034468 CZK)\nThe limits being 0.10 % (140.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50737294 BTC (305,874.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,614,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.84 % (513,387.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,058.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08690864 BTC (140,332.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.10 CZK over 3150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005122 BTC for 82.71 CZK @ 1,614,713 CZK\nFees are 0.29048269 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (232.51862958520617121605034468 CZK)\nThe limits being 0.10 % (140.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50737294 BTC (305,874.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,614,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.84 % (513,387.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,058.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08690864 BTC (140,332.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.10 CZK over 3150 transactions" + } + ] + }, + { + "id": 4836, + "type": "message", + "date": "2024-04-10T18:00:04", + "date_unixtime": "1712764804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005077 BTC for 82.69 CZK @ 1,628,810 CZK\nFees are 0.29044436 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (443.03624871115366455734651001 CZK)\nThe limits being 0.10 % (141.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50742371 BTC (305,957.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 602,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,628,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.13 % (520,539.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,975.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08695941 BTC (141,640.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.10 CZK over 3151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005077 BTC for 82.69 CZK @ 1,628,810 CZK\nFees are 0.29044436 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (443.03624871115366455734651001 CZK)\nThe limits being 0.10 % (141.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50742371 BTC (305,957.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 602,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,628,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.13 % (520,539.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,975.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08695941 BTC (141,640.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.10 CZK over 3151 transactions" + } + ] + }, + { + "id": 4837, + "type": "message", + "date": "2024-04-10T22:00:03", + "date_unixtime": "1712779203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005030 BTC for 82.70 CZK @ 1,644,086 CZK\nFees are 0.29045433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (289.35908320876930742401594420 CZK)\nThe limits being 0.10 % (143.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50747401 BTC (306,040.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,644,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.62 % (528,290.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,892.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08700971 BTC (143,051.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.09 CZK over 3152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005030 BTC for 82.70 CZK @ 1,644,086 CZK\nFees are 0.29045433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (289.35908320876930742401594420 CZK)\nThe limits being 0.10 % (143.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50747401 BTC (306,040.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,644,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.62 % (528,290.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,892.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08700971 BTC (143,051.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.09 CZK over 3152 transactions" + } + ] + }, + { + "id": 4838, + "type": "message", + "date": "2024-04-11T02:00:04", + "date_unixtime": "1712793604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004987 BTC for 82.71 CZK @ 1,658,421 CZK\nFees are 0.29048229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (265.34741203861479807639374082 CZK)\nThe limits being 0.10 % (144.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50752388 BTC (306,123.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,658,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.95 % (535,565.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,809.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08705958 BTC (144,381.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.09 CZK over 3153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004987 BTC for 82.71 CZK @ 1,658,421 CZK\nFees are 0.29048229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (265.34741203861479807639374082 CZK)\nThe limits being 0.10 % (144.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50752388 BTC (306,123.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,658,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.95 % (535,565.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,809.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08705958 BTC (144,381.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.09 CZK over 3153 transactions" + } + ] + }, + { + "id": 4839, + "type": "message", + "date": "2024-04-11T06:00:04", + "date_unixtime": "1712808004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004987 BTC for 82.71 CZK @ 1,658,421 CZK\nFees are 0.29048229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (238.81267083475331826875436673 CZK)\nThe limits being 0.10 % (144.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50757375 BTC (306,206.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,658,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.90 % (535,564.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,726.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08710945 BTC (144,464.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.09 CZK over 3154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004987 BTC for 82.71 CZK @ 1,658,421 CZK\nFees are 0.29048229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (238.81267083475331826875436673 CZK)\nThe limits being 0.10 % (144.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50757375 BTC (306,206.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,658,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.90 % (535,564.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,726.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08710945 BTC (144,464.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.09 CZK over 3154 transactions" + } + ] + }, + { + "id": 4840, + "type": "message", + "date": "2024-04-11T10:00:04", + "date_unixtime": "1712822404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004970 BTC for 82.71 CZK @ 1,664,136 CZK\nFees are 0.29048954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (266.26168410563029397110114598 CZK)\nThe limits being 0.10 % (145.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50762345 BTC (306,289.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,664,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.80 % (538,465.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,643.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08715915 BTC (145,044.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.08 CZK over 3155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004970 BTC for 82.71 CZK @ 1,664,136 CZK\nFees are 0.29048954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (266.26168410563029397110114598 CZK)\nThe limits being 0.10 % (145.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50762345 BTC (306,289.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,664,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.80 % (538,465.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,643.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08715915 BTC (145,044.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.08 CZK over 3155 transactions" + } + ] + }, + { + "id": 4841, + "type": "message", + "date": "2024-04-11T14:00:04", + "date_unixtime": "1712836804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005030 BTC for 82.70 CZK @ 1,644,086 CZK\nFees are 0.29045433 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (263.05371200797209765819631291 CZK)\nThe limits being 0.10 % (143.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50767375 BTC (306,372.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,644,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.43 % (528,287.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,560.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08720945 BTC (143,379.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.08 CZK over 3156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005030 BTC for 82.70 CZK @ 1,644,086 CZK\nFees are 0.29045433 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (263.05371200797209765819631291 CZK)\nThe limits being 0.10 % (143.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50767375 BTC (306,372.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,644,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.43 % (528,287.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,560.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08720945 BTC (143,379.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.08 CZK over 3156 transactions" + } + ] + }, + { + "id": 4842, + "type": "message", + "date": "2024-04-11T18:00:04", + "date_unixtime": "1712851204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004993 BTC for 82.71 CZK @ 1,656,486 CZK\nFees are 0.29049230 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (371.05275527003375228558646778 CZK)\nThe limits being 0.10 % (144.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50772368 BTC (306,455.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,656,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.44 % (534,581.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,477.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08725938 BTC (144,543.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.07 CZK over 3157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004993 BTC for 82.71 CZK @ 1,656,486 CZK\nFees are 0.29049230 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (371.05275527003375228558646778 CZK)\nThe limits being 0.10 % (144.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50772368 BTC (306,455.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,656,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.44 % (534,581.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,477.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08725938 BTC (144,543.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.07 CZK over 3157 transactions" + } + ] + }, + { + "id": 4843, + "type": "message", + "date": "2024-04-11T22:00:04", + "date_unixtime": "1712865604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004985 BTC for 82.54 CZK @ 1,655,825 CZK\nFees are 0.28991115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (556.35707025411061285500747386 CZK)\nThe limits being 0.10 % (144.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50777353 BTC (306,537.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,655,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.28 % (534,245.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,394.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08730923 BTC (144,568.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.07 CZK over 3158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004985 BTC for 82.54 CZK @ 1,655,825 CZK\nFees are 0.28991115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (556.35707025411061285500747386 CZK)\nThe limits being 0.10 % (144.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50777353 BTC (306,537.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,655,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.28 % (534,245.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,394.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08730923 BTC (144,568.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.07 CZK over 3158 transactions" + } + ] + }, + { + "id": 4844, + "type": "message", + "date": "2024-04-12T02:00:03", + "date_unixtime": "1712880003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004991 BTC for 82.71 CZK @ 1,657,138 CZK\nFees are 0.29049035 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (530.28420369220650983429365683 CZK)\nThe limits being 0.10 % (144.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50782344 BTC (306,620.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,657,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.45 % (534,912.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,311.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08735914 BTC (144,766.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.06 CZK over 3159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004991 BTC for 82.71 CZK @ 1,657,138 CZK\nFees are 0.29049035 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (530.28420369220650983429365683 CZK)\nThe limits being 0.10 % (144.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50782344 BTC (306,620.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,657,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.45 % (534,912.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,311.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08735914 BTC (144,766.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.06 CZK over 3159 transactions" + } + ] + }, + { + "id": 4845, + "type": "message", + "date": "2024-04-12T06:00:03", + "date_unixtime": "1712894403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004975 BTC for 82.70 CZK @ 1,662,216 CZK\nFees are 0.29044638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (558.50458218506583740826704522 CZK)\nThe limits being 0.10 % (145.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50787319 BTC (306,703.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 603,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,662,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 175.25 % (537,491.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,228.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08740889 BTC (145,292.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.06 CZK over 3160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004975 BTC for 82.70 CZK @ 1,662,216 CZK\nFees are 0.29044638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (558.50458218506583740826704522 CZK)\nThe limits being 0.10 % (145.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50787319 BTC (306,703.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 603,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,662,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 175.25 % (537,491.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,228.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08740889 BTC (145,292.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.06 CZK over 3160 transactions" + } + ] + }, + { + "id": 4846, + "type": "message", + "date": "2024-04-12T10:00:03", + "date_unixtime": "1712908803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004941 BTC for 82.70 CZK @ 1,673,768 CZK\nFees are 0.29046624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (535.60590857318147866801350099 CZK)\nThe limits being 0.10 % (146.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50792260 BTC (306,786.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,673,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.11 % (543,357.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,145.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08745830 BTC (146,384.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.05 CZK over 3161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004941 BTC for 82.70 CZK @ 1,673,768 CZK\nFees are 0.29046624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (535.60590857318147866801350099 CZK)\nThe limits being 0.10 % (146.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50792260 BTC (306,786.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,673,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.11 % (543,357.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,145.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08745830 BTC (146,384.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.05 CZK over 3161 transactions" + } + ] + }, + { + "id": 4847, + "type": "message", + "date": "2024-04-12T14:00:04", + "date_unixtime": "1712923204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004914 BTC for 82.70 CZK @ 1,683,032 CZK\nFees are 0.29047788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (538.57039558938911205976477526 CZK)\nThe limits being 0.10 % (147.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50797174 BTC (306,869.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,683,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.60 % (548,063.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,063.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08750744 BTC (147,277.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.05 CZK over 3162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004914 BTC for 82.70 CZK @ 1,683,032 CZK\nFees are 0.29047788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (538.57039558938911205976477526 CZK)\nThe limits being 0.10 % (147.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50797174 BTC (306,869.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,683,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.60 % (548,063.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,063.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08750744 BTC (147,277.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.05 CZK over 3162 transactions" + } + ] + }, + { + "id": 4848, + "type": "message", + "date": "2024-04-12T18:00:03", + "date_unixtime": "1712937603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005007 BTC for 82.71 CZK @ 1,651,895 CZK\nFees are 0.29049956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (660.75804283569519862028735260 CZK)\nThe limits being 0.10 % (144.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50802181 BTC (306,952.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,651,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.40 % (532,245.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 980.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08755751 BTC (144,635.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.04 CZK over 3163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005007 BTC for 82.71 CZK @ 1,651,895 CZK\nFees are 0.29049956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (660.75804283569519862028735260 CZK)\nThe limits being 0.10 % (144.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50802181 BTC (306,952.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,651,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.40 % (532,245.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 980.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08755751 BTC (144,635.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.04 CZK over 3163 transactions" + } + ] + }, + { + "id": 4849, + "type": "message", + "date": "2024-04-12T22:00:04", + "date_unixtime": "1712952004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005162 BTC for 82.71 CZK @ 1,602,203 CZK\nFees are 0.29048309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (615.24580480677180430291731744 CZK)\nThe limits being 0.10 % (140.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50807343 BTC (307,035.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,602,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.13 % (507,000.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 897.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08760913 BTC (140,367.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.04 CZK over 3164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005162 BTC for 82.71 CZK @ 1,602,203 CZK\nFees are 0.29048309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (615.24580480677180430291731744 CZK)\nThe limits being 0.10 % (140.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50807343 BTC (307,035.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,602,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.13 % (507,000.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 897.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08760913 BTC (140,367.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.04 CZK over 3164 transactions" + } + ] + }, + { + "id": 4850, + "type": "message", + "date": "2024-04-13T02:00:03", + "date_unixtime": "1712966403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005139 BTC for 82.71 CZK @ 1,609,464 CZK\nFees are 0.29049938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (592.28262731810525391136858704 CZK)\nThe limits being 0.10 % (141.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50812482 BTC (307,118.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.28 % (510,689.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 814.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08766052 BTC (141,086.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.04 CZK over 3165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005139 BTC for 82.71 CZK @ 1,609,464 CZK\nFees are 0.29049938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (592.28262731810525391136858704 CZK)\nThe limits being 0.10 % (141.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50812482 BTC (307,118.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.28 % (510,689.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 814.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08766052 BTC (141,086.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.04 CZK over 3165 transactions" + } + ] + }, + { + "id": 4851, + "type": "message", + "date": "2024-04-13T06:00:04", + "date_unixtime": "1712980804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005150 BTC for 82.71 CZK @ 1,606,009 CZK\nFees are 0.29049633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (591.01134003957024201701810656 CZK)\nThe limits being 0.10 % (140.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50817632 BTC (307,201.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,606,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.67 % (508,933.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 731.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08771202 BTC (140,866.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.03 CZK over 3166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005150 BTC for 82.71 CZK @ 1,606,009 CZK\nFees are 0.29049633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (591.01134003957024201701810656 CZK)\nThe limits being 0.10 % (140.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50817632 BTC (307,201.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,606,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.67 % (508,933.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 731.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08771202 BTC (140,866.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.03 CZK over 3166 transactions" + } + ] + }, + { + "id": 4852, + "type": "message", + "date": "2024-04-13T10:00:04", + "date_unixtime": "1712995204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005119 BTC for 82.71 CZK @ 1,615,682 CZK\nFees are 0.29048684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (310.21096599409392774829024378 CZK)\nThe limits being 0.10 % (141.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50822751 BTC (307,284.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,615,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.22 % (513,849.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 648.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08776321 BTC (141,797.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.03 CZK over 3167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005119 BTC for 82.71 CZK @ 1,615,682 CZK\nFees are 0.29048684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (310.21096599409392774829024378 CZK)\nThe limits being 0.10 % (141.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50822751 BTC (307,284.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,615,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.22 % (513,849.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 648.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08776321 BTC (141,797.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.03 CZK over 3167 transactions" + } + ] + }, + { + "id": 4853, + "type": "message", + "date": "2024-04-13T14:00:04", + "date_unixtime": "1713009604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005127 BTC for 82.70 CZK @ 1,613,007 CZK\nFees are 0.29045919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (283.88931433565512708640491652 CZK)\nThe limits being 0.10 % (141.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50827878 BTC (307,367.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,613,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.73 % (512,489.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 565.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08781448 BTC (141,645.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.02 CZK over 3168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005127 BTC for 82.70 CZK @ 1,613,007 CZK\nFees are 0.29045919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (283.88931433565512708640491652 CZK)\nThe limits being 0.10 % (141.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50827878 BTC (307,367.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,613,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.73 % (512,489.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 565.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08781448 BTC (141,645.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.02 CZK over 3168 transactions" + } + ] + }, + { + "id": 4854, + "type": "message", + "date": "2024-04-13T18:00:04", + "date_unixtime": "1713024004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005101 BTC for 82.70 CZK @ 1,621,156 CZK\nFees are 0.29044605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (207.50793177573845393309263491 CZK)\nThe limits being 0.10 % (142.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50832979 BTC (307,450.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,621,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.04 % (516,630.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 482.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08786549 BTC (142,443.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.02 CZK over 3169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005101 BTC for 82.70 CZK @ 1,621,156 CZK\nFees are 0.29044605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (207.50793177573845393309263491 CZK)\nThe limits being 0.10 % (142.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50832979 BTC (307,450.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,621,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.04 % (516,630.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 482.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08786549 BTC (142,443.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.02 CZK over 3169 transactions" + } + ] + }, + { + "id": 4855, + "type": "message", + "date": "2024-04-13T22:00:05", + "date_unixtime": "1713038405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,433 CZK\nFees are 0.29045641 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (198.71141564164994510951859967 CZK)\nThe limits being 0.10 % (136.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50838306 BTC (307,533.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 604,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.63 % (481,696.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 399.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08791876 BTC (136,487.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.01 CZK over 3170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,433 CZK\nFees are 0.29045641 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (198.71141564164994510951859967 CZK)\nThe limits being 0.10 % (136.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50838306 BTC (307,533.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 604,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.63 % (481,696.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 399.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08791876 BTC (136,487.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.01 CZK over 3170 transactions" + } + ] + }, + { + "id": 4856, + "type": "message", + "date": "2024-04-14T02:00:04", + "date_unixtime": "1713052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005314 BTC for 82.71 CZK @ 1,556,414 CZK\nFees are 0.29049058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (199.22096991729548762245201637 CZK)\nThe limits being 0.10 % (136.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50843620 BTC (307,616.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,026 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.25 % (483,720.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 316.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08797190 BTC (136,920.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.01 CZK over 3171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005314 BTC for 82.71 CZK @ 1,556,414 CZK\nFees are 0.29049058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (199.22096991729548762245201637 CZK)\nThe limits being 0.10 % (136.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50843620 BTC (307,616.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,026 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.25 % (483,720.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 316.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08797190 BTC (136,920.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.01 CZK over 3171 transactions" + } + ] + }, + { + "id": 4857, + "type": "message", + "date": "2024-04-14T06:00:05", + "date_unixtime": "1713067205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005386 BTC for 82.71 CZK @ 1,535,598 CZK\nFees are 0.29048876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (196.55655662515025853626677220 CZK)\nThe limits being 0.10 % (135.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50849006 BTC (307,699.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.77 % (473,136.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 233.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08802576 BTC (135,172.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.01 CZK over 3172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005386 BTC for 82.71 CZK @ 1,535,598 CZK\nFees are 0.29048876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (196.55655662515025853626677220 CZK)\nThe limits being 0.10 % (135.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50849006 BTC (307,699.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.77 % (473,136.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 233.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08802576 BTC (135,172.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.01 CZK over 3172 transactions" + } + ] + }, + { + "id": 4858, + "type": "message", + "date": "2024-04-14T10:00:03", + "date_unixtime": "1713081603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,575,014 CZK\nFees are 0.29047708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (151.20134886799268642402514832 CZK)\nThe limits being 0.10 % (138.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50854257 BTC (307,782.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.24 % (493,178.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 150.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08807827 BTC (138,724.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.00 CZK over 3173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,575,014 CZK\nFees are 0.29047708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (151.20134886799268642402514832 CZK)\nThe limits being 0.10 % (138.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50854257 BTC (307,782.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.24 % (493,178.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 150.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08807827 BTC (138,724.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.00 CZK over 3173 transactions" + } + ] + }, + { + "id": 4859, + "type": "message", + "date": "2024-04-14T14:00:03", + "date_unixtime": "1713096003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005300 BTC for 82.71 CZK @ 1,560,529 CZK\nFees are 0.29049123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (174.77920668452867792913482058 CZK)\nThe limits being 0.10 % (137.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50859557 BTC (307,865.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,560,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.80 % (485,812.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 67.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08813127 BTC (137,531.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 97.00 CZK over 3174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005300 BTC for 82.71 CZK @ 1,560,529 CZK\nFees are 0.29049123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (174.77920668452867792913482058 CZK)\nThe limits being 0.10 % (137.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50859557 BTC (307,865.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,560,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.80 % (485,812.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 67.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08813127 BTC (137,531.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 97.00 CZK over 3174 transactions" + } + ] + }, + { + "id": 4860, + "type": "message", + "date": "2024-04-14T18:00:00", + "date_unixtime": "1713110400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4861, + "type": "message", + "date": "2024-04-14T22:00:01", + "date_unixtime": "1713124801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4862, + "type": "message", + "date": "2024-04-15T02:00:01", + "date_unixtime": "1713139201", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4863, + "type": "message", + "date": "2024-04-15T06:00:00", + "date_unixtime": "1713153600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (67.06458191 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 4864, + "type": "message", + "date": "2024-04-15T10:00:04", + "date_unixtime": "1713168004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005202 BTC for 82.70 CZK @ 1,589,821 CZK\nFees are 0.29047179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (534.17980457556568159078749178 CZK)\nThe limits being 0.10 % (140.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50864759 BTC (307,948.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.60 % (500,709.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,754.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08818329 BTC (140,195.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.99 CZK over 3175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005202 BTC for 82.70 CZK @ 1,589,821 CZK\nFees are 0.29047179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (534.17980457556568159078749178 CZK)\nThe limits being 0.10 % (140.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50864759 BTC (307,948.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.60 % (500,709.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,754.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08818329 BTC (140,195.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.99 CZK over 3175 transactions" + } + ] + }, + { + "id": 4865, + "type": "message", + "date": "2024-04-15T14:00:03", + "date_unixtime": "1713182403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005247 BTC for 82.71 CZK @ 1,576,338 CZK\nFees are 0.29049986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (529.64968285101629716233320602 CZK)\nThe limits being 0.10 % (139.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50870006 BTC (308,031.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.32 % (493,851.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,671.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08823576 BTC (139,089.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.99 CZK over 3176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005247 BTC for 82.71 CZK @ 1,576,338 CZK\nFees are 0.29049986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (529.64968285101629716233320602 CZK)\nThe limits being 0.10 % (139.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50870006 BTC (308,031.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.32 % (493,851.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,671.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08823576 BTC (139,089.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.99 CZK over 3176 transactions" + } + ] + }, + { + "id": 4866, + "type": "message", + "date": "2024-04-15T18:00:06", + "date_unixtime": "1713196806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005364 BTC for 82.70 CZK @ 1,541,774 CZK\nFees are 0.29046582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (690.71495240781054526903786040 CZK)\nThe limits being 0.10 % (136.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50875370 BTC (308,114.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.58 % (476,268.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,588.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08828940 BTC (136,122.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.98 CZK over 3177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005364 BTC for 82.70 CZK @ 1,541,774 CZK\nFees are 0.29046582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (690.71495240781054526903786040 CZK)\nThe limits being 0.10 % (136.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50875370 BTC (308,114.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.58 % (476,268.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,588.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08828940 BTC (136,122.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.98 CZK over 3177 transactions" + } + ] + }, + { + "id": 4867, + "type": "message", + "date": "2024-04-15T22:00:04", + "date_unixtime": "1713211204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005449 BTC for 82.71 CZK @ 1,517,894 CZK\nFees are 0.29049837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (607.15764100743744846789219932 CZK)\nThe limits being 0.10 % (134.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50880819 BTC (308,197.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.59 % (464,119.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,505.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08834389 BTC (134,096.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.98 CZK over 3178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005449 BTC for 82.71 CZK @ 1,517,894 CZK\nFees are 0.29049837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (607.15764100743744846789219932 CZK)\nThe limits being 0.10 % (134.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50880819 BTC (308,197.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.59 % (464,119.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,505.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08834389 BTC (134,096.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.98 CZK over 3178 transactions" + } + ] + }, + { + "id": 4868, + "type": "message", + "date": "2024-04-16T02:00:04", + "date_unixtime": "1713225604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005443 BTC for 82.70 CZK @ 1,519,376 CZK\nFees are 0.29046175 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (607.75031384275923483314553752 CZK)\nThe limits being 0.10 % (134.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50886262 BTC (308,280.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,519,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.80 % (464,872.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,422.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08839832 BTC (134,310.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.97 CZK over 3179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005443 BTC for 82.70 CZK @ 1,519,376 CZK\nFees are 0.29046175 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (607.75031384275923483314553752 CZK)\nThe limits being 0.10 % (134.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50886262 BTC (308,280.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,519,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.80 % (464,872.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,422.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08839832 BTC (134,310.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.97 CZK over 3179 transactions" + } + ] + }, + { + "id": 4869, + "type": "message", + "date": "2024-04-16T06:00:04", + "date_unixtime": "1713240004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005436 BTC for 82.70 CZK @ 1,521,427 CZK\nFees are 0.29047981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (584.22792265921372327097982666 CZK)\nThe limits being 0.10 % (134.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50891698 BTC (308,363.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 605,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,521,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.09 % (465,916.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,339.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08845268 BTC (134,574.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.97 CZK over 3180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005436 BTC for 82.70 CZK @ 1,521,427 CZK\nFees are 0.29047981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (584.22792265921372327097982666 CZK)\nThe limits being 0.10 % (134.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50891698 BTC (308,363.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 605,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,521,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.09 % (465,916.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,339.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08845268 BTC (134,574.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.97 CZK over 3180 transactions" + } + ] + }, + { + "id": 4870, + "type": "message", + "date": "2024-04-16T10:00:04", + "date_unixtime": "1713254404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005431 BTC for 82.70 CZK @ 1,522,757 CZK\nFees are 0.29046639 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (536.01053010908148124906594183 CZK)\nThe limits being 0.10 % (134.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50897129 BTC (308,446.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.27 % (466,592.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,256.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08850699 BTC (134,774.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.97 CZK over 3181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005431 BTC for 82.70 CZK @ 1,522,757 CZK\nFees are 0.29046639 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (536.01053010908148124906594183 CZK)\nThe limits being 0.10 % (134.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50897129 BTC (308,446.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.27 % (466,592.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,256.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08850699 BTC (134,774.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.97 CZK over 3181 transactions" + } + ] + }, + { + "id": 4871, + "type": "message", + "date": "2024-04-16T14:00:04", + "date_unixtime": "1713268804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005484 BTC for 82.70 CZK @ 1,507,965 CZK\nFees are 0.29045192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (120.63723431883375363470740810 CZK)\nThe limits being 0.10 % (133.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50902613 BTC (308,529.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.79 % (459,063.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,173.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08856183 BTC (133,548.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.96 CZK over 3182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005484 BTC for 82.70 CZK @ 1,507,965 CZK\nFees are 0.29045192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (120.63723431883375363470740810 CZK)\nThe limits being 0.10 % (133.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50902613 BTC (308,529.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.79 % (459,063.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,173.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08856183 BTC (133,548.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.96 CZK over 3182 transactions" + } + ] + }, + { + "id": 4872, + "type": "message", + "date": "2024-04-16T18:00:04", + "date_unixtime": "1713283204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005593 BTC for 82.70 CZK @ 1,478,674 CZK\nFees are 0.29047086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (141.95266907465209153979309499 CZK)\nThe limits being 0.10 % (131.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50908206 BTC (308,612.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,478,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.92 % (444,153.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,090.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08861776 BTC (131,036.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.96 CZK over 3183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005593 BTC for 82.70 CZK @ 1,478,674 CZK\nFees are 0.29047086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (141.95266907465209153979309499 CZK)\nThe limits being 0.10 % (131.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50908206 BTC (308,612.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,478,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.92 % (444,153.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,090.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08861776 BTC (131,036.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.96 CZK over 3183 transactions" + } + ] + }, + { + "id": 4873, + "type": "message", + "date": "2024-04-16T22:00:04", + "date_unixtime": "1713297604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005518 BTC for 82.71 CZK @ 1,498,841 CZK\nFees are 0.29048426 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (161.87480135293056397570446171 CZK)\nThe limits being 0.10 % (132.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50913724 BTC (308,695.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,498,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.21 % (454,419.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,007.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08867294 BTC (132,906.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.95 CZK over 3184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005518 BTC for 82.71 CZK @ 1,498,841 CZK\nFees are 0.29048426 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (161.87480135293056397570446171 CZK)\nThe limits being 0.10 % (132.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50913724 BTC (308,695.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,498,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.21 % (454,419.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,007.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08867294 BTC (132,906.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.95 CZK over 3184 transactions" + } + ] + }, + { + "id": 4874, + "type": "message", + "date": "2024-04-17T02:00:04", + "date_unixtime": "1713312004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005427 BTC for 82.70 CZK @ 1,523,784 CZK\nFees are 0.29044813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (164.56864379646362110721925996 CZK)\nThe limits being 0.10 % (135.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50919151 BTC (308,778.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,410 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.28 % (467,118.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,924.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08872721 BTC (135,201.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.95 CZK over 3185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005427 BTC for 82.70 CZK @ 1,523,784 CZK\nFees are 0.29044813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (164.56864379646362110721925996 CZK)\nThe limits being 0.10 % (135.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50919151 BTC (308,778.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,410 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.28 % (467,118.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,924.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08872721 BTC (135,201.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.95 CZK over 3185 transactions" + } + ] + }, + { + "id": 4875, + "type": "message", + "date": "2024-04-17T06:00:04", + "date_unixtime": "1713326404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005427 BTC for 82.70 CZK @ 1,523,857 CZK\nFees are 0.29046207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (137.14712286433634848511139701 CZK)\nThe limits being 0.10 % (135.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50924578 BTC (308,861.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.25 % (467,155.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,841.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08878148 BTC (135,290.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.94 CZK over 3186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005427 BTC for 82.70 CZK @ 1,523,857 CZK\nFees are 0.29046207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (137.14712286433634848511139701 CZK)\nThe limits being 0.10 % (135.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50924578 BTC (308,861.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.25 % (467,155.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,841.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08878148 BTC (135,290.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.94 CZK over 3186 transactions" + } + ] + }, + { + "id": 4876, + "type": "message", + "date": "2024-04-17T10:00:04", + "date_unixtime": "1713340804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005453 BTC for 82.70 CZK @ 1,516,637 CZK\nFees are 0.29047085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (136.49732806806472596234104895 CZK)\nThe limits being 0.10 % (134.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50930031 BTC (308,944.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.02 % (463,478.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,758.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08883601 BTC (134,731.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.94 CZK over 3187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005453 BTC for 82.70 CZK @ 1,516,637 CZK\nFees are 0.29047085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (136.49732806806472596234104895 CZK)\nThe limits being 0.10 % (134.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50930031 BTC (308,944.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.02 % (463,478.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,758.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08883601 BTC (134,731.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.94 CZK over 3187 transactions" + } + ] + }, + { + "id": 4877, + "type": "message", + "date": "2024-04-17T14:00:04", + "date_unixtime": "1713355204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005518 BTC for 82.70 CZK @ 1,498,693 CZK\nFees are 0.29045570 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (404.64721449735638928122719446 CZK)\nThe limits being 0.10 % (133.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50935549 BTC (309,027.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,498,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.02 % (454,339.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,675.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08889119 BTC (133,220.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.93 CZK over 3188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005518 BTC for 82.70 CZK @ 1,498,693 CZK\nFees are 0.29045570 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (404.64721449735638928122719446 CZK)\nThe limits being 0.10 % (133.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50935549 BTC (309,027.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,498,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.02 % (454,339.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,675.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08889119 BTC (133,220.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.93 CZK over 3188 transactions" + } + ] + }, + { + "id": 4878, + "type": "message", + "date": "2024-04-17T18:00:04", + "date_unixtime": "1713369604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005696 BTC for 82.70 CZK @ 1,451,972 CZK\nFees are 0.29047832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (339.76151375522749030080112864 CZK)\nThe limits being 0.10 % (129.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50941245 BTC (309,110.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,451,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.28 % (430,542.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,592.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08894815 BTC (129,150.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.93 CZK over 3189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005696 BTC for 82.70 CZK @ 1,451,972 CZK\nFees are 0.29047832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (339.76151375522749030080112864 CZK)\nThe limits being 0.10 % (129.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50941245 BTC (309,110.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,451,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.28 % (430,542.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,592.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08894815 BTC (129,150.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.93 CZK over 3189 transactions" + } + ] + }, + { + "id": 4879, + "type": "message", + "date": "2024-04-17T22:00:04", + "date_unixtime": "1713384004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005681 BTC for 82.70 CZK @ 1,455,665 CZK\nFees are 0.29045027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (471.63560867433968787469521171 CZK)\nThe limits being 0.10 % (129.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50946926 BTC (309,193.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,455,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.86 % (432,423.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,509.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08900496 BTC (129,561.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.93 CZK over 3190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005681 BTC for 82.70 CZK @ 1,455,665 CZK\nFees are 0.29045027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (471.63560867433968787469521171 CZK)\nThe limits being 0.10 % (129.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50946926 BTC (309,193.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,455,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.86 % (432,423.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,509.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08900496 BTC (129,561.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.93 CZK over 3190 transactions" + } + ] + }, + { + "id": 4880, + "type": "message", + "date": "2024-04-18T02:00:04", + "date_unixtime": "1713398404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005658 BTC for 82.70 CZK @ 1,461,675 CZK\nFees are 0.29046867 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (473.58282765147011969242328415 CZK)\nThe limits being 0.10 % (130.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50952584 BTC (309,276.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 606,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,461,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.81 % (435,484.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,426.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08906154 BTC (130,179.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.92 CZK over 3191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005658 BTC for 82.70 CZK @ 1,461,675 CZK\nFees are 0.29046867 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (473.58282765147011969242328415 CZK)\nThe limits being 0.10 % (130.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50952584 BTC (309,276.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 606,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,461,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.81 % (435,484.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,426.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08906154 BTC (130,179.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.92 CZK over 3191 transactions" + } + ] + }, + { + "id": 4881, + "type": "message", + "date": "2024-04-18T06:00:04", + "date_unixtime": "1713412804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005601 BTC for 82.70 CZK @ 1,476,525 CZK\nFees are 0.29046371 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (451.81674098235180617170380369 CZK)\nThe limits being 0.10 % (131.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50958185 BTC (309,359.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,476,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.22 % (443,050.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,343.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08911755 BTC (131,584.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.92 CZK over 3192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005601 BTC for 82.70 CZK @ 1,476,525 CZK\nFees are 0.29046371 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (451.81674098235180617170380369 CZK)\nThe limits being 0.10 % (131.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50958185 BTC (309,359.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,476,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.22 % (443,050.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,343.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08911755 BTC (131,584.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.92 CZK over 3192 transactions" + } + ] + }, + { + "id": 4882, + "type": "message", + "date": "2024-04-18T10:00:03", + "date_unixtime": "1713427203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005674 BTC for 82.71 CZK @ 1,457,667 CZK\nFees are 0.29049135 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (209.90411049377935070046518540 CZK)\nThe limits being 0.10 % (129.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50963859 BTC (309,442.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,457,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.07 % (433,440.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,260.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08917429 BTC (129,986.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.91 CZK over 3193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005674 BTC for 82.71 CZK @ 1,457,667 CZK\nFees are 0.29049135 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (209.90411049377935070046518540 CZK)\nThe limits being 0.10 % (129.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50963859 BTC (309,442.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,457,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.07 % (433,440.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,260.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08917429 BTC (129,986.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.91 CZK over 3193 transactions" + } + ] + }, + { + "id": 4883, + "type": "message", + "date": "2024-04-18T14:00:03", + "date_unixtime": "1713441603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,733 CZK\nFees are 0.29046898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (187.95836934366082348145128413 CZK)\nThe limits being 0.10 % (133.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50969403 BTC (309,525.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.64 % (450,801.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,177.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08922973 BTC (133,106.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.91 CZK over 3194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,733 CZK\nFees are 0.29046898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (187.95836934366082348145128413 CZK)\nThe limits being 0.10 % (133.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50969403 BTC (309,525.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.64 % (450,801.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,177.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08922973 BTC (133,106.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.91 CZK over 3194 transactions" + } + ] + }, + { + "id": 4884, + "type": "message", + "date": "2024-04-18T18:00:03", + "date_unixtime": "1713456003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005449 BTC for 82.71 CZK @ 1,517,876 CZK\nFees are 0.29049492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (191.25238327845566759688493466 CZK)\nThe limits being 0.10 % (135.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50974852 BTC (309,608.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.91 % (464,126.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,094.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08928422 BTC (135,522.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.90 CZK over 3195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005449 BTC for 82.71 CZK @ 1,517,876 CZK\nFees are 0.29049492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (191.25238327845566759688493466 CZK)\nThe limits being 0.10 % (135.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50974852 BTC (309,608.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.91 % (464,126.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,094.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08928422 BTC (135,522.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.90 CZK over 3195 transactions" + } + ] + }, + { + "id": 4885, + "type": "message", + "date": "2024-04-18T22:00:03", + "date_unixtime": "1713470403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005452 BTC for 82.70 CZK @ 1,516,858 CZK\nFees are 0.29045982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (300.33779025428608088857012197 CZK)\nThe limits being 0.10 % (135.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50980304 BTC (309,691.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.70 % (463,606.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,011.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08933874 BTC (135,514.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.90 CZK over 3196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005452 BTC for 82.70 CZK @ 1,516,858 CZK\nFees are 0.29045982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (300.33779025428608088857012197 CZK)\nThe limits being 0.10 % (135.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50980304 BTC (309,691.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.70 % (463,606.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,011.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08933874 BTC (135,514.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.90 CZK over 3196 transactions" + } + ] + }, + { + "id": 4886, + "type": "message", + "date": "2024-04-19T02:00:03", + "date_unixtime": "1713484803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005441 BTC for 82.70 CZK @ 1,520,009 CZK\nFees are 0.29047610 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (300.96185309842311695868357092 CZK)\nThe limits being 0.10 % (135.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50985745 BTC (309,774.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.18 % (465,213.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,928.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08939315 BTC (135,878.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.90 CZK over 3197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005441 BTC for 82.70 CZK @ 1,520,009 CZK\nFees are 0.29047610 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (300.96185309842311695868357092 CZK)\nThe limits being 0.10 % (135.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50985745 BTC (309,774.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.18 % (465,213.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,928.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08939315 BTC (135,878.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.90 CZK over 3197 transactions" + } + ] + }, + { + "id": 4887, + "type": "message", + "date": "2024-04-19T06:00:04", + "date_unixtime": "1713499204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005587 BTC for 82.70 CZK @ 1,480,301 CZK\nFees are 0.29047853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (293.09953454086640912881521083 CZK)\nThe limits being 0.10 % (132.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50991332 BTC (309,857.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.60 % (444,967.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,845.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08944902 BTC (132,411.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.89 CZK over 3198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005587 BTC for 82.70 CZK @ 1,480,301 CZK\nFees are 0.29047853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (293.09953454086640912881521083 CZK)\nThe limits being 0.10 % (132.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50991332 BTC (309,857.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.60 % (444,967.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,845.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08944902 BTC (132,411.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.89 CZK over 3198 transactions" + } + ] + }, + { + "id": 4888, + "type": "message", + "date": "2024-04-19T10:00:03", + "date_unixtime": "1713513603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005365 BTC for 82.71 CZK @ 1,541,664 CZK\nFees are 0.29049919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (249.74959608156169158179363839 CZK)\nThe limits being 0.10 % (137.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.50996697 BTC (309,940.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.66 % (476,257.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,762.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08950267 BTC (137,983.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.89 CZK over 3199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005365 BTC for 82.71 CZK @ 1,541,664 CZK\nFees are 0.29049919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (249.74959608156169158179363839 CZK)\nThe limits being 0.10 % (137.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.50996697 BTC (309,940.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.66 % (476,257.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,762.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08950267 BTC (137,983.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.89 CZK over 3199 transactions" + } + ] + }, + { + "id": 4889, + "type": "message", + "date": "2024-04-19T14:00:03", + "date_unixtime": "1713528003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005341 BTC for 82.71 CZK @ 1,548,548 CZK\nFees are 0.29049105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (195.11708340336998748156027953 CZK)\nThe limits being 0.10 % (138.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51002038 BTC (310,023.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.75 % (479,767.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,679.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08955608 BTC (138,681.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.88 CZK over 3200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005341 BTC for 82.71 CZK @ 1,548,548 CZK\nFees are 0.29049105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (195.11708340336998748156027953 CZK)\nThe limits being 0.10 % (138.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51002038 BTC (310,023.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.75 % (479,767.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,679.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08955608 BTC (138,681.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.88 CZK over 3200 transactions" + } + ] + }, + { + "id": 4890, + "type": "message", + "date": "2024-04-19T18:00:04", + "date_unixtime": "1713542404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005378 BTC for 82.70 CZK @ 1,537,710 CZK\nFees are 0.29045627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (304.46664885174110768502135422 CZK)\nThe limits being 0.10 % (137.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51007416 BTC (310,106.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 607,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,537,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.93 % (474,239.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,596.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08960986 BTC (137,794.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.88 CZK over 3201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005378 BTC for 82.70 CZK @ 1,537,710 CZK\nFees are 0.29045627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (304.46664885174110768502135422 CZK)\nThe limits being 0.10 % (137.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51007416 BTC (310,106.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 607,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,537,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.93 % (474,239.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,596.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08960986 BTC (137,794.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.88 CZK over 3201 transactions" + } + ] + }, + { + "id": 4891, + "type": "message", + "date": "2024-04-19T22:00:03", + "date_unixtime": "1713556803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005389 BTC for 82.70 CZK @ 1,534,544 CZK\nFees are 0.29045114 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (303.83980709750055544136993892 CZK)\nThe limits being 0.10 % (137.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51012805 BTC (310,189.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,534,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.37 % (472,624.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,513.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08966375 BTC (137,593.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.87 CZK over 3202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005389 BTC for 82.70 CZK @ 1,534,544 CZK\nFees are 0.29045114 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (303.83980709750055544136993892 CZK)\nThe limits being 0.10 % (137.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51012805 BTC (310,189.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,534,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.37 % (472,624.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,513.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08966375 BTC (137,593.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.87 CZK over 3202 transactions" + } + ] + }, + { + "id": 4892, + "type": "message", + "date": "2024-04-20T02:00:04", + "date_unixtime": "1713571204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005440 BTC for 82.71 CZK @ 1,520,392 CZK\nFees are 0.29049589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (273.67061596544447375362701134 CZK)\nThe limits being 0.10 % (136.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51018245 BTC (310,272.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.00 % (465,404.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,430.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08971815 BTC (136,406.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.87 CZK over 3203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005440 BTC for 82.71 CZK @ 1,520,392 CZK\nFees are 0.29049589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (273.67061596544447375362701134 CZK)\nThe limits being 0.10 % (136.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51018245 BTC (310,272.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.00 % (465,404.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,430.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08971815 BTC (136,406.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.87 CZK over 3203 transactions" + } + ] + }, + { + "id": 4893, + "type": "message", + "date": "2024-04-20T06:00:04", + "date_unixtime": "1713585604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005416 BTC for 82.70 CZK @ 1,526,928 CZK\nFees are 0.29045744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.67 % (5029.6993548893496101900364970 CZK)\nThe limits being 0.10 % (137.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51023661 BTC (310,355.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,526,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.03 % (468,738.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,347.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08977231 BTC (137,075.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.87 CZK over 3204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005416 BTC for 82.70 CZK @ 1,526,928 CZK\nFees are 0.29045744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.67 % (5029.6993548893496101900364970 CZK)\nThe limits being 0.10 % (137.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51023661 BTC (310,355.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,526,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.03 % (468,738.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,347.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08977231 BTC (137,075.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.87 CZK over 3204 transactions" + } + ] + }, + { + "id": 4894, + "type": "message", + "date": "2024-04-20T10:00:04", + "date_unixtime": "1713600004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005417 BTC for 82.70 CZK @ 1,526,647 CZK\nFees are 0.29045767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.17 % (4341.7836526993992504911046524 CZK)\nThe limits being 0.10 % (137.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51029078 BTC (310,438.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,526,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.95 % (468,595.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,264.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08982648 BTC (137,133.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.86 CZK over 3205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005417 BTC for 82.70 CZK @ 1,526,647 CZK\nFees are 0.29045767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.17 % (4341.7836526993992504911046524 CZK)\nThe limits being 0.10 % (137.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51029078 BTC (310,438.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,526,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.95 % (468,595.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,264.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08982648 BTC (137,133.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.86 CZK over 3205 transactions" + } + ] + }, + { + "id": 4895, + "type": "message", + "date": "2024-04-20T14:00:03", + "date_unixtime": "1713614403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005444 BTC for 82.70 CZK @ 1,519,114 CZK\nFees are 0.29046509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.88 % (3937.5438366540034200650405433 CZK)\nThe limits being 0.10 % (136.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51034522 BTC (310,521.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,519,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.67 % (464,751.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,181.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08988092 BTC (136,539.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.86 CZK over 3206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005444 BTC for 82.70 CZK @ 1,519,114 CZK\nFees are 0.29046509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.88 % (3937.5438366540034200650405433 CZK)\nThe limits being 0.10 % (136.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51034522 BTC (310,521.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,519,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.67 % (464,751.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,181.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08988092 BTC (136,539.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.86 CZK over 3206 transactions" + } + ] + }, + { + "id": 4896, + "type": "message", + "date": "2024-04-20T18:00:03", + "date_unixtime": "1713628803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,930 CZK\nFees are 0.29046349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (2116.5544970913031738066775625 CZK)\nThe limits being 0.10 % (138.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51039875 BTC (310,604.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.87 % (477,925.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,099.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08993445 BTC (138,942.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.85 CZK over 3207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,930 CZK\nFees are 0.29046349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (2116.5544970913031738066775625 CZK)\nThe limits being 0.10 % (138.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51039875 BTC (310,604.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.87 % (477,925.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,099.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08993445 BTC (138,942.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.85 CZK over 3207 transactions" + } + ] + }, + { + "id": 4897, + "type": "message", + "date": "2024-04-20T22:00:03", + "date_unixtime": "1713643203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005349 BTC for 82.70 CZK @ 1,546,029 CZK\nFees are 0.29045286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.31 % (1824.3142439785670698451847772 CZK)\nThe limits being 0.10 % (139.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51045224 BTC (310,687.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.01 % (478,486.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,016.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.08998794 BTC (139,123.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.85 CZK over 3208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005349 BTC for 82.70 CZK @ 1,546,029 CZK\nFees are 0.29045286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.31 % (1824.3142439785670698451847772 CZK)\nThe limits being 0.10 % (139.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51045224 BTC (310,687.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.01 % (478,486.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,016.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.08998794 BTC (139,123.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.85 CZK over 3208 transactions" + } + ] + }, + { + "id": 4898, + "type": "message", + "date": "2024-04-21T02:00:04", + "date_unixtime": "1713657604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005341 BTC for 82.71 CZK @ 1,548,507 CZK\nFees are 0.29048334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (882.6490919247527867031948749 CZK)\nThe limits being 0.10 % (139.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51050565 BTC (310,770.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.37 % (479,751.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,933.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09004135 BTC (139,429.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.84 CZK over 3209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005341 BTC for 82.71 CZK @ 1,548,507 CZK\nFees are 0.29048334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (882.6490919247527867031948749 CZK)\nThe limits being 0.10 % (139.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51050565 BTC (310,770.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.37 % (479,751.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,933.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09004135 BTC (139,429.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.84 CZK over 3209 transactions" + } + ] + }, + { + "id": 4899, + "type": "message", + "date": "2024-04-21T06:00:03", + "date_unixtime": "1713672003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005330 BTC for 82.70 CZK @ 1,551,674 CZK\nFees are 0.29047792 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (713.77006240634327695467365158 CZK)\nThe limits being 0.10 % (139.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51055895 BTC (310,853.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.85 % (481,367.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,850.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09009465 BTC (139,797.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.84 CZK over 3210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005330 BTC for 82.70 CZK @ 1,551,674 CZK\nFees are 0.29047792 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (713.77006240634327695467365158 CZK)\nThe limits being 0.10 % (139.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51055895 BTC (310,853.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.85 % (481,367.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,850.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09009465 BTC (139,797.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.84 CZK over 3210 transactions" + } + ] + }, + { + "id": 4900, + "type": "message", + "date": "2024-04-21T10:00:03", + "date_unixtime": "1713686403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005326 BTC for 82.70 CZK @ 1,552,771 CZK\nFees are 0.29046508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (496.88664772058591026038979978 CZK)\nThe limits being 0.10 % (139.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51061221 BTC (310,936.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 608,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.99 % (481,927.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,767.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09014791 BTC (139,979.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.83 CZK over 3211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005326 BTC for 82.70 CZK @ 1,552,771 CZK\nFees are 0.29046508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (496.88664772058591026038979978 CZK)\nThe limits being 0.10 % (139.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51061221 BTC (310,936.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 608,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.99 % (481,927.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,767.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09014791 BTC (139,979.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.83 CZK over 3211 transactions" + } + ] + }, + { + "id": 4901, + "type": "message", + "date": "2024-04-21T14:00:04", + "date_unixtime": "1713700804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005316 BTC for 82.71 CZK @ 1,555,863 CZK\nFees are 0.29049715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (451.20040335125030789527848919 CZK)\nThe limits being 0.10 % (140.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51066537 BTC (311,019.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,555,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.46 % (483,506.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,684.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09020107 BTC (140,340.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.83 CZK over 3212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005316 BTC for 82.71 CZK @ 1,555,863 CZK\nFees are 0.29049715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (451.20040335125030789527848919 CZK)\nThe limits being 0.10 % (140.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51066537 BTC (311,019.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,555,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.46 % (483,506.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,684.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09020107 BTC (140,340.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.83 CZK over 3212 transactions" + } + ] + }, + { + "id": 4902, + "type": "message", + "date": "2024-04-21T18:00:03", + "date_unixtime": "1713715203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005334 BTC for 82.70 CZK @ 1,550,393 CZK\nFees are 0.29045589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (279.07071568968677121637822177 CZK)\nThe limits being 0.10 % (139.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51071871 BTC (311,102.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.52 % (480,712.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,601.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09025441 BTC (139,929.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.83 CZK over 3213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005334 BTC for 82.70 CZK @ 1,550,393 CZK\nFees are 0.29045589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (279.07071568968677121637822177 CZK)\nThe limits being 0.10 % (139.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51071871 BTC (311,102.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.52 % (480,712.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,601.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09025441 BTC (139,929.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.83 CZK over 3213 transactions" + } + ] + }, + { + "id": 4903, + "type": "message", + "date": "2024-04-21T22:00:03", + "date_unixtime": "1713729603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005378 BTC for 82.71 CZK @ 1,537,868 CZK\nFees are 0.29048600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (419.83789270687587864193433803 CZK)\nThe limits being 0.10 % (138.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51077249 BTC (311,185.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,537,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.42 % (474,314.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,518.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09030819 BTC (138,882.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.82 CZK over 3214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005378 BTC for 82.71 CZK @ 1,537,868 CZK\nFees are 0.29048600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (419.83789270687587864193433803 CZK)\nThe limits being 0.10 % (138.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51077249 BTC (311,185.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,537,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.42 % (474,314.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,518.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09030819 BTC (138,882.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.82 CZK over 3214 transactions" + } + ] + }, + { + "id": 4904, + "type": "message", + "date": "2024-04-22T02:00:04", + "date_unixtime": "1713744004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005345 BTC for 82.71 CZK @ 1,547,437 CZK\nFees are 0.29049989 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (422.45016944604082157723925103 CZK)\nThe limits being 0.10 % (139.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51082594 BTC (311,268.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,344 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,437 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.95 % (479,202.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,435.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09036164 BTC (139,828.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.82 CZK over 3215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005345 BTC for 82.71 CZK @ 1,547,437 CZK\nFees are 0.29049989 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (422.45016944604082157723925103 CZK)\nThe limits being 0.10 % (139.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51082594 BTC (311,268.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,344 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,437 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.95 % (479,202.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,435.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09036164 BTC (139,828.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.82 CZK over 3215 transactions" + } + ] + }, + { + "id": 4905, + "type": "message", + "date": "2024-04-22T06:00:04", + "date_unixtime": "1713758404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005284 BTC for 82.71 CZK @ 1,565,258 CZK\nFees are 0.29049195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (386.61867799963564315207145922 CZK)\nThe limits being 0.10 % (141.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51087878 BTC (311,351.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.83 % (488,305.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,352.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09041448 BTC (141,521.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.81 CZK over 3216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005284 BTC for 82.71 CZK @ 1,565,258 CZK\nFees are 0.29049195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (386.61867799963564315207145922 CZK)\nThe limits being 0.10 % (141.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51087878 BTC (311,351.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.83 % (488,305.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,352.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09041448 BTC (141,521.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.81 CZK over 3216 transactions" + } + ] + }, + { + "id": 4906, + "type": "message", + "date": "2024-04-22T10:00:04", + "date_unixtime": "1713772804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005240 BTC for 82.71 CZK @ 1,578,360 CZK\nFees are 0.29048444 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (246.22421718641244194936044457 CZK)\nThe limits being 0.10 % (142.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51093118 BTC (311,434.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.94 % (494,998.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,269.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09046688 BTC (142,789.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.81 CZK over 3217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005240 BTC for 82.71 CZK @ 1,578,360 CZK\nFees are 0.29048444 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (246.22421718641244194936044457 CZK)\nThe limits being 0.10 % (142.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51093118 BTC (311,434.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.94 % (494,998.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,269.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09046688 BTC (142,789.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.81 CZK over 3217 transactions" + } + ] + }, + { + "id": 4907, + "type": "message", + "date": "2024-04-22T14:00:03", + "date_unixtime": "1713787203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,037 CZK\nFees are 0.29048133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (286.65675366990623277488986605 CZK)\nThe limits being 0.10 % (142.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51098369 BTC (311,517.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.35 % (493,300.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,186.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09051939 BTC (142,571.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.80 CZK over 3218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,037 CZK\nFees are 0.29048133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (286.65675366990623277488986605 CZK)\nThe limits being 0.10 % (142.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51098369 BTC (311,517.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.35 % (493,300.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,186.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09051939 BTC (142,571.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.80 CZK over 3218 transactions" + } + ] + }, + { + "id": 4908, + "type": "message", + "date": "2024-04-22T18:00:04", + "date_unixtime": "1713801604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005256 BTC for 82.71 CZK @ 1,573,576 CZK\nFees are 0.29048829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (368.21689592931588754427995169 CZK)\nThe limits being 0.10 % (142.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51103625 BTC (311,600.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,573,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.07 % (492,554.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,103.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09057195 BTC (142,521.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.80 CZK over 3219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005256 BTC for 82.71 CZK @ 1,573,576 CZK\nFees are 0.29048829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (368.21689592931588754427995169 CZK)\nThe limits being 0.10 % (142.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51103625 BTC (311,600.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,573,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.07 % (492,554.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,103.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09057195 BTC (142,521.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.80 CZK over 3219 transactions" + } + ] + }, + { + "id": 4909, + "type": "message", + "date": "2024-04-22T22:00:04", + "date_unixtime": "1713816004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005211 BTC for 82.70 CZK @ 1,587,098 CZK\nFees are 0.29047600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (330.11640079066961661817490252 CZK)\nThe limits being 0.10 % (143.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51108836 BTC (311,683.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,587,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.25 % (499,463.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,020.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09062406 BTC (143,829.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.80 CZK over 3220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005211 BTC for 82.70 CZK @ 1,587,098 CZK\nFees are 0.29047600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (330.11640079066961661817490252 CZK)\nThe limits being 0.10 % (143.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51108836 BTC (311,683.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,587,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.25 % (499,463.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,020.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09062406 BTC (143,829.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.80 CZK over 3220 transactions" + } + ] + }, + { + "id": 4910, + "type": "message", + "date": "2024-04-23T02:00:04", + "date_unixtime": "1713830404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005192 BTC for 82.69 CZK @ 1,592,733 CZK\nFees are 0.29044447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (331.28848148276102977022639559 CZK)\nThe limits being 0.10 % (144.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51114028 BTC (311,766.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 609,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.13 % (502,343.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,937.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09067598 BTC (144,422.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.79 CZK over 3221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005192 BTC for 82.69 CZK @ 1,592,733 CZK\nFees are 0.29044447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (331.28848148276102977022639559 CZK)\nThe limits being 0.10 % (144.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51114028 BTC (311,766.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 609,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.13 % (502,343.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,937.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09067598 BTC (144,422.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.79 CZK over 3221 transactions" + } + ] + }, + { + "id": 4911, + "type": "message", + "date": "2024-04-23T06:00:04", + "date_unixtime": "1713844804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005217 BTC for 82.71 CZK @ 1,585,382 CZK\nFees are 0.29049598 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (494.63912645247098066485529511 CZK)\nThe limits being 0.10 % (143.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51119245 BTC (311,849.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.88 % (498,585.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,854.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09072815 BTC (143,838.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.79 CZK over 3222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005217 BTC for 82.71 CZK @ 1,585,382 CZK\nFees are 0.29049598 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (494.63912645247098066485529511 CZK)\nThe limits being 0.10 % (143.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51119245 BTC (311,849.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.88 % (498,585.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,854.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09072815 BTC (143,838.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.79 CZK over 3222 transactions" + } + ] + }, + { + "id": 4912, + "type": "message", + "date": "2024-04-23T10:00:04", + "date_unixtime": "1713859204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005244 BTC for 82.71 CZK @ 1,577,219 CZK\nFees are 0.29049588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (533.09986280474479672025105112 CZK)\nThe limits being 0.10 % (143.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51124489 BTC (311,932.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.50 % (494,412.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,771.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09078059 BTC (143,180.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.78 CZK over 3223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005244 BTC for 82.71 CZK @ 1,577,219 CZK\nFees are 0.29049588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (533.09986280474479672025105112 CZK)\nThe limits being 0.10 % (143.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51124489 BTC (311,932.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.50 % (494,412.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,771.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09078059 BTC (143,180.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.78 CZK over 3223 transactions" + } + ] + }, + { + "id": 4913, + "type": "message", + "date": "2024-04-23T14:00:03", + "date_unixtime": "1713873603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,342 CZK\nFees are 0.29046211 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (592.39590578178730513883528119 CZK)\nThe limits being 0.10 % (142.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51129752 BTC (312,015.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.49 % (491,407.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,688.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09083322 BTC (142,730.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.78 CZK over 3224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,342 CZK\nFees are 0.29046211 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (592.39590578178730513883528119 CZK)\nThe limits being 0.10 % (142.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51129752 BTC (312,015.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.49 % (491,407.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,688.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09083322 BTC (142,730.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.78 CZK over 3224 transactions" + } + ] + }, + { + "id": 4914, + "type": "message", + "date": "2024-04-23T18:00:04", + "date_unixtime": "1713888004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005254 BTC for 82.70 CZK @ 1,574,027 CZK\nFees are 0.29046082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (716.18210157198188525163829907 CZK)\nThe limits being 0.10 % (143.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51135006 BTC (312,098.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.89 % (492,780.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,605.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09088576 BTC (143,056.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.77 CZK over 3225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005254 BTC for 82.70 CZK @ 1,574,027 CZK\nFees are 0.29046082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (716.18210157198188525163829907 CZK)\nThe limits being 0.10 % (143.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51135006 BTC (312,098.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.89 % (492,780.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,605.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09088576 BTC (143,056.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.77 CZK over 3225 transactions" + } + ] + }, + { + "id": 4915, + "type": "message", + "date": "2024-04-23T22:00:03", + "date_unixtime": "1713902403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.69 CZK @ 1,574,842 CZK\nFees are 0.29044528 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (798.4447024625389882317241018 CZK)\nThe limits being 0.10 % (143.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51140257 BTC (312,181.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.98 % (493,196.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,522.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09093827 BTC (143,213.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.77 CZK over 3226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.69 CZK @ 1,574,842 CZK\nFees are 0.29044528 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (798.4447024625389882317241018 CZK)\nThe limits being 0.10 % (143.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51140257 BTC (312,181.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.98 % (493,196.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,522.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09093827 BTC (143,213.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.77 CZK over 3226 transactions" + } + ] + }, + { + "id": 4916, + "type": "message", + "date": "2024-04-24T02:00:04", + "date_unixtime": "1713916804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,061 CZK\nFees are 0.29048577 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (757.60442173094986439102827780 CZK)\nThe limits being 0.10 % (143.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51145508 BTC (312,264.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.98 % (493,308.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,439.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09099078 BTC (143,316.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.77 CZK over 3227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,061 CZK\nFees are 0.29048577 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (757.60442173094986439102827780 CZK)\nThe limits being 0.10 % (143.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51145508 BTC (312,264.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.98 % (493,308.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,439.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09099078 BTC (143,316.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.77 CZK over 3227 transactions" + } + ] + }, + { + "id": 4917, + "type": "message", + "date": "2024-04-24T06:00:04", + "date_unixtime": "1713931204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,267 CZK\nFees are 0.29046728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (759.14649187500237717606697174 CZK)\nThe limits being 0.10 % (143.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51150748 BTC (312,347.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.46 % (494,947.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,356.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09104318 BTC (143,690.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.76 CZK over 3228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,267 CZK\nFees are 0.29046728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (759.14649187500237717606697174 CZK)\nThe limits being 0.10 % (143.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51150748 BTC (312,347.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.46 % (494,947.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,356.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09104318 BTC (143,690.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.76 CZK over 3228 transactions" + } + ] + }, + { + "id": 4918, + "type": "message", + "date": "2024-04-24T10:00:03", + "date_unixtime": "1713945603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005230 BTC for 82.70 CZK @ 1,581,354 CZK\nFees are 0.29047995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (760.63118052113968224026614306 CZK)\nThe limits being 0.10 % (144.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51155978 BTC (312,430.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.92 % (496,526.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,273.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09109548 BTC (144,054.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.76 CZK over 3229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005230 BTC for 82.70 CZK @ 1,581,354 CZK\nFees are 0.29047995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (760.63118052113968224026614306 CZK)\nThe limits being 0.10 % (144.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51155978 BTC (312,430.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.92 % (496,526.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,273.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09109548 BTC (144,054.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.76 CZK over 3229 transactions" + } + ] + }, + { + "id": 4919, + "type": "message", + "date": "2024-04-24T14:00:04", + "date_unixtime": "1713960004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005226 BTC for 82.71 CZK @ 1,582,670 CZK\nFees are 0.29049939 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (761.26430687370323271534703166 CZK)\nThe limits being 0.10 % (144.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51161204 BTC (312,513.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,582,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.10 % (497,199.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,190.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09114774 BTC (144,256.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.75 CZK over 3230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005226 BTC for 82.71 CZK @ 1,582,670 CZK\nFees are 0.29049939 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (761.26430687370323271534703166 CZK)\nThe limits being 0.10 % (144.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51161204 BTC (312,513.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,582,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.10 % (497,199.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,190.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09114774 BTC (144,256.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.75 CZK over 3230 transactions" + } + ] + }, + { + "id": 4920, + "type": "message", + "date": "2024-04-24T18:00:09", + "date_unixtime": "1713974409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005377 BTC for 82.71 CZK @ 1,538,153 CZK\nFees are 0.29048594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (659.86782953303015417769256363 CZK)\nThe limits being 0.10 % (140.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51166581 BTC (312,596.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 610,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,538,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.77 % (474,424.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,107.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09120151 BTC (140,281.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.75 CZK over 3231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005377 BTC for 82.71 CZK @ 1,538,153 CZK\nFees are 0.29048594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (659.86782953303015417769256363 CZK)\nThe limits being 0.10 % (140.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51166581 BTC (312,596.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 610,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,538,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.77 % (474,424.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,107.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09120151 BTC (140,281.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.75 CZK over 3231 transactions" + } + ] + }, + { + "id": 4921, + "type": "message", + "date": "2024-04-24T22:00:03", + "date_unixtime": "1713988803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005446 BTC for 82.70 CZK @ 1,518,566 CZK\nFees are 0.29046691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (592.24065097352069812212526084 CZK)\nThe limits being 0.10 % (138.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51172027 BTC (312,679.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.52 % (464,401.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,024.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09125597 BTC (138,578.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.74 CZK over 3232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005446 BTC for 82.70 CZK @ 1,518,566 CZK\nFees are 0.29046691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (592.24065097352069812212526084 CZK)\nThe limits being 0.10 % (138.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51172027 BTC (312,679.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.52 % (464,401.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,024.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09125597 BTC (138,578.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.74 CZK over 3232 transactions" + } + ] + }, + { + "id": 4922, + "type": "message", + "date": "2024-04-25T02:00:04", + "date_unixtime": "1714003204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005413 BTC for 82.70 CZK @ 1,527,732 CZK\nFees are 0.29044941 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (575.95479419519212775606824481 CZK)\nThe limits being 0.10 % (139.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51177440 BTC (312,762.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,527,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.98 % (469,091.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,941.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09131010 BTC (139,497.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.74 CZK over 3233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005413 BTC for 82.70 CZK @ 1,527,732 CZK\nFees are 0.29044941 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (575.95479419519212775606824481 CZK)\nThe limits being 0.10 % (139.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51177440 BTC (312,762.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,527,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.98 % (469,091.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,941.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09131010 BTC (139,497.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.74 CZK over 3233 transactions" + } + ] + }, + { + "id": 4923, + "type": "message", + "date": "2024-04-25T06:00:03", + "date_unixtime": "1714017603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005413 BTC for 82.70 CZK @ 1,527,800 CZK\nFees are 0.29046237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (417.08932326069913624869763510 CZK)\nThe limits being 0.10 % (139.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51182853 BTC (312,845.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,527,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.95 % (469,126.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,858.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09136423 BTC (139,586.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.74 CZK over 3234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005413 BTC for 82.70 CZK @ 1,527,800 CZK\nFees are 0.29046237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (417.08932326069913624869763510 CZK)\nThe limits being 0.10 % (139.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51182853 BTC (312,845.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,527,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.95 % (469,126.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,858.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09136423 BTC (139,586.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.74 CZK over 3234 transactions" + } + ] + }, + { + "id": 4924, + "type": "message", + "date": "2024-04-25T10:00:05", + "date_unixtime": "1714032005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005451 BTC for 82.70 CZK @ 1,517,195 CZK\nFees are 0.29047122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (138.06477832502769384388176513 CZK)\nThe limits being 0.10 % (138.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51188304 BTC (312,928.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.18 % (463,698.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,775.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09141874 BTC (138,700.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.73 CZK over 3235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005451 BTC for 82.70 CZK @ 1,517,195 CZK\nFees are 0.29047122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (138.06477832502769384388176513 CZK)\nThe limits being 0.10 % (138.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51188304 BTC (312,928.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.18 % (463,698.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,775.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09141874 BTC (138,700.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.73 CZK over 3235 transactions" + } + ] + }, + { + "id": 4925, + "type": "message", + "date": "2024-04-25T14:00:03", + "date_unixtime": "1714046403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005486 BTC for 82.70 CZK @ 1,507,551 CZK\nFees are 0.29047807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (117.58900920238879561345716532 CZK)\nThe limits being 0.10 % (137.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51193790 BTC (313,011.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.56 % (458,761.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,692.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09147360 BTC (137,901.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.73 CZK over 3236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005486 BTC for 82.70 CZK @ 1,507,551 CZK\nFees are 0.29047807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (117.58900920238879561345716532 CZK)\nThe limits being 0.10 % (137.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51193790 BTC (313,011.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.56 % (458,761.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,692.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09147360 BTC (137,901.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.73 CZK over 3236 transactions" + } + ] + }, + { + "id": 4926, + "type": "message", + "date": "2024-04-25T18:00:03", + "date_unixtime": "1714060803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005469 BTC for 82.71 CZK @ 1,512,313 CZK\nFees are 0.29049262 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (196.60072036043531312011543434 CZK)\nThe limits being 0.10 % (138.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51199259 BTC (313,094.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,512,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.30 % (461,198.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,609.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09152829 BTC (138,419.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.72 CZK over 3237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005469 BTC for 82.71 CZK @ 1,512,313 CZK\nFees are 0.29049262 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (196.60072036043531312011543434 CZK)\nThe limits being 0.10 % (138.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51199259 BTC (313,094.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,512,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.30 % (461,198.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,609.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09152829 BTC (138,419.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.72 CZK over 3237 transactions" + } + ] + }, + { + "id": 4927, + "type": "message", + "date": "2024-04-25T22:00:04", + "date_unixtime": "1714075204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005429 BTC for 82.70 CZK @ 1,523,262 CZK\nFees are 0.29045576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (237.62894115502721502554652381 CZK)\nThe limits being 0.10 % (139.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51204688 BTC (313,177.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.05 % (466,804.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,526.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09158258 BTC (139,504.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.72 CZK over 3238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005429 BTC for 82.70 CZK @ 1,523,262 CZK\nFees are 0.29045576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (237.62894115502721502554652381 CZK)\nThe limits being 0.10 % (139.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51204688 BTC (313,177.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.05 % (466,804.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,526.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09158258 BTC (139,504.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.72 CZK over 3238 transactions" + } + ] + }, + { + "id": 4928, + "type": "message", + "date": "2024-04-26T02:00:04", + "date_unixtime": "1714089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005441 BTC for 82.71 CZK @ 1,520,102 CZK\nFees are 0.29049373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (237.13584778802586462910048245 CZK)\nThe limits being 0.10 % (139.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51210129 BTC (313,260.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.50 % (465,185.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,443.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09163699 BTC (139,297.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.72 CZK over 3239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005441 BTC for 82.71 CZK @ 1,520,102 CZK\nFees are 0.29049373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (237.13584778802586462910048245 CZK)\nThe limits being 0.10 % (139.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51210129 BTC (313,260.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.50 % (465,185.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,443.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09163699 BTC (139,297.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.72 CZK over 3239 transactions" + } + ] + }, + { + "id": 4929, + "type": "message", + "date": "2024-04-26T06:00:04", + "date_unixtime": "1714104004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005447 BTC for 82.71 CZK @ 1,518,426 CZK\nFees are 0.29049359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (197.39543530816367058969026069 CZK)\nThe limits being 0.10 % (139.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51215576 BTC (313,343.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.18 % (464,327.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,360.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09169146 BTC (139,226.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.71 CZK over 3240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005447 BTC for 82.71 CZK @ 1,518,426 CZK\nFees are 0.29049359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (197.39543530816367058969026069 CZK)\nThe limits being 0.10 % (139.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51215576 BTC (313,343.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.18 % (464,327.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,360.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09169146 BTC (139,226.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.71 CZK over 3240 transactions" + } + ] + }, + { + "id": 4930, + "type": "message", + "date": "2024-04-26T10:00:05", + "date_unixtime": "1714118405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005463 BTC for 82.70 CZK @ 1,513,808 CZK\nFees are 0.29046072 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (177.11552992040215095600324729 CZK)\nThe limits being 0.10 % (138.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51221039 BTC (313,426.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 611,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,513,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.39 % (461,961.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,277.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09174609 BTC (138,885.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.71 CZK over 3241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005463 BTC for 82.70 CZK @ 1,513,808 CZK\nFees are 0.29046072 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (177.11552992040215095600324729 CZK)\nThe limits being 0.10 % (138.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51221039 BTC (313,426.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 611,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,513,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.39 % (461,961.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,277.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09174609 BTC (138,885.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.71 CZK over 3241 transactions" + } + ] + }, + { + "id": 4931, + "type": "message", + "date": "2024-04-26T14:00:04", + "date_unixtime": "1714132804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005455 BTC for 82.70 CZK @ 1,516,006 CZK\nFees are 0.29045658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (177.37275014242086702042393329 CZK)\nThe limits being 0.10 % (139.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51226494 BTC (313,509.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.71 % (463,087.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,194.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09180064 BTC (139,170.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.70 CZK over 3242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005455 BTC for 82.70 CZK @ 1,516,006 CZK\nFees are 0.29045658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (177.37275014242086702042393329 CZK)\nThe limits being 0.10 % (139.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51226494 BTC (313,509.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.71 % (463,087.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,194.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09180064 BTC (139,170.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.70 CZK over 3242 transactions" + } + ] + }, + { + "id": 4932, + "type": "message", + "date": "2024-04-26T18:09:19", + "date_unixtime": "1714147759", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,734 CZK\nFees are 0.29048192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.38832698355754857997010464 CZK)\nThe limits being 0.10 % (138.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51231994 BTC (313,592.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.67 % (456,800.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,111.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09185564 BTC (138,126.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.70 CZK over 3243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,734 CZK\nFees are 0.29048192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.38832698355754857997010464 CZK)\nThe limits being 0.10 % (138.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51231994 BTC (313,592.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.67 % (456,800.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,111.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09185564 BTC (138,126.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.70 CZK over 3243 transactions" + } + ] + }, + { + "id": 4933, + "type": "message", + "date": "2024-04-26T18:09:19", + "date_unixtime": "1714147759", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,734 CZK\nFees are 0.29048192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.38832698355754857997010464 CZK)\nThe limits being 0.10 % (138.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51231994 BTC (313,592.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.67 % (456,800.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,111.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09185564 BTC (138,126.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.70 CZK over 3243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,734 CZK\nFees are 0.29048192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.38832698355754857997010464 CZK)\nThe limits being 0.10 % (138.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51231994 BTC (313,592.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.67 % (456,800.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,111.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09185564 BTC (138,126.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.70 CZK over 3243 transactions" + } + ] + }, + { + "id": 4934, + "type": "message", + "date": "2024-04-26T18:09:19", + "date_unixtime": "1714147759", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n❌ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,734 CZK\nFees are 0.29048192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.38832698355754857997010464 CZK)\nThe limits being 0.10 % (138.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51231994 BTC (313,592.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.67 % (456,800.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,111.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09185564 BTC (138,126.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.70 CZK over 3243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n❌ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,734 CZK\nFees are 0.29048192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.38832698355754857997010464 CZK)\nThe limits being 0.10 % (138.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51231994 BTC (313,592.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.67 % (456,800.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,111.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09185564 BTC (138,126.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.70 CZK over 3243 transactions" + } + ] + }, + { + "id": 4935, + "type": "message", + "date": "2024-04-26T22:00:04", + "date_unixtime": "1714161604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005479 BTC for 82.70 CZK @ 1,509,372 CZK\nFees are 0.29045776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.97468010930533059460713930 CZK)\nThe limits being 0.10 % (138.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51237473 BTC (313,675.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.55 % (459,688.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,028.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09191043 BTC (138,727.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.69 CZK over 3244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005479 BTC for 82.70 CZK @ 1,509,372 CZK\nFees are 0.29045776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (156.97468010930533059460713930 CZK)\nThe limits being 0.10 % (138.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51237473 BTC (313,675.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.55 % (459,688.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,028.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09191043 BTC (138,727.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.69 CZK over 3244 transactions" + } + ] + }, + { + "id": 4936, + "type": "message", + "date": "2024-04-27T02:00:03", + "date_unixtime": "1714176003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005476 BTC for 82.71 CZK @ 1,510,348 CZK\nFees are 0.29048652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (157.07622847426265193808521890 CZK)\nThe limits being 0.10 % (138.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51242949 BTC (313,758.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.67 % (460,188.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,945.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09196519 BTC (138,899.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.69 CZK over 3245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005476 BTC for 82.71 CZK @ 1,510,348 CZK\nFees are 0.29048652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (157.07622847426265193808521890 CZK)\nThe limits being 0.10 % (138.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51242949 BTC (313,758.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.67 % (460,188.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,945.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09196519 BTC (138,899.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.69 CZK over 3245 transactions" + } + ] + }, + { + "id": 4937, + "type": "message", + "date": "2024-04-27T06:00:04", + "date_unixtime": "1714190404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005536 BTC for 82.70 CZK @ 1,493,861 CZK\nFees are 0.29046366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (155.36158343053647493887002428 CZK)\nThe limits being 0.10 % (137.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51248485 BTC (313,841.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.94 % (451,739.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,862.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09202055 BTC (137,465.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.69 CZK over 3246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005536 BTC for 82.70 CZK @ 1,493,861 CZK\nFees are 0.29046366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (155.36158343053647493887002428 CZK)\nThe limits being 0.10 % (137.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51248485 BTC (313,841.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.94 % (451,739.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,862.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09202055 BTC (137,465.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.69 CZK over 3246 transactions" + } + ] + }, + { + "id": 4938, + "type": "message", + "date": "2024-04-27T10:00:03", + "date_unixtime": "1714204803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005551 BTC for 82.70 CZK @ 1,489,758 CZK\nFees are 0.29045070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (135.56799459269605560864841906 CZK)\nThe limits being 0.10 % (137.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51254036 BTC (313,924.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,489,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.23 % (449,636.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,779.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09207606 BTC (137,171.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.68 CZK over 3247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005551 BTC for 82.70 CZK @ 1,489,758 CZK\nFees are 0.29045070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (135.56799459269605560864841906 CZK)\nThe limits being 0.10 % (137.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51254036 BTC (313,924.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,489,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.23 % (449,636.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,779.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09207606 BTC (137,171.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.68 CZK over 3247 transactions" + } + ] + }, + { + "id": 4939, + "type": "message", + "date": "2024-04-27T14:00:03", + "date_unixtime": "1714219203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005551 BTC for 82.70 CZK @ 1,489,798 CZK\nFees are 0.29045852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.20426599174551832053853666 CZK)\nThe limits being 0.10 % (137.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51259587 BTC (314,007.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,489,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.20 % (449,657.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,696.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09213157 BTC (137,257.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.68 CZK over 3248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005551 BTC for 82.70 CZK @ 1,489,798 CZK\nFees are 0.29045852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.20426599174551832053853666 CZK)\nThe limits being 0.10 % (137.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51259587 BTC (314,007.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,489,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.20 % (449,657.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,696.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09213157 BTC (137,257.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.68 CZK over 3248 transactions" + } + ] + }, + { + "id": 4940, + "type": "message", + "date": "2024-04-27T18:00:04", + "date_unixtime": "1714233604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005547 BTC for 82.71 CZK @ 1,491,048 CZK\nFees are 0.29049277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.30177430372818984285126449 CZK)\nThe limits being 0.10 % (137.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51265134 BTC (314,090.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.37 % (450,297.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,613.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09218704 BTC (137,455.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.67 CZK over 3249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005547 BTC for 82.71 CZK @ 1,491,048 CZK\nFees are 0.29049277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.30177430372818984285126449 CZK)\nThe limits being 0.10 % (137.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51265134 BTC (314,090.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.37 % (450,297.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,613.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09218704 BTC (137,455.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.67 CZK over 3249 transactions" + } + ] + }, + { + "id": 4941, + "type": "message", + "date": "2024-04-27T22:00:04", + "date_unixtime": "1714248004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005521 BTC for 82.70 CZK @ 1,497,974 CZK\nFees are 0.29047404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.84194066682207275441587482 CZK)\nThe limits being 0.10 % (138.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51270655 BTC (314,173.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,497,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.46 % (453,847.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,530.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09224225 BTC (138,176.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.67 CZK over 3250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005521 BTC for 82.70 CZK @ 1,497,974 CZK\nFees are 0.29047404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.84194066682207275441587482 CZK)\nThe limits being 0.10 % (138.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51270655 BTC (314,173.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,497,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.46 % (453,847.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,530.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09224225 BTC (138,176.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.67 CZK over 3250 transactions" + } + ] + }, + { + "id": 4942, + "type": "message", + "date": "2024-04-28T02:00:03", + "date_unixtime": "1714262403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005507 BTC for 82.71 CZK @ 1,501,859 CZK\nFees are 0.29048903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.14502185477757212386029685 CZK)\nThe limits being 0.10 % (138.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51276162 BTC (314,256.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,501,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.05 % (455,839.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,447.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09229732 BTC (138,617.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.66 CZK over 3251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005507 BTC for 82.71 CZK @ 1,501,859 CZK\nFees are 0.29048903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.14502185477757212386029685 CZK)\nThe limits being 0.10 % (138.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51276162 BTC (314,256.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,501,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.05 % (455,839.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,447.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09229732 BTC (138,617.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.66 CZK over 3251 transactions" + } + ] + }, + { + "id": 4943, + "type": "message", + "date": "2024-04-28T06:00:03", + "date_unixtime": "1714276803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005464 BTC for 82.71 CZK @ 1,513,647 CZK\nFees are 0.29048291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (118.06443066069634755661188768 CZK)\nThe limits being 0.10 % (139.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51281626 BTC (314,339.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 612,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,513,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.94 % (461,883.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,364.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09235196 BTC (139,788.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.66 CZK over 3252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005464 BTC for 82.71 CZK @ 1,513,647 CZK\nFees are 0.29048291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (118.06443066069634755661188768 CZK)\nThe limits being 0.10 % (139.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51281626 BTC (314,339.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 612,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,513,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.94 % (461,883.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,364.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09235196 BTC (139,788.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.66 CZK over 3252 transactions" + } + ] + }, + { + "id": 4944, + "type": "message", + "date": "2024-04-28T10:00:03", + "date_unixtime": "1714291203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005476 BTC for 82.71 CZK @ 1,510,330 CZK\nFees are 0.29048305 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (98.17146988644201103296970464 CZK)\nThe limits being 0.10 % (139.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51287102 BTC (314,422.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.36 % (460,182.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,281.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09240672 BTC (139,564.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.66 CZK over 3253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005476 BTC for 82.71 CZK @ 1,510,330 CZK\nFees are 0.29048305 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (98.17146988644201103296970464 CZK)\nThe limits being 0.10 % (139.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51287102 BTC (314,422.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.36 % (460,182.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,281.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09240672 BTC (139,564.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.66 CZK over 3253 transactions" + } + ] + }, + { + "id": 4945, + "type": "message", + "date": "2024-04-28T14:00:04", + "date_unixtime": "1714305604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005510 BTC for 82.71 CZK @ 1,501,092 CZK\nFees are 0.29049886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.08520319462642999953881921 CZK)\nThe limits being 0.10 % (138.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51292612 BTC (314,505.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,501,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.81 % (455,444.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,198.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09246182 BTC (138,793.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.65 CZK over 3254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005510 BTC for 82.71 CZK @ 1,501,092 CZK\nFees are 0.29049886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.08520319462642999953881921 CZK)\nThe limits being 0.10 % (138.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51292612 BTC (314,505.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,501,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.81 % (455,444.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,198.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09246182 BTC (138,793.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.65 CZK over 3254 transactions" + } + ] + }, + { + "id": 4946, + "type": "message", + "date": "2024-04-28T18:00:03", + "date_unixtime": "1714320003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005503 BTC for 82.71 CZK @ 1,502,983 CZK\nFees are 0.29049524 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.23267768552389008088263855 CZK)\nThe limits being 0.10 % (139.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51298115 BTC (314,588.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,502,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.08 % (456,413.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,115.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09251685 BTC (139,051.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.65 CZK over 3255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005503 BTC for 82.71 CZK @ 1,502,983 CZK\nFees are 0.29049524 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.23267768552389008088263855 CZK)\nThe limits being 0.10 % (139.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51298115 BTC (314,588.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,502,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.08 % (456,413.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,115.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09251685 BTC (139,051.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.65 CZK over 3255 transactions" + } + ] + }, + { + "id": 4947, + "type": "message", + "date": "2024-04-28T22:00:04", + "date_unixtime": "1714334404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005484 BTC for 82.71 CZK @ 1,508,165 CZK\nFees are 0.29049035 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.63686413199316615042101006 CZK)\nThe limits being 0.10 % (139.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51303599 BTC (314,671.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,508,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.89 % (459,071.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,032.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09257169 BTC (139,613.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.64 CZK over 3256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005484 BTC for 82.71 CZK @ 1,508,165 CZK\nFees are 0.29049035 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.63686413199316615042101006 CZK)\nThe limits being 0.10 % (139.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51303599 BTC (314,671.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,508,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.89 % (459,071.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,032.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09257169 BTC (139,613.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.64 CZK over 3256 transactions" + } + ] + }, + { + "id": 4948, + "type": "message", + "date": "2024-04-29T02:00:03", + "date_unixtime": "1714348803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005539 BTC for 82.70 CZK @ 1,493,045 CZK\nFees are 0.29046231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.04794782802527316155506639 CZK)\nThe limits being 0.10 % (138.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51309138 BTC (314,754.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.39 % (451,314.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,949.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09262708 BTC (138,296.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.64 CZK over 3257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005539 BTC for 82.70 CZK @ 1,493,045 CZK\nFees are 0.29046231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.04794782802527316155506639 CZK)\nThe limits being 0.10 % (138.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51309138 BTC (314,754.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.39 % (451,314.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,949.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09262708 BTC (138,296.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.64 CZK over 3257 transactions" + } + ] + }, + { + "id": 4949, + "type": "message", + "date": "2024-04-29T06:00:04", + "date_unixtime": "1714363204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005615 BTC for 82.70 CZK @ 1,472,882 CZK\nFees are 0.29047129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.73734586738046401264319317 CZK)\nThe limits being 0.10 % (136.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51314753 BTC (314,837.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,472,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.06 % (440,968.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,866.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09268323 BTC (136,511.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.64 CZK over 3258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005615 BTC for 82.70 CZK @ 1,472,882 CZK\nFees are 0.29047129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.73734586738046401264319317 CZK)\nThe limits being 0.10 % (136.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51314753 BTC (314,837.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,472,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.06 % (440,968.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,866.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09268323 BTC (136,511.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.64 CZK over 3258 transactions" + } + ] + }, + { + "id": 4950, + "type": "message", + "date": "2024-04-29T10:00:05", + "date_unixtime": "1714377605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005608 BTC for 82.71 CZK @ 1,474,778 CZK\nFees are 0.29048256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.86056708261455803404205111 CZK)\nThe limits being 0.10 % (136.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51320361 BTC (314,920.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,474,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.33 % (441,941.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,783.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09273931 BTC (136,769.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.63 CZK over 3259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005608 BTC for 82.71 CZK @ 1,474,778 CZK\nFees are 0.29048256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.86056708261455803404205111 CZK)\nThe limits being 0.10 % (136.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51320361 BTC (314,920.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,474,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.33 % (441,941.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,783.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09273931 BTC (136,769.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.63 CZK over 3259 transactions" + } + ] + }, + { + "id": 4951, + "type": "message", + "date": "2024-04-29T14:00:03", + "date_unixtime": "1714392003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005635 BTC for 82.71 CZK @ 1,467,745 CZK\nFees are 0.29048927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.40345611919948326376758541 CZK)\nThe limits being 0.10 % (136.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51325996 BTC (315,003.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,467,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.15 % (438,331.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,700.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09279566 BTC (136,200.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.63 CZK over 3260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005635 BTC for 82.71 CZK @ 1,467,745 CZK\nFees are 0.29048927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.40345611919948326376758541 CZK)\nThe limits being 0.10 % (136.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51325996 BTC (315,003.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,467,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.15 % (438,331.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,700.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09279566 BTC (136,200.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.63 CZK over 3260 transactions" + } + ] + }, + { + "id": 4952, + "type": "message", + "date": "2024-04-29T18:00:04", + "date_unixtime": "1714406404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005568 BTC for 82.70 CZK @ 1,485,354 CZK\nFees are 0.29047896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.54802547495404016975070014 CZK)\nThe limits being 0.10 % (137.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51331564 BTC (315,086.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.98 % (447,369.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,617.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09285134 BTC (137,917.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.62 CZK over 3261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005568 BTC for 82.70 CZK @ 1,485,354 CZK\nFees are 0.29047896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.54802547495404016975070014 CZK)\nThe limits being 0.10 % (137.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51331564 BTC (315,086.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.98 % (447,369.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,617.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09285134 BTC (137,917.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.62 CZK over 3261 transactions" + } + ] + }, + { + "id": 4953, + "type": "message", + "date": "2024-04-29T22:00:03", + "date_unixtime": "1714420803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005585 BTC for 82.70 CZK @ 1,480,784 CZK\nFees are 0.29046933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (115.50114267208904911591881414 CZK)\nThe limits being 0.10 % (137.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51337149 BTC (315,169.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 613,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.20 % (445,022.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,534.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09290719 BTC (137,575.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.62 CZK over 3262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005585 BTC for 82.70 CZK @ 1,480,784 CZK\nFees are 0.29046933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (115.50114267208904911591881414 CZK)\nThe limits being 0.10 % (137.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51337149 BTC (315,169.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 613,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.20 % (445,022.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,534.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09290719 BTC (137,575.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.62 CZK over 3262 transactions" + } + ] + }, + { + "id": 4954, + "type": "message", + "date": "2024-04-30T02:00:04", + "date_unixtime": "1714435204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005509 BTC for 82.70 CZK @ 1,501,245 CZK\nFees are 0.29047562 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.09708873073847632397156332 CZK)\nThe limits being 0.10 % (139.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51342658 BTC (315,252.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,501,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.50 % (455,526.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,451.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09296228 BTC (139,559.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.61 CZK over 3263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005509 BTC for 82.70 CZK @ 1,501,245 CZK\nFees are 0.29047562 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (117.09708873073847632397156332 CZK)\nThe limits being 0.10 % (139.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51342658 BTC (315,252.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,501,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.50 % (455,526.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,451.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09296228 BTC (139,559.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.61 CZK over 3263 transactions" + } + ] + }, + { + "id": 4955, + "type": "message", + "date": "2024-04-30T06:00:03", + "date_unixtime": "1714449603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005539 BTC for 82.70 CZK @ 1,492,980 CZK\nFees are 0.29044963 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.04371230482083244840926410 CZK)\nThe limits being 0.10 % (138.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51348197 BTC (315,335.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.11 % (451,283.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,368.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09301767 BTC (138,873.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.61 CZK over 3264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005539 BTC for 82.70 CZK @ 1,492,980 CZK\nFees are 0.29044963 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.04371230482083244840926410 CZK)\nThe limits being 0.10 % (138.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51348197 BTC (315,335.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.11 % (451,283.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,368.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09301767 BTC (138,873.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.61 CZK over 3264 transactions" + } + ] + }, + { + "id": 4956, + "type": "message", + "date": "2024-04-30T10:00:03", + "date_unixtime": "1714464003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,708 CZK\nFees are 0.29046410 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.568817448454219754668185166 CZK)\nThe limits being 0.10 % (138.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51353741 BTC (315,418.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.87 % (450,629.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,285.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09307311 BTC (138,837.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.61 CZK over 3265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,708 CZK\nFees are 0.29046410 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (77.568817448454219754668185166 CZK)\nThe limits being 0.10 % (138.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51353741 BTC (315,418.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.87 % (450,629.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,285.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09307311 BTC (138,837.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.61 CZK over 3265 transactions" + } + ] + }, + { + "id": 4957, + "type": "message", + "date": "2024-04-30T14:00:04", + "date_unixtime": "1714478404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005725 BTC for 82.70 CZK @ 1,444,598 CZK\nFees are 0.29047443 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (93.89886707615050380437029349 CZK)\nThe limits being 0.10 % (134.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51359466 BTC (315,501.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.16 % (426,436.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,202.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09313036 BTC (134,535.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.60 CZK over 3266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005725 BTC for 82.70 CZK @ 1,444,598 CZK\nFees are 0.29047443 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (93.89886707615050380437029349 CZK)\nThe limits being 0.10 % (134.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51359466 BTC (315,501.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.16 % (426,436.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,202.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09313036 BTC (134,535.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.60 CZK over 3266 transactions" + } + ] + }, + { + "id": 4958, + "type": "message", + "date": "2024-04-30T18:00:04", + "date_unixtime": "1714492804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005745 BTC for 82.71 CZK @ 1,439,687 CZK\nFees are 0.29049821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (74.863711017357438694768484369 CZK)\nThe limits being 0.10 % (134.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51365211 BTC (315,584.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.33 % (423,913.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,119.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09318781 BTC (134,161.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.60 CZK over 3267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005745 BTC for 82.71 CZK @ 1,439,687 CZK\nFees are 0.29049821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (74.863711017357438694768484369 CZK)\nThe limits being 0.10 % (134.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51365211 BTC (315,584.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.33 % (423,913.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,119.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09318781 BTC (134,161.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.60 CZK over 3267 transactions" + } + ] + }, + { + "id": 4959, + "type": "message", + "date": "2024-04-30T22:00:04", + "date_unixtime": "1714507204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005891 BTC for 82.70 CZK @ 1,403,868 CZK\nFees are 0.29046957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (109.50168347805258407659425249 CZK)\nThe limits being 0.10 % (130.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51371102 BTC (315,667.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.46 % (405,515.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,036.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09324672 BTC (130,906.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.59 CZK over 3268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005891 BTC for 82.70 CZK @ 1,403,868 CZK\nFees are 0.29046957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (109.50168347805258407659425249 CZK)\nThe limits being 0.10 % (130.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51371102 BTC (315,667.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.46 % (405,515.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,036.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09324672 BTC (130,906.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.59 CZK over 3268 transactions" + } + ] + }, + { + "id": 4960, + "type": "message", + "date": "2024-05-01T02:00:03", + "date_unixtime": "1714521603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,439,088 CZK\nFees are 0.29047854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (112.24888450957580259590823106 CZK)\nThe limits being 0.10 % (134.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51376849 BTC (315,750.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.16 % (423,608.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,953.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09330419 BTC (134,272.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.59 CZK over 3269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,439,088 CZK\nFees are 0.29047854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (112.24888450957580259590823106 CZK)\nThe limits being 0.10 % (134.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51376849 BTC (315,750.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.16 % (423,608.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,953.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09330419 BTC (134,272.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.59 CZK over 3269 transactions" + } + ] + }, + { + "id": 4961, + "type": "message", + "date": "2024-05-01T06:00:04", + "date_unixtime": "1714536004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005791 BTC for 82.70 CZK @ 1,428,132 CZK\nFees are 0.29047405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (92.82858233275574859430432443 CZK)\nThe limits being 0.10 % (133.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51382640 BTC (315,833.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.34 % (417,978.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,870.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09336210 BTC (133,333.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.59 CZK over 3270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005791 BTC for 82.70 CZK @ 1,428,132 CZK\nFees are 0.29047405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (92.82858233275574859430432443 CZK)\nThe limits being 0.10 % (133.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51382640 BTC (315,833.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.34 % (417,978.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,870.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09336210 BTC (133,333.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.59 CZK over 3270 transactions" + } + ] + }, + { + "id": 4962, + "type": "message", + "date": "2024-05-01T10:00:04", + "date_unixtime": "1714550404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006072 BTC for 82.70 CZK @ 1,362,033 CZK\nFees are 0.29047231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (70.825704211806765910879773227 CZK)\nThe limits being 0.10 % (127.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51388712 BTC (315,916.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,362,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.56 % (384,014.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,787.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09342282 BTC (127,244.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.58 CZK over 3271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006072 BTC for 82.70 CZK @ 1,362,033 CZK\nFees are 0.29047231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (70.825704211806765910879773227 CZK)\nThe limits being 0.10 % (127.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51388712 BTC (315,916.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,362,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.56 % (384,014.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,787.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09342282 BTC (127,244.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.58 CZK over 3271 transactions" + } + ] + }, + { + "id": 4963, + "type": "message", + "date": "2024-05-01T14:00:04", + "date_unixtime": "1714564804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006028 BTC for 82.70 CZK @ 1,371,899 CZK\nFees are 0.29045636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.338763206018484078122060516 CZK)\nThe limits being 0.10 % (128.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51394740 BTC (315,999.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,371,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.13 % (389,084.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,704.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09348310 BTC (128,249.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.58 CZK over 3272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006028 BTC for 82.70 CZK @ 1,371,899 CZK\nFees are 0.29045636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.338763206018484078122060516 CZK)\nThe limits being 0.10 % (128.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51394740 BTC (315,999.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,371,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.13 % (389,084.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,704.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09348310 BTC (128,249.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.58 CZK over 3272 transactions" + } + ] + }, + { + "id": 4964, + "type": "message", + "date": "2024-05-01T18:00:03", + "date_unixtime": "1714579203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006148 BTC for 82.71 CZK @ 1,345,255 CZK\nFees are 0.29048514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (69.953264112366638690413092241 CZK)\nThe limits being 0.10 % (125.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51400888 BTC (316,082.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 614,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,255 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.76 % (375,390.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,621.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09354458 BTC (125,841.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.57 CZK over 3273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006148 BTC for 82.71 CZK @ 1,345,255 CZK\nFees are 0.29048514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (69.953264112366638690413092241 CZK)\nThe limits being 0.10 % (125.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51400888 BTC (316,082.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 614,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,255 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.76 % (375,390.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,621.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09354458 BTC (125,841.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.57 CZK over 3273 transactions" + } + ] + }, + { + "id": 4965, + "type": "message", + "date": "2024-05-01T22:00:04", + "date_unixtime": "1714593604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006120 BTC for 82.71 CZK @ 1,351,444 CZK\nFees are 0.29049258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (87.84388992610829417300884811 CZK)\nThe limits being 0.10 % (126.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51407008 BTC (316,165.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,351,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.74 % (378,572.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,538.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09360578 BTC (126,503.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.57 CZK over 3274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006120 BTC for 82.71 CZK @ 1,351,444 CZK\nFees are 0.29049258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (87.84388992610829417300884811 CZK)\nThe limits being 0.10 % (126.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51407008 BTC (316,165.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,351,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.74 % (378,572.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,538.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09360578 BTC (126,503.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.57 CZK over 3274 transactions" + } + ] + }, + { + "id": 4966, + "type": "message", + "date": "2024-05-02T02:00:04", + "date_unixtime": "1714608004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006011 BTC for 82.71 CZK @ 1,375,933 CZK\nFees are 0.29048890 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (107.32279875733551766952415837 CZK)\nThe limits being 0.10 % (128.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51413019 BTC (316,248.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,375,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.69 % (391,160.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,455.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09366589 BTC (128,878.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.56 CZK over 3275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006011 BTC for 82.71 CZK @ 1,375,933 CZK\nFees are 0.29048890 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (107.32279875733551766952415837 CZK)\nThe limits being 0.10 % (128.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51413019 BTC (316,248.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,375,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.69 % (391,160.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,455.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09366589 BTC (128,878.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.56 CZK over 3275 transactions" + } + ] + }, + { + "id": 4967, + "type": "message", + "date": "2024-05-02T06:00:04", + "date_unixtime": "1714622404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006111 BTC for 82.71 CZK @ 1,353,458 CZK\nFees are 0.29049766 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (70.379840197012958327738042036 CZK)\nThe limits being 0.10 % (126.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51419130 BTC (316,331.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,353,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.00 % (379,605.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,372.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09372700 BTC (126,855.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.56 CZK over 3276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006111 BTC for 82.71 CZK @ 1,353,458 CZK\nFees are 0.29049766 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (70.379840197012958327738042036 CZK)\nThe limits being 0.10 % (126.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51419130 BTC (316,331.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,353,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.00 % (379,605.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,372.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09372700 BTC (126,855.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.56 CZK over 3276 transactions" + } + ] + }, + { + "id": 4968, + "type": "message", + "date": "2024-05-02T10:00:03", + "date_unixtime": "1714636803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006088 BTC for 82.70 CZK @ 1,358,450 CZK\nFees are 0.29047160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (70.639393211146008680524864680 CZK)\nThe limits being 0.10 % (127.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51425218 BTC (316,414.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,358,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.78 % (382,171.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,289.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09378788 BTC (127,406.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.56 CZK over 3277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006088 BTC for 82.70 CZK @ 1,358,450 CZK\nFees are 0.29047160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (70.639393211146008680524864680 CZK)\nThe limits being 0.10 % (127.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51425218 BTC (316,414.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,358,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.78 % (382,171.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,289.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09378788 BTC (127,406.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.56 CZK over 3277 transactions" + } + ] + }, + { + "id": 4969, + "type": "message", + "date": "2024-05-02T14:00:04", + "date_unixtime": "1714651204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005978 BTC for 82.71 CZK @ 1,383,545 CZK\nFees are 0.29049235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.944352143876492497069890710 CZK)\nThe limits being 0.10 % (129.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51431196 BTC (316,497.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,383,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.83 % (395,076.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,206.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09384766 BTC (129,842.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.55 CZK over 3278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005978 BTC for 82.71 CZK @ 1,383,545 CZK\nFees are 0.29049235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (71.944352143876492497069890710 CZK)\nThe limits being 0.10 % (129.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51431196 BTC (316,497.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,383,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.83 % (395,076.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,206.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09384766 BTC (129,842.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.55 CZK over 3278 transactions" + } + ] + }, + { + "id": 4970, + "type": "message", + "date": "2024-05-02T18:00:04", + "date_unixtime": "1714665604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005942 BTC for 82.71 CZK @ 1,391,897 CZK\nFees are 0.29048597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.378643399062554032947960497 CZK)\nThe limits being 0.10 % (130.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51437138 BTC (316,580.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,391,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.15 % (399,371.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,123.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09390708 BTC (130,708.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.55 CZK over 3279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005942 BTC for 82.71 CZK @ 1,391,897 CZK\nFees are 0.29048597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.378643399062554032947960497 CZK)\nThe limits being 0.10 % (130.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51437138 BTC (316,580.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,391,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.15 % (399,371.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,123.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09390708 BTC (130,708.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.55 CZK over 3279 transactions" + } + ] + }, + { + "id": 4971, + "type": "message", + "date": "2024-05-02T22:00:04", + "date_unixtime": "1714680004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005948 BTC for 82.70 CZK @ 1,390,371 CZK\nFees are 0.29046054 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (108.44895334855242696292632813 CZK)\nThe limits being 0.10 % (130.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51443086 BTC (316,663.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,390,371 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.87 % (398,586.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,040.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09396656 BTC (130,648.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.54 CZK over 3280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005948 BTC for 82.70 CZK @ 1,390,371 CZK\nFees are 0.29046054 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (108.44895334855242696292632813 CZK)\nThe limits being 0.10 % (130.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51443086 BTC (316,663.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,390,371 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.87 % (398,586.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,040.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09396656 BTC (130,648.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.54 CZK over 3280 transactions" + } + ] + }, + { + "id": 4972, + "type": "message", + "date": "2024-05-03T02:00:05", + "date_unixtime": "1714694405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005977 BTC for 82.71 CZK @ 1,383,782 CZK\nFees are 0.29049342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (89.94581839836296569168692577 CZK)\nThe limits being 0.10 % (130.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51449063 BTC (316,746.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,383,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.77 % (395,196.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,957.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09402633 BTC (130,111.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.54 CZK over 3281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005977 BTC for 82.71 CZK @ 1,383,782 CZK\nFees are 0.29049342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (89.94581839836296569168692577 CZK)\nThe limits being 0.10 % (130.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51449063 BTC (316,746.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,383,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.77 % (395,196.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,957.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09402633 BTC (130,111.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.54 CZK over 3281 transactions" + } + ] + }, + { + "id": 4973, + "type": "message", + "date": "2024-05-03T06:00:06", + "date_unixtime": "1714708806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005920 BTC for 82.70 CZK @ 1,397,042 CZK\nFees are 0.29048019 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.646172233668646224700036359 CZK)\nThe limits being 0.10 % (131.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51454983 BTC (316,829.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,397,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.89 % (402,018.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,874.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09408553 BTC (131,441.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.54 CZK over 3282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005920 BTC for 82.70 CZK @ 1,397,042 CZK\nFees are 0.29048019 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.646172233668646224700036359 CZK)\nThe limits being 0.10 % (131.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51454983 BTC (316,829.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,397,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.89 % (402,018.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,874.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09408553 BTC (131,441.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.54 CZK over 3282 transactions" + } + ] + }, + { + "id": 4974, + "type": "message", + "date": "2024-05-03T10:00:05", + "date_unixtime": "1714723205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005954 BTC for 82.70 CZK @ 1,388,941 CZK\nFees are 0.29045439 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.224913370887483328002645762 CZK)\nThe limits being 0.10 % (130.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51460937 BTC (316,912.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,388,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.54 % (397,849.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,791.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09414507 BTC (130,761.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.53 CZK over 3283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005954 BTC for 82.70 CZK @ 1,388,941 CZK\nFees are 0.29045439 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.224913370887483328002645762 CZK)\nThe limits being 0.10 % (130.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51460937 BTC (316,912.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,388,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.54 % (397,849.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,791.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09414507 BTC (130,761.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.53 CZK over 3283 transactions" + } + ] + }, + { + "id": 4975, + "type": "message", + "date": "2024-05-03T14:00:07", + "date_unixtime": "1714737607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005951 BTC for 82.71 CZK @ 1,389,804 CZK\nFees are 0.29048845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.269796909941402369475278804 CZK)\nThe limits being 0.10 % (130.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51466888 BTC (316,995.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 615,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,389,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.65 % (398,293.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,708.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09420458 BTC (130,925.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.53 CZK over 3284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005951 BTC for 82.71 CZK @ 1,389,804 CZK\nFees are 0.29048845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (72.269796909941402369475278804 CZK)\nThe limits being 0.10 % (130.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51466888 BTC (316,995.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 615,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,389,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.65 % (398,293.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,708.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09420458 BTC (130,925.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.53 CZK over 3284 transactions" + } + ] + }, + { + "id": 4976, + "type": "message", + "date": "2024-05-03T18:00:08", + "date_unixtime": "1714752008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005726 BTC for 82.70 CZK @ 1,444,275 CZK\nFees are 0.29046025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.102307952205701281978322113 CZK)\nThe limits being 0.10 % (136.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51472614 BTC (317,078.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.46 % (426,328.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,625.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09426184 BTC (136,140.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.52 CZK over 3285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005726 BTC for 82.70 CZK @ 1,444,275 CZK\nFees are 0.29046025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (75.102307952205701281978322113 CZK)\nThe limits being 0.10 % (136.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51472614 BTC (317,078.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.46 % (426,328.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,625.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09426184 BTC (136,140.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.52 CZK over 3285 transactions" + } + ] + }, + { + "id": 4977, + "type": "message", + "date": "2024-05-03T22:00:07", + "date_unixtime": "1714766407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005700 BTC for 82.71 CZK @ 1,450,989 CZK\nFees are 0.29048543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (113.17712928329793092596963261 CZK)\nThe limits being 0.10 % (136.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51478314 BTC (317,161.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,450,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.51 % (429,783.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,542.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09431884 BTC (136,855.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.52 CZK over 3286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005700 BTC for 82.71 CZK @ 1,450,989 CZK\nFees are 0.29048543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (113.17712928329793092596963261 CZK)\nThe limits being 0.10 % (136.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51478314 BTC (317,161.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,450,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.51 % (429,783.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,542.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09431884 BTC (136,855.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.52 CZK over 3286 transactions" + } + ] + }, + { + "id": 4978, + "type": "message", + "date": "2024-05-04T02:00:05", + "date_unixtime": "1714780805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005614 BTC for 82.71 CZK @ 1,473,260 CZK\nFees are 0.29049408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.76191191002492345547264304 CZK)\nThe limits being 0.10 % (139.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51483928 BTC (317,244.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,473,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.09 % (441,248.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,459.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09437498 BTC (139,038.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.51 CZK over 3287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005614 BTC for 82.71 CZK @ 1,473,260 CZK\nFees are 0.29049408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.76191191002492345547264304 CZK)\nThe limits being 0.10 % (139.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51483928 BTC (317,244.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,473,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.09 % (441,248.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,459.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09437498 BTC (139,038.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.51 CZK over 3287 transactions" + } + ] + }, + { + "id": 4979, + "type": "message", + "date": "2024-05-04T06:00:05", + "date_unixtime": "1714795205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005630 BTC for 82.70 CZK @ 1,468,963 CZK\nFees are 0.29047217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.48256270637139461263906699 CZK)\nThe limits being 0.10 % (138.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51489558 BTC (317,327.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,468,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.35 % (439,035.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,376.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09443128 BTC (138,716.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.51 CZK over 3288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005630 BTC for 82.70 CZK @ 1,468,963 CZK\nFees are 0.29047217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.48256270637139461263906699 CZK)\nThe limits being 0.10 % (138.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51489558 BTC (317,327.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,468,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.35 % (439,035.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,376.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09443128 BTC (138,716.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.51 CZK over 3288 transactions" + } + ] + }, + { + "id": 4980, + "type": "message", + "date": "2024-05-04T10:00:04", + "date_unixtime": "1714809604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005600 BTC for 82.71 CZK @ 1,476,882 CZK\nFees are 0.29048205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.797873584596768453270695420 CZK)\nThe limits being 0.10 % (139.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51495158 BTC (317,410.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,476,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.60 % (443,112.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,293.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09448728 BTC (139,546.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.51 CZK over 3289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005600 BTC for 82.71 CZK @ 1,476,882 CZK\nFees are 0.29048205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.06 % (76.797873584596768453270695420 CZK)\nThe limits being 0.10 % (139.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51495158 BTC (317,410.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,476,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.60 % (443,112.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,293.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09448728 BTC (139,546.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.51 CZK over 3289 transactions" + } + ] + }, + { + "id": 4981, + "type": "message", + "date": "2024-05-04T14:00:06", + "date_unixtime": "1714824006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005540 BTC for 82.70 CZK @ 1,492,810 CZK\nFees are 0.29046891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.03263477827603388141504734 CZK)\nThe limits being 0.10 % (141.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51500698 BTC (317,493.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.15 % (451,314.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,210.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09454268 BTC (141,134.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.50 CZK over 3290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005540 BTC for 82.70 CZK @ 1,492,810 CZK\nFees are 0.29046891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.03263477827603388141504734 CZK)\nThe limits being 0.10 % (141.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51500698 BTC (317,493.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.15 % (451,314.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,210.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09454268 BTC (141,134.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.50 CZK over 3290 transactions" + } + ] + }, + { + "id": 4982, + "type": "message", + "date": "2024-05-04T18:00:05", + "date_unixtime": "1714838405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005552 BTC for 82.71 CZK @ 1,489,650 CZK\nFees are 0.29048191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.19269322680416812051192584 CZK)\nThe limits being 0.10 % (140.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51506250 BTC (317,576.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,489,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.60 % (449,686.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,127.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09459820 BTC (140,918.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.50 CZK over 3291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005552 BTC for 82.71 CZK @ 1,489,650 CZK\nFees are 0.29048191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.19269322680416812051192584 CZK)\nThe limits being 0.10 % (140.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51506250 BTC (317,576.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,489,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.60 % (449,686.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,127.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09459820 BTC (140,918.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.50 CZK over 3291 transactions" + } + ] + }, + { + "id": 4983, + "type": "message", + "date": "2024-05-04T22:00:06", + "date_unixtime": "1714852806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005529 BTC for 82.70 CZK @ 1,495,681 CZK\nFees are 0.29044972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (136.10696196500888597270738886 CZK)\nThe limits being 0.10 % (141.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51511779 BTC (317,659.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,495,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.54 % (452,792.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,044.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09465349 BTC (141,571.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.49 CZK over 3292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005529 BTC for 82.70 CZK @ 1,495,681 CZK\nFees are 0.29044972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (136.10696196500888597270738886 CZK)\nThe limits being 0.10 % (141.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51511779 BTC (317,659.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,495,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.54 % (452,792.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,044.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09465349 BTC (141,571.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.49 CZK over 3292 transactions" + } + ] + }, + { + "id": 4984, + "type": "message", + "date": "2024-05-05T02:00:06", + "date_unixtime": "1714867206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005532 BTC for 82.71 CZK @ 1,495,029 CZK\nFees are 0.29048071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (136.04766461311656490785504530 CZK)\nThe limits being 0.10 % (141.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51517311 BTC (317,742.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,495,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.40 % (452,456.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,961.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09470881 BTC (141,592.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.49 CZK over 3293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005532 BTC for 82.71 CZK @ 1,495,029 CZK\nFees are 0.29048071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (136.04766461311656490785504530 CZK)\nThe limits being 0.10 % (141.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51517311 BTC (317,742.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,495,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.40 % (452,456.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,961.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09470881 BTC (141,592.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.49 CZK over 3293 transactions" + } + ] + }, + { + "id": 4985, + "type": "message", + "date": "2024-05-05T06:00:06", + "date_unixtime": "1714881606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005588 BTC for 82.70 CZK @ 1,479,984 CZK\nFees are 0.29046834 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (134.67853419706046731928586383 CZK)\nThe limits being 0.10 % (140.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51522899 BTC (317,825.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,479,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.92 % (444,705.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,878.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09476469 BTC (140,250.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.49 CZK over 3294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005588 BTC for 82.70 CZK @ 1,479,984 CZK\nFees are 0.29046834 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (134.67853419706046731928586383 CZK)\nThe limits being 0.10 % (140.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51522899 BTC (317,825.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,479,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.92 % (444,705.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,878.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09476469 BTC (140,250.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.49 CZK over 3294 transactions" + } + ] + }, + { + "id": 4986, + "type": "message", + "date": "2024-05-05T10:00:06", + "date_unixtime": "1714896006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005540 BTC for 82.70 CZK @ 1,492,702 CZK\nFees are 0.29044804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.43079493721433466621337953 CZK)\nThe limits being 0.10 % (141.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51528439 BTC (317,908.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 616,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.95 % (451,258.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,795.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09482009 BTC (141,538.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.48 CZK over 3295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005540 BTC for 82.70 CZK @ 1,492,702 CZK\nFees are 0.29044804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.43079493721433466621337953 CZK)\nThe limits being 0.10 % (141.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51528439 BTC (317,908.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 616,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.95 % (451,258.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,795.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09482009 BTC (141,538.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.48 CZK over 3295 transactions" + } + ] + }, + { + "id": 4987, + "type": "message", + "date": "2024-05-05T14:00:06", + "date_unixtime": "1714910406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005537 BTC for 82.71 CZK @ 1,493,712 CZK\nFees are 0.29048708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (1165.0953662182361733931240657 CZK)\nThe limits being 0.10 % (141.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51533976 BTC (317,991.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.07 % (451,778.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,712.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09487546 BTC (141,716.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.48 CZK over 3296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005537 BTC for 82.71 CZK @ 1,493,712 CZK\nFees are 0.29048708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (1165.0953662182361733931240657 CZK)\nThe limits being 0.10 % (141.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51533976 BTC (317,991.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.07 % (451,778.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,712.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09487546 BTC (141,716.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.48 CZK over 3296 transactions" + } + ] + }, + { + "id": 4988, + "type": "message", + "date": "2024-05-05T18:00:04", + "date_unixtime": "1714924804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (957.8804185351270553064275037 CZK)\nThe limits being 0.10 % (142.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51539476 BTC (318,074.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.66 % (456,944.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,629.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09493046 BTC (142,750.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.47 CZK over 3297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (957.8804185351270553064275037 CZK)\nThe limits being 0.10 % (142.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51539476 BTC (318,074.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.66 % (456,944.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,629.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09493046 BTC (142,750.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.47 CZK over 3297 transactions" + } + ] + }, + { + "id": 4989, + "type": "message", + "date": "2024-05-05T22:00:06", + "date_unixtime": "1714939206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005541 BTC for 82.71 CZK @ 1,492,656 CZK\nFees are 0.29049149 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.42719800352259242084215802 CZK)\nThe limits being 0.10 % (141.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51545017 BTC (318,156.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.83 % (451,232.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,546.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09498587 BTC (141,781.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.47 CZK over 3298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005541 BTC for 82.71 CZK @ 1,492,656 CZK\nFees are 0.29049149 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (116.42719800352259242084215802 CZK)\nThe limits being 0.10 % (141.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51545017 BTC (318,156.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.83 % (451,232.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,546.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09498587 BTC (141,781.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.47 CZK over 3298 transactions" + } + ] + }, + { + "id": 4990, + "type": "message", + "date": "2024-05-06T02:00:06", + "date_unixtime": "1714953606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005537 BTC for 82.71 CZK @ 1,493,712 CZK\nFees are 0.29048708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.09128051818634778276033881 CZK)\nThe limits being 0.10 % (141.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51550554 BTC (318,239.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.96 % (451,776.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,463.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09504124 BTC (141,964.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.47 CZK over 3299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005537 BTC for 82.71 CZK @ 1,493,712 CZK\nFees are 0.29048708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.09128051818634778276033881 CZK)\nThe limits being 0.10 % (141.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51550554 BTC (318,239.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.96 % (451,776.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,463.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09504124 BTC (141,964.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.47 CZK over 3299 transactions" + } + ] + }, + { + "id": 4991, + "type": "message", + "date": "2024-05-06T06:00:06", + "date_unixtime": "1714968006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005550 BTC for 82.70 CZK @ 1,490,076 CZK\nFees are 0.29046032 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.85493817584400544041799647 CZK)\nThe limits being 0.10 % (141.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51556104 BTC (318,322.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.34 % (449,902.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,380.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09509674 BTC (141,701.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.46 CZK over 3300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005550 BTC for 82.70 CZK @ 1,490,076 CZK\nFees are 0.29046032 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.85493817584400544041799647 CZK)\nThe limits being 0.10 % (141.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51556104 BTC (318,322.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.34 % (449,902.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,380.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09509674 BTC (141,701.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.46 CZK over 3300 transactions" + } + ] + }, + { + "id": 4992, + "type": "message", + "date": "2024-05-06T10:00:07", + "date_unixtime": "1714982407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.74289985052316890881913303 CZK)\nThe limits being 0.10 % (143.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51561604 BTC (318,405.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.51 % (456,944.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,297.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09515174 BTC (143,083.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.46 CZK over 3301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.74289985052316890881913303 CZK)\nThe limits being 0.10 % (143.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51561604 BTC (318,405.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.51 % (456,944.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,297.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09515174 BTC (143,083.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.46 CZK over 3301 transactions" + } + ] + }, + { + "id": 4993, + "type": "message", + "date": "2024-05-06T14:00:07", + "date_unixtime": "1714996807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005532 BTC for 82.70 CZK @ 1,494,999 CZK\nFees are 0.29047486 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.17494843427612899320923406 CZK)\nThe limits being 0.10 % (142.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51567136 BTC (318,488.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,494,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.06 % (452,439.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,214.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09520706 BTC (142,334.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.45 CZK over 3302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005532 BTC for 82.70 CZK @ 1,494,999 CZK\nFees are 0.29047486 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (97.17494843427612899320923406 CZK)\nThe limits being 0.10 % (142.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51567136 BTC (318,488.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,494,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.06 % (452,439.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,214.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09520706 BTC (142,334.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.45 CZK over 3302 transactions" + } + ] + }, + { + "id": 4994, + "type": "message", + "date": "2024-05-06T18:00:06", + "date_unixtime": "1715011206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005581 BTC for 82.70 CZK @ 1,481,748 CZK\nFees are 0.29045033 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.31363800609352662563307586 CZK)\nThe limits being 0.10 % (141.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51572717 BTC (318,571.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,481,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.88 % (445,605.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,131.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09526287 BTC (141,155.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.45 CZK over 3303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005581 BTC for 82.70 CZK @ 1,481,748 CZK\nFees are 0.29045033 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.31363800609352662563307586 CZK)\nThe limits being 0.10 % (141.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51572717 BTC (318,571.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,481,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.88 % (445,605.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,131.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09526287 BTC (141,155.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.45 CZK over 3303 transactions" + } + ] + }, + { + "id": 4995, + "type": "message", + "date": "2024-05-06T22:00:05", + "date_unixtime": "1715025605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005613 BTC for 82.71 CZK @ 1,473,548 CZK\nFees are 0.29049905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.93673606194460489302939445 CZK)\nThe limits being 0.10 % (140.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51578330 BTC (318,654.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,473,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.51 % (441,376.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,048.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09531900 BTC (140,457.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.45 CZK over 3304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005613 BTC for 82.71 CZK @ 1,473,548 CZK\nFees are 0.29049905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.93673606194460489302939445 CZK)\nThe limits being 0.10 % (140.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51578330 BTC (318,654.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,473,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.51 % (441,376.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,048.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09531900 BTC (140,457.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.45 CZK over 3304 transactions" + } + ] + }, + { + "id": 4996, + "type": "message", + "date": "2024-05-07T02:00:05", + "date_unixtime": "1715040005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005616 BTC for 82.70 CZK @ 1,472,515 CZK\nFees are 0.29045065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.85619591153186070973813874 CZK)\nThe limits being 0.10 % (140.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51583946 BTC (318,737.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,472,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.31 % (440,843.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,965.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09537516 BTC (140,441.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.44 CZK over 3305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005616 BTC for 82.70 CZK @ 1,472,515 CZK\nFees are 0.29045065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.85619591153186070973813874 CZK)\nThe limits being 0.10 % (140.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51583946 BTC (318,737.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,472,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.31 % (440,843.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,965.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09537516 BTC (140,441.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.44 CZK over 3305 transactions" + } + ] + }, + { + "id": 4997, + "type": "message", + "date": "2024-05-07T06:00:05", + "date_unixtime": "1715054405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005615 BTC for 82.70 CZK @ 1,472,925 CZK\nFees are 0.29047979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.88817738733666361856387772 CZK)\nThe limits being 0.10 % (140.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51589561 BTC (318,820.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 617,995 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,472,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.34 % (441,054.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,882.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09543131 BTC (140,563.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.44 CZK over 3306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005615 BTC for 82.70 CZK @ 1,472,925 CZK\nFees are 0.29047979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.88817738733666361856387772 CZK)\nThe limits being 0.10 % (140.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51589561 BTC (318,820.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 617,995 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,472,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.34 % (441,054.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,882.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09543131 BTC (140,563.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.44 CZK over 3306 transactions" + } + ] + }, + { + "id": 4998, + "type": "message", + "date": "2024-05-07T10:00:06", + "date_unixtime": "1715068806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005565 BTC for 82.70 CZK @ 1,486,114 CZK\nFees are 0.29047098 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.59741822399678394263384533 CZK)\nThe limits being 0.10 % (141.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51595126 BTC (318,903.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,486,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.44 % (447,858.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,799.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09548696 BTC (141,904.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.43 CZK over 3307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005565 BTC for 82.70 CZK @ 1,486,114 CZK\nFees are 0.29047098 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.59741822399678394263384533 CZK)\nThe limits being 0.10 % (141.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51595126 BTC (318,903.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,486,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.44 % (447,858.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,799.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09548696 BTC (141,904.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.43 CZK over 3307 transactions" + } + ] + }, + { + "id": 4999, + "type": "message", + "date": "2024-05-07T14:00:05", + "date_unixtime": "1715083205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005586 BTC for 82.70 CZK @ 1,480,500 CZK\nFees are 0.29046567 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (115.47901367126978239962494321 CZK)\nThe limits being 0.10 % (141.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51600712 BTC (318,986.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.49 % (444,961.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,716.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09554282 BTC (141,451.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.43 CZK over 3308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005586 BTC for 82.70 CZK @ 1,480,500 CZK\nFees are 0.29046567 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (115.47901367126978239962494321 CZK)\nThe limits being 0.10 % (141.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51600712 BTC (318,986.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.49 % (444,961.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,716.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09554282 BTC (141,451.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.43 CZK over 3308 transactions" + } + ] + }, + { + "id": 5000, + "type": "message", + "date": "2024-05-07T18:00:07", + "date_unixtime": "1715097607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005565 BTC for 82.70 CZK @ 1,485,998 CZK\nFees are 0.29044825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.58985944253513421801771070 CZK)\nThe limits being 0.10 % (142.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51606277 BTC (319,069.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.34 % (447,798.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,633.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09559847 BTC (142,059.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.42 CZK over 3309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005565 BTC for 82.70 CZK @ 1,485,998 CZK\nFees are 0.29044825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (96.58985944253513421801771070 CZK)\nThe limits being 0.10 % (142.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51606277 BTC (319,069.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.34 % (447,798.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,633.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09559847 BTC (142,059.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.42 CZK over 3309 transactions" + } + ] + }, + { + "id": 5001, + "type": "message", + "date": "2024-05-07T22:00:05", + "date_unixtime": "1715112005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005614 BTC for 82.70 CZK @ 1,473,127 CZK\nFees are 0.29046779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.90389444709814189701914336 CZK)\nThe limits being 0.10 % (140.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51611891 BTC (319,152.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,371 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,473,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.23 % (441,155.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,550.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09565461 BTC (140,911.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.42 CZK over 3310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005614 BTC for 82.70 CZK @ 1,473,127 CZK\nFees are 0.29046779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (114.90389444709814189701914336 CZK)\nThe limits being 0.10 % (140.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51611891 BTC (319,152.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,371 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,473,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.23 % (441,155.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,550.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09565461 BTC (140,911.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.42 CZK over 3310 transactions" + } + ] + }, + { + "id": 5002, + "type": "message", + "date": "2024-05-08T02:00:07", + "date_unixtime": "1715126407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005675 BTC for 82.71 CZK @ 1,457,391 CZK\nFees are 0.29048740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.73039851006060286793579301 CZK)\nThe limits being 0.10 % (139.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51617566 BTC (319,235.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,457,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.65 % (433,033.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,467.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09571136 BTC (139,488.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.42 CZK over 3311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005675 BTC for 82.71 CZK @ 1,457,391 CZK\nFees are 0.29048740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.73039851006060286793579301 CZK)\nThe limits being 0.10 % (139.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51617566 BTC (319,235.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,457,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.65 % (433,033.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,467.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09571136 BTC (139,488.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.42 CZK over 3311 transactions" + } + ] + }, + { + "id": 5003, + "type": "message", + "date": "2024-05-08T06:00:08", + "date_unixtime": "1715140808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005619 BTC for 82.70 CZK @ 1,471,821 CZK\nFees are 0.29046869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.66833937775890806806893083 CZK)\nThe limits being 0.10 % (140.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51623185 BTC (319,318.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,471,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.94 % (440,481.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,384.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09576755 BTC (140,952.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.41 CZK over 3312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005619 BTC for 82.70 CZK @ 1,471,821 CZK\nFees are 0.29046869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.66833937775890806806893083 CZK)\nThe limits being 0.10 % (140.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51623185 BTC (319,318.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,471,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.94 % (440,481.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,384.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09576755 BTC (140,952.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.41 CZK over 3312 transactions" + } + ] + }, + { + "id": 5004, + "type": "message", + "date": "2024-05-08T10:00:06", + "date_unixtime": "1715155206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005681 BTC for 82.70 CZK @ 1,455,807 CZK\nFees are 0.29047848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.62744265779155108151219017 CZK)\nThe limits being 0.10 % (139.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51628866 BTC (319,401.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,455,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.32 % (432,214.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,301.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09582436 BTC (139,501.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.41 CZK over 3313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005681 BTC for 82.70 CZK @ 1,455,807 CZK\nFees are 0.29047848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.62744265779155108151219017 CZK)\nThe limits being 0.10 % (139.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51628866 BTC (319,401.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,455,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.32 % (432,214.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,301.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09582436 BTC (139,501.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.41 CZK over 3313 transactions" + } + ] + }, + { + "id": 5005, + "type": "message", + "date": "2024-05-08T14:00:06", + "date_unixtime": "1715169606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005678 BTC for 82.70 CZK @ 1,456,483 CZK\nFees are 0.29046003 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.67142695704168906537579900 CZK)\nThe limits being 0.10 % (139.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51634544 BTC (319,484.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.39 % (432,563.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,218.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09588114 BTC (139,649.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.40 CZK over 3314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005678 BTC for 82.70 CZK @ 1,456,483 CZK\nFees are 0.29046003 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.67142695704168906537579900 CZK)\nThe limits being 0.10 % (139.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51634544 BTC (319,484.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.39 % (432,563.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,218.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09588114 BTC (139,649.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.40 CZK over 3314 transactions" + } + ] + }, + { + "id": 5006, + "type": "message", + "date": "2024-05-08T18:00:06", + "date_unixtime": "1715184006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005677 BTC for 82.70 CZK @ 1,456,684 CZK\nFees are 0.29044885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (75.747567482105742460837482766 CZK)\nThe limits being 0.10 % (139.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51640221 BTC (319,567.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.39 % (432,666.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,135.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09593791 BTC (139,751.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.40 CZK over 3315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005677 BTC for 82.70 CZK @ 1,456,684 CZK\nFees are 0.29044885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (75.747567482105742460837482766 CZK)\nThe limits being 0.10 % (139.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51640221 BTC (319,567.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.39 % (432,666.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,135.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09593791 BTC (139,751.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.40 CZK over 3315 transactions" + } + ] + }, + { + "id": 5007, + "type": "message", + "date": "2024-05-08T22:00:06", + "date_unixtime": "1715198406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005685 BTC for 82.70 CZK @ 1,454,665 CZK\nFees are 0.29045501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (75.642578570430055930014518231 CZK)\nThe limits being 0.10 % (139.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51645906 BTC (319,650.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 618,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,454,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.03 % (431,624.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,052.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09599476 BTC (139,640.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.40 CZK over 3316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005685 BTC for 82.70 CZK @ 1,454,665 CZK\nFees are 0.29045501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (75.642578570430055930014518231 CZK)\nThe limits being 0.10 % (139.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51645906 BTC (319,650.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 618,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,454,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.03 % (431,624.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,052.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09599476 BTC (139,640.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.40 CZK over 3316 transactions" + } + ] + }, + { + "id": 5008, + "type": "message", + "date": "2024-05-09T02:00:06", + "date_unixtime": "1715212806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005775 BTC for 82.71 CZK @ 1,432,142 CZK\nFees are 0.29048485 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.853538039200460725124402257 CZK)\nThe limits being 0.10 % (137.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51651681 BTC (319,733.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.36 % (419,991.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,969.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09605251 BTC (137,560.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.39 CZK over 3317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005775 BTC for 82.71 CZK @ 1,432,142 CZK\nFees are 0.29048485 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.853538039200460725124402257 CZK)\nThe limits being 0.10 % (137.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51651681 BTC (319,733.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.36 % (419,991.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,969.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09605251 BTC (137,560.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.39 CZK over 3317 transactions" + } + ] + }, + { + "id": 5009, + "type": "message", + "date": "2024-05-09T06:00:08", + "date_unixtime": "1715227208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005733 BTC for 82.70 CZK @ 1,442,587 CZK\nFees are 0.29047540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (56.260891342884936735032827279 CZK)\nThe limits being 0.10 % (138.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51657414 BTC (319,816.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.01 % (425,386.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,886.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09610984 BTC (138,646.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.39 CZK over 3318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005733 BTC for 82.70 CZK @ 1,442,587 CZK\nFees are 0.29047540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (56.260891342884936735032827279 CZK)\nThe limits being 0.10 % (138.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51657414 BTC (319,816.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.01 % (425,386.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,886.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09610984 BTC (138,646.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.39 CZK over 3318 transactions" + } + ] + }, + { + "id": 5010, + "type": "message", + "date": "2024-05-09T10:00:06", + "date_unixtime": "1715241606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005768 BTC for 82.70 CZK @ 1,433,751 CZK\nFees are 0.29045871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.916288978519702539032940876 CZK)\nThe limits being 0.10 % (137.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51663182 BTC (319,899.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.55 % (420,821.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,803.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09616752 BTC (137,880.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.38 CZK over 3319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005768 BTC for 82.70 CZK @ 1,433,751 CZK\nFees are 0.29045871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.916288978519702539032940876 CZK)\nThe limits being 0.10 % (137.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51663182 BTC (319,899.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.55 % (420,821.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,803.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09616752 BTC (137,880.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.38 CZK over 3319 transactions" + } + ] + }, + { + "id": 5011, + "type": "message", + "date": "2024-05-09T14:00:06", + "date_unixtime": "1715256006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005799 BTC for 82.71 CZK @ 1,426,257 CZK\nFees are 0.29049351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.624037709197323078485517965 CZK)\nThe limits being 0.10 % (137.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51668981 BTC (319,982.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,426,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.30 % (416,949.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,720.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09622551 BTC (137,242.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.38 CZK over 3320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005799 BTC for 82.71 CZK @ 1,426,257 CZK\nFees are 0.29049351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.624037709197323078485517965 CZK)\nThe limits being 0.10 % (137.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51668981 BTC (319,982.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,426,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.30 % (416,949.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,720.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09622551 BTC (137,242.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.38 CZK over 3320 transactions" + } + ] + }, + { + "id": 5012, + "type": "message", + "date": "2024-05-09T18:00:07", + "date_unixtime": "1715270407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005724 BTC for 82.70 CZK @ 1,444,749 CZK\nFees are 0.29045412 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (56.345223917546449063497883192 CZK)\nThe limits being 0.10 % (139.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51674705 BTC (320,065.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.26 % (426,504.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,637.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09628275 BTC (139,104.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.38 CZK over 3321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005724 BTC for 82.70 CZK @ 1,444,749 CZK\nFees are 0.29045412 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (56.345223917546449063497883192 CZK)\nThe limits being 0.10 % (139.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51674705 BTC (320,065.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.26 % (426,504.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,637.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09628275 BTC (139,104.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.38 CZK over 3321 transactions" + } + ] + }, + { + "id": 5013, + "type": "message", + "date": "2024-05-09T22:00:05", + "date_unixtime": "1715284805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005706 BTC for 82.70 CZK @ 1,449,297 CZK\nFees are 0.29045207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (75.363424852832820843835918836 CZK)\nThe limits being 0.10 % (139.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51680411 BTC (320,148.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.95 % (428,853.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,554.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09633981 BTC (139,624.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.37 CZK over 3322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005706 BTC for 82.70 CZK @ 1,449,297 CZK\nFees are 0.29045207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (75.363424852832820843835918836 CZK)\nThe limits being 0.10 % (139.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51680411 BTC (320,148.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.95 % (428,853.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,554.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09633981 BTC (139,624.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.37 CZK over 3322 transactions" + } + ] + }, + { + "id": 5014, + "type": "message", + "date": "2024-05-10T02:00:08", + "date_unixtime": "1715299208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005650 BTC for 82.71 CZK @ 1,463,862 CZK\nFees are 0.29049185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.15101878734164935998342087 CZK)\nThe limits being 0.10 % (141.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51686061 BTC (320,231.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,463,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.27 % (436,380.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,471.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09639631 BTC (141,110.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.37 CZK over 3323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005650 BTC for 82.71 CZK @ 1,463,862 CZK\nFees are 0.29049185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (95.15101878734164935998342087 CZK)\nThe limits being 0.10 % (141.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51686061 BTC (320,231.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,463,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.27 % (436,380.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,471.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09639631 BTC (141,110.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.37 CZK over 3323 transactions" + } + ] + }, + { + "id": 5015, + "type": "message", + "date": "2024-05-10T06:00:06", + "date_unixtime": "1715313606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005667 BTC for 82.71 CZK @ 1,459,492 CZK\nFees are 0.29049612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.86697791891077540589584593 CZK)\nThe limits being 0.10 % (140.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51691728 BTC (320,314.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.53 % (434,121.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,388.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09645298 BTC (140,772.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.36 CZK over 3324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005667 BTC for 82.71 CZK @ 1,459,492 CZK\nFees are 0.29049612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (94.86697791891077540589584593 CZK)\nThe limits being 0.10 % (140.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51691728 BTC (320,314.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.53 % (434,121.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,388.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09645298 BTC (140,772.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.36 CZK over 3324 transactions" + } + ] + }, + { + "id": 5016, + "type": "message", + "date": "2024-05-10T10:00:06", + "date_unixtime": "1715328006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005643 BTC for 82.71 CZK @ 1,465,642 CZK\nFees are 0.29048482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (57.160047832585949177877428997 CZK)\nThe limits being 0.10 % (141.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51697371 BTC (320,397.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,465,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.49 % (437,300.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,305.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09650941 BTC (141,448.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.36 CZK over 3325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005643 BTC for 82.71 CZK @ 1,465,642 CZK\nFees are 0.29048482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (57.160047832585949177877428997 CZK)\nThe limits being 0.10 % (141.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51697371 BTC (320,397.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,465,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.49 % (437,300.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,305.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09650941 BTC (141,448.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.36 CZK over 3325 transactions" + } + ] + }, + { + "id": 5017, + "type": "message", + "date": "2024-05-10T14:00:07", + "date_unixtime": "1715342407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005634 BTC for 82.70 CZK @ 1,467,946 CZK\nFees are 0.29047739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (76.333190802726488529054945958 CZK)\nThe limits being 0.10 % (141.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51703005 BTC (320,480.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,467,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.82 % (438,491.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,222.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09656575 BTC (141,753.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.36 CZK over 3326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005634 BTC for 82.70 CZK @ 1,467,946 CZK\nFees are 0.29047739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (76.333190802726488529054945958 CZK)\nThe limits being 0.10 % (141.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51703005 BTC (320,480.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,467,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.82 % (438,491.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,222.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09656575 BTC (141,753.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.36 CZK over 3326 transactions" + } + ] + }, + { + "id": 5018, + "type": "message", + "date": "2024-05-10T18:00:08", + "date_unixtime": "1715356808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005838 BTC for 82.71 CZK @ 1,416,742 CZK\nFees are 0.29049603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (73.670569955481269479398330576 CZK)\nThe limits being 0.10 % (136.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51708843 BTC (320,563.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 619,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.53 % (412,016.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,139.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09662413 BTC (136,891.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.35 CZK over 3327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005838 BTC for 82.71 CZK @ 1,416,742 CZK\nFees are 0.29049603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (73.670569955481269479398330576 CZK)\nThe limits being 0.10 % (136.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51708843 BTC (320,563.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 619,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.53 % (412,016.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,139.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09662413 BTC (136,891.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.35 CZK over 3327 transactions" + } + ] + }, + { + "id": 5019, + "type": "message", + "date": "2024-05-10T22:00:04", + "date_unixtime": "1715371204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005863 BTC for 82.71 CZK @ 1,410,659 CZK\nFees are 0.29048736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.69280983299029892051876083 CZK)\nThe limits being 0.10 % (136.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51714706 BTC (320,646.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,410,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.51 % (408,871.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,056.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09668276 BTC (136,386.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.35 CZK over 3328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005863 BTC for 82.71 CZK @ 1,410,659 CZK\nFees are 0.29048736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.69280983299029892051876083 CZK)\nThe limits being 0.10 % (136.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51714706 BTC (320,646.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,410,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.51 % (408,871.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,056.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09668276 BTC (136,386.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.35 CZK over 3328 transactions" + } + ] + }, + { + "id": 5020, + "type": "message", + "date": "2024-05-11T02:00:05", + "date_unixtime": "1715385605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005846 BTC for 82.71 CZK @ 1,414,813 CZK\nFees are 0.29049807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.96284088055814229396564642 CZK)\nThe limits being 0.10 % (136.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51720552 BTC (320,729.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.15 % (411,019.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,973.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09674122 BTC (136,870.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.34 CZK over 3329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005846 BTC for 82.71 CZK @ 1,414,813 CZK\nFees are 0.29049807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.96284088055814229396564642 CZK)\nThe limits being 0.10 % (136.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51720552 BTC (320,729.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.15 % (411,019.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,973.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09674122 BTC (136,870.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.34 CZK over 3329 transactions" + } + ] + }, + { + "id": 5021, + "type": "message", + "date": "2024-05-11T06:00:07", + "date_unixtime": "1715400007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005854 BTC for 82.70 CZK @ 1,412,742 CZK\nFees are 0.29046976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.82821632570935106015178512 CZK)\nThe limits being 0.10 % (136.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51726406 BTC (320,812.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.78 % (409,947.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,890.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09679976 BTC (136,753.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.34 CZK over 3330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005854 BTC for 82.70 CZK @ 1,412,742 CZK\nFees are 0.29046976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.07 % (91.82821632570935106015178512 CZK)\nThe limits being 0.10 % (136.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51726406 BTC (320,812.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.78 % (409,947.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,890.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09679976 BTC (136,753.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.34 CZK over 3330 transactions" + } + ] + }, + { + "id": 5022, + "type": "message", + "date": "2024-05-11T10:00:04", + "date_unixtime": "1715414404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005829 BTC for 82.70 CZK @ 1,418,796 CZK\nFees are 0.29046873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.66607509742663416077696154 CZK)\nThe limits being 0.10 % (137.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51732235 BTC (320,895.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.73 % (413,079.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,807.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09685805 BTC (137,421.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.34 CZK over 3331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005829 BTC for 82.70 CZK @ 1,418,796 CZK\nFees are 0.29046873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.66607509742663416077696154 CZK)\nThe limits being 0.10 % (137.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51732235 BTC (320,895.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.73 % (413,079.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,807.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09685805 BTC (137,421.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.34 CZK over 3331 transactions" + } + ] + }, + { + "id": 5023, + "type": "message", + "date": "2024-05-11T14:00:05", + "date_unixtime": "1715428805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005857 BTC for 82.71 CZK @ 1,412,088 CZK\nFees are 0.29048416 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.14287689994699276452511820 CZK)\nThe limits being 0.10 % (136.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51738092 BTC (320,978.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.61 % (409,608.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,724.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09691662 BTC (136,854.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.33 CZK over 3332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005857 BTC for 82.71 CZK @ 1,412,088 CZK\nFees are 0.29048416 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.14287689994699276452511820 CZK)\nThe limits being 0.10 % (136.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51738092 BTC (320,978.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.61 % (409,608.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,724.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09691662 BTC (136,854.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.33 CZK over 3332 transactions" + } + ] + }, + { + "id": 5024, + "type": "message", + "date": "2024-05-11T18:00:04", + "date_unixtime": "1715443204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,134 CZK\nFees are 0.29045289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.92646218236173393124065770 CZK)\nThe limits being 0.10 % (137.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51743907 BTC (321,061.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.20 % (414,806.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,641.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09697477 BTC (137,911.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.33 CZK over 3333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,134 CZK\nFees are 0.29045289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.92646218236173393124065770 CZK)\nThe limits being 0.10 % (137.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51743907 BTC (321,061.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.20 % (414,806.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,641.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09697477 BTC (137,911.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.33 CZK over 3333 transactions" + } + ] + }, + { + "id": 5025, + "type": "message", + "date": "2024-05-11T22:00:04", + "date_unixtime": "1715457604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,137 CZK\nFees are 0.29045352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.92670214318672265300168241 CZK)\nThe limits being 0.10 % (137.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51749722 BTC (321,144.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.17 % (414,807.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,558.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09703292 BTC (137,994.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.32 CZK over 3334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,137 CZK\nFees are 0.29045352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.08 % (110.92670214318672265300168241 CZK)\nThe limits being 0.10 % (137.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51749722 BTC (321,144.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.17 % (414,807.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,558.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09703292 BTC (137,994.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.32 CZK over 3334 transactions" + } + ] + }, + { + "id": 5026, + "type": "message", + "date": "2024-05-12T02:00:06", + "date_unixtime": "1715472006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005845 BTC for 82.71 CZK @ 1,415,048 CZK\nFees are 0.29049654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (73.582471021910908057896592044 CZK)\nThe limits being 0.10 % (137.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51755567 BTC (321,227.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,415,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.99 % (411,138.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,475.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09709137 BTC (137,388.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.32 CZK over 3335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005845 BTC for 82.71 CZK @ 1,415,048 CZK\nFees are 0.29049654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.05 % (73.582471021910908057896592044 CZK)\nThe limits being 0.10 % (137.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51755567 BTC (321,227.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,415,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.99 % (411,138.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,475.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09709137 BTC (137,388.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.32 CZK over 3335 transactions" + } + ] + }, + { + "id": 5027, + "type": "message", + "date": "2024-05-12T06:00:06", + "date_unixtime": "1715486406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005833 BTC for 82.70 CZK @ 1,417,859 CZK\nFees are 0.29047602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.296481701837158151510003006 CZK)\nThe limits being 0.10 % (137.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51761400 BTC (321,310.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.41 % (412,592.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,392.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09714970 BTC (137,744.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.32 CZK over 3336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005833 BTC for 82.70 CZK @ 1,417,859 CZK\nFees are 0.29047602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.296481701837158151510003006 CZK)\nThe limits being 0.10 % (137.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51761400 BTC (321,310.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.41 % (412,592.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,392.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09714970 BTC (137,744.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.32 CZK over 3336 transactions" + } + ] + }, + { + "id": 5028, + "type": "message", + "date": "2024-05-12T10:00:05", + "date_unixtime": "1715500805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005848 BTC for 82.71 CZK @ 1,414,332 CZK\nFees are 0.29049862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.158937889411682912814724387 CZK)\nThe limits being 0.10 % (137.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51767248 BTC (321,393.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.81 % (410,766.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,309.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.09720818 BTC (137,484.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.31 CZK over 3337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005848 BTC for 82.71 CZK @ 1,414,332 CZK\nFees are 0.29049862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.04 % (55.158937889411682912814724387 CZK)\nThe limits being 0.10 % (137.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51767248 BTC (321,393.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.81 % (410,766.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,309.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.09720818 BTC (137,484.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.31 CZK over 3337 transactions" + } + ] + }, + { + "id": 5029, + "type": "message", + "date": "2024-05-12T14:00:05", + "date_unixtime": "1715515205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005814 BTC for 82.71 CZK @ 1,422,588 CZK\nFees are 0.29049567 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 67.08 % (55.480942098938544814511439064 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51773062 BTC (321,476.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 620,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.10 % (415,040.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,226.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00005814 BTC (82.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.31 CZK over 3338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005814 BTC for 82.71 CZK @ 1,422,588 CZK\nFees are 0.29049567 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 67.08 % (55.480942098938544814511439064 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51773062 BTC (321,476.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 620,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.10 % (415,040.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,226.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00005814 BTC (82.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.31 CZK over 3338 transactions" + } + ] + }, + { + "id": 5030, + "type": "message", + "date": "2024-05-12T18:00:06", + "date_unixtime": "1715529606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005791 BTC for 82.70 CZK @ 1,428,019 CZK\nFees are 0.29045101 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 33.61 % (55.692731415869013796213339650 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51778853 BTC (321,559.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.95 % (417,852.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,143.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00011605 BTC (165.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.30 CZK over 3339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005791 BTC for 82.70 CZK @ 1,428,019 CZK\nFees are 0.29045101 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 33.61 % (55.692731415869013796213339650 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51778853 BTC (321,559.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.95 % (417,852.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,143.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00011605 BTC (165.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.30 CZK over 3339 transactions" + } + ] + }, + { + "id": 5031, + "type": "message", + "date": "2024-05-12T22:00:05", + "date_unixtime": "1715544005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005792 BTC for 82.70 CZK @ 1,427,848 CZK\nFees are 0.29046650 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 22.42 % (55.686084898814095417420244615 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51784645 BTC (321,642.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,427,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.88 % (417,763.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,060.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00017397 BTC (248.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.30 CZK over 3340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005792 BTC for 82.70 CZK @ 1,427,848 CZK\nFees are 0.29046650 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 22.42 % (55.686084898814095417420244615 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51784645 BTC (321,642.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,427,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.88 % (417,763.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,060.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00017397 BTC (248.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.30 CZK over 3340 transactions" + } + ] + }, + { + "id": 5032, + "type": "message", + "date": "2024-05-13T02:00:07", + "date_unixtime": "1715558407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005785 BTC for 82.71 CZK @ 1,429,680 CZK\nFees are 0.29048759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 16.82 % (55.757515412908751952436136441 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51790430 BTC (321,725.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,429,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.15 % (418,711.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,977.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00023182 BTC (331.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.30 CZK over 3341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005785 BTC for 82.71 CZK @ 1,429,680 CZK\nFees are 0.29048759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 16.82 % (55.757515412908751952436136441 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51790430 BTC (321,725.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,429,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.15 % (418,711.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,977.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00023182 BTC (331.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.30 CZK over 3341 transactions" + } + ] + }, + { + "id": 5033, + "type": "message", + "date": "2024-05-13T06:00:07", + "date_unixtime": "1715572807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,164 CZK\nFees are 0.29045903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 13.45 % (55.464404001300692631679063090 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51796245 BTC (321,808.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.90 % (414,818.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,894.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00028997 BTC (412.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.29 CZK over 3342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,164 CZK\nFees are 0.29045903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 13.45 % (55.464404001300692631679063090 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51796245 BTC (321,808.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.90 % (414,818.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,894.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00028997 BTC (412.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.29 CZK over 3342 transactions" + } + ] + }, + { + "id": 5034, + "type": "message", + "date": "2024-05-13T10:00:08", + "date_unixtime": "1715587208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005731 BTC for 82.70 CZK @ 1,443,035 CZK\nFees are 0.29046427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 11.23 % (56.278367776644942839652909110 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51801976 BTC (321,891.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.23 % (425,629.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,811.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00034728 BTC (501.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.29 CZK over 3343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005731 BTC for 82.70 CZK @ 1,443,035 CZK\nFees are 0.29046427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 11.23 % (56.278367776644942839652909110 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51801976 BTC (321,891.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.23 % (425,629.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,811.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00034728 BTC (501.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.29 CZK over 3343 transactions" + } + ] + }, + { + "id": 5035, + "type": "message", + "date": "2024-05-13T14:00:06", + "date_unixtime": "1715601606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005710 BTC for 82.70 CZK @ 1,448,422 CZK\nFees are 0.29048036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 9.64 % (56.488475916429100599739789892 CZK)\nThe limits being 0.10 % (0.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51807686 BTC (321,974.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,448,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.06 % (428,419.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,728.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00040438 BTC (585.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.28 CZK over 3344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005710 BTC for 82.70 CZK @ 1,448,422 CZK\nFees are 0.29048036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 9.64 % (56.488475916429100599739789892 CZK)\nThe limits being 0.10 % (0.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51807686 BTC (321,974.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,448,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.06 % (428,419.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,728.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00040438 BTC (585.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.28 CZK over 3344 transactions" + } + ] + }, + { + "id": 5036, + "type": "message", + "date": "2024-05-13T18:00:07", + "date_unixtime": "1715616007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005680 BTC for 82.71 CZK @ 1,456,127 CZK\nFees are 0.29049114 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.46 % (56.788937586054443251436872359 CZK)\nThe limits being 0.10 % (0.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51813366 BTC (322,057.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.26 % (432,410.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,645.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00046118 BTC (671.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.28 CZK over 3345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005680 BTC for 82.71 CZK @ 1,456,127 CZK\nFees are 0.29049114 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.46 % (56.788937586054443251436872359 CZK)\nThe limits being 0.10 % (0.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51813366 BTC (322,057.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.26 % (432,410.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,645.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00046118 BTC (671.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.28 CZK over 3345 transactions" + } + ] + }, + { + "id": 5037, + "type": "message", + "date": "2024-05-13T22:00:06", + "date_unixtime": "1715630406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005683 BTC for 82.70 CZK @ 1,455,287 CZK\nFees are 0.29047689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.53 % (56.756174165890086790198759733 CZK)\nThe limits being 0.10 % (0.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51819049 BTC (322,140.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,455,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.10 % (431,974.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,562.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00051801 BTC (753.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.28 CZK over 3346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005683 BTC for 82.70 CZK @ 1,455,287 CZK\nFees are 0.29047689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.53 % (56.756174165890086790198759733 CZK)\nThe limits being 0.10 % (0.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51819049 BTC (322,140.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,455,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.10 % (431,974.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,562.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00051801 BTC (753.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.28 CZK over 3346 transactions" + } + ] + }, + { + "id": 5038, + "type": "message", + "date": "2024-05-14T02:00:05", + "date_unixtime": "1715644805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005690 BTC for 82.71 CZK @ 1,453,540 CZK\nFees are 0.29048568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.78 % (56.688066918334160841273469042 CZK)\nThe limits being 0.10 % (0.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51824739 BTC (322,223.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,453,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.78 % (431,069.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,479.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00057491 BTC (835.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.27 CZK over 3347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005690 BTC for 82.71 CZK @ 1,453,540 CZK\nFees are 0.29048568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.78 % (56.688066918334160841273469042 CZK)\nThe limits being 0.10 % (0.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51824739 BTC (322,223.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,453,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.78 % (431,069.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,479.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00057491 BTC (835.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.27 CZK over 3347 transactions" + } + ] + }, + { + "id": 5039, + "type": "message", + "date": "2024-05-14T06:00:06", + "date_unixtime": "1715659206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005728 BTC for 82.70 CZK @ 1,443,805 CZK\nFees are 0.29046711 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.17 % (56.308394391800486008467570205 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51830467 BTC (322,306.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.18 % (426,024.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,396.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00063219 BTC (912.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.27 CZK over 3348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005728 BTC for 82.70 CZK @ 1,443,805 CZK\nFees are 0.29046711 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.17 % (56.308394391800486008467570205 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51830467 BTC (322,306.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.18 % (426,024.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,396.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00063219 BTC (912.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.27 CZK over 3348 transactions" + } + ] + }, + { + "id": 5040, + "type": "message", + "date": "2024-05-14T10:00:06", + "date_unixtime": "1715673606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005776 BTC for 82.70 CZK @ 1,431,789 CZK\nFees are 0.29046357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.65 % (55.839775834958531566111407857 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51836243 BTC (322,389.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 621,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.21 % (419,796.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,313.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00068995 BTC (987.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.26 CZK over 3349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005776 BTC for 82.70 CZK @ 1,431,789 CZK\nFees are 0.29046357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.65 % (55.839775834958531566111407857 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51836243 BTC (322,389.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 621,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.21 % (419,796.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,313.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00068995 BTC (987.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.26 CZK over 3349 transactions" + } + ] + }, + { + "id": 5041, + "type": "message", + "date": "2024-05-14T14:00:05", + "date_unixtime": "1715688005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005806 BTC for 82.70 CZK @ 1,424,393 CZK\nFees are 0.29046393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.21 % (55.551316991803232262692014393 CZK)\nThe limits being 0.10 % (1.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51842049 BTC (322,472.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,424,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.99 % (415,961.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,231.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00074801 BTC (1,065.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.26 CZK over 3350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005806 BTC for 82.70 CZK @ 1,424,393 CZK\nFees are 0.29046393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.21 % (55.551316991803232262692014393 CZK)\nThe limits being 0.10 % (1.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51842049 BTC (322,472.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,424,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.99 % (415,961.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,231.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00074801 BTC (1,065.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.26 CZK over 3350 transactions" + } + ] + }, + { + "id": 5042, + "type": "message", + "date": "2024-05-14T18:00:07", + "date_unixtime": "1715702407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005823 BTC for 82.71 CZK @ 1,420,324 CZK\nFees are 0.29048220 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.84 % (55.392621615176352113301538385 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51847872 BTC (322,555.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.30 % (413,851.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,148.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00080624 BTC (1,145.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.26 CZK over 3351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005823 BTC for 82.71 CZK @ 1,420,324 CZK\nFees are 0.29048220 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.84 % (55.392621615176352113301538385 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51847872 BTC (322,555.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.30 % (413,851.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,148.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00080624 BTC (1,145.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.26 CZK over 3351 transactions" + } + ] + }, + { + "id": 5043, + "type": "message", + "date": "2024-05-14T22:00:05", + "date_unixtime": "1715716805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005837 BTC for 82.71 CZK @ 1,416,981 CZK\nFees are 0.29049539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.51 % (55.262271688289206041660424598 CZK)\nThe limits being 0.10 % (1.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51853709 BTC (322,638.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.73 % (412,118.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,065.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00086461 BTC (1,225.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.25 CZK over 3352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005837 BTC for 82.71 CZK @ 1,416,981 CZK\nFees are 0.29049539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.51 % (55.262271688289206041660424598 CZK)\nThe limits being 0.10 % (1.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51853709 BTC (322,638.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.73 % (412,118.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,065.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00086461 BTC (1,225.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.25 CZK over 3352 transactions" + } + ] + }, + { + "id": 5044, + "type": "message", + "date": "2024-05-15T02:00:05", + "date_unixtime": "1715731205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005835 BTC for 82.70 CZK @ 1,417,367 CZK\nFees are 0.29047495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.63 % (73.703098790223933456552452024 CZK)\nThe limits being 0.10 % (1.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51859544 BTC (322,721.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.76 % (412,318.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,982.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00092296 BTC (1,308.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.25 CZK over 3353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005835 BTC for 82.70 CZK @ 1,417,367 CZK\nFees are 0.29047495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.63 % (73.703098790223933456552452024 CZK)\nThe limits being 0.10 % (1.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51859544 BTC (322,721.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.76 % (412,318.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,982.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00092296 BTC (1,308.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.25 CZK over 3353 transactions" + } + ] + }, + { + "id": 5045, + "type": "message", + "date": "2024-05-15T06:00:08", + "date_unixtime": "1715745608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005807 BTC for 82.70 CZK @ 1,424,193 CZK\nFees are 0.29047327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.98 % (55.543536653227394492961564094 CZK)\nThe limits being 0.10 % (1.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51865351 BTC (322,804.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,424,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.83 % (415,858.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,899.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00098103 BTC (1,397.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.24 CZK over 3354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005807 BTC for 82.70 CZK @ 1,424,193 CZK\nFees are 0.29047327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.98 % (55.543536653227394492961564094 CZK)\nThe limits being 0.10 % (1.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51865351 BTC (322,804.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,424,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.83 % (415,858.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,899.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00098103 BTC (1,397.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.24 CZK over 3354 transactions" + } + ] + }, + { + "id": 5046, + "type": "message", + "date": "2024-05-15T10:00:05", + "date_unixtime": "1715760005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005778 BTC for 82.71 CZK @ 1,431,393 CZK\nFees are 0.29048378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.75 % (55.824332457375302743616449384 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51871129 BTC (322,887.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.95 % (419,592.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,816.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00103881 BTC (1,486.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.24 CZK over 3355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005778 BTC for 82.71 CZK @ 1,431,393 CZK\nFees are 0.29048378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.75 % (55.824332457375302743616449384 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51871129 BTC (322,887.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.95 % (419,592.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,816.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00103881 BTC (1,486.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.24 CZK over 3355 transactions" + } + ] + }, + { + "id": 5047, + "type": "message", + "date": "2024-05-15T14:00:04", + "date_unixtime": "1715774404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005776 BTC for 82.70 CZK @ 1,431,844 CZK\nFees are 0.29047475 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.56 % (55.841926178216960858601542800 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51876905 BTC (322,970.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.99 % (419,825.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,733.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00109657 BTC (1,570.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.24 CZK over 3356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005776 BTC for 82.70 CZK @ 1,431,844 CZK\nFees are 0.29047475 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.56 % (55.841926178216960858601542800 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51876905 BTC (322,970.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.99 % (419,825.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,733.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00109657 BTC (1,570.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.24 CZK over 3356 transactions" + } + ] + }, + { + "id": 5048, + "type": "message", + "date": "2024-05-15T18:00:05", + "date_unixtime": "1715788805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005611 BTC for 82.70 CZK @ 1,473,862 CZK\nFees are 0.29045738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.38 % (57.480605443237032531923333383 CZK)\nThe limits being 0.10 % (1.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51882516 BTC (323,053.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,473,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.70 % (441,622.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,650.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00115268 BTC (1,698.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.23 CZK over 3357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005611 BTC for 82.70 CZK @ 1,473,862 CZK\nFees are 0.29045738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.38 % (57.480605443237032531923333383 CZK)\nThe limits being 0.10 % (1.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51882516 BTC (323,053.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,473,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.70 % (441,622.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,650.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00115268 BTC (1,698.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.23 CZK over 3357 transactions" + } + ] + }, + { + "id": 5049, + "type": "message", + "date": "2024-05-15T22:00:06", + "date_unixtime": "1715803206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005569 BTC for 82.71 CZK @ 1,485,164 CZK\nFees are 0.29049388 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.23 % (57.921386822365212508599145225 CZK)\nThe limits being 0.10 % (1.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51888085 BTC (323,136.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.48 % (447,486.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,567.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00120837 BTC (1,794.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.23 CZK over 3358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005569 BTC for 82.71 CZK @ 1,485,164 CZK\nFees are 0.29049388 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.23 % (57.921386822365212508599145225 CZK)\nThe limits being 0.10 % (1.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51888085 BTC (323,136.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.48 % (447,486.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,567.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00120837 BTC (1,794.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.23 CZK over 3358 transactions" + } + ] + }, + { + "id": 5050, + "type": "message", + "date": "2024-05-16T02:00:04", + "date_unixtime": "1715817604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,707 CZK\nFees are 0.29046391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.09 % (58.176573991031390134529147984 CZK)\nThe limits being 0.10 % (1.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51893629 BTC (323,219.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.50 % (450,881.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,484.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00126381 BTC (1,885.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.22 CZK over 3359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,707 CZK\nFees are 0.29046391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.09 % (58.176573991031390134529147984 CZK)\nThe limits being 0.10 % (1.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51893629 BTC (323,219.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.50 % (450,881.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,484.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00126381 BTC (1,885.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.22 CZK over 3359 transactions" + } + ] + }, + { + "id": 5051, + "type": "message", + "date": "2024-05-16T06:00:07", + "date_unixtime": "1715832007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,707 CZK\nFees are 0.29046391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.96 % (58.176573991031390134529147984 CZK)\nThe limits being 0.10 % (1.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51899173 BTC (323,302.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 622,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.46 % (450,881.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,401.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00131925 BTC (1,967.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.22 CZK over 3360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,707 CZK\nFees are 0.29046391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.96 % (58.176573991031390134529147984 CZK)\nThe limits being 0.10 % (1.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51899173 BTC (323,302.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 622,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.46 % (450,881.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,401.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00131925 BTC (1,967.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.22 CZK over 3360 transactions" + } + ] + }, + { + "id": 5052, + "type": "message", + "date": "2024-05-16T10:00:05", + "date_unixtime": "1715846405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005540 BTC for 82.70 CZK @ 1,492,710 CZK\nFees are 0.29044940 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.84 % (58.215671150971599402092675632 CZK)\nThe limits being 0.10 % (2.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51904713 BTC (323,385.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.59 % (451,401.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,318.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00137465 BTC (2,051.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.22 CZK over 3361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005540 BTC for 82.70 CZK @ 1,492,710 CZK\nFees are 0.29044940 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.84 % (58.215671150971599402092675632 CZK)\nThe limits being 0.10 % (2.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51904713 BTC (323,385.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.59 % (451,401.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,318.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00137465 BTC (2,051.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.22 CZK over 3361 transactions" + } + ] + }, + { + "id": 5053, + "type": "message", + "date": "2024-05-16T14:00:07", + "date_unixtime": "1715860807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.73 % (58.645739910313901345291479820 CZK)\nThe limits being 0.10 % (2.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51910213 BTC (323,468.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.32 % (457,124.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,235.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00142965 BTC (2,149.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.21 CZK over 3362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.73 % (58.645739910313901345291479820 CZK)\nThe limits being 0.10 % (2.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51910213 BTC (323,468.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.32 % (457,124.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,235.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00142965 BTC (2,149.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.21 CZK over 3362 transactions" + } + ] + }, + { + "id": 5054, + "type": "message", + "date": "2024-05-16T18:00:07", + "date_unixtime": "1715875207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005516 BTC for 82.70 CZK @ 1,499,329 CZK\nFees are 0.29047356 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.63 % (58.473829691800236518089514837 CZK)\nThe limits being 0.10 % (2.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51915729 BTC (323,551.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,499,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.58 % (454,836.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,152.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00148481 BTC (2,226.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.21 CZK over 3363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005516 BTC for 82.70 CZK @ 1,499,329 CZK\nFees are 0.29047356 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.63 % (58.473829691800236518089514837 CZK)\nThe limits being 0.10 % (2.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51915729 BTC (323,551.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,499,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.58 % (454,836.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,152.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00148481 BTC (2,226.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.21 CZK over 3363 transactions" + } + ] + }, + { + "id": 5055, + "type": "message", + "date": "2024-05-16T22:00:06", + "date_unixtime": "1715889606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005565 BTC for 82.70 CZK @ 1,486,028 CZK\nFees are 0.29045413 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.53 % (57.955088575430736358056774337 CZK)\nThe limits being 0.10 % (2.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51921294 BTC (323,634.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,486,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.41 % (447,930.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,069.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00154046 BTC (2,289.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.21 CZK over 3364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005565 BTC for 82.70 CZK @ 1,486,028 CZK\nFees are 0.29045413 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.53 % (57.955088575430736358056774337 CZK)\nThe limits being 0.10 % (2.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51921294 BTC (323,634.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,486,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.41 % (447,930.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,069.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00154046 BTC (2,289.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.21 CZK over 3364 transactions" + } + ] + }, + { + "id": 5056, + "type": "message", + "date": "2024-05-17T02:00:05", + "date_unixtime": "1715904005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005560 BTC for 82.71 CZK @ 1,487,518 CZK\nFees are 0.29048408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.44 % (58.013186955726898301986213717 CZK)\nThe limits being 0.10 % (2.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51926854 BTC (323,717.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.61 % (448,703.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,986.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00159606 BTC (2,374.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.20 CZK over 3365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005560 BTC for 82.71 CZK @ 1,487,518 CZK\nFees are 0.29048408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.44 % (58.013186955726898301986213717 CZK)\nThe limits being 0.10 % (2.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51926854 BTC (323,717.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.61 % (448,703.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,986.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00159606 BTC (2,374.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.20 CZK over 3365 transactions" + } + ] + }, + { + "id": 5057, + "type": "message", + "date": "2024-05-17T06:00:05", + "date_unixtime": "1715918405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005532 BTC for 82.70 CZK @ 1,494,976 CZK\nFees are 0.29047038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.36 % (58.304069828809578622327277522 CZK)\nThe limits being 0.10 % (2.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51932386 BTC (323,800.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,494,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.77 % (452,576.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,903.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00165138 BTC (2,468.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.20 CZK over 3366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005532 BTC for 82.70 CZK @ 1,494,976 CZK\nFees are 0.29047038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.36 % (58.304069828809578622327277522 CZK)\nThe limits being 0.10 % (2.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51932386 BTC (323,800.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,494,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.77 % (452,576.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,903.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00165138 BTC (2,468.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.20 CZK over 3366 transactions" + } + ] + }, + { + "id": 5058, + "type": "message", + "date": "2024-05-17T10:00:07", + "date_unixtime": "1715932807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.29 % (58.645739910313901345291479820 CZK)\nThe limits being 0.10 % (2.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51937886 BTC (323,883.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.14 % (457,125.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,820.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00170638 BTC (2,565.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.19 CZK over 3367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.71 CZK @ 1,503,737 CZK\nFees are 0.29048250 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.29 % (58.645739910313901345291479820 CZK)\nThe limits being 0.10 % (2.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51937886 BTC (323,883.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.14 % (457,125.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,820.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00170638 BTC (2,565.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.19 CZK over 3367 transactions" + } + ] + }, + { + "id": 5059, + "type": "message", + "date": "2024-05-17T14:00:07", + "date_unixtime": "1715947207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005482 BTC for 82.71 CZK @ 1,508,708 CZK\nFees are 0.29048902 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.21 % (58.839622723423144859463966595 CZK)\nThe limits being 0.10 % (2.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51943368 BTC (323,966.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,508,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.90 % (459,707.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,737.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00176120 BTC (2,657.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.19 CZK over 3368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005482 BTC for 82.71 CZK @ 1,508,708 CZK\nFees are 0.29048902 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.21 % (58.839622723423144859463966595 CZK)\nThe limits being 0.10 % (2.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51943368 BTC (323,966.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,508,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.90 % (459,707.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,737.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00176120 BTC (2,657.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.19 CZK over 3368 transactions" + } + ] + }, + { + "id": 5060, + "type": "message", + "date": "2024-05-17T18:00:07", + "date_unixtime": "1715961607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005397 BTC for 82.70 CZK @ 1,532,416 CZK\nFees are 0.29047889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (59.764231460039943577135390222 CZK)\nThe limits being 0.10 % (2.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51948765 BTC (324,049.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,532,416 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.66 % (472,021.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,654.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00181517 BTC (2,781.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.19 CZK over 3369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005397 BTC for 82.70 CZK @ 1,532,416 CZK\nFees are 0.29047889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (59.764231460039943577135390222 CZK)\nThe limits being 0.10 % (2.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51948765 BTC (324,049.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,532,416 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.66 % (472,021.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,654.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00181517 BTC (2,781.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.19 CZK over 3369 transactions" + } + ] + }, + { + "id": 5061, + "type": "message", + "date": "2024-05-17T22:00:05", + "date_unixtime": "1715976005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005424 BTC for 82.71 CZK @ 1,524,854 CZK\nFees are 0.29049153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.09 % (59.469321581874942127333095224 CZK)\nThe limits being 0.10 % (2.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51954189 BTC (324,132.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,524,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.41 % (468,093.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,571.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00186941 BTC (2,850.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.18 CZK over 3370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005424 BTC for 82.71 CZK @ 1,524,854 CZK\nFees are 0.29049153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.09 % (59.469321581874942127333095224 CZK)\nThe limits being 0.10 % (2.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51954189 BTC (324,132.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,524,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.41 % (468,093.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,571.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00186941 BTC (2,850.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.18 CZK over 3370 transactions" + } + ] + }, + { + "id": 5062, + "type": "message", + "date": "2024-05-18T02:00:04", + "date_unixtime": "1715990404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,712 CZK\nFees are 0.29046441 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.03 % (59.463769786940398869443672806 CZK)\nThe limits being 0.10 % (2.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51959613 BTC (324,215.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 623,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,524,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.35 % (468,019.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,488.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00192365 BTC (2,933.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.18 CZK over 3371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,712 CZK\nFees are 0.29046441 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.03 % (59.463769786940398869443672806 CZK)\nThe limits being 0.10 % (2.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51959613 BTC (324,215.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 623,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,524,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.35 % (468,019.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,488.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00192365 BTC (2,933.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.18 CZK over 3371 transactions" + } + ] + }, + { + "id": 5063, + "type": "message", + "date": "2024-05-18T06:00:05", + "date_unixtime": "1716004805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,772 CZK\nFees are 0.29047587 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.97 % (59.466115611951091533614649607 CZK)\nThe limits being 0.10 % (3.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51965037 BTC (324,298.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,524,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.33 % (468,049.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,405.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00197789 BTC (3,015.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.17 CZK over 3372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,772 CZK\nFees are 0.29047587 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.97 % (59.466115611951091533614649607 CZK)\nThe limits being 0.10 % (3.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51965037 BTC (324,298.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,524,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.33 % (468,049.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,405.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00197789 BTC (3,015.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.17 CZK over 3372 transactions" + } + ] + }, + { + "id": 5064, + "type": "message", + "date": "2024-05-18T10:00:05", + "date_unixtime": "1716019205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005429 BTC for 82.70 CZK @ 1,523,289 CZK\nFees are 0.29046073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (59.408251815459301910985156666 CZK)\nThe limits being 0.10 % (3.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51970466 BTC (324,381.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.05 % (467,278.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,322.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00203218 BTC (3,095.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.17 CZK over 3373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005429 BTC for 82.70 CZK @ 1,523,289 CZK\nFees are 0.29046073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (59.408251815459301910985156666 CZK)\nThe limits being 0.10 % (3.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51970466 BTC (324,381.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.05 % (467,278.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,322.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00203218 BTC (3,095.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.17 CZK over 3373 transactions" + } + ] + }, + { + "id": 5065, + "type": "message", + "date": "2024-05-18T14:00:06", + "date_unixtime": "1716033606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005400 BTC for 82.70 CZK @ 1,531,508 CZK\nFees are 0.29046809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.87 % (59.728809429219952388861207992 CZK)\nThe limits being 0.10 % (3.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51975866 BTC (324,464.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,531,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.33 % (471,550.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,239.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00208618 BTC (3,195.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.17 CZK over 3374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005400 BTC for 82.70 CZK @ 1,531,508 CZK\nFees are 0.29046809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.87 % (59.728809429219952388861207992 CZK)\nThe limits being 0.10 % (3.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51975866 BTC (324,464.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,531,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.33 % (471,550.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,239.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00208618 BTC (3,195.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.17 CZK over 3374 transactions" + } + ] + }, + { + "id": 5066, + "type": "message", + "date": "2024-05-18T18:00:05", + "date_unixtime": "1716048005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005432 BTC for 82.70 CZK @ 1,522,468 CZK\nFees are 0.29046479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.82 % (59.376270340076301428065100569 CZK)\nThe limits being 0.10 % (3.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51981298 BTC (324,547.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.85 % (466,851.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,156.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00214050 BTC (3,258.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.16 CZK over 3375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005432 BTC for 82.70 CZK @ 1,522,468 CZK\nFees are 0.29046479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.82 % (59.376270340076301428065100569 CZK)\nThe limits being 0.10 % (3.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51981298 BTC (324,547.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.85 % (466,851.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,156.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00214050 BTC (3,258.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.16 CZK over 3375 transactions" + } + ] + }, + { + "id": 5067, + "type": "message", + "date": "2024-05-18T22:00:06", + "date_unixtime": "1716062406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005432 BTC for 82.70 CZK @ 1,522,529 CZK\nFees are 0.29047626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (59.378616173106938674873583106 CZK)\nThe limits being 0.10 % (3.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51986730 BTC (324,630.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.82 % (466,882.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,073.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00219482 BTC (3,341.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.16 CZK over 3376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005432 BTC for 82.70 CZK @ 1,522,529 CZK\nFees are 0.29047626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (59.378616173106938674873583106 CZK)\nThe limits being 0.10 % (3.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51986730 BTC (324,630.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.82 % (466,882.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,073.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00219482 BTC (3,341.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.16 CZK over 3376 transactions" + } + ] + }, + { + "id": 5068, + "type": "message", + "date": "2024-05-19T02:00:06", + "date_unixtime": "1716076806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005430 BTC for 82.70 CZK @ 1,522,992 CZK\nFees are 0.29045764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.73 % (59.396679060856064547564188322 CZK)\nThe limits being 0.10 % (3.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51992160 BTC (324,713.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.86 % (467,122.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,990.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00224912 BTC (3,425.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.15 CZK over 3377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005430 BTC for 82.70 CZK @ 1,522,992 CZK\nFees are 0.29045764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.73 % (59.396679060856064547564188322 CZK)\nThe limits being 0.10 % (3.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51992160 BTC (324,713.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.86 % (467,122.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,990.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00224912 BTC (3,425.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.15 CZK over 3377 transactions" + } + ] + }, + { + "id": 5069, + "type": "message", + "date": "2024-05-19T06:00:06", + "date_unixtime": "1716091206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005411 BTC for 82.70 CZK @ 1,528,399 CZK\nFees are 0.29046898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.69 % (59.607569141528951018506010702 CZK)\nThe limits being 0.10 % (3.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.51997571 BTC (324,796.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,528,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.69 % (469,934.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,907.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00230323 BTC (3,520.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.15 CZK over 3378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005411 BTC for 82.70 CZK @ 1,528,399 CZK\nFees are 0.29046898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.69 % (59.607569141528951018506010702 CZK)\nThe limits being 0.10 % (3.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.51997571 BTC (324,796.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,528,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.69 % (469,934.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,907.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00230323 BTC (3,520.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.15 CZK over 3378 transactions" + } + ] + }, + { + "id": 5070, + "type": "message", + "date": "2024-05-19T10:00:07", + "date_unixtime": "1716105607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005408 BTC for 82.71 CZK @ 1,529,378 CZK\nFees are 0.29049378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (59.645727966540186271127975162 CZK)\nThe limits being 0.10 % (3.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52002979 BTC (324,879.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,529,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.81 % (470,442.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,824.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00235731 BTC (3,605.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.15 CZK over 3379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005408 BTC for 82.71 CZK @ 1,529,378 CZK\nFees are 0.29049378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (59.645727966540186271127975162 CZK)\nThe limits being 0.10 % (3.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52002979 BTC (324,879.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,529,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.81 % (470,442.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,824.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00235731 BTC (3,605.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.15 CZK over 3379 transactions" + } + ] + }, + { + "id": 5071, + "type": "message", + "date": "2024-05-19T14:00:05", + "date_unixtime": "1716120005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005394 BTC for 82.71 CZK @ 1,533,377 CZK\nFees are 0.29049937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (59.801686540933207633128322285 CZK)\nThe limits being 0.10 % (3.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52008373 BTC (324,962.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,533,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.41 % (472,521.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,741.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00241125 BTC (3,697.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.14 CZK over 3380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005394 BTC for 82.71 CZK @ 1,533,377 CZK\nFees are 0.29049937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (59.801686540933207633128322285 CZK)\nThe limits being 0.10 % (3.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52008373 BTC (324,962.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,533,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.41 % (472,521.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,741.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00241125 BTC (3,697.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.14 CZK over 3380 transactions" + } + ] + }, + { + "id": 5072, + "type": "message", + "date": "2024-05-19T18:00:06", + "date_unixtime": "1716134406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005431 BTC for 82.70 CZK @ 1,522,706 CZK\nFees are 0.29045663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (39.590357579075335387091598113 CZK)\nThe limits being 0.10 % (3.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52013804 BTC (325,045.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 624,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.66 % (466,971.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,658.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00246556 BTC (3,754.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.14 CZK over 3381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005431 BTC for 82.70 CZK @ 1,522,706 CZK\nFees are 0.29045663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (39.590357579075335387091598113 CZK)\nThe limits being 0.10 % (3.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52013804 BTC (325,045.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 624,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.66 % (466,971.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,658.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00246556 BTC (3,754.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.14 CZK over 3381 transactions" + } + ] + }, + { + "id": 5073, + "type": "message", + "date": "2024-05-19T22:00:06", + "date_unixtime": "1716148806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005500 BTC for 82.70 CZK @ 1,503,589 CZK\nFees are 0.29045384 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (39.093302353761833582461385150 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52019304 BTC (325,128.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.57 % (457,027.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,575.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00252056 BTC (3,789.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.13 CZK over 3382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005500 BTC for 82.70 CZK @ 1,503,589 CZK\nFees are 0.29045384 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (39.093302353761833582461385150 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52019304 BTC (325,128.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.57 % (457,027.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,575.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00252056 BTC (3,789.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.13 CZK over 3382 transactions" + } + ] + }, + { + "id": 5074, + "type": "message", + "date": "2024-05-20T02:00:07", + "date_unixtime": "1716163207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005477 BTC for 82.71 CZK @ 1,510,085 CZK\nFees are 0.29048885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (39.262202083833113225492772739 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52024781 BTC (325,211.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.57 % (460,406.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,492.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00257533 BTC (3,888.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.13 CZK over 3383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005477 BTC for 82.71 CZK @ 1,510,085 CZK\nFees are 0.29048885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (39.262202083833113225492772739 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52024781 BTC (325,211.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.57 % (460,406.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,492.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00257533 BTC (3,888.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.13 CZK over 3383 transactions" + } + ] + }, + { + "id": 5075, + "type": "message", + "date": "2024-05-20T06:00:06", + "date_unixtime": "1716177606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005446 BTC for 82.70 CZK @ 1,518,624 CZK\nFees are 0.29047803 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (39.484221820762842354367133322 CZK)\nThe limits being 0.10 % (3.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52030227 BTC (325,294.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.90 % (464,849.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,409.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00262979 BTC (3,993.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.13 CZK over 3384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005446 BTC for 82.70 CZK @ 1,518,624 CZK\nFees are 0.29047803 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (39.484221820762842354367133322 CZK)\nThe limits being 0.10 % (3.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52030227 BTC (325,294.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.90 % (464,849.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,409.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00262979 BTC (3,993.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.13 CZK over 3384 transactions" + } + ] + }, + { + "id": 5076, + "type": "message", + "date": "2024-05-20T10:00:05", + "date_unixtime": "1716192005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005434 BTC for 82.70 CZK @ 1,521,828 CZK\nFees are 0.29044947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (39.567524835325165747634475507 CZK)\nThe limits being 0.10 % (4.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52035661 BTC (325,377.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,521,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.38 % (466,515.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,326.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00268413 BTC (4,084.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.12 CZK over 3385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005434 BTC for 82.70 CZK @ 1,521,828 CZK\nFees are 0.29044947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (39.567524835325165747634475507 CZK)\nThe limits being 0.10 % (4.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52035661 BTC (325,377.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,521,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.38 % (466,515.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,326.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00268413 BTC (4,084.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.12 CZK over 3385 transactions" + } + ] + }, + { + "id": 5077, + "type": "message", + "date": "2024-05-20T14:00:06", + "date_unixtime": "1716206406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005409 BTC for 82.70 CZK @ 1,528,869 CZK\nFees are 0.29045094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (39.750603802940401882374528860 CZK)\nThe limits being 0.10 % (4.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52041070 BTC (325,460.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,528,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.47 % (470,179.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,243.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00273822 BTC (4,186.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.12 CZK over 3386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005409 BTC for 82.70 CZK @ 1,528,869 CZK\nFees are 0.29045094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (39.750603802940401882374528860 CZK)\nThe limits being 0.10 % (4.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52041070 BTC (325,460.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,528,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.47 % (470,179.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,243.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00273822 BTC (4,186.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.12 CZK over 3386 transactions" + } + ] + }, + { + "id": 5078, + "type": "message", + "date": "2024-05-20T18:00:07", + "date_unixtime": "1716220807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005385 BTC for 82.70 CZK @ 1,535,739 CZK\nFees are 0.29046156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (39.929225697431320924581976084 CZK)\nThe limits being 0.10 % (4.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52046455 BTC (325,543.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.53 % (473,754.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,160.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00279207 BTC (4,287.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.12 CZK over 3387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005385 BTC for 82.70 CZK @ 1,535,739 CZK\nFees are 0.29046156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (39.929225697431320924581976084 CZK)\nThe limits being 0.10 % (4.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52046455 BTC (325,543.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.53 % (473,754.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,160.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00279207 BTC (4,287.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.12 CZK over 3387 transactions" + } + ] + }, + { + "id": 5079, + "type": "message", + "date": "2024-05-20T22:00:07", + "date_unixtime": "1716235207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005203 BTC for 82.70 CZK @ 1,589,426 CZK\nFees are 0.29045545 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (41.325072498417751975332157169 CZK)\nThe limits being 0.10 % (4.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52051658 BTC (325,626.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.07 % (501,696.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,077.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00284410 BTC (4,520.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.11 CZK over 3388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005203 BTC for 82.70 CZK @ 1,589,426 CZK\nFees are 0.29045545 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (41.325072498417751975332157169 CZK)\nThe limits being 0.10 % (4.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52051658 BTC (325,626.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.07 % (501,696.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,077.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00284410 BTC (4,520.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.11 CZK over 3388 transactions" + } + ] + }, + { + "id": 5080, + "type": "message", + "date": "2024-05-21T02:00:06", + "date_unixtime": "1716249606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005192 BTC for 82.71 CZK @ 1,592,959 CZK\nFees are 0.29048560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (41.416924763328350772296960638 CZK)\nThe limits being 0.10 % (4.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52056850 BTC (325,709.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.60 % (503,534.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 994.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00289602 BTC (4,613.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.11 CZK over 3389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005192 BTC for 82.71 CZK @ 1,592,959 CZK\nFees are 0.29048560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (41.416924763328350772296960638 CZK)\nThe limits being 0.10 % (4.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52056850 BTC (325,709.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.60 % (503,534.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 994.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00289602 BTC (4,613.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.11 CZK over 3389 transactions" + } + ] + }, + { + "id": 5081, + "type": "message", + "date": "2024-05-21T06:00:06", + "date_unixtime": "1716264006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005228 BTC for 82.71 CZK @ 1,581,979 CZK\nFees are 0.29048373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (41.131463362927534806448280293 CZK)\nThe limits being 0.10 % (4.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52062078 BTC (325,792.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.80 % (497,819.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 911.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00294830 BTC (4,664.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.10 CZK over 3390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005228 BTC for 82.71 CZK @ 1,581,979 CZK\nFees are 0.29048373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (41.131463362927534806448280293 CZK)\nThe limits being 0.10 % (4.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52062078 BTC (325,792.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.80 % (497,819.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 911.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00294830 BTC (4,664.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.10 CZK over 3390 transactions" + } + ] + }, + { + "id": 5082, + "type": "message", + "date": "2024-05-21T10:00:05", + "date_unixtime": "1716278405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005142 BTC for 82.70 CZK @ 1,608,322 CZK\nFees are 0.29046275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (62.724551114273903647618399774 CZK)\nThe limits being 0.10 % (4.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52067220 BTC (325,875.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,608,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.97 % (511,533.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 828.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00299972 BTC (4,824.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.10 CZK over 3391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005142 BTC for 82.70 CZK @ 1,608,322 CZK\nFees are 0.29046275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (62.724551114273903647618399774 CZK)\nThe limits being 0.10 % (4.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52067220 BTC (325,875.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,608,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.97 % (511,533.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 828.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00299972 BTC (4,824.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.10 CZK over 3391 transactions" + } + ] + }, + { + "id": 5083, + "type": "message", + "date": "2024-05-21T14:00:05", + "date_unixtime": "1716292805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005113 BTC for 82.70 CZK @ 1,617,388 CZK\nFees are 0.29045277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (63.078145834192101554202380465 CZK)\nThe limits being 0.10 % (4.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52072333 BTC (325,958.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 625,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,617,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.38 % (516,253.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 745.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00305085 BTC (4,934.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.10 CZK over 3392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005113 BTC for 82.70 CZK @ 1,617,388 CZK\nFees are 0.29045277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (63.078145834192101554202380465 CZK)\nThe limits being 0.10 % (4.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52072333 BTC (325,958.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 625,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,617,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.38 % (516,253.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 745.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00305085 BTC (4,934.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.10 CZK over 3392 transactions" + } + ] + }, + { + "id": 5084, + "type": "message", + "date": "2024-05-21T18:00:06", + "date_unixtime": "1716307206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005195 BTC for 82.70 CZK @ 1,591,980 CZK\nFees are 0.29047492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.26 % (62.087228316292399124718921693 CZK)\nThe limits being 0.10 % (4.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52077528 BTC (326,041.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.28 % (503,022.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 662.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00310280 BTC (4,939.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.09 CZK over 3393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005195 BTC for 82.70 CZK @ 1,591,980 CZK\nFees are 0.29047492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.26 % (62.087228316292399124718921693 CZK)\nThe limits being 0.10 % (4.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52077528 BTC (326,041.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.28 % (503,022.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 662.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00310280 BTC (4,939.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.09 CZK over 3393 transactions" + } + ] + }, + { + "id": 5085, + "type": "message", + "date": "2024-05-21T22:00:05", + "date_unixtime": "1716321605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005238 BTC for 82.71 CZK @ 1,579,000 CZK\nFees are 0.29049124 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (82.10799771475665639905234314 CZK)\nThe limits being 0.10 % (4.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52082766 BTC (326,124.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.17 % (496,262.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 579.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00315518 BTC (4,982.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.09 CZK over 3394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005238 BTC for 82.71 CZK @ 1,579,000 CZK\nFees are 0.29049124 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (82.10799771475665639905234314 CZK)\nThe limits being 0.10 % (4.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52082766 BTC (326,124.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.17 % (496,262.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 579.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00315518 BTC (4,982.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.09 CZK over 3394 transactions" + } + ] + }, + { + "id": 5086, + "type": "message", + "date": "2024-05-22T02:00:05", + "date_unixtime": "1716336005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005174 BTC for 82.70 CZK @ 1,598,347 CZK\nFees are 0.29045772 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (83.11404583455393559726885549 CZK)\nThe limits being 0.10 % (5.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52087940 BTC (326,207.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,598,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.22 % (506,338.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 496.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00320692 BTC (5,125.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.08 CZK over 3395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005174 BTC for 82.70 CZK @ 1,598,347 CZK\nFees are 0.29045772 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (83.11404583455393559726885549 CZK)\nThe limits being 0.10 % (5.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52087940 BTC (326,207.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,598,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.22 % (506,338.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 496.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00320692 BTC (5,125.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.08 CZK over 3395 transactions" + } + ] + }, + { + "id": 5087, + "type": "message", + "date": "2024-05-22T06:00:05", + "date_unixtime": "1716350405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005185 BTC for 82.71 CZK @ 1,595,153 CZK\nFees are 0.29049359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (41.473980548120152273215395104 CZK)\nThe limits being 0.10 % (5.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52093125 BTC (326,290.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,595,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.67 % (504,674.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 413.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00325877 BTC (5,198.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.08 CZK over 3396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005185 BTC for 82.71 CZK @ 1,595,153 CZK\nFees are 0.29049359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (41.473980548120152273215395104 CZK)\nThe limits being 0.10 % (5.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52093125 BTC (326,290.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,595,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.67 % (504,674.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 413.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00325877 BTC (5,198.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.08 CZK over 3396 transactions" + } + ] + }, + { + "id": 5088, + "type": "message", + "date": "2024-05-22T10:00:05", + "date_unixtime": "1716364805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005200 BTC for 82.71 CZK @ 1,590,503 CZK\nFees are 0.29048461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (62.029599103139013452914798208 CZK)\nThe limits being 0.10 % (5.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52098325 BTC (326,373.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.89 % (502,251.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 330.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00331077 BTC (5,265.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.08 CZK over 3397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005200 BTC for 82.71 CZK @ 1,590,503 CZK\nFees are 0.29048461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (62.029599103139013452914798208 CZK)\nThe limits being 0.10 % (5.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52098325 BTC (326,373.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.89 % (502,251.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 330.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00331077 BTC (5,265.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.08 CZK over 3397 transactions" + } + ] + }, + { + "id": 5089, + "type": "message", + "date": "2024-05-22T14:00:06", + "date_unixtime": "1716379206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,965 CZK\nFees are 0.29045927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (62.203620561208383963745021644 CZK)\nThe limits being 0.10 % (5.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52103510 BTC (326,456.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,594,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.56 % (504,576.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 247.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00336262 BTC (5,363.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.07 CZK over 3398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,965 CZK\nFees are 0.29045927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (62.203620561208383963745021644 CZK)\nThe limits being 0.10 % (5.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52103510 BTC (326,456.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,594,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.56 % (504,576.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 247.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00336262 BTC (5,363.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.07 CZK over 3398 transactions" + } + ] + }, + { + "id": 5090, + "type": "message", + "date": "2024-05-22T18:00:06", + "date_unixtime": "1716393606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005148 BTC for 82.70 CZK @ 1,606,374 CZK\nFees are 0.29044949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (62.648585337681750237804049463 CZK)\nThe limits being 0.10 % (5.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52108658 BTC (326,539.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,606,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.34 % (510,520.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 164.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00341410 BTC (5,484.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.07 CZK over 3399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005148 BTC for 82.70 CZK @ 1,606,374 CZK\nFees are 0.29044949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (62.648585337681750237804049463 CZK)\nThe limits being 0.10 % (5.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52108658 BTC (326,539.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,606,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.34 % (510,520.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 164.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00341410 BTC (5,484.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.07 CZK over 3399 transactions" + } + ] + }, + { + "id": 5091, + "type": "message", + "date": "2024-05-22T22:00:06", + "date_unixtime": "1716408006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,036 CZK\nFees are 0.29045532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (62.011418919955889821119256989 CZK)\nThe limits being 0.10 % (5.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52113859 BTC (326,622.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.70 % (502,007.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 81.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00346611 BTC (5,511.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.07 CZK over 3400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,036 CZK\nFees are 0.29045532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (62.011418919955889821119256989 CZK)\nThe limits being 0.10 % (5.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52113859 BTC (326,622.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.70 % (502,007.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 81.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00346611 BTC (5,511.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.07 CZK over 3400 transactions" + } + ] + }, + { + "id": 5092, + "type": "message", + "date": "2024-05-23T02:00:02", + "date_unixtime": "1716422402", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5093, + "type": "message", + "date": "2024-05-23T06:00:02", + "date_unixtime": "1716436802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5094, + "type": "message", + "date": "2024-05-23T10:00:02", + "date_unixtime": "1716451202", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5095, + "type": "message", + "date": "2024-05-23T14:00:02", + "date_unixtime": "1716465602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (81.40619321 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5096, + "type": "message", + "date": "2024-05-23T18:00:06", + "date_unixtime": "1716480006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005301 BTC for 82.70 CZK @ 1,560,058 CZK\nFees are 0.29045840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.22 % (121.68451489283828050606127000 CZK)\nThe limits being 0.10 % (5.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52119160 BTC (326,705.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,560,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.88 % (486,383.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,998.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00351912 BTC (5,490.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.06 CZK over 3401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005301 BTC for 82.70 CZK @ 1,560,058 CZK\nFees are 0.29045840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.22 % (121.68451489283828050606127000 CZK)\nThe limits being 0.10 % (5.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52119160 BTC (326,705.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,560,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.88 % (486,383.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,998.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00351912 BTC (5,490.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.06 CZK over 3401 transactions" + } + ] + }, + { + "id": 5097, + "type": "message", + "date": "2024-05-23T22:00:05", + "date_unixtime": "1716494405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005365 BTC for 82.71 CZK @ 1,541,607 CZK\nFees are 0.29048842 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (60.122674221027893519002224739 CZK)\nThe limits being 0.10 % (5.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52124525 BTC (326,788.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 626,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.89 % (476,767.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,915.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00357277 BTC (5,507.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.06 CZK over 3402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005365 BTC for 82.71 CZK @ 1,541,607 CZK\nFees are 0.29048842 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (60.122674221027893519002224739 CZK)\nThe limits being 0.10 % (5.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52124525 BTC (326,788.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 626,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.89 % (476,767.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,915.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00357277 BTC (5,507.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.06 CZK over 3402 transactions" + } + ] + }, + { + "id": 5098, + "type": "message", + "date": "2024-05-24T02:00:07", + "date_unixtime": "1716508807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005312 BTC for 82.70 CZK @ 1,556,893 CZK\nFees are 0.29047065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (60.718827719510328308750697857 CZK)\nThe limits being 0.10 % (5.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52129837 BTC (326,871.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.30 % (484,734.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,832.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00362589 BTC (5,645.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.05 CZK over 3403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005312 BTC for 82.70 CZK @ 1,556,893 CZK\nFees are 0.29047065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (60.718827719510328308750697857 CZK)\nThe limits being 0.10 % (5.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52129837 BTC (326,871.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.30 % (484,734.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,832.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00362589 BTC (5,645.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.05 CZK over 3403 transactions" + } + ] + }, + { + "id": 5099, + "type": "message", + "date": "2024-05-24T06:00:05", + "date_unixtime": "1716523205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005317 BTC for 82.70 CZK @ 1,555,403 CZK\nFees are 0.29046586 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (40.440486224863345040524423688 CZK)\nThe limits being 0.10 % (5.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52135154 BTC (326,954.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,555,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.02 % (483,957.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,749.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00367906 BTC (5,722.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.05 CZK over 3404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005317 BTC for 82.70 CZK @ 1,555,403 CZK\nFees are 0.29046586 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (40.440486224863345040524423688 CZK)\nThe limits being 0.10 % (5.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52135154 BTC (326,954.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,555,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.02 % (483,957.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,749.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00367906 BTC (5,722.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.05 CZK over 3404 transactions" + } + ] + }, + { + "id": 5100, + "type": "message", + "date": "2024-05-24T10:00:05", + "date_unixtime": "1716537605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005376 BTC for 82.70 CZK @ 1,538,357 CZK\nFees are 0.29047034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (39.997280817733171993261679358 CZK)\nThe limits being 0.10 % (5.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52140530 BTC (327,037.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,538,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.26 % (475,070.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,666.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00373282 BTC (5,742.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.05 CZK over 3405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005376 BTC for 82.70 CZK @ 1,538,357 CZK\nFees are 0.29047034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (39.997280817733171993261679358 CZK)\nThe limits being 0.10 % (5.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52140530 BTC (327,037.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,538,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.26 % (475,070.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,666.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00373282 BTC (5,742.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.05 CZK over 3405 transactions" + } + ] + }, + { + "id": 5101, + "type": "message", + "date": "2024-05-24T14:00:06", + "date_unixtime": "1716552006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005364 BTC for 82.70 CZK @ 1,541,773 CZK\nFees are 0.29046563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (40.086109566925901031698525702 CZK)\nThe limits being 0.10 % (5.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52145894 BTC (327,120.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,317 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.77 % (476,851.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,583.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00378646 BTC (5,837.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.04 CZK over 3406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005364 BTC for 82.70 CZK @ 1,541,773 CZK\nFees are 0.29046563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (40.086109566925901031698525702 CZK)\nThe limits being 0.10 % (5.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52145894 BTC (327,120.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,317 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.77 % (476,851.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,583.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00378646 BTC (5,837.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.04 CZK over 3406 transactions" + } + ] + }, + { + "id": 5102, + "type": "message", + "date": "2024-05-24T18:00:05", + "date_unixtime": "1716566405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,468 CZK\nFees are 0.29044602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (60.702250517317002011874306665 CZK)\nThe limits being 0.10 % (5.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52151207 BTC (327,203.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.08 % (484,513.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,500.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00383959 BTC (5,976.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.04 CZK over 3407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,468 CZK\nFees are 0.29044602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (60.702250517317002011874306665 CZK)\nThe limits being 0.10 % (5.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52151207 BTC (327,203.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.08 % (484,513.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,500.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00383959 BTC (5,976.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.04 CZK over 3407 transactions" + } + ] + }, + { + "id": 5103, + "type": "message", + "date": "2024-05-24T22:00:06", + "date_unixtime": "1716580806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005254 BTC for 82.70 CZK @ 1,574,109 CZK\nFees are 0.29047599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (61.390243244950249308235792166 CZK)\nThe limits being 0.10 % (6.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52156461 BTC (327,286.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,508 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.85 % (493,713.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,417.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00389213 BTC (6,126.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.03 CZK over 3408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005254 BTC for 82.70 CZK @ 1,574,109 CZK\nFees are 0.29047599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (61.390243244950249308235792166 CZK)\nThe limits being 0.10 % (6.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52156461 BTC (327,286.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,508 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.85 % (493,713.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,417.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00389213 BTC (6,126.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.03 CZK over 3408 transactions" + } + ] + }, + { + "id": 5104, + "type": "message", + "date": "2024-05-25T02:00:05", + "date_unixtime": "1716595205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005295 BTC for 82.71 CZK @ 1,561,994 CZK\nFees are 0.29048965 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (81.22367208933040307930740991 CZK)\nThe limits being 0.10 % (6.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52161756 BTC (327,369.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.88 % (487,394.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,334.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00394508 BTC (6,162.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.03 CZK over 3409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005295 BTC for 82.71 CZK @ 1,561,994 CZK\nFees are 0.29048965 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (81.22367208933040307930740991 CZK)\nThe limits being 0.10 % (6.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52161756 BTC (327,369.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.88 % (487,394.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,334.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00394508 BTC (6,162.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.03 CZK over 3409 transactions" + } + ] + }, + { + "id": 5105, + "type": "message", + "date": "2024-05-25T06:00:05", + "date_unixtime": "1716609605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005274 BTC for 82.70 CZK @ 1,568,153 CZK\nFees are 0.29047849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (61.157967013065193325068744041 CZK)\nThe limits being 0.10 % (6.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52167030 BTC (327,452.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.83 % (490,606.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,251.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00399782 BTC (6,269.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.03 CZK over 3410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005274 BTC for 82.70 CZK @ 1,568,153 CZK\nFees are 0.29047849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (61.157967013065193325068744041 CZK)\nThe limits being 0.10 % (6.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52167030 BTC (327,452.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.83 % (490,606.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,251.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00399782 BTC (6,269.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.03 CZK over 3410 transactions" + } + ] + }, + { + "id": 5106, + "type": "message", + "date": "2024-05-25T10:00:05", + "date_unixtime": "1716624005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005277 BTC for 82.70 CZK @ 1,567,192 CZK\nFees are 0.29046554 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (61.120472838527348708174034430 CZK)\nThe limits being 0.10 % (6.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52172307 BTC (327,535.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.63 % (490,104.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,168.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00405059 BTC (6,348.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.02 CZK over 3411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005277 BTC for 82.70 CZK @ 1,567,192 CZK\nFees are 0.29046554 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (61.120472838527348708174034430 CZK)\nThe limits being 0.10 % (6.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52172307 BTC (327,535.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.63 % (490,104.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,168.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00405059 BTC (6,348.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.02 CZK over 3411 transactions" + } + ] + }, + { + "id": 5107, + "type": "message", + "date": "2024-05-25T14:00:07", + "date_unixtime": "1716638407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005247 BTC for 82.70 CZK @ 1,576,225 CZK\nFees are 0.29047898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (61.472777347893009116462877354 CZK)\nThe limits being 0.10 % (6.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52177554 BTC (327,618.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.03 % (494,817.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,085.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00410306 BTC (6,467.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.02 CZK over 3412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005247 BTC for 82.70 CZK @ 1,576,225 CZK\nFees are 0.29047898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (61.472777347893009116462877354 CZK)\nThe limits being 0.10 % (6.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52177554 BTC (327,618.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.03 % (494,817.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,085.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00410306 BTC (6,467.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.02 CZK over 3412 transactions" + } + ] + }, + { + "id": 5108, + "type": "message", + "date": "2024-05-25T18:00:05", + "date_unixtime": "1716652805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,342 CZK\nFees are 0.29046211 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (61.282335080874548807465718744 CZK)\nThe limits being 0.10 % (6.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52182817 BTC (327,701.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 627,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.22 % (492,269.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,002.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00415569 BTC (6,530.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.02 CZK over 3413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,342 CZK\nFees are 0.29046211 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (61.282335080874548807465718744 CZK)\nThe limits being 0.10 % (6.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52182817 BTC (327,701.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 627,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.22 % (492,269.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,002.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00415569 BTC (6,530.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.02 CZK over 3413 transactions" + } + ] + }, + { + "id": 5109, + "type": "message", + "date": "2024-05-25T22:00:05", + "date_unixtime": "1716667205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005246 BTC for 82.70 CZK @ 1,576,434 CZK\nFees are 0.29046204 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (61.480909555974599766239435330 CZK)\nThe limits being 0.10 % (6.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52188063 BTC (327,784.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.99 % (494,926.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,919.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00420815 BTC (6,633.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.01 CZK over 3414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005246 BTC for 82.70 CZK @ 1,576,434 CZK\nFees are 0.29046204 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.93 % (61.480909555974599766239435330 CZK)\nThe limits being 0.10 % (6.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52188063 BTC (327,784.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.99 % (494,926.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,919.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00420815 BTC (6,633.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.01 CZK over 3414 transactions" + } + ] + }, + { + "id": 5110, + "type": "message", + "date": "2024-05-26T02:00:05", + "date_unixtime": "1716681605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005238 BTC for 82.71 CZK @ 1,578,959 CZK\nFees are 0.29048367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (61.579395306575896161829929724 CZK)\nThe limits being 0.10 % (6.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52193301 BTC (327,867.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.36 % (496,243.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,836.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00426053 BTC (6,727.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.01 CZK over 3415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005238 BTC for 82.71 CZK @ 1,578,959 CZK\nFees are 0.29048367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.92 % (61.579395306575896161829929724 CZK)\nThe limits being 0.10 % (6.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52193301 BTC (327,867.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.36 % (496,243.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,836.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00426053 BTC (6,727.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.01 CZK over 3415 transactions" + } + ] + }, + { + "id": 5111, + "type": "message", + "date": "2024-05-26T06:00:07", + "date_unixtime": "1716696007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005250 BTC for 82.70 CZK @ 1,575,242 CZK\nFees are 0.29046372 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (61.434423033667876717204071467 CZK)\nThe limits being 0.10 % (6.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52198551 BTC (327,950.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.73 % (494,303.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,753.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00431303 BTC (6,794.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.00 CZK over 3416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005250 BTC for 82.70 CZK @ 1,575,242 CZK\nFees are 0.29046372 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (61.434423033667876717204071467 CZK)\nThe limits being 0.10 % (6.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52198551 BTC (327,950.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.73 % (494,303.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,753.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00431303 BTC (6,794.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.00 CZK over 3416 transactions" + } + ] + }, + { + "id": 5112, + "type": "message", + "date": "2024-05-26T10:00:05", + "date_unixtime": "1716710405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005233 BTC for 82.71 CZK @ 1,580,481 CZK\nFees are 0.29048609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (41.092496529679087078275910103 CZK)\nThe limits being 0.10 % (6.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52203784 BTC (328,033.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.52 % (497,037.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,670.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00436536 BTC (6,899.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.00 CZK over 3417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005233 BTC for 82.71 CZK @ 1,580,481 CZK\nFees are 0.29048609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (41.092496529679087078275910103 CZK)\nThe limits being 0.10 % (6.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52203784 BTC (328,033.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.52 % (497,037.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,670.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00436536 BTC (6,899.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.00 CZK over 3417 transactions" + } + ] + }, + { + "id": 5113, + "type": "message", + "date": "2024-05-26T14:00:05", + "date_unixtime": "1716724805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,574,894 CZK\nFees are 0.29045489 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (40.947237544237902059986770736 CZK)\nThe limits being 0.10 % (6.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52209035 BTC (328,116.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.59 % (494,120.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,587.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00441787 BTC (6,957.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 96.00 CZK over 3418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,574,894 CZK\nFees are 0.29045489 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (40.947237544237902059986770736 CZK)\nThe limits being 0.10 % (6.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52209035 BTC (328,116.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.59 % (494,120.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,587.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00441787 BTC (6,957.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 96.00 CZK over 3418 transactions" + } + ] + }, + { + "id": 5114, + "type": "message", + "date": "2024-05-26T18:00:05", + "date_unixtime": "1716739205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005272 BTC for 82.70 CZK @ 1,568,608 CZK\nFees are 0.29045261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (40.783811416491445343422452373 CZK)\nThe limits being 0.10 % (7.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52214307 BTC (328,199.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,608 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.56 % (490,838.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,504.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00447059 BTC (7,012.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.99 CZK over 3419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005272 BTC for 82.70 CZK @ 1,568,608 CZK\nFees are 0.29045261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (40.783811416491445343422452373 CZK)\nThe limits being 0.10 % (7.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52214307 BTC (328,199.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,608 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.56 % (490,838.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,504.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00447059 BTC (7,012.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.99 CZK over 3419 transactions" + } + ] + }, + { + "id": 5115, + "type": "message", + "date": "2024-05-26T22:00:05", + "date_unixtime": "1716753605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005279 BTC for 82.71 CZK @ 1,566,759 CZK\nFees are 0.29049533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (40.735721913254357994792426166 CZK)\nThe limits being 0.10 % (7.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52219586 BTC (328,282.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,566,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.22 % (489,872.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,421.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00452338 BTC (7,087.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.99 CZK over 3420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005279 BTC for 82.71 CZK @ 1,566,759 CZK\nFees are 0.29049533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (40.735721913254357994792426166 CZK)\nThe limits being 0.10 % (7.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52219586 BTC (328,282.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,566,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.22 % (489,872.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,421.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00452338 BTC (7,087.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.99 CZK over 3420 transactions" + } + ] + }, + { + "id": 5116, + "type": "message", + "date": "2024-05-27T02:00:06", + "date_unixtime": "1716768006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005303 BTC for 82.70 CZK @ 1,559,561 CZK\nFees are 0.29047537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (40.548576839443993918701102808 CZK)\nThe limits being 0.10 % (7.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52224889 BTC (328,365.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.04 % (486,113.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,338.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00457641 BTC (7,137.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.99 CZK over 3421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005303 BTC for 82.70 CZK @ 1,559,561 CZK\nFees are 0.29047537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (40.548576839443993918701102808 CZK)\nThe limits being 0.10 % (7.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52224889 BTC (328,365.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.04 % (486,113.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,338.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00457641 BTC (7,137.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.99 CZK over 3421 transactions" + } + ] + }, + { + "id": 5117, + "type": "message", + "date": "2024-05-27T06:00:05", + "date_unixtime": "1716782405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005274 BTC for 82.71 CZK @ 1,568,262 CZK\nFees are 0.29049873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (40.774819072948888220012663302 CZK)\nThe limits being 0.10 % (7.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52230163 BTC (328,448.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.39 % (490,657.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,255.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00462915 BTC (7,259.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.98 CZK over 3422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005274 BTC for 82.71 CZK @ 1,568,262 CZK\nFees are 0.29049873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (40.774819072948888220012663302 CZK)\nThe limits being 0.10 % (7.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52230163 BTC (328,448.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.39 % (490,657.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,255.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00462915 BTC (7,259.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.98 CZK over 3422 transactions" + } + ] + }, + { + "id": 5118, + "type": "message", + "date": "2024-05-27T10:00:05", + "date_unixtime": "1716796805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005283 BTC for 82.71 CZK @ 1,565,595 CZK\nFees are 0.29049948 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (61.058191064380856666629884557 CZK)\nThe limits being 0.10 % (7.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52235446 BTC (328,531.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 628,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.92 % (489,264.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,172.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00468198 BTC (7,330.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.98 CZK over 3423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005283 BTC for 82.71 CZK @ 1,565,595 CZK\nFees are 0.29049948 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (61.058191064380856666629884557 CZK)\nThe limits being 0.10 % (7.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52235446 BTC (328,531.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 628,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.92 % (489,264.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,172.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00468198 BTC (7,330.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.98 CZK over 3423 transactions" + } + ] + }, + { + "id": 5119, + "type": "message", + "date": "2024-05-27T14:00:05", + "date_unixtime": "1716811205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005295 BTC for 82.69 CZK @ 1,561,756 CZK\nFees are 0.29044546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (60.908488036348700229084888441 CZK)\nThe limits being 0.10 % (7.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52240741 BTC (328,614.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.28 % (487,258.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,089.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00473493 BTC (7,394.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.97 CZK over 3424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005295 BTC for 82.69 CZK @ 1,561,756 CZK\nFees are 0.29044546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (60.908488036348700229084888441 CZK)\nThe limits being 0.10 % (7.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52240741 BTC (328,614.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.28 % (487,258.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,089.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00473493 BTC (7,394.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.97 CZK over 3424 transactions" + } + ] + }, + { + "id": 5120, + "type": "message", + "date": "2024-05-27T18:00:06", + "date_unixtime": "1716825606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005155 BTC for 82.70 CZK @ 1,604,187 CZK\nFees are 0.29044838 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.90 % (145.98097578475336322869955156 CZK)\nThe limits being 0.10 % (7.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52245896 BTC (328,697.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,604,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.98 % (509,424.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,006.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00478648 BTC (7,678.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.97 CZK over 3425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005155 BTC for 82.70 CZK @ 1,604,187 CZK\nFees are 0.29044838 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.90 % (145.98097578475336322869955156 CZK)\nThe limits being 0.10 % (7.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52245896 BTC (328,697.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,604,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.98 % (509,424.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,006.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00478648 BTC (7,678.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.97 CZK over 3425 transactions" + } + ] + }, + { + "id": 5121, + "type": "message", + "date": "2024-05-27T22:00:05", + "date_unixtime": "1716840005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005236 BTC for 82.70 CZK @ 1,579,484 CZK\nFees are 0.29046936 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (82.13317628559781026148739154 CZK)\nThe limits being 0.10 % (7.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52251132 BTC (328,779.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.02 % (496,518.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,923.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00483884 BTC (7,642.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.97 CZK over 3426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005236 BTC for 82.70 CZK @ 1,579,484 CZK\nFees are 0.29046936 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (82.13317628559781026148739154 CZK)\nThe limits being 0.10 % (7.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52251132 BTC (328,779.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.02 % (496,518.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,923.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00483884 BTC (7,642.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.97 CZK over 3426 transactions" + } + ] + }, + { + "id": 5122, + "type": "message", + "date": "2024-05-28T02:00:06", + "date_unixtime": "1716854406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,021 CZK\nFees are 0.29047434 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (61.659818160620584596999776254 CZK)\nThe limits being 0.10 % (7.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52256363 BTC (328,862.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.22 % (497,321.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,840.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00489115 BTC (7,733.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.96 CZK over 3427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,021 CZK\nFees are 0.29047434 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (61.659818160620584596999776254 CZK)\nThe limits being 0.10 % (7.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52256363 BTC (328,862.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.22 % (497,321.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,840.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00489115 BTC (7,733.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.96 CZK over 3427 transactions" + } + ] + }, + { + "id": 5123, + "type": "message", + "date": "2024-05-28T06:00:05", + "date_unixtime": "1716868805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005339 BTC for 82.71 CZK @ 1,549,165 CZK\nFees are 0.29049788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (60.417427707836208781532850047 CZK)\nThe limits being 0.10 % (7.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52261702 BTC (328,945.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.13 % (480,673.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,757.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00494454 BTC (7,659.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.96 CZK over 3428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005339 BTC for 82.71 CZK @ 1,549,165 CZK\nFees are 0.29049788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (60.417427707836208781532850047 CZK)\nThe limits being 0.10 % (7.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52261702 BTC (328,945.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.13 % (480,673.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,757.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00494454 BTC (7,659.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.96 CZK over 3428 transactions" + } + ] + }, + { + "id": 5124, + "type": "message", + "date": "2024-05-28T10:00:06", + "date_unixtime": "1716883206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005362 BTC for 82.70 CZK @ 1,542,399 CZK\nFees are 0.29047514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (40.102373985344468548814695005 CZK)\nThe limits being 0.10 % (7.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52267064 BTC (329,028.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,542,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.01 % (477,137.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,674.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00499816 BTC (7,709.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.95 CZK over 3429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005362 BTC for 82.70 CZK @ 1,542,399 CZK\nFees are 0.29047514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (40.102373985344468548814695005 CZK)\nThe limits being 0.10 % (7.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52267064 BTC (329,028.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,542,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.01 % (477,137.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,674.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00499816 BTC (7,709.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.95 CZK over 3429 transactions" + } + ] + }, + { + "id": 5125, + "type": "message", + "date": "2024-05-28T14:00:05", + "date_unixtime": "1716897605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005321 BTC for 82.70 CZK @ 1,554,257 CZK\nFees are 0.29047024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (60.616041279876755355503997614 CZK)\nThe limits being 0.10 % (7.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52272385 BTC (329,111.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.86 % (483,335.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,591.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00505137 BTC (7,851.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.95 CZK over 3430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005321 BTC for 82.70 CZK @ 1,554,257 CZK\nFees are 0.29047024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (60.616041279876755355503997614 CZK)\nThe limits being 0.10 % (7.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52272385 BTC (329,111.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.86 % (483,335.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,591.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00505137 BTC (7,851.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.95 CZK over 3430 transactions" + } + ] + }, + { + "id": 5126, + "type": "message", + "date": "2024-05-28T18:00:05", + "date_unixtime": "1716912005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,611 CZK\nFees are 0.29047277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (60.707841414450889982182631823 CZK)\nThe limits being 0.10 % (7.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52277698 BTC (329,194.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.20 % (484,565.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,508.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00510450 BTC (7,945.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.95 CZK over 3431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,611 CZK\nFees are 0.29047277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (60.707841414450889982182631823 CZK)\nThe limits being 0.10 % (7.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52277698 BTC (329,194.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.20 % (484,565.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,508.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00510450 BTC (7,945.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.95 CZK over 3431 transactions" + } + ] + }, + { + "id": 5127, + "type": "message", + "date": "2024-05-28T22:00:06", + "date_unixtime": "1716926406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005305 BTC for 82.70 CZK @ 1,558,910 CZK\nFees are 0.29046370 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (60.797491198336453891117187864 CZK)\nThe limits being 0.10 % (8.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52283003 BTC (329,277.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.52 % (485,767.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,425.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00515755 BTC (8,040.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.94 CZK over 3432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005305 BTC for 82.70 CZK @ 1,558,910 CZK\nFees are 0.29046370 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (60.797491198336453891117187864 CZK)\nThe limits being 0.10 % (8.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52283003 BTC (329,277.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.52 % (485,767.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,425.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00515755 BTC (8,040.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.94 CZK over 3432 transactions" + } + ] + }, + { + "id": 5128, + "type": "message", + "date": "2024-05-29T02:00:06", + "date_unixtime": "1716940806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005310 BTC for 82.71 CZK @ 1,557,548 CZK\nFees are 0.29048338 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (60.744358162814330633742353740 CZK)\nThe limits being 0.10 % (8.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52288313 BTC (329,360.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.27 % (485,054.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,342.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00521065 BTC (8,115.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.94 CZK over 3433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005310 BTC for 82.71 CZK @ 1,557,548 CZK\nFees are 0.29048338 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (60.744358162814330633742353740 CZK)\nThe limits being 0.10 % (8.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52288313 BTC (329,360.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.27 % (485,054.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,342.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00521065 BTC (8,115.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.94 CZK over 3433 transactions" + } + ] + }, + { + "id": 5129, + "type": "message", + "date": "2024-05-29T06:00:06", + "date_unixtime": "1716955206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005277 BTC for 82.70 CZK @ 1,567,246 CZK\nFees are 0.29047557 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (61.122584087020046097895569032 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52293590 BTC (329,443.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 629,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.77 % (490,125.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,259.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00526342 BTC (8,249.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.94 CZK over 3434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005277 BTC for 82.70 CZK @ 1,567,246 CZK\nFees are 0.29047557 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (61.122584087020046097895569032 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52293590 BTC (329,443.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 629,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.77 % (490,125.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,259.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00526342 BTC (8,249.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.94 CZK over 3434 transactions" + } + ] + }, + { + "id": 5130, + "type": "message", + "date": "2024-05-29T10:00:06", + "date_unixtime": "1716969606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005330 BTC for 82.70 CZK @ 1,551,503 CZK\nFees are 0.29044583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (80.67813638606341220362876274 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52298920 BTC (329,526.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.24 % (481,892.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,176.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00531672 BTC (8,248.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.93 CZK over 3435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005330 BTC for 82.70 CZK @ 1,551,503 CZK\nFees are 0.29044583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (80.67813638606341220362876274 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52298920 BTC (329,526.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.24 % (481,892.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,176.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00531672 BTC (8,248.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.93 CZK over 3435 transactions" + } + ] + }, + { + "id": 5131, + "type": "message", + "date": "2024-05-29T14:00:06", + "date_unixtime": "1716984006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005339 BTC for 82.70 CZK @ 1,549,019 CZK\nFees are 0.29047062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (120.82351723827066029339342643 CZK)\nThe limits being 0.10 % (8.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52304259 BTC (329,609.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.81 % (480,593.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,093.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00537011 BTC (8,318.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.93 CZK over 3436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005339 BTC for 82.70 CZK @ 1,549,019 CZK\nFees are 0.29047062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (120.82351723827066029339342643 CZK)\nThe limits being 0.10 % (8.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52304259 BTC (329,609.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.81 % (480,593.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,093.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00537011 BTC (8,318.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.93 CZK over 3436 transactions" + } + ] + }, + { + "id": 5132, + "type": "message", + "date": "2024-05-29T18:00:06", + "date_unixtime": "1716998406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005349 BTC for 82.70 CZK @ 1,546,058 CZK\nFees are 0.29045832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (120.59253122428203475161667758 CZK)\nThe limits being 0.10 % (8.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52309608 BTC (329,692.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.30 % (479,044.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,010.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00542360 BTC (8,385.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.92 CZK over 3437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005349 BTC for 82.70 CZK @ 1,546,058 CZK\nFees are 0.29045832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (120.59253122428203475161667758 CZK)\nThe limits being 0.10 % (8.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52309608 BTC (329,692.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.30 % (479,044.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,010.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00542360 BTC (8,385.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.92 CZK over 3437 transactions" + } + ] + }, + { + "id": 5133, + "type": "message", + "date": "2024-05-29T22:00:05", + "date_unixtime": "1717012805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005355 BTC for 82.70 CZK @ 1,544,324 CZK\nFees are 0.29045794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.14 % (180.68588257904058484380299205 CZK)\nThe limits being 0.10 % (8.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52314963 BTC (329,775.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.99 % (478,136.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,927.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00547715 BTC (8,458.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.92 CZK over 3438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005355 BTC for 82.70 CZK @ 1,544,324 CZK\nFees are 0.29045794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.14 % (180.68588257904058484380299205 CZK)\nThe limits being 0.10 % (8.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52314963 BTC (329,775.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.99 % (478,136.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,927.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00547715 BTC (8,458.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.92 CZK over 3438 transactions" + } + ] + }, + { + "id": 5134, + "type": "message", + "date": "2024-05-30T02:00:05", + "date_unixtime": "1717027205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005320 BTC for 82.71 CZK @ 1,554,647 CZK\nFees are 0.29048852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.59 % (222.31458362179739333385781345 CZK)\nThe limits being 0.10 % (8.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52320283 BTC (329,858.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.59 % (483,537.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,844.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00553035 BTC (8,597.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.92 CZK over 3439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005320 BTC for 82.71 CZK @ 1,554,647 CZK\nFees are 0.29048852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.59 % (222.31458362179739333385781345 CZK)\nThe limits being 0.10 % (8.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52320283 BTC (329,858.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.59 % (483,537.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,844.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00553035 BTC (8,597.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.92 CZK over 3439 transactions" + } + ] + }, + { + "id": 5135, + "type": "message", + "date": "2024-05-30T06:00:06", + "date_unixtime": "1717041606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005292 BTC for 82.71 CZK @ 1,562,884 CZK\nFees are 0.29049053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.33 % (203.17490782262082710513203788 CZK)\nThe limits being 0.10 % (8.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52325575 BTC (329,941.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.86 % (487,846.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,761.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00558327 BTC (8,726.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.91 CZK over 3440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005292 BTC for 82.71 CZK @ 1,562,884 CZK\nFees are 0.29049053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.33 % (203.17490782262082710513203788 CZK)\nThe limits being 0.10 % (8.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52325575 BTC (329,941.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.86 % (487,846.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,761.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00558327 BTC (8,726.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.91 CZK over 3440 transactions" + } + ] + }, + { + "id": 5136, + "type": "message", + "date": "2024-05-30T10:00:06", + "date_unixtime": "1717056006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005323 BTC for 82.70 CZK @ 1,553,582 CZK\nFees are 0.29045310 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.31 % (201.96563265841768725860015963 CZK)\nThe limits being 0.10 % (8.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52330898 BTC (330,024.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.35 % (482,978.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,678.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00563650 BTC (8,756.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.91 CZK over 3441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005323 BTC for 82.70 CZK @ 1,553,582 CZK\nFees are 0.29045310 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.31 % (201.96563265841768725860015963 CZK)\nThe limits being 0.10 % (8.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52330898 BTC (330,024.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.35 % (482,978.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,678.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00563650 BTC (8,756.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.91 CZK over 3441 transactions" + } + ] + }, + { + "id": 5137, + "type": "message", + "date": "2024-05-30T14:00:06", + "date_unixtime": "1717070406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005307 BTC for 82.71 CZK @ 1,558,515 CZK\nFees are 0.29049958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (101.30347819939426253449275755 CZK)\nThe limits being 0.10 % (8.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52336205 BTC (330,107.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.09 % (485,559.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,595.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00568957 BTC (8,867.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.91 CZK over 3442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005307 BTC for 82.71 CZK @ 1,558,515 CZK\nFees are 0.29049958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (101.30347819939426253449275755 CZK)\nThe limits being 0.10 % (8.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52336205 BTC (330,107.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.09 % (485,559.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,595.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00568957 BTC (8,867.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.91 CZK over 3442 transactions" + } + ] + }, + { + "id": 5138, + "type": "message", + "date": "2024-05-30T18:00:06", + "date_unixtime": "1717084806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005265 BTC for 82.71 CZK @ 1,570,875 CZK\nFees are 0.29048610 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (122.52823160420011441436453894 CZK)\nThe limits being 0.10 % (9.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52341470 BTC (330,190.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,570,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.01 % (492,028.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,512.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00574222 BTC (9,020.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.90 CZK over 3443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005265 BTC for 82.71 CZK @ 1,570,875 CZK\nFees are 0.29048610 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (122.52823160420011441436453894 CZK)\nThe limits being 0.10 % (9.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52341470 BTC (330,190.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,570,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.01 % (492,028.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,512.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00574222 BTC (9,020.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.90 CZK over 3443 transactions" + } + ] + }, + { + "id": 5139, + "type": "message", + "date": "2024-05-30T22:00:06", + "date_unixtime": "1717099206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005258 BTC for 82.70 CZK @ 1,572,928 CZK\nFees are 0.29047905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.02 % (184.03256036754584515246466199 CZK)\nThe limits being 0.10 % (9.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52346728 BTC (330,273.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 630,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.30 % (493,102.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,429.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00579480 BTC (9,114.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.90 CZK over 3444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005258 BTC for 82.70 CZK @ 1,572,928 CZK\nFees are 0.29047905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.02 % (184.03256036754584515246466199 CZK)\nThe limits being 0.10 % (9.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52346728 BTC (330,273.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 630,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.30 % (493,102.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,429.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00579480 BTC (9,114.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.90 CZK over 3444 transactions" + } + ] + }, + { + "id": 5140, + "type": "message", + "date": "2024-05-31T02:00:05", + "date_unixtime": "1717113605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005280 BTC for 82.70 CZK @ 1,566,225 CZK\nFees are 0.29045145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (162.88742180700880252449759177 CZK)\nThe limits being 0.10 % (9.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52352008 BTC (330,356.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,566,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.20 % (489,593.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,346.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00584760 BTC (9,158.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.89 CZK over 3445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005280 BTC for 82.70 CZK @ 1,566,225 CZK\nFees are 0.29045145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (162.88742180700880252449759177 CZK)\nThe limits being 0.10 % (9.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52352008 BTC (330,356.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,566,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.20 % (489,593.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,346.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00584760 BTC (9,158.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.89 CZK over 3445 transactions" + } + ] + }, + { + "id": 5141, + "type": "message", + "date": "2024-05-31T06:00:06", + "date_unixtime": "1717128006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005264 BTC for 82.70 CZK @ 1,571,065 CZK\nFees are 0.29046615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.76 % (163.39078471701627889014588756 CZK)\nThe limits being 0.10 % (9.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52357272 BTC (330,439.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.93 % (492,127.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,263.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00590024 BTC (9,269.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.89 CZK over 3446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005264 BTC for 82.70 CZK @ 1,571,065 CZK\nFees are 0.29046615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.76 % (163.39078471701627889014588756 CZK)\nThe limits being 0.10 % (9.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52357272 BTC (330,439.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.93 % (492,127.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,263.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00590024 BTC (9,269.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.89 CZK over 3446 transactions" + } + ] + }, + { + "id": 5142, + "type": "message", + "date": "2024-05-31T10:00:06", + "date_unixtime": "1717142406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005282 BTC for 82.71 CZK @ 1,565,873 CZK\nFees are 0.29049619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.53 % (142.49447350535903587726939053 CZK)\nThe limits being 0.10 % (9.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52362554 BTC (330,522.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.07 % (489,408.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,180.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00595306 BTC (9,321.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.89 CZK over 3447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005282 BTC for 82.71 CZK @ 1,565,873 CZK\nFees are 0.29049619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.53 % (142.49447350535903587726939053 CZK)\nThe limits being 0.10 % (9.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52362554 BTC (330,522.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.07 % (489,408.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,180.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00595306 BTC (9,321.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.89 CZK over 3447 transactions" + } + ] + }, + { + "id": 5143, + "type": "message", + "date": "2024-05-31T14:00:07", + "date_unixtime": "1717156807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005291 BTC for 82.70 CZK @ 1,562,999 CZK\nFees are 0.29045706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (142.23292653354536762608511487 CZK)\nThe limits being 0.10 % (9.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52367845 BTC (330,605.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.58 % (487,903.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,097.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00600597 BTC (9,387.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.88 CZK over 3448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005291 BTC for 82.70 CZK @ 1,562,999 CZK\nFees are 0.29045706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (142.23292653354536762608511487 CZK)\nThe limits being 0.10 % (9.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52367845 BTC (330,605.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.58 % (487,903.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,097.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00600597 BTC (9,387.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.88 CZK over 3448 transactions" + } + ] + }, + { + "id": 5144, + "type": "message", + "date": "2024-05-31T18:00:07", + "date_unixtime": "1717171207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005382 BTC for 82.70 CZK @ 1,536,681 CZK\nFees are 0.29047769 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.43 % (319.62960413432214303079319002 CZK)\nThe limits being 0.10 % (9.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52373227 BTC (330,688.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,536,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.37 % (474,120.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,014.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00605979 BTC (9,311.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.88 CZK over 3449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005382 BTC for 82.70 CZK @ 1,536,681 CZK\nFees are 0.29047769 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.43 % (319.62960413432214303079319002 CZK)\nThe limits being 0.10 % (9.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52373227 BTC (330,688.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,536,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.37 % (474,120.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,014.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00605979 BTC (9,311.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.88 CZK over 3449 transactions" + } + ] + }, + { + "id": 5145, + "type": "message", + "date": "2024-05-31T22:00:04", + "date_unixtime": "1717185604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005347 BTC for 82.71 CZK @ 1,546,819 CZK\nFees are 0.29049262 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.04 % (382.06428894101614985292266293 CZK)\nThe limits being 0.10 % (9.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52378574 BTC (330,771.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.94 % (479,429.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,931.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00611326 BTC (9,456.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.88 CZK over 3450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005347 BTC for 82.71 CZK @ 1,546,819 CZK\nFees are 0.29049262 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.04 % (382.06428894101614985292266293 CZK)\nThe limits being 0.10 % (9.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52378574 BTC (330,771.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.94 % (479,429.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,931.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00611326 BTC (9,456.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.88 CZK over 3450 transactions" + } + ] + }, + { + "id": 5146, + "type": "message", + "date": "2024-06-01T02:00:05", + "date_unixtime": "1717200005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005354 BTC for 82.70 CZK @ 1,544,648 CZK\nFees are 0.29046459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.58 % (341.36711681211389572432236148 CZK)\nThe limits being 0.10 % (9.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52383928 BTC (330,854.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.56 % (478,292.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,848.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00616680 BTC (9,525.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.87 CZK over 3451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005354 BTC for 82.70 CZK @ 1,544,648 CZK\nFees are 0.29046459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.58 % (341.36711681211389572432236148 CZK)\nThe limits being 0.10 % (9.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52383928 BTC (330,854.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.56 % (478,292.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,848.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00616680 BTC (9,525.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.87 CZK over 3451 transactions" + } + ] + }, + { + "id": 5147, + "type": "message", + "date": "2024-06-01T06:00:06", + "date_unixtime": "1717214406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005348 BTC for 82.70 CZK @ 1,546,454 CZK\nFees are 0.29047840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.46 % (140.72732096953855223993509627 CZK)\nThe limits being 0.10 % (9.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52389276 BTC (330,937.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,546,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.81 % (479,238.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,765.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00622028 BTC (9,619.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.87 CZK over 3452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005348 BTC for 82.70 CZK @ 1,546,454 CZK\nFees are 0.29047840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.46 % (140.72732096953855223993509627 CZK)\nThe limits being 0.10 % (9.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52389276 BTC (330,937.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,546,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.81 % (479,238.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,765.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00622028 BTC (9,619.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.87 CZK over 3452 transactions" + } + ] + }, + { + "id": 5148, + "type": "message", + "date": "2024-06-01T10:00:05", + "date_unixtime": "1717228805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005339 BTC for 82.71 CZK @ 1,549,163 CZK\nFees are 0.29049750 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (140.97381553269307564001738437 CZK)\nThe limits being 0.10 % (9.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52394615 BTC (331,020.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.20 % (480,657.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,682.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00627367 BTC (9,718.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.86 CZK over 3453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005339 BTC for 82.71 CZK @ 1,549,163 CZK\nFees are 0.29049750 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (140.97381553269307564001738437 CZK)\nThe limits being 0.10 % (9.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52394615 BTC (331,020.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.20 % (480,657.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,682.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00627367 BTC (9,718.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.86 CZK over 3453 transactions" + } + ] + }, + { + "id": 5149, + "type": "message", + "date": "2024-06-01T14:00:05", + "date_unixtime": "1717243205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005339 BTC for 82.70 CZK @ 1,548,967 CZK\nFees are 0.29046085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (120.81945114481782388723192371 CZK)\nThe limits being 0.10 % (9.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52399954 BTC (331,103.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.14 % (480,554.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,599.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00632706 BTC (9,800.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.86 CZK over 3454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005339 BTC for 82.70 CZK @ 1,548,967 CZK\nFees are 0.29046085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (120.81945114481782388723192371 CZK)\nThe limits being 0.10 % (9.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52399954 BTC (331,103.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.14 % (480,554.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,599.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00632706 BTC (9,800.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.86 CZK over 3454 transactions" + } + ] + }, + { + "id": 5150, + "type": "message", + "date": "2024-06-01T18:00:05", + "date_unixtime": "1717257605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005339 BTC for 82.71 CZK @ 1,549,170 CZK\nFees are 0.29049882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (100.69603865399739234462486746 CZK)\nThe limits being 0.10 % (9.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52405293 BTC (331,186.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 631,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.13 % (480,660.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,516.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00638045 BTC (9,884.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.86 CZK over 3455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005339 BTC for 82.71 CZK @ 1,549,170 CZK\nFees are 0.29049882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (100.69603865399739234462486746 CZK)\nThe limits being 0.10 % (9.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52405293 BTC (331,186.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 631,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.13 % (480,660.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,516.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00638045 BTC (9,884.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.86 CZK over 3455 transactions" + } + ] + }, + { + "id": 5151, + "type": "message", + "date": "2024-06-01T22:00:05", + "date_unixtime": "1717272005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,136 CZK\nFees are 0.29046226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (100.75885475811230515127699724 CZK)\nThe limits being 0.10 % (9.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52410628 BTC (331,269.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.25 % (481,166.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,433.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00643380 BTC (9,973.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.85 CZK over 3456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,136 CZK\nFees are 0.29046226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (100.75885475811230515127699724 CZK)\nThe limits being 0.10 % (9.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52410628 BTC (331,269.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.25 % (481,166.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,433.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00643380 BTC (9,973.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.85 CZK over 3456 transactions" + } + ] + }, + { + "id": 5152, + "type": "message", + "date": "2024-06-02T02:00:06", + "date_unixtime": "1717286406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005337 BTC for 82.70 CZK @ 1,549,646 CZK\nFees are 0.29047926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (100.72699057701268345127821782 CZK)\nThe limits being 0.10 % (10.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52415965 BTC (331,352.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.14 % (480,909.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,350.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00648717 BTC (10,052.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.85 CZK over 3457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005337 BTC for 82.70 CZK @ 1,549,646 CZK\nFees are 0.29047926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (100.72699057701268345127821782 CZK)\nThe limits being 0.10 % (10.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52415965 BTC (331,352.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.14 % (480,909.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,350.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00648717 BTC (10,052.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.85 CZK over 3457 transactions" + } + ] + }, + { + "id": 5153, + "type": "message", + "date": "2024-06-02T06:00:05", + "date_unixtime": "1717300805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005337 BTC for 82.70 CZK @ 1,549,646 CZK\nFees are 0.29047926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (100.72699057701268345127821782 CZK)\nThe limits being 0.10 % (10.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52421302 BTC (331,435.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.10 % (480,908.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,267.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00654054 BTC (10,135.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.85 CZK over 3458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005337 BTC for 82.70 CZK @ 1,549,646 CZK\nFees are 0.29047926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (100.72699057701268345127821782 CZK)\nThe limits being 0.10 % (10.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52421302 BTC (331,435.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.10 % (480,908.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,267.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00654054 BTC (10,135.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.85 CZK over 3458 transactions" + } + ] + }, + { + "id": 5154, + "type": "message", + "date": "2024-06-02T10:00:06", + "date_unixtime": "1717315206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005337 BTC for 82.70 CZK @ 1,549,646 CZK\nFees are 0.29047926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (80.58159246161014676102257426 CZK)\nThe limits being 0.10 % (10.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52426639 BTC (331,518.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.06 % (480,908.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,184.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00659391 BTC (10,218.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.84 CZK over 3459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005337 BTC for 82.70 CZK @ 1,549,646 CZK\nFees are 0.29047926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.79 % (80.58159246161014676102257426 CZK)\nThe limits being 0.10 % (10.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52426639 BTC (331,518.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.06 % (480,908.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,184.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00659391 BTC (10,218.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.84 CZK over 3459 transactions" + } + ] + }, + { + "id": 5155, + "type": "message", + "date": "2024-06-02T14:00:05", + "date_unixtime": "1717329605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005308 BTC for 82.70 CZK @ 1,558,014 CZK\nFees are 0.29046087 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (81.01671778766780473317015164 CZK)\nThe limits being 0.10 % (10.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52431947 BTC (331,601.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.35 % (485,295.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,101.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00664699 BTC (10,356.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.84 CZK over 3460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005308 BTC for 82.70 CZK @ 1,558,014 CZK\nFees are 0.29046087 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (81.01671778766780473317015164 CZK)\nThe limits being 0.10 % (10.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52431947 BTC (331,601.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.35 % (485,295.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,101.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00664699 BTC (10,356.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.84 CZK over 3460 transactions" + } + ] + }, + { + "id": 5156, + "type": "message", + "date": "2024-06-02T18:00:06", + "date_unixtime": "1717344006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005305 BTC for 82.71 CZK @ 1,559,039 CZK\nFees are 0.29048779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (81.07004631837578841632044676 CZK)\nThe limits being 0.10 % (10.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52437252 BTC (331,684.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.47 % (485,832.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,018.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00670004 BTC (10,445.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.83 CZK over 3461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005305 BTC for 82.71 CZK @ 1,559,039 CZK\nFees are 0.29048779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (81.07004631837578841632044676 CZK)\nThe limits being 0.10 % (10.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52437252 BTC (331,684.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.47 % (485,832.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,018.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00670004 BTC (10,445.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.83 CZK over 3461 transactions" + } + ] + }, + { + "id": 5157, + "type": "message", + "date": "2024-06-02T22:00:05", + "date_unixtime": "1717358405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,161 CZK\nFees are 0.29046696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (80.60838705243923680426847178 CZK)\nThe limits being 0.10 % (10.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52442587 BTC (331,767.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.03 % (481,176.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,935.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00675339 BTC (10,468.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.83 CZK over 3462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,161 CZK\nFees are 0.29046696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (80.60838705243923680426847178 CZK)\nThe limits being 0.10 % (10.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52442587 BTC (331,767.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.03 % (481,176.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,935.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00675339 BTC (10,468.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.83 CZK over 3462 transactions" + } + ] + }, + { + "id": 5158, + "type": "message", + "date": "2024-06-03T02:00:07", + "date_unixtime": "1717372807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005331 BTC for 82.70 CZK @ 1,551,384 CZK\nFees are 0.29047817 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (100.83998136796956291696002651 CZK)\nThe limits being 0.10 % (10.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52447918 BTC (331,850.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.19 % (481,818.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,852.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00680670 BTC (10,559.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.83 CZK over 3463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005331 BTC for 82.70 CZK @ 1,551,384 CZK\nFees are 0.29047817 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (100.83998136796956291696002651 CZK)\nThe limits being 0.10 % (10.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52447918 BTC (331,850.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.19 % (481,818.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,852.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00680670 BTC (10,559.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.83 CZK over 3463 transactions" + } + ] + }, + { + "id": 5159, + "type": "message", + "date": "2024-06-03T06:00:07", + "date_unixtime": "1717387207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005293 BTC for 82.71 CZK @ 1,562,627 CZK\nFees are 0.29049771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (81.25661796559199423969629818 CZK)\nThe limits being 0.10 % (10.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52453211 BTC (331,933.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.93 % (487,714.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,769.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00685963 BTC (10,719.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.82 CZK over 3464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005293 BTC for 82.71 CZK @ 1,562,627 CZK\nFees are 0.29049771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (81.25661796559199423969629818 CZK)\nThe limits being 0.10 % (10.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52453211 BTC (331,933.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.93 % (487,714.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,769.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00685963 BTC (10,719.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.82 CZK over 3464 transactions" + } + ] + }, + { + "id": 5160, + "type": "message", + "date": "2024-06-03T10:00:06", + "date_unixtime": "1717401606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005239 BTC for 82.70 CZK @ 1,578,492 CZK\nFees are 0.29045317 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.69 % (184.68352809088784786745151276 CZK)\nThe limits being 0.10 % (10.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52458450 BTC (332,016.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 632,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.40 % (496,035.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,686.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00691202 BTC (10,910.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.82 CZK over 3465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005239 BTC for 82.70 CZK @ 1,578,492 CZK\nFees are 0.29045317 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.69 % (184.68352809088784786745151276 CZK)\nThe limits being 0.10 % (10.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52458450 BTC (332,016.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 632,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.40 % (496,035.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,686.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00691202 BTC (10,910.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.82 CZK over 3465 transactions" + } + ] + }, + { + "id": 5161, + "type": "message", + "date": "2024-06-03T14:00:06", + "date_unixtime": "1717416006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005224 BTC for 82.71 CZK @ 1,583,180 CZK\nFees are 0.29048183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (82.32537792305796481075805889 CZK)\nThe limits being 0.10 % (11.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52463674 BTC (332,099.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.10 % (498,494.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,603.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00696426 BTC (11,025.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.82 CZK over 3466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005224 BTC for 82.71 CZK @ 1,583,180 CZK\nFees are 0.29048183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (82.32537792305796481075805889 CZK)\nThe limits being 0.10 % (11.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52463674 BTC (332,099.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.10 % (498,494.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,603.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00696426 BTC (11,025.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.82 CZK over 3466 transactions" + } + ] + }, + { + "id": 5162, + "type": "message", + "date": "2024-06-03T18:00:06", + "date_unixtime": "1717430406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005225 BTC for 82.70 CZK @ 1,582,686 CZK\nFees are 0.29044674 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.85 % (205.74919514331418980935148034 CZK)\nThe limits being 0.10 % (11.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52468899 BTC (332,182.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,582,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.99 % (498,235.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,520.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00701651 BTC (11,104.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.81 CZK over 3467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005225 BTC for 82.70 CZK @ 1,582,686 CZK\nFees are 0.29044674 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.85 % (205.74919514331418980935148034 CZK)\nThe limits being 0.10 % (11.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52468899 BTC (332,182.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,582,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.99 % (498,235.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,520.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00701651 BTC (11,104.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.81 CZK over 3467 transactions" + } + ] + }, + { + "id": 5163, + "type": "message", + "date": "2024-06-03T22:00:05", + "date_unixtime": "1717444805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,392 CZK\nFees are 0.29047138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (142.99667652575665959565234390 CZK)\nThe limits being 0.10 % (11.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52474162 BTC (332,265.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.17 % (492,309.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,437.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00706914 BTC (11,108.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.81 CZK over 3468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,392 CZK\nFees are 0.29047138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (142.99667652575665959565234390 CZK)\nThe limits being 0.10 % (11.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52474162 BTC (332,265.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.17 % (492,309.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,437.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00706914 BTC (11,108.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.81 CZK over 3468 transactions" + } + ] + }, + { + "id": 5164, + "type": "message", + "date": "2024-06-04T02:00:06", + "date_unixtime": "1717459206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005289 BTC for 82.71 CZK @ 1,563,729 CZK\nFees are 0.29048284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (81.31390832935548043560527377 CZK)\nThe limits being 0.10 % (11.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52479451 BTC (332,348.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,563,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.92 % (488,287.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,354.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00712203 BTC (11,136.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.81 CZK over 3469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005289 BTC for 82.71 CZK @ 1,563,729 CZK\nFees are 0.29048284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.73 % (81.31390832935548043560527377 CZK)\nThe limits being 0.10 % (11.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52479451 BTC (332,348.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,563,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.92 % (488,287.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,354.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00712203 BTC (11,136.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.81 CZK over 3469 transactions" + } + ] + }, + { + "id": 5165, + "type": "message", + "date": "2024-06-04T06:00:05", + "date_unixtime": "1717473605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005270 BTC for 82.70 CZK @ 1,569,241 CZK\nFees are 0.29045951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (81.60051657982639509345374680 CZK)\nThe limits being 0.10 % (11.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52484721 BTC (332,431.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,569,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.75 % (491,179.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,271.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00717473 BTC (11,258.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.80 CZK over 3470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005270 BTC for 82.70 CZK @ 1,569,241 CZK\nFees are 0.29045951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (81.60051657982639509345374680 CZK)\nThe limits being 0.10 % (11.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52484721 BTC (332,431.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,569,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.75 % (491,179.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,271.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00717473 BTC (11,258.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.80 CZK over 3470 transactions" + } + ] + }, + { + "id": 5166, + "type": "message", + "date": "2024-06-04T10:00:05", + "date_unixtime": "1717488005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005270 BTC for 82.71 CZK @ 1,569,444 CZK\nFees are 0.29049718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (81.61109887916013119168299945 CZK)\nThe limits being 0.10 % (11.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52489991 BTC (332,514.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,569,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.75 % (491,286.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,188.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00722743 BTC (11,343.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.80 CZK over 3471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005270 BTC for 82.71 CZK @ 1,569,444 CZK\nFees are 0.29049718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (81.61109887916013119168299945 CZK)\nThe limits being 0.10 % (11.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52489991 BTC (332,514.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,569,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.75 % (491,286.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,188.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00722743 BTC (11,343.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.80 CZK over 3471 transactions" + } + ] + }, + { + "id": 5167, + "type": "message", + "date": "2024-06-04T14:00:05", + "date_unixtime": "1717502405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005244 BTC for 82.70 CZK @ 1,577,057 CZK\nFees are 0.29046615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (102.50871332297295088851871235 CZK)\nThe limits being 0.10 % (11.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52495235 BTC (332,597.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.91 % (495,282.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,105.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00727987 BTC (11,480.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.79 CZK over 3472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005244 BTC for 82.70 CZK @ 1,577,057 CZK\nFees are 0.29046615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (102.50871332297295088851871235 CZK)\nThe limits being 0.10 % (11.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52495235 BTC (332,597.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.91 % (495,282.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,105.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00727987 BTC (11,480.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.79 CZK over 3472 transactions" + } + ] + }, + { + "id": 5168, + "type": "message", + "date": "2024-06-04T18:00:06", + "date_unixtime": "1717516806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005163 BTC for 82.70 CZK @ 1,601,713 CZK\nFees are 0.29045065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (124.93364527234284883789942638 CZK)\nThe limits being 0.10 % (11.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52500398 BTC (332,680.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,601,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.77 % (508,225.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,022.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00733150 BTC (11,742.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.79 CZK over 3473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005163 BTC for 82.70 CZK @ 1,601,713 CZK\nFees are 0.29045065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (124.93364527234284883789942638 CZK)\nThe limits being 0.10 % (11.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52500398 BTC (332,680.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,601,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.77 % (508,225.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,022.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00733150 BTC (11,742.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.79 CZK over 3473 transactions" + } + ] + }, + { + "id": 5169, + "type": "message", + "date": "2024-06-04T22:00:05", + "date_unixtime": "1717531205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005172 BTC for 82.71 CZK @ 1,599,097 CZK\nFees are 0.29048166 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (145.51781779683713345132716081 CZK)\nThe limits being 0.10 % (11.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52505570 BTC (332,763.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.32 % (506,851.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,939.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00738322 BTC (11,806.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.79 CZK over 3474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005172 BTC for 82.71 CZK @ 1,599,097 CZK\nFees are 0.29048166 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (145.51781779683713345132716081 CZK)\nThe limits being 0.10 % (11.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52505570 BTC (332,763.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.32 % (506,851.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,939.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00738322 BTC (11,806.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.79 CZK over 3474 transactions" + } + ] + }, + { + "id": 5170, + "type": "message", + "date": "2024-06-05T02:00:05", + "date_unixtime": "1717545605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005175 BTC for 82.70 CZK @ 1,597,978 CZK\nFees are 0.29044680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (145.41600878509756913604317257 CZK)\nThe limits being 0.10 % (11.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52510745 BTC (332,846.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,597,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.10 % (506,263.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,856.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00743497 BTC (11,880.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.78 CZK over 3475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005175 BTC for 82.70 CZK @ 1,597,978 CZK\nFees are 0.29044680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (145.41600878509756913604317257 CZK)\nThe limits being 0.10 % (11.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52510745 BTC (332,846.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,597,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.10 % (506,263.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,856.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00743497 BTC (11,880.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.78 CZK over 3475 transactions" + } + ] + }, + { + "id": 5171, + "type": "message", + "date": "2024-06-05T06:00:08", + "date_unixtime": "1717560008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005153 BTC for 82.70 CZK @ 1,604,948 CZK\nFees are 0.29047359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (125.18597835153133255418571387 CZK)\nThe limits being 0.10 % (12.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52515898 BTC (332,929.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 633,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,604,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.16 % (509,923.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,774.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00748650 BTC (12,015.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.78 CZK over 3476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005153 BTC for 82.70 CZK @ 1,604,948 CZK\nFees are 0.29047359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (125.18597835153133255418571387 CZK)\nThe limits being 0.10 % (12.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52515898 BTC (332,929.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 633,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,604,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.16 % (509,923.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,774.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00748650 BTC (12,015.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.78 CZK over 3476 transactions" + } + ] + }, + { + "id": 5172, + "type": "message", + "date": "2024-06-05T10:00:06", + "date_unixtime": "1717574406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005127 BTC for 82.70 CZK @ 1,613,109 CZK\nFees are 0.29047742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (125.82248011654936219428606081 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52521025 BTC (333,012.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,613,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.41 % (514,208.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,691.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00753777 BTC (12,159.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.78 CZK over 3477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005127 BTC for 82.70 CZK @ 1,613,109 CZK\nFees are 0.29047742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (125.82248011654936219428606081 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52521025 BTC (333,012.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,613,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.41 % (514,208.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,691.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00753777 BTC (12,159.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.78 CZK over 3477 transactions" + } + ] + }, + { + "id": 5173, + "type": "message", + "date": "2024-06-05T14:00:06", + "date_unixtime": "1717588806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005124 BTC for 82.70 CZK @ 1,613,984 CZK\nFees are 0.29046495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (125.89074376217197653645496033 CZK)\nThe limits being 0.10 % (12.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52526149 BTC (333,095.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,613,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.51 % (514,667.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,608.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00758901 BTC (12,248.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.77 CZK over 3478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005124 BTC for 82.70 CZK @ 1,613,984 CZK\nFees are 0.29046495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (125.89074376217197653645496033 CZK)\nThe limits being 0.10 % (12.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52526149 BTC (333,095.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,613,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.51 % (514,667.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,608.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00758901 BTC (12,248.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.77 CZK over 3478 transactions" + } + ] + }, + { + "id": 5174, + "type": "message", + "date": "2024-06-05T18:00:05", + "date_unixtime": "1717603205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005086 BTC for 82.70 CZK @ 1,625,954 CZK\nFees are 0.29044903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (169.09917858474497732180388694 CZK)\nThe limits being 0.10 % (12.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52531235 BTC (333,178.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,625,954 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.36 % (520,954.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,525.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00763987 BTC (12,422.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.77 CZK over 3479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005086 BTC for 82.70 CZK @ 1,625,954 CZK\nFees are 0.29044903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.36 % (169.09917858474497732180388694 CZK)\nThe limits being 0.10 % (12.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52531235 BTC (333,178.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,625,954 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.36 % (520,954.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,525.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00763987 BTC (12,422.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.77 CZK over 3479 transactions" + } + ] + }, + { + "id": 5175, + "type": "message", + "date": "2024-06-05T22:00:05", + "date_unixtime": "1717617605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005108 BTC for 82.71 CZK @ 1,619,194 CZK\nFees are 0.29049265 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.54 % (315.74279909705225134113609415 CZK)\nThe limits being 0.10 % (12.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52536343 BTC (333,261.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,619,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.25 % (517,403.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,442.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00769095 BTC (12,453.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.76 CZK over 3480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005108 BTC for 82.71 CZK @ 1,619,194 CZK\nFees are 0.29049265 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.54 % (315.74279909705225134113609415 CZK)\nThe limits being 0.10 % (12.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52536343 BTC (333,261.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,619,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.25 % (517,403.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,442.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00769095 BTC (12,453.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.76 CZK over 3480 transactions" + } + ] + }, + { + "id": 5176, + "type": "message", + "date": "2024-06-06T02:00:05", + "date_unixtime": "1717632005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005120 BTC for 82.70 CZK @ 1,615,206 CZK\nFees are 0.29045796 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (251.97212526625560538116591927 CZK)\nThe limits being 0.10 % (12.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52541463 BTC (333,344.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,615,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.59 % (515,308.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,359.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00774215 BTC (12,505.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.76 CZK over 3481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005120 BTC for 82.70 CZK @ 1,615,206 CZK\nFees are 0.29045796 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.01 % (251.97212526625560538116591927 CZK)\nThe limits being 0.10 % (12.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52541463 BTC (333,344.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,615,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.59 % (515,308.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,359.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00774215 BTC (12,505.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.76 CZK over 3481 transactions" + } + ] + }, + { + "id": 5177, + "type": "message", + "date": "2024-06-06T06:00:06", + "date_unixtime": "1717646406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005135 BTC for 82.70 CZK @ 1,610,502 CZK\nFees are 0.29046058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.83 % (230.30182062780269058295964125 CZK)\nThe limits being 0.10 % (12.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52546598 BTC (333,427.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,610,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.81 % (512,836.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,276.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00779350 BTC (12,551.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.76 CZK over 3482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005135 BTC for 82.70 CZK @ 1,610,502 CZK\nFees are 0.29046058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.83 % (230.30182062780269058295964125 CZK)\nThe limits being 0.10 % (12.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52546598 BTC (333,427.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,610,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.81 % (512,836.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,276.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00779350 BTC (12,551.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.76 CZK over 3482 transactions" + } + ] + }, + { + "id": 5178, + "type": "message", + "date": "2024-06-06T10:00:06", + "date_unixtime": "1717660806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005126 BTC for 82.71 CZK @ 1,613,547 CZK\nFees are 0.29049964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.66 % (209.76108506298964159969952999 CZK)\nThe limits being 0.10 % (12.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52551724 BTC (333,510.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,613,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.25 % (514,436.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,193.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00784476 BTC (12,657.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.75 CZK over 3483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005126 BTC for 82.71 CZK @ 1,613,547 CZK\nFees are 0.29049964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.66 % (209.76108506298964159969952999 CZK)\nThe limits being 0.10 % (12.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52551724 BTC (333,510.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,613,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.25 % (514,436.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,193.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00784476 BTC (12,657.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.75 CZK over 3483 transactions" + } + ] + }, + { + "id": 5179, + "type": "message", + "date": "2024-06-06T14:00:06", + "date_unixtime": "1717675206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005112 BTC for 82.71 CZK @ 1,617,963 CZK\nFees are 0.29049910 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (231.36867786280880767080476548 CZK)\nThe limits being 0.10 % (12.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52556836 BTC (333,593.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,617,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.91 % (516,756.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,110.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00789588 BTC (12,775.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.75 CZK over 3484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005112 BTC for 82.71 CZK @ 1,617,963 CZK\nFees are 0.29049910 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (231.36867786280880767080476548 CZK)\nThe limits being 0.10 % (12.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52556836 BTC (333,593.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,617,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.91 % (516,756.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,110.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00789588 BTC (12,775.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.75 CZK over 3484 transactions" + } + ] + }, + { + "id": 5180, + "type": "message", + "date": "2024-06-06T18:00:06", + "date_unixtime": "1717689606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005125 BTC for 82.70 CZK @ 1,613,584 CZK\nFees are 0.29044964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.80 % (230.74249773597287542382150280 CZK)\nThe limits being 0.10 % (12.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52561961 BTC (333,676.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,613,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.18 % (514,454.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,027.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00794713 BTC (12,823.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.75 CZK over 3485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005125 BTC for 82.70 CZK @ 1,613,584 CZK\nFees are 0.29044964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.80 % (230.74249773597287542382150280 CZK)\nThe limits being 0.10 % (12.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52561961 BTC (333,676.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,613,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.18 % (514,454.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,027.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00794713 BTC (12,823.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.75 CZK over 3485 transactions" + } + ] + }, + { + "id": 5181, + "type": "message", + "date": "2024-06-06T22:00:05", + "date_unixtime": "1717704005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005192 BTC for 82.70 CZK @ 1,592,914 CZK\nFees are 0.29047737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.79 % (227.78663516252438499151275620 CZK)\nThe limits being 0.10 % (12.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52567153 BTC (333,759.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 634,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.88 % (503,589.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,944.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00799905 BTC (12,741.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.74 CZK over 3486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005192 BTC for 82.70 CZK @ 1,592,914 CZK\nFees are 0.29047737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.79 % (227.78663516252438499151275620 CZK)\nThe limits being 0.10 % (12.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52567153 BTC (333,759.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 634,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.88 % (503,589.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,944.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00799905 BTC (12,741.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.74 CZK over 3486 transactions" + } + ] + }, + { + "id": 5182, + "type": "message", + "date": "2024-06-07T02:00:05", + "date_unixtime": "1717718405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005170 BTC for 82.71 CZK @ 1,599,744 CZK\nFees are 0.29048674 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (187.16999016228500056379075557 CZK)\nThe limits being 0.10 % (12.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52572323 BTC (333,842.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,016 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.92 % (507,179.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,861.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00805075 BTC (12,879.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.74 CZK over 3487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005170 BTC for 82.71 CZK @ 1,599,744 CZK\nFees are 0.29048674 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (187.16999016228500056379075557 CZK)\nThe limits being 0.10 % (12.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52572323 BTC (333,842.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,016 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.92 % (507,179.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,861.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00805075 BTC (12,879.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.74 CZK over 3487 transactions" + } + ] + }, + { + "id": 5183, + "type": "message", + "date": "2024-06-07T06:00:07", + "date_unixtime": "1717732807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005166 BTC for 82.71 CZK @ 1,600,979 CZK\nFees are 0.29048609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (187.31449327354260089686098655 CZK)\nThe limits being 0.10 % (12.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52577489 BTC (333,925.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,600,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.08 % (507,828.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,778.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00810241 BTC (12,971.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.74 CZK over 3488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005166 BTC for 82.71 CZK @ 1,600,979 CZK\nFees are 0.29048609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (187.31449327354260089686098655 CZK)\nThe limits being 0.10 % (12.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52577489 BTC (333,925.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,600,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.08 % (507,828.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,778.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00810241 BTC (12,971.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.74 CZK over 3488 transactions" + } + ] + }, + { + "id": 5184, + "type": "message", + "date": "2024-06-07T10:00:07", + "date_unixtime": "1717747207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005140 BTC for 82.69 CZK @ 1,608,842 CZK\nFees are 0.29044370 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.75 % (230.06442267375469902035482814 CZK)\nThe limits being 0.10 % (13.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52582629 BTC (334,008.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,608,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.28 % (511,962.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,695.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00815381 BTC (13,118.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.73 CZK over 3489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005140 BTC for 82.69 CZK @ 1,608,842 CZK\nFees are 0.29044370 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.75 % (230.06442267375469902035482814 CZK)\nThe limits being 0.10 % (13.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52582629 BTC (334,008.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,608,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.28 % (511,962.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,695.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00815381 BTC (13,118.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.73 CZK over 3489 transactions" + } + ] + }, + { + "id": 5185, + "type": "message", + "date": "2024-06-07T14:00:07", + "date_unixtime": "1717761607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005120 BTC for 82.71 CZK @ 1,615,365 CZK\nFees are 0.29048662 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.75 % (629.99247761350896860986547088 CZK)\nThe limits being 0.10 % (13.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52587749 BTC (334,091.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,615,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.27 % (515,392.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,612.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00820501 BTC (13,254.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.73 CZK over 3490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005120 BTC for 82.71 CZK @ 1,615,365 CZK\nFees are 0.29048662 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.75 % (629.99247761350896860986547088 CZK)\nThe limits being 0.10 % (13.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52587749 BTC (334,091.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,615,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.27 % (515,392.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,612.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00820501 BTC (13,254.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.73 CZK over 3490 transactions" + } + ] + }, + { + "id": 5186, + "type": "message", + "date": "2024-06-07T18:00:07", + "date_unixtime": "1717776007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005141 BTC for 82.70 CZK @ 1,608,651 CZK\nFees are 0.29046564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 20.00 % (2655.8822077502132925734448009 CZK)\nThe limits being 0.10 % (13.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52592890 BTC (334,174.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,608,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.17 % (511,861.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,529.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00825642 BTC (13,281.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.72 CZK over 3491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005141 BTC for 82.70 CZK @ 1,608,651 CZK\nFees are 0.29046564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 20.00 % (2655.8822077502132925734448009 CZK)\nThe limits being 0.10 % (13.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52592890 BTC (334,174.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,608,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.17 % (511,861.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,529.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00825642 BTC (13,281.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.72 CZK over 3491 transactions" + } + ] + }, + { + "id": 5187, + "type": "message", + "date": "2024-06-07T22:00:07", + "date_unixtime": "1717790407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005212 BTC for 82.70 CZK @ 1,586,630 CZK\nFees are 0.29044605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 19.09 % (2516.3950485591297687563978875 CZK)\nThe limits being 0.10 % (13.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52598102 BTC (334,257.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.67 % (500,279.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,446.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00830854 BTC (13,182.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.72 CZK over 3492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005212 BTC for 82.70 CZK @ 1,586,630 CZK\nFees are 0.29044605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 19.09 % (2516.3950485591297687563978875 CZK)\nThe limits being 0.10 % (13.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52598102 BTC (334,257.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.67 % (500,279.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,446.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00830854 BTC (13,182.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.72 CZK over 3492 transactions" + } + ] + }, + { + "id": 5188, + "type": "message", + "date": "2024-06-08T02:00:06", + "date_unixtime": "1717804806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005204 BTC for 82.71 CZK @ 1,589,324 CZK\nFees are 0.29049258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 18.97 % (2520.6672473816660902827804454 CZK)\nThe limits being 0.10 % (13.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52603306 BTC (334,340.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.06 % (501,696.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,363.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00836058 BTC (13,287.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.72 CZK over 3493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005204 BTC for 82.71 CZK @ 1,589,324 CZK\nFees are 0.29049258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 18.97 % (2520.6672473816660902827804454 CZK)\nThe limits being 0.10 % (13.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52603306 BTC (334,340.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.06 % (501,696.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,363.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00836058 BTC (13,287.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.72 CZK over 3493 transactions" + } + ] + }, + { + "id": 5189, + "type": "message", + "date": "2024-06-08T06:00:05", + "date_unixtime": "1717819205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,590,950 CZK\nFees are 0.29045452 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 18.85 % (2523.2461483411369172881448215 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52608504 BTC (334,423.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.27 % (502,551.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,280.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00841256 BTC (13,383.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.71 CZK over 3494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,590,950 CZK\nFees are 0.29045452 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 18.85 % (2523.2461483411369172881448215 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52608504 BTC (334,423.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.27 % (502,551.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,280.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00841256 BTC (13,383.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.71 CZK over 3494 transactions" + } + ] + }, + { + "id": 5190, + "type": "message", + "date": "2024-06-08T10:00:05", + "date_unixtime": "1717833605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005196 BTC for 82.71 CZK @ 1,591,785 CZK\nFees are 0.29049516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 17.66 % (2379.7181675711223189966756077 CZK)\nThe limits being 0.10 % (13.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52613700 BTC (334,506.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.37 % (502,990.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,197.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00846452 BTC (13,473.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.71 CZK over 3495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005196 BTC for 82.71 CZK @ 1,591,785 CZK\nFees are 0.29049516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 17.66 % (2379.7181675711223189966756077 CZK)\nThe limits being 0.10 % (13.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52613700 BTC (334,506.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.37 % (502,990.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,197.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00846452 BTC (13,473.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.71 CZK over 3495 transactions" + } + ] + }, + { + "id": 5191, + "type": "message", + "date": "2024-06-08T14:00:07", + "date_unixtime": "1717848007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,049 CZK\nFees are 0.29045770 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.62 % (489.73521982348456043149112693 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52618901 BTC (334,589.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.06 % (502,077.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,114.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00851653 BTC (13,541.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.71 CZK over 3496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,049 CZK\nFees are 0.29045770 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.62 % (489.73521982348456043149112693 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52618901 BTC (334,589.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.06 % (502,077.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,114.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00851653 BTC (13,541.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.71 CZK over 3496 transactions" + } + ] + }, + { + "id": 5192, + "type": "message", + "date": "2024-06-08T18:00:05", + "date_unixtime": "1717862405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005196 BTC for 82.71 CZK @ 1,591,756 CZK\nFees are 0.29048985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.31 % (315.16761970056304090417948266 CZK)\nThe limits being 0.10 % (13.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52624097 BTC (334,672.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 635,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.29 % (502,974.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,031.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00856849 BTC (13,638.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.70 CZK over 3497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005196 BTC for 82.71 CZK @ 1,591,756 CZK\nFees are 0.29048985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.31 % (315.16761970056304090417948266 CZK)\nThe limits being 0.10 % (13.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52624097 BTC (334,672.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 635,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.29 % (502,974.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,031.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00856849 BTC (13,638.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.70 CZK over 3497 transactions" + } + ] + }, + { + "id": 5193, + "type": "message", + "date": "2024-06-08T22:00:06", + "date_unixtime": "1717876806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005192 BTC for 82.70 CZK @ 1,592,781 CZK\nFees are 0.29045324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.40 % (192.72652565596682796652394585 CZK)\nThe limits being 0.10 % (13.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52629289 BTC (334,755.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.41 % (503,513.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,948.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00862041 BTC (13,730.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.70 CZK over 3498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005192 BTC for 82.70 CZK @ 1,592,781 CZK\nFees are 0.29045324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.40 % (192.72652565596682796652394585 CZK)\nThe limits being 0.10 % (13.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52629289 BTC (334,755.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.41 % (503,513.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,948.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00862041 BTC (13,730.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.70 CZK over 3498 transactions" + } + ] + }, + { + "id": 5194, + "type": "message", + "date": "2024-06-09T02:00:05", + "date_unixtime": "1717891205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005205 BTC for 82.71 CZK @ 1,589,040 CZK\nFees are 0.29049654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (174.79438969753796390826152653 CZK)\nThe limits being 0.10 % (13.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52634494 BTC (334,838.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.79 % (501,544.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,865.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00867246 BTC (13,780.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.70 CZK over 3499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005205 BTC for 82.71 CZK @ 1,589,040 CZK\nFees are 0.29049654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (174.79438969753796390826152653 CZK)\nThe limits being 0.10 % (13.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52634494 BTC (334,838.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.79 % (501,544.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,865.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00867246 BTC (13,780.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.70 CZK over 3499 transactions" + } + ] + }, + { + "id": 5195, + "type": "message", + "date": "2024-06-09T06:00:05", + "date_unixtime": "1717905605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005209 BTC for 82.70 CZK @ 1,587,579 CZK\nFees are 0.29045255 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.26 % (174.63372041777755586298406719 CZK)\nThe limits being 0.10 % (13.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52639703 BTC (334,921.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,587,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.52 % (500,775.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,782.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00872455 BTC (13,850.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.69 CZK over 3500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005209 BTC for 82.70 CZK @ 1,587,579 CZK\nFees are 0.29045255 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.26 % (174.63372041777755586298406719 CZK)\nThe limits being 0.10 % (13.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52639703 BTC (334,921.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,587,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.52 % (500,775.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,782.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00872455 BTC (13,850.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.69 CZK over 3500 transactions" + } + ] + }, + { + "id": 5196, + "type": "message", + "date": "2024-06-09T10:00:06", + "date_unixtime": "1717920006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005208 BTC for 82.71 CZK @ 1,588,142 CZK\nFees are 0.29049967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.25 % (174.69558414787873778181893327 CZK)\nThe limits being 0.10 % (13.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52644911 BTC (335,004.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.57 % (501,071.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,699.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00877663 BTC (13,938.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.69 CZK over 3501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005208 BTC for 82.71 CZK @ 1,588,142 CZK\nFees are 0.29049967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.25 % (174.69558414787873778181893327 CZK)\nThe limits being 0.10 % (13.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52644911 BTC (335,004.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.57 % (501,071.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,699.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00877663 BTC (13,938.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.69 CZK over 3501 transactions" + } + ] + }, + { + "id": 5197, + "type": "message", + "date": "2024-06-09T14:00:05", + "date_unixtime": "1717934405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005205 BTC for 82.70 CZK @ 1,588,947 CZK\nFees are 0.29047949 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.37 % (192.26254761878095254505484408 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52650116 BTC (335,087.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.66 % (501,494.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,616.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882868 BTC (14,028.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.68 CZK over 3502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005205 BTC for 82.70 CZK @ 1,588,947 CZK\nFees are 0.29047949 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.37 % (192.26254761878095254505484408 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52650116 BTC (335,087.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.66 % (501,494.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,616.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882868 BTC (14,028.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.68 CZK over 3502 transactions" + } + ] + }, + { + "id": 5198, + "type": "message", + "date": "2024-06-09T18:00:05", + "date_unixtime": "1717948805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005195 BTC for 82.70 CZK @ 1,591,923 CZK\nFees are 0.29046449 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (157.60038404640543468409172324 CZK)\nThe limits being 0.10 % (14.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52655311 BTC (335,170.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.09 % (503,061.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,533.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00888063 BTC (14,137.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.68 CZK over 3503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005195 BTC for 82.70 CZK @ 1,591,923 CZK\nFees are 0.29046449 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (157.60038404640543468409172324 CZK)\nThe limits being 0.10 % (14.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52655311 BTC (335,170.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.09 % (503,061.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,533.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00888063 BTC (14,137.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.68 CZK over 3503 transactions" + } + ] + }, + { + "id": 5199, + "type": "message", + "date": "2024-06-09T22:00:05", + "date_unixtime": "1717963205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005180 BTC for 82.70 CZK @ 1,596,466 CZK\nFees are 0.29045239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (158.05016981318281766712259985 CZK)\nThe limits being 0.10 % (14.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52660491 BTC (335,253.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.77 % (505,453.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,450.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00893243 BTC (14,260.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.68 CZK over 3504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005180 BTC for 82.70 CZK @ 1,596,466 CZK\nFees are 0.29045239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (158.05016981318281766712259985 CZK)\nThe limits being 0.10 % (14.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52660491 BTC (335,253.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.77 % (505,453.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,450.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00893243 BTC (14,260.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.68 CZK over 3504 transactions" + } + ] + }, + { + "id": 5200, + "type": "message", + "date": "2024-06-10T02:00:06", + "date_unixtime": "1717977606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005177 BTC for 82.70 CZK @ 1,597,418 CZK\nFees are 0.29045716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (140.57275987125993925645021256 CZK)\nThe limits being 0.10 % (14.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52665668 BTC (335,336.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,597,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.88 % (505,954.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,367.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00898420 BTC (14,351.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.67 CZK over 3505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005177 BTC for 82.70 CZK @ 1,597,418 CZK\nFees are 0.29045716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (140.57275987125993925645021256 CZK)\nThe limits being 0.10 % (14.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52665668 BTC (335,336.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,597,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.88 % (505,954.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,367.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00898420 BTC (14,351.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.67 CZK over 3505 transactions" + } + ] + }, + { + "id": 5201, + "type": "message", + "date": "2024-06-10T06:00:07", + "date_unixtime": "1717992007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005178 BTC for 82.69 CZK @ 1,597,041 CZK\nFees are 0.29044471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (140.53958943774040760774908523 CZK)\nThe limits being 0.10 % (14.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52670846 BTC (335,419.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,597,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.78 % (505,755.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,284.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00903598 BTC (14,430.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.67 CZK over 3506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005178 BTC for 82.69 CZK @ 1,597,041 CZK\nFees are 0.29044471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (140.53958943774040760774908523 CZK)\nThe limits being 0.10 % (14.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52670846 BTC (335,419.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,597,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.78 % (505,755.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,284.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00903598 BTC (14,430.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.67 CZK over 3506 transactions" + } + ] + }, + { + "id": 5202, + "type": "message", + "date": "2024-06-10T10:00:06", + "date_unixtime": "1718006406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,590,969 CZK\nFees are 0.29045799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (140.00524554670427263715127105 CZK)\nThe limits being 0.10 % (14.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52676044 BTC (335,502.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 636,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.79 % (502,557.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,201.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00908796 BTC (14,458.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.67 CZK over 3507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,590,969 CZK\nFees are 0.29045799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (140.00524554670427263715127105 CZK)\nThe limits being 0.10 % (14.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52676044 BTC (335,502.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 636,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.79 % (502,557.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,201.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00908796 BTC (14,458.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.67 CZK over 3507 transactions" + } + ] + }, + { + "id": 5203, + "type": "message", + "date": "2024-06-10T14:00:06", + "date_unixtime": "1718020806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,971 CZK\nFees are 0.29046036 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (140.35741672439614675540141809 CZK)\nThe limits being 0.10 % (14.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52681229 BTC (335,585.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,594,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.38 % (504,664.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,118.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00913981 BTC (14,577.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.66 CZK over 3508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,971 CZK\nFees are 0.29046036 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (140.35741672439614675540141809 CZK)\nThe limits being 0.10 % (14.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52681229 BTC (335,585.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,594,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.38 % (504,664.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,118.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00913981 BTC (14,577.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.66 CZK over 3508 transactions" + } + ] + }, + { + "id": 5204, + "type": "message", + "date": "2024-06-10T18:00:07", + "date_unixtime": "1718035207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005149 BTC for 82.70 CZK @ 1,606,205 CZK\nFees are 0.29047527 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (159.01425163317009615694457629 CZK)\nThe limits being 0.10 % (14.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52686378 BTC (335,668.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,606,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.11 % (510,582.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,035.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00919130 BTC (14,763.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.66 CZK over 3509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005149 BTC for 82.70 CZK @ 1,606,205 CZK\nFees are 0.29047527 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (159.01425163317009615694457629 CZK)\nThe limits being 0.10 % (14.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52686378 BTC (335,668.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,606,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.11 % (510,582.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,035.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00919130 BTC (14,763.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.66 CZK over 3509 transactions" + } + ] + }, + { + "id": 5205, + "type": "message", + "date": "2024-06-10T22:00:05", + "date_unixtime": "1718049605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005199 BTC for 82.70 CZK @ 1,590,648 CZK\nFees are 0.29045529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.43 % (209.96552308811830261712396686 CZK)\nThe limits being 0.10 % (14.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52691577 BTC (335,751.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.63 % (502,386.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,952.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00924329 BTC (14,702.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.66 CZK over 3510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005199 BTC for 82.70 CZK @ 1,590,648 CZK\nFees are 0.29045529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.43 % (209.96552308811830261712396686 CZK)\nThe limits being 0.10 % (14.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52691577 BTC (335,751.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.63 % (502,386.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,952.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00924329 BTC (14,702.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.66 CZK over 3510 transactions" + } + ] + }, + { + "id": 5206, + "type": "message", + "date": "2024-06-11T02:00:06", + "date_unixtime": "1718064006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005208 BTC for 82.70 CZK @ 1,588,005 CZK\nFees are 0.29047473 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (174.68058687259721542956028709 CZK)\nThe limits being 0.10 % (14.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52696785 BTC (335,834.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.18 % (500,993.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,869.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00929537 BTC (14,761.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.65 CZK over 3511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005208 BTC for 82.70 CZK @ 1,588,005 CZK\nFees are 0.29047473 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (174.68058687259721542956028709 CZK)\nThe limits being 0.10 % (14.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52696785 BTC (335,834.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.18 % (500,993.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,869.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00929537 BTC (14,761.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.65 CZK over 3511 transactions" + } + ] + }, + { + "id": 5207, + "type": "message", + "date": "2024-06-11T06:00:07", + "date_unixtime": "1718078407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005275 BTC for 82.70 CZK @ 1,567,864 CZK\nFees are 0.29048008 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (155.21856401419675684866002169 CZK)\nThe limits being 0.10 % (14.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52702060 BTC (335,917.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.98 % (490,379.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,786.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00934812 BTC (14,656.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.65 CZK over 3512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005275 BTC for 82.70 CZK @ 1,567,864 CZK\nFees are 0.29048008 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (155.21856401419675684866002169 CZK)\nThe limits being 0.10 % (14.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52702060 BTC (335,917.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.98 % (490,379.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,786.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00934812 BTC (14,656.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.65 CZK over 3512 transactions" + } + ] + }, + { + "id": 5208, + "type": "message", + "date": "2024-06-11T10:00:07", + "date_unixtime": "1718092807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,885 CZK\nFees are 0.29045512 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (153.83456966007923788723683567 CZK)\nThe limits being 0.10 % (14.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52707382 BTC (336,000.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.75 % (483,011.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,703.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00940134 BTC (14,608.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.64 CZK over 3513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,885 CZK\nFees are 0.29045512 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (153.83456966007923788723683567 CZK)\nThe limits being 0.10 % (14.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52707382 BTC (336,000.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.75 % (483,011.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,703.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00940134 BTC (14,608.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.64 CZK over 3513 transactions" + } + ] + }, + { + "id": 5209, + "type": "message", + "date": "2024-06-11T14:00:06", + "date_unixtime": "1718107206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005350 BTC for 82.70 CZK @ 1,545,887 CZK\nFees are 0.29048041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (153.04277999077993378316080634 CZK)\nThe limits being 0.10 % (14.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52712732 BTC (336,083.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,545,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.46 % (478,795.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,620.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00945484 BTC (14,616.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.64 CZK over 3514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005350 BTC for 82.70 CZK @ 1,545,887 CZK\nFees are 0.29048041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (153.04277999077993378316080634 CZK)\nThe limits being 0.10 % (14.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52712732 BTC (336,083.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,545,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.46 % (478,795.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,620.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00945484 BTC (14,616.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.64 CZK over 3514 transactions" + } + ] + }, + { + "id": 5210, + "type": "message", + "date": "2024-06-11T18:00:06", + "date_unixtime": "1718121606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005394 BTC for 82.70 CZK @ 1,533,260 CZK\nFees are 0.29047733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (151.79276859523370095655195692 CZK)\nThe limits being 0.10 % (14.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52718126 BTC (336,166.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,533,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.45 % (472,139.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,537.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00950878 BTC (14,579.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.64 CZK over 3515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005394 BTC for 82.70 CZK @ 1,533,260 CZK\nFees are 0.29047733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (151.79276859523370095655195692 CZK)\nThe limits being 0.10 % (14.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52718126 BTC (336,166.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,533,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.45 % (472,139.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,537.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00950878 BTC (14,579.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.64 CZK over 3515 transactions" + } + ] + }, + { + "id": 5211, + "type": "message", + "date": "2024-06-11T22:00:05", + "date_unixtime": "1718136005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005304 BTC for 82.71 CZK @ 1,559,302 CZK\nFees are 0.29048197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.15 % (171.52322053055632586099481379 CZK)\nThe limits being 0.10 % (14.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52723430 BTC (336,249.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.50 % (485,868.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,454.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00956182 BTC (14,909.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.63 CZK over 3516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005304 BTC for 82.71 CZK @ 1,559,302 CZK\nFees are 0.29048197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.15 % (171.52322053055632586099481379 CZK)\nThe limits being 0.10 % (14.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52723430 BTC (336,249.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.50 % (485,868.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,454.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00956182 BTC (14,909.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.63 CZK over 3516 transactions" + } + ] + }, + { + "id": 5212, + "type": "message", + "date": "2024-06-12T02:00:06", + "date_unixtime": "1718150406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005310 BTC for 82.70 CZK @ 1,557,402 CZK\nFees are 0.29045627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (171.31425122992314094642386299 CZK)\nThe limits being 0.10 % (14.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52728740 BTC (336,332.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.16 % (484,866.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,371.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00961492 BTC (14,974.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.63 CZK over 3517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005310 BTC for 82.70 CZK @ 1,557,402 CZK\nFees are 0.29045627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (171.31425122992314094642386299 CZK)\nThe limits being 0.10 % (14.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52728740 BTC (336,332.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.16 % (484,866.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,371.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00961492 BTC (14,974.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.63 CZK over 3517 transactions" + } + ] + }, + { + "id": 5213, + "type": "message", + "date": "2024-06-12T06:00:07", + "date_unixtime": "1718164807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005307 BTC for 82.71 CZK @ 1,558,490 CZK\nFees are 0.29049491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (171.43389856437084862863152135 CZK)\nThe limits being 0.10 % (15.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52734047 BTC (336,415.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 637,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.30 % (485,439.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,288.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00966799 BTC (15,067.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.63 CZK over 3518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005307 BTC for 82.71 CZK @ 1,558,490 CZK\nFees are 0.29049491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (171.43389856437084862863152135 CZK)\nThe limits being 0.10 % (15.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52734047 BTC (336,415.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 637,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.30 % (485,439.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,288.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00966799 BTC (15,067.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.63 CZK over 3518 transactions" + } + ] + }, + { + "id": 5214, + "type": "message", + "date": "2024-06-12T10:00:07", + "date_unixtime": "1718179207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005314 BTC for 82.70 CZK @ 1,556,242 CZK\nFees are 0.29045858 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (136.94933133205778270595632637 CZK)\nThe limits being 0.10 % (15.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52739361 BTC (336,498.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.91 % (484,254.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,205.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00972113 BTC (15,128.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.62 CZK over 3519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005314 BTC for 82.70 CZK @ 1,556,242 CZK\nFees are 0.29045858 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (136.94933133205778270595632637 CZK)\nThe limits being 0.10 % (15.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52739361 BTC (336,498.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.91 % (484,254.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,205.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00972113 BTC (15,128.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.62 CZK over 3519 transactions" + } + ] + }, + { + "id": 5215, + "type": "message", + "date": "2024-06-12T14:00:05", + "date_unixtime": "1718193605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005297 BTC for 82.71 CZK @ 1,561,381 CZK\nFees are 0.29048542 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (137.40154311410911347756892786 CZK)\nThe limits being 0.10 % (15.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52744658 BTC (336,581.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.68 % (486,963.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,122.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00977410 BTC (15,261.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.62 CZK over 3520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005297 BTC for 82.71 CZK @ 1,561,381 CZK\nFees are 0.29048542 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (137.40154311410911347756892786 CZK)\nThe limits being 0.10 % (15.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52744658 BTC (336,581.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.68 % (486,963.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,122.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00977410 BTC (15,261.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.62 CZK over 3520 transactions" + } + ] + }, + { + "id": 5216, + "type": "message", + "date": "2024-06-12T18:00:05", + "date_unixtime": "1718208005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005204 BTC for 82.71 CZK @ 1,589,273 CZK\nFees are 0.29048342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (139.85606682836053826978365881 CZK)\nThe limits being 0.10 % (15.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52749862 BTC (336,664.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.01 % (501,675.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,039.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00982614 BTC (15,616.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.62 CZK over 3521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005204 BTC for 82.71 CZK @ 1,589,273 CZK\nFees are 0.29048342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (139.85606682836053826978365881 CZK)\nThe limits being 0.10 % (15.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52749862 BTC (336,664.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.01 % (501,675.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,039.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00982614 BTC (15,616.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.62 CZK over 3521 transactions" + } + ] + }, + { + "id": 5217, + "type": "message", + "date": "2024-06-12T22:00:07", + "date_unixtime": "1718222407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005337 BTC for 82.71 CZK @ 1,549,719 CZK\nFees are 0.29049298 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (136.37528879164632611044032788 CZK)\nThe limits being 0.10 % (15.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52755199 BTC (336,747.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.78 % (480,810.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,956.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00987951 BTC (15,310.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.61 CZK over 3522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005337 BTC for 82.71 CZK @ 1,549,719 CZK\nFees are 0.29049298 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (136.37528879164632611044032788 CZK)\nThe limits being 0.10 % (15.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52755199 BTC (336,747.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.78 % (480,810.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,956.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00987951 BTC (15,310.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.61 CZK over 3522 transactions" + } + ] + }, + { + "id": 5218, + "type": "message", + "date": "2024-06-13T02:00:05", + "date_unixtime": "1718236805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005287 BTC for 82.71 CZK @ 1,564,324 CZK\nFees are 0.29048357 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (137.66055478569474401539005386 CZK)\nThe limits being 0.10 % (15.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52760486 BTC (336,830.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.03 % (488,514.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,873.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00993238 BTC (15,537.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.61 CZK over 3523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005287 BTC for 82.71 CZK @ 1,564,324 CZK\nFees are 0.29048357 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (137.66055478569474401539005386 CZK)\nThe limits being 0.10 % (15.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52760486 BTC (336,830.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.03 % (488,514.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,873.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00993238 BTC (15,537.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.61 CZK over 3523 transactions" + } + ] + }, + { + "id": 5219, + "type": "message", + "date": "2024-06-13T06:00:05", + "date_unixtime": "1718251205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005345 BTC for 82.70 CZK @ 1,547,270 CZK\nFees are 0.29046865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (153.17974034490135787605867770 CZK)\nThe limits being 0.10 % (15.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52765831 BTC (336,913.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.33 % (479,516.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,790.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00998583 BTC (15,450.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.61 CZK over 3524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005345 BTC for 82.70 CZK @ 1,547,270 CZK\nFees are 0.29046865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (153.17974034490135787605867770 CZK)\nThe limits being 0.10 % (15.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52765831 BTC (336,913.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.33 % (479,516.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,790.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00998583 BTC (15,450.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.61 CZK over 3524 transactions" + } + ] + }, + { + "id": 5220, + "type": "message", + "date": "2024-06-13T10:00:06", + "date_unixtime": "1718265606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,434 CZK\nFees are 0.29045660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (136.61418647349257886490581256 CZK)\nThe limits being 0.10 % (15.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52771158 BTC (336,996.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.10 % (482,241.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,707.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01003910 BTC (15,585.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.60 CZK over 3525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,434 CZK\nFees are 0.29045660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (136.61418647349257886490581256 CZK)\nThe limits being 0.10 % (15.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52771158 BTC (336,996.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.10 % (482,241.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,707.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01003910 BTC (15,585.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.60 CZK over 3525 transactions" + } + ] + }, + { + "id": 5221, + "type": "message", + "date": "2024-06-13T14:00:06", + "date_unixtime": "1718280006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005306 BTC for 82.71 CZK @ 1,558,776 CZK\nFees are 0.29049342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (137.17226134011547596980113515 CZK)\nThe limits being 0.10 % (15.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52776464 BTC (337,079.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,558,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.06 % (485,587.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,624.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01009216 BTC (15,731.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.60 CZK over 3526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005306 BTC for 82.71 CZK @ 1,558,776 CZK\nFees are 0.29049342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (137.17226134011547596980113515 CZK)\nThe limits being 0.10 % (15.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52776464 BTC (337,079.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,558,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.06 % (485,587.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,624.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01009216 BTC (15,731.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.60 CZK over 3526 transactions" + } + ] + }, + { + "id": 5222, + "type": "message", + "date": "2024-06-13T18:00:07", + "date_unixtime": "1718294407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005387 BTC for 82.71 CZK @ 1,535,318 CZK\nFees are 0.29048978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.60 % (405.32405854874562384170717135 CZK)\nThe limits being 0.10 % (15.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52781851 BTC (337,162.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.35 % (473,207.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,541.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01014603 BTC (15,577.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.59 CZK over 3527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005387 BTC for 82.71 CZK @ 1,535,318 CZK\nFees are 0.29048978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.60 % (405.32405854874562384170717135 CZK)\nThe limits being 0.10 % (15.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52781851 BTC (337,162.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.35 % (473,207.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,541.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01014603 BTC (15,577.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.59 CZK over 3527 transactions" + } + ] + }, + { + "id": 5223, + "type": "message", + "date": "2024-06-13T22:00:05", + "date_unixtime": "1718308805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005366 BTC for 82.71 CZK @ 1,541,316 CZK\nFees are 0.29048778 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (169.54479397583671462219169173 CZK)\nThe limits being 0.10 % (15.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52787217 BTC (337,245.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.25 % (476,372.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,458.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01019969 BTC (15,720.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.59 CZK over 3528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005366 BTC for 82.71 CZK @ 1,541,316 CZK\nFees are 0.29048778 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (169.54479397583671462219169173 CZK)\nThe limits being 0.10 % (15.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52787217 BTC (337,245.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.25 % (476,372.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,458.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01019969 BTC (15,720.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.59 CZK over 3528 transactions" + } + ] + }, + { + "id": 5224, + "type": "message", + "date": "2024-06-14T02:00:06", + "date_unixtime": "1718323206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,880 CZK\nFees are 0.29045407 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (152.94313636123744365298700950 CZK)\nThe limits being 0.10 % (15.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52792570 BTC (337,328.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 638,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.78 % (478,253.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,375.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01025322 BTC (15,840.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.59 CZK over 3529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,880 CZK\nFees are 0.29045407 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (152.94313636123744365298700950 CZK)\nThe limits being 0.10 % (15.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52792570 BTC (337,328.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 638,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.78 % (478,253.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,375.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01025322 BTC (15,840.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.59 CZK over 3529 transactions" + } + ] + }, + { + "id": 5225, + "type": "message", + "date": "2024-06-14T06:00:06", + "date_unixtime": "1718337606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005355 BTC for 82.71 CZK @ 1,544,544 CZK\nFees are 0.29049942 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (152.90988873899335518960947608 CZK)\nThe limits being 0.10 % (15.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52797925 BTC (337,411.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.69 % (478,076.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,292.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01030677 BTC (15,919.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.58 CZK over 3530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005355 BTC for 82.71 CZK @ 1,544,544 CZK\nFees are 0.29049942 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (152.90988873899335518960947608 CZK)\nThe limits being 0.10 % (15.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52797925 BTC (337,411.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.69 % (478,076.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,292.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01030677 BTC (15,919.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.58 CZK over 3530 transactions" + } + ] + }, + { + "id": 5226, + "type": "message", + "date": "2024-06-14T10:00:06", + "date_unixtime": "1718352006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005333 BTC for 82.71 CZK @ 1,550,838 CZK\nFees are 0.29048481 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (204.71061218456198355446542764 CZK)\nThe limits being 0.10 % (16.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52803258 BTC (337,494.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.64 % (481,398.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,209.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01036010 BTC (16,066.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.58 CZK over 3531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005333 BTC for 82.71 CZK @ 1,550,838 CZK\nFees are 0.29048481 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (204.71061218456198355446542764 CZK)\nThe limits being 0.10 % (16.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52803258 BTC (337,494.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.64 % (481,398.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,209.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01036010 BTC (16,066.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.58 CZK over 3531 transactions" + } + ] + }, + { + "id": 5227, + "type": "message", + "date": "2024-06-14T14:00:05", + "date_unixtime": "1718366405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005309 BTC for 82.71 CZK @ 1,557,844 CZK\nFees are 0.29048400 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (154.22659388448585910886581463 CZK)\nThe limits being 0.10 % (16.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52808567 BTC (337,577.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,557,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.70 % (485,098.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,126.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01041319 BTC (16,222.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.58 CZK over 3532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005309 BTC for 82.71 CZK @ 1,557,844 CZK\nFees are 0.29048400 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (154.22659388448585910886581463 CZK)\nThe limits being 0.10 % (16.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52808567 BTC (337,577.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,557,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.70 % (485,098.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,126.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01041319 BTC (16,222.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.58 CZK over 3532 transactions" + } + ] + }, + { + "id": 5228, + "type": "message", + "date": "2024-06-14T18:00:08", + "date_unixtime": "1718380808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005362 BTC for 82.70 CZK @ 1,542,347 CZK\nFees are 0.29046532 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (169.65815568672644624827650035 CZK)\nThe limits being 0.10 % (16.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52813929 BTC (337,660.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,542,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.24 % (476,913.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,043.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01046681 BTC (16,143.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.57 CZK over 3533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005362 BTC for 82.70 CZK @ 1,542,347 CZK\nFees are 0.29046532 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (169.65815568672644624827650035 CZK)\nThe limits being 0.10 % (16.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52813929 BTC (337,660.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,542,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.24 % (476,913.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,043.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01046681 BTC (16,143.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.57 CZK over 3533 transactions" + } + ] + }, + { + "id": 5229, + "type": "message", + "date": "2024-06-14T22:00:05", + "date_unixtime": "1718395205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005428 BTC for 82.71 CZK @ 1,523,714 CZK\nFees are 0.29048827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.25 % (201.13019050420066245664125449 CZK)\nThe limits being 0.10 % (16.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52819357 BTC (337,743.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.29 % (467,072.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,960.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01052109 BTC (16,031.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.57 CZK over 3534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005428 BTC for 82.71 CZK @ 1,523,714 CZK\nFees are 0.29048827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.25 % (201.13019050420066245664125449 CZK)\nThe limits being 0.10 % (16.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52819357 BTC (337,743.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.29 % (467,072.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,960.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01052109 BTC (16,031.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.57 CZK over 3534 transactions" + } + ] + }, + { + "id": 5230, + "type": "message", + "date": "2024-06-15T02:00:07", + "date_unixtime": "1718409607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005382 BTC for 82.71 CZK @ 1,536,734 CZK\nFees are 0.29048773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (169.04073133664282036284375922 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52824739 BTC (337,826.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,536,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.29 % (473,949.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,877.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01057491 BTC (16,250.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.57 CZK over 3535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005382 BTC for 82.71 CZK @ 1,536,734 CZK\nFees are 0.29048773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (169.04073133664282036284375922 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52824739 BTC (337,826.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,536,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.29 % (473,949.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,877.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01057491 BTC (16,250.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.57 CZK over 3535 transactions" + } + ] + }, + { + "id": 5231, + "type": "message", + "date": "2024-06-15T06:00:06", + "date_unixtime": "1718424006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005367 BTC for 82.70 CZK @ 1,540,836 CZK\nFees are 0.29045139 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (169.49197270704017214205284301 CZK)\nThe limits being 0.10 % (16.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52830106 BTC (337,909.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,540,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.90 % (476,116.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,794.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01062858 BTC (16,376.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.56 CZK over 3536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005367 BTC for 82.70 CZK @ 1,540,836 CZK\nFees are 0.29045139 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (169.49197270704017214205284301 CZK)\nThe limits being 0.10 % (16.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52830106 BTC (337,909.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,540,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.90 % (476,116.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,794.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01062858 BTC (16,376.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.56 CZK over 3536 transactions" + } + ] + }, + { + "id": 5232, + "type": "message", + "date": "2024-06-15T10:00:06", + "date_unixtime": "1718438406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005371 BTC for 82.71 CZK @ 1,539,888 CZK\nFees are 0.29048897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (169.38765345680362633222744783 CZK)\nThe limits being 0.10 % (16.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52835477 BTC (337,992.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,539,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.72 % (475,614.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,711.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01068229 BTC (16,449.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.56 CZK over 3537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005371 BTC for 82.71 CZK @ 1,539,888 CZK\nFees are 0.29048897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (169.38765345680362633222744783 CZK)\nThe limits being 0.10 % (16.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52835477 BTC (337,992.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,539,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.72 % (475,614.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,711.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01068229 BTC (16,449.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.56 CZK over 3537 transactions" + } + ] + }, + { + "id": 5233, + "type": "message", + "date": "2024-06-15T14:00:04", + "date_unixtime": "1718452804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005355 BTC for 82.71 CZK @ 1,544,446 CZK\nFees are 0.29048095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (186.87797648938333014654126058 CZK)\nThe limits being 0.10 % (16.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52840832 BTC (338,075.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.40 % (478,023.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,628.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01073584 BTC (16,580.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.56 CZK over 3538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005355 BTC for 82.71 CZK @ 1,544,446 CZK\nFees are 0.29048095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.13 % (186.87797648938333014654126058 CZK)\nThe limits being 0.10 % (16.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52840832 BTC (338,075.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.40 % (478,023.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,628.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01073584 BTC (16,580.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.56 CZK over 3538 transactions" + } + ] + }, + { + "id": 5234, + "type": "message", + "date": "2024-06-15T18:00:05", + "date_unixtime": "1718467205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005367 BTC for 82.71 CZK @ 1,541,050 CZK\nFees are 0.29049165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (186.46700718493285425735099502 CZK)\nThe limits being 0.10 % (16.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52846199 BTC (338,158.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.83 % (476,228.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,545.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01078951 BTC (16,627.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.55 CZK over 3539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005367 BTC for 82.71 CZK @ 1,541,050 CZK\nFees are 0.29049165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (186.46700718493285425735099502 CZK)\nThe limits being 0.10 % (16.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52846199 BTC (338,158.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.83 % (476,228.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,545.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01078951 BTC (16,627.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.55 CZK over 3539 transactions" + } + ] + }, + { + "id": 5235, + "type": "message", + "date": "2024-06-15T22:00:05", + "date_unixtime": "1718481605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005384 BTC for 82.70 CZK @ 1,536,104 CZK\nFees are 0.29047663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (168.97147923760152986093990498 CZK)\nThe limits being 0.10 % (16.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52851583 BTC (338,241.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 639,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,536,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.02 % (473,614.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,462.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01084335 BTC (16,656.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.55 CZK over 3540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005384 BTC for 82.70 CZK @ 1,536,104 CZK\nFees are 0.29047663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (168.97147923760152986093990498 CZK)\nThe limits being 0.10 % (16.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52851583 BTC (338,241.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 639,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,536,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.02 % (473,614.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,462.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01084335 BTC (16,656.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.55 CZK over 3540 transactions" + } + ] + }, + { + "id": 5236, + "type": "message", + "date": "2024-06-16T02:00:05", + "date_unixtime": "1718496005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005380 BTC for 82.70 CZK @ 1,537,169 CZK\nFees are 0.29046199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (152.17973123343391068064747363 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52856963 BTC (338,324.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,537,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.15 % (474,176.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,379.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01089715 BTC (16,750.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.54 CZK over 3541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005380 BTC for 82.70 CZK @ 1,537,169 CZK\nFees are 0.29046199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (152.17973123343391068064747363 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52856963 BTC (338,324.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,537,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.15 % (474,176.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,379.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01089715 BTC (16,750.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.54 CZK over 3541 transactions" + } + ] + }, + { + "id": 5237, + "type": "message", + "date": "2024-06-16T06:00:05", + "date_unixtime": "1718510405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005383 BTC for 82.71 CZK @ 1,536,442 CZK\nFees are 0.29048655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (135.20691327631758101706261042 CZK)\nThe limits being 0.10 % (16.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52862346 BTC (338,407.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,536,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.01 % (473,792.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,296.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01095098 BTC (16,825.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.54 CZK over 3542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005383 BTC for 82.71 CZK @ 1,536,442 CZK\nFees are 0.29048655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (135.20691327631758101706261042 CZK)\nThe limits being 0.10 % (16.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52862346 BTC (338,407.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,536,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.01 % (473,792.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,296.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01095098 BTC (16,825.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.54 CZK over 3542 transactions" + } + ] + }, + { + "id": 5238, + "type": "message", + "date": "2024-06-16T10:00:05", + "date_unixtime": "1718524805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005363 BTC for 82.71 CZK @ 1,542,164 CZK\nFees are 0.29048512 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (118.74666007236837765564324975 CZK)\nThe limits being 0.10 % (16.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52867709 BTC (338,490.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,542,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.87 % (476,816.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,213.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01100461 BTC (16,970.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.54 CZK over 3543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005363 BTC for 82.71 CZK @ 1,542,164 CZK\nFees are 0.29048512 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (118.74666007236837765564324975 CZK)\nThe limits being 0.10 % (16.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52867709 BTC (338,490.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,542,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.87 % (476,816.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,213.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01100461 BTC (16,970.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.54 CZK over 3543 transactions" + } + ] + }, + { + "id": 5239, + "type": "message", + "date": "2024-06-16T14:00:06", + "date_unixtime": "1718539206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,902 CZK\nFees are 0.29045821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (118.95747095142715049912639966 CZK)\nThe limits being 0.10 % (17.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52873062 BTC (338,573.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.26 % (478,264.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,130.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01105814 BTC (17,083.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.53 CZK over 3544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,902 CZK\nFees are 0.29045821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (118.95747095142715049912639966 CZK)\nThe limits being 0.10 % (17.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52873062 BTC (338,573.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.26 % (478,264.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,130.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01105814 BTC (17,083.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.53 CZK over 3544 transactions" + } + ] + }, + { + "id": 5240, + "type": "message", + "date": "2024-06-16T18:00:06", + "date_unixtime": "1718553606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005340 BTC for 82.70 CZK @ 1,548,762 CZK\nFees are 0.29047671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.25465949028587210680222219 CZK)\nThe limits being 0.10 % (17.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52878402 BTC (338,656.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.83 % (480,304.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,047.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01111154 BTC (17,209.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.53 CZK over 3545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005340 BTC for 82.70 CZK @ 1,548,762 CZK\nFees are 0.29047671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (119.25465949028587210680222219 CZK)\nThe limits being 0.10 % (17.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52878402 BTC (338,656.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.83 % (480,304.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,047.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01111154 BTC (17,209.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.53 CZK over 3545 transactions" + } + ] + }, + { + "id": 5241, + "type": "message", + "date": "2024-06-16T22:00:05", + "date_unixtime": "1718568005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005338 BTC for 82.70 CZK @ 1,549,279 CZK\nFees are 0.29046490 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (153.37863061861230167997620915 CZK)\nThe limits being 0.10 % (17.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52883740 BTC (338,739.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,549,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.87 % (480,577.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,964.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01116492 BTC (17,297.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.53 CZK over 3546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005338 BTC for 82.70 CZK @ 1,549,279 CZK\nFees are 0.29046490 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (153.37863061861230167997620915 CZK)\nThe limits being 0.10 % (17.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52883740 BTC (338,739.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,549,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.87 % (480,577.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,964.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01116492 BTC (17,297.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.53 CZK over 3546 transactions" + } + ] + }, + { + "id": 5242, + "type": "message", + "date": "2024-06-17T02:00:08", + "date_unixtime": "1718582408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005341 BTC for 82.70 CZK @ 1,548,467 CZK\nFees are 0.29047581 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (85.16568935238554219564980722 CZK)\nThe limits being 0.10 % (17.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52889081 BTC (338,822.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.71 % (480,147.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,881.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01121833 BTC (17,371.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.52 CZK over 3547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005341 BTC for 82.70 CZK @ 1,548,467 CZK\nFees are 0.29047581 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (85.16568935238554219564980722 CZK)\nThe limits being 0.10 % (17.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52889081 BTC (338,822.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.71 % (480,147.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,881.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01121833 BTC (17,371.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.52 CZK over 3547 transactions" + } + ] + }, + { + "id": 5243, + "type": "message", + "date": "2024-06-17T06:00:06", + "date_unixtime": "1718596806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005377 BTC for 82.71 CZK @ 1,538,227 CZK\nFees are 0.29049976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (67.681971747943014031510876153 CZK)\nThe limits being 0.10 % (17.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52894458 BTC (338,905.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,538,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.08 % (474,731.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,798.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01127210 BTC (17,339.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.52 CZK over 3548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005377 BTC for 82.71 CZK @ 1,538,227 CZK\nFees are 0.29049976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (67.681971747943014031510876153 CZK)\nThe limits being 0.10 % (17.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52894458 BTC (338,905.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,538,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.08 % (474,731.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,798.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01127210 BTC (17,339.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.52 CZK over 3548 transactions" + } + ] + }, + { + "id": 5244, + "type": "message", + "date": "2024-06-17T10:00:05", + "date_unixtime": "1718611205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005389 BTC for 82.70 CZK @ 1,534,626 CZK\nFees are 0.29046651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (67.523530011262307660800854459 CZK)\nThe limits being 0.10 % (17.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52899847 BTC (338,988.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,534,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.48 % (472,826.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,715.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01132599 BTC (17,381.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.52 CZK over 3549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005389 BTC for 82.70 CZK @ 1,534,626 CZK\nFees are 0.29046651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (67.523530011262307660800854459 CZK)\nThe limits being 0.10 % (17.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52899847 BTC (338,988.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,534,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.48 % (472,826.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,715.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01132599 BTC (17,381.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.52 CZK over 3549 transactions" + } + ] + }, + { + "id": 5245, + "type": "message", + "date": "2024-06-17T14:00:05", + "date_unixtime": "1718625605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005419 BTC for 82.70 CZK @ 1,526,134 CZK\nFees are 0.29046721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (67.149877450697793007735520259 CZK)\nThe limits being 0.10 % (17.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52905266 BTC (339,071.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,526,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.12 % (468,333.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,632.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01138018 BTC (17,367.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.51 CZK over 3550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005419 BTC for 82.70 CZK @ 1,526,134 CZK\nFees are 0.29046721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (67.149877450697793007735520259 CZK)\nThe limits being 0.10 % (17.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52905266 BTC (339,071.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,526,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.12 % (468,333.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,632.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01138018 BTC (17,367.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.51 CZK over 3550 transactions" + } + ] + }, + { + "id": 5246, + "type": "message", + "date": "2024-06-17T18:00:05", + "date_unixtime": "1718640005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005452 BTC for 82.70 CZK @ 1,516,897 CZK\nFees are 0.29046730 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (66.743451444522308384337869548 CZK)\nThe limits being 0.10 % (17.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52910718 BTC (339,154.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 640,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.65 % (463,446.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,549.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01143470 BTC (17,345.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.51 CZK over 3551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005452 BTC for 82.70 CZK @ 1,516,897 CZK\nFees are 0.29046730 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (66.743451444522308384337869548 CZK)\nThe limits being 0.10 % (17.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52910718 BTC (339,154.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 640,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.65 % (463,446.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,549.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01143470 BTC (17,345.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.51 CZK over 3551 transactions" + } + ] + }, + { + "id": 5247, + "type": "message", + "date": "2024-06-17T22:00:06", + "date_unixtime": "1718654406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,990 CZK\nFees are 0.29047480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (67.979579329622614516295524973 CZK)\nThe limits being 0.10 % (17.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52916071 BTC (339,237.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,544,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.00 % (478,311.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,466.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01148823 BTC (17,749.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.51 CZK over 3552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005353 BTC for 82.70 CZK @ 1,544,990 CZK\nFees are 0.29047480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (67.979579329622614516295524973 CZK)\nThe limits being 0.10 % (17.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52916071 BTC (339,237.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,544,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.00 % (478,311.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,466.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01148823 BTC (17,749.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.51 CZK over 3552 transactions" + } + ] + }, + { + "id": 5248, + "type": "message", + "date": "2024-06-18T02:00:15", + "date_unixtime": "1718668815", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005368 BTC for 82.71 CZK @ 1,540,706 CZK\nFees are 0.29048094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (84.73881854084474829898633471 CZK)\nThe limits being 0.10 % (17.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52921439 BTC (339,320.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,540,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.29 % (476,043.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,383.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01154191 BTC (17,782.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.50 CZK over 3553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005368 BTC for 82.71 CZK @ 1,540,706 CZK\nFees are 0.29048094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (84.73881854084474829898633471 CZK)\nThe limits being 0.10 % (17.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52921439 BTC (339,320.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,540,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.29 % (476,043.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,383.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01154191 BTC (17,782.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.50 CZK over 3553 transactions" + } + ] + }, + { + "id": 5249, + "type": "message", + "date": "2024-06-18T06:00:06", + "date_unixtime": "1718683206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005438 BTC for 82.71 CZK @ 1,520,931 CZK\nFees are 0.29049191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (133.84189707483901966508173948 CZK)\nThe limits being 0.10 % (17.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52926877 BTC (339,403.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.18 % (465,578.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,300.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01159629 BTC (17,637.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.50 CZK over 3554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005438 BTC for 82.71 CZK @ 1,520,931 CZK\nFees are 0.29049191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (133.84189707483901966508173948 CZK)\nThe limits being 0.10 % (17.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52926877 BTC (339,403.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.18 % (465,578.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,300.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01159629 BTC (17,637.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.50 CZK over 3554 transactions" + } + ] + }, + { + "id": 5250, + "type": "message", + "date": "2024-06-18T10:00:05", + "date_unixtime": "1718697605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005414 BTC for 82.70 CZK @ 1,527,602 CZK\nFees are 0.29047847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (100.82174706002209849567886611 CZK)\nThe limits being 0.10 % (17.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52932291 BTC (339,486.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,527,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.18 % (469,108.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,217.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01165043 BTC (17,797.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.50 CZK over 3555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005414 BTC for 82.70 CZK @ 1,527,602 CZK\nFees are 0.29047847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (100.82174706002209849567886611 CZK)\nThe limits being 0.10 % (17.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52932291 BTC (339,486.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,527,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.18 % (469,108.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,217.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01165043 BTC (17,797.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.50 CZK over 3555 transactions" + } + ] + }, + { + "id": 5251, + "type": "message", + "date": "2024-06-18T14:00:06", + "date_unixtime": "1718712006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005433 BTC for 82.71 CZK @ 1,522,327 CZK\nFees are 0.29049129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (83.72799154642902244133385167 CZK)\nThe limits being 0.10 % (17.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52937724 BTC (339,569.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.33 % (466,316.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,134.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01170476 BTC (17,818.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.49 CZK over 3556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005433 BTC for 82.71 CZK @ 1,522,327 CZK\nFees are 0.29049129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (83.72799154642902244133385167 CZK)\nThe limits being 0.10 % (17.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52937724 BTC (339,569.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.33 % (466,316.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,134.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01170476 BTC (17,818.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.49 CZK over 3556 transactions" + } + ] + }, + { + "id": 5252, + "type": "message", + "date": "2024-06-18T18:00:05", + "date_unixtime": "1718726405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005457 BTC for 82.71 CZK @ 1,515,652 CZK\nFees are 0.29049505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (66.688667299051085539990644796 CZK)\nThe limits being 0.10 % (17.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52943181 BTC (339,652.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,515,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.25 % (462,782.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,051.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01175933 BTC (17,823.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.49 CZK over 3557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005457 BTC for 82.71 CZK @ 1,515,652 CZK\nFees are 0.29049505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (66.688667299051085539990644796 CZK)\nThe limits being 0.10 % (17.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52943181 BTC (339,652.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,515,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.25 % (462,782.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,051.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01175933 BTC (17,823.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.49 CZK over 3557 transactions" + } + ] + }, + { + "id": 5253, + "type": "message", + "date": "2024-06-18T22:00:05", + "date_unixtime": "1718740805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005477 BTC for 82.71 CZK @ 1,510,140 CZK\nFees are 0.29049946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (116.28076710079629094408387515 CZK)\nThe limits being 0.10 % (17.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52948658 BTC (339,735.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.36 % (459,863.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,968.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01181410 BTC (17,840.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.48 CZK over 3558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005477 BTC for 82.71 CZK @ 1,510,140 CZK\nFees are 0.29049946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (116.28076710079629094408387515 CZK)\nThe limits being 0.10 % (17.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52948658 BTC (339,735.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.36 % (459,863.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,968.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01181410 BTC (17,840.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.48 CZK over 3558 transactions" + } + ] + }, + { + "id": 5254, + "type": "message", + "date": "2024-06-19T02:00:05", + "date_unixtime": "1718755205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005445 BTC for 82.71 CZK @ 1,518,996 CZK\nFees are 0.29049582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (83.54477122998797139305360531 CZK)\nThe limits being 0.10 % (18.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52954103 BTC (339,818.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,518,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.71 % (464,552.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,885.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01186855 BTC (18,028.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.48 CZK over 3559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005445 BTC for 82.71 CZK @ 1,518,996 CZK\nFees are 0.29049582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (83.54477122998797139305360531 CZK)\nThe limits being 0.10 % (18.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52954103 BTC (339,818.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,518,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.71 % (464,552.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,885.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01186855 BTC (18,028.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.48 CZK over 3559 transactions" + } + ] + }, + { + "id": 5255, + "type": "message", + "date": "2024-06-19T06:00:05", + "date_unixtime": "1718769605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005429 BTC for 82.70 CZK @ 1,523,267 CZK\nFees are 0.29045672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (83.77971006799465822467192786 CZK)\nThe limits being 0.10 % (18.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52959532 BTC (339,901.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,267 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.34 % (466,814.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,802.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01192284 BTC (18,161.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.48 CZK over 3560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005429 BTC for 82.70 CZK @ 1,523,267 CZK\nFees are 0.29045672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (83.77971006799465822467192786 CZK)\nThe limits being 0.10 % (18.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52959532 BTC (339,901.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,267 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.34 % (466,814.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,802.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01192284 BTC (18,161.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.48 CZK over 3560 transactions" + } + ] + }, + { + "id": 5256, + "type": "message", + "date": "2024-06-19T10:00:06", + "date_unixtime": "1718784006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005439 BTC for 82.71 CZK @ 1,520,674 CZK\nFees are 0.29049630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (117.09189883797955546834470601 CZK)\nThe limits being 0.10 % (18.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52964971 BTC (339,984.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.90 % (465,440.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,719.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01197723 BTC (18,213.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.47 CZK over 3561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005439 BTC for 82.71 CZK @ 1,520,674 CZK\nFees are 0.29049630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (117.09189883797955546834470601 CZK)\nThe limits being 0.10 % (18.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52964971 BTC (339,984.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.90 % (465,440.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,719.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01197723 BTC (18,213.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.47 CZK over 3561 transactions" + } + ] + }, + { + "id": 5257, + "type": "message", + "date": "2024-06-19T14:00:05", + "date_unixtime": "1718798405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005438 BTC for 82.70 CZK @ 1,520,709 CZK\nFees are 0.29044959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (83.63900039820173343280130430 CZK)\nThe limits being 0.10 % (18.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52970409 BTC (340,067.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 641,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,520,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.87 % (465,458.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,636.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01203161 BTC (18,296.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.47 CZK over 3562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005438 BTC for 82.70 CZK @ 1,520,709 CZK\nFees are 0.29044959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (83.63900039820173343280130430 CZK)\nThe limits being 0.10 % (18.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52970409 BTC (340,067.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 641,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,520,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.87 % (465,458.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,636.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01203161 BTC (18,296.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.47 CZK over 3562 transactions" + } + ] + }, + { + "id": 5258, + "type": "message", + "date": "2024-06-19T18:00:06", + "date_unixtime": "1718812806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005477 BTC for 82.71 CZK @ 1,510,083 CZK\nFees are 0.29048846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (116.27636716844340408351671106 CZK)\nThe limits being 0.10 % (18.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52975886 BTC (340,150.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.18 % (459,829.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,553.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01208638 BTC (18,251.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.47 CZK over 3563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005477 BTC for 82.71 CZK @ 1,510,083 CZK\nFees are 0.29048846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (116.27636716844340408351671106 CZK)\nThe limits being 0.10 % (18.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52975886 BTC (340,150.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.18 % (459,829.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,553.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01208638 BTC (18,251.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.47 CZK over 3563 transactions" + } + ] + }, + { + "id": 5259, + "type": "message", + "date": "2024-06-19T22:00:05", + "date_unixtime": "1718827205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005478 BTC for 82.71 CZK @ 1,509,769 CZK\nFees are 0.29048113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (149.46712215678858933491814793 CZK)\nThe limits being 0.10 % (18.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52981364 BTC (340,232.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.10 % (459,663.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,470.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01214116 BTC (18,330.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.46 CZK over 3564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005478 BTC for 82.71 CZK @ 1,509,769 CZK\nFees are 0.29048113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (149.46712215678858933491814793 CZK)\nThe limits being 0.10 % (18.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52981364 BTC (340,232.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.10 % (459,663.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,470.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01214116 BTC (18,330.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.46 CZK over 3564 transactions" + } + ] + }, + { + "id": 5260, + "type": "message", + "date": "2024-06-20T02:00:05", + "date_unixtime": "1718841605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005470 BTC for 82.70 CZK @ 1,511,902 CZK\nFees are 0.29046677 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (133.04739466419633658793855873 CZK)\nThe limits being 0.10 % (18.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52986834 BTC (340,315.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.40 % (460,793.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,387.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01219586 BTC (18,438.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.46 CZK over 3565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005470 BTC for 82.70 CZK @ 1,511,902 CZK\nFees are 0.29046677 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (133.04739466419633658793855873 CZK)\nThe limits being 0.10 % (18.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52986834 BTC (340,315.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.40 % (460,793.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,387.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01219586 BTC (18,438.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.46 CZK over 3565 transactions" + } + ] + }, + { + "id": 5261, + "type": "message", + "date": "2024-06-20T06:00:07", + "date_unixtime": "1718856007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005455 BTC for 82.70 CZK @ 1,515,975 CZK\nFees are 0.29045062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (133.40582940752279944118591346 CZK)\nThe limits being 0.10 % (18.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52992289 BTC (340,398.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,515,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.00 % (462,951.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,304.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01225041 BTC (18,571.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.46 CZK over 3566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005455 BTC for 82.70 CZK @ 1,515,975 CZK\nFees are 0.29045062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (133.40582940752279944118591346 CZK)\nThe limits being 0.10 % (18.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52992289 BTC (340,398.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,515,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.00 % (462,951.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,304.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01225041 BTC (18,571.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.46 CZK over 3566 transactions" + } + ] + }, + { + "id": 5262, + "type": "message", + "date": "2024-06-20T10:00:06", + "date_unixtime": "1718870406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005385 BTC for 82.70 CZK @ 1,535,699 CZK\nFees are 0.29045398 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (101.35615710917082689694703635 CZK)\nThe limits being 0.10 % (18.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.52997674 BTC (340,481.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,535,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.04 % (473,402.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,221.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01230426 BTC (18,895.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.45 CZK over 3567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005385 BTC for 82.70 CZK @ 1,535,699 CZK\nFees are 0.29045398 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (101.35615710917082689694703635 CZK)\nThe limits being 0.10 % (18.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.52997674 BTC (340,481.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,535,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.04 % (473,402.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,221.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01230426 BTC (18,895.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.45 CZK over 3567 transactions" + } + ] + }, + { + "id": 5263, + "type": "message", + "date": "2024-06-20T14:00:06", + "date_unixtime": "1718884806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005379 BTC for 82.71 CZK @ 1,537,621 CZK\nFees are 0.29049342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (67.655329544956659870412655908 CZK)\nThe limits being 0.10 % (19.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53003053 BTC (340,564.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,537,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.30 % (474,421.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,138.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01235805 BTC (19,002.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.45 CZK over 3568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005379 BTC for 82.71 CZK @ 1,537,621 CZK\nFees are 0.29049342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (67.655329544956659870412655908 CZK)\nThe limits being 0.10 % (19.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53003053 BTC (340,564.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,537,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.30 % (474,421.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,138.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01235805 BTC (19,002.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.45 CZK over 3568 transactions" + } + ] + }, + { + "id": 5264, + "type": "message", + "date": "2024-06-20T18:00:08", + "date_unixtime": "1718899208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005480 BTC for 82.70 CZK @ 1,509,144 CZK\nFees are 0.29046698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (116.20411561323688258976792903 CZK)\nThe limits being 0.10 % (18.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53008533 BTC (340,647.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.84 % (459,327.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,055.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01241285 BTC (18,732.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.45 CZK over 3569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005480 BTC for 82.70 CZK @ 1,509,144 CZK\nFees are 0.29046698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (116.20411561323688258976792903 CZK)\nThe limits being 0.10 % (18.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53008533 BTC (340,647.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.84 % (459,327.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,055.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01241285 BTC (18,732.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.45 CZK over 3569 transactions" + } + ] + }, + { + "id": 5265, + "type": "message", + "date": "2024-06-20T22:00:06", + "date_unixtime": "1718913606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005462 BTC for 82.70 CZK @ 1,514,185 CZK\nFees are 0.29047986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (116.59223612650487117863019527 CZK)\nThe limits being 0.10 % (18.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53013995 BTC (340,730.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,514,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.59 % (461,998.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 972.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01246747 BTC (18,878.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.44 CZK over 3570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005462 BTC for 82.70 CZK @ 1,514,185 CZK\nFees are 0.29047986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (116.59223612650487117863019527 CZK)\nThe limits being 0.10 % (18.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53013995 BTC (340,730.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,514,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.59 % (461,998.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 972.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01246747 BTC (18,878.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.44 CZK over 3570 transactions" + } + ] + }, + { + "id": 5266, + "type": "message", + "date": "2024-06-21T02:00:05", + "date_unixtime": "1718928005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005467 BTC for 82.70 CZK @ 1,512,712 CZK\nFees are 0.29046300 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (116.47884133701060373200839316 CZK)\nThe limits being 0.10 % (18.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53019462 BTC (340,813.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,512,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.33 % (461,217.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,889.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01252214 BTC (18,942.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.44 CZK over 3571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005467 BTC for 82.70 CZK @ 1,512,712 CZK\nFees are 0.29046300 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (116.47884133701060373200839316 CZK)\nThe limits being 0.10 % (18.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53019462 BTC (340,813.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,512,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.33 % (461,217.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,889.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01252214 BTC (18,942.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.44 CZK over 3571 transactions" + } + ] + }, + { + "id": 5267, + "type": "message", + "date": "2024-06-21T06:00:08", + "date_unixtime": "1718942408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005499 BTC for 82.70 CZK @ 1,503,897 CZK\nFees are 0.29046066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (82.71435256562025636223390891 CZK)\nThe limits being 0.10 % (18.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53024961 BTC (340,896.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,503,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.92 % (456,544.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,806.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01257713 BTC (18,914.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.44 CZK over 3572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005499 BTC for 82.70 CZK @ 1,503,897 CZK\nFees are 0.29046066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (82.71435256562025636223390891 CZK)\nThe limits being 0.10 % (18.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53024961 BTC (340,896.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,503,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.92 % (456,544.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,806.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01257713 BTC (18,914.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.44 CZK over 3572 transactions" + } + ] + }, + { + "id": 5268, + "type": "message", + "date": "2024-06-21T10:00:06", + "date_unixtime": "1718956806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005480 BTC for 82.70 CZK @ 1,509,154 CZK\nFees are 0.29046891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (66.402792876756170920028076910 CZK)\nThe limits being 0.10 % (19.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53030441 BTC (340,979.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 642,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.71 % (459,331.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,723.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01263193 BTC (19,063.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.43 CZK over 3573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005480 BTC for 82.70 CZK @ 1,509,154 CZK\nFees are 0.29046891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (66.402792876756170920028076910 CZK)\nThe limits being 0.10 % (19.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53030441 BTC (340,979.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 642,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.71 % (459,331.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,723.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01263193 BTC (19,063.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.43 CZK over 3573 transactions" + } + ] + }, + { + "id": 5269, + "type": "message", + "date": "2024-06-21T14:00:05", + "date_unixtime": "1718971205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005518 BTC for 82.71 CZK @ 1,498,830 CZK\nFees are 0.29048213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (49.461380954625465455898917038 CZK)\nThe limits being 0.10 % (19.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53035959 BTC (341,062.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,498,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.07 % (453,855.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,640.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01268711 BTC (19,015.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.43 CZK over 3574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005518 BTC for 82.71 CZK @ 1,498,830 CZK\nFees are 0.29048213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (49.461380954625465455898917038 CZK)\nThe limits being 0.10 % (19.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53035959 BTC (341,062.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,498,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.07 % (453,855.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,640.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01268711 BTC (19,015.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.43 CZK over 3574 transactions" + } + ] + }, + { + "id": 5270, + "type": "message", + "date": "2024-06-21T18:00:08", + "date_unixtime": "1718985608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005517 BTC for 82.70 CZK @ 1,498,999 CZK\nFees are 0.29046231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (115.42293431861061958331628678 CZK)\nThe limits being 0.10 % (19.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53041476 BTC (341,145.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,498,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.06 % (453,945.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,557.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01274228 BTC (19,100.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.43 CZK over 3575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005517 BTC for 82.70 CZK @ 1,498,999 CZK\nFees are 0.29046231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (115.42293431861061958331628678 CZK)\nThe limits being 0.10 % (19.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53041476 BTC (341,145.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,498,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.06 % (453,945.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,557.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01274228 BTC (19,100.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.43 CZK over 3575 transactions" + } + ] + }, + { + "id": 5271, + "type": "message", + "date": "2024-06-21T22:00:06", + "date_unixtime": "1719000006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005511 BTC for 82.71 CZK @ 1,500,729 CZK\nFees are 0.29048134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (148.57221524663677130044843049 CZK)\nThe limits being 0.10 % (19.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53046987 BTC (341,228.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,500,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.30 % (454,862.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,474.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01279739 BTC (19,205.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.42 CZK over 3576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005511 BTC for 82.71 CZK @ 1,500,729 CZK\nFees are 0.29048134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (148.57221524663677130044843049 CZK)\nThe limits being 0.10 % (19.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53046987 BTC (341,228.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,500,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.30 % (454,862.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,474.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01279739 BTC (19,205.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.42 CZK over 3576 transactions" + } + ] + }, + { + "id": 5272, + "type": "message", + "date": "2024-06-22T02:00:05", + "date_unixtime": "1719014405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005487 BTC for 82.71 CZK @ 1,507,320 CZK\nFees are 0.29048639 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (149.22466263267192491670078726 CZK)\nThe limits being 0.10 % (19.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53052474 BTC (341,311.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.29 % (458,358.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,391.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01285226 BTC (19,372.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.42 CZK over 3577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005487 BTC for 82.71 CZK @ 1,507,320 CZK\nFees are 0.29048639 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (149.22466263267192491670078726 CZK)\nThe limits being 0.10 % (19.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53052474 BTC (341,311.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.29 % (458,358.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,391.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01285226 BTC (19,372.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.42 CZK over 3577 transactions" + } + ] + }, + { + "id": 5273, + "type": "message", + "date": "2024-06-22T06:00:06", + "date_unixtime": "1719028806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005487 BTC for 82.71 CZK @ 1,507,346 CZK\nFees are 0.29049142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (132.64643826287236516551464807 CZK)\nThe limits being 0.10 % (19.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53057961 BTC (341,394.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.26 % (458,372.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,308.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01290713 BTC (19,455.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.42 CZK over 3578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005487 BTC for 82.71 CZK @ 1,507,346 CZK\nFees are 0.29049142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (132.64643826287236516551464807 CZK)\nThe limits being 0.10 % (19.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53057961 BTC (341,394.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.26 % (458,372.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,308.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01290713 BTC (19,455.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.42 CZK over 3578 transactions" + } + ] + }, + { + "id": 5274, + "type": "message", + "date": "2024-06-22T10:00:06", + "date_unixtime": "1719043206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005466 BTC for 82.70 CZK @ 1,513,060 CZK\nFees are 0.29047665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.930982954828243846865279973 CZK)\nThe limits being 0.10 % (19.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53063427 BTC (341,477.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,513,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.12 % (461,403.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,225.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01296179 BTC (19,611.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.41 CZK over 3579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005466 BTC for 82.70 CZK @ 1,513,060 CZK\nFees are 0.29047665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.930982954828243846865279973 CZK)\nThe limits being 0.10 % (19.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53063427 BTC (341,477.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,513,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.12 % (461,403.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,225.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01296179 BTC (19,611.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.41 CZK over 3579 transactions" + } + ] + }, + { + "id": 5275, + "type": "message", + "date": "2024-06-22T14:00:05", + "date_unixtime": "1719057605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005468 BTC for 82.70 CZK @ 1,512,395 CZK\nFees are 0.29045529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.909049448729009549240423699 CZK)\nThe limits being 0.10 % (19.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53068895 BTC (341,560.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,512,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.98 % (461,050.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,142.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01301647 BTC (19,686.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.41 CZK over 3580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005468 BTC for 82.70 CZK @ 1,512,395 CZK\nFees are 0.29045529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.909049448729009549240423699 CZK)\nThe limits being 0.10 % (19.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53068895 BTC (341,560.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,512,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.98 % (461,050.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,142.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01301647 BTC (19,686.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.41 CZK over 3580 transactions" + } + ] + }, + { + "id": 5276, + "type": "message", + "date": "2024-06-22T18:00:06", + "date_unixtime": "1719072006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005478 BTC for 82.70 CZK @ 1,509,742 CZK\nFees are 0.29047592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.821480835149266723095671175 CZK)\nThe limits being 0.10 % (19.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53074373 BTC (341,643.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.54 % (459,642.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,059.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01307125 BTC (19,734.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.40 CZK over 3581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005478 BTC for 82.70 CZK @ 1,509,742 CZK\nFees are 0.29047592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.821480835149266723095671175 CZK)\nThe limits being 0.10 % (19.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53074373 BTC (341,643.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.54 % (459,642.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,059.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01307125 BTC (19,734.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.40 CZK over 3581 transactions" + } + ] + }, + { + "id": 5277, + "type": "message", + "date": "2024-06-22T22:00:06", + "date_unixtime": "1719086406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005485 BTC for 82.70 CZK @ 1,507,747 CZK\nFees are 0.29046278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (66.340862979571499750871948178 CZK)\nThe limits being 0.10 % (19.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53079858 BTC (341,726.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,507,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.20 % (458,583.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,976.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01312610 BTC (19,790.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.40 CZK over 3582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005485 BTC for 82.70 CZK @ 1,507,747 CZK\nFees are 0.29046278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (66.340862979571499750871948178 CZK)\nThe limits being 0.10 % (19.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53079858 BTC (341,726.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,507,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.20 % (458,583.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,976.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01312610 BTC (19,790.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.40 CZK over 3582 transactions" + } + ] + }, + { + "id": 5278, + "type": "message", + "date": "2024-06-23T02:00:06", + "date_unixtime": "1719100806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005479 BTC for 82.71 CZK @ 1,509,547 CZK\nFees are 0.29049152 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.815062883666975769148189408 CZK)\nThe limits being 0.10 % (19.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53085337 BTC (341,809.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,509,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.44 % (459,538.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,893.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01318089 BTC (19,897.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.40 CZK over 3583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005479 BTC for 82.71 CZK @ 1,509,547 CZK\nFees are 0.29049152 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.815062883666975769148189408 CZK)\nThe limits being 0.10 % (19.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53085337 BTC (341,809.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,509,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.44 % (459,538.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,893.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01318089 BTC (19,897.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.40 CZK over 3583 transactions" + } + ] + }, + { + "id": 5279, + "type": "message", + "date": "2024-06-23T06:00:06", + "date_unixtime": "1719115206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005488 BTC for 82.70 CZK @ 1,506,902 CZK\nFees are 0.29045875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.727758925575355061947905362 CZK)\nThe limits being 0.10 % (19.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53090825 BTC (341,892.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 643,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.00 % (458,133.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,810.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01323577 BTC (19,945.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.39 CZK over 3584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005488 BTC for 82.70 CZK @ 1,506,902 CZK\nFees are 0.29045875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.727758925575355061947905362 CZK)\nThe limits being 0.10 % (19.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53090825 BTC (341,892.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 643,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.00 % (458,133.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,810.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01323577 BTC (19,945.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.39 CZK over 3584 transactions" + } + ] + }, + { + "id": 5280, + "type": "message", + "date": "2024-06-23T10:00:05", + "date_unixtime": "1719129605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005470 BTC for 82.71 CZK @ 1,511,989 CZK\nFees are 0.29048352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.895651155507824989137652582 CZK)\nThe limits being 0.10 % (20.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53096295 BTC (341,975.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.76 % (460,834.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,727.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01329047 BTC (20,095.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.39 CZK over 3585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005470 BTC for 82.71 CZK @ 1,511,989 CZK\nFees are 0.29048352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.895651155507824989137652582 CZK)\nThe limits being 0.10 % (20.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53096295 BTC (341,975.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.76 % (460,834.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,727.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01329047 BTC (20,095.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.39 CZK over 3585 transactions" + } + ] + }, + { + "id": 5281, + "type": "message", + "date": "2024-06-23T14:00:05", + "date_unixtime": "1719144005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005475 BTC for 82.71 CZK @ 1,510,669 CZK\nFees are 0.29049516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.852081878903290537911829149 CZK)\nThe limits being 0.10 % (20.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53101770 BTC (342,058.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.52 % (460,133.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,644.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01334522 BTC (20,160.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.39 CZK over 3586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005475 BTC for 82.71 CZK @ 1,510,669 CZK\nFees are 0.29049516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.852081878903290537911829149 CZK)\nThe limits being 0.10 % (20.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53101770 BTC (342,058.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.52 % (460,133.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,644.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01334522 BTC (20,160.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.39 CZK over 3586 transactions" + } + ] + }, + { + "id": 5282, + "type": "message", + "date": "2024-06-23T18:00:06", + "date_unixtime": "1719158406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005497 BTC for 82.71 CZK @ 1,504,644 CZK\nFees are 0.29049922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.653257783495441051825251606 CZK)\nThe limits being 0.10 % (20.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53107267 BTC (342,141.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,504,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.55 % (456,933.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,561.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01340019 BTC (20,162.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.38 CZK over 3587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005497 BTC for 82.71 CZK @ 1,504,644 CZK\nFees are 0.29049922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.653257783495441051825251606 CZK)\nThe limits being 0.10 % (20.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53107267 BTC (342,141.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,504,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.55 % (456,933.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,561.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01340019 BTC (20,162.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.38 CZK over 3587 transactions" + } + ] + }, + { + "id": 5283, + "type": "message", + "date": "2024-06-23T22:00:05", + "date_unixtime": "1719172805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005489 BTC for 82.71 CZK @ 1,506,744 CZK\nFees are 0.29048134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.722565022421524663677130044 CZK)\nThe limits being 0.10 % (20.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53112756 BTC (342,224.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.84 % (458,048.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,478.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01345508 BTC (20,273.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.38 CZK over 3588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005489 BTC for 82.71 CZK @ 1,506,744 CZK\nFees are 0.29048134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (49.722565022421524663677130044 CZK)\nThe limits being 0.10 % (20.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53112756 BTC (342,224.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.84 % (458,048.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,478.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01345508 BTC (20,273.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.38 CZK over 3588 transactions" + } + ] + }, + { + "id": 5284, + "type": "message", + "date": "2024-06-24T02:00:06", + "date_unixtime": "1719187206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005566 BTC for 82.70 CZK @ 1,485,807 CZK\nFees are 0.29046321 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (49.031643016241573465203802501 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53118322 BTC (342,307.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.56 % (446,928.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,395.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01351074 BTC (20,074.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.38 CZK over 3589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005566 BTC for 82.70 CZK @ 1,485,807 CZK\nFees are 0.29046321 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (49.031643016241573465203802501 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53118322 BTC (342,307.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.56 % (446,928.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,395.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01351074 BTC (20,074.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.38 CZK over 3589 transactions" + } + ] + }, + { + "id": 5285, + "type": "message", + "date": "2024-06-24T06:00:06", + "date_unixtime": "1719201606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005590 BTC for 82.70 CZK @ 1,479,405 CZK\nFees are 0.29045874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (48.820380008075492484711381360 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53123912 BTC (342,390.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,479,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.54 % (443,527.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,312.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01356664 BTC (20,070.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.37 CZK over 3590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005590 BTC for 82.70 CZK @ 1,479,405 CZK\nFees are 0.29045874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (48.820380008075492484711381360 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53123912 BTC (342,390.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,479,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.54 % (443,527.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,312.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01356664 BTC (20,070.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.37 CZK over 3590 transactions" + } + ] + }, + { + "id": 5286, + "type": "message", + "date": "2024-06-24T10:00:06", + "date_unixtime": "1719216006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005613 BTC for 82.70 CZK @ 1,473,412 CZK\nFees are 0.29047217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (48.622581461943592935149211858 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53129525 BTC (342,473.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,473,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.58 % (440,342.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,229.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01362277 BTC (20,071.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.37 CZK over 3591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005613 BTC for 82.70 CZK @ 1,473,412 CZK\nFees are 0.29047217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (48.622581461943592935149211858 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53129525 BTC (342,473.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,473,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.58 % (440,342.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,229.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01362277 BTC (20,071.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.37 CZK over 3591 transactions" + } + ] + }, + { + "id": 5287, + "type": "message", + "date": "2024-06-24T14:00:06", + "date_unixtime": "1719230406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005679 BTC for 82.71 CZK @ 1,456,398 CZK\nFees are 0.29049419 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (48.061143236916960737787527065 CZK)\nThe limits being 0.10 % (19.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53135204 BTC (342,556.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,456,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.91 % (431,303.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,146.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01367956 BTC (19,922.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.37 CZK over 3592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005679 BTC for 82.71 CZK @ 1,456,398 CZK\nFees are 0.29049419 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (48.061143236916960737787527065 CZK)\nThe limits being 0.10 % (19.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53135204 BTC (342,556.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,456,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.91 % (431,303.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,146.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01367956 BTC (19,922.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.37 CZK over 3592 transactions" + } + ] + }, + { + "id": 5288, + "type": "message", + "date": "2024-06-24T18:00:06", + "date_unixtime": "1719244806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005757 BTC for 82.71 CZK @ 1,436,672 CZK\nFees are 0.29049546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (47.410184548452485088017888404 CZK)\nThe limits being 0.10 % (19.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53140961 BTC (342,639.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.82 % (420,821.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,063.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01373713 BTC (19,735.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.36 CZK over 3593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005757 BTC for 82.71 CZK @ 1,436,672 CZK\nFees are 0.29049546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (47.410184548452485088017888404 CZK)\nThe limits being 0.10 % (19.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53140961 BTC (342,639.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.82 % (420,821.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,063.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01373713 BTC (19,735.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.36 CZK over 3593 transactions" + } + ] + }, + { + "id": 5289, + "type": "message", + "date": "2024-06-24T22:00:05", + "date_unixtime": "1719259205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005835 BTC for 82.71 CZK @ 1,417,473 CZK\nFees are 0.29049652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (46.776594018108855509572537250 CZK)\nThe limits being 0.10 % (19.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53146796 BTC (342,722.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.81 % (410,618.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,980.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01379548 BTC (19,554.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.36 CZK over 3594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005835 BTC for 82.71 CZK @ 1,417,473 CZK\nFees are 0.29049652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (46.776594018108855509572537250 CZK)\nThe limits being 0.10 % (19.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53146796 BTC (342,722.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.81 % (410,618.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,980.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01379548 BTC (19,554.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.36 CZK over 3594 transactions" + } + ] + }, + { + "id": 5290, + "type": "message", + "date": "2024-06-25T02:00:05", + "date_unixtime": "1719273605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005779 BTC for 82.71 CZK @ 1,431,142 CZK\nFees are 0.29048298 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (47.227669983402096814118227664 CZK)\nThe limits being 0.10 % (19.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53152575 BTC (342,805.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 644,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.90 % (417,882.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,897.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01385327 BTC (19,825.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.36 CZK over 3595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005779 BTC for 82.71 CZK @ 1,431,142 CZK\nFees are 0.29048298 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (47.227669983402096814118227664 CZK)\nThe limits being 0.10 % (19.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53152575 BTC (342,805.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 644,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.90 % (417,882.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,897.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01385327 BTC (19,825.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.36 CZK over 3595 transactions" + } + ] + }, + { + "id": 5291, + "type": "message", + "date": "2024-06-25T06:00:06", + "date_unixtime": "1719288006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005733 BTC for 82.70 CZK @ 1,442,474 CZK\nFees are 0.29045259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (47.601631307691525500622233487 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53158308 BTC (342,888.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.63 % (423,905.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,814.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01391060 BTC (20,065.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.35 CZK over 3596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005733 BTC for 82.70 CZK @ 1,442,474 CZK\nFees are 0.29045259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (47.601631307691525500622233487 CZK)\nThe limits being 0.10 % (20.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53158308 BTC (342,888.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.63 % (423,905.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,814.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01391060 BTC (20,065.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.35 CZK over 3596 transactions" + } + ] + }, + { + "id": 5292, + "type": "message", + "date": "2024-06-25T10:00:08", + "date_unixtime": "1719302408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005820 BTC for 82.71 CZK @ 1,421,127 CZK\nFees are 0.29049669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (46.897178682343755618222818075 CZK)\nThe limits being 0.10 % (19.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53164128 BTC (342,971.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.29 % (412,557.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,731.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01396880 BTC (19,851.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.35 CZK over 3597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005820 BTC for 82.71 CZK @ 1,421,127 CZK\nFees are 0.29049669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (46.897178682343755618222818075 CZK)\nThe limits being 0.10 % (19.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53164128 BTC (342,971.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.29 % (412,557.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,731.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01396880 BTC (19,851.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.35 CZK over 3597 transactions" + } + ] + }, + { + "id": 5293, + "type": "message", + "date": "2024-06-25T14:00:06", + "date_unixtime": "1719316806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005790 BTC for 82.70 CZK @ 1,428,407 CZK\nFees are 0.29047975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (109.98731732098277789395148070 CZK)\nThe limits being 0.10 % (20.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53169918 BTC (343,054.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.39 % (416,427.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,648.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01402670 BTC (20,035.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.35 CZK over 3598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005790 BTC for 82.70 CZK @ 1,428,407 CZK\nFees are 0.29047975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (109.98731732098277789395148070 CZK)\nThe limits being 0.10 % (20.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53169918 BTC (343,054.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.39 % (416,427.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,648.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01402670 BTC (20,035.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.35 CZK over 3598 transactions" + } + ] + }, + { + "id": 5294, + "type": "message", + "date": "2024-06-25T18:00:06", + "date_unixtime": "1719331206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005727 BTC for 82.70 CZK @ 1,444,008 CZK\nFees are 0.29045734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (111.18865375133253274791938709 CZK)\nThe limits being 0.10 % (20.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53175645 BTC (343,137.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.78 % (424,723.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,565.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01408397 BTC (20,337.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.34 CZK over 3599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005727 BTC for 82.70 CZK @ 1,444,008 CZK\nFees are 0.29045734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (111.18865375133253274791938709 CZK)\nThe limits being 0.10 % (20.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53175645 BTC (343,137.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.78 % (424,723.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,565.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01408397 BTC (20,337.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.34 CZK over 3599 transactions" + } + ] + }, + { + "id": 5295, + "type": "message", + "date": "2024-06-25T22:00:05", + "date_unixtime": "1719345605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005714 BTC for 82.70 CZK @ 1,447,328 CZK\nFees are 0.29046415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (63.682420507572463824984971223 CZK)\nThe limits being 0.10 % (20.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53181359 BTC (343,220.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.26 % (426,487.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,482.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01414111 BTC (20,466.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.34 CZK over 3600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005714 BTC for 82.70 CZK @ 1,447,328 CZK\nFees are 0.29046415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (63.682420507572463824984971223 CZK)\nThe limits being 0.10 % (20.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53181359 BTC (343,220.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.26 % (426,487.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,482.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01414111 BTC (20,466.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.34 CZK over 3600 transactions" + } + ] + }, + { + "id": 5296, + "type": "message", + "date": "2024-06-26T02:00:05", + "date_unixtime": "1719360005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005726 BTC for 82.70 CZK @ 1,444,316 CZK\nFees are 0.29046851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.662436413871742300481322709 CZK)\nThe limits being 0.10 % (20.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53187085 BTC (343,303.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.76 % (424,885.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,399.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01419837 BTC (20,506.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.34 CZK over 3601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005726 BTC for 82.70 CZK @ 1,444,316 CZK\nFees are 0.29046851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.662436413871742300481322709 CZK)\nThe limits being 0.10 % (20.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53187085 BTC (343,303.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.76 % (424,885.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,399.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01419837 BTC (20,506.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.34 CZK over 3601 transactions" + } + ] + }, + { + "id": 5297, + "type": "message", + "date": "2024-06-26T06:00:05", + "date_unixtime": "1719374405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005714 BTC for 82.70 CZK @ 1,447,348 CZK\nFees are 0.29046818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (63.683302702354848684138242788 CZK)\nThe limits being 0.10 % (20.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53192799 BTC (343,386.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.20 % (426,498.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,316.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01425551 BTC (20,632.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.33 CZK over 3602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005714 BTC for 82.70 CZK @ 1,447,348 CZK\nFees are 0.29046818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (63.683302702354848684138242788 CZK)\nThe limits being 0.10 % (20.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53192799 BTC (343,386.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.20 % (426,498.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,316.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01425551 BTC (20,632.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.33 CZK over 3602 transactions" + } + ] + }, + { + "id": 5298, + "type": "message", + "date": "2024-06-26T10:00:06", + "date_unixtime": "1719388806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005713 BTC for 82.71 CZK @ 1,447,729 CZK\nFees are 0.29049378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.775048266652223955173172560 CZK)\nThe limits being 0.10 % (20.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53198512 BTC (343,469.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.23 % (426,700.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,233.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01431264 BTC (20,720.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.33 CZK over 3603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005713 BTC for 82.71 CZK @ 1,447,729 CZK\nFees are 0.29049378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.775048266652223955173172560 CZK)\nThe limits being 0.10 % (20.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53198512 BTC (343,469.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.23 % (426,700.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,233.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01431264 BTC (20,720.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.33 CZK over 3603 transactions" + } + ] + }, + { + "id": 5299, + "type": "message", + "date": "2024-06-26T14:00:06", + "date_unixtime": "1719403206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005749 BTC for 82.71 CZK @ 1,438,689 CZK\nFees are 0.29049906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.476745959328469681215762225 CZK)\nThe limits being 0.10 % (20.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53204261 BTC (343,552.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.80 % (421,891.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,150.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01437013 BTC (20,674.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.33 CZK over 3604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005749 BTC for 82.71 CZK @ 1,438,689 CZK\nFees are 0.29049906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.476745959328469681215762225 CZK)\nThe limits being 0.10 % (20.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53204261 BTC (343,552.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.80 % (421,891.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,150.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01437013 BTC (20,674.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.33 CZK over 3604 transactions" + } + ] + }, + { + "id": 5300, + "type": "message", + "date": "2024-06-26T18:00:06", + "date_unixtime": "1719417606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005751 BTC for 82.70 CZK @ 1,437,949 CZK\nFees are 0.29045068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.452331287026445521010318863 CZK)\nThe limits being 0.10 % (20.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53210012 BTC (343,635.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.66 % (421,497.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,067.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01442764 BTC (20,746.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.32 CZK over 3605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005751 BTC for 82.70 CZK @ 1,437,949 CZK\nFees are 0.29045068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.452331287026445521010318863 CZK)\nThe limits being 0.10 % (20.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53210012 BTC (343,635.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.66 % (421,497.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,067.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01442764 BTC (20,746.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.32 CZK over 3605 transactions" + } + ] + }, + { + "id": 5301, + "type": "message", + "date": "2024-06-26T22:00:06", + "date_unixtime": "1719432006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005777 BTC for 82.70 CZK @ 1,431,613 CZK\nFees are 0.29047805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.243218622479276487633424958 CZK)\nThe limits being 0.10 % (20.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53215789 BTC (343,718.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.65 % (418,125.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,984.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01448541 BTC (20,737.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.32 CZK over 3606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005777 BTC for 82.70 CZK @ 1,431,613 CZK\nFees are 0.29047805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.243218622479276487633424958 CZK)\nThe limits being 0.10 % (20.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53215789 BTC (343,718.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.65 % (418,125.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,984.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01448541 BTC (20,737.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.32 CZK over 3606 transactions" + } + ] + }, + { + "id": 5302, + "type": "message", + "date": "2024-06-27T02:00:07", + "date_unixtime": "1719446407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005778 BTC for 82.71 CZK @ 1,431,418 CZK\nFees are 0.29048887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.236800674792949495043567659 CZK)\nThe limits being 0.10 % (20.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53221567 BTC (343,801.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 645,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.59 % (418,021.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,901.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01454319 BTC (20,817.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.32 CZK over 3607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005778 BTC for 82.71 CZK @ 1,431,418 CZK\nFees are 0.29048887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.236800674792949495043567659 CZK)\nThe limits being 0.10 % (20.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53221567 BTC (343,801.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 645,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.59 % (418,021.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,901.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01454319 BTC (20,817.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.32 CZK over 3607 transactions" + } + ] + }, + { + "id": 5303, + "type": "message", + "date": "2024-06-27T06:00:06", + "date_unixtime": "1719460806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005773 BTC for 82.71 CZK @ 1,432,706 CZK\nFees are 0.29049869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.279311317542593646988700816 CZK)\nThe limits being 0.10 % (20.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53227340 BTC (343,884.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.76 % (418,706.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,818.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01460092 BTC (20,918.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.31 CZK over 3608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005773 BTC for 82.71 CZK @ 1,432,706 CZK\nFees are 0.29049869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.279311317542593646988700816 CZK)\nThe limits being 0.10 % (20.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53227340 BTC (343,884.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.76 % (418,706.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,818.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01460092 BTC (20,918.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.31 CZK over 3608 transactions" + } + ] + }, + { + "id": 5304, + "type": "message", + "date": "2024-06-27T10:00:05", + "date_unixtime": "1719475205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005797 BTC for 82.70 CZK @ 1,426,623 CZK\nFees are 0.29046782 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.078568454432257497241627740 CZK)\nThe limits being 0.10 % (20.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53233137 BTC (343,967.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,426,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.79 % (415,468.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,735.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01465889 BTC (20,912.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.31 CZK over 3609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005797 BTC for 82.70 CZK @ 1,426,623 CZK\nFees are 0.29046782 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (47.078568454432257497241627740 CZK)\nThe limits being 0.10 % (20.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53233137 BTC (343,967.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,426,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.79 % (415,468.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,735.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01465889 BTC (20,912.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.31 CZK over 3609 transactions" + } + ] + }, + { + "id": 5305, + "type": "message", + "date": "2024-06-27T14:00:06", + "date_unixtime": "1719489606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005762 BTC for 82.71 CZK @ 1,435,441 CZK\nFees are 0.29049863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.369559593833938037417459578 CZK)\nThe limits being 0.10 % (21.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53238899 BTC (344,050.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,435,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.12 % (420,162.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,652.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01471651 BTC (21,124.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.30 CZK over 3610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005762 BTC for 82.71 CZK @ 1,435,441 CZK\nFees are 0.29049863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.369559593833938037417459578 CZK)\nThe limits being 0.10 % (21.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53238899 BTC (344,050.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,435,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.12 % (420,162.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,652.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01471651 BTC (21,124.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.30 CZK over 3610 transactions" + } + ] + }, + { + "id": 5306, + "type": "message", + "date": "2024-06-27T18:00:06", + "date_unixtime": "1719504006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005717 BTC for 82.71 CZK @ 1,446,668 CZK\nFees are 0.29048420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.740047288225686222063951608 CZK)\nThe limits being 0.10 % (21.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53244616 BTC (344,133.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,446,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.83 % (426,139.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,569.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01477368 BTC (21,372.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.30 CZK over 3611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005717 BTC for 82.71 CZK @ 1,446,668 CZK\nFees are 0.29048420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.740047288225686222063951608 CZK)\nThe limits being 0.10 % (21.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53244616 BTC (344,133.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,446,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.83 % (426,139.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,569.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01477368 BTC (21,372.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.30 CZK over 3611 transactions" + } + ] + }, + { + "id": 5307, + "type": "message", + "date": "2024-06-27T22:00:05", + "date_unixtime": "1719518405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005719 BTC for 82.70 CZK @ 1,446,049 CZK\nFees are 0.29046138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.719602476312796800636485363 CZK)\nThe limits being 0.10 % (21.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53250335 BTC (344,216.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,446,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.70 % (425,809.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,486.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01483087 BTC (21,446.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.30 CZK over 3612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005719 BTC for 82.70 CZK @ 1,446,049 CZK\nFees are 0.29046138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.719602476312796800636485363 CZK)\nThe limits being 0.10 % (21.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53250335 BTC (344,216.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,446,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.70 % (425,809.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,486.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01483087 BTC (21,446.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.30 CZK over 3612 transactions" + } + ] + }, + { + "id": 5308, + "type": "message", + "date": "2024-06-28T02:00:05", + "date_unixtime": "1719532805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005709 BTC for 82.70 CZK @ 1,448,668 CZK\nFees are 0.29047874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (63.741395067168570888211106984 CZK)\nThe limits being 0.10 % (21.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53256044 BTC (344,299.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,448,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.08 % (427,203.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,403.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01488796 BTC (21,567.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.29 CZK over 3613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005709 BTC for 82.70 CZK @ 1,448,668 CZK\nFees are 0.29047874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (63.741395067168570888211106984 CZK)\nThe limits being 0.10 % (21.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53256044 BTC (344,299.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,448,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.08 % (427,203.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,403.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01488796 BTC (21,567.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.29 CZK over 3613 transactions" + } + ] + }, + { + "id": 5309, + "type": "message", + "date": "2024-06-28T06:00:06", + "date_unixtime": "1719547206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005676 BTC for 82.71 CZK @ 1,457,181 CZK\nFees are 0.29049681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (48.086980446344770049014495779 CZK)\nThe limits being 0.10 % (21.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53261720 BTC (344,382.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,457,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.37 % (431,737.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,320.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01494472 BTC (21,777.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.29 CZK over 3614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005676 BTC for 82.71 CZK @ 1,457,181 CZK\nFees are 0.29049681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (48.086980446344770049014495779 CZK)\nThe limits being 0.10 % (21.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53261720 BTC (344,382.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,457,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.37 % (431,737.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,320.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01494472 BTC (21,777.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.29 CZK over 3614 transactions" + } + ] + }, + { + "id": 5310, + "type": "message", + "date": "2024-06-28T10:00:09", + "date_unixtime": "1719561609", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005726 BTC for 82.71 CZK @ 1,444,387 CZK\nFees are 0.29048283 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (63.553047006799986286209931328 CZK)\nThe limits being 0.10 % (21.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53267446 BTC (344,465.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.36 % (424,922.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,237.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01500198 BTC (21,668.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.29 CZK over 3615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005726 BTC for 82.71 CZK @ 1,444,387 CZK\nFees are 0.29048283 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (63.553047006799986286209931328 CZK)\nThe limits being 0.10 % (21.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53267446 BTC (344,465.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.36 % (424,922.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,237.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01500198 BTC (21,668.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.29 CZK over 3615 transactions" + } + ] + }, + { + "id": 5311, + "type": "message", + "date": "2024-06-28T14:00:07", + "date_unixtime": "1719576007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005720 BTC for 82.70 CZK @ 1,445,828 CZK\nFees are 0.29046786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.712324393469012303093020581 CZK)\nThe limits being 0.10 % (21.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53273166 BTC (344,548.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.55 % (425,689.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,154.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01505918 BTC (21,772.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.28 CZK over 3616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005720 BTC for 82.70 CZK @ 1,445,828 CZK\nFees are 0.29046786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.712324393469012303093020581 CZK)\nThe limits being 0.10 % (21.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53273166 BTC (344,548.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.55 % (425,689.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,154.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01505918 BTC (21,772.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.28 CZK over 3616 transactions" + } + ] + }, + { + "id": 5312, + "type": "message", + "date": "2024-06-28T18:00:05", + "date_unixtime": "1719590405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005763 BTC for 82.70 CZK @ 1,434,966 CZK\nFees are 0.29045286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.353878623671911454106359132 CZK)\nThe limits being 0.10 % (21.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53278929 BTC (344,631.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.84 % (419,902.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,071.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01511681 BTC (21,692.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.28 CZK over 3617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005763 BTC for 82.70 CZK @ 1,434,966 CZK\nFees are 0.29045286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.353878623671911454106359132 CZK)\nThe limits being 0.10 % (21.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53278929 BTC (344,631.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.84 % (419,902.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,071.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01511681 BTC (21,692.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.28 CZK over 3617 transactions" + } + ] + }, + { + "id": 5313, + "type": "message", + "date": "2024-06-28T22:00:05", + "date_unixtime": "1719604805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005817 BTC for 82.70 CZK @ 1,421,636 CZK\nFees are 0.29045099 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (46.913984448961897926622473744 CZK)\nThe limits being 0.10 % (21.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53284746 BTC (344,714.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 646,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.75 % (412,800.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,988.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01517498 BTC (21,573.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.28 CZK over 3618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005817 BTC for 82.70 CZK @ 1,421,636 CZK\nFees are 0.29045099 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (46.913984448961897926622473744 CZK)\nThe limits being 0.10 % (21.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53284746 BTC (344,714.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 646,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.75 % (412,800.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,988.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01517498 BTC (21,573.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.28 CZK over 3618 transactions" + } + ] + }, + { + "id": 5314, + "type": "message", + "date": "2024-06-29T02:00:04", + "date_unixtime": "1719619204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005778 BTC for 82.70 CZK @ 1,431,281 CZK\nFees are 0.29046100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.232268408959089707312050604 CZK)\nThe limits being 0.10 % (21.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53290524 BTC (344,797.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.21 % (417,939.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,906.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01523276 BTC (21,802.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.27 CZK over 3619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005778 BTC for 82.70 CZK @ 1,431,281 CZK\nFees are 0.29046100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.232268408959089707312050604 CZK)\nThe limits being 0.10 % (21.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53290524 BTC (344,797.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.21 % (417,939.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,906.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01523276 BTC (21,802.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.27 CZK over 3619 transactions" + } + ] + }, + { + "id": 5315, + "type": "message", + "date": "2024-06-29T06:00:05", + "date_unixtime": "1719633605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005814 BTC for 82.71 CZK @ 1,422,536 CZK\nFees are 0.29048503 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (46.943692270037325501097037560 CZK)\nThe limits being 0.10 % (21.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53296338 BTC (344,880.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.83 % (413,279.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,823.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01529090 BTC (21,751.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.27 CZK over 3620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005814 BTC for 82.71 CZK @ 1,422,536 CZK\nFees are 0.29048503 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (46.943692270037325501097037560 CZK)\nThe limits being 0.10 % (21.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53296338 BTC (344,880.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.83 % (413,279.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,823.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01529090 BTC (21,751.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.27 CZK over 3620 transactions" + } + ] + }, + { + "id": 5316, + "type": "message", + "date": "2024-06-29T10:00:05", + "date_unixtime": "1719648005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005769 BTC for 82.71 CZK @ 1,433,683 CZK\nFees are 0.29049526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.311533389247876840833473898 CZK)\nThe limits being 0.10 % (22.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53302107 BTC (344,963.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.53 % (419,219.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,740.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01534859 BTC (22,005.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.27 CZK over 3621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005769 BTC for 82.71 CZK @ 1,433,683 CZK\nFees are 0.29049526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (47.311533389247876840833473898 CZK)\nThe limits being 0.10 % (22.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53302107 BTC (344,963.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.53 % (419,219.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,740.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01534859 BTC (22,005.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.27 CZK over 3621 transactions" + } + ] + }, + { + "id": 5317, + "type": "message", + "date": "2024-06-29T14:00:05", + "date_unixtime": "1719662405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005766 BTC for 82.70 CZK @ 1,434,254 CZK\nFees are 0.29045991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.330390252741834380915495041 CZK)\nThe limits being 0.10 % (22.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53307873 BTC (345,046.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.58 % (419,523.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,657.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01540625 BTC (22,096.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.26 CZK over 3622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005766 BTC for 82.70 CZK @ 1,434,254 CZK\nFees are 0.29045991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.330390252741834380915495041 CZK)\nThe limits being 0.10 % (22.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53307873 BTC (345,046.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.58 % (419,523.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,657.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01540625 BTC (22,096.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.26 CZK over 3622 transactions" + } + ] + }, + { + "id": 5318, + "type": "message", + "date": "2024-06-29T18:00:05", + "date_unixtime": "1719676805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005778 BTC for 82.71 CZK @ 1,431,389 CZK\nFees are 0.29048297 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.235841287063295081958731148 CZK)\nThe limits being 0.10 % (22.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53313651 BTC (345,129.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.11 % (417,996.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,574.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01546403 BTC (22,135.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.26 CZK over 3623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005778 BTC for 82.71 CZK @ 1,431,389 CZK\nFees are 0.29048297 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.235841287063295081958731148 CZK)\nThe limits being 0.10 % (22.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53313651 BTC (345,129.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.11 % (417,996.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,574.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01546403 BTC (22,135.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.26 CZK over 3623 transactions" + } + ] + }, + { + "id": 5319, + "type": "message", + "date": "2024-06-29T22:00:05", + "date_unixtime": "1719691205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005772 BTC for 82.71 CZK @ 1,432,935 CZK\nFees are 0.29049471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.286854060683657096213150027 CZK)\nThe limits being 0.10 % (22.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53319423 BTC (345,212.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.32 % (418,820.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,491.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01552175 BTC (22,241.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.26 CZK over 3624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005772 BTC for 82.71 CZK @ 1,432,935 CZK\nFees are 0.29049471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.286854060683657096213150027 CZK)\nThe limits being 0.10 % (22.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53319423 BTC (345,212.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.32 % (418,820.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,491.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01552175 BTC (22,241.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.26 CZK over 3624 transactions" + } + ] + }, + { + "id": 5320, + "type": "message", + "date": "2024-06-30T02:00:06", + "date_unixtime": "1719705606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005780 BTC for 82.71 CZK @ 1,430,941 CZK\nFees are 0.29049255 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.221053538049353215303531066 CZK)\nThe limits being 0.10 % (22.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53325203 BTC (345,295.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.99 % (417,756.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,408.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01557955 BTC (22,293.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.25 CZK over 3625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005780 BTC for 82.71 CZK @ 1,430,941 CZK\nFees are 0.29049255 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.221053538049353215303531066 CZK)\nThe limits being 0.10 % (22.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53325203 BTC (345,295.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.99 % (417,756.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,408.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01557955 BTC (22,293.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.25 CZK over 3625 transactions" + } + ] + }, + { + "id": 5321, + "type": "message", + "date": "2024-06-30T06:00:05", + "date_unixtime": "1719720005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005787 BTC for 82.71 CZK @ 1,429,205 CZK\nFees are 0.29049144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.163755148323532230247529190 CZK)\nThe limits being 0.10 % (22.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53330990 BTC (345,378.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,429,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.69 % (416,830.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,325.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01563742 BTC (22,349.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.25 CZK over 3626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005787 BTC for 82.71 CZK @ 1,429,205 CZK\nFees are 0.29049144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.163755148323532230247529190 CZK)\nThe limits being 0.10 % (22.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53330990 BTC (345,378.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,429,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.69 % (416,830.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,325.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01563742 BTC (22,349.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.25 CZK over 3626 transactions" + } + ] + }, + { + "id": 5322, + "type": "message", + "date": "2024-06-30T10:00:05", + "date_unixtime": "1719734405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005731 BTC for 82.70 CZK @ 1,443,022 CZK\nFees are 0.29046165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.619727280812740819798650977 CZK)\nThe limits being 0.10 % (22.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53336721 BTC (345,461.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.79 % (424,199.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,242.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01569473 BTC (22,647.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.25 CZK over 3627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005731 BTC for 82.70 CZK @ 1,443,022 CZK\nFees are 0.29046165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.619727280812740819798650977 CZK)\nThe limits being 0.10 % (22.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53336721 BTC (345,461.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.79 % (424,199.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,242.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01569473 BTC (22,647.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.25 CZK over 3627 transactions" + } + ] + }, + { + "id": 5323, + "type": "message", + "date": "2024-06-30T14:00:06", + "date_unixtime": "1719748806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005724 BTC for 82.70 CZK @ 1,444,874 CZK\nFees are 0.29047912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.680830126527802586126753427 CZK)\nThe limits being 0.10 % (22.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53342445 BTC (345,544.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.05 % (425,186.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,159.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01575197 BTC (22,759.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.24 CZK over 3628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005724 BTC for 82.70 CZK @ 1,444,874 CZK\nFees are 0.29047912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.680830126527802586126753427 CZK)\nThe limits being 0.10 % (22.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53342445 BTC (345,544.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.05 % (425,186.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,159.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01575197 BTC (22,759.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.24 CZK over 3628 transactions" + } + ] + }, + { + "id": 5324, + "type": "message", + "date": "2024-06-30T18:00:05", + "date_unixtime": "1719763205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005714 BTC for 82.70 CZK @ 1,447,289 CZK\nFees are 0.29045631 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.760525174838712040235793554 CZK)\nThe limits being 0.10 % (22.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53348159 BTC (345,627.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.39 % (426,474.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,076.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01580911 BTC (22,880.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.24 CZK over 3629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005714 BTC for 82.70 CZK @ 1,447,289 CZK\nFees are 0.29045631 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.760525174838712040235793554 CZK)\nThe limits being 0.10 % (22.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53348159 BTC (345,627.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.39 % (426,474.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,076.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01580911 BTC (22,880.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.24 CZK over 3629 transactions" + } + ] + }, + { + "id": 5325, + "type": "message", + "date": "2024-06-30T22:00:05", + "date_unixtime": "1719777605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005689 BTC for 82.70 CZK @ 1,453,758 CZK\nFees are 0.29047810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.974004691086908598950955885 CZK)\nThe limits being 0.10 % (23.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53353848 BTC (345,710.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 647,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,453,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.36 % (429,925.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,993.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01586600 BTC (23,065.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.24 CZK over 3630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005689 BTC for 82.70 CZK @ 1,453,758 CZK\nFees are 0.29047810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (47.974004691086908598950955885 CZK)\nThe limits being 0.10 % (23.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53353848 BTC (345,710.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 647,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,453,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.36 % (429,925.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,993.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01586600 BTC (23,065.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.24 CZK over 3630 transactions" + } + ] + }, + { + "id": 5326, + "type": "message", + "date": "2024-07-01T02:00:05", + "date_unixtime": "1719792005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005627 BTC for 82.70 CZK @ 1,469,685 CZK\nFees are 0.29046022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (48.499612718733057012381314414 CZK)\nThe limits being 0.10 % (23.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53359475 BTC (345,793.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,469,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.79 % (438,422.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,910.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01592227 BTC (23,400.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.23 CZK over 3631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005627 BTC for 82.70 CZK @ 1,469,685 CZK\nFees are 0.29046022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (48.499612718733057012381314414 CZK)\nThe limits being 0.10 % (23.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53359475 BTC (345,793.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,469,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.79 % (438,422.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,910.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01592227 BTC (23,400.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.23 CZK over 3631 transactions" + } + ] + }, + { + "id": 5327, + "type": "message", + "date": "2024-07-01T06:00:07", + "date_unixtime": "1719806407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005575 BTC for 82.71 CZK @ 1,483,535 CZK\nFees are 0.29048787 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (48.956645640705959634552608474 CZK)\nThe limits being 0.10 % (23.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53365050 BTC (345,876.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,483,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.89 % (445,812.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,827.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01597802 BTC (23,703.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.23 CZK over 3632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005575 BTC for 82.71 CZK @ 1,483,535 CZK\nFees are 0.29048787 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (48.956645640705959634552608474 CZK)\nThe limits being 0.10 % (23.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53365050 BTC (345,876.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,483,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.89 % (445,812.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,827.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01597802 BTC (23,703.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.23 CZK over 3632 transactions" + } + ] + }, + { + "id": 5328, + "type": "message", + "date": "2024-07-01T10:00:06", + "date_unixtime": "1719820806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005585 BTC for 82.70 CZK @ 1,480,764 CZK\nFees are 0.29046539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (48.865206404620533593479223791 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53370635 BTC (345,959.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.44 % (444,333.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,744.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01603387 BTC (23,742.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.23 CZK over 3633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005585 BTC for 82.70 CZK @ 1,480,764 CZK\nFees are 0.29046539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (48.865206404620533593479223791 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53370635 BTC (345,959.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.44 % (444,333.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,744.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01603387 BTC (23,742.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.23 CZK over 3633 transactions" + } + ] + }, + { + "id": 5329, + "type": "message", + "date": "2024-07-01T14:00:07", + "date_unixtime": "1719835207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005638 BTC for 82.70 CZK @ 1,466,843 CZK\nFees are 0.29046526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (64.541102413988076142864995575 CZK)\nThe limits being 0.10 % (23.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53376273 BTC (346,042.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,466,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.26 % (436,903.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,661.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01609025 BTC (23,601.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.22 CZK over 3634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005638 BTC for 82.70 CZK @ 1,466,843 CZK\nFees are 0.29046526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (64.541102413988076142864995575 CZK)\nThe limits being 0.10 % (23.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53376273 BTC (346,042.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,466,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.26 % (436,903.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,661.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01609025 BTC (23,601.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.22 CZK over 3634 transactions" + } + ] + }, + { + "id": 5330, + "type": "message", + "date": "2024-07-01T18:00:07", + "date_unixtime": "1719849607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005578 BTC for 82.70 CZK @ 1,482,684 CZK\nFees are 0.29047744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (65.238078457203302246368616976 CZK)\nThe limits being 0.10 % (23.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53381851 BTC (346,125.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,482,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.67 % (445,358.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,578.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01614603 BTC (23,939.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.22 CZK over 3635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005578 BTC for 82.70 CZK @ 1,482,684 CZK\nFees are 0.29047744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (65.238078457203302246368616976 CZK)\nThe limits being 0.10 % (23.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53381851 BTC (346,125.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,482,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.67 % (445,358.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,578.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01614603 BTC (23,939.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.22 CZK over 3635 transactions" + } + ] + }, + { + "id": 5331, + "type": "message", + "date": "2024-07-01T22:00:06", + "date_unixtime": "1719864006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005567 BTC for 82.71 CZK @ 1,485,670 CZK\nFees are 0.29048854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (65.369481007241674079647048156 CZK)\nThe limits being 0.10 % (24.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53387418 BTC (346,208.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.10 % (446,952.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,495.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01620170 BTC (24,070.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.22 CZK over 3636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005567 BTC for 82.71 CZK @ 1,485,670 CZK\nFees are 0.29048854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (65.369481007241674079647048156 CZK)\nThe limits being 0.10 % (24.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53387418 BTC (346,208.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.10 % (446,952.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,495.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01620170 BTC (24,070.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.22 CZK over 3636 transactions" + } + ] + }, + { + "id": 5332, + "type": "message", + "date": "2024-07-02T02:00:05", + "date_unixtime": "1719878405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005594 BTC for 82.70 CZK @ 1,478,333 CZK\nFees are 0.29045583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (65.046642721158818643150831230 CZK)\nThe limits being 0.10 % (24.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53393012 BTC (346,291.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,478,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.94 % (443,034.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,412.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01625764 BTC (24,034.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.21 CZK over 3637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005594 BTC for 82.70 CZK @ 1,478,333 CZK\nFees are 0.29045583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (65.046642721158818643150831230 CZK)\nThe limits being 0.10 % (24.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53393012 BTC (346,291.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,478,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.94 % (443,034.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,412.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01625764 BTC (24,034.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.21 CZK over 3637 transactions" + } + ] + }, + { + "id": 5333, + "type": "message", + "date": "2024-07-02T06:00:07", + "date_unixtime": "1719892807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005572 BTC for 82.70 CZK @ 1,484,220 CZK\nFees are 0.29046575 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.979273872565904474325503235 CZK)\nThe limits being 0.10 % (24.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53398584 BTC (346,374.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,484,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.81 % (446,178.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,329.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01631336 BTC (24,212.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.21 CZK over 3638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005572 BTC for 82.70 CZK @ 1,484,220 CZK\nFees are 0.29046575 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.979273872565904474325503235 CZK)\nThe limits being 0.10 % (24.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53398584 BTC (346,374.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,484,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.81 % (446,178.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,329.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01631336 BTC (24,212.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.21 CZK over 3638 transactions" + } + ] + }, + { + "id": 5334, + "type": "message", + "date": "2024-07-02T10:00:07", + "date_unixtime": "1719907207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005607 BTC for 82.71 CZK @ 1,475,093 CZK\nFees are 0.29049275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.678060334042195280669609281 CZK)\nThe limits being 0.10 % (24.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53404191 BTC (346,457.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,475,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.38 % (441,303.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,246.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01636943 BTC (24,146.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.21 CZK over 3639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005607 BTC for 82.71 CZK @ 1,475,093 CZK\nFees are 0.29049275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.678060334042195280669609281 CZK)\nThe limits being 0.10 % (24.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53404191 BTC (346,457.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,475,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.38 % (441,303.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,246.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01636943 BTC (24,146.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.21 CZK over 3639 transactions" + } + ] + }, + { + "id": 5335, + "type": "message", + "date": "2024-07-02T14:00:05", + "date_unixtime": "1719921605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005578 BTC for 82.70 CZK @ 1,482,626 CZK\nFees are 0.29046625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.926673154893691370272172174 CZK)\nThe limits being 0.10 % (24.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53409769 BTC (346,540.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,482,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.51 % (445,326.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,163.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01642521 BTC (24,352.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.20 CZK over 3640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005578 BTC for 82.70 CZK @ 1,482,626 CZK\nFees are 0.29046625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.926673154893691370272172174 CZK)\nThe limits being 0.10 % (24.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53409769 BTC (346,540.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,482,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.51 % (445,326.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,163.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01642521 BTC (24,352.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.20 CZK over 3640 transactions" + } + ] + }, + { + "id": 5336, + "type": "message", + "date": "2024-07-02T18:00:07", + "date_unixtime": "1719936007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005666 BTC for 82.70 CZK @ 1,459,551 CZK\nFees are 0.29045663 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.165186796441892135028283468 CZK)\nThe limits being 0.10 % (24.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53415435 BTC (346,623.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 648,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.92 % (433,002.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,080.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01648187 BTC (24,056.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.20 CZK over 3641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005666 BTC for 82.70 CZK @ 1,459,551 CZK\nFees are 0.29045663 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.165186796441892135028283468 CZK)\nThe limits being 0.10 % (24.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53415435 BTC (346,623.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 648,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.92 % (433,002.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,080.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01648187 BTC (24,056.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.20 CZK over 3641 transactions" + } + ] + }, + { + "id": 5337, + "type": "message", + "date": "2024-07-02T22:00:05", + "date_unixtime": "1719950405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005689 BTC for 82.71 CZK @ 1,453,820 CZK\nFees are 0.29049051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (47.976055786466474388331295730 CZK)\nThe limits being 0.10 % (24.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53421124 BTC (346,706.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,453,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.01 % (429,940.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,997.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01653876 BTC (24,044.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.20 CZK over 3642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005689 BTC for 82.71 CZK @ 1,453,820 CZK\nFees are 0.29049051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (47.976055786466474388331295730 CZK)\nThe limits being 0.10 % (24.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53421124 BTC (346,706.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,453,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.01 % (429,940.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,997.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01653876 BTC (24,044.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.20 CZK over 3642 transactions" + } + ] + }, + { + "id": 5338, + "type": "message", + "date": "2024-07-03T02:00:07", + "date_unixtime": "1719964807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005671 BTC for 82.70 CZK @ 1,458,243 CZK\nFees are 0.29045237 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.122014510665676656126059234 CZK)\nThe limits being 0.10 % (24.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53426795 BTC (346,789.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,458,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.66 % (432,302.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,914.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01659547 BTC (24,200.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.19 CZK over 3643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005671 BTC for 82.70 CZK @ 1,458,243 CZK\nFees are 0.29045237 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (48.122014510665676656126059234 CZK)\nThe limits being 0.10 % (24.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53426795 BTC (346,789.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,458,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.66 % (432,302.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,914.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01659547 BTC (24,200.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.19 CZK over 3643 transactions" + } + ] + }, + { + "id": 5339, + "type": "message", + "date": "2024-07-03T06:00:06", + "date_unixtime": "1719979206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005776 BTC for 82.70 CZK @ 1,431,749 CZK\nFees are 0.29045543 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (47.247717803994882178303914140 CZK)\nThe limits being 0.10 % (23.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53432571 BTC (346,872.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.55 % (418,147.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,831.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01665323 BTC (23,843.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.19 CZK over 3644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005776 BTC for 82.70 CZK @ 1,431,749 CZK\nFees are 0.29045543 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (47.247717803994882178303914140 CZK)\nThe limits being 0.10 % (23.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53432571 BTC (346,872.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.55 % (418,147.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,831.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01665323 BTC (23,843.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.19 CZK over 3644 transactions" + } + ] + }, + { + "id": 5340, + "type": "message", + "date": "2024-07-03T10:00:05", + "date_unixtime": "1719993605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005777 BTC for 82.70 CZK @ 1,431,507 CZK\nFees are 0.29045670 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (47.239744987403012771898666251 CZK)\nThe limits being 0.10 % (23.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53438348 BTC (346,955.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.48 % (418,018.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,748.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01671100 BTC (23,921.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.19 CZK over 3645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005777 BTC for 82.70 CZK @ 1,431,507 CZK\nFees are 0.29045670 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (47.239744987403012771898666251 CZK)\nThe limits being 0.10 % (23.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53438348 BTC (346,955.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.48 % (418,018.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,748.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01671100 BTC (23,921.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.19 CZK over 3645 transactions" + } + ] + }, + { + "id": 5341, + "type": "message", + "date": "2024-07-03T14:00:06", + "date_unixtime": "1720008006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005824 BTC for 82.71 CZK @ 1,420,142 CZK\nFees are 0.29049497 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (46.864691948373002184661377486 CZK)\nThe limits being 0.10 % (23.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53444172 BTC (347,038.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.70 % (411,944.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,665.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01676924 BTC (23,814.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.18 CZK over 3646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005824 BTC for 82.71 CZK @ 1,420,142 CZK\nFees are 0.29049497 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (46.864691948373002184661377486 CZK)\nThe limits being 0.10 % (23.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53444172 BTC (347,038.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.70 % (411,944.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,665.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01676924 BTC (23,814.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.18 CZK over 3646 transactions" + } + ] + }, + { + "id": 5342, + "type": "message", + "date": "2024-07-03T18:00:06", + "date_unixtime": "1720022406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005839 BTC for 82.71 CZK @ 1,416,432 CZK\nFees are 0.29048226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (46.742254684558830870511183111 CZK)\nThe limits being 0.10 % (23.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53450011 BTC (347,121.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.10 % (409,961.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,582.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01682763 BTC (23,835.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.18 CZK over 3647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005839 BTC for 82.71 CZK @ 1,416,432 CZK\nFees are 0.29048226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (46.742254684558830870511183111 CZK)\nThe limits being 0.10 % (23.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53450011 BTC (347,121.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.10 % (409,961.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,582.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01682763 BTC (23,835.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.18 CZK over 3647 transactions" + } + ] + }, + { + "id": 5343, + "type": "message", + "date": "2024-07-03T22:00:08", + "date_unixtime": "1720036808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005868 BTC for 82.70 CZK @ 1,409,294 CZK\nFees are 0.29045389 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (46.506709329208710209563052835 CZK)\nThe limits being 0.10 % (23.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53455879 BTC (347,204.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,409,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.98 % (406,146.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,499.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01688631 BTC (23,797.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.18 CZK over 3648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005868 BTC for 82.70 CZK @ 1,409,294 CZK\nFees are 0.29045389 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (46.506709329208710209563052835 CZK)\nThe limits being 0.10 % (23.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53455879 BTC (347,204.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,409,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.98 % (406,146.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,499.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01688631 BTC (23,797.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.18 CZK over 3648 transactions" + } + ] + }, + { + "id": 5344, + "type": "message", + "date": "2024-07-04T02:00:06", + "date_unixtime": "1720051206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005848 BTC for 82.70 CZK @ 1,414,196 CZK\nFees are 0.29047082 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (46.668481351180580689883628913 CZK)\nThe limits being 0.10 % (23.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53461727 BTC (347,287.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.70 % (408,766.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,416.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01694479 BTC (23,963.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.17 CZK over 3649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005848 BTC for 82.70 CZK @ 1,414,196 CZK\nFees are 0.29047082 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (46.668481351180580689883628913 CZK)\nThe limits being 0.10 % (23.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53461727 BTC (347,287.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.70 % (408,766.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,416.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01694479 BTC (23,963.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.17 CZK over 3649 transactions" + } + ] + }, + { + "id": 5345, + "type": "message", + "date": "2024-07-04T06:00:07", + "date_unixtime": "1720065607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005941 BTC for 82.70 CZK @ 1,392,014 CZK\nFees are 0.29046156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (45.936471237724017109951896185 CZK)\nThe limits being 0.10 % (23.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53467668 BTC (347,370.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,392,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.26 % (396,907.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,333.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01700420 BTC (23,670.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.17 CZK over 3650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005941 BTC for 82.70 CZK @ 1,392,014 CZK\nFees are 0.29046156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (45.936471237724017109951896185 CZK)\nThe limits being 0.10 % (23.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53467668 BTC (347,370.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,392,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.26 % (396,907.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,333.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01700420 BTC (23,670.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.17 CZK over 3650 transactions" + } + ] + }, + { + "id": 5346, + "type": "message", + "date": "2024-07-04T10:00:07", + "date_unixtime": "1720080007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005995 BTC for 82.70 CZK @ 1,379,511 CZK\nFees are 0.29046904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (45.523869886589596961094883503 CZK)\nThe limits being 0.10 % (23.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53473663 BTC (347,453.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,379,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.31 % (390,221.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,250.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01706415 BTC (23,540.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.17 CZK over 3651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005995 BTC for 82.70 CZK @ 1,379,511 CZK\nFees are 0.29046904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (45.523869886589596961094883503 CZK)\nThe limits being 0.10 % (23.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53473663 BTC (347,453.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,379,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.31 % (390,221.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,250.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01706415 BTC (23,540.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.17 CZK over 3651 transactions" + } + ] + }, + { + "id": 5347, + "type": "message", + "date": "2024-07-04T14:00:06", + "date_unixtime": "1720094406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006125 BTC for 82.71 CZK @ 1,350,357 CZK\nFees are 0.29049592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (59.415697317999247531598588613 CZK)\nThe limits being 0.10 % (23.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53479788 BTC (347,536.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,350,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.80 % (374,631.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,167.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01712540 BTC (23,125.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.16 CZK over 3652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006125 BTC for 82.71 CZK @ 1,350,357 CZK\nFees are 0.29049592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (59.415697317999247531598588613 CZK)\nThe limits being 0.10 % (23.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53479788 BTC (347,536.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,350,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.80 % (374,631.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,167.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01712540 BTC (23,125.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.16 CZK over 3652 transactions" + } + ] + }, + { + "id": 5348, + "type": "message", + "date": "2024-07-04T18:00:06", + "date_unixtime": "1720108806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006092 BTC for 82.70 CZK @ 1,357,538 CZK\nFees are 0.29046726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (59.731654501431463940554742575 CZK)\nThe limits being 0.10 % (23.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53485880 BTC (347,619.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 649,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,357,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.88 % (378,471.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,084.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01718632 BTC (23,331.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.16 CZK over 3653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006092 BTC for 82.70 CZK @ 1,357,538 CZK\nFees are 0.29046726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (59.731654501431463940554742575 CZK)\nThe limits being 0.10 % (23.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53485880 BTC (347,619.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 649,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,357,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.88 % (378,471.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,084.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01718632 BTC (23,331.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.16 CZK over 3653 transactions" + } + ] + }, + { + "id": 5349, + "type": "message", + "date": "2024-07-04T22:00:05", + "date_unixtime": "1720123205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006066 BTC for 82.71 CZK @ 1,363,490 CZK\nFees are 0.29049584 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (59.993577404241764441007742270 CZK)\nThe limits being 0.10 % (23.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53491946 BTC (347,702.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.76 % (381,655.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,001.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01724698 BTC (23,516.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.16 CZK over 3654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006066 BTC for 82.71 CZK @ 1,363,490 CZK\nFees are 0.29049584 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (59.993577404241764441007742270 CZK)\nThe limits being 0.10 % (23.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53491946 BTC (347,702.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.76 % (381,655.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,001.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01724698 BTC (23,516.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.16 CZK over 3654 transactions" + } + ] + }, + { + "id": 5350, + "type": "message", + "date": "2024-07-05T02:00:05", + "date_unixtime": "1720137605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006197 BTC for 82.71 CZK @ 1,334,680 CZK\nFees are 0.29049857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (44.044433356899391744836271368 CZK)\nThe limits being 0.10 % (23.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53498143 BTC (347,785.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,334,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.31 % (366,243.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,918.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01730895 BTC (23,101.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.15 CZK over 3655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006197 BTC for 82.71 CZK @ 1,334,680 CZK\nFees are 0.29049857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (44.044433356899391744836271368 CZK)\nThe limits being 0.10 % (23.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53498143 BTC (347,785.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,334,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.31 % (366,243.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,918.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01730895 BTC (23,101.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.15 CZK over 3655 transactions" + } + ] + }, + { + "id": 5351, + "type": "message", + "date": "2024-07-05T06:00:05", + "date_unixtime": "1720152005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006397 BTC for 82.70 CZK @ 1,292,845 CZK\nFees are 0.29047461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.663879555368933447643268883 CZK)\nThe limits being 0.10 % (22.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53504540 BTC (347,868.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,292,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.85 % (343,862.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,835.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01737292 BTC (22,460.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.15 CZK over 3656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006397 BTC for 82.70 CZK @ 1,292,845 CZK\nFees are 0.29047461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.663879555368933447643268883 CZK)\nThe limits being 0.10 % (22.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53504540 BTC (347,868.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,292,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.85 % (343,862.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,835.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01737292 BTC (22,460.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.15 CZK over 3656 transactions" + } + ] + }, + { + "id": 5352, + "type": "message", + "date": "2024-07-05T10:00:05", + "date_unixtime": "1720166405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006486 BTC for 82.70 CZK @ 1,275,098 CZK\nFees are 0.29047305 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (28.052150102762440616030756366 CZK)\nThe limits being 0.10 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53511026 BTC (347,951.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,242 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,275,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.10 % (334,366.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,752.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01743778 BTC (22,234.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.15 CZK over 3657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006486 BTC for 82.70 CZK @ 1,275,098 CZK\nFees are 0.29047305 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (28.052150102762440616030756366 CZK)\nThe limits being 0.10 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53511026 BTC (347,951.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,242 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,275,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.10 % (334,366.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,752.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01743778 BTC (22,234.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.15 CZK over 3657 transactions" + } + ] + }, + { + "id": 5353, + "type": "message", + "date": "2024-07-05T14:00:05", + "date_unixtime": "1720180805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006355 BTC for 82.71 CZK @ 1,301,440 CZK\nFees are 0.29048599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.947526441404729395189221674 CZK)\nThe limits being 0.10 % (22.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53517381 BTC (348,034.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,301,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.12 % (348,462.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,669.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01750133 BTC (22,776.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.14 CZK over 3658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006355 BTC for 82.71 CZK @ 1,301,440 CZK\nFees are 0.29048599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (42.947526441404729395189221674 CZK)\nThe limits being 0.10 % (22.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53517381 BTC (348,034.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,301,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.12 % (348,462.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,669.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01750133 BTC (22,776.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.14 CZK over 3658 transactions" + } + ] + }, + { + "id": 5354, + "type": "message", + "date": "2024-07-05T18:00:05", + "date_unixtime": "1720195205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006253 BTC for 82.71 CZK @ 1,322,647 CZK\nFees are 0.29048102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.647347561003304363083597306 CZK)\nThe limits being 0.10 % (23.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53523634 BTC (348,117.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,322,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.36 % (359,811.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,586.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01756386 BTC (23,230.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.14 CZK over 3659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006253 BTC for 82.71 CZK @ 1,322,647 CZK\nFees are 0.29048102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.647347561003304363083597306 CZK)\nThe limits being 0.10 % (23.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53523634 BTC (348,117.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,322,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.36 % (359,811.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,586.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01756386 BTC (23,230.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.14 CZK over 3659 transactions" + } + ] + }, + { + "id": 5355, + "type": "message", + "date": "2024-07-05T22:00:06", + "date_unixtime": "1720209606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006262 BTC for 82.70 CZK @ 1,320,724 CZK\nFees are 0.29047623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.583895876091297832227892250 CZK)\nThe limits being 0.10 % (23.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53529896 BTC (348,200.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,320,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.04 % (358,781.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,503.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01762648 BTC (23,279.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.14 CZK over 3660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006262 BTC for 82.70 CZK @ 1,320,724 CZK\nFees are 0.29047623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.583895876091297832227892250 CZK)\nThe limits being 0.10 % (23.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53529896 BTC (348,200.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,320,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.04 % (358,781.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,503.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01762648 BTC (23,279.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.14 CZK over 3660 transactions" + } + ] + }, + { + "id": 5356, + "type": "message", + "date": "2024-07-06T02:00:05", + "date_unixtime": "1720224005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006241 BTC for 82.70 CZK @ 1,325,149 CZK\nFees are 0.29047205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.729920761232497666595053827 CZK)\nThe limits being 0.10 % (23.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53536137 BTC (348,283.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,325,149 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.69 % (361,150.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,420.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01768889 BTC (23,440.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.13 CZK over 3661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006241 BTC for 82.70 CZK @ 1,325,149 CZK\nFees are 0.29047205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.729920761232497666595053827 CZK)\nThe limits being 0.10 % (23.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53536137 BTC (348,283.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,325,149 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.69 % (361,150.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,420.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01768889 BTC (23,440.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.13 CZK over 3661 transactions" + } + ] + }, + { + "id": 5357, + "type": "message", + "date": "2024-07-06T06:00:06", + "date_unixtime": "1720238406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006268 BTC for 82.70 CZK @ 1,319,478 CZK\nFees are 0.29048022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.542774690624931438115924197 CZK)\nThe limits being 0.10 % (23.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53542405 BTC (348,366.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,319,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.80 % (358,113.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,337.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01775157 BTC (23,422.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.13 CZK over 3662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006268 BTC for 82.70 CZK @ 1,319,478 CZK\nFees are 0.29048022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (43.542774690624931438115924197 CZK)\nThe limits being 0.10 % (23.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53542405 BTC (348,366.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,319,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.80 % (358,113.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,337.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01775157 BTC (23,422.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.13 CZK over 3662 transactions" + } + ] + }, + { + "id": 5358, + "type": "message", + "date": "2024-07-06T10:00:06", + "date_unixtime": "1720252806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006241 BTC for 82.70 CZK @ 1,325,186 CZK\nFees are 0.29048018 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.154096537140038706060593722 CZK)\nThe limits being 0.10 % (23.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53548646 BTC (348,449.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,325,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.65 % (361,169.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,254.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01781398 BTC (23,606.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.13 CZK over 3663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006241 BTC for 82.70 CZK @ 1,325,186 CZK\nFees are 0.29048018 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.154096537140038706060593722 CZK)\nThe limits being 0.10 % (23.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53548646 BTC (348,449.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,325,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.65 % (361,169.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,254.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01781398 BTC (23,606.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.13 CZK over 3663 transactions" + } + ] + }, + { + "id": 5359, + "type": "message", + "date": "2024-07-06T14:00:05", + "date_unixtime": "1720267205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006230 BTC for 82.70 CZK @ 1,327,511 CZK\nFees are 0.29047689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.205241636295437877540966168 CZK)\nThe limits being 0.10 % (23.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53554876 BTC (348,532.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.98 % (362,414.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,171.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01787628 BTC (23,730.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.12 CZK over 3664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006230 BTC for 82.70 CZK @ 1,327,511 CZK\nFees are 0.29047689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.205241636295437877540966168 CZK)\nThe limits being 0.10 % (23.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53554876 BTC (348,532.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.98 % (362,414.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,171.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01787628 BTC (23,730.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.12 CZK over 3664 transactions" + } + ] + }, + { + "id": 5360, + "type": "message", + "date": "2024-07-06T18:00:05", + "date_unixtime": "1720281605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006183 BTC for 82.71 CZK @ 1,337,670 CZK\nFees are 0.29049170 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.143117596901867239528220852 CZK)\nThe limits being 0.10 % (24.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53561059 BTC (348,615.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.52 % (367,855.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,088.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01793811 BTC (23,995.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.12 CZK over 3665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006183 BTC for 82.71 CZK @ 1,337,670 CZK\nFees are 0.29049170 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.143117596901867239528220852 CZK)\nThe limits being 0.10 % (24.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53561059 BTC (348,615.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.52 % (367,855.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,088.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01793811 BTC (23,995.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.12 CZK over 3665 transactions" + } + ] + }, + { + "id": 5361, + "type": "message", + "date": "2024-07-06T22:00:06", + "date_unixtime": "1720296006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006122 BTC for 82.70 CZK @ 1,350,854 CZK\nFees are 0.29046055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.578181765486917969400466548 CZK)\nThe limits being 0.10 % (24.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53567181 BTC (348,698.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 650,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,350,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.52 % (374,916.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,005.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01799933 BTC (24,314.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.12 CZK over 3666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006122 BTC for 82.70 CZK @ 1,350,854 CZK\nFees are 0.29046055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.578181765486917969400466548 CZK)\nThe limits being 0.10 % (24.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53567181 BTC (348,698.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 650,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,350,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.52 % (374,916.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,005.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01799933 BTC (24,314.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.12 CZK over 3666 transactions" + } + ] + }, + { + "id": 5362, + "type": "message", + "date": "2024-07-07T02:00:05", + "date_unixtime": "1720310405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006084 BTC for 82.70 CZK @ 1,359,259 CZK\nFees are 0.29045363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.855543037239484290191430585 CZK)\nThe limits being 0.10 % (24.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53573265 BTC (348,781.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,359,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.78 % (379,418.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,922.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01806017 BTC (24,548.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.11 CZK over 3667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006084 BTC for 82.70 CZK @ 1,359,259 CZK\nFees are 0.29045363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.855543037239484290191430585 CZK)\nThe limits being 0.10 % (24.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53573265 BTC (348,781.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,359,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.78 % (379,418.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,922.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01806017 BTC (24,548.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.11 CZK over 3667 transactions" + } + ] + }, + { + "id": 5363, + "type": "message", + "date": "2024-07-07T06:00:05", + "date_unixtime": "1720324805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006108 BTC for 82.71 CZK @ 1,354,127 CZK\nFees are 0.29049850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.790796792431466944933074774 CZK)\nThe limits being 0.10 % (24.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53579373 BTC (348,864.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,354,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.97 % (376,668.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,839.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01812125 BTC (24,538.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.11 CZK over 3668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006108 BTC for 82.71 CZK @ 1,354,127 CZK\nFees are 0.29049850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.790796792431466944933074774 CZK)\nThe limits being 0.10 % (24.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53579373 BTC (348,864.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,354,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.97 % (376,668.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,839.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01812125 BTC (24,538.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.11 CZK over 3668 transactions" + } + ] + }, + { + "id": 5364, + "type": "message", + "date": "2024-07-07T10:00:05", + "date_unixtime": "1720339205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006189 BTC for 82.70 CZK @ 1,336,221 CZK\nFees are 0.29045849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.396853809533815359281776988 CZK)\nThe limits being 0.10 % (24.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53585562 BTC (348,947.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.19 % (367,074.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,756.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01818314 BTC (24,296.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.11 CZK over 3669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006189 BTC for 82.70 CZK @ 1,336,221 CZK\nFees are 0.29045849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.396853809533815359281776988 CZK)\nThe limits being 0.10 % (24.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53585562 BTC (348,947.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.19 % (367,074.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,756.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01818314 BTC (24,296.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.11 CZK over 3669 transactions" + } + ] + }, + { + "id": 5365, + "type": "message", + "date": "2024-07-07T14:00:05", + "date_unixtime": "1720353605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006164 BTC for 82.71 CZK @ 1,341,801 CZK\nFees are 0.29049344 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.519632926871459301917655499 CZK)\nThe limits being 0.10 % (24.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53591726 BTC (349,030.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.03 % (370,064.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,673.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01824478 BTC (24,480.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.10 CZK over 3670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006164 BTC for 82.71 CZK @ 1,341,801 CZK\nFees are 0.29049344 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.519632926871459301917655499 CZK)\nThe limits being 0.10 % (24.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53591726 BTC (349,030.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.03 % (370,064.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,673.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01824478 BTC (24,480.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.10 CZK over 3670 transactions" + } + ] + }, + { + "id": 5366, + "type": "message", + "date": "2024-07-07T18:00:05", + "date_unixtime": "1720368005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006234 BTC for 82.70 CZK @ 1,326,646 CZK\nFees are 0.29047397 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.186208338828217376493789222 CZK)\nThe limits being 0.10 % (24.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53597960 BTC (349,113.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,326,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.67 % (361,941.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,590.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01830712 BTC (24,287.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.10 CZK over 3671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006234 BTC for 82.70 CZK @ 1,326,646 CZK\nFees are 0.29047397 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.186208338828217376493789222 CZK)\nThe limits being 0.10 % (24.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53597960 BTC (349,113.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,326,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.67 % (361,941.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,590.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01830712 BTC (24,287.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.10 CZK over 3671 transactions" + } + ] + }, + { + "id": 5367, + "type": "message", + "date": "2024-07-07T22:00:05", + "date_unixtime": "1720382405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006199 BTC for 82.71 CZK @ 1,334,215 CZK\nFees are 0.29049105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.352722139072369147088272191 CZK)\nThe limits being 0.10 % (24.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53604159 BTC (349,196.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,334,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.81 % (365,998.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,507.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01836911 BTC (24,508.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.10 CZK over 3672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006199 BTC for 82.71 CZK @ 1,334,215 CZK\nFees are 0.29049105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.352722139072369147088272191 CZK)\nThe limits being 0.10 % (24.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53604159 BTC (349,196.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,334,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.81 % (365,998.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,507.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01836911 BTC (24,508.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.10 CZK over 3672 transactions" + } + ] + }, + { + "id": 5368, + "type": "message", + "date": "2024-07-08T02:00:06", + "date_unixtime": "1720396806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006323 BTC for 82.71 CZK @ 1,308,063 CZK\nFees are 0.29049399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.777378357466406719294425860 CZK)\nThe limits being 0.10 % (24.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53610482 BTC (349,279.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,308,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.77 % (351,979.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,424.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01843234 BTC (24,110.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.09 CZK over 3673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006323 BTC for 82.71 CZK @ 1,308,063 CZK\nFees are 0.29049399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.777378357466406719294425860 CZK)\nThe limits being 0.10 % (24.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53610482 BTC (349,279.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,308,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.77 % (351,979.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,424.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01843234 BTC (24,110.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.09 CZK over 3673 transactions" + } + ] + }, + { + "id": 5369, + "type": "message", + "date": "2024-07-08T06:00:07", + "date_unixtime": "1720411207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006413 BTC for 82.70 CZK @ 1,289,576 CZK\nFees are 0.29046480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.370665641096642027346824706 CZK)\nThe limits being 0.10 % (23.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53616895 BTC (349,362.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,289,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.91 % (342,068.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,341.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01849647 BTC (23,852.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.09 CZK over 3674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006413 BTC for 82.70 CZK @ 1,289,576 CZK\nFees are 0.29046480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.370665641096642027346824706 CZK)\nThe limits being 0.10 % (23.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53616895 BTC (349,362.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,289,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.91 % (342,068.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,341.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01849647 BTC (23,852.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.09 CZK over 3674 transactions" + } + ] + }, + { + "id": 5370, + "type": "message", + "date": "2024-07-08T10:00:06", + "date_unixtime": "1720425606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006330 BTC for 82.70 CZK @ 1,306,553 CZK\nFees are 0.29047993 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.744163815586993705285843940 CZK)\nThe limits being 0.10 % (24.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53623225 BTC (349,445.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,306,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.49 % (351,170.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,258.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01855977 BTC (24,249.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.09 CZK over 3675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006330 BTC for 82.70 CZK @ 1,306,553 CZK\nFees are 0.29047993 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.744163815586993705285843940 CZK)\nThe limits being 0.10 % (24.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53623225 BTC (349,445.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,306,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.49 % (351,170.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,258.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01855977 BTC (24,249.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.09 CZK over 3675 transactions" + } + ] + }, + { + "id": 5371, + "type": "message", + "date": "2024-07-08T14:00:05", + "date_unixtime": "1720440005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006189 BTC for 82.70 CZK @ 1,336,322 CZK\nFees are 0.29048050 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.399081346809836601141440410 CZK)\nThe limits being 0.10 % (24.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53629414 BTC (349,528.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.04 % (367,133.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,175.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01862166 BTC (24,884.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.08 CZK over 3676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006189 BTC for 82.70 CZK @ 1,336,322 CZK\nFees are 0.29048050 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.399081346809836601141440410 CZK)\nThe limits being 0.10 % (24.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53629414 BTC (349,528.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.04 % (367,133.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,175.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01862166 BTC (24,884.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.08 CZK over 3676 transactions" + } + ] + }, + { + "id": 5372, + "type": "message", + "date": "2024-07-08T18:00:06", + "date_unixtime": "1720454406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006336 BTC for 82.70 CZK @ 1,305,228 CZK\nFees are 0.29046034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.715007359657864142169074902 CZK)\nThe limits being 0.10 % (24.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53635750 BTC (349,611.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,305,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.24 % (350,457.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,092.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01868502 BTC (24,388.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.08 CZK over 3677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006336 BTC for 82.70 CZK @ 1,305,228 CZK\nFees are 0.29046034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (28.715007359657864142169074902 CZK)\nThe limits being 0.10 % (24.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53635750 BTC (349,611.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,305,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.24 % (350,457.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,092.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01868502 BTC (24,388.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.08 CZK over 3677 transactions" + } + ] + }, + { + "id": 5373, + "type": "message", + "date": "2024-07-08T22:00:05", + "date_unixtime": "1720468805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006251 BTC for 82.70 CZK @ 1,323,050 CZK\nFees are 0.29047659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.107097739897241752729628033 CZK)\nThe limits being 0.10 % (24.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53642001 BTC (349,694.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,323,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.95 % (360,016.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,009.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01874753 BTC (24,803.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.08 CZK over 3678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006251 BTC for 82.70 CZK @ 1,323,050 CZK\nFees are 0.29047659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.107097739897241752729628033 CZK)\nThe limits being 0.10 % (24.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53642001 BTC (349,694.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,323,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.95 % (360,016.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,009.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01874753 BTC (24,803.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.08 CZK over 3678 transactions" + } + ] + }, + { + "id": 5374, + "type": "message", + "date": "2024-07-09T02:00:05", + "date_unixtime": "1720483205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006234 BTC for 82.70 CZK @ 1,326,667 CZK\nFees are 0.29047858 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.186671488097721497377082042 CZK)\nThe limits being 0.10 % (24.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53648235 BTC (349,777.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 651,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,326,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.48 % (361,956.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,926.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01880987 BTC (24,954.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.07 CZK over 3679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006234 BTC for 82.70 CZK @ 1,326,667 CZK\nFees are 0.29047858 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.186671488097721497377082042 CZK)\nThe limits being 0.10 % (24.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53648235 BTC (349,777.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 651,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,326,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.48 % (361,956.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,926.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01880987 BTC (24,954.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.07 CZK over 3679 transactions" + } + ] + }, + { + "id": 5375, + "type": "message", + "date": "2024-07-09T06:00:04", + "date_unixtime": "1720497604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006189 BTC for 82.54 CZK @ 1,333,606 CZK\nFees are 0.28989017 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.339335222182049367849141352 CZK)\nThe limits being 0.10 % (25.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53654424 BTC (349,860.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,333,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.52 % (365,678.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,843.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01887176 BTC (25,167.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.07 CZK over 3680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006189 BTC for 82.54 CZK @ 1,333,606 CZK\nFees are 0.28989017 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.339335222182049367849141352 CZK)\nThe limits being 0.10 % (25.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53654424 BTC (349,860.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,333,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.52 % (365,678.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,843.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01887176 BTC (25,167.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.07 CZK over 3680 transactions" + } + ] + }, + { + "id": 5376, + "type": "message", + "date": "2024-07-09T10:00:06", + "date_unixtime": "1720512006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006179 BTC for 82.70 CZK @ 1,338,433 CZK\nFees are 0.29046934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.445528773584411188127522275 CZK)\nThe limits being 0.10 % (25.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53660603 BTC (349,943.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,338,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.24 % (368,268.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,760.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01893355 BTC (25,341.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.07 CZK over 3681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006179 BTC for 82.70 CZK @ 1,338,433 CZK\nFees are 0.29046934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.445528773584411188127522275 CZK)\nThe limits being 0.10 % (25.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53660603 BTC (349,943.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,338,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.24 % (368,268.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,760.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01893355 BTC (25,341.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.07 CZK over 3681 transactions" + } + ] + }, + { + "id": 5377, + "type": "message", + "date": "2024-07-09T14:00:05", + "date_unixtime": "1720526405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006131 BTC for 82.70 CZK @ 1,348,848 CZK\nFees are 0.29045560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.674656172325258268706729188 CZK)\nThe limits being 0.10 % (25.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53666734 BTC (350,026.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,348,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.81 % (373,856.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,677.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01899486 BTC (25,621.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.06 CZK over 3682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006131 BTC for 82.70 CZK @ 1,348,848 CZK\nFees are 0.29045560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.674656172325258268706729188 CZK)\nThe limits being 0.10 % (25.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53666734 BTC (350,026.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,348,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.81 % (373,856.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,677.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01899486 BTC (25,621.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.06 CZK over 3682 transactions" + } + ] + }, + { + "id": 5378, + "type": "message", + "date": "2024-07-09T18:00:05", + "date_unixtime": "1720540805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006123 BTC for 82.70 CZK @ 1,350,665 CZK\nFees are 0.29046725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.714619486704260061205021361 CZK)\nThe limits being 0.10 % (25.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53672857 BTC (350,108.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,350,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.06 % (374,831.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,594.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01905609 BTC (25,738.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.06 CZK over 3683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006123 BTC for 82.70 CZK @ 1,350,665 CZK\nFees are 0.29046725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.714619486704260061205021361 CZK)\nThe limits being 0.10 % (25.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53672857 BTC (350,108.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,350,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.06 % (374,831.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,594.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01905609 BTC (25,738.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.06 CZK over 3683 transactions" + } + ] + }, + { + "id": 5379, + "type": "message", + "date": "2024-07-09T22:00:05", + "date_unixtime": "1720555205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006084 BTC for 82.71 CZK @ 1,359,436 CZK\nFees are 0.29049154 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.907599058456480556055121996 CZK)\nThe limits being 0.10 % (25.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53678941 BTC (350,191.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,359,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.38 % (379,539.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,511.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01911693 BTC (25,988.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.06 CZK over 3684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006084 BTC for 82.71 CZK @ 1,359,436 CZK\nFees are 0.29049154 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (29.907599058456480556055121996 CZK)\nThe limits being 0.10 % (25.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53678941 BTC (350,191.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,359,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.38 % (379,539.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,511.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01911693 BTC (25,988.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.06 CZK over 3684 transactions" + } + ] + }, + { + "id": 5380, + "type": "message", + "date": "2024-07-10T02:00:05", + "date_unixtime": "1720569605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006061 BTC for 82.71 CZK @ 1,364,560 CZK\nFees are 0.29048410 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.020321180767495254811426796 CZK)\nThe limits being 0.10 % (26.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53685002 BTC (350,274.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,364,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.14 % (382,289.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,428.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01917754 BTC (26,168.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.05 CZK over 3685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006061 BTC for 82.71 CZK @ 1,364,560 CZK\nFees are 0.29048410 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.020321180767495254811426796 CZK)\nThe limits being 0.10 % (26.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53685002 BTC (350,274.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,364,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.14 % (382,289.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,428.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01917754 BTC (26,168.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.05 CZK over 3685 transactions" + } + ] + }, + { + "id": 5381, + "type": "message", + "date": "2024-07-10T06:00:08", + "date_unixtime": "1720584008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006067 BTC for 82.71 CZK @ 1,363,246 CZK\nFees are 0.29049160 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.991407330647332982985461548 CZK)\nThe limits being 0.10 % (26.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53691069 BTC (350,357.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.91 % (381,583.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,345.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01923821 BTC (26,226.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.05 CZK over 3686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006067 BTC for 82.71 CZK @ 1,363,246 CZK\nFees are 0.29049160 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.991407330647332982985461548 CZK)\nThe limits being 0.10 % (26.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53691069 BTC (350,357.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.91 % (381,583.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,345.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01923821 BTC (26,226.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.05 CZK over 3686 transactions" + } + ] + }, + { + "id": 5382, + "type": "message", + "date": "2024-07-10T10:00:06", + "date_unixtime": "1720598406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005932 BTC for 82.70 CZK @ 1,394,092 CZK\nFees are 0.29045452 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.670033774909865370058470338 CZK)\nThe limits being 0.10 % (26.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53697001 BTC (350,440.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,394,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.61 % (398,144.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,262.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01929753 BTC (26,902.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.05 CZK over 3687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005932 BTC for 82.70 CZK @ 1,394,092 CZK\nFees are 0.29045452 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.670033774909865370058470338 CZK)\nThe limits being 0.10 % (26.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53697001 BTC (350,440.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,394,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.61 % (398,144.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,262.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01929753 BTC (26,902.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.05 CZK over 3687 transactions" + } + ] + }, + { + "id": 5383, + "type": "message", + "date": "2024-07-10T14:00:06", + "date_unixtime": "1720612806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005986 BTC for 82.71 CZK @ 1,381,719 CZK\nFees are 0.29049708 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.397811280298440922857536212 CZK)\nThe limits being 0.10 % (26.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53702987 BTC (350,523.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,381,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.69 % (391,500.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,179.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01935739 BTC (26,746.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.04 CZK over 3688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005986 BTC for 82.71 CZK @ 1,381,719 CZK\nFees are 0.29049708 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.397811280298440922857536212 CZK)\nThe limits being 0.10 % (26.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53702987 BTC (350,523.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,381,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.69 % (391,500.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,179.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01935739 BTC (26,746.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.04 CZK over 3688 transactions" + } + ] + }, + { + "id": 5384, + "type": "message", + "date": "2024-07-10T18:00:06", + "date_unixtime": "1720627206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006075 BTC for 82.71 CZK @ 1,361,405 CZK\nFees are 0.29048192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (89.85274409787964347007695288 CZK)\nThe limits being 0.10 % (26.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53709062 BTC (350,606.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,361,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.55 % (380,591.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,096.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01941814 BTC (26,435.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.04 CZK over 3689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006075 BTC for 82.71 CZK @ 1,361,405 CZK\nFees are 0.29048192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (89.85274409787964347007695288 CZK)\nThe limits being 0.10 % (26.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53709062 BTC (350,606.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,361,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.55 % (380,591.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,096.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01941814 BTC (26,435.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.04 CZK over 3689 transactions" + } + ] + }, + { + "id": 5385, + "type": "message", + "date": "2024-07-10T22:00:05", + "date_unixtime": "1720641605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006101 BTC for 82.71 CZK @ 1,355,679 CZK\nFees are 0.29049811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (59.649875270351507798430783192 CZK)\nThe limits being 0.10 % (26.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53715163 BTC (350,689.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,355,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.65 % (377,515.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,013.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01947915 BTC (26,407.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.04 CZK over 3690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006101 BTC for 82.71 CZK @ 1,355,679 CZK\nFees are 0.29049811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (59.649875270351507798430783192 CZK)\nThe limits being 0.10 % (26.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53715163 BTC (350,689.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,355,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.65 % (377,515.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,013.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01947915 BTC (26,407.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.04 CZK over 3690 transactions" + } + ] + }, + { + "id": 5386, + "type": "message", + "date": "2024-07-11T02:00:05", + "date_unixtime": "1720656005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006076 BTC for 82.70 CZK @ 1,361,073 CZK\nFees are 0.29045893 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (44.915421841034981908284795188 CZK)\nThe limits being 0.10 % (26.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53721239 BTC (350,772.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 652,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,361,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.45 % (380,412.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,930.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01953991 BTC (26,595.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.03 CZK over 3691 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006076 BTC for 82.70 CZK @ 1,361,073 CZK\nFees are 0.29045893 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (44.915421841034981908284795188 CZK)\nThe limits being 0.10 % (26.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53721239 BTC (350,772.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 652,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,361,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.45 % (380,412.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,930.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01953991 BTC (26,595.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.03 CZK over 3691 transactions" + } + ] + }, + { + "id": 5387, + "type": "message", + "date": "2024-07-11T06:00:05", + "date_unixtime": "1720670405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006107 BTC for 82.54 CZK @ 1,351,563 CZK\nFees are 0.28990097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.734387962419724838943834130 CZK)\nThe limits being 0.10 % (26.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53727346 BTC (350,855.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,351,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.97 % (375,303.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,847.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01960098 BTC (26,491.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.03 CZK over 3692 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006107 BTC for 82.54 CZK @ 1,351,563 CZK\nFees are 0.28990097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.734387962419724838943834130 CZK)\nThe limits being 0.10 % (26.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53727346 BTC (350,855.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,351,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.97 % (375,303.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,847.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01960098 BTC (26,491.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.03 CZK over 3692 transactions" + } + ] + }, + { + "id": 5388, + "type": "message", + "date": "2024-07-11T10:00:05", + "date_unixtime": "1720684805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006021 BTC for 82.71 CZK @ 1,373,691 CZK\nFees are 0.29049792 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.221196377038445493918602612 CZK)\nThe limits being 0.10 % (27.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53733367 BTC (350,938.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,373,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.33 % (387,191.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,764.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01966119 BTC (27,008.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.03 CZK over 3693 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006021 BTC for 82.71 CZK @ 1,373,691 CZK\nFees are 0.29049792 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.221196377038445493918602612 CZK)\nThe limits being 0.10 % (27.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53733367 BTC (350,938.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,373,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.33 % (387,191.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,764.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01966119 BTC (27,008.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.03 CZK over 3693 transactions" + } + ] + }, + { + "id": 5389, + "type": "message", + "date": "2024-07-11T14:00:04", + "date_unixtime": "1720699204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005990 BTC for 82.71 CZK @ 1,380,804 CZK\nFees are 0.29049885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.377697293196683061704734596 CZK)\nThe limits being 0.10 % (27.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53739357 BTC (351,021.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.39 % (391,013.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,681.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01972109 BTC (27,230.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.02 CZK over 3694 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005990 BTC for 82.71 CZK @ 1,380,804 CZK\nFees are 0.29049885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.377697293196683061704734596 CZK)\nThe limits being 0.10 % (27.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53739357 BTC (351,021.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.39 % (391,013.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,681.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01972109 BTC (27,230.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.02 CZK over 3694 transactions" + } + ] + }, + { + "id": 5390, + "type": "message", + "date": "2024-07-11T18:00:05", + "date_unixtime": "1720713605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006140 BTC for 82.70 CZK @ 1,346,945 CZK\nFees are 0.29047165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.632796148334250319322112022 CZK)\nThe limits being 0.10 % (26.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53745497 BTC (351,104.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.18 % (372,817.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,598.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01978249 BTC (26,645.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.02 CZK over 3695 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006140 BTC for 82.70 CZK @ 1,346,945 CZK\nFees are 0.29047165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.632796148334250319322112022 CZK)\nThe limits being 0.10 % (26.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53745497 BTC (351,104.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.18 % (372,817.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,598.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01978249 BTC (26,645.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.02 CZK over 3695 transactions" + } + ] + }, + { + "id": 5391, + "type": "message", + "date": "2024-07-11T22:00:05", + "date_unixtime": "1720728005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006131 BTC for 82.70 CZK @ 1,348,947 CZK\nFees are 0.29047697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.676839598999326854459887865 CZK)\nThe limits being 0.10 % (26.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53751628 BTC (351,187.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,348,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.47 % (373,893.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,515.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01984380 BTC (26,768.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.02 CZK over 3696 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006131 BTC for 82.70 CZK @ 1,348,947 CZK\nFees are 0.29047697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.676839598999326854459887865 CZK)\nThe limits being 0.10 % (26.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53751628 BTC (351,187.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,348,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.47 % (373,893.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,515.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01984380 BTC (26,768.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.02 CZK over 3696 transactions" + } + ] + }, + { + "id": 5392, + "type": "message", + "date": "2024-07-12T02:00:06", + "date_unixtime": "1720742406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006143 BTC for 82.71 CZK @ 1,346,336 CZK\nFees are 0.29048206 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.619386824609714931485527498 CZK)\nThe limits being 0.10 % (26.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53757771 BTC (351,270.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.04 % (372,489.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,432.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01990523 BTC (26,799.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.02 CZK over 3697 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006143 BTC for 82.71 CZK @ 1,346,336 CZK\nFees are 0.29048206 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.619386824609714931485527498 CZK)\nThe limits being 0.10 % (26.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53757771 BTC (351,270.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.04 % (372,489.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,432.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01990523 BTC (26,799.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.02 CZK over 3697 transactions" + } + ] + }, + { + "id": 5393, + "type": "message", + "date": "2024-07-12T06:00:07", + "date_unixtime": "1720756807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006182 BTC for 82.70 CZK @ 1,337,770 CZK\nFees are 0.29046649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.430950544978695561974370839 CZK)\nThe limits being 0.10 % (26.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53763953 BTC (351,353.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.70 % (367,884.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,349.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01996705 BTC (26,711.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.01 CZK over 3698 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006182 BTC for 82.70 CZK @ 1,337,770 CZK\nFees are 0.29046649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.430950544978695561974370839 CZK)\nThe limits being 0.10 % (26.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53763953 BTC (351,353.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.70 % (367,884.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,349.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01996705 BTC (26,711.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.01 CZK over 3698 transactions" + } + ] + }, + { + "id": 5394, + "type": "message", + "date": "2024-07-12T10:00:06", + "date_unixtime": "1720771206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006168 BTC for 82.71 CZK @ 1,340,945 CZK\nFees are 0.29049648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.500798122912219682473211462 CZK)\nThe limits being 0.10 % (26.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53770121 BTC (351,436.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,340,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.17 % (369,591.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,266.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02002873 BTC (26,857.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.01 CZK over 3699 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006168 BTC for 82.71 CZK @ 1,340,945 CZK\nFees are 0.29049648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.500798122912219682473211462 CZK)\nThe limits being 0.10 % (26.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53770121 BTC (351,436.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,340,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.17 % (369,591.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,266.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02002873 BTC (26,857.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.01 CZK over 3699 transactions" + } + ] + }, + { + "id": 5395, + "type": "message", + "date": "2024-07-12T14:00:08", + "date_unixtime": "1720785608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006169 BTC for 82.70 CZK @ 1,340,575 CZK\nFees are 0.29046342 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.492659896877382395527147932 CZK)\nThe limits being 0.10 % (26.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53776290 BTC (351,519.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,340,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.08 % (369,392.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,183.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02009042 BTC (26,932.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.01 CZK over 3700 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006169 BTC for 82.70 CZK @ 1,340,575 CZK\nFees are 0.29046342 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.492659896877382395527147932 CZK)\nThe limits being 0.10 % (26.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53776290 BTC (351,519.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,340,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.08 % (369,392.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,183.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02009042 BTC (26,932.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.01 CZK over 3700 transactions" + } + ] + }, + { + "id": 5396, + "type": "message", + "date": "2024-07-12T18:00:06", + "date_unixtime": "1720800006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006088 BTC for 82.71 CZK @ 1,358,532 CZK\nFees are 0.29048918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.887705620996682439320459863 CZK)\nThe limits being 0.10 % (27.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53782378 BTC (351,602.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,358,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.81 % (379,048.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,100.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02015130 BTC (27,376.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.00 CZK over 3701 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006088 BTC for 82.71 CZK @ 1,358,532 CZK\nFees are 0.29048918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.887705620996682439320459863 CZK)\nThe limits being 0.10 % (27.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53782378 BTC (351,602.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,358,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.81 % (379,048.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,100.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02015130 BTC (27,376.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.00 CZK over 3701 transactions" + } + ] + }, + { + "id": 5397, + "type": "message", + "date": "2024-07-12T22:00:06", + "date_unixtime": "1720814406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006136 BTC for 82.70 CZK @ 1,347,756 CZK\nFees are 0.29045720 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.650638488887329808512448930 CZK)\nThe limits being 0.10 % (27.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53788514 BTC (351,685.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.13 % (373,252.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,017.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02021266 BTC (27,241.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.00 CZK over 3702 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006136 BTC for 82.70 CZK @ 1,347,756 CZK\nFees are 0.29045720 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.650638488887329808512448930 CZK)\nThe limits being 0.10 % (27.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53788514 BTC (351,685.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.13 % (373,252.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,017.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02021266 BTC (27,241.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.00 CZK over 3702 transactions" + } + ] + }, + { + "id": 5398, + "type": "message", + "date": "2024-07-13T02:00:05", + "date_unixtime": "1720828805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006127 BTC for 82.70 CZK @ 1,349,716 CZK\nFees are 0.29045292 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.693755636242630148161864356 CZK)\nThe limits being 0.10 % (27.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53794641 BTC (351,768.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,349,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.41 % (374,306.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,934.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02027393 BTC (27,364.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 95.00 CZK over 3703 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006127 BTC for 82.70 CZK @ 1,349,716 CZK\nFees are 0.29045292 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.693755636242630148161864356 CZK)\nThe limits being 0.10 % (27.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53794641 BTC (351,768.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,349,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.41 % (374,306.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,934.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02027393 BTC (27,364.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 95.00 CZK over 3703 transactions" + } + ] + }, + { + "id": 5399, + "type": "message", + "date": "2024-07-13T06:00:05", + "date_unixtime": "1720843205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006114 BTC for 82.71 CZK @ 1,352,789 CZK\nFees are 0.29049647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.761353626064091349234173686 CZK)\nThe limits being 0.10 % (27.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53800755 BTC (351,851.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 653,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,352,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.85 % (375,958.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,851.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02033507 BTC (27,509.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.99 CZK over 3704 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006114 BTC for 82.71 CZK @ 1,352,789 CZK\nFees are 0.29049647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (29.761353626064091349234173686 CZK)\nThe limits being 0.10 % (27.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53800755 BTC (351,851.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 653,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,352,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.85 % (375,958.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,851.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02033507 BTC (27,509.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.99 CZK over 3704 transactions" + } + ] + }, + { + "id": 5400, + "type": "message", + "date": "2024-07-13T10:00:05", + "date_unixtime": "1720857605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006088 BTC for 82.70 CZK @ 1,358,454 CZK\nFees are 0.29047246 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (44.828978019932863100043409169 CZK)\nThe limits being 0.10 % (27.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53806843 BTC (351,934.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,358,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.69 % (379,006.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,768.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02039595 BTC (27,706.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.99 CZK over 3705 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006088 BTC for 82.70 CZK @ 1,358,454 CZK\nFees are 0.29047246 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (44.828978019932863100043409169 CZK)\nThe limits being 0.10 % (27.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53806843 BTC (351,934.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,358,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.69 % (379,006.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,768.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02039595 BTC (27,706.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.99 CZK over 3705 transactions" + } + ] + }, + { + "id": 5401, + "type": "message", + "date": "2024-07-13T14:00:05", + "date_unixtime": "1720872005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006040 BTC for 82.70 CZK @ 1,369,178 CZK\nFees are 0.29045718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (90.36571689088191330343796712 CZK)\nThe limits being 0.10 % (28.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53812883 BTC (352,017.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,369,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.31 % (384,776.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,685.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02045635 BTC (28,008.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.99 CZK over 3706 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006040 BTC for 82.70 CZK @ 1,369,178 CZK\nFees are 0.29045718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (90.36571689088191330343796712 CZK)\nThe limits being 0.10 % (28.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53812883 BTC (352,017.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,369,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.31 % (384,776.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,685.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02045635 BTC (28,008.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.99 CZK over 3706 transactions" + } + ] + }, + { + "id": 5402, + "type": "message", + "date": "2024-07-13T18:00:06", + "date_unixtime": "1720886406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006027 BTC for 82.70 CZK @ 1,372,118 CZK\nFees are 0.29045444 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (105.65307333045143391856724461 CZK)\nThe limits being 0.10 % (28.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53818910 BTC (352,100.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,372,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.73 % (386,358.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,602.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02051662 BTC (28,151.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.98 CZK over 3707 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006027 BTC for 82.70 CZK @ 1,372,118 CZK\nFees are 0.29045444 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (105.65307333045143391856724461 CZK)\nThe limits being 0.10 % (28.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53818910 BTC (352,100.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,372,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.73 % (386,358.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,602.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02051662 BTC (28,151.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.98 CZK over 3707 transactions" + } + ] + }, + { + "id": 5403, + "type": "message", + "date": "2024-07-13T22:00:05", + "date_unixtime": "1720900805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006020 BTC for 82.71 CZK @ 1,373,885 CZK\nFees are 0.29049079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (90.67642502271948512432400220 CZK)\nThe limits being 0.10 % (28.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53824930 BTC (352,183.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,373,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.97 % (387,309.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,519.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02057682 BTC (28,270.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.98 CZK over 3708 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006020 BTC for 82.71 CZK @ 1,373,885 CZK\nFees are 0.29049079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (90.67642502271948512432400220 CZK)\nThe limits being 0.10 % (28.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53824930 BTC (352,183.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,373,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.97 % (387,309.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,519.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02057682 BTC (28,270.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.98 CZK over 3708 transactions" + } + ] + }, + { + "id": 5404, + "type": "message", + "date": "2024-07-14T02:00:05", + "date_unixtime": "1720915205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005974 BTC for 82.71 CZK @ 1,384,418 CZK\nFees are 0.29048118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.457204877338421650770678919 CZK)\nThe limits being 0.10 % (28.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53830904 BTC (352,266.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,384,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.56 % (392,978.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,436.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02063656 BTC (28,569.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.98 CZK over 3709 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005974 BTC for 82.71 CZK @ 1,384,418 CZK\nFees are 0.29048118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.457204877338421650770678919 CZK)\nThe limits being 0.10 % (28.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53830904 BTC (352,266.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,384,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.56 % (392,978.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,436.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02063656 BTC (28,569.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.98 CZK over 3709 transactions" + } + ] + }, + { + "id": 5405, + "type": "message", + "date": "2024-07-14T06:00:05", + "date_unixtime": "1720929605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005936 BTC for 82.70 CZK @ 1,393,244 CZK\nFees are 0.29047355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.651375407435162913629789000 CZK)\nThe limits being 0.10 % (28.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53836840 BTC (352,349.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,393,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.88 % (397,729.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,353.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02069592 BTC (28,834.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.97 CZK over 3710 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005936 BTC for 82.70 CZK @ 1,393,244 CZK\nFees are 0.29047355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.651375407435162913629789000 CZK)\nThe limits being 0.10 % (28.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53836840 BTC (352,349.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,393,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.88 % (397,729.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,353.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02069592 BTC (28,834.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.97 CZK over 3710 transactions" + } + ] + }, + { + "id": 5406, + "type": "message", + "date": "2024-07-14T10:00:06", + "date_unixtime": "1720944006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005898 BTC for 82.71 CZK @ 1,402,337 CZK\nFees are 0.29049761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.851412518038340883205829443 CZK)\nThe limits being 0.10 % (29.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53842738 BTC (352,432.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,402,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.24 % (402,623.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,270.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02075490 BTC (29,105.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.97 CZK over 3711 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005898 BTC for 82.71 CZK @ 1,402,337 CZK\nFees are 0.29049761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.851412518038340883205829443 CZK)\nThe limits being 0.10 % (29.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53842738 BTC (352,432.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,402,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.24 % (402,623.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,270.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02075490 BTC (29,105.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.97 CZK over 3711 transactions" + } + ] + }, + { + "id": 5407, + "type": "message", + "date": "2024-07-14T14:00:06", + "date_unixtime": "1720958406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005893 BTC for 82.71 CZK @ 1,403,488 CZK\nFees are 0.29048954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.876731439960139511709018435 CZK)\nThe limits being 0.10 % (29.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53848631 BTC (352,515.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.39 % (403,243.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,187.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02081383 BTC (29,211.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.97 CZK over 3712 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005893 BTC for 82.71 CZK @ 1,403,488 CZK\nFees are 0.29048954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.876731439960139511709018435 CZK)\nThe limits being 0.10 % (29.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53848631 BTC (352,515.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.39 % (403,243.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,187.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02081383 BTC (29,211.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.97 CZK over 3712 transactions" + } + ] + }, + { + "id": 5408, + "type": "message", + "date": "2024-07-14T18:00:05", + "date_unixtime": "1720972805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005893 BTC for 82.71 CZK @ 1,403,488 CZK\nFees are 0.29048954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.876731439960139511709018435 CZK)\nThe limits being 0.10 % (29.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53854524 BTC (352,598.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.36 % (403,243.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,104.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02087276 BTC (29,294.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.96 CZK over 3713 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005893 BTC for 82.71 CZK @ 1,403,488 CZK\nFees are 0.29048954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.876731439960139511709018435 CZK)\nThe limits being 0.10 % (29.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53854524 BTC (352,598.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.36 % (403,243.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,104.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02087276 BTC (29,294.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.96 CZK over 3713 transactions" + } + ] + }, + { + "id": 5409, + "type": "message", + "date": "2024-07-14T22:00:06", + "date_unixtime": "1720987206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005893 BTC for 82.54 CZK @ 1,400,697 CZK\nFees are 0.28991182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.815324275438138583513616138 CZK)\nThe limits being 0.10 % (29.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53860417 BTC (352,681.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,400,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.91 % (401,739.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,022.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02093169 BTC (29,318.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.96 CZK over 3714 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005893 BTC for 82.54 CZK @ 1,400,697 CZK\nFees are 0.28991182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (30.815324275438138583513616138 CZK)\nThe limits being 0.10 % (29.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53860417 BTC (352,681.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,400,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.91 % (401,739.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,022.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02093169 BTC (29,318.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.96 CZK over 3714 transactions" + } + ] + }, + { + "id": 5410, + "type": "message", + "date": "2024-07-15T02:00:07", + "date_unixtime": "1721001607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005803 BTC for 82.70 CZK @ 1,425,064 CZK\nFees are 0.29045074 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (31.351417073157957144823378386 CZK)\nThe limits being 0.10 % (29.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53866220 BTC (352,764.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,425,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.60 % (414,863.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,939.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02098972 BTC (29,911.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.96 CZK over 3715 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005803 BTC for 82.70 CZK @ 1,425,064 CZK\nFees are 0.29045074 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (31.351417073157957144823378386 CZK)\nThe limits being 0.10 % (29.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53866220 BTC (352,764.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,425,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.60 % (414,863.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,939.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02098972 BTC (29,911.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.96 CZK over 3715 transactions" + } + ] + }, + { + "id": 5411, + "type": "message", + "date": "2024-07-15T06:00:05", + "date_unixtime": "1721016005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005654 BTC for 82.70 CZK @ 1,462,635 CZK\nFees are 0.29045384 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.177965122072745391131041355 CZK)\nThe limits being 0.10 % (30.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53871874 BTC (352,847.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 654,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,462,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.31 % (435,101.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,856.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02104626 BTC (30,782.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.95 CZK over 3716 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005654 BTC for 82.70 CZK @ 1,462,635 CZK\nFees are 0.29045384 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.177965122072745391131041355 CZK)\nThe limits being 0.10 % (30.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53871874 BTC (352,847.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 654,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,462,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.31 % (435,101.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,856.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02104626 BTC (30,782.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.95 CZK over 3716 transactions" + } + ] + }, + { + "id": 5412, + "type": "message", + "date": "2024-07-15T10:00:06", + "date_unixtime": "1721030406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005610 BTC for 82.71 CZK @ 1,474,289 CZK\nFees are 0.29048976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.434352265111326045116601697 CZK)\nThe limits being 0.10 % (31.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53877484 BTC (352,930.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,474,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.06 % (441,379.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,773.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02110236 BTC (31,110.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.95 CZK over 3717 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005610 BTC for 82.71 CZK @ 1,474,289 CZK\nFees are 0.29048976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.434352265111326045116601697 CZK)\nThe limits being 0.10 % (31.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53877484 BTC (352,930.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,474,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.06 % (441,379.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,773.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02110236 BTC (31,110.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.95 CZK over 3717 transactions" + } + ] + }, + { + "id": 5413, + "type": "message", + "date": "2024-07-15T14:00:06", + "date_unixtime": "1721044806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005637 BTC for 82.70 CZK @ 1,467,045 CZK\nFees are 0.29045363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.274984223304296236898016779 CZK)\nThe limits being 0.10 % (31.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53883121 BTC (353,013.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,467,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.93 % (437,476.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,690.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02115873 BTC (31,040.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.95 CZK over 3718 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005637 BTC for 82.70 CZK @ 1,467,045 CZK\nFees are 0.29045363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.274984223304296236898016779 CZK)\nThe limits being 0.10 % (31.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53883121 BTC (353,013.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,467,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.93 % (437,476.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,690.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02115873 BTC (31,040.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.95 CZK over 3718 transactions" + } + ] + }, + { + "id": 5414, + "type": "message", + "date": "2024-07-15T18:00:06", + "date_unixtime": "1721059206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005601 BTC for 82.70 CZK @ 1,476,476 CZK\nFees are 0.29045405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.482475858330871409093347363 CZK)\nThe limits being 0.10 % (31.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53888722 BTC (353,096.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,476,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.34 % (442,557.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,607.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02121474 BTC (31,323.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.94 CZK over 3719 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005601 BTC for 82.70 CZK @ 1,476,476 CZK\nFees are 0.29045405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.482475858330871409093347363 CZK)\nThe limits being 0.10 % (31.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53888722 BTC (353,096.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,476,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.34 % (442,557.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,607.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02121474 BTC (31,323.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.94 CZK over 3719 transactions" + } + ] + }, + { + "id": 5415, + "type": "message", + "date": "2024-07-15T22:00:06", + "date_unixtime": "1721073606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005564 BTC for 82.70 CZK @ 1,486,368 CZK\nFees are 0.29046835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.700090647507268772094219479 CZK)\nThe limits being 0.10 % (31.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53894286 BTC (353,179.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,486,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.82 % (447,887.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,524.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02127038 BTC (31,615.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.94 CZK over 3720 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005564 BTC for 82.70 CZK @ 1,486,368 CZK\nFees are 0.29046835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.700090647507268772094219479 CZK)\nThe limits being 0.10 % (31.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53894286 BTC (353,179.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,486,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.82 % (447,887.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,524.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02127038 BTC (31,615.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.94 CZK over 3720 transactions" + } + ] + }, + { + "id": 5416, + "type": "message", + "date": "2024-07-16T02:00:06", + "date_unixtime": "1721088006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005452 BTC for 82.71 CZK @ 1,517,059 CZK\nFees are 0.29049840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.375298599801648010393556521 CZK)\nThe limits being 0.10 % (32.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53899738 BTC (353,262.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.47 % (464,428.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,441.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02132490 BTC (32,351.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.94 CZK over 3721 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005452 BTC for 82.71 CZK @ 1,517,059 CZK\nFees are 0.29049840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.375298599801648010393556521 CZK)\nThe limits being 0.10 % (32.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53899738 BTC (353,262.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.47 % (464,428.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,441.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02132490 BTC (32,351.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.94 CZK over 3721 transactions" + } + ] + }, + { + "id": 5417, + "type": "message", + "date": "2024-07-16T06:00:05", + "date_unixtime": "1721102405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005451 BTC for 82.70 CZK @ 1,517,120 CZK\nFees are 0.29045683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (50.064965918679229192049072056 CZK)\nThe limits being 0.10 % (32.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53905189 BTC (353,345.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,494 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,517,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.45 % (464,461.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,358.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02137941 BTC (32,435.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.93 CZK over 3722 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005451 BTC for 82.70 CZK @ 1,517,120 CZK\nFees are 0.29045683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (50.064965918679229192049072056 CZK)\nThe limits being 0.10 % (32.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53905189 BTC (353,345.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,494 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,517,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.45 % (464,461.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,358.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02137941 BTC (32,435.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.93 CZK over 3722 transactions" + } + ] + }, + { + "id": 5418, + "type": "message", + "date": "2024-07-16T10:00:05", + "date_unixtime": "1721116805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005608 BTC for 82.70 CZK @ 1,474,697 CZK\nFees are 0.29046657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.443328571113797855863962577 CZK)\nThe limits being 0.10 % (31.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53910797 BTC (353,428.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,474,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.95 % (441,592.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,275.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02143549 BTC (31,610.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.93 CZK over 3723 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005608 BTC for 82.70 CZK @ 1,474,697 CZK\nFees are 0.29046657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.443328571113797855863962577 CZK)\nThe limits being 0.10 % (31.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53910797 BTC (353,428.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,474,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.95 % (441,592.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,275.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02143549 BTC (31,610.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.93 CZK over 3723 transactions" + } + ] + }, + { + "id": 5419, + "type": "message", + "date": "2024-07-16T14:00:05", + "date_unixtime": "1721131205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005547 BTC for 82.70 CZK @ 1,490,875 CZK\nFees are 0.29045898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.799249068498222688949951534 CZK)\nThe limits being 0.10 % (32.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53916344 BTC (353,511.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.38 % (450,313.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,192.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02149096 BTC (32,040.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.93 CZK over 3724 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005547 BTC for 82.70 CZK @ 1,490,875 CZK\nFees are 0.29045898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.799249068498222688949951534 CZK)\nThe limits being 0.10 % (32.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53916344 BTC (353,511.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.38 % (450,313.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,192.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02149096 BTC (32,040.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.93 CZK over 3724 transactions" + } + ] + }, + { + "id": 5420, + "type": "message", + "date": "2024-07-16T18:00:05", + "date_unixtime": "1721145605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005459 BTC for 82.71 CZK @ 1,515,055 CZK\nFees are 0.29048715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.331211038704705722679907738 CZK)\nThe limits being 0.10 % (32.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53921803 BTC (353,594.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,754 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,515,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.04 % (463,350.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,109.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02154555 BTC (32,642.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.92 CZK over 3725 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005459 BTC for 82.71 CZK @ 1,515,055 CZK\nFees are 0.29048715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.331211038704705722679907738 CZK)\nThe limits being 0.10 % (32.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53921803 BTC (353,594.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,754 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,515,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.04 % (463,350.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,109.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02154555 BTC (32,642.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.92 CZK over 3725 transactions" + } + ] + }, + { + "id": 5421, + "type": "message", + "date": "2024-07-16T22:00:05", + "date_unixtime": "1721160005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005453 BTC for 82.70 CZK @ 1,516,550 CZK\nFees are 0.29045415 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.364094757291347147262227536 CZK)\nThe limits being 0.10 % (32.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53927256 BTC (353,677.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.24 % (464,156.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,026.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02160008 BTC (32,757.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.92 CZK over 3726 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005453 BTC for 82.70 CZK @ 1,516,550 CZK\nFees are 0.29045415 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.364094757291347147262227536 CZK)\nThe limits being 0.10 % (32.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53927256 BTC (353,677.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.24 % (464,156.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,026.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02160008 BTC (32,757.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.92 CZK over 3726 transactions" + } + ] + }, + { + "id": 5422, + "type": "message", + "date": "2024-07-17T02:00:05", + "date_unixtime": "1721174405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005443 BTC for 82.71 CZK @ 1,519,515 CZK\nFees are 0.29048839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.429332881854534299893419148 CZK)\nThe limits being 0.10 % (32.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53932699 BTC (353,760.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 655,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,519,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.66 % (465,755.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,943.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02165451 BTC (32,904.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.92 CZK over 3727 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005443 BTC for 82.71 CZK @ 1,519,515 CZK\nFees are 0.29048839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.429332881854534299893419148 CZK)\nThe limits being 0.10 % (32.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53932699 BTC (353,760.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 655,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,519,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.66 % (465,755.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,943.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02165451 BTC (32,904.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.92 CZK over 3727 transactions" + } + ] + }, + { + "id": 5423, + "type": "message", + "date": "2024-07-17T06:00:06", + "date_unixtime": "1721188806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005391 BTC for 82.71 CZK @ 1,534,215 CZK\nFees are 0.29049648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.752722534752924216180116023 CZK)\nThe limits being 0.10 % (33.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53938090 BTC (353,843.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,534,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.87 % (473,682.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,860.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02170842 BTC (33,305.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.92 CZK over 3728 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005391 BTC for 82.71 CZK @ 1,534,215 CZK\nFees are 0.29049648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.752722534752924216180116023 CZK)\nThe limits being 0.10 % (33.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53938090 BTC (353,843.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,534,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.87 % (473,682.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,860.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02170842 BTC (33,305.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.92 CZK over 3728 transactions" + } + ] + }, + { + "id": 5424, + "type": "message", + "date": "2024-07-17T10:00:06", + "date_unixtime": "1721203206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,657 CZK\nFees are 0.29045391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.542451993244881851572593269 CZK)\nThe limits being 0.10 % (33.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53943514 BTC (353,926.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,524,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.38 % (468,527.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,777.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02176266 BTC (33,180.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.91 CZK over 3729 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005424 BTC for 82.70 CZK @ 1,524,657 CZK\nFees are 0.29045391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.542451993244881851572593269 CZK)\nThe limits being 0.10 % (33.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53943514 BTC (353,926.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,524,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.38 % (468,527.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,777.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02176266 BTC (33,180.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.91 CZK over 3729 transactions" + } + ] + }, + { + "id": 5425, + "type": "message", + "date": "2024-07-17T14:00:06", + "date_unixtime": "1721217606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005491 BTC for 82.71 CZK @ 1,506,278 CZK\nFees are 0.29049728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.138121195375464693459978040 CZK)\nThe limits being 0.10 % (32.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53949005 BTC (354,009.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.55 % (458,612.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,694.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02181757 BTC (32,863.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.91 CZK over 3730 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005491 BTC for 82.71 CZK @ 1,506,278 CZK\nFees are 0.29049728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (33.138121195375464693459978040 CZK)\nThe limits being 0.10 % (32.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53949005 BTC (354,009.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.55 % (458,612.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,694.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02181757 BTC (32,863.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.91 CZK over 3730 transactions" + } + ] + }, + { + "id": 5426, + "type": "message", + "date": "2024-07-17T18:00:06", + "date_unixtime": "1721232006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005494 BTC for 82.70 CZK @ 1,505,230 CZK\nFees are 0.29045365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (49.672577797330747552840631142 CZK)\nThe limits being 0.10 % (32.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53954499 BTC (354,092.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,505,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.36 % (458,046.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,611.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02187251 BTC (32,923.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.91 CZK over 3731 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005494 BTC for 82.70 CZK @ 1,505,230 CZK\nFees are 0.29045365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (49.672577797330747552840631142 CZK)\nThe limits being 0.10 % (32.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53954499 BTC (354,092.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,505,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.36 % (458,046.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,611.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02187251 BTC (32,923.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.91 CZK over 3731 transactions" + } + ] + }, + { + "id": 5427, + "type": "message", + "date": "2024-07-17T22:00:06", + "date_unixtime": "1721246406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005506 BTC for 82.70 CZK @ 1,502,011 CZK\nFees are 0.29046555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (49.566350816095717296038511053 CZK)\nThe limits being 0.10 % (32.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53960005 BTC (354,175.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,502,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.84 % (456,309.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,528.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02192757 BTC (32,935.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.90 CZK over 3732 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005506 BTC for 82.70 CZK @ 1,502,011 CZK\nFees are 0.29046555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (49.566350816095717296038511053 CZK)\nThe limits being 0.10 % (32.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53960005 BTC (354,175.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,502,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.84 % (456,309.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,528.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02192757 BTC (32,935.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.90 CZK over 3732 transactions" + } + ] + }, + { + "id": 5428, + "type": "message", + "date": "2024-07-18T02:00:05", + "date_unixtime": "1721260805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005538 BTC for 82.71 CZK @ 1,493,457 CZK\nFees are 0.29049001 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.856062253762247446325005854 CZK)\nThe limits being 0.10 % (32.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53965543 BTC (354,258.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.50 % (451,694.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,445.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02198295 BTC (32,830.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.90 CZK over 3733 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005538 BTC for 82.71 CZK @ 1,493,457 CZK\nFees are 0.29049001 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (32.856062253762247446325005854 CZK)\nThe limits being 0.10 % (32.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53965543 BTC (354,258.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.50 % (451,694.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,445.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02198295 BTC (32,830.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.90 CZK over 3733 transactions" + } + ] + }, + { + "id": 5429, + "type": "message", + "date": "2024-07-18T06:00:07", + "date_unixtime": "1721275207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005489 BTC for 82.71 CZK @ 1,506,807 CZK\nFees are 0.29049332 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.149744080088427977030293771 CZK)\nThe limits being 0.10 % (33.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53971032 BTC (354,341.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.51 % (458,897.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,362.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02203784 BTC (33,206.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.90 CZK over 3734 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005489 BTC for 82.71 CZK @ 1,506,807 CZK\nFees are 0.29049332 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.149744080088427977030293771 CZK)\nThe limits being 0.10 % (33.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53971032 BTC (354,341.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.51 % (458,897.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,362.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02203784 BTC (33,206.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.90 CZK over 3734 transactions" + } + ] + }, + { + "id": 5430, + "type": "message", + "date": "2024-07-18T10:00:05", + "date_unixtime": "1721289605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005489 BTC for 82.70 CZK @ 1,506,576 CZK\nFees are 0.29044887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.144671473490079311587799414 CZK)\nThe limits being 0.10 % (33.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53976521 BTC (354,424.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.44 % (458,772.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,279.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02209273 BTC (33,284.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.89 CZK over 3735 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005489 BTC for 82.70 CZK @ 1,506,576 CZK\nFees are 0.29044887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.144671473490079311587799414 CZK)\nThe limits being 0.10 % (33.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53976521 BTC (354,424.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.44 % (458,772.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,279.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02209273 BTC (33,284.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.89 CZK over 3735 transactions" + } + ] + }, + { + "id": 5431, + "type": "message", + "date": "2024-07-18T14:00:05", + "date_unixtime": "1721304005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005517 BTC for 82.71 CZK @ 1,499,169 CZK\nFees are 0.29049514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.981708495523958694867040940 CZK)\nThe limits being 0.10 % (33.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53982038 BTC (354,507.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,499,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.28 % (454,774.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,196.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02214790 BTC (33,203.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.89 CZK over 3736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005517 BTC for 82.71 CZK @ 1,499,169 CZK\nFees are 0.29049514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.981708495523958694867040940 CZK)\nThe limits being 0.10 % (33.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53982038 BTC (354,507.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,499,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.28 % (454,774.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,196.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02214790 BTC (33,203.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.89 CZK over 3736 transactions" + } + ] + }, + { + "id": 5432, + "type": "message", + "date": "2024-07-18T18:00:05", + "date_unixtime": "1721318405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005585 BTC for 82.70 CZK @ 1,480,715 CZK\nFees are 0.29045576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.575723584107369952703585793 CZK)\nThe limits being 0.10 % (32.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53987623 BTC (354,590.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.44 % (444,812.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,113.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02220375 BTC (32,877.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.89 CZK over 3737 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005585 BTC for 82.70 CZK @ 1,480,715 CZK\nFees are 0.29045576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.575723584107369952703585793 CZK)\nThe limits being 0.10 % (32.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53987623 BTC (354,590.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.44 % (444,812.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,113.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02220375 BTC (32,877.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.89 CZK over 3737 transactions" + } + ] + }, + { + "id": 5433, + "type": "message", + "date": "2024-07-18T22:00:06", + "date_unixtime": "1721332806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005576 BTC for 82.71 CZK @ 1,483,288 CZK\nFees are 0.29049168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.632338278006889802477555245 CZK)\nThe limits being 0.10 % (33.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53993199 BTC (354,673.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,483,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.81 % (446,201.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,030.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02225951 BTC (33,017.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.88 CZK over 3738 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005576 BTC for 82.71 CZK @ 1,483,288 CZK\nFees are 0.29049168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.632338278006889802477555245 CZK)\nThe limits being 0.10 % (33.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53993199 BTC (354,673.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,483,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.81 % (446,201.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,030.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02225951 BTC (33,017.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.88 CZK over 3738 transactions" + } + ] + }, + { + "id": 5434, + "type": "message", + "date": "2024-07-19T02:00:06", + "date_unixtime": "1721347206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005539 BTC for 82.70 CZK @ 1,492,992 CZK\nFees are 0.29045197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.845828823166579006335741498 CZK)\nThe limits being 0.10 % (33.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.53998738 BTC (354,756.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 656,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,492,992 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.25 % (451,440.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,947.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02231490 BTC (33,315.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.88 CZK over 3739 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005539 BTC for 82.70 CZK @ 1,492,992 CZK\nFees are 0.29045197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.845828823166579006335741498 CZK)\nThe limits being 0.10 % (33.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.53998738 BTC (354,756.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 656,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,492,992 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.25 % (451,440.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,947.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02231490 BTC (33,315.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.88 CZK over 3739 transactions" + } + ] + }, + { + "id": 5435, + "type": "message", + "date": "2024-07-19T06:00:05", + "date_unixtime": "1721361605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005513 BTC for 82.70 CZK @ 1,500,031 CZK\nFees are 0.29045146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.000675628769287540768565239 CZK)\nThe limits being 0.10 % (33.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54004251 BTC (354,839.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,500,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.30 % (455,241.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,864.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02237003 BTC (33,555.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.88 CZK over 3740 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005513 BTC for 82.70 CZK @ 1,500,031 CZK\nFees are 0.29045146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.000675628769287540768565239 CZK)\nThe limits being 0.10 % (33.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54004251 BTC (354,839.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,500,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.30 % (455,241.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,864.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02237003 BTC (33,555.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.88 CZK over 3740 transactions" + } + ] + }, + { + "id": 5436, + "type": "message", + "date": "2024-07-19T10:00:09", + "date_unixtime": "1721376009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005559 BTC for 82.71 CZK @ 1,487,792 CZK\nFees are 0.29048546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.731430530649472663271641536 CZK)\nThe limits being 0.10 % (33.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54009810 BTC (354,922.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.40 % (448,631.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,781.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02242562 BTC (33,364.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.87 CZK over 3741 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005559 BTC for 82.71 CZK @ 1,487,792 CZK\nFees are 0.29048546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.731430530649472663271641536 CZK)\nThe limits being 0.10 % (33.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54009810 BTC (354,922.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.40 % (448,631.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,781.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02242562 BTC (33,364.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.87 CZK over 3741 transactions" + } + ] + }, + { + "id": 5437, + "type": "message", + "date": "2024-07-19T14:00:05", + "date_unixtime": "1721390405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005538 BTC for 82.70 CZK @ 1,493,353 CZK\nFees are 0.29046973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.853768552572316862091383662 CZK)\nThe limits being 0.10 % (33.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54015348 BTC (355,005.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,230 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,493,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.22 % (451,634.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,698.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02248100 BTC (33,572.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.87 CZK over 3742 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005538 BTC for 82.70 CZK @ 1,493,353 CZK\nFees are 0.29046973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (32.853768552572316862091383662 CZK)\nThe limits being 0.10 % (33.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54015348 BTC (355,005.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,230 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,493,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.22 % (451,634.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,698.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02248100 BTC (33,572.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.87 CZK over 3742 transactions" + } + ] + }, + { + "id": 5438, + "type": "message", + "date": "2024-07-19T18:00:10", + "date_unixtime": "1721404810", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005392 BTC for 82.70 CZK @ 1,533,811 CZK\nFees are 0.29047386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.743834444799285586500660152 CZK)\nThe limits being 0.10 % (34.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54020740 BTC (355,088.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,533,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.34 % (473,487.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,615.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02253492 BTC (34,564.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.87 CZK over 3743 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005392 BTC for 82.70 CZK @ 1,533,811 CZK\nFees are 0.29047386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (33.743834444799285586500660152 CZK)\nThe limits being 0.10 % (34.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54020740 BTC (355,088.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,533,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.34 % (473,487.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,615.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02253492 BTC (34,564.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.87 CZK over 3743 transactions" + } + ] + }, + { + "id": 5439, + "type": "message", + "date": "2024-07-19T22:00:06", + "date_unixtime": "1721419206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005285 BTC for 82.70 CZK @ 1,564,813 CZK\nFees are 0.29046431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.425879389968600909117049646 CZK)\nThe limits being 0.10 % (35.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54026025 BTC (355,171.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.03 % (490,234.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,532.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02258777 BTC (35,345.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.86 CZK over 3744 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005285 BTC for 82.70 CZK @ 1,564,813 CZK\nFees are 0.29046431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.425879389968600909117049646 CZK)\nThe limits being 0.10 % (35.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54026025 BTC (355,171.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.03 % (490,234.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,532.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02258777 BTC (35,345.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.86 CZK over 3744 transactions" + } + ] + }, + { + "id": 5440, + "type": "message", + "date": "2024-07-20T02:00:06", + "date_unixtime": "1721433606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005328 BTC for 82.70 CZK @ 1,552,249 CZK\nFees are 0.29047660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.149488532254227321491895483 CZK)\nThe limits being 0.10 % (35.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54031353 BTC (355,254.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.08 % (483,447.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,449.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02264105 BTC (35,144.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.86 CZK over 3745 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005328 BTC for 82.70 CZK @ 1,552,249 CZK\nFees are 0.29047660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.149488532254227321491895483 CZK)\nThe limits being 0.10 % (35.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54031353 BTC (355,254.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.08 % (483,447.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,449.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02264105 BTC (35,144.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.86 CZK over 3745 transactions" + } + ] + }, + { + "id": 5441, + "type": "message", + "date": "2024-07-20T06:00:06", + "date_unixtime": "1721448006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005330 BTC for 82.70 CZK @ 1,551,566 CZK\nFees are 0.29045765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.134447151667101355387475917 CZK)\nThe limits being 0.10 % (35.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54036683 BTC (355,337.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.95 % (483,077.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,366.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02269435 BTC (35,211.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.86 CZK over 3746 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005330 BTC for 82.70 CZK @ 1,551,566 CZK\nFees are 0.29045765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.134447151667101355387475917 CZK)\nThe limits being 0.10 % (35.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54036683 BTC (355,337.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.95 % (483,077.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,366.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02269435 BTC (35,211.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.86 CZK over 3746 transactions" + } + ] + }, + { + "id": 5442, + "type": "message", + "date": "2024-07-20T10:00:06", + "date_unixtime": "1721462406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,103 CZK\nFees are 0.29045606 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.102269187739817854005824973 CZK)\nThe limits being 0.10 % (35.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54042018 BTC (355,420.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,550,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.69 % (482,286.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,283.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02274770 BTC (35,261.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.85 CZK over 3747 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005335 BTC for 82.70 CZK @ 1,550,103 CZK\nFees are 0.29045606 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.102269187739817854005824973 CZK)\nThe limits being 0.10 % (35.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54042018 BTC (355,420.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,550,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.69 % (482,286.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,283.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02274770 BTC (35,261.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.85 CZK over 3747 transactions" + } + ] + }, + { + "id": 5443, + "type": "message", + "date": "2024-07-20T14:00:07", + "date_unixtime": "1721476807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005346 BTC for 82.71 CZK @ 1,547,067 CZK\nFees are 0.29048478 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.035465172308443082954515165 CZK)\nThe limits being 0.10 % (35.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54047364 BTC (355,503.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,547,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.20 % (480,645.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,200.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02280116 BTC (35,274.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.85 CZK over 3748 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005346 BTC for 82.71 CZK @ 1,547,067 CZK\nFees are 0.29048478 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.035465172308443082954515165 CZK)\nThe limits being 0.10 % (35.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54047364 BTC (355,503.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,547,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.20 % (480,645.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,200.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02280116 BTC (35,274.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.85 CZK over 3748 transactions" + } + ] + }, + { + "id": 5444, + "type": "message", + "date": "2024-07-20T18:00:06", + "date_unixtime": "1721491206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,433 CZK\nFees are 0.29045641 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.153524563408584315698509318 CZK)\nThe limits being 0.10 % (35.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54052691 BTC (355,586.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,851 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.99 % (483,545.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,117.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02285443 BTC (35,479.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.85 CZK over 3749 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005327 BTC for 82.70 CZK @ 1,552,433 CZK\nFees are 0.29045641 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.153524563408584315698509318 CZK)\nThe limits being 0.10 % (35.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54052691 BTC (355,586.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,851 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.99 % (483,545.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,117.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02285443 BTC (35,479.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.85 CZK over 3749 transactions" + } + ] + }, + { + "id": 5445, + "type": "message", + "date": "2024-07-20T22:00:06", + "date_unixtime": "1721505606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005292 BTC for 82.70 CZK @ 1,562,830 CZK\nFees are 0.29048047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.382254977947553931609736291 CZK)\nThe limits being 0.10 % (35.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54057983 BTC (355,669.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 657,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.53 % (489,165.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,034.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02290735 BTC (35,800.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.85 CZK over 3750 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005292 BTC for 82.70 CZK @ 1,562,830 CZK\nFees are 0.29048047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.382254977947553931609736291 CZK)\nThe limits being 0.10 % (35.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54057983 BTC (355,669.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 657,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.53 % (489,165.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,034.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02290735 BTC (35,800.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.85 CZK over 3750 transactions" + } + ] + }, + { + "id": 5446, + "type": "message", + "date": "2024-07-21T02:00:06", + "date_unixtime": "1721520006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005296 BTC for 82.70 CZK @ 1,561,473 CZK\nFees are 0.29044773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.352414823420144298580346429 CZK)\nThe limits being 0.10 % (35.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54063279 BTC (355,752.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.30 % (488,431.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 951.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02296031 BTC (35,851.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.84 CZK over 3751 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005296 BTC for 82.70 CZK @ 1,561,473 CZK\nFees are 0.29044773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.352414823420144298580346429 CZK)\nThe limits being 0.10 % (35.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54063279 BTC (355,752.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.30 % (488,431.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 951.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02296031 BTC (35,851.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.84 CZK over 3751 transactions" + } + ] + }, + { + "id": 5447, + "type": "message", + "date": "2024-07-21T06:00:06", + "date_unixtime": "1721534406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005293 BTC for 82.70 CZK @ 1,562,364 CZK\nFees are 0.29044870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.371999491294920828300645454 CZK)\nThe limits being 0.10 % (35.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54068572 BTC (355,835.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.40 % (488,912.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 868.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02301324 BTC (35,955.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.84 CZK over 3752 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005293 BTC for 82.70 CZK @ 1,562,364 CZK\nFees are 0.29044870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.371999491294920828300645454 CZK)\nThe limits being 0.10 % (35.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54068572 BTC (355,835.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.40 % (488,912.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 868.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02301324 BTC (35,955.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.84 CZK over 3752 transactions" + } + ] + }, + { + "id": 5448, + "type": "message", + "date": "2024-07-21T10:00:06", + "date_unixtime": "1721548806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005329 BTC for 82.70 CZK @ 1,551,917 CZK\nFees are 0.29046883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.142166336007497870794310362 CZK)\nThe limits being 0.10 % (35.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54073901 BTC (355,918.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,551,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.78 % (483,263.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 785.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02306653 BTC (35,797.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.84 CZK over 3753 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005329 BTC for 82.70 CZK @ 1,551,917 CZK\nFees are 0.29046883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.142166336007497870794310362 CZK)\nThe limits being 0.10 % (35.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54073901 BTC (355,918.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,551,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.78 % (483,263.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 785.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02306653 BTC (35,797.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.84 CZK over 3753 transactions" + } + ] + }, + { + "id": 5449, + "type": "message", + "date": "2024-07-21T14:00:06", + "date_unixtime": "1721563206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005315 BTC for 82.71 CZK @ 1,556,114 CZK\nFees are 0.29048929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.234509816207713266971057552 CZK)\nThe limits being 0.10 % (35.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54079216 BTC (356,001.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.39 % (485,533.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 702.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02311968 BTC (35,976.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.83 CZK over 3754 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005315 BTC for 82.71 CZK @ 1,556,114 CZK\nFees are 0.29048929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (34.234509816207713266971057552 CZK)\nThe limits being 0.10 % (35.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54079216 BTC (356,001.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.39 % (485,533.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 702.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02311968 BTC (35,976.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.83 CZK over 3754 transactions" + } + ] + }, + { + "id": 5450, + "type": "message", + "date": "2024-07-21T18:00:05", + "date_unixtime": "1721577605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005293 BTC for 82.70 CZK @ 1,562,493 CZK\nFees are 0.29047274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.374844562451973543193946822 CZK)\nThe limits being 0.10 % (36.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54084509 BTC (356,084.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.32 % (488,982.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 619.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02317261 BTC (36,207.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.83 CZK over 3755 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005293 BTC for 82.70 CZK @ 1,562,493 CZK\nFees are 0.29047274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.374844562451973543193946822 CZK)\nThe limits being 0.10 % (36.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54084509 BTC (356,084.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.32 % (488,982.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 619.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02317261 BTC (36,207.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.83 CZK over 3755 transactions" + } + ] + }, + { + "id": 5451, + "type": "message", + "date": "2024-07-21T22:00:05", + "date_unixtime": "1721592005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005277 BTC for 82.71 CZK @ 1,567,326 CZK\nFees are 0.29049044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.481170792882481902690592402 CZK)\nThe limits being 0.10 % (36.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54089786 BTC (356,167.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.02 % (491,596.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 536.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02322538 BTC (36,401.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.83 CZK over 3756 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005277 BTC for 82.71 CZK @ 1,567,326 CZK\nFees are 0.29049044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.481170792882481902690592402 CZK)\nThe limits being 0.10 % (36.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54089786 BTC (356,167.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.02 % (491,596.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 536.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02322538 BTC (36,401.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.83 CZK over 3756 transactions" + } + ] + }, + { + "id": 5452, + "type": "message", + "date": "2024-07-22T02:00:05", + "date_unixtime": "1721606405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005246 BTC for 82.70 CZK @ 1,576,509 CZK\nFees are 0.29047589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.683192835749675981567373515 CZK)\nThe limits being 0.10 % (36.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54095032 BTC (356,250.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.39 % (496,562.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 453.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02327784 BTC (36,697.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.82 CZK over 3757 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005246 BTC for 82.70 CZK @ 1,576,509 CZK\nFees are 0.29047589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.683192835749675981567373515 CZK)\nThe limits being 0.10 % (36.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54095032 BTC (356,250.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.39 % (496,562.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 453.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02327784 BTC (36,697.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.82 CZK over 3757 transactions" + } + ] + }, + { + "id": 5453, + "type": "message", + "date": "2024-07-22T06:00:07", + "date_unixtime": "1721620807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005258 BTC for 82.70 CZK @ 1,572,909 CZK\nFees are 0.29047553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (51.905991031390134529147982066 CZK)\nThe limits being 0.10 % (36.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54100290 BTC (356,333.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.81 % (494,615.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 370.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02333042 BTC (36,696.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.82 CZK over 3758 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005258 BTC for 82.70 CZK @ 1,572,909 CZK\nFees are 0.29047553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (51.905991031390134529147982066 CZK)\nThe limits being 0.10 % (36.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54100290 BTC (356,333.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.81 % (494,615.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 370.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02333042 BTC (36,696.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.82 CZK over 3758 transactions" + } + ] + }, + { + "id": 5454, + "type": "message", + "date": "2024-07-22T10:00:06", + "date_unixtime": "1721635206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005286 BTC for 82.70 CZK @ 1,564,565 CZK\nFees are 0.29047330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (51.630647774220421487336886164 CZK)\nThe limits being 0.10 % (36.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54105576 BTC (356,416.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.51 % (490,100.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 287.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02338328 BTC (36,584.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.82 CZK over 3759 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005286 BTC for 82.70 CZK @ 1,564,565 CZK\nFees are 0.29047330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (51.630647774220421487336886164 CZK)\nThe limits being 0.10 % (36.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54105576 BTC (356,416.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.51 % (490,100.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 287.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02338328 BTC (36,584.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.82 CZK over 3759 transactions" + } + ] + }, + { + "id": 5455, + "type": "message", + "date": "2024-07-22T14:00:06", + "date_unixtime": "1721649606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005273 BTC for 82.70 CZK @ 1,568,337 CZK\nFees are 0.29045758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.503424092671666614223629017 CZK)\nThe limits being 0.10 % (36.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54110849 BTC (356,499.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.05 % (492,141.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 204.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02343601 BTC (36,755.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.81 CZK over 3760 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005273 BTC for 82.70 CZK @ 1,568,337 CZK\nFees are 0.29045758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.503424092671666614223629017 CZK)\nThe limits being 0.10 % (36.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54110849 BTC (356,499.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.05 % (492,141.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 204.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02343601 BTC (36,755.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.81 CZK over 3760 transactions" + } + ] + }, + { + "id": 5456, + "type": "message", + "date": "2024-07-22T18:00:06", + "date_unixtime": "1721664006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005285 BTC for 82.71 CZK @ 1,564,975 CZK\nFees are 0.29049445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.429452268809403605828040833 CZK)\nThe limits being 0.10 % (36.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54116134 BTC (356,582.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 658,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,564,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.51 % (490,321.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 121.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02348886 BTC (36,759.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.81 CZK over 3761 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005285 BTC for 82.71 CZK @ 1,564,975 CZK\nFees are 0.29049445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.429452268809403605828040833 CZK)\nThe limits being 0.10 % (36.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54116134 BTC (356,582.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 658,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,564,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.51 % (490,321.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 121.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02348886 BTC (36,759.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.81 CZK over 3761 transactions" + } + ] + }, + { + "id": 5457, + "type": "message", + "date": "2024-07-22T22:00:06", + "date_unixtime": "1721678406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005221 BTC for 82.70 CZK @ 1,583,936 CZK\nFees are 0.29045363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.846596910812157448928749379 CZK)\nThe limits being 0.10 % (37.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54121355 BTC (356,665.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.35 % (500,582.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 38.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02354107 BTC (37,287.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.81 CZK over 3762 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005221 BTC for 82.70 CZK @ 1,583,936 CZK\nFees are 0.29045363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.846596910812157448928749379 CZK)\nThe limits being 0.10 % (37.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54121355 BTC (356,665.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.35 % (500,582.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 38.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02354107 BTC (37,287.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.81 CZK over 3762 transactions" + } + ] + }, + { + "id": 5458, + "type": "message", + "date": "2024-07-23T02:00:02", + "date_unixtime": "1721692802", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (38.53080093 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (38.53080093 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5459, + "type": "message", + "date": "2024-07-23T06:00:03", + "date_unixtime": "1721707203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (38.53080093 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (38.53080093 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5460, + "type": "message", + "date": "2024-07-23T10:00:02", + "date_unixtime": "1721721602", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (38.53080093 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (38.53080093 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 5461, + "type": "message", + "date": "2024-07-23T14:00:06", + "date_unixtime": "1721736006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005293 BTC for 82.71 CZK @ 1,562,598 CZK\nFees are 0.29049231 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.377160319008164415288978654 CZK)\nThe limits being 0.10 % (36.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54126648 BTC (356,748.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.08 % (489,033.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,955.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02359400 BTC (36,867.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.80 CZK over 3763 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005293 BTC for 82.71 CZK @ 1,562,598 CZK\nFees are 0.29049231 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.377160319008164415288978654 CZK)\nThe limits being 0.10 % (36.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54126648 BTC (356,748.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.08 % (489,033.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,955.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02359400 BTC (36,867.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.80 CZK over 3763 transactions" + } + ] + }, + { + "id": 5462, + "type": "message", + "date": "2024-07-23T18:00:06", + "date_unixtime": "1721750406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005294 BTC for 82.70 CZK @ 1,562,062 CZK\nFees are 0.29044746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.365360994358807264863871801 CZK)\nThe limits being 0.10 % (36.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54131942 BTC (356,831.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.97 % (488,743.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,872.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02364694 BTC (36,937.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.80 CZK over 3764 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005294 BTC for 82.70 CZK @ 1,562,062 CZK\nFees are 0.29044746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.365360994358807264863871801 CZK)\nThe limits being 0.10 % (36.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54131942 BTC (356,831.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.97 % (488,743.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,872.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02364694 BTC (36,937.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.80 CZK over 3764 transactions" + } + ] + }, + { + "id": 5463, + "type": "message", + "date": "2024-07-23T22:00:05", + "date_unixtime": "1721764805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005382 BTC for 82.71 CZK @ 1,536,781 CZK\nFees are 0.29049664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.809182844436890059818505910 CZK)\nThe limits being 0.10 % (36.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54137324 BTC (356,914.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,536,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.10 % (475,058.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,789.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02370076 BTC (36,422.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.80 CZK over 3765 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005382 BTC for 82.71 CZK @ 1,536,781 CZK\nFees are 0.29049664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.809182844436890059818505910 CZK)\nThe limits being 0.10 % (36.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54137324 BTC (356,914.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,536,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.10 % (475,058.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,789.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02370076 BTC (36,422.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.80 CZK over 3765 transactions" + } + ] + }, + { + "id": 5464, + "type": "message", + "date": "2024-07-24T02:00:06", + "date_unixtime": "1721779206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005357 BTC for 82.71 CZK @ 1,543,950 CZK\nFees are 0.29049607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.966896777091268854696447446 CZK)\nThe limits being 0.10 % (36.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54142681 BTC (356,997.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,543,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.16 % (478,938.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,706.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02375433 BTC (36,675.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.79 CZK over 3766 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005357 BTC for 82.71 CZK @ 1,543,950 CZK\nFees are 0.29049607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.966896777091268854696447446 CZK)\nThe limits being 0.10 % (36.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54142681 BTC (356,997.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,543,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.16 % (478,938.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,706.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02375433 BTC (36,675.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.79 CZK over 3766 transactions" + } + ] + }, + { + "id": 5465, + "type": "message", + "date": "2024-07-24T06:00:06", + "date_unixtime": "1721793606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005341 BTC for 82.71 CZK @ 1,548,571 CZK\nFees are 0.29049537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.068569441890660352126478876 CZK)\nThe limits being 0.10 % (36.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54148022 BTC (357,080.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,548,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.83 % (481,440.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,623.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02380774 BTC (36,867.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.79 CZK over 3767 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005341 BTC for 82.71 CZK @ 1,548,571 CZK\nFees are 0.29049537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.068569441890660352126478876 CZK)\nThe limits being 0.10 % (36.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54148022 BTC (357,080.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,548,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.83 % (481,440.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,623.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02380774 BTC (36,867.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.79 CZK over 3767 transactions" + } + ] + }, + { + "id": 5466, + "type": "message", + "date": "2024-07-24T10:00:06", + "date_unixtime": "1721808006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005315 BTC for 82.70 CZK @ 1,555,926 CZK\nFees are 0.29045411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.230363513591423432848623421 CZK)\nThe limits being 0.10 % (37.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54153337 BTC (357,163.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,555,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.91 % (485,422.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,540.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02386089 BTC (37,125.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.79 CZK over 3768 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005315 BTC for 82.70 CZK @ 1,555,926 CZK\nFees are 0.29045411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.230363513591423432848623421 CZK)\nThe limits being 0.10 % (37.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54153337 BTC (357,163.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,555,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.91 % (485,422.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,540.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02386089 BTC (37,125.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.79 CZK over 3768 transactions" + } + ] + }, + { + "id": 5467, + "type": "message", + "date": "2024-07-24T14:00:07", + "date_unixtime": "1721822407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005300 BTC for 82.70 CZK @ 1,560,457 CZK\nFees are 0.29047788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.330051247802502561788457379 CZK)\nThe limits being 0.10 % (37.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54158637 BTC (357,246.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,560,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.57 % (487,876.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,457.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02391389 BTC (37,316.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.79 CZK over 3769 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005300 BTC for 82.70 CZK @ 1,560,457 CZK\nFees are 0.29047788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.330051247802502561788457379 CZK)\nThe limits being 0.10 % (37.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54158637 BTC (357,246.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,560,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.57 % (487,876.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,457.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02391389 BTC (37,316.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.79 CZK over 3769 transactions" + } + ] + }, + { + "id": 5468, + "type": "message", + "date": "2024-07-24T18:00:05", + "date_unixtime": "1721836805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,901 CZK\nFees are 0.29045812 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.185812801755299518202638005 CZK)\nThe limits being 0.10 % (37.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54163959 BTC (357,329.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.54 % (484,325.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,374.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02396711 BTC (37,242.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.78 CZK over 3770 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,901 CZK\nFees are 0.29045812 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.185812801755299518202638005 CZK)\nThe limits being 0.10 % (37.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54163959 BTC (357,329.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.54 % (484,325.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,374.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02396711 BTC (37,242.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.78 CZK over 3770 transactions" + } + ] + }, + { + "id": 5469, + "type": "message", + "date": "2024-07-24T22:00:05", + "date_unixtime": "1721851205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005357 BTC for 82.71 CZK @ 1,543,941 CZK\nFees are 0.29049437 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.966698280862975479047154264 CZK)\nThe limits being 0.10 % (37.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54169316 BTC (357,412.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,543,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.00 % (478,930.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,291.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02402068 BTC (37,086.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.78 CZK over 3771 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005357 BTC for 82.71 CZK @ 1,543,941 CZK\nFees are 0.29049437 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.966698280862975479047154264 CZK)\nThe limits being 0.10 % (37.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54169316 BTC (357,412.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,543,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.00 % (478,930.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,291.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02402068 BTC (37,086.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.78 CZK over 3771 transactions" + } + ] + }, + { + "id": 5470, + "type": "message", + "date": "2024-07-25T02:00:06", + "date_unixtime": "1721865606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005377 BTC for 82.70 CZK @ 1,538,072 CZK\nFees are 0.29047061 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.837589434931987624864026676 CZK)\nThe limits being 0.10 % (37.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54174693 BTC (357,495.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,538,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.08 % (475,750.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,208.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02407445 BTC (37,028.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.78 CZK over 3772 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005377 BTC for 82.70 CZK @ 1,538,072 CZK\nFees are 0.29047061 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.837589434931987624864026676 CZK)\nThe limits being 0.10 % (37.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54174693 BTC (357,495.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,538,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.08 % (475,750.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,208.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02407445 BTC (37,028.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.78 CZK over 3772 transactions" + } + ] + }, + { + "id": 5471, + "type": "message", + "date": "2024-07-25T06:00:08", + "date_unixtime": "1721880008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005470 BTC for 82.70 CZK @ 1,511,811 CZK\nFees are 0.29044924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.259841680990391035398044684 CZK)\nThe limits being 0.10 % (36.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54180163 BTC (357,578.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 659,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.07 % (461,523.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,125.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02412915 BTC (36,478.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.77 CZK over 3773 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005470 BTC for 82.70 CZK @ 1,511,811 CZK\nFees are 0.29044924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.259841680990391035398044684 CZK)\nThe limits being 0.10 % (36.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54180163 BTC (357,578.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 659,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.07 % (461,523.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,125.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02412915 BTC (36,478.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.77 CZK over 3773 transactions" + } + ] + }, + { + "id": 5472, + "type": "message", + "date": "2024-07-25T10:00:06", + "date_unixtime": "1721894406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005481 BTC for 82.70 CZK @ 1,508,802 CZK\nFees are 0.29045398 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.193633147694072388675759637 CZK)\nThe limits being 0.10 % (36.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54185644 BTC (357,660.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,508,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.58 % (459,892.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,042.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02418396 BTC (36,488.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.77 CZK over 3774 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005481 BTC for 82.70 CZK @ 1,508,802 CZK\nFees are 0.29045398 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.193633147694072388675759637 CZK)\nThe limits being 0.10 % (36.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54185644 BTC (357,660.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,508,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.58 % (459,892.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,042.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02418396 BTC (36,488.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.77 CZK over 3774 transactions" + } + ] + }, + { + "id": 5473, + "type": "message", + "date": "2024-07-25T14:00:07", + "date_unixtime": "1721908807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005471 BTC for 82.70 CZK @ 1,511,601 CZK\nFees are 0.29046208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.255232227324998586103818505 CZK)\nThe limits being 0.10 % (36.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54191115 BTC (357,743.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,511,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.98 % (461,409.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,959.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02423867 BTC (36,639.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.77 CZK over 3775 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005471 BTC for 82.70 CZK @ 1,511,601 CZK\nFees are 0.29046208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.255232227324998586103818505 CZK)\nThe limits being 0.10 % (36.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54191115 BTC (357,743.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,511,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.98 % (461,409.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,959.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02423867 BTC (36,639.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.77 CZK over 3775 transactions" + } + ] + }, + { + "id": 5474, + "type": "message", + "date": "2024-07-25T18:00:07", + "date_unixtime": "1721923207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005436 BTC for 82.70 CZK @ 1,521,325 CZK\nFees are 0.29046029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.469141811239763110203324423 CZK)\nThe limits being 0.10 % (36.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54196551 BTC (357,826.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,521,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.42 % (466,678.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,876.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02429303 BTC (36,957.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.76 CZK over 3776 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005436 BTC for 82.70 CZK @ 1,521,325 CZK\nFees are 0.29046029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.469141811239763110203324423 CZK)\nThe limits being 0.10 % (36.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54196551 BTC (357,826.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,521,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.42 % (466,678.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,876.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02429303 BTC (36,957.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.76 CZK over 3776 transactions" + } + ] + }, + { + "id": 5475, + "type": "message", + "date": "2024-07-25T22:00:06", + "date_unixtime": "1721937606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005434 BTC for 82.70 CZK @ 1,521,918 CZK\nFees are 0.29046669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.482198257515699101726951620 CZK)\nThe limits being 0.10 % (37.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54201985 BTC (357,909.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,521,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.48 % (466,999.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,793.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02434737 BTC (37,054.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.76 CZK over 3777 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005434 BTC for 82.70 CZK @ 1,521,918 CZK\nFees are 0.29046669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.482198257515699101726951620 CZK)\nThe limits being 0.10 % (37.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54201985 BTC (357,909.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,521,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.48 % (466,999.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,793.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02434737 BTC (37,054.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.76 CZK over 3777 transactions" + } + ] + }, + { + "id": 5476, + "type": "message", + "date": "2024-07-26T02:00:06", + "date_unixtime": "1721952006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005364 BTC for 82.71 CZK @ 1,541,940 CZK\nFees are 0.29049698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.922676883331902844146902692 CZK)\nThe limits being 0.10 % (37.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54207349 BTC (357,992.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,541,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.48 % (477,851.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,710.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02440101 BTC (37,624.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.76 CZK over 3778 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005364 BTC for 82.71 CZK @ 1,541,940 CZK\nFees are 0.29049698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (33.922676883331902844146902692 CZK)\nThe limits being 0.10 % (37.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54207349 BTC (357,992.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,541,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.48 % (477,851.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,710.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02440101 BTC (37,624.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.76 CZK over 3778 transactions" + } + ] + }, + { + "id": 5477, + "type": "message", + "date": "2024-07-26T06:00:06", + "date_unixtime": "1721966406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005257 BTC for 82.71 CZK @ 1,573,322 CZK\nFees are 0.29049654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.613080600625601909390938067 CZK)\nThe limits being 0.10 % (38.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54212606 BTC (358,075.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,573,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.20 % (494,862.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,627.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02445358 BTC (38,473.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.75 CZK over 3779 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005257 BTC for 82.71 CZK @ 1,573,322 CZK\nFees are 0.29049654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.613080600625601909390938067 CZK)\nThe limits being 0.10 % (38.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54212606 BTC (358,075.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,573,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.20 % (494,862.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,627.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02445358 BTC (38,473.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.75 CZK over 3779 transactions" + } + ] + }, + { + "id": 5478, + "type": "message", + "date": "2024-07-26T10:00:07", + "date_unixtime": "1721980807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005266 BTC for 82.71 CZK @ 1,570,586 CZK\nFees are 0.29048788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.552893030110526563787094580 CZK)\nThe limits being 0.10 % (38.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54217872 BTC (358,158.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,570,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.75 % (493,379.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,544.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02450624 BTC (38,489.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.75 CZK over 3780 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005266 BTC for 82.71 CZK @ 1,570,586 CZK\nFees are 0.29048788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.552893030110526563787094580 CZK)\nThe limits being 0.10 % (38.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54217872 BTC (358,158.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,570,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.75 % (493,379.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,544.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02450624 BTC (38,489.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.75 CZK over 3780 transactions" + } + ] + }, + { + "id": 5479, + "type": "message", + "date": "2024-07-26T14:00:07", + "date_unixtime": "1721995207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005240 BTC for 82.71 CZK @ 1,578,350 CZK\nFees are 0.29048260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.723707518342290532753682721 CZK)\nThe limits being 0.10 % (38.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54223112 BTC (358,241.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.90 % (497,588.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,461.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02455864 BTC (38,762.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.75 CZK over 3781 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005240 BTC for 82.71 CZK @ 1,578,350 CZK\nFees are 0.29048260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.723707518342290532753682721 CZK)\nThe limits being 0.10 % (38.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54223112 BTC (358,241.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.90 % (497,588.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,461.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02455864 BTC (38,762.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.75 CZK over 3781 transactions" + } + ] + }, + { + "id": 5480, + "type": "message", + "date": "2024-07-26T18:00:06", + "date_unixtime": "1722009606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005222 BTC for 82.70 CZK @ 1,583,632 CZK\nFees are 0.29045355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.839914302240129672534486247 CZK)\nThe limits being 0.10 % (38.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54228334 BTC (358,324.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.66 % (500,452.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,378.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02461086 BTC (38,974.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.74 CZK over 3782 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005222 BTC for 82.70 CZK @ 1,583,632 CZK\nFees are 0.29045355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.839914302240129672534486247 CZK)\nThe limits being 0.10 % (38.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54228334 BTC (358,324.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.66 % (500,452.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,378.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02461086 BTC (38,974.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.74 CZK over 3782 transactions" + } + ] + }, + { + "id": 5481, + "type": "message", + "date": "2024-07-26T22:00:06", + "date_unixtime": "1722024006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005194 BTC for 82.70 CZK @ 1,592,282 CZK\nFees are 0.29047405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.030203187572798248103144577 CZK)\nThe limits being 0.10 % (39.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54233528 BTC (358,407.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.94 % (505,142.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,295.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02466280 BTC (39,270.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.74 CZK over 3783 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005194 BTC for 82.70 CZK @ 1,592,282 CZK\nFees are 0.29047405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.030203187572798248103144577 CZK)\nThe limits being 0.10 % (39.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54233528 BTC (358,407.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.94 % (505,142.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,295.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02466280 BTC (39,270.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.74 CZK over 3783 transactions" + } + ] + }, + { + "id": 5482, + "type": "message", + "date": "2024-07-27T02:00:07", + "date_unixtime": "1722038407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005196 BTC for 82.71 CZK @ 1,591,779 CZK\nFees are 0.29049406 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.019131671559088992989509774 CZK)\nThe limits being 0.10 % (39.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54238724 BTC (358,490.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 660,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.83 % (504,869.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,212.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02471476 BTC (39,340.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.74 CZK over 3784 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005196 BTC for 82.71 CZK @ 1,591,779 CZK\nFees are 0.29049406 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.019131671559088992989509774 CZK)\nThe limits being 0.10 % (39.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54238724 BTC (358,490.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 660,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.83 % (504,869.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,212.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02471476 BTC (39,340.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.74 CZK over 3784 transactions" + } + ] + }, + { + "id": 5483, + "type": "message", + "date": "2024-07-27T06:00:05", + "date_unixtime": "1722052805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,047 CZK\nFees are 0.29045734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.981043018154015263056901310 CZK)\nThe limits being 0.10 % (39.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54243925 BTC (358,573.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.54 % (503,930.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,129.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02476677 BTC (39,380.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.74 CZK over 3785 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,047 CZK\nFees are 0.29045734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.981043018154015263056901310 CZK)\nThe limits being 0.10 % (39.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54243925 BTC (358,573.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.54 % (503,930.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,129.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02476677 BTC (39,380.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.74 CZK over 3785 transactions" + } + ] + }, + { + "id": 5484, + "type": "message", + "date": "2024-07-27T10:00:06", + "date_unixtime": "1722067206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005184 BTC for 82.70 CZK @ 1,595,241 CZK\nFees are 0.29045363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.095308979143983711331328006 CZK)\nThe limits being 0.10 % (39.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54249109 BTC (358,656.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,595,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.29 % (506,747.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,046.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02481861 BTC (39,591.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.73 CZK over 3786 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005184 BTC for 82.70 CZK @ 1,595,241 CZK\nFees are 0.29045363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.095308979143983711331328006 CZK)\nThe limits being 0.10 % (39.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54249109 BTC (358,656.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,595,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.29 % (506,747.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,046.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02481861 BTC (39,591.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.73 CZK over 3786 transactions" + } + ] + }, + { + "id": 5485, + "type": "message", + "date": "2024-07-27T14:00:06", + "date_unixtime": "1722081606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005184 BTC for 82.53 CZK @ 1,592,069 CZK\nFees are 0.28987600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.025514984975425516863816150 CZK)\nThe limits being 0.10 % (39.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54254293 BTC (358,739.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.78 % (505,025.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,963.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02487045 BTC (39,595.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.73 CZK over 3787 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005184 BTC for 82.53 CZK @ 1,592,069 CZK\nFees are 0.28987600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.025514984975425516863816150 CZK)\nThe limits being 0.10 % (39.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54254293 BTC (358,739.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.78 % (505,025.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,963.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02487045 BTC (39,595.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.73 CZK over 3787 transactions" + } + ] + }, + { + "id": 5486, + "type": "message", + "date": "2024-07-27T18:00:06", + "date_unixtime": "1722096006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005135 BTC for 82.54 CZK @ 1,607,393 CZK\nFees are 0.28989991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.362656883963576362963318747 CZK)\nThe limits being 0.10 % (40.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54259428 BTC (358,822.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,607,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.06 % (513,339.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,881.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02492180 BTC (40,059.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.73 CZK over 3788 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005135 BTC for 82.54 CZK @ 1,607,393 CZK\nFees are 0.28989991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.362656883963576362963318747 CZK)\nThe limits being 0.10 % (40.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54259428 BTC (358,822.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,607,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.06 % (513,339.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,881.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02492180 BTC (40,059.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.73 CZK over 3788 transactions" + } + ] + }, + { + "id": 5487, + "type": "message", + "date": "2024-07-27T22:00:05", + "date_unixtime": "1722110405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005174 BTC for 82.70 CZK @ 1,598,355 CZK\nFees are 0.29045918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.163811213131311380404379029 CZK)\nThe limits being 0.10 % (39.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54264602 BTC (358,905.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,399 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,598,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.66 % (508,435.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,798.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02497354 BTC (39,916.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.72 CZK over 3789 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005174 BTC for 82.70 CZK @ 1,598,355 CZK\nFees are 0.29045918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.163811213131311380404379029 CZK)\nThe limits being 0.10 % (39.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54264602 BTC (358,905.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,399 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,598,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.66 % (508,435.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,798.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02497354 BTC (39,916.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.72 CZK over 3789 transactions" + } + ] + }, + { + "id": 5488, + "type": "message", + "date": "2024-07-28T02:00:07", + "date_unixtime": "1722124807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005199 BTC for 82.71 CZK @ 1,590,845 CZK\nFees are 0.29049136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.998598648527039378332788499 CZK)\nThe limits being 0.10 % (39.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54269801 BTC (358,988.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.49 % (504,360.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,715.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02502553 BTC (39,811.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.72 CZK over 3790 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005199 BTC for 82.71 CZK @ 1,590,845 CZK\nFees are 0.29049136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.998598648527039378332788499 CZK)\nThe limits being 0.10 % (39.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54269801 BTC (358,988.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.49 % (504,360.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,715.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02502553 BTC (39,811.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.72 CZK over 3790 transactions" + } + ] + }, + { + "id": 5489, + "type": "message", + "date": "2024-07-28T06:00:07", + "date_unixtime": "1722139207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005194 BTC for 82.71 CZK @ 1,592,423 CZK\nFees are 0.29049984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.033312915001576116246199528 CZK)\nThe limits being 0.10 % (39.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54274995 BTC (359,071.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.70 % (505,216.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,632.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02507747 BTC (39,933.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.72 CZK over 3791 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005194 BTC for 82.71 CZK @ 1,592,423 CZK\nFees are 0.29049984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.033312915001576116246199528 CZK)\nThe limits being 0.10 % (39.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54274995 BTC (359,071.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.70 % (505,216.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,632.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02507747 BTC (39,933.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.72 CZK over 3791 transactions" + } + ] + }, + { + "id": 5490, + "type": "message", + "date": "2024-07-28T10:00:05", + "date_unixtime": "1722153605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005222 BTC for 82.70 CZK @ 1,583,615 CZK\nFees are 0.29045042 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.839539369006638389535515011 CZK)\nThe limits being 0.10 % (39.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54280217 BTC (359,154.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.34 % (500,435.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,549.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02512969 BTC (39,795.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.71 CZK over 3792 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005222 BTC for 82.70 CZK @ 1,583,615 CZK\nFees are 0.29045042 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.839539369006638389535515011 CZK)\nThe limits being 0.10 % (39.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54280217 BTC (359,154.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.34 % (500,435.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,549.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02512969 BTC (39,795.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.71 CZK over 3792 transactions" + } + ] + }, + { + "id": 5491, + "type": "message", + "date": "2024-07-28T14:00:05", + "date_unixtime": "1722168005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005199 BTC for 82.71 CZK @ 1,590,845 CZK\nFees are 0.29049136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.998598648527039378332788499 CZK)\nThe limits being 0.10 % (40.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54285416 BTC (359,237.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.40 % (504,359.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,466.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02518168 BTC (40,060.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.71 CZK over 3793 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005199 BTC for 82.71 CZK @ 1,590,845 CZK\nFees are 0.29049136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.998598648527039378332788499 CZK)\nThe limits being 0.10 % (40.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54285416 BTC (359,237.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.40 % (504,359.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,466.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02518168 BTC (40,060.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.71 CZK over 3793 transactions" + } + ] + }, + { + "id": 5492, + "type": "message", + "date": "2024-07-28T18:00:05", + "date_unixtime": "1722182405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005218 BTC for 82.70 CZK @ 1,584,935 CZK\nFees are 0.29046972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.868563496524143267822872917 CZK)\nThe limits being 0.10 % (39.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54290634 BTC (359,320.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.47 % (501,150.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,383.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02523386 BTC (39,994.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.71 CZK over 3794 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005218 BTC for 82.70 CZK @ 1,584,935 CZK\nFees are 0.29046972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.868563496524143267822872917 CZK)\nThe limits being 0.10 % (39.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54290634 BTC (359,320.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.47 % (501,150.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,383.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02523386 BTC (39,994.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.71 CZK over 3794 transactions" + } + ] + }, + { + "id": 5493, + "type": "message", + "date": "2024-07-28T22:00:06", + "date_unixtime": "1722196806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005181 BTC for 82.70 CZK @ 1,596,238 CZK\nFees are 0.29046687 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.117231460588576923443108357 CZK)\nThe limits being 0.10 % (40.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54295815 BTC (359,403.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 661,936 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.15 % (507,286.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,300.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02528567 BTC (40,361.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.70 CZK over 3795 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005181 BTC for 82.70 CZK @ 1,596,238 CZK\nFees are 0.29046687 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.117231460588576923443108357 CZK)\nThe limits being 0.10 % (40.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54295815 BTC (359,403.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 661,936 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.15 % (507,286.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,300.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02528567 BTC (40,361.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.70 CZK over 3795 transactions" + } + ] + }, + { + "id": 5494, + "type": "message", + "date": "2024-07-29T02:00:06", + "date_unixtime": "1722211206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005180 BTC for 82.70 CZK @ 1,596,561 CZK\nFees are 0.29046953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.124333108252390763601525934 CZK)\nThe limits being 0.10 % (40.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54300995 BTC (359,486.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,026 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.16 % (507,461.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,217.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02533747 BTC (40,452.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.70 CZK over 3796 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005180 BTC for 82.70 CZK @ 1,596,561 CZK\nFees are 0.29046953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.124333108252390763601525934 CZK)\nThe limits being 0.10 % (40.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54300995 BTC (359,486.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,026 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.16 % (507,461.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,217.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02533747 BTC (40,452.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.70 CZK over 3796 transactions" + } + ] + }, + { + "id": 5495, + "type": "message", + "date": "2024-07-29T06:00:07", + "date_unixtime": "1722225607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005124 BTC for 82.54 CZK @ 1,610,802 CZK\nFees are 0.28989235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.437648231190832087693074238 CZK)\nThe limits being 0.10 % (40.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54306119 BTC (359,569.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,610,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.28 % (515,194.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,134.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02538871 BTC (40,896.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.70 CZK over 3797 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005124 BTC for 82.54 CZK @ 1,610,802 CZK\nFees are 0.28989235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.437648231190832087693074238 CZK)\nThe limits being 0.10 % (40.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54306119 BTC (359,569.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,610,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.28 % (515,194.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,134.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02538871 BTC (40,896.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.70 CZK over 3797 transactions" + } + ] + }, + { + "id": 5496, + "type": "message", + "date": "2024-07-29T10:00:06", + "date_unixtime": "1722240006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005124 BTC for 82.54 CZK @ 1,610,802 CZK\nFees are 0.28989235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.437648231190832087693074238 CZK)\nThe limits being 0.10 % (40.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54311243 BTC (359,652.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,610,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.25 % (515,194.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,051.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02543995 BTC (40,978.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.70 CZK over 3798 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005124 BTC for 82.54 CZK @ 1,610,802 CZK\nFees are 0.28989235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.437648231190832087693074238 CZK)\nThe limits being 0.10 % (40.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54311243 BTC (359,652.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,610,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.25 % (515,194.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,051.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02543995 BTC (40,978.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.70 CZK over 3798 transactions" + } + ] + }, + { + "id": 5497, + "type": "message", + "date": "2024-07-29T14:00:07", + "date_unixtime": "1722254407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005071 BTC for 82.70 CZK @ 1,630,842 CZK\nFees are 0.29046303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.878519329850944687087601205 CZK)\nThe limits being 0.10 % (41.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54316314 BTC (359,735.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,630,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.24 % (526,078.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,968.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02549066 BTC (41,571.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.69 CZK over 3799 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005071 BTC for 82.70 CZK @ 1,630,842 CZK\nFees are 0.29046303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.878519329850944687087601205 CZK)\nThe limits being 0.10 % (41.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54316314 BTC (359,735.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,630,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.24 % (526,078.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,968.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02549066 BTC (41,571.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.69 CZK over 3799 transactions" + } + ] + }, + { + "id": 5498, + "type": "message", + "date": "2024-07-29T18:00:07", + "date_unixtime": "1722268807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005158 BTC for 82.71 CZK @ 1,603,446 CZK\nFees are 0.29048320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.275805532516765187682583620 CZK)\nThe limits being 0.10 % (40.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54321472 BTC (359,818.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,603,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.07 % (511,197.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,885.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02554224 BTC (40,955.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.69 CZK over 3800 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005158 BTC for 82.71 CZK @ 1,603,446 CZK\nFees are 0.29048320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (35.275805532516765187682583620 CZK)\nThe limits being 0.10 % (40.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54321472 BTC (359,818.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,603,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.07 % (511,197.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,885.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02554224 BTC (40,955.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.69 CZK over 3800 transactions" + } + ] + }, + { + "id": 5499, + "type": "message", + "date": "2024-07-29T22:00:08", + "date_unixtime": "1722283208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005225 BTC for 82.70 CZK @ 1,582,805 CZK\nFees are 0.29046863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.821719086355649961975192093 CZK)\nThe limits being 0.10 % (40.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54326697 BTC (359,901.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,582,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.92 % (499,984.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,802.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02559449 BTC (40,511.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.69 CZK over 3801 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005225 BTC for 82.70 CZK @ 1,582,805 CZK\nFees are 0.29046863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.821719086355649961975192093 CZK)\nThe limits being 0.10 % (40.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54326697 BTC (359,901.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,582,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.92 % (499,984.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,802.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02559449 BTC (40,511.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.69 CZK over 3801 transactions" + } + ] + }, + { + "id": 5500, + "type": "message", + "date": "2024-07-30T02:00:07", + "date_unixtime": "1722297607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005257 BTC for 82.70 CZK @ 1,573,170 CZK\nFees are 0.29046859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.609750323932813050461865495 CZK)\nThe limits being 0.10 % (40.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54331954 BTC (359,984.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,573,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.44 % (494,750.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,719.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02564706 BTC (40,347.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.68 CZK over 3802 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005257 BTC for 82.70 CZK @ 1,573,170 CZK\nFees are 0.29046859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (34.609750323932813050461865495 CZK)\nThe limits being 0.10 % (40.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54331954 BTC (359,984.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,573,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.44 % (494,750.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,719.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02564706 BTC (40,347.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.68 CZK over 3802 transactions" + } + ] + }, + { + "id": 5501, + "type": "message", + "date": "2024-07-30T06:00:08", + "date_unixtime": "1722312008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005274 BTC for 82.70 CZK @ 1,567,996 CZK\nFees are 0.29044934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.02569980 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.04 % (17.247951701468069946314180232 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54337228 BTC (360,067.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.62 % (491,938.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,636.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02569980 BTC (40,297.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.68 CZK over 3803 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005274 BTC for 82.70 CZK @ 1,567,996 CZK\nFees are 0.29044934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.02569980 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.04 % (17.247951701468069946314180232 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54337228 BTC (360,067.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.62 % (491,938.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,636.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02569980 BTC (40,297.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.68 CZK over 3803 transactions" + } + ] + }, + { + "id": 5502, + "type": "message", + "date": "2024-07-30T10:00:05", + "date_unixtime": "1722326405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005239 BTC for 82.70 CZK @ 1,578,562 CZK\nFees are 0.29046608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 41.99 % (34.728361082841092633123255474 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54342467 BTC (360,150.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.19 % (497,679.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,553.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00005239 BTC (82.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.68 CZK over 3804 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005239 BTC for 82.70 CZK @ 1,578,562 CZK\nFees are 0.29046608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 41.99 % (34.728361082841092633123255474 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54342467 BTC (360,150.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.19 % (497,679.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,553.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00005239 BTC (82.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.68 CZK over 3804 transactions" + } + ] + }, + { + "id": 5503, + "type": "message", + "date": "2024-07-30T14:00:07", + "date_unixtime": "1722340807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005277 BTC for 82.71 CZK @ 1,567,369 CZK\nFees are 0.29049843 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 10.46 % (17.241059573848928787145313555 CZK)\nThe limits being 0.10 % (0.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54347744 BTC (360,233.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,567,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.47 % (491,596.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,470.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00010516 BTC (164.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.67 CZK over 3805 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005277 BTC for 82.71 CZK @ 1,567,369 CZK\nFees are 0.29049843 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 10.46 % (17.241059573848928787145313555 CZK)\nThe limits being 0.10 % (0.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54347744 BTC (360,233.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,567,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.47 % (491,596.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,470.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00010516 BTC (164.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.67 CZK over 3805 transactions" + } + ] + }, + { + "id": 5504, + "type": "message", + "date": "2024-07-30T18:00:05", + "date_unixtime": "1722355205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005298 BTC for 82.71 CZK @ 1,561,073 CZK\nFees are 0.29048299 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 13.91 % (34.343614952046846983086565838 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54353042 BTC (360,316.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 662,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.49 % (488,174.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,387.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00015814 BTC (246.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.67 CZK over 3806 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005298 BTC for 82.71 CZK @ 1,561,073 CZK\nFees are 0.29048299 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 13.91 % (34.343614952046846983086565838 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54353042 BTC (360,316.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 662,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.49 % (488,174.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,387.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00015814 BTC (246.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.67 CZK over 3806 transactions" + } + ] + }, + { + "id": 5505, + "type": "message", + "date": "2024-07-30T22:00:06", + "date_unixtime": "1722369606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 82.71 CZK @ 1,554,037 CZK\nFees are 0.29048360 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 5.20 % (17.094406128344106412973607780 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54358364 BTC (360,399.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,554,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.39 % (484,349.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,304.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00021136 BTC (328.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.67 CZK over 3807 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 82.71 CZK @ 1,554,037 CZK\nFees are 0.29048360 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 5.20 % (17.094406128344106412973607780 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54358364 BTC (360,399.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,554,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.39 % (484,349.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,304.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00021136 BTC (328.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.67 CZK over 3807 transactions" + } + ] + }, + { + "id": 5506, + "type": "message", + "date": "2024-07-31T02:00:06", + "date_unixtime": "1722384006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005300 BTC for 82.71 CZK @ 1,560,510 CZK\nFees are 0.29048777 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.32 % (34.331220150981000460651869400 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54363664 BTC (360,482.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,560,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.34 % (487,868.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,221.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00026436 BTC (412.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.66 CZK over 3808 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005300 BTC for 82.71 CZK @ 1,560,510 CZK\nFees are 0.29048777 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.32 % (34.331220150981000460651869400 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54363664 BTC (360,482.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,560,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.34 % (487,868.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,221.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00026436 BTC (412.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.66 CZK over 3808 transactions" + } + ] + }, + { + "id": 5507, + "type": "message", + "date": "2024-07-31T06:00:07", + "date_unixtime": "1722398407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,618 CZK\nFees are 0.29047408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.93 % (34.245603386078332461643048500 CZK)\nThe limits being 0.10 % (0.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54368977 BTC (360,565.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.72 % (485,752.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,138.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00031749 BTC (494.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.66 CZK over 3809 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005313 BTC for 82.70 CZK @ 1,556,618 CZK\nFees are 0.29047408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.93 % (34.245603386078332461643048500 CZK)\nThe limits being 0.10 % (0.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54368977 BTC (360,565.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.72 % (485,752.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,138.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00031749 BTC (494.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.66 CZK over 3809 transactions" + } + ] + }, + { + "id": 5508, + "type": "message", + "date": "2024-07-31T10:00:06", + "date_unixtime": "1722412806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005293 BTC for 82.70 CZK @ 1,562,514 CZK\nFees are 0.29047665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.94 % (34.375307713763211717612953192 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54374270 BTC (360,648.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.58 % (488,957.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,055.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00037042 BTC (578.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.66 CZK over 3810 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005293 BTC for 82.70 CZK @ 1,562,514 CZK\nFees are 0.29047665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.94 % (34.375307713763211717612953192 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54374270 BTC (360,648.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.58 % (488,957.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,055.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00037042 BTC (578.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.66 CZK over 3810 transactions" + } + ] + }, + { + "id": 5509, + "type": "message", + "date": "2024-07-31T14:00:07", + "date_unixtime": "1722427207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005304 BTC for 82.70 CZK @ 1,559,161 CZK\nFees are 0.29045563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.60 % (17.150767189459816734942031698 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54379574 BTC (360,731.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.04 % (487,133.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,972.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00042346 BTC (660.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.66 CZK over 3811 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005304 BTC for 82.70 CZK @ 1,559,161 CZK\nFees are 0.29045563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.60 % (17.150767189459816734942031698 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54379574 BTC (360,731.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.04 % (487,133.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,972.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00042346 BTC (660.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.66 CZK over 3811 transactions" + } + ] + }, + { + "id": 5510, + "type": "message", + "date": "2024-07-31T18:00:06", + "date_unixtime": "1722441606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005281 BTC for 82.70 CZK @ 1,566,034 CZK\nFees are 0.29047095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.93 % (51.679113217165408666712520195 CZK)\nThe limits being 0.10 % (0.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54384855 BTC (360,814.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,566,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.05 % (490,871.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,889.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00047627 BTC (745.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.65 CZK over 3812 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005281 BTC for 82.70 CZK @ 1,566,034 CZK\nFees are 0.29047095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 6.93 % (51.679113217165408666712520195 CZK)\nThe limits being 0.10 % (0.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54384855 BTC (360,814.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,566,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.05 % (490,871.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,889.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00047627 BTC (745.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.65 CZK over 3812 transactions" + } + ] + }, + { + "id": 5511, + "type": "message", + "date": "2024-07-31T22:00:06", + "date_unixtime": "1722456006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005376 BTC for 82.70 CZK @ 1,538,244 CZK\nFees are 0.29044896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.15 % (33.841360806003392886800958552 CZK)\nThe limits being 0.10 % (0.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54390231 BTC (360,897.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,538,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.83 % (475,757.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,806.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00053003 BTC (815.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.65 CZK over 3813 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005376 BTC for 82.70 CZK @ 1,538,244 CZK\nFees are 0.29044896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 4.15 % (33.841360806003392886800958552 CZK)\nThe limits being 0.10 % (0.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54390231 BTC (360,897.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,538,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.83 % (475,757.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,806.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00053003 BTC (815.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.65 CZK over 3813 transactions" + } + ] + }, + { + "id": 5512, + "type": "message", + "date": "2024-08-01T02:00:06", + "date_unixtime": "1722470406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005422 BTC for 82.70 CZK @ 1,525,264 CZK\nFees are 0.29046250 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.77 % (33.555817207093505449480856103 CZK)\nThe limits being 0.10 % (0.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54395653 BTC (360,980.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,525,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.84 % (468,697.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,723.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00058425 BTC (891.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.65 CZK over 3814 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005422 BTC for 82.70 CZK @ 1,525,264 CZK\nFees are 0.29046250 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.77 % (33.555817207093505449480856103 CZK)\nThe limits being 0.10 % (0.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54395653 BTC (360,980.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,525,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.84 % (468,697.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,723.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00058425 BTC (891.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.65 CZK over 3814 transactions" + } + ] + }, + { + "id": 5513, + "type": "message", + "date": "2024-08-01T06:00:06", + "date_unixtime": "1722484806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005488 BTC for 82.70 CZK @ 1,506,879 CZK\nFees are 0.29045431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.44 % (33.151332024503160222021757666 CZK)\nThe limits being 0.10 % (0.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54401141 BTC (361,063.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,506,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.04 % (458,696.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,640.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00063913 BTC (963.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.64 CZK over 3815 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005488 BTC for 82.70 CZK @ 1,506,879 CZK\nFees are 0.29045431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.44 % (33.151332024503160222021757666 CZK)\nThe limits being 0.10 % (0.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54401141 BTC (361,063.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,506,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.04 % (458,696.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,640.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00063913 BTC (963.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.64 CZK over 3815 transactions" + } + ] + }, + { + "id": 5514, + "type": "message", + "date": "2024-08-01T10:00:07", + "date_unixtime": "1722499207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005433 BTC for 82.70 CZK @ 1,522,175 CZK\nFees are 0.29046221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.59 % (16.743922143654947422654979614 CZK)\nThe limits being 0.10 % (1.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54406574 BTC (361,145.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,522,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.32 % (467,017.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,557.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00069346 BTC (1,055.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.64 CZK over 3816 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005433 BTC for 82.70 CZK @ 1,522,175 CZK\nFees are 0.29046221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.59 % (16.743922143654947422654979614 CZK)\nThe limits being 0.10 % (1.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54406574 BTC (361,145.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,522,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.32 % (467,017.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,557.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00069346 BTC (1,055.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.64 CZK over 3816 transactions" + } + ] + }, + { + "id": 5515, + "type": "message", + "date": "2024-08-01T14:00:06", + "date_unixtime": "1722513606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005398 BTC for 82.70 CZK @ 1,532,031 CZK\nFees are 0.29045972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.47 % (16.852343581643573170081077843 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54411972 BTC (361,228.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,532,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.77 % (472,379.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,474.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00074744 BTC (1,145.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.64 CZK over 3817 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005398 BTC for 82.70 CZK @ 1,532,031 CZK\nFees are 0.29045972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.47 % (16.852343581643573170081077843 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54411972 BTC (361,228.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,532,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.77 % (472,379.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,474.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00074744 BTC (1,145.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.64 CZK over 3817 transactions" + } + ] + }, + { + "id": 5516, + "type": "message", + "date": "2024-08-01T18:00:06", + "date_unixtime": "1722528006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005550 BTC for 82.70 CZK @ 1,490,100 CZK\nFees are 0.29046501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.74 % (32.782200701149580073346889489 CZK)\nThe limits being 0.10 % (1.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54417522 BTC (361,311.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 663,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.43 % (449,563.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,391.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00080294 BTC (1,196.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.63 CZK over 3818 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005550 BTC for 82.70 CZK @ 1,490,100 CZK\nFees are 0.29046501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.74 % (32.782200701149580073346889489 CZK)\nThe limits being 0.10 % (1.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54417522 BTC (361,311.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 663,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.43 % (449,563.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,391.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00080294 BTC (1,196.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.63 CZK over 3818 transactions" + } + ] + }, + { + "id": 5517, + "type": "message", + "date": "2024-08-01T22:00:07", + "date_unixtime": "1722542407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005520 BTC for 82.70 CZK @ 1,498,129 CZK\nFees are 0.29045155 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.56 % (32.958837657329780550681311061 CZK)\nThe limits being 0.10 % (1.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54423042 BTC (361,394.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,498,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.61 % (453,932.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,308.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00085814 BTC (1,285.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.63 CZK over 3819 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005520 BTC for 82.70 CZK @ 1,498,129 CZK\nFees are 0.29045155 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.56 % (32.958837657329780550681311061 CZK)\nThe limits being 0.10 % (1.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54423042 BTC (361,394.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,498,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.61 % (453,932.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,308.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00085814 BTC (1,285.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.63 CZK over 3819 transactions" + } + ] + }, + { + "id": 5518, + "type": "message", + "date": "2024-08-02T02:00:07", + "date_unixtime": "1722556807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005374 BTC for 82.71 CZK @ 1,539,049 CZK\nFees are 0.29049284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.41 % (33.859070817453390246159283594 CZK)\nThe limits being 0.10 % (1.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54428416 BTC (361,477.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,539,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.74 % (476,201.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,225.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00091188 BTC (1,403.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.63 CZK over 3820 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005374 BTC for 82.71 CZK @ 1,539,049 CZK\nFees are 0.29049284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.41 % (33.859070817453390246159283594 CZK)\nThe limits being 0.10 % (1.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54428416 BTC (361,477.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,539,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.74 % (476,201.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,225.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00091188 BTC (1,403.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.63 CZK over 3820 transactions" + } + ] + }, + { + "id": 5519, + "type": "message", + "date": "2024-08-02T06:00:08", + "date_unixtime": "1722571208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005442 BTC for 82.70 CZK @ 1,519,623 CZK\nFees are 0.29045572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.28 % (33.431714801209365163859604213 CZK)\nThe limits being 0.10 % (1.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54433858 BTC (361,560.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,519,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.78 % (465,628.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,142.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00096630 BTC (1,468.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.62 CZK over 3821 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005442 BTC for 82.70 CZK @ 1,519,623 CZK\nFees are 0.29045572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.28 % (33.431714801209365163859604213 CZK)\nThe limits being 0.10 % (1.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54433858 BTC (361,560.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,519,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.78 % (465,628.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,142.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00096630 BTC (1,468.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.62 CZK over 3821 transactions" + } + ] + }, + { + "id": 5520, + "type": "message", + "date": "2024-08-02T10:00:07", + "date_unixtime": "1722585607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005474 BTC for 82.71 CZK @ 1,510,889 CZK\nFees are 0.29048431 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (33.239551258210439566741104709 CZK)\nThe limits being 0.10 % (1.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54439332 BTC (361,643.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,510,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.44 % (460,873.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,059.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00102104 BTC (1,542.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.62 CZK over 3822 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005474 BTC for 82.71 CZK @ 1,510,889 CZK\nFees are 0.29048431 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (33.239551258210439566741104709 CZK)\nThe limits being 0.10 % (1.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54439332 BTC (361,643.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,510,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.44 % (460,873.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,059.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00102104 BTC (1,542.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.62 CZK over 3822 transactions" + } + ] + }, + { + "id": 5521, + "type": "message", + "date": "2024-08-02T14:00:05", + "date_unixtime": "1722600005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005459 BTC for 82.70 CZK @ 1,514,857 CZK\nFees are 0.29044909 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.05 % (33.326844187859436467691893178 CZK)\nThe limits being 0.10 % (1.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54444791 BTC (361,726.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,514,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.01 % (463,033.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,976.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00107563 BTC (1,629.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.62 CZK over 3823 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005459 BTC for 82.70 CZK @ 1,514,857 CZK\nFees are 0.29044909 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.05 % (33.326844187859436467691893178 CZK)\nThe limits being 0.10 % (1.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54444791 BTC (361,726.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,514,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.01 % (463,033.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,976.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00107563 BTC (1,629.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.62 CZK over 3823 transactions" + } + ] + }, + { + "id": 5522, + "type": "message", + "date": "2024-08-02T18:00:06", + "date_unixtime": "1722614406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005598 BTC for 82.70 CZK @ 1,477,251 CZK\nFees are 0.29045084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.94 % (32.499524225055108121930513656 CZK)\nThe limits being 0.10 % (1.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54450389 BTC (361,809.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,477,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.32 % (442,559.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,893.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00113161 BTC (1,671.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.62 CZK over 3824 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005598 BTC for 82.70 CZK @ 1,477,251 CZK\nFees are 0.29045084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.94 % (32.499524225055108121930513656 CZK)\nThe limits being 0.10 % (1.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54450389 BTC (361,809.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,477,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.32 % (442,559.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,893.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00113161 BTC (1,671.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.62 CZK over 3824 transactions" + } + ] + }, + { + "id": 5523, + "type": "message", + "date": "2024-08-02T22:00:06", + "date_unixtime": "1722628806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005668 BTC for 82.71 CZK @ 1,459,202 CZK\nFees are 0.29048971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.85 % (32.102449456542187031346532726 CZK)\nThe limits being 0.10 % (1.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54456057 BTC (361,892.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.57 % (432,731.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,810.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00118829 BTC (1,733.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.61 CZK over 3825 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005668 BTC for 82.71 CZK @ 1,459,202 CZK\nFees are 0.29048971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.85 % (32.102449456542187031346532726 CZK)\nThe limits being 0.10 % (1.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54456057 BTC (361,892.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.57 % (432,731.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,810.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00118829 BTC (1,733.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.61 CZK over 3825 transactions" + } + ] + }, + { + "id": 5524, + "type": "message", + "date": "2024-08-03T02:00:07", + "date_unixtime": "1722643207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005772 BTC for 82.70 CZK @ 1,432,749 CZK\nFees are 0.29045691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.77 % (31.520467177767626198119471664 CZK)\nThe limits being 0.10 % (1.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54461829 BTC (361,975.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.57 % (418,325.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,727.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00124601 BTC (1,785.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.61 CZK over 3826 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005772 BTC for 82.70 CZK @ 1,432,749 CZK\nFees are 0.29045691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.77 % (31.520467177767626198119471664 CZK)\nThe limits being 0.10 % (1.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54461829 BTC (361,975.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.57 % (418,325.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,727.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00124601 BTC (1,785.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.61 CZK over 3826 transactions" + } + ] + }, + { + "id": 5525, + "type": "message", + "date": "2024-08-03T06:00:07", + "date_unixtime": "1722657607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005733 BTC for 82.71 CZK @ 1,442,614 CZK\nFees are 0.29048085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.69 % (31.737508546009079854905180549 CZK)\nThe limits being 0.10 % (1.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54467562 BTC (362,058.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.02 % (423,697.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,644.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00130334 BTC (1,880.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.61 CZK over 3827 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005733 BTC for 82.71 CZK @ 1,442,614 CZK\nFees are 0.29048085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.69 % (31.737508546009079854905180549 CZK)\nThe limits being 0.10 % (1.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54467562 BTC (362,058.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.02 % (423,697.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,644.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00130334 BTC (1,880.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.61 CZK over 3827 transactions" + } + ] + }, + { + "id": 5526, + "type": "message", + "date": "2024-08-03T10:00:07", + "date_unixtime": "1722672007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005751 BTC for 82.70 CZK @ 1,438,029 CZK\nFees are 0.29046668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (31.636629854628951685965751759 CZK)\nThe limits being 0.10 % (1.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54473313 BTC (362,141.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.31 % (421,199.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,561.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00136085 BTC (1,956.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.60 CZK over 3828 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005751 BTC for 82.70 CZK @ 1,438,029 CZK\nFees are 0.29046668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (31.636629854628951685965751759 CZK)\nThe limits being 0.10 % (1.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54473313 BTC (362,141.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.31 % (421,199.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,561.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00136085 BTC (1,956.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.60 CZK over 3828 transactions" + } + ] + }, + { + "id": 5527, + "type": "message", + "date": "2024-08-03T14:00:06", + "date_unixtime": "1722686406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005728 BTC for 82.70 CZK @ 1,443,809 CZK\nFees are 0.29046792 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.55 % (31.763797878166640222906976422 CZK)\nThe limits being 0.10 % (2.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54479041 BTC (362,224.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.15 % (424,348.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,478.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00141813 BTC (2,047.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.60 CZK over 3829 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005728 BTC for 82.70 CZK @ 1,443,809 CZK\nFees are 0.29046792 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.55 % (31.763797878166640222906976422 CZK)\nThe limits being 0.10 % (2.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54479041 BTC (362,224.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.15 % (424,348.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,478.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00141813 BTC (2,047.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.60 CZK over 3829 transactions" + } + ] + }, + { + "id": 5528, + "type": "message", + "date": "2024-08-03T18:00:05", + "date_unixtime": "1722700805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005823 BTC for 82.71 CZK @ 1,420,383 CZK\nFees are 0.29049430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.49 % (31.248421121643541782021554134 CZK)\nThe limits being 0.10 % (2.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54484864 BTC (362,307.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 664,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,383 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.60 % (411,585.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,395.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00147636 BTC (2,097.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.60 CZK over 3830 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005823 BTC for 82.71 CZK @ 1,420,383 CZK\nFees are 0.29049430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.49 % (31.248421121643541782021554134 CZK)\nThe limits being 0.10 % (2.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54484864 BTC (362,307.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 664,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,383 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.60 % (411,585.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,395.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00147636 BTC (2,097.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.60 CZK over 3830 transactions" + } + ] + }, + { + "id": 5529, + "type": "message", + "date": "2024-08-03T22:00:06", + "date_unixtime": "1722715206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005879 BTC for 82.71 CZK @ 1,406,877 CZK\nFees are 0.29049929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.43 % (30.951298744918385243415353627 CZK)\nThe limits being 0.10 % (2.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54490743 BTC (362,390.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,406,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.54 % (404,226.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,312.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00153515 BTC (2,159.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.59 CZK over 3831 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005879 BTC for 82.71 CZK @ 1,406,877 CZK\nFees are 0.29049929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.43 % (30.951298744918385243415353627 CZK)\nThe limits being 0.10 % (2.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54490743 BTC (362,390.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,406,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.54 % (404,226.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,312.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00153515 BTC (2,159.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.59 CZK over 3831 transactions" + } + ] + }, + { + "id": 5530, + "type": "message", + "date": "2024-08-04T02:00:05", + "date_unixtime": "1722729605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005841 BTC for 82.70 CZK @ 1,415,838 CZK\nFees are 0.29046001 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (31.148446673929382753582799187 CZK)\nThe limits being 0.10 % (2.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54496584 BTC (362,473.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,415,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.87 % (409,109.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,229.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00159356 BTC (2,256.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.59 CZK over 3832 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005841 BTC for 82.70 CZK @ 1,415,838 CZK\nFees are 0.29046001 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (31.148446673929382753582799187 CZK)\nThe limits being 0.10 % (2.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54496584 BTC (362,473.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,415,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.87 % (409,109.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,229.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00159356 BTC (2,256.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.59 CZK over 3832 transactions" + } + ] + }, + { + "id": 5531, + "type": "message", + "date": "2024-08-04T06:00:05", + "date_unixtime": "1722744005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005841 BTC for 82.71 CZK @ 1,415,999 CZK\nFees are 0.29049291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (31.151975445638945423597446602 CZK)\nThe limits being 0.10 % (2.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54502425 BTC (362,556.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,415,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.86 % (409,196.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,146.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00165197 BTC (2,339.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.59 CZK over 3833 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005841 BTC for 82.71 CZK @ 1,415,999 CZK\nFees are 0.29049291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (31.151975445638945423597446602 CZK)\nThe limits being 0.10 % (2.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54502425 BTC (362,556.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,415,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.86 % (409,196.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,146.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00165197 BTC (2,339.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.59 CZK over 3833 transactions" + } + ] + }, + { + "id": 5532, + "type": "message", + "date": "2024-08-04T10:00:07", + "date_unixtime": "1722758407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005875 BTC for 82.70 CZK @ 1,407,711 CZK\nFees are 0.29047375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (30.969648345853343086431532191 CZK)\nThe limits being 0.10 % (2.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54508300 BTC (362,639.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,407,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.59 % (404,679.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,063.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00171072 BTC (2,408.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.59 CZK over 3834 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005875 BTC for 82.70 CZK @ 1,407,711 CZK\nFees are 0.29047375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.29 % (30.969648345853343086431532191 CZK)\nThe limits being 0.10 % (2.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54508300 BTC (362,639.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,407,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.59 % (404,679.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,063.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00171072 BTC (2,408.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.59 CZK over 3834 transactions" + } + ] + }, + { + "id": 5533, + "type": "message", + "date": "2024-08-04T14:00:06", + "date_unixtime": "1722772806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005821 BTC for 82.70 CZK @ 1,420,741 CZK\nFees are 0.29046769 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.62 % (15.628147343428732985487060535 CZK)\nThe limits being 0.10 % (2.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54514121 BTC (362,722.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.53 % (411,781.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,980.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00176893 BTC (2,513.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.58 CZK over 3835 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005821 BTC for 82.70 CZK @ 1,420,741 CZK\nFees are 0.29046769 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.62 % (15.628147343428732985487060535 CZK)\nThe limits being 0.10 % (2.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54514121 BTC (362,722.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.53 % (411,781.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,980.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00176893 BTC (2,513.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.58 CZK over 3835 transactions" + } + ] + }, + { + "id": 5534, + "type": "message", + "date": "2024-08-04T18:00:06", + "date_unixtime": "1722787206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005992 BTC for 82.70 CZK @ 1,380,153 CZK\nFees are 0.29045871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (15.181680834535733743646236836 CZK)\nThe limits being 0.10 % (2.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54520113 BTC (362,805.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.40 % (389,655.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,897.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00182885 BTC (2,524.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.58 CZK over 3836 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005992 BTC for 82.70 CZK @ 1,380,153 CZK\nFees are 0.29045871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (15.181680834535733743646236836 CZK)\nThe limits being 0.10 % (2.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54520113 BTC (362,805.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.40 % (389,655.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,897.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00182885 BTC (2,524.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.58 CZK over 3836 transactions" + } + ] + }, + { + "id": 5535, + "type": "message", + "date": "2024-08-04T22:00:06", + "date_unixtime": "1722801606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005949 BTC for 82.71 CZK @ 1,390,289 CZK\nFees are 0.29049220 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.58 % (15.293178916321032379276331796 CZK)\nThe limits being 0.10 % (2.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54526062 BTC (362,888.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,390,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.90 % (395,181.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,814.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00188834 BTC (2,625.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.58 CZK over 3837 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005949 BTC for 82.71 CZK @ 1,390,289 CZK\nFees are 0.29049220 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.58 % (15.293178916321032379276331796 CZK)\nThe limits being 0.10 % (2.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54526062 BTC (362,888.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,390,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.90 % (395,181.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,814.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00188834 BTC (2,625.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.58 CZK over 3837 transactions" + } + ] + }, + { + "id": 5536, + "type": "message", + "date": "2024-08-05T02:00:06", + "date_unixtime": "1722816006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006102 BTC for 82.70 CZK @ 1,355,370 CZK\nFees are 0.29047955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (14.909072378272245109994403398 CZK)\nThe limits being 0.10 % (2.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54532164 BTC (362,971.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,355,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.63 % (376,140.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,731.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00194936 BTC (2,642.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.57 CZK over 3838 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006102 BTC for 82.70 CZK @ 1,355,370 CZK\nFees are 0.29047955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (14.909072378272245109994403398 CZK)\nThe limits being 0.10 % (2.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54532164 BTC (362,971.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,355,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.63 % (376,140.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,731.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00194936 BTC (2,642.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.57 CZK over 3838 transactions" + } + ] + }, + { + "id": 5537, + "type": "message", + "date": "2024-08-05T06:00:07", + "date_unixtime": "1722830407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006578 BTC for 82.70 CZK @ 1,257,261 CZK\nFees are 0.29047240 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.55 % (13.829875477634300016830724571 CZK)\nThe limits being 0.10 % (2.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54538742 BTC (363,054.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,257,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.87 % (322,639.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,648.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00201514 BTC (2,533.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.57 CZK over 3839 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006578 BTC for 82.70 CZK @ 1,257,261 CZK\nFees are 0.29047240 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.55 % (13.829875477634300016830724571 CZK)\nThe limits being 0.10 % (2.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54538742 BTC (363,054.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,257,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.87 % (322,639.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,648.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00201514 BTC (2,533.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.57 CZK over 3839 transactions" + } + ] + }, + { + "id": 5538, + "type": "message", + "date": "2024-08-05T10:00:07", + "date_unixtime": "1722844807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006754 BTC for 82.71 CZK @ 1,224,595 CZK\nFees are 0.29049525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.53 % (13.470547515292567219941929630 CZK)\nThe limits being 0.10 % (2.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54545496 BTC (363,137.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,224,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.94 % (304,823.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,565.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00208268 BTC (2,550.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.57 CZK over 3840 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006754 BTC for 82.71 CZK @ 1,224,595 CZK\nFees are 0.29049525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.53 % (13.470547515292567219941929630 CZK)\nThe limits being 0.10 % (2.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54545496 BTC (363,137.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,224,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.94 % (304,823.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,565.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00208268 BTC (2,550.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.57 CZK over 3840 transactions" + } + ] + }, + { + "id": 5539, + "type": "message", + "date": "2024-08-05T14:00:08", + "date_unixtime": "1722859208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006902 BTC for 82.71 CZK @ 1,198,320 CZK\nFees are 0.29049132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.51 % (13.181519254761334460076489748 CZK)\nThe limits being 0.10 % (2.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54552398 BTC (363,220.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,198,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.98 % (290,491.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,482.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00215170 BTC (2,578.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.56 CZK over 3841 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006902 BTC for 82.71 CZK @ 1,198,320 CZK\nFees are 0.29049132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.51 % (13.181519254761334460076489748 CZK)\nThe limits being 0.10 % (2.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54552398 BTC (363,220.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,198,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.98 % (290,491.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,482.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00215170 BTC (2,578.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.56 CZK over 3841 transactions" + } + ] + }, + { + "id": 5540, + "type": "message", + "date": "2024-08-05T18:00:06", + "date_unixtime": "1722873606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006561 BTC for 82.70 CZK @ 1,260,468 CZK\nFees are 0.29046072 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (13.865152143537855275169736285 CZK)\nThe limits being 0.10 % (2.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54558959 BTC (363,303.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,260,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.29 % (324,394.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,399.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00221731 BTC (2,794.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.56 CZK over 3842 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006561 BTC for 82.70 CZK @ 1,260,468 CZK\nFees are 0.29046072 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (13.865152143537855275169736285 CZK)\nThe limits being 0.10 % (2.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54558959 BTC (363,303.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,260,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.29 % (324,394.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,399.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00221731 BTC (2,794.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.56 CZK over 3842 transactions" + } + ] + }, + { + "id": 5541, + "type": "message", + "date": "2024-08-05T22:00:07", + "date_unixtime": "1722888007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006672 BTC for 82.70 CZK @ 1,239,529 CZK\nFees are 0.29046798 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (13.634822753755142373395752755 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54565631 BTC (363,386.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 665,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,239,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.13 % (312,970.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,316.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00228403 BTC (2,831.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.56 CZK over 3843 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006672 BTC for 82.70 CZK @ 1,239,529 CZK\nFees are 0.29046798 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (13.634822753755142373395752755 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54565631 BTC (363,386.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 665,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,239,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.13 % (312,970.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,316.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00228403 BTC (2,831.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.56 CZK over 3843 transactions" + } + ] + }, + { + "id": 5542, + "type": "message", + "date": "2024-08-06T02:00:08", + "date_unixtime": "1722902408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006594 BTC for 82.71 CZK @ 1,254,323 CZK\nFees are 0.29049843 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (13.797554156146541396891286926 CZK)\nThe limits being 0.10 % (2.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54572225 BTC (363,469.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,254,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.33 % (321,042.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,233.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00234997 BTC (2,947.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.56 CZK over 3844 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006594 BTC for 82.71 CZK @ 1,254,323 CZK\nFees are 0.29049843 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (13.797554156146541396891286926 CZK)\nThe limits being 0.10 % (2.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54572225 BTC (363,469.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,254,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.33 % (321,042.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,233.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00234997 BTC (2,947.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.56 CZK over 3844 transactions" + } + ] + }, + { + "id": 5543, + "type": "message", + "date": "2024-08-06T06:00:05", + "date_unixtime": "1722916805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006401 BTC for 82.71 CZK @ 1,292,120 CZK\nFees are 0.29049329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (14.213320372603091180555604205 CZK)\nThe limits being 0.10 % (3.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54578626 BTC (363,552.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,292,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.98 % (341,668.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,150.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00241398 BTC (3,119.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.55 CZK over 3845 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006401 BTC for 82.71 CZK @ 1,292,120 CZK\nFees are 0.29049329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (14.213320372603091180555604205 CZK)\nThe limits being 0.10 % (3.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54578626 BTC (363,552.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,292,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.98 % (341,668.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,150.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00241398 BTC (3,119.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.55 CZK over 3845 transactions" + } + ] + }, + { + "id": 5544, + "type": "message", + "date": "2024-08-06T10:00:09", + "date_unixtime": "1722931209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006319 BTC for 82.71 CZK @ 1,308,854 CZK\nFees are 0.29048576 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (14.397389801149371723418107836 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54584945 BTC (363,635.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,308,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.47 % (350,801.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,067.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00247717 BTC (3,242.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.55 CZK over 3846 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006319 BTC for 82.71 CZK @ 1,308,854 CZK\nFees are 0.29048576 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (14.397389801149371723418107836 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54584945 BTC (363,635.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,308,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.47 % (350,801.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,067.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00247717 BTC (3,242.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.55 CZK over 3846 transactions" + } + ] + }, + { + "id": 5545, + "type": "message", + "date": "2024-08-06T14:00:05", + "date_unixtime": "1722945605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006431 BTC for 82.71 CZK @ 1,286,106 CZK\nFees are 0.29049638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (14.147166975142281132813259641 CZK)\nThe limits being 0.10 % (3.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54591376 BTC (363,718.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,286,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.03 % (338,384.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,984.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00254148 BTC (3,268.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.55 CZK over 3847 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006431 BTC for 82.71 CZK @ 1,286,106 CZK\nFees are 0.29049638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (14.147166975142281132813259641 CZK)\nThe limits being 0.10 % (3.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54591376 BTC (363,718.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,286,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.03 % (338,384.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,984.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00254148 BTC (3,268.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.55 CZK over 3847 transactions" + } + ] + }, + { + "id": 5546, + "type": "message", + "date": "2024-08-06T18:00:06", + "date_unixtime": "1722960006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006294 BTC for 82.70 CZK @ 1,313,960 CZK\nFees are 0.29046540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (14.453563398141458818507641430 CZK)\nThe limits being 0.10 % (3.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54597670 BTC (363,801.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,313,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.19 % (353,589.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,901.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00260442 BTC (3,422.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.54 CZK over 3848 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006294 BTC for 82.70 CZK @ 1,313,960 CZK\nFees are 0.29046540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (14.453563398141458818507641430 CZK)\nThe limits being 0.10 % (3.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54597670 BTC (363,801.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,313,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.19 % (353,589.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,901.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00260442 BTC (3,422.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.54 CZK over 3848 transactions" + } + ] + }, + { + "id": 5547, + "type": "message", + "date": "2024-08-06T22:00:08", + "date_unixtime": "1722974408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006241 BTC for 82.70 CZK @ 1,325,070 CZK\nFees are 0.29045469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (14.575769089232391005778764868 CZK)\nThe limits being 0.10 % (3.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54603911 BTC (363,884.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,325,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.84 % (359,655.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,818.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00266683 BTC (3,533.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.54 CZK over 3849 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006241 BTC for 82.70 CZK @ 1,325,070 CZK\nFees are 0.29045469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (14.575769089232391005778764868 CZK)\nThe limits being 0.10 % (3.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54603911 BTC (363,884.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,325,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.84 % (359,655.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,818.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00266683 BTC (3,533.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.54 CZK over 3849 transactions" + } + ] + }, + { + "id": 5548, + "type": "message", + "date": "2024-08-07T02:00:07", + "date_unixtime": "1722988807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006332 BTC for 82.71 CZK @ 1,306,197 CZK\nFees are 0.29049256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (14.368167180188355285874046020 CZK)\nThe limits being 0.10 % (3.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54610243 BTC (363,967.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,306,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.98 % (349,349.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,735.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00273015 BTC (3,566.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.54 CZK over 3850 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006332 BTC for 82.71 CZK @ 1,306,197 CZK\nFees are 0.29049256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (14.368167180188355285874046020 CZK)\nThe limits being 0.10 % (3.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54610243 BTC (363,967.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,306,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.98 % (349,349.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,735.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00273015 BTC (3,566.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.54 CZK over 3850 transactions" + } + ] + }, + { + "id": 5549, + "type": "message", + "date": "2024-08-07T06:00:06", + "date_unixtime": "1723003206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006240 BTC for 82.70 CZK @ 1,325,291 CZK\nFees are 0.29045671 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (14.578206146276493810126097120 CZK)\nThe limits being 0.10 % (3.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54616483 BTC (364,050.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,325,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.83 % (359,776.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,652.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00279255 BTC (3,700.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.53 CZK over 3851 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006240 BTC for 82.70 CZK @ 1,325,291 CZK\nFees are 0.29045671 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (14.578206146276493810126097120 CZK)\nThe limits being 0.10 % (3.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54616483 BTC (364,050.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,325,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.83 % (359,776.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,652.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00279255 BTC (3,700.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.53 CZK over 3851 transactions" + } + ] + }, + { + "id": 5550, + "type": "message", + "date": "2024-08-07T10:00:07", + "date_unixtime": "1723017607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006232 BTC for 82.71 CZK @ 1,327,136 CZK\nFees are 0.29048808 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (14.598496569132554672254298659 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54622715 BTC (364,133.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.08 % (360,784.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,569.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00285487 BTC (3,788.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.53 CZK over 3852 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006232 BTC for 82.71 CZK @ 1,327,136 CZK\nFees are 0.29048808 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (14.598496569132554672254298659 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54622715 BTC (364,133.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.08 % (360,784.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,569.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00285487 BTC (3,788.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.53 CZK over 3852 transactions" + } + ] + }, + { + "id": 5551, + "type": "message", + "date": "2024-08-07T14:00:05", + "date_unixtime": "1723032005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006239 BTC for 82.70 CZK @ 1,325,575 CZK\nFees are 0.29047233 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (29.162653803848734909464573944 CZK)\nThe limits being 0.10 % (3.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54628954 BTC (364,216.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,325,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.82 % (359,931.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,486.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00291726 BTC (3,867.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.53 CZK over 3853 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006239 BTC for 82.70 CZK @ 1,325,575 CZK\nFees are 0.29047233 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (29.162653803848734909464573944 CZK)\nThe limits being 0.10 % (3.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54628954 BTC (364,216.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,325,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.82 % (359,931.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,486.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00291726 BTC (3,867.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.53 CZK over 3853 transactions" + } + ] + }, + { + "id": 5552, + "type": "message", + "date": "2024-08-07T18:00:06", + "date_unixtime": "1723046406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006339 BTC for 82.70 CZK @ 1,304,651 CZK\nFees are 0.29046953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (28.702325847858728870785347985 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54635293 BTC (364,299.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,304,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.66 % (348,500.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,403.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00298065 BTC (3,888.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.53 CZK over 3854 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006339 BTC for 82.70 CZK @ 1,304,651 CZK\nFees are 0.29046953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (28.702325847858728870785347985 CZK)\nThe limits being 0.10 % (3.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54635293 BTC (364,299.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,304,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.66 % (348,500.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,403.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00298065 BTC (3,888.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.53 CZK over 3854 transactions" + } + ] + }, + { + "id": 5553, + "type": "message", + "date": "2024-08-07T22:00:06", + "date_unixtime": "1723060806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006489 BTC for 82.71 CZK @ 1,274,548 CZK\nFees are 0.29048219 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (28.040064064877567134231914299 CZK)\nThe limits being 0.10 % (3.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54641782 BTC (364,382.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,857 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,274,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.13 % (332,053.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,320.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00304554 BTC (3,881.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.52 CZK over 3855 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006489 BTC for 82.71 CZK @ 1,274,548 CZK\nFees are 0.29048219 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (28.040064064877567134231914299 CZK)\nThe limits being 0.10 % (3.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54641782 BTC (364,382.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,857 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,274,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.13 % (332,053.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,320.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00304554 BTC (3,881.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.52 CZK over 3855 transactions" + } + ] + }, + { + "id": 5554, + "type": "message", + "date": "2024-08-08T02:00:06", + "date_unixtime": "1723075206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006462 BTC for 82.54 CZK @ 1,277,274 CZK\nFees are 0.28989217 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (14.050015019391276308222983717 CZK)\nThe limits being 0.10 % (3.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54648244 BTC (364,465.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 666,930 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,277,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.52 % (333,542.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,238.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00311016 BTC (3,972.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.52 CZK over 3856 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006462 BTC for 82.54 CZK @ 1,277,274 CZK\nFees are 0.28989217 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (14.050015019391276308222983717 CZK)\nThe limits being 0.10 % (3.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54648244 BTC (364,465.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 666,930 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,277,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.52 % (333,542.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,238.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00311016 BTC (3,972.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.52 CZK over 3856 transactions" + } + ] + }, + { + "id": 5555, + "type": "message", + "date": "2024-08-08T06:00:08", + "date_unixtime": "1723089608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006232 BTC for 82.71 CZK @ 1,327,134 CZK\nFees are 0.29048764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (14.598474513944454998007615195 CZK)\nThe limits being 0.10 % (4.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54654476 BTC (364,548.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.97 % (360,789.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,155.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00317248 BTC (4,210.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.52 CZK over 3857 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006232 BTC for 82.71 CZK @ 1,327,134 CZK\nFees are 0.29048764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (14.598474513944454998007615195 CZK)\nThe limits being 0.10 % (4.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54654476 BTC (364,548.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.97 % (360,789.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,155.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00317248 BTC (4,210.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.52 CZK over 3857 transactions" + } + ] + }, + { + "id": 5556, + "type": "message", + "date": "2024-08-08T10:00:06", + "date_unixtime": "1723104006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006231 BTC for 82.70 CZK @ 1,327,304 CZK\nFees are 0.29047832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (14.600349173335469973212837079 CZK)\nThe limits being 0.10 % (4.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54660707 BTC (364,631.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.97 % (360,882.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,072.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00323479 BTC (4,293.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.51 CZK over 3858 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006231 BTC for 82.70 CZK @ 1,327,304 CZK\nFees are 0.29047832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (14.600349173335469973212837079 CZK)\nThe limits being 0.10 % (4.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54660707 BTC (364,631.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.97 % (360,882.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,072.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00323479 BTC (4,293.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.51 CZK over 3858 transactions" + } + ] + }, + { + "id": 5557, + "type": "message", + "date": "2024-08-08T14:00:06", + "date_unixtime": "1723118406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006208 BTC for 82.71 CZK @ 1,332,315 CZK\nFees are 0.29049859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (29.310928279051669671613271077 CZK)\nThe limits being 0.10 % (4.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54666915 BTC (364,714.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,332,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.70 % (363,620.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,989.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00329687 BTC (4,392.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.51 CZK over 3859 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006208 BTC for 82.71 CZK @ 1,332,315 CZK\nFees are 0.29049859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (29.310928279051669671613271077 CZK)\nThe limits being 0.10 % (4.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54666915 BTC (364,714.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,332,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.70 % (363,620.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,989.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00329687 BTC (4,392.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.51 CZK over 3859 transactions" + } + ] + }, + { + "id": 5558, + "type": "message", + "date": "2024-08-08T18:00:06", + "date_unixtime": "1723132806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005979 BTC for 82.71 CZK @ 1,383,282 CZK\nFees are 0.29048557 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (30.432194724052036304111392030 CZK)\nThe limits being 0.10 % (4.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54672894 BTC (364,797.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,383,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.32 % (391,482.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,906.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00335666 BTC (4,643.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.51 CZK over 3860 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005979 BTC for 82.71 CZK @ 1,383,282 CZK\nFees are 0.29048557 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (30.432194724052036304111392030 CZK)\nThe limits being 0.10 % (4.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54672894 BTC (364,797.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,383,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.32 % (391,482.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,906.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00335666 BTC (4,643.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.51 CZK over 3860 transactions" + } + ] + }, + { + "id": 5559, + "type": "message", + "date": "2024-08-08T22:00:07", + "date_unixtime": "1723147207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005986 BTC for 82.70 CZK @ 1,381,606 CZK\nFees are 0.29047347 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (15.197670570144487611102537709 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54678880 BTC (364,880.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,381,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.04 % (390,566.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,823.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00341652 BTC (4,720.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.50 CZK over 3861 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005986 BTC for 82.70 CZK @ 1,381,606 CZK\nFees are 0.29047347 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (15.197670570144487611102537709 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54678880 BTC (364,880.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,381,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.04 % (390,566.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,823.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00341652 BTC (4,720.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.50 CZK over 3861 transactions" + } + ] + }, + { + "id": 5560, + "type": "message", + "date": "2024-08-09T02:00:06", + "date_unixtime": "1723161606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005764 BTC for 82.71 CZK @ 1,434,909 CZK\nFees are 0.29049169 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (31.567995291289646542444954111 CZK)\nThe limits being 0.10 % (4.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54684644 BTC (364,963.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.00 % (419,711.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,740.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00347416 BTC (4,985.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.50 CZK over 3862 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005764 BTC for 82.71 CZK @ 1,434,909 CZK\nFees are 0.29049169 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (31.567995291289646542444954111 CZK)\nThe limits being 0.10 % (4.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54684644 BTC (364,963.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.00 % (419,711.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,740.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00347416 BTC (4,985.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.50 CZK over 3862 transactions" + } + ] + }, + { + "id": 5561, + "type": "message", + "date": "2024-08-09T06:00:07", + "date_unixtime": "1723176007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005797 BTC for 82.70 CZK @ 1,426,620 CZK\nFees are 0.29046721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (31.385646136057007305550119177 CZK)\nThe limits being 0.10 % (5.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54690441 BTC (365,046.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,426,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.73 % (415,178.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,657.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00353213 BTC (5,039.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.50 CZK over 3863 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005797 BTC for 82.70 CZK @ 1,426,620 CZK\nFees are 0.29046721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (31.385646136057007305550119177 CZK)\nThe limits being 0.10 % (5.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54690441 BTC (365,046.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,426,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.73 % (415,178.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,657.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00353213 BTC (5,039.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.50 CZK over 3863 transactions" + } + ] + }, + { + "id": 5562, + "type": "message", + "date": "2024-08-09T10:00:06", + "date_unixtime": "1723190406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005849 BTC for 82.70 CZK @ 1,413,896 CZK\nFees are 0.29045871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (15.552852229370225240892642550 CZK)\nThe limits being 0.10 % (5.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54696290 BTC (365,129.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,413,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.80 % (408,218.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,574.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00359062 BTC (5,076.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.50 CZK over 3864 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005849 BTC for 82.70 CZK @ 1,413,896 CZK\nFees are 0.29045871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (15.552852229370225240892642550 CZK)\nThe limits being 0.10 % (5.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54696290 BTC (365,129.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,413,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.80 % (408,218.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,574.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00359062 BTC (5,076.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.50 CZK over 3864 transactions" + } + ] + }, + { + "id": 5563, + "type": "message", + "date": "2024-08-09T14:00:06", + "date_unixtime": "1723204806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005866 BTC for 82.53 CZK @ 1,406,985 CZK\nFees are 0.28987906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (30.953663168001663458495334520 CZK)\nThe limits being 0.10 % (5.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54702156 BTC (365,212.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,406,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.74 % (404,438.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,491.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00364928 BTC (5,134.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.49 CZK over 3865 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005866 BTC for 82.53 CZK @ 1,406,985 CZK\nFees are 0.28987906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (30.953663168001663458495334520 CZK)\nThe limits being 0.10 % (5.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54702156 BTC (365,212.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,406,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.74 % (404,438.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,491.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00364928 BTC (5,134.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.49 CZK over 3865 transactions" + } + ] + }, + { + "id": 5564, + "type": "message", + "date": "2024-08-09T18:00:06", + "date_unixtime": "1723219206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005949 BTC for 82.70 CZK @ 1,390,207 CZK\nFees are 0.29047502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (30.584549338032971337585219255 CZK)\nThe limits being 0.10 % (5.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54708105 BTC (365,295.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,390,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.20 % (395,260.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,408.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00370877 BTC (5,155.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.49 CZK over 3866 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005949 BTC for 82.70 CZK @ 1,390,207 CZK\nFees are 0.29047502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (30.584549338032971337585219255 CZK)\nThe limits being 0.10 % (5.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54708105 BTC (365,295.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,390,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.20 % (395,260.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,408.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00370877 BTC (5,155.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.49 CZK over 3866 transactions" + } + ] + }, + { + "id": 5565, + "type": "message", + "date": "2024-08-09T22:00:05", + "date_unixtime": "1723233605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005870 BTC for 82.71 CZK @ 1,408,987 CZK\nFees are 0.29048964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (15.498862058943612178499612515 CZK)\nThe limits being 0.10 % (5.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54713975 BTC (365,378.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,408,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.99 % (405,534.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,325.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00376747 BTC (5,308.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.49 CZK over 3867 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005870 BTC for 82.71 CZK @ 1,408,987 CZK\nFees are 0.29048964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (15.498862058943612178499612515 CZK)\nThe limits being 0.10 % (5.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54713975 BTC (365,378.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,408,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.99 % (405,534.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,325.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00376747 BTC (5,308.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.49 CZK over 3867 transactions" + } + ] + }, + { + "id": 5566, + "type": "message", + "date": "2024-08-10T02:00:07", + "date_unixtime": "1723248007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005853 BTC for 82.70 CZK @ 1,412,975 CZK\nFees are 0.29046816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (15.542729070838771969386831721 CZK)\nThe limits being 0.10 % (5.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54719828 BTC (365,461.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.56 % (407,716.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,242.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00382600 BTC (5,406.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.48 CZK over 3868 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005853 BTC for 82.70 CZK @ 1,412,975 CZK\nFees are 0.29046816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (15.542729070838771969386831721 CZK)\nThe limits being 0.10 % (5.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54719828 BTC (365,461.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.56 % (407,716.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,242.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00382600 BTC (5,406.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.48 CZK over 3868 transactions" + } + ] + }, + { + "id": 5567, + "type": "message", + "date": "2024-08-10T06:00:08", + "date_unixtime": "1723262408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005885 BTC for 82.54 CZK @ 1,402,541 CZK\nFees are 0.28989959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (30.855912489464444537576426434 CZK)\nThe limits being 0.10 % (5.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54725713 BTC (365,544.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 667,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,402,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.97 % (402,006.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,159.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00388485 BTC (5,448.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.48 CZK over 3869 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005885 BTC for 82.54 CZK @ 1,402,541 CZK\nFees are 0.28989959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (30.855912489464444537576426434 CZK)\nThe limits being 0.10 % (5.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54725713 BTC (365,544.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 667,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,402,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.97 % (402,006.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,159.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00388485 BTC (5,448.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.48 CZK over 3869 transactions" + } + ] + }, + { + "id": 5568, + "type": "message", + "date": "2024-08-10T10:00:06", + "date_unixtime": "1723276806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005853 BTC for 82.70 CZK @ 1,412,975 CZK\nFees are 0.29046816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (15.542729070838771969386831721 CZK)\nThe limits being 0.10 % (5.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54731566 BTC (365,627.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.51 % (407,716.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,076.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00394338 BTC (5,571.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.48 CZK over 3870 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005853 BTC for 82.70 CZK @ 1,412,975 CZK\nFees are 0.29046816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (15.542729070838771969386831721 CZK)\nThe limits being 0.10 % (5.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54731566 BTC (365,627.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.51 % (407,716.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,076.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00394338 BTC (5,571.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.48 CZK over 3870 transactions" + } + ] + }, + { + "id": 5569, + "type": "message", + "date": "2024-08-10T14:00:07", + "date_unixtime": "1723291207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005835 BTC for 82.70 CZK @ 1,417,287 CZK\nFees are 0.29045851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (15.590157935998640576320496088 CZK)\nThe limits being 0.10 % (5.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54737401 BTC (365,710.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.13 % (410,076.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,993.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00400173 BTC (5,671.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.47 CZK over 3871 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005835 BTC for 82.70 CZK @ 1,417,287 CZK\nFees are 0.29045851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (15.590157935998640576320496088 CZK)\nThe limits being 0.10 % (5.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54737401 BTC (365,710.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.13 % (410,076.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,993.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00400173 BTC (5,671.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.47 CZK over 3871 transactions" + } + ] + }, + { + "id": 5570, + "type": "message", + "date": "2024-08-10T18:00:05", + "date_unixtime": "1723305605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005876 BTC for 82.71 CZK @ 1,407,537 CZK\nFees are 0.29048719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (15.482905405112060138053233018 CZK)\nThe limits being 0.10 % (5.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54743277 BTC (365,793.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,407,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.65 % (404,738.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,910.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00406049 BTC (5,715.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.47 CZK over 3872 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005876 BTC for 82.71 CZK @ 1,407,537 CZK\nFees are 0.29048719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (15.482905405112060138053233018 CZK)\nThe limits being 0.10 % (5.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54743277 BTC (365,793.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,407,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.65 % (404,738.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,910.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00406049 BTC (5,715.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.47 CZK over 3872 transactions" + } + ] + }, + { + "id": 5571, + "type": "message", + "date": "2024-08-10T22:00:06", + "date_unixtime": "1723320006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005825 BTC for 82.71 CZK @ 1,419,885 CZK\nFees are 0.29049214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (15.618729940829414645307945795 CZK)\nThe limits being 0.10 % (5.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54749102 BTC (365,876.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,419,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.47 % (411,497.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,827.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00411874 BTC (5,848.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.47 CZK over 3873 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005825 BTC for 82.71 CZK @ 1,419,885 CZK\nFees are 0.29049214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (15.618729940829414645307945795 CZK)\nThe limits being 0.10 % (5.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54749102 BTC (365,876.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,419,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.47 % (411,497.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,827.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00411874 BTC (5,848.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.47 CZK over 3873 transactions" + } + ] + }, + { + "id": 5572, + "type": "message", + "date": "2024-08-11T02:00:08", + "date_unixtime": "1723334408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005843 BTC for 82.54 CZK @ 1,412,583 CZK\nFees are 0.28989147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (15.538418255428267024681115668 CZK)\nThe limits being 0.10 % (5.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54754945 BTC (365,958.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.35 % (407,500.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,744.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00417717 BTC (5,900.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.47 CZK over 3874 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005843 BTC for 82.54 CZK @ 1,412,583 CZK\nFees are 0.28989147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (15.538418255428267024681115668 CZK)\nThe limits being 0.10 % (5.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54754945 BTC (365,958.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.35 % (407,500.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,744.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00417717 BTC (5,900.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.47 CZK over 3874 transactions" + } + ] + }, + { + "id": 5573, + "type": "message", + "date": "2024-08-11T06:00:07", + "date_unixtime": "1723348807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005822 BTC for 82.71 CZK @ 1,420,633 CZK\nFees are 0.29049566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (15.626967412065328889251754895 CZK)\nThe limits being 0.10 % (6.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54760767 BTC (366,041.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.53 % (411,907.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,661.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00423539 BTC (6,016.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.46 CZK over 3875 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005822 BTC for 82.71 CZK @ 1,420,633 CZK\nFees are 0.29049566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (15.626967412065328889251754895 CZK)\nThe limits being 0.10 % (6.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54760767 BTC (366,041.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.53 % (411,907.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,661.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00423539 BTC (6,016.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.46 CZK over 3875 transactions" + } + ] + }, + { + "id": 5574, + "type": "message", + "date": "2024-08-11T10:00:07", + "date_unixtime": "1723363207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005814 BTC for 82.70 CZK @ 1,422,457 CZK\nFees are 0.29046886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (15.647026259999187570027092997 CZK)\nThe limits being 0.10 % (6.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54766581 BTC (366,124.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.78 % (412,906.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,578.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00429353 BTC (6,107.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.46 CZK over 3876 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005814 BTC for 82.70 CZK @ 1,422,457 CZK\nFees are 0.29046886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (15.647026259999187570027092997 CZK)\nThe limits being 0.10 % (6.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54766581 BTC (366,124.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.78 % (412,906.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,578.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00429353 BTC (6,107.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.46 CZK over 3876 transactions" + } + ] + }, + { + "id": 5575, + "type": "message", + "date": "2024-08-11T14:00:06", + "date_unixtime": "1723377606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005861 BTC for 82.71 CZK @ 1,411,130 CZK\nFees are 0.29048526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (15.522427620543589672964280368 CZK)\nThe limits being 0.10 % (6.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54772442 BTC (366,207.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,411,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.06 % (406,702.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,495.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00435214 BTC (6,141.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.46 CZK over 3877 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005861 BTC for 82.71 CZK @ 1,411,130 CZK\nFees are 0.29048526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (15.522427620543589672964280368 CZK)\nThe limits being 0.10 % (6.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54772442 BTC (366,207.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,411,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.06 % (406,702.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,495.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00435214 BTC (6,141.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.46 CZK over 3877 transactions" + } + ] + }, + { + "id": 5576, + "type": "message", + "date": "2024-08-11T18:00:07", + "date_unixtime": "1723392007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005914 BTC for 82.70 CZK @ 1,398,439 CZK\nFees are 0.29047606 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (15.382831711936864868799580231 CZK)\nThe limits being 0.10 % (6.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54778356 BTC (366,290.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,398,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.13 % (399,751.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,412.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00441128 BTC (6,168.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.45 CZK over 3878 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005914 BTC for 82.70 CZK @ 1,398,439 CZK\nFees are 0.29047606 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (15.382831711936864868799580231 CZK)\nThe limits being 0.10 % (6.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54778356 BTC (366,290.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,398,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.13 % (399,751.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,412.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00441128 BTC (6,168.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.45 CZK over 3878 transactions" + } + ] + }, + { + "id": 5577, + "type": "message", + "date": "2024-08-11T22:00:07", + "date_unixtime": "1723406407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005963 BTC for 82.71 CZK @ 1,387,012 CZK\nFees are 0.29048947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (15.257130332783772643475489652 CZK)\nThe limits being 0.10 % (6.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54784319 BTC (366,373.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,387,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.40 % (393,491.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,329.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00447091 BTC (6,201.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.45 CZK over 3879 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005963 BTC for 82.71 CZK @ 1,387,012 CZK\nFees are 0.29048947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (15.257130332783772643475489652 CZK)\nThe limits being 0.10 % (6.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54784319 BTC (366,373.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,387,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.40 % (393,491.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,329.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00447091 BTC (6,201.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.45 CZK over 3879 transactions" + } + ] + }, + { + "id": 5578, + "type": "message", + "date": "2024-08-12T02:00:06", + "date_unixtime": "1723420806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006058 BTC for 82.71 CZK @ 1,365,299 CZK\nFees are 0.29049752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (15.018287788218291114805674361 CZK)\nThe limits being 0.10 % (6.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54790377 BTC (366,456.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,365,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.13 % (381,595.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,246.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00453149 BTC (6,186.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.45 CZK over 3880 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006058 BTC for 82.71 CZK @ 1,365,299 CZK\nFees are 0.29049752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (15.018287788218291114805674361 CZK)\nThe limits being 0.10 % (6.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54790377 BTC (366,456.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,365,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.13 % (381,595.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,246.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00453149 BTC (6,186.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.45 CZK over 3880 transactions" + } + ] + }, + { + "id": 5579, + "type": "message", + "date": "2024-08-12T06:00:06", + "date_unixtime": "1723435206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006080 BTC for 82.71 CZK @ 1,360,300 CZK\nFees are 0.29048509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.963305150886371384365247948 CZK)\nThe limits being 0.10 % (6.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54796457 BTC (366,539.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.36 % (378,856.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,163.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00459229 BTC (6,246.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.44 CZK over 3881 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006080 BTC for 82.71 CZK @ 1,360,300 CZK\nFees are 0.29048509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.963305150886371384365247948 CZK)\nThe limits being 0.10 % (6.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54796457 BTC (366,539.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.36 % (378,856.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,163.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00459229 BTC (6,246.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.44 CZK over 3881 transactions" + } + ] + }, + { + "id": 5580, + "type": "message", + "date": "2024-08-12T10:00:08", + "date_unixtime": "1723449608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006081 BTC for 82.70 CZK @ 1,359,929 CZK\nFees are 0.29045343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.959213983584997321084803746 CZK)\nThe limits being 0.10 % (6.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54802538 BTC (366,622.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 668,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,359,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.28 % (378,652.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,080.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00465310 BTC (6,327.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.44 CZK over 3882 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006081 BTC for 82.70 CZK @ 1,359,929 CZK\nFees are 0.29045343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.959213983584997321084803746 CZK)\nThe limits being 0.10 % (6.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54802538 BTC (366,622.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 668,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,359,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.28 % (378,652.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,080.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00465310 BTC (6,327.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.44 CZK over 3882 transactions" + } + ] + }, + { + "id": 5581, + "type": "message", + "date": "2024-08-12T14:00:06", + "date_unixtime": "1723464006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005970 BTC for 82.70 CZK @ 1,385,280 CZK\nFees are 0.29046725 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (15.238074978947219071607831550 CZK)\nThe limits being 0.10 % (6.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54808508 BTC (366,705.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,385,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.05 % (392,545.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,997.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00471280 BTC (6,528.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.44 CZK over 3883 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005970 BTC for 82.70 CZK @ 1,385,280 CZK\nFees are 0.29046725 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (15.238074978947219071607831550 CZK)\nThe limits being 0.10 % (6.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54808508 BTC (366,705.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,385,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.05 % (392,545.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,997.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00471280 BTC (6,528.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.44 CZK over 3883 transactions" + } + ] + }, + { + "id": 5582, + "type": "message", + "date": "2024-08-12T18:00:06", + "date_unixtime": "1723478406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005945 BTC for 82.70 CZK @ 1,391,103 CZK\nFees are 0.29046685 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (15.302133168393381784444100820 CZK)\nThe limits being 0.10 % (6.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54814453 BTC (366,788.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,391,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.89 % (395,736.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,914.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00477225 BTC (6,638.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.44 CZK over 3884 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005945 BTC for 82.70 CZK @ 1,391,103 CZK\nFees are 0.29046685 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (15.302133168393381784444100820 CZK)\nThe limits being 0.10 % (6.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54814453 BTC (366,788.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,391,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.89 % (395,736.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,914.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00477225 BTC (6,638.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.44 CZK over 3884 transactions" + } + ] + }, + { + "id": 5583, + "type": "message", + "date": "2024-08-12T22:00:06", + "date_unixtime": "1723492806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006052 BTC for 82.70 CZK @ 1,366,562 CZK\nFees are 0.29047830 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (15.032182316452890758090240009 CZK)\nThe limits being 0.10 % (6.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54820505 BTC (366,871.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,366,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.20 % (382,284.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,831.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00483277 BTC (6,604.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.43 CZK over 3885 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006052 BTC for 82.70 CZK @ 1,366,562 CZK\nFees are 0.29047830 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (15.032182316452890758090240009 CZK)\nThe limits being 0.10 % (6.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54820505 BTC (366,871.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,366,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.20 % (382,284.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,831.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00483277 BTC (6,604.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.43 CZK over 3885 transactions" + } + ] + }, + { + "id": 5584, + "type": "message", + "date": "2024-08-13T02:00:12", + "date_unixtime": "1723507212", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006019 BTC for 82.71 CZK @ 1,374,104 CZK\nFees are 0.29048874 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (15.115141477829755682325683004 CZK)\nThe limits being 0.10 % (6.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54826524 BTC (366,954.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,374,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.30 % (386,418.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,748.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00489296 BTC (6,723.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.43 CZK over 3886 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006019 BTC for 82.71 CZK @ 1,374,104 CZK\nFees are 0.29048874 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (15.115141477829755682325683004 CZK)\nThe limits being 0.10 % (6.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54826524 BTC (366,954.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,374,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.30 % (386,418.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,748.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00489296 BTC (6,723.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.43 CZK over 3886 transactions" + } + ] + }, + { + "id": 5585, + "type": "message", + "date": "2024-08-13T06:00:05", + "date_unixtime": "1723521605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006052 BTC for 82.71 CZK @ 1,366,625 CZK\nFees are 0.29049172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (15.032877043533356978269381686 CZK)\nThe limits being 0.10 % (6.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54832576 BTC (367,037.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,366,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.16 % (382,317.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,665.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00495348 BTC (6,769.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.43 CZK over 3887 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006052 BTC for 82.71 CZK @ 1,366,625 CZK\nFees are 0.29049172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (15.032877043533356978269381686 CZK)\nThe limits being 0.10 % (6.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54832576 BTC (367,037.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,366,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.16 % (382,317.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,665.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00495348 BTC (6,769.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.43 CZK over 3887 transactions" + } + ] + }, + { + "id": 5586, + "type": "message", + "date": "2024-08-13T10:00:05", + "date_unixtime": "1723536005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006033 BTC for 82.70 CZK @ 1,370,870 CZK\nFees are 0.29047913 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (15.079567072019025735468707196 CZK)\nThe limits being 0.10 % (6.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54838609 BTC (367,120.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.77 % (384,645.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,582.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00501381 BTC (6,873.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.42 CZK over 3888 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006033 BTC for 82.70 CZK @ 1,370,870 CZK\nFees are 0.29047913 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (15.079567072019025735468707196 CZK)\nThe limits being 0.10 % (6.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54838609 BTC (367,120.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.77 % (384,645.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,582.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00501381 BTC (6,873.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.42 CZK over 3888 transactions" + } + ] + }, + { + "id": 5587, + "type": "message", + "date": "2024-08-13T14:00:06", + "date_unixtime": "1723550406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006062 BTC for 82.71 CZK @ 1,364,360 CZK\nFees are 0.29048933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (30.015910220529696704884931772 CZK)\nThe limits being 0.10 % (6.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54844671 BTC (367,203.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,364,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.78 % (381,074.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,499.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00507443 BTC (6,923.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.42 CZK over 3889 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006062 BTC for 82.71 CZK @ 1,364,360 CZK\nFees are 0.29048933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (30.015910220529696704884931772 CZK)\nThe limits being 0.10 % (6.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54844671 BTC (367,203.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,364,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.78 % (381,074.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,499.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00507443 BTC (6,923.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.42 CZK over 3889 transactions" + } + ] + }, + { + "id": 5588, + "type": "message", + "date": "2024-08-13T18:00:07", + "date_unixtime": "1723564807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006011 BTC for 82.71 CZK @ 1,375,967 CZK\nFees are 0.29049609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (30.271282845426135791407830041 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54850682 BTC (367,286.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,375,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.49 % (387,440.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,416.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00513454 BTC (7,064.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.42 CZK over 3890 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006011 BTC for 82.71 CZK @ 1,375,967 CZK\nFees are 0.29049609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (30.271282845426135791407830041 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54850682 BTC (367,286.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,375,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.49 % (387,440.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,416.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00513454 BTC (7,064.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.42 CZK over 3890 transactions" + } + ] + }, + { + "id": 5589, + "type": "message", + "date": "2024-08-13T22:00:06", + "date_unixtime": "1723579206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005908 BTC for 82.71 CZK @ 1,399,944 CZK\nFees are 0.29049360 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (15.399383845943395812692138113 CZK)\nThe limits being 0.10 % (7.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54856590 BTC (367,369.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,399,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.04 % (400,591.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,333.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00519362 BTC (7,270.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.42 CZK over 3891 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005908 BTC for 82.71 CZK @ 1,399,944 CZK\nFees are 0.29049360 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (15.399383845943395812692138113 CZK)\nThe limits being 0.10 % (7.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54856590 BTC (367,369.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,399,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.04 % (400,591.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,333.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00519362 BTC (7,270.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.42 CZK over 3891 transactions" + } + ] + }, + { + "id": 5590, + "type": "message", + "date": "2024-08-14T02:00:05", + "date_unixtime": "1723593605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005928 BTC for 82.70 CZK @ 1,395,063 CZK\nFees are 0.29046071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (15.345691415067506641733689173 CZK)\nThe limits being 0.10 % (7.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54862518 BTC (367,452.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,395,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.29 % (397,913.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,250.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00525290 BTC (7,328.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.41 CZK over 3892 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005928 BTC for 82.70 CZK @ 1,395,063 CZK\nFees are 0.29046071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (15.345691415067506641733689173 CZK)\nThe limits being 0.10 % (7.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54862518 BTC (367,452.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,395,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.29 % (397,913.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,250.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00525290 BTC (7,328.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.41 CZK over 3892 transactions" + } + ] + }, + { + "id": 5591, + "type": "message", + "date": "2024-08-14T06:00:06", + "date_unixtime": "1723608006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005889 BTC for 82.70 CZK @ 1,404,254 CZK\nFees are 0.29045078 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (15.446790656373942686418557294 CZK)\nThe limits being 0.10 % (7.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54868407 BTC (367,535.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,404,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.64 % (402,955.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,167.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00531179 BTC (7,459.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.41 CZK over 3893 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005889 BTC for 82.70 CZK @ 1,404,254 CZK\nFees are 0.29045078 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (15.446790656373942686418557294 CZK)\nThe limits being 0.10 % (7.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54868407 BTC (367,535.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,404,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.64 % (402,955.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,167.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00531179 BTC (7,459.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.41 CZK over 3893 transactions" + } + ] + }, + { + "id": 5592, + "type": "message", + "date": "2024-08-14T10:00:08", + "date_unixtime": "1723622408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005910 BTC for 82.71 CZK @ 1,399,478 CZK\nFees are 0.29049518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (15.394256103637269556552067763 CZK)\nThe limits being 0.10 % (7.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54874317 BTC (367,618.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 669,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,399,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.90 % (400,335.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,084.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00537089 BTC (7,516.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.41 CZK over 3894 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005910 BTC for 82.71 CZK @ 1,399,478 CZK\nFees are 0.29049518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (15.394256103637269556552067763 CZK)\nThe limits being 0.10 % (7.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54874317 BTC (367,618.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 669,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,399,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.90 % (400,335.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,084.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00537089 BTC (7,516.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.41 CZK over 3894 transactions" + } + ] + }, + { + "id": 5593, + "type": "message", + "date": "2024-08-14T14:00:06", + "date_unixtime": "1723636806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005878 BTC for 82.70 CZK @ 1,406,937 CZK\nFees are 0.29046230 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (15.476311017088370356694746341 CZK)\nThe limits being 0.10 % (7.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54880195 BTC (367,701.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,406,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.99 % (404,428.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,001.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00542967 BTC (7,639.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.40 CZK over 3895 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005878 BTC for 82.70 CZK @ 1,406,937 CZK\nFees are 0.29046230 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (15.476311017088370356694746341 CZK)\nThe limits being 0.10 % (7.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54880195 BTC (367,701.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,406,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.99 % (404,428.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,001.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00542967 BTC (7,639.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.40 CZK over 3895 transactions" + } + ] + }, + { + "id": 5594, + "type": "message", + "date": "2024-08-14T18:00:06", + "date_unixtime": "1723651206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006067 BTC for 82.70 CZK @ 1,363,123 CZK\nFees are 0.29046554 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.994358320297945159635358986 CZK)\nThe limits being 0.10 % (7.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54886262 BTC (367,784.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.43 % (380,382.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,918.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00549034 BTC (7,484.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.40 CZK over 3896 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006067 BTC for 82.70 CZK @ 1,363,123 CZK\nFees are 0.29046554 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.994358320297945159635358986 CZK)\nThe limits being 0.10 % (7.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54886262 BTC (367,784.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.43 % (380,382.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,918.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00549034 BTC (7,484.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.40 CZK over 3896 transactions" + } + ] + }, + { + "id": 5595, + "type": "message", + "date": "2024-08-14T22:00:07", + "date_unixtime": "1723665607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006120 BTC for 82.70 CZK @ 1,351,309 CZK\nFees are 0.29046349 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.864400363433863829537794191 CZK)\nThe limits being 0.10 % (7.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54892382 BTC (367,867.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,351,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.64 % (373,897.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,835.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00555154 BTC (7,501.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.40 CZK over 3897 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006120 BTC for 82.70 CZK @ 1,351,309 CZK\nFees are 0.29046349 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.864400363433863829537794191 CZK)\nThe limits being 0.10 % (7.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54892382 BTC (367,867.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,351,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.64 % (373,897.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,835.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00555154 BTC (7,501.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.40 CZK over 3897 transactions" + } + ] + }, + { + "id": 5596, + "type": "message", + "date": "2024-08-15T02:00:10", + "date_unixtime": "1723680010", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006138 BTC for 82.70 CZK @ 1,347,349 CZK\nFees are 0.29046413 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.820842117106257132295031905 CZK)\nThe limits being 0.10 % (7.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54898520 BTC (367,950.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.03 % (371,724.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,752.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00561292 BTC (7,562.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.39 CZK over 3898 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006138 BTC for 82.70 CZK @ 1,347,349 CZK\nFees are 0.29046413 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.820842117106257132295031905 CZK)\nThe limits being 0.10 % (7.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54898520 BTC (367,950.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.03 % (371,724.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,752.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00561292 BTC (7,562.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.39 CZK over 3898 transactions" + } + ] + }, + { + "id": 5597, + "type": "message", + "date": "2024-08-15T06:00:09", + "date_unixtime": "1723694409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006167 BTC for 82.70 CZK @ 1,341,071 CZK\nFees are 0.29047652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.751777485950139325075063612 CZK)\nThe limits being 0.10 % (7.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54904687 BTC (368,033.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.07 % (368,276.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,669.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00567459 BTC (7,610.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.39 CZK over 3899 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006167 BTC for 82.70 CZK @ 1,341,071 CZK\nFees are 0.29047652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.751777485950139325075063612 CZK)\nThe limits being 0.10 % (7.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54904687 BTC (368,033.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.07 % (368,276.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,669.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00567459 BTC (7,610.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.39 CZK over 3899 transactions" + } + ] + }, + { + "id": 5598, + "type": "message", + "date": "2024-08-15T10:00:07", + "date_unixtime": "1723708807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006187 BTC for 82.70 CZK @ 1,336,691 CZK\nFees are 0.29046680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.703598758313898768243586432 CZK)\nThe limits being 0.10 % (7.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54910874 BTC (368,116.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.39 % (365,871.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,586.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00573646 BTC (7,667.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.39 CZK over 3900 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006187 BTC for 82.70 CZK @ 1,336,691 CZK\nFees are 0.29046680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.703598758313898768243586432 CZK)\nThe limits being 0.10 % (7.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54910874 BTC (368,116.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.39 % (365,871.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,586.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00573646 BTC (7,667.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.39 CZK over 3900 transactions" + } + ] + }, + { + "id": 5599, + "type": "message", + "date": "2024-08-15T14:00:07", + "date_unixtime": "1723723207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006126 BTC for 82.70 CZK @ 1,349,979 CZK\nFees are 0.29046203 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.849766998170458244332885830 CZK)\nThe limits being 0.10 % (7.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54917000 BTC (368,199.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,349,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.35 % (373,168.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,503.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00579772 BTC (7,826.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.39 CZK over 3901 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006126 BTC for 82.70 CZK @ 1,349,979 CZK\nFees are 0.29046203 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.849766998170458244332885830 CZK)\nThe limits being 0.10 % (7.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54917000 BTC (368,199.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,349,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.35 % (373,168.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,503.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00579772 BTC (7,826.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.39 CZK over 3901 transactions" + } + ] + }, + { + "id": 5600, + "type": "message", + "date": "2024-08-15T18:00:06", + "date_unixtime": "1723737606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006014 BTC for 82.70 CZK @ 1,375,201 CZK\nFees are 0.29047930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.127216484737737837754092799 CZK)\nThe limits being 0.10 % (8.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54923014 BTC (368,282.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,375,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.09 % (387,019.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,420.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00585786 BTC (8,055.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.38 CZK over 3902 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006014 BTC for 82.70 CZK @ 1,375,201 CZK\nFees are 0.29047930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.127216484737737837754092799 CZK)\nThe limits being 0.10 % (8.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54923014 BTC (368,282.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,375,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.09 % (387,019.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,420.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00585786 BTC (8,055.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.38 CZK over 3902 transactions" + } + ] + }, + { + "id": 5601, + "type": "message", + "date": "2024-08-15T22:00:08", + "date_unixtime": "1723752008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006274 BTC for 82.70 CZK @ 1,318,160 CZK\nFees are 0.29046779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.499757193304467198722228019 CZK)\nThe limits being 0.10 % (7.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54929288 BTC (368,365.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,318,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.56 % (355,690.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,337.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00592060 BTC (7,804.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.38 CZK over 3903 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006274 BTC for 82.70 CZK @ 1,318,160 CZK\nFees are 0.29046779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.499757193304467198722228019 CZK)\nThe limits being 0.10 % (7.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54929288 BTC (368,365.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,318,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.56 % (355,690.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,337.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00592060 BTC (7,804.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.38 CZK over 3903 transactions" + } + ] + }, + { + "id": 5602, + "type": "message", + "date": "2024-08-16T02:00:06", + "date_unixtime": "1723766406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006221 BTC for 82.70 CZK @ 1,329,433 CZK\nFees are 0.29047717 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.247520705340342717864103191 CZK)\nThe limits being 0.10 % (7.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54935509 BTC (368,448.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.22 % (361,881.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,254.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00598281 BTC (7,953.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.38 CZK over 3904 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006221 BTC for 82.70 CZK @ 1,329,433 CZK\nFees are 0.29047717 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (29.247520705340342717864103191 CZK)\nThe limits being 0.10 % (7.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54935509 BTC (368,448.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.22 % (361,881.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,254.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00598281 BTC (7,953.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.38 CZK over 3904 transactions" + } + ] + }, + { + "id": 5603, + "type": "message", + "date": "2024-08-16T06:00:08", + "date_unixtime": "1723780808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006187 BTC for 82.71 CZK @ 1,336,779 CZK\nFees are 0.29048597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (29.409138337138908277147649303 CZK)\nThe limits being 0.10 % (8.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54941696 BTC (368,531.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.29 % (365,917.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,171.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00604468 BTC (8,080.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.37 CZK over 3905 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006187 BTC for 82.71 CZK @ 1,336,779 CZK\nFees are 0.29048597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (29.409138337138908277147649303 CZK)\nThe limits being 0.10 % (8.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54941696 BTC (368,531.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.29 % (365,917.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,171.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00604468 BTC (8,080.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.37 CZK over 3905 transactions" + } + ] + }, + { + "id": 5604, + "type": "message", + "date": "2024-08-16T10:00:07", + "date_unixtime": "1723795207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006119 BTC for 82.71 CZK @ 1,351,651 CZK\nFees are 0.29048950 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (29.736321417284967558796703774 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54947815 BTC (368,614.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,351,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.48 % (374,087.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,088.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00610587 BTC (8,253.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.37 CZK over 3906 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006119 BTC for 82.71 CZK @ 1,351,651 CZK\nFees are 0.29048950 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (29.736321417284967558796703774 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54947815 BTC (368,614.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,351,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.48 % (374,087.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,088.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00610587 BTC (8,253.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.37 CZK over 3906 transactions" + } + ] + }, + { + "id": 5605, + "type": "message", + "date": "2024-08-16T14:00:06", + "date_unixtime": "1723809606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006141 BTC for 82.70 CZK @ 1,346,713 CZK\nFees are 0.29046879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (14.813839715855278386906209313 CZK)\nThe limits being 0.10 % (8.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54953956 BTC (368,697.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.73 % (371,374.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,005.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00616728 BTC (8,305.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.37 CZK over 3907 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006141 BTC for 82.70 CZK @ 1,346,713 CZK\nFees are 0.29046879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (14.813839715855278386906209313 CZK)\nThe limits being 0.10 % (8.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54953956 BTC (368,697.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.73 % (371,374.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,005.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00616728 BTC (8,305.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.37 CZK over 3907 transactions" + } + ] + }, + { + "id": 5606, + "type": "message", + "date": "2024-08-16T18:00:08", + "date_unixtime": "1723824008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006187 BTC for 82.70 CZK @ 1,336,691 CZK\nFees are 0.29046680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (14.703598758313898768243586432 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54960143 BTC (368,780.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 670,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.21 % (365,866.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,922.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00622915 BTC (8,326.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.37 CZK over 3908 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006187 BTC for 82.70 CZK @ 1,336,691 CZK\nFees are 0.29046680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (14.703598758313898768243586432 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54960143 BTC (368,780.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 670,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.21 % (365,866.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,922.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00622915 BTC (8,326.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.37 CZK over 3908 transactions" + } + ] + }, + { + "id": 5607, + "type": "message", + "date": "2024-08-16T22:00:06", + "date_unixtime": "1723838406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006035 BTC for 82.70 CZK @ 1,370,385 CZK\nFees are 0.29047258 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (15.074229808594525622624046989 CZK)\nThe limits being 0.10 % (8.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54966178 BTC (368,863.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.21 % (384,384.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,839.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00628950 BTC (8,619.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.36 CZK over 3909 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006035 BTC for 82.70 CZK @ 1,370,385 CZK\nFees are 0.29047258 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (15.074229808594525622624046989 CZK)\nThe limits being 0.10 % (8.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54966178 BTC (368,863.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.21 % (384,384.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,839.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00628950 BTC (8,619.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.36 CZK over 3909 transactions" + } + ] + }, + { + "id": 5608, + "type": "message", + "date": "2024-08-17T02:00:07", + "date_unixtime": "1723852807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006123 BTC for 82.71 CZK @ 1,350,814 CZK\nFees are 0.29049937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.858952826628928425506643780 CZK)\nThe limits being 0.10 % (8.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54972301 BTC (368,946.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,350,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.27 % (373,626.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,756.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00635073 BTC (8,578.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.36 CZK over 3910 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006123 BTC for 82.71 CZK @ 1,350,814 CZK\nFees are 0.29049937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.858952826628928425506643780 CZK)\nThe limits being 0.10 % (8.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54972301 BTC (368,946.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,350,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.27 % (373,626.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,756.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00635073 BTC (8,578.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.36 CZK over 3910 transactions" + } + ] + }, + { + "id": 5609, + "type": "message", + "date": "2024-08-17T06:00:06", + "date_unixtime": "1723867206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006090 BTC for 82.71 CZK @ 1,358,131 CZK\nFees are 0.29049884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.939441849094671114154645931 CZK)\nThe limits being 0.10 % (8.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54978391 BTC (369,029.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,358,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.34 % (377,648.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,673.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00641163 BTC (8,707.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.36 CZK over 3911 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006090 BTC for 82.71 CZK @ 1,358,131 CZK\nFees are 0.29049884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.939441849094671114154645931 CZK)\nThe limits being 0.10 % (8.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54978391 BTC (369,029.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,358,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.34 % (377,648.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,673.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00641163 BTC (8,707.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.36 CZK over 3911 transactions" + } + ] + }, + { + "id": 5610, + "type": "message", + "date": "2024-08-17T10:00:06", + "date_unixtime": "1723881606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006080 BTC for 82.71 CZK @ 1,360,333 CZK\nFees are 0.29049194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.963658028970970025961765401 CZK)\nThe limits being 0.10 % (8.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54984471 BTC (369,112.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.64 % (378,858.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,590.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00647243 BTC (8,804.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.35 CZK over 3912 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006080 BTC for 82.71 CZK @ 1,360,333 CZK\nFees are 0.29049194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.963658028970970025961765401 CZK)\nThe limits being 0.10 % (8.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54984471 BTC (369,112.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.64 % (378,858.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,590.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00647243 BTC (8,804.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.35 CZK over 3912 transactions" + } + ] + }, + { + "id": 5611, + "type": "message", + "date": "2024-08-17T14:00:06", + "date_unixtime": "1723896006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006094 BTC for 82.70 CZK @ 1,357,052 CZK\nFees are 0.29045877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.927576361795089029551803345 CZK)\nThe limits being 0.10 % (8.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54990565 BTC (369,195.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,357,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.13 % (377,055.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,507.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00653337 BTC (8,866.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.35 CZK over 3913 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006094 BTC for 82.70 CZK @ 1,357,052 CZK\nFees are 0.29045877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.927576361795089029551803345 CZK)\nThe limits being 0.10 % (8.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54990565 BTC (369,195.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,357,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.13 % (377,055.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,507.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00653337 BTC (8,866.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.35 CZK over 3913 transactions" + } + ] + }, + { + "id": 5612, + "type": "message", + "date": "2024-08-17T18:00:06", + "date_unixtime": "1723910406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006065 BTC for 82.70 CZK @ 1,363,614 CZK\nFees are 0.29047421 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.999750721115830783519018965 CZK)\nThe limits being 0.10 % (8.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.54996630 BTC (369,278.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.08 % (380,662.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,424.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00659402 BTC (8,991.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.35 CZK over 3914 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006065 BTC for 82.70 CZK @ 1,363,614 CZK\nFees are 0.29047421 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.999750721115830783519018965 CZK)\nThe limits being 0.10 % (8.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.54996630 BTC (369,278.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.08 % (380,662.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,424.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00659402 BTC (8,991.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.35 CZK over 3914 transactions" + } + ] + }, + { + "id": 5613, + "type": "message", + "date": "2024-08-17T22:00:07", + "date_unixtime": "1723924807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006061 BTC for 82.70 CZK @ 1,364,505 CZK\nFees are 0.29047236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (15.009554083394145897706484653 CZK)\nThe limits being 0.10 % (9.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55002691 BTC (369,361.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,364,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.19 % (381,152.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,341.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00665463 BTC (9,080.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.35 CZK over 3915 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006061 BTC for 82.70 CZK @ 1,364,505 CZK\nFees are 0.29047236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (15.009554083394145897706484653 CZK)\nThe limits being 0.10 % (9.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55002691 BTC (369,361.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,364,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.19 % (381,152.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,341.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00665463 BTC (9,080.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.35 CZK over 3915 transactions" + } + ] + }, + { + "id": 5614, + "type": "message", + "date": "2024-08-18T02:00:08", + "date_unixtime": "1723939208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006057 BTC for 82.71 CZK @ 1,365,505 CZK\nFees are 0.29049350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.020559433430903345637141395 CZK)\nThe limits being 0.10 % (9.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55008748 BTC (369,444.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,365,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.32 % (381,702.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,258.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00671520 BTC (9,169.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.34 CZK over 3916 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006057 BTC for 82.71 CZK @ 1,365,505 CZK\nFees are 0.29049350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.020559433430903345637141395 CZK)\nThe limits being 0.10 % (9.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55008748 BTC (369,444.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,365,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.32 % (381,702.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,258.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00671520 BTC (9,169.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.34 CZK over 3916 transactions" + } + ] + }, + { + "id": 5615, + "type": "message", + "date": "2024-08-18T06:00:06", + "date_unixtime": "1723953606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006069 BTC for 82.70 CZK @ 1,362,648 CZK\nFees are 0.29046000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.989131331491534449003376959 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55014817 BTC (369,527.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,362,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.87 % (380,130.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,175.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00677589 BTC (9,233.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.34 CZK over 3917 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006069 BTC for 82.70 CZK @ 1,362,648 CZK\nFees are 0.29046000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.989131331491534449003376959 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55014817 BTC (369,527.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,362,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.87 % (380,130.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,175.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00677589 BTC (9,233.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.34 CZK over 3917 transactions" + } + ] + }, + { + "id": 5616, + "type": "message", + "date": "2024-08-18T10:00:06", + "date_unixtime": "1723968006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006047 BTC for 82.70 CZK @ 1,367,635 CZK\nFees are 0.29046613 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.043981639258461104671766891 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55020864 BTC (369,610.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,367,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.59 % (382,873.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,092.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00683636 BTC (9,349.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.34 CZK over 3918 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006047 BTC for 82.70 CZK @ 1,367,635 CZK\nFees are 0.29046613 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.043981639258461104671766891 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55020864 BTC (369,610.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,367,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.59 % (382,873.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,092.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00683636 BTC (9,349.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.34 CZK over 3918 transactions" + } + ] + }, + { + "id": 5617, + "type": "message", + "date": "2024-08-18T14:00:06", + "date_unixtime": "1723982406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006007 BTC for 82.70 CZK @ 1,376,678 CZK\nFees are 0.29045274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.143459851067294102736311042 CZK)\nThe limits being 0.10 % (9.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55026871 BTC (369,693.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,376,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.91 % (387,849.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,009.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00689643 BTC (9,494.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.33 CZK over 3919 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006007 BTC for 82.70 CZK @ 1,376,678 CZK\nFees are 0.29045274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.143459851067294102736311042 CZK)\nThe limits being 0.10 % (9.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55026871 BTC (369,693.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,376,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.91 % (387,849.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,009.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00689643 BTC (9,494.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.33 CZK over 3919 transactions" + } + ] + }, + { + "id": 5618, + "type": "message", + "date": "2024-08-18T18:00:07", + "date_unixtime": "1723996807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006021 BTC for 82.70 CZK @ 1,373,573 CZK\nFees are 0.29047311 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.109307981771489539145791590 CZK)\nThe limits being 0.10 % (9.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55032892 BTC (369,776.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,373,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.43 % (386,140.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,926.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00695664 BTC (9,555.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.33 CZK over 3920 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006021 BTC for 82.70 CZK @ 1,373,573 CZK\nFees are 0.29047311 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.109307981771489539145791590 CZK)\nThe limits being 0.10 % (9.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55032892 BTC (369,776.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,373,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.43 % (386,140.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,926.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00695664 BTC (9,555.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.33 CZK over 3920 transactions" + } + ] + }, + { + "id": 5619, + "type": "message", + "date": "2024-08-18T22:00:07", + "date_unixtime": "1724011207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006037 BTC for 82.71 CZK @ 1,370,059 CZK\nFees are 0.29049976 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.070645902996956403787670766 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55038929 BTC (369,859.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 671,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.88 % (384,206.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,843.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00701701 BTC (9,613.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.33 CZK over 3921 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006037 BTC for 82.71 CZK @ 1,370,059 CZK\nFees are 0.29049976 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.070645902996956403787670766 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55038929 BTC (369,859.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 671,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.88 % (384,206.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,843.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00701701 BTC (9,613.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.33 CZK over 3921 transactions" + } + ] + }, + { + "id": 5620, + "type": "message", + "date": "2024-08-19T02:00:07", + "date_unixtime": "1724025607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006154 BTC for 82.70 CZK @ 1,343,904 CZK\nFees are 0.29047654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.782940930500155532982627104 CZK)\nThe limits being 0.10 % (9.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55045083 BTC (369,942.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,343,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.96 % (369,810.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,761.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00707855 BTC (9,512.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.32 CZK over 3922 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006154 BTC for 82.70 CZK @ 1,343,904 CZK\nFees are 0.29047654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.782940930500155532982627104 CZK)\nThe limits being 0.10 % (9.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55045083 BTC (369,942.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,343,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.96 % (369,810.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,761.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00707855 BTC (9,512.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.32 CZK over 3922 transactions" + } + ] + }, + { + "id": 5621, + "type": "message", + "date": "2024-08-19T06:00:06", + "date_unixtime": "1724040006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006144 BTC for 82.70 CZK @ 1,345,983 CZK\nFees are 0.29045320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.805811766402227619996678292 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55051227 BTC (370,025.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.25 % (370,954.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,678.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00713999 BTC (9,610.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.32 CZK over 3923 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006144 BTC for 82.70 CZK @ 1,345,983 CZK\nFees are 0.29045320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.805811766402227619996678292 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55051227 BTC (370,025.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.25 % (370,954.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,678.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00713999 BTC (9,610.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.32 CZK over 3923 transactions" + } + ] + }, + { + "id": 5622, + "type": "message", + "date": "2024-08-19T10:00:07", + "date_unixtime": "1724054407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006154 BTC for 82.70 CZK @ 1,343,821 CZK\nFees are 0.29045856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.782025655412426348534111759 CZK)\nThe limits being 0.10 % (9.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55057381 BTC (370,108.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,343,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.91 % (369,763.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,595.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00720153 BTC (9,677.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.32 CZK over 3924 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006154 BTC for 82.70 CZK @ 1,343,821 CZK\nFees are 0.29045856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.782025655412426348534111759 CZK)\nThe limits being 0.10 % (9.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55057381 BTC (370,108.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,343,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.91 % (369,763.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,595.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00720153 BTC (9,677.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.32 CZK over 3924 transactions" + } + ] + }, + { + "id": 5623, + "type": "message", + "date": "2024-08-19T14:00:06", + "date_unixtime": "1724068806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006187 BTC for 82.70 CZK @ 1,336,691 CZK\nFees are 0.29046680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.703598758313898768243586432 CZK)\nThe limits being 0.10 % (9.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55063568 BTC (370,191.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,336,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.82 % (365,838.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,512.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00726340 BTC (9,708.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.32 CZK over 3925 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006187 BTC for 82.70 CZK @ 1,336,691 CZK\nFees are 0.29046680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.703598758313898768243586432 CZK)\nThe limits being 0.10 % (9.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55063568 BTC (370,191.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,336,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.82 % (365,838.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,512.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00726340 BTC (9,708.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.32 CZK over 3925 transactions" + } + ] + }, + { + "id": 5624, + "type": "message", + "date": "2024-08-19T18:00:06", + "date_unixtime": "1724083206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006182 BTC for 82.70 CZK @ 1,337,739 CZK\nFees are 0.29045974 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.715133422700264377171004687 CZK)\nThe limits being 0.10 % (9.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55069750 BTC (370,274.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.96 % (366,415.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,429.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00732522 BTC (9,799.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.31 CZK over 3926 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006182 BTC for 82.70 CZK @ 1,337,739 CZK\nFees are 0.29045974 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.715133422700264377171004687 CZK)\nThe limits being 0.10 % (9.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55069750 BTC (370,274.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.96 % (366,415.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,429.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00732522 BTC (9,799.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.31 CZK over 3926 transactions" + } + ] + }, + { + "id": 5625, + "type": "message", + "date": "2024-08-19T22:00:06", + "date_unixtime": "1724097606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006154 BTC for 82.71 CZK @ 1,343,959 CZK\nFees are 0.29048846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (29.567094876090977645837877471 CZK)\nThe limits being 0.10 % (9.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55075904 BTC (370,357.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,343,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.86 % (369,839.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,346.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00738676 BTC (9,927.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.31 CZK over 3927 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006154 BTC for 82.71 CZK @ 1,343,959 CZK\nFees are 0.29048846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (29.567094876090977645837877471 CZK)\nThe limits being 0.10 % (9.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55075904 BTC (370,357.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,343,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.86 % (369,839.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,346.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00738676 BTC (9,927.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.31 CZK over 3927 transactions" + } + ] + }, + { + "id": 5626, + "type": "message", + "date": "2024-08-20T02:00:07", + "date_unixtime": "1724112007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006104 BTC for 82.71 CZK @ 1,354,977 CZK\nFees are 0.29049051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (29.809499270247449784208742534 CZK)\nThe limits being 0.10 % (10.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55082008 BTC (370,440.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,354,977 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.48 % (375,908.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,263.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00744780 BTC (10,091.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.31 CZK over 3928 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006104 BTC for 82.71 CZK @ 1,354,977 CZK\nFees are 0.29049051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (29.809499270247449784208742534 CZK)\nThe limits being 0.10 % (10.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55082008 BTC (370,440.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,354,977 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.48 % (375,908.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,263.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00744780 BTC (10,091.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.31 CZK over 3928 transactions" + } + ] + }, + { + "id": 5627, + "type": "message", + "date": "2024-08-20T06:00:07", + "date_unixtime": "1724126407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005986 BTC for 82.70 CZK @ 1,381,540 CZK\nFees are 0.29045956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (30.393885524619728045059798224 CZK)\nThe limits being 0.10 % (10.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55087994 BTC (370,523.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,381,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.40 % (390,539.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,180.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00750766 BTC (10,372.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.30 CZK over 3929 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005986 BTC for 82.70 CZK @ 1,381,540 CZK\nFees are 0.29045956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (30.393885524619728045059798224 CZK)\nThe limits being 0.10 % (10.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55087994 BTC (370,523.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,381,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.40 % (390,539.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,180.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00750766 BTC (10,372.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.30 CZK over 3929 transactions" + } + ] + }, + { + "id": 5628, + "type": "message", + "date": "2024-08-20T10:00:07", + "date_unixtime": "1724140807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005959 BTC for 82.70 CZK @ 1,387,819 CZK\nFees are 0.29046352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.266007394157368157580370032 CZK)\nThe limits being 0.10 % (10.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55093953 BTC (370,606.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,387,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.31 % (393,997.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,097.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00756725 BTC (10,501.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.30 CZK over 3930 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005959 BTC for 82.70 CZK @ 1,387,819 CZK\nFees are 0.29046352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.266007394157368157580370032 CZK)\nThe limits being 0.10 % (10.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55093953 BTC (370,606.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,387,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.31 % (393,997.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,097.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00756725 BTC (10,501.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.30 CZK over 3930 transactions" + } + ] + }, + { + "id": 5629, + "type": "message", + "date": "2024-08-20T14:00:06", + "date_unixtime": "1724155206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005990 BTC for 82.70 CZK @ 1,380,676 CZK\nFees are 0.29047185 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.187437139460968413557556897 CZK)\nThe limits being 0.10 % (10.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55099943 BTC (370,689.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.23 % (390,062.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,014.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00762715 BTC (10,530.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.30 CZK over 3931 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005990 BTC for 82.70 CZK @ 1,380,676 CZK\nFees are 0.29047185 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.187437139460968413557556897 CZK)\nThe limits being 0.10 % (10.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55099943 BTC (370,689.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.23 % (390,062.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,014.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00762715 BTC (10,530.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.30 CZK over 3931 transactions" + } + ] + }, + { + "id": 5630, + "type": "message", + "date": "2024-08-20T18:00:06", + "date_unixtime": "1724169606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006182 BTC for 82.71 CZK @ 1,337,919 CZK\nFees are 0.29049870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (29.434214654403537795651163987 CZK)\nThe limits being 0.10 % (10.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55106125 BTC (370,772.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.85 % (366,502.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,931.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00768897 BTC (10,287.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.30 CZK over 3932 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006182 BTC for 82.71 CZK @ 1,337,919 CZK\nFees are 0.29049870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (29.434214654403537795651163987 CZK)\nThe limits being 0.10 % (10.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55106125 BTC (370,772.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.85 % (366,502.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,931.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00768897 BTC (10,287.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.30 CZK over 3932 transactions" + } + ] + }, + { + "id": 5631, + "type": "message", + "date": "2024-08-20T22:00:06", + "date_unixtime": "1724184006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006128 BTC for 82.70 CZK @ 1,349,533 CZK\nFees are 0.29046084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.689719607678607901066892506 CZK)\nThe limits being 0.10 % (10.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55112253 BTC (370,855.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,349,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.55 % (372,902.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,848.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00775025 BTC (10,459.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.29 CZK over 3933 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006128 BTC for 82.70 CZK @ 1,349,533 CZK\nFees are 0.29046084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.689719607678607901066892506 CZK)\nThe limits being 0.10 % (10.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55112253 BTC (370,855.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,349,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.55 % (372,902.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,848.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00775025 BTC (10,459.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.29 CZK over 3933 transactions" + } + ] + }, + { + "id": 5632, + "type": "message", + "date": "2024-08-21T02:00:06", + "date_unixtime": "1724198406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006170 BTC for 82.71 CZK @ 1,340,462 CZK\nFees are 0.29048596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.490167702829400178790763930 CZK)\nThe limits being 0.10 % (10.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55118423 BTC (370,938.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 672,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,340,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.18 % (367,903.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,765.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00781195 BTC (10,471.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.29 CZK over 3934 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006170 BTC for 82.71 CZK @ 1,340,462 CZK\nFees are 0.29048596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.490167702829400178790763930 CZK)\nThe limits being 0.10 % (10.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55118423 BTC (370,938.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 672,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,340,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.18 % (367,903.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,765.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00781195 BTC (10,471.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.29 CZK over 3934 transactions" + } + ] + }, + { + "id": 5633, + "type": "message", + "date": "2024-08-21T06:00:06", + "date_unixtime": "1724212806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006138 BTC for 82.71 CZK @ 1,347,514 CZK\nFees are 0.29049957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.645301223495543375961911089 CZK)\nThe limits being 0.10 % (10.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55124561 BTC (371,021.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.21 % (371,789.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,682.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00787333 BTC (10,609.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.29 CZK over 3935 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006138 BTC for 82.71 CZK @ 1,347,514 CZK\nFees are 0.29049957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.645301223495543375961911089 CZK)\nThe limits being 0.10 % (10.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55124561 BTC (371,021.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.21 % (371,789.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,682.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00787333 BTC (10,609.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.29 CZK over 3935 transactions" + } + ] + }, + { + "id": 5634, + "type": "message", + "date": "2024-08-21T10:00:06", + "date_unixtime": "1724227206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006103 BTC for 82.70 CZK @ 1,355,121 CZK\nFees are 0.29047365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.812653108842955929847695934 CZK)\nThe limits being 0.10 % (10.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55130664 BTC (371,104.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,355,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.31 % (375,982.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,599.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00793436 BTC (10,752.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.28 CZK over 3936 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006103 BTC for 82.70 CZK @ 1,355,121 CZK\nFees are 0.29047365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.812653108842955929847695934 CZK)\nThe limits being 0.10 % (10.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55130664 BTC (371,104.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,355,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.31 % (375,982.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,599.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00793436 BTC (10,752.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.28 CZK over 3936 transactions" + } + ] + }, + { + "id": 5635, + "type": "message", + "date": "2024-08-21T14:00:07", + "date_unixtime": "1724241607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006140 BTC for 82.70 CZK @ 1,346,950 CZK\nFees are 0.29047273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.632906421660994337408646286 CZK)\nThe limits being 0.10 % (10.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55136804 BTC (371,187.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.08 % (371,477.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,516.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00799576 BTC (10,769.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.28 CZK over 3937 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006140 BTC for 82.70 CZK @ 1,346,950 CZK\nFees are 0.29047273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (29.632906421660994337408646286 CZK)\nThe limits being 0.10 % (10.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55136804 BTC (371,187.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.08 % (371,477.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,516.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00799576 BTC (10,769.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.28 CZK over 3937 transactions" + } + ] + }, + { + "id": 5636, + "type": "message", + "date": "2024-08-21T18:00:08", + "date_unixtime": "1724256008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006146 BTC for 82.70 CZK @ 1,345,627 CZK\nFees are 0.29047093 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (29.603794077059611243498390192 CZK)\nThe limits being 0.10 % (10.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55142950 BTC (371,270.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.86 % (370,747.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,433.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00805722 BTC (10,842.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.28 CZK over 3938 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006146 BTC for 82.70 CZK @ 1,345,627 CZK\nFees are 0.29047093 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (29.603794077059611243498390192 CZK)\nThe limits being 0.10 % (10.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55142950 BTC (371,270.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.86 % (370,747.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,433.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00805722 BTC (10,842.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.28 CZK over 3938 transactions" + } + ] + }, + { + "id": 5637, + "type": "message", + "date": "2024-08-21T22:00:07", + "date_unixtime": "1724270407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005960 BTC for 82.70 CZK @ 1,387,605 CZK\nFees are 0.29046756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (30.527317112923559488100373523 CZK)\nThe limits being 0.10 % (11.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55148910 BTC (371,353.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,387,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.07 % (393,895.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,350.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00811682 BTC (11,262.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.28 CZK over 3939 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005960 BTC for 82.70 CZK @ 1,387,605 CZK\nFees are 0.29046756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (30.527317112923559488100373523 CZK)\nThe limits being 0.10 % (11.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55148910 BTC (371,353.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,387,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.07 % (393,895.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,350.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00811682 BTC (11,262.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.28 CZK over 3939 transactions" + } + ] + }, + { + "id": 5638, + "type": "message", + "date": "2024-08-22T02:00:07", + "date_unixtime": "1724284807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005996 BTC for 82.71 CZK @ 1,379,422 CZK\nFees are 0.29049870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.173641857235499633869847794 CZK)\nThe limits being 0.10 % (11.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55154906 BTC (371,436.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,379,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.83 % (389,382.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,267.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00817678 BTC (11,279.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.27 CZK over 3940 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005996 BTC for 82.71 CZK @ 1,379,422 CZK\nFees are 0.29049870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.173641857235499633869847794 CZK)\nThe limits being 0.10 % (11.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55154906 BTC (371,436.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,379,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.83 % (389,382.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,267.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00817678 BTC (11,279.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.27 CZK over 3940 transactions" + } + ] + }, + { + "id": 5639, + "type": "message", + "date": "2024-08-22T06:00:08", + "date_unixtime": "1724299208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006046 BTC for 82.70 CZK @ 1,367,827 CZK\nFees are 0.29045897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.046098901611478581168358645 CZK)\nThe limits being 0.10 % (11.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55160952 BTC (371,519.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,367,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.09 % (382,987.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,184.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00823724 BTC (11,267.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.27 CZK over 3941 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006046 BTC for 82.70 CZK @ 1,367,827 CZK\nFees are 0.29045897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.046098901611478581168358645 CZK)\nThe limits being 0.10 % (11.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55160952 BTC (371,519.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,367,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.09 % (382,987.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,184.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00823724 BTC (11,267.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.27 CZK over 3941 transactions" + } + ] + }, + { + "id": 5640, + "type": "message", + "date": "2024-08-22T10:00:07", + "date_unixtime": "1724313607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005992 BTC for 82.71 CZK @ 1,380,281 CZK\nFees are 0.29048571 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.183092342522133813362177640 CZK)\nThe limits being 0.10 % (11.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55166944 BTC (371,602.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.91 % (389,856.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,101.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00829716 BTC (11,452.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.27 CZK over 3942 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005992 BTC for 82.71 CZK @ 1,380,281 CZK\nFees are 0.29048571 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.183092342522133813362177640 CZK)\nThe limits being 0.10 % (11.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55166944 BTC (371,602.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.91 % (389,856.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,101.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00829716 BTC (11,452.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.27 CZK over 3942 transactions" + } + ] + }, + { + "id": 5641, + "type": "message", + "date": "2024-08-22T14:00:07", + "date_unixtime": "1724328007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005969 BTC for 82.71 CZK @ 1,385,645 CZK\nFees are 0.29049531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.242099981276789404282197765 CZK)\nThe limits being 0.10 % (11.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55172913 BTC (371,685.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,385,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.68 % (392,815.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,018.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00835685 BTC (11,579.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.26 CZK over 3943 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005969 BTC for 82.71 CZK @ 1,385,645 CZK\nFees are 0.29049531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.242099981276789404282197765 CZK)\nThe limits being 0.10 % (11.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55172913 BTC (371,685.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,385,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.68 % (392,815.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,018.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00835685 BTC (11,579.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.26 CZK over 3943 transactions" + } + ] + }, + { + "id": 5642, + "type": "message", + "date": "2024-08-22T18:00:07", + "date_unixtime": "1724342407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006040 BTC for 82.70 CZK @ 1,369,180 CZK\nFees are 0.29045761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 19.99 % (2304.3291549698571555845929974 CZK)\nThe limits being 0.10 % (11.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55178953 BTC (371,768.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,369,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.22 % (383,730.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,935.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00841725 BTC (11,524.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.26 CZK over 3944 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006040 BTC for 82.70 CZK @ 1,369,180 CZK\nFees are 0.29045761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 19.99 % (2304.3291549698571555845929974 CZK)\nThe limits being 0.10 % (11.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55178953 BTC (371,768.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,369,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.22 % (383,730.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,935.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00841725 BTC (11,524.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.26 CZK over 3944 transactions" + } + ] + }, + { + "id": 5643, + "type": "message", + "date": "2024-08-22T22:00:06", + "date_unixtime": "1724356806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006046 BTC for 82.70 CZK @ 1,367,894 CZK\nFees are 0.29047323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (30.093675473586410513912520205 CZK)\nThe limits being 0.10 % (11.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55184999 BTC (371,851.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,367,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.00 % (383,021.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,852.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00847771 BTC (11,596.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.26 CZK over 3945 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006046 BTC for 82.70 CZK @ 1,367,894 CZK\nFees are 0.29047323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (30.093675473586410513912520205 CZK)\nThe limits being 0.10 % (11.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55184999 BTC (371,851.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,367,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.00 % (383,021.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,852.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00847771 BTC (11,596.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.26 CZK over 3945 transactions" + } + ] + }, + { + "id": 5644, + "type": "message", + "date": "2024-08-23T02:00:06", + "date_unixtime": "1724371206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006045 BTC for 82.71 CZK @ 1,368,206 CZK\nFees are 0.29049138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.050267259463672019725831385 CZK)\nThe limits being 0.10 % (11.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55191044 BTC (371,934.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,368,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.03 % (383,192.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,769.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00853816 BTC (11,681.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.26 CZK over 3946 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006045 BTC for 82.71 CZK @ 1,368,206 CZK\nFees are 0.29049138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.050267259463672019725831385 CZK)\nThe limits being 0.10 % (11.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55191044 BTC (371,934.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,368,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.03 % (383,192.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,769.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00853816 BTC (11,681.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.26 CZK over 3946 transactions" + } + ] + }, + { + "id": 5645, + "type": "message", + "date": "2024-08-23T06:00:06", + "date_unixtime": "1724385606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006026 BTC for 82.70 CZK @ 1,372,442 CZK\nFees are 0.29047478 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.096858041329293705022795258 CZK)\nThe limits being 0.10 % (11.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55197070 BTC (372,017.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 673,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,372,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.63 % (385,530.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,686.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00859842 BTC (11,800.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.25 CZK over 3947 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006026 BTC for 82.70 CZK @ 1,372,442 CZK\nFees are 0.29047478 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.096858041329293705022795258 CZK)\nThe limits being 0.10 % (11.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55197070 BTC (372,017.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 673,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,372,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.63 % (385,530.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,686.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00859842 BTC (11,800.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.25 CZK over 3947 transactions" + } + ] + }, + { + "id": 5646, + "type": "message", + "date": "2024-08-23T10:00:07", + "date_unixtime": "1724400007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005975 BTC for 82.70 CZK @ 1,384,108 CZK\nFees are 0.29046459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.225183942727649878146153734 CZK)\nThe limits being 0.10 % (11.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55203045 BTC (372,100.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,384,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.34 % (391,969.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,603.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00865817 BTC (11,983.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.25 CZK over 3948 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005975 BTC for 82.70 CZK @ 1,384,108 CZK\nFees are 0.29046459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.225183942727649878146153734 CZK)\nThe limits being 0.10 % (11.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55203045 BTC (372,100.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,384,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.34 % (391,969.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,603.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00865817 BTC (11,983.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.25 CZK over 3948 transactions" + } + ] + }, + { + "id": 5647, + "type": "message", + "date": "2024-08-23T14:00:06", + "date_unixtime": "1724414406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006014 BTC for 82.71 CZK @ 1,375,265 CZK\nFees are 0.29049264 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.127911212485598708477760495 CZK)\nThe limits being 0.10 % (11.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55209059 BTC (372,183.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,375,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.00 % (387,087.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,520.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00871831 BTC (11,989.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.25 CZK over 3949 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006014 BTC for 82.71 CZK @ 1,375,265 CZK\nFees are 0.29049264 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.127911212485598708477760495 CZK)\nThe limits being 0.10 % (11.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55209059 BTC (372,183.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,375,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.00 % (387,087.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,520.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00871831 BTC (11,989.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.25 CZK over 3949 transactions" + } + ] + }, + { + "id": 5648, + "type": "message", + "date": "2024-08-23T18:00:06", + "date_unixtime": "1724428806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005970 BTC for 82.70 CZK @ 1,385,224 CZK\nFees are 0.29045569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.237468471906117533356869048 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55215029 BTC (372,266.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,385,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.46 % (392,585.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,437.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00877801 BTC (12,159.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.24 CZK over 3950 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005970 BTC for 82.70 CZK @ 1,385,224 CZK\nFees are 0.29045569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.237468471906117533356869048 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55215029 BTC (372,266.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,385,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.46 % (392,585.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,437.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00877801 BTC (12,159.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.24 CZK over 3950 transactions" + } + ] + }, + { + "id": 5649, + "type": "message", + "date": "2024-08-23T22:00:06", + "date_unixtime": "1724443206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005793 BTC for 82.70 CZK @ 1,427,544 CZK\nFees are 0.29045464 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.702979308481079212571294790 CZK)\nThe limits being 0.10 % (12.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55220822 BTC (372,349.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,427,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.71 % (415,951.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,354.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00883594 BTC (12,613.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.24 CZK over 3951 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005793 BTC for 82.70 CZK @ 1,427,544 CZK\nFees are 0.29045464 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.702979308481079212571294790 CZK)\nThe limits being 0.10 % (12.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55220822 BTC (372,349.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,427,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.71 % (415,951.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,354.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00883594 BTC (12,613.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.24 CZK over 3951 transactions" + } + ] + }, + { + "id": 5650, + "type": "message", + "date": "2024-08-24T02:00:06", + "date_unixtime": "1724457606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005749 BTC for 82.70 CZK @ 1,438,571 CZK\nFees are 0.29047518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.824280753317467832840754003 CZK)\nThe limits being 0.10 % (12.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55226571 BTC (372,432.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.32 % (422,041.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,271.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00889343 BTC (12,793.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.24 CZK over 3952 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005749 BTC for 82.70 CZK @ 1,438,571 CZK\nFees are 0.29047518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.824280753317467832840754003 CZK)\nThe limits being 0.10 % (12.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55226571 BTC (372,432.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.32 % (422,041.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,271.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00889343 BTC (12,793.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.24 CZK over 3952 transactions" + } + ] + }, + { + "id": 5651, + "type": "message", + "date": "2024-08-24T06:00:07", + "date_unixtime": "1724472007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005766 BTC for 82.70 CZK @ 1,434,288 CZK\nFees are 0.29046682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.777171682150973154832176870 CZK)\nThe limits being 0.10 % (12.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55232337 BTC (372,515.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.66 % (419,675.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,188.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00895109 BTC (12,838.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.24 CZK over 3953 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005766 BTC for 82.70 CZK @ 1,434,288 CZK\nFees are 0.29046682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.777171682150973154832176870 CZK)\nThe limits being 0.10 % (12.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55232337 BTC (372,515.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.66 % (419,675.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,188.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00895109 BTC (12,838.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.24 CZK over 3953 transactions" + } + ] + }, + { + "id": 5652, + "type": "message", + "date": "2024-08-24T10:00:06", + "date_unixtime": "1724486406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005738 BTC for 82.71 CZK @ 1,441,447 CZK\nFees are 0.29049903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.855918375264823379586574213 CZK)\nThe limits being 0.10 % (12.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55238075 BTC (372,598.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.70 % (423,629.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,105.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00900847 BTC (12,985.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.23 CZK over 3954 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005738 BTC for 82.71 CZK @ 1,441,447 CZK\nFees are 0.29049903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.855918375264823379586574213 CZK)\nThe limits being 0.10 % (12.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55238075 BTC (372,598.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.70 % (423,629.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,105.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00900847 BTC (12,985.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.23 CZK over 3954 transactions" + } + ] + }, + { + "id": 5653, + "type": "message", + "date": "2024-08-24T14:00:07", + "date_unixtime": "1724500807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005759 BTC for 82.70 CZK @ 1,436,065 CZK\nFees are 0.29047350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.796712241656719280746247311 CZK)\nThe limits being 0.10 % (13.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55243834 BTC (372,681.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.87 % (420,655.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,022.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00906606 BTC (13,019.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.23 CZK over 3955 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005759 BTC for 82.70 CZK @ 1,436,065 CZK\nFees are 0.29047350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.796712241656719280746247311 CZK)\nThe limits being 0.10 % (13.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55243834 BTC (372,681.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.87 % (420,655.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,022.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00906606 BTC (13,019.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.23 CZK over 3955 transactions" + } + ] + }, + { + "id": 5654, + "type": "message", + "date": "2024-08-24T18:00:06", + "date_unixtime": "1724515206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005758 BTC for 82.70 CZK @ 1,436,347 CZK\nFees are 0.29048024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.799821970446265441569304240 CZK)\nThe limits being 0.10 % (13.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55249592 BTC (372,764.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.89 % (420,811.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,939.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00912364 BTC (13,104.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.23 CZK over 3956 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005758 BTC for 82.70 CZK @ 1,436,347 CZK\nFees are 0.29048024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.799821970446265441569304240 CZK)\nThe limits being 0.10 % (13.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55249592 BTC (372,764.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.89 % (420,811.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,939.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00912364 BTC (13,104.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.23 CZK over 3956 transactions" + } + ] + }, + { + "id": 5655, + "type": "message", + "date": "2024-08-24T22:00:07", + "date_unixtime": "1724529607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005731 BTC for 82.70 CZK @ 1,443,020 CZK\nFees are 0.29046124 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.873220371693315239272909501 CZK)\nThe limits being 0.10 % (13.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55255323 BTC (372,847.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.85 % (424,498.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,856.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00918095 BTC (13,248.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.22 CZK over 3957 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005731 BTC for 82.70 CZK @ 1,443,020 CZK\nFees are 0.29046124 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.873220371693315239272909501 CZK)\nThe limits being 0.10 % (13.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55255323 BTC (372,847.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.85 % (424,498.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,856.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00918095 BTC (13,248.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.22 CZK over 3957 transactions" + } + ] + }, + { + "id": 5656, + "type": "message", + "date": "2024-08-25T02:00:07", + "date_unixtime": "1724544007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005754 BTC for 82.71 CZK @ 1,437,380 CZK\nFees are 0.29048712 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.811180196562639035880500972 CZK)\nThe limits being 0.10 % (13.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55261077 BTC (372,930.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.99 % (421,381.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,773.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00923849 BTC (13,279.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.22 CZK over 3958 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005754 BTC for 82.71 CZK @ 1,437,380 CZK\nFees are 0.29048712 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.811180196562639035880500972 CZK)\nThe limits being 0.10 % (13.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55261077 BTC (372,930.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.99 % (421,381.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,773.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00923849 BTC (13,279.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.22 CZK over 3958 transactions" + } + ] + }, + { + "id": 5657, + "type": "message", + "date": "2024-08-25T06:00:08", + "date_unixtime": "1724558408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,568 CZK\nFees are 0.29047434 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.835253018959316890448270046 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55266822 BTC (373,013.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 674,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.29 % (422,590.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,690.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00929594 BTC (13,382.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.22 CZK over 3959 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,568 CZK\nFees are 0.29047434 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.835253018959316890448270046 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55266822 BTC (373,013.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 674,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.29 % (422,590.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,690.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00929594 BTC (13,382.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.22 CZK over 3959 transactions" + } + ] + }, + { + "id": 5658, + "type": "message", + "date": "2024-08-25T10:00:06", + "date_unixtime": "1724572806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005764 BTC for 82.71 CZK @ 1,434,862 CZK\nFees are 0.29048215 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.783479356603034417705968044 CZK)\nThe limits being 0.10 % (13.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55272586 BTC (373,096.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.57 % (419,988.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,607.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00935358 BTC (13,421.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.22 CZK over 3960 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005764 BTC for 82.71 CZK @ 1,434,862 CZK\nFees are 0.29048215 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.783479356603034417705968044 CZK)\nThe limits being 0.10 % (13.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55272586 BTC (373,096.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.57 % (419,988.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,607.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00935358 BTC (13,421.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.22 CZK over 3960 transactions" + } + ] + }, + { + "id": 5659, + "type": "message", + "date": "2024-08-25T14:00:06", + "date_unixtime": "1724587206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005767 BTC for 82.70 CZK @ 1,434,104 CZK\nFees are 0.29047983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.775142640605289152263937670 CZK)\nThe limits being 0.10 % (13.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55278353 BTC (373,179.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.43 % (419,569.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,524.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00941125 BTC (13,496.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.21 CZK over 3961 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005767 BTC for 82.70 CZK @ 1,434,104 CZK\nFees are 0.29047983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.775142640605289152263937670 CZK)\nThe limits being 0.10 % (13.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55278353 BTC (373,179.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.43 % (419,569.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,524.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00941125 BTC (13,496.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.21 CZK over 3961 transactions" + } + ] + }, + { + "id": 5660, + "type": "message", + "date": "2024-08-25T18:00:06", + "date_unixtime": "1724601606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005740 BTC for 82.71 CZK @ 1,440,894 CZK\nFees are 0.29048872 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.849831247254817199036820606 CZK)\nThe limits being 0.10 % (13.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55284093 BTC (373,262.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.41 % (423,322.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,441.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00946865 BTC (13,643.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.21 CZK over 3962 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005740 BTC for 82.71 CZK @ 1,440,894 CZK\nFees are 0.29048872 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.849831247254817199036820606 CZK)\nThe limits being 0.10 % (13.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55284093 BTC (373,262.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.41 % (423,322.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,441.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00946865 BTC (13,643.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.21 CZK over 3962 transactions" + } + ] + }, + { + "id": 5661, + "type": "message", + "date": "2024-08-25T22:00:06", + "date_unixtime": "1724616006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005739 BTC for 82.70 CZK @ 1,441,046 CZK\nFees are 0.29046883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.851507412503701758950833610 CZK)\nThe limits being 0.10 % (13.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55289832 BTC (373,345.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.41 % (423,406.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,358.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00952604 BTC (13,727.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.21 CZK over 3963 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005739 BTC for 82.70 CZK @ 1,441,046 CZK\nFees are 0.29046883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.851507412503701758950833610 CZK)\nThe limits being 0.10 % (13.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55289832 BTC (373,345.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.41 % (423,406.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,358.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00952604 BTC (13,727.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.21 CZK over 3963 transactions" + } + ] + }, + { + "id": 5662, + "type": "message", + "date": "2024-08-26T02:00:06", + "date_unixtime": "1724630406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005730 BTC for 82.70 CZK @ 1,443,284 CZK\nFees are 0.29046362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.876120578324902979188894715 CZK)\nThe limits being 0.10 % (13.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55295562 BTC (373,428.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.71 % (424,643.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,275.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00958334 BTC (13,831.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.20 CZK over 3964 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005730 BTC for 82.70 CZK @ 1,443,284 CZK\nFees are 0.29046362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.876120578324902979188894715 CZK)\nThe limits being 0.10 % (13.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55295562 BTC (373,428.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.71 % (424,643.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,275.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00958334 BTC (13,831.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.20 CZK over 3964 transactions" + } + ] + }, + { + "id": 5663, + "type": "message", + "date": "2024-08-26T06:00:08", + "date_unixtime": "1724644808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,469 CZK\nFees are 0.29045432 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.834161306966088663567851945 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55301307 BTC (373,511.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.12 % (422,533.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,192.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00964079 BTC (13,877.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.20 CZK over 3965 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,469 CZK\nFees are 0.29045432 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.834161306966088663567851945 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55301307 BTC (373,511.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.12 % (422,533.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,192.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00964079 BTC (13,877.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.20 CZK over 3965 transactions" + } + ] + }, + { + "id": 5664, + "type": "message", + "date": "2024-08-26T10:00:07", + "date_unixtime": "1724659207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005777 BTC for 82.70 CZK @ 1,431,505 CZK\nFees are 0.29045629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.746559608274277004691645711 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55307084 BTC (373,594.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,431,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.92 % (418,129.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,109.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00969856 BTC (13,883.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.20 CZK over 3966 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005777 BTC for 82.70 CZK @ 1,431,505 CZK\nFees are 0.29045629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.746559608274277004691645711 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55307084 BTC (373,594.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,431,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.92 % (418,129.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,109.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00969856 BTC (13,883.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.20 CZK over 3966 transactions" + } + ] + }, + { + "id": 5665, + "type": "message", + "date": "2024-08-26T14:00:06", + "date_unixtime": "1724673606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005752 BTC for 82.70 CZK @ 1,437,747 CZK\nFees are 0.29046028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.815216227037080926077227618 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55312836 BTC (373,677.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.82 % (421,581.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,026.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00975608 BTC (14,026.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.20 CZK over 3967 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005752 BTC for 82.70 CZK @ 1,437,747 CZK\nFees are 0.29046028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.815216227037080926077227618 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55312836 BTC (373,677.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.82 % (421,581.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,026.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00975608 BTC (14,026.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.20 CZK over 3967 transactions" + } + ] + }, + { + "id": 5666, + "type": "message", + "date": "2024-08-26T18:00:06", + "date_unixtime": "1724688006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005786 BTC for 82.71 CZK @ 1,429,477 CZK\nFees are 0.29049666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.448502340666981155310027072 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55318622 BTC (373,760.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,429,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.57 % (417,006.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,943.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00981394 BTC (14,028.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.19 CZK over 3968 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005786 BTC for 82.71 CZK @ 1,429,477 CZK\nFees are 0.29049666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.448502340666981155310027072 CZK)\nThe limits being 0.10 % (14.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55318622 BTC (373,760.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,429,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.57 % (417,006.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,943.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00981394 BTC (14,028.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.19 CZK over 3968 transactions" + } + ] + }, + { + "id": 5667, + "type": "message", + "date": "2024-08-26T22:00:07", + "date_unixtime": "1724702407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005798 BTC for 82.70 CZK @ 1,426,392 CZK\nFees are 0.29047077 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.380617640603524092031803828 CZK)\nThe limits being 0.10 % (14.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55324420 BTC (373,843.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,426,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.09 % (415,299.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,860.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00987192 BTC (14,081.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.19 CZK over 3969 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005798 BTC for 82.70 CZK @ 1,426,392 CZK\nFees are 0.29047077 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.380617640603524092031803828 CZK)\nThe limits being 0.10 % (14.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55324420 BTC (373,843.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,426,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.09 % (415,299.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,860.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00987192 BTC (14,081.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.19 CZK over 3969 transactions" + } + ] + }, + { + "id": 5668, + "type": "message", + "date": "2024-08-27T02:00:09", + "date_unixtime": "1724716809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005839 BTC for 82.70 CZK @ 1,416,325 CZK\nFees are 0.29046026 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.159143257205705702246282557 CZK)\nThe limits being 0.10 % (14.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55330259 BTC (373,926.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.58 % (409,729.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,777.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00993031 BTC (14,064.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.19 CZK over 3970 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005839 BTC for 82.70 CZK @ 1,416,325 CZK\nFees are 0.29046026 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.159143257205705702246282557 CZK)\nThe limits being 0.10 % (14.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55330259 BTC (373,926.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.58 % (409,729.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,777.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00993031 BTC (14,064.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.19 CZK over 3970 transactions" + } + ] + }, + { + "id": 5669, + "type": "message", + "date": "2024-08-27T06:00:05", + "date_unixtime": "1724731205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005832 BTC for 82.70 CZK @ 1,418,109 CZK\nFees are 0.29047756 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.198400815937087136038952827 CZK)\nThe limits being 0.10 % (14.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55336091 BTC (374,009.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.81 % (410,716.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,694.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00998863 BTC (14,164.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.19 CZK over 3971 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005832 BTC for 82.70 CZK @ 1,418,109 CZK\nFees are 0.29047756 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (31.198400815937087136038952827 CZK)\nThe limits being 0.10 % (14.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55336091 BTC (374,009.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.81 % (410,716.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,694.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00998863 BTC (14,164.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.19 CZK over 3971 transactions" + } + ] + }, + { + "id": 5670, + "type": "message", + "date": "2024-08-27T10:00:07", + "date_unixtime": "1724745607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005832 BTC for 82.70 CZK @ 1,418,115 CZK\nFees are 0.29047879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.599266572483276980499664069 CZK)\nThe limits being 0.10 % (14.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55341923 BTC (374,092.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 675,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.79 % (410,719.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,611.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01004695 BTC (14,247.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.18 CZK over 3972 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005832 BTC for 82.70 CZK @ 1,418,115 CZK\nFees are 0.29047879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.599266572483276980499664069 CZK)\nThe limits being 0.10 % (14.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55341923 BTC (374,092.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 675,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.79 % (410,719.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,611.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01004695 BTC (14,247.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.18 CZK over 3972 transactions" + } + ] + }, + { + "id": 5671, + "type": "message", + "date": "2024-08-27T14:00:09", + "date_unixtime": "1724760009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005880 BTC for 82.70 CZK @ 1,406,441 CZK\nFees are 0.29045864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.470852450776025407671788197 CZK)\nThe limits being 0.10 % (14.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55347803 BTC (374,175.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,406,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.04 % (404,259.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,528.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01010575 BTC (14,213.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.18 CZK over 3973 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005880 BTC for 82.70 CZK @ 1,406,441 CZK\nFees are 0.29045864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.470852450776025407671788197 CZK)\nThe limits being 0.10 % (14.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55347803 BTC (374,175.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,406,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.04 % (404,259.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,528.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01010575 BTC (14,213.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.18 CZK over 3973 transactions" + } + ] + }, + { + "id": 5672, + "type": "message", + "date": "2024-08-27T18:00:07", + "date_unixtime": "1724774407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005958 BTC for 82.71 CZK @ 1,388,163 CZK\nFees are 0.29048673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.269789793125872136344546354 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55353761 BTC (374,258.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,388,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.31 % (394,142.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,445.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01016533 BTC (14,111.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.18 CZK over 3974 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005958 BTC for 82.71 CZK @ 1,388,163 CZK\nFees are 0.29048673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.269789793125872136344546354 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55353761 BTC (374,258.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,388,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.31 % (394,142.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,445.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01016533 BTC (14,111.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.18 CZK over 3974 transactions" + } + ] + }, + { + "id": 5673, + "type": "message", + "date": "2024-08-27T22:00:07", + "date_unixtime": "1724788807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005925 BTC for 82.70 CZK @ 1,395,769 CZK\nFees are 0.29046058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.353454708520179372197309417 CZK)\nThe limits being 0.10 % (14.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55359686 BTC (374,341.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,395,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.41 % (398,351.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,362.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01022458 BTC (14,271.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.17 CZK over 3975 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005925 BTC for 82.70 CZK @ 1,395,769 CZK\nFees are 0.29046058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.353454708520179372197309417 CZK)\nThe limits being 0.10 % (14.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55359686 BTC (374,341.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,395,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.41 % (398,351.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,362.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01022458 BTC (14,271.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.17 CZK over 3975 transactions" + } + ] + }, + { + "id": 5674, + "type": "message", + "date": "2024-08-28T02:00:06", + "date_unixtime": "1724803206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006179 BTC for 82.70 CZK @ 1,338,412 CZK\nFees are 0.29046477 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.722532810515195520968727918 CZK)\nThe limits being 0.10 % (13.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55365865 BTC (374,424.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,338,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.91 % (366,599.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,279.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01028637 BTC (13,767.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.17 CZK over 3976 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006179 BTC for 82.70 CZK @ 1,338,412 CZK\nFees are 0.29046477 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.722532810515195520968727918 CZK)\nThe limits being 0.10 % (13.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55365865 BTC (374,424.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,338,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.91 % (366,599.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,279.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01028637 BTC (13,767.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.17 CZK over 3976 transactions" + } + ] + }, + { + "id": 5675, + "type": "message", + "date": "2024-08-28T06:00:07", + "date_unixtime": "1724817607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006166 BTC for 82.70 CZK @ 1,341,181 CZK\nFees are 0.29045330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.752990500164765519837235263 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55372031 BTC (374,507.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.30 % (368,131.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,196.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01034803 BTC (13,878.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.17 CZK over 3977 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006166 BTC for 82.70 CZK @ 1,341,181 CZK\nFees are 0.29045330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.752990500164765519837235263 CZK)\nThe limits being 0.10 % (13.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55372031 BTC (374,507.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.30 % (368,131.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,196.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01034803 BTC (13,878.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.17 CZK over 3977 transactions" + } + ] + }, + { + "id": 5676, + "type": "message", + "date": "2024-08-28T10:00:06", + "date_unixtime": "1724832006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006259 BTC for 82.71 CZK @ 1,321,378 CZK\nFees are 0.29048075 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.535155160803619668594015847 CZK)\nThe limits being 0.10 % (13.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55378290 BTC (374,590.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,321,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.35 % (357,166.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,113.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01041062 BTC (13,756.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.17 CZK over 3978 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006259 BTC for 82.71 CZK @ 1,321,378 CZK\nFees are 0.29048075 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.535155160803619668594015847 CZK)\nThe limits being 0.10 % (13.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55378290 BTC (374,590.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,321,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.35 % (357,166.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,113.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01041062 BTC (13,756.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.17 CZK over 3978 transactions" + } + ] + }, + { + "id": 5677, + "type": "message", + "date": "2024-08-28T14:00:06", + "date_unixtime": "1724846406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006096 BTC for 82.71 CZK @ 1,356,730 CZK\nFees are 0.29048498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.924025538240829014459889076 CZK)\nThe limits being 0.10 % (14.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55384386 BTC (374,673.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,356,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.55 % (376,743.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,030.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01047158 BTC (14,207.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.16 CZK over 3979 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006096 BTC for 82.71 CZK @ 1,356,730 CZK\nFees are 0.29048498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (14.924025538240829014459889076 CZK)\nThe limits being 0.10 % (14.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55384386 BTC (374,673.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,356,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.55 % (376,743.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,030.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01047158 BTC (14,207.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.16 CZK over 3979 transactions" + } + ] + }, + { + "id": 5678, + "type": "message", + "date": "2024-08-28T18:00:07", + "date_unixtime": "1724860807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006196 BTC for 82.71 CZK @ 1,334,887 CZK\nFees are 0.29049686 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.683760457829488333762753539 CZK)\nThe limits being 0.10 % (14.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55390582 BTC (374,756.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,334,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.30 % (364,645.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,947.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01053354 BTC (14,061.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.16 CZK over 3980 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006196 BTC for 82.71 CZK @ 1,334,887 CZK\nFees are 0.29049686 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.683760457829488333762753539 CZK)\nThe limits being 0.10 % (14.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55390582 BTC (374,756.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,334,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.30 % (364,645.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,947.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01053354 BTC (14,061.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.16 CZK over 3980 transactions" + } + ] + }, + { + "id": 5679, + "type": "message", + "date": "2024-08-28T22:00:08", + "date_unixtime": "1724875208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006196 BTC for 82.70 CZK @ 1,334,715 CZK\nFees are 0.29045933 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.681863744807955885839201273 CZK)\nThe limits being 0.10 % (14.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55396778 BTC (374,839.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,334,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.26 % (364,549.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,864.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01059550 BTC (14,141.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.16 CZK over 3981 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006196 BTC for 82.70 CZK @ 1,334,715 CZK\nFees are 0.29045933 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.681863744807955885839201273 CZK)\nThe limits being 0.10 % (14.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55396778 BTC (374,839.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,334,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.26 % (364,549.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,864.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01059550 BTC (14,141.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.16 CZK over 3981 transactions" + } + ] + }, + { + "id": 5680, + "type": "message", + "date": "2024-08-29T02:00:08", + "date_unixtime": "1724889608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006185 BTC for 82.70 CZK @ 1,337,079 CZK\nFees are 0.29045718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.707866363443388721528006867 CZK)\nThe limits being 0.10 % (14.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55402963 BTC (374,922.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.58 % (365,859.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,781.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01065735 BTC (14,249.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.15 CZK over 3982 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006185 BTC for 82.70 CZK @ 1,337,079 CZK\nFees are 0.29045718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.707866363443388721528006867 CZK)\nThe limits being 0.10 % (14.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55402963 BTC (374,922.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.58 % (365,859.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,781.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01065735 BTC (14,249.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.15 CZK over 3982 transactions" + } + ] + }, + { + "id": 5681, + "type": "message", + "date": "2024-08-29T06:00:09", + "date_unixtime": "1724904009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006180 BTC for 82.71 CZK @ 1,338,327 CZK\nFees are 0.29049328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.721595481671754038857526167 CZK)\nThe limits being 0.10 % (14.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55409143 BTC (375,005.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,338,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.75 % (366,550.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,698.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01071915 BTC (14,345.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.15 CZK over 3983 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006180 BTC for 82.71 CZK @ 1,338,327 CZK\nFees are 0.29049328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.721595481671754038857526167 CZK)\nThe limits being 0.10 % (14.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55409143 BTC (375,005.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,338,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.75 % (366,550.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,698.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01071915 BTC (14,345.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.15 CZK over 3983 transactions" + } + ] + }, + { + "id": 5682, + "type": "message", + "date": "2024-08-29T10:00:07", + "date_unixtime": "1724918407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006140 BTC for 82.70 CZK @ 1,346,895 CZK\nFees are 0.29046084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.815846703962840157169775492 CZK)\nThe limits being 0.10 % (14.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55415283 BTC (375,088.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.99 % (371,297.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,615.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01078055 BTC (14,520.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.15 CZK over 3984 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006140 BTC for 82.70 CZK @ 1,346,895 CZK\nFees are 0.29046084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.815846703962840157169775492 CZK)\nThe limits being 0.10 % (14.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55415283 BTC (375,088.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.99 % (371,297.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,615.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01078055 BTC (14,520.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.15 CZK over 3984 transactions" + } + ] + }, + { + "id": 5683, + "type": "message", + "date": "2024-08-29T14:00:07", + "date_unixtime": "1724932807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006079 BTC for 82.71 CZK @ 1,360,582 CZK\nFees are 0.29049746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.966403852022117358123029342 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55421362 BTC (375,171.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 676,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.99 % (378,882.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,532.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01084134 BTC (14,750.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.15 CZK over 3985 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006079 BTC for 82.71 CZK @ 1,360,582 CZK\nFees are 0.29049746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (14.966403852022117358123029342 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55421362 BTC (375,171.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 676,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.99 % (378,882.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,532.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01084134 BTC (14,750.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.15 CZK over 3985 transactions" + } + ] + }, + { + "id": 5684, + "type": "message", + "date": "2024-08-29T18:00:07", + "date_unixtime": "1724947207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005989 BTC for 82.70 CZK @ 1,380,929 CZK\nFees are 0.29047650 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (15.190216045477163206453152820 CZK)\nThe limits being 0.10 % (15.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55427351 BTC (375,254.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,380,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.97 % (390,158.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,449.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01090123 BTC (15,053.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.14 CZK over 3986 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005989 BTC for 82.70 CZK @ 1,380,929 CZK\nFees are 0.29047650 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (15.190216045477163206453152820 CZK)\nThe limits being 0.10 % (15.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55427351 BTC (375,254.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,380,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.97 % (390,158.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,449.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01090123 BTC (15,053.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.14 CZK over 3986 transactions" + } + ] + }, + { + "id": 5685, + "type": "message", + "date": "2024-08-29T22:00:06", + "date_unixtime": "1724961606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006146 BTC for 82.70 CZK @ 1,345,565 CZK\nFees are 0.29045751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (29.602426676498833970462314537 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55433497 BTC (375,337.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.73 % (370,556.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,366.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01096269 BTC (14,751.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.14 CZK over 3987 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006146 BTC for 82.70 CZK @ 1,345,565 CZK\nFees are 0.29045751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (29.602426676498833970462314537 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55433497 BTC (375,337.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.73 % (370,556.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,366.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01096269 BTC (14,751.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.14 CZK over 3987 transactions" + } + ] + }, + { + "id": 5686, + "type": "message", + "date": "2024-08-30T02:00:07", + "date_unixtime": "1724976007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006139 BTC for 82.70 CZK @ 1,347,140 CZK\nFees are 0.29046627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (29.637074780376517341609303098 CZK)\nThe limits being 0.10 % (14.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55439636 BTC (375,420.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.94 % (371,429.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,283.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01102408 BTC (14,850.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.14 CZK over 3988 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006139 BTC for 82.70 CZK @ 1,347,140 CZK\nFees are 0.29046627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (29.637074780376517341609303098 CZK)\nThe limits being 0.10 % (14.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55439636 BTC (375,420.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.94 % (371,429.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,283.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01102408 BTC (14,850.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.14 CZK over 3988 transactions" + } + ] + }, + { + "id": 5687, + "type": "message", + "date": "2024-08-30T06:00:07", + "date_unixtime": "1724990407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006166 BTC for 82.70 CZK @ 1,341,277 CZK\nFees are 0.29047414 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (29.508098263279300909353752298 CZK)\nThe limits being 0.10 % (14.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55445802 BTC (375,503.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.05 % (368,178.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,200.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01108574 BTC (14,869.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.13 CZK over 3989 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006166 BTC for 82.70 CZK @ 1,341,277 CZK\nFees are 0.29047414 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (29.508098263279300909353752298 CZK)\nThe limits being 0.10 % (14.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55445802 BTC (375,503.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.05 % (368,178.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,200.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01108574 BTC (14,869.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.13 CZK over 3989 transactions" + } + ] + }, + { + "id": 5688, + "type": "message", + "date": "2024-08-30T10:00:08", + "date_unixtime": "1725004808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006145 BTC for 82.70 CZK @ 1,345,781 CZK\nFees are 0.29045699 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.01114719 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (14.803595258255990120826091592 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55451947 BTC (375,586.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.69 % (370,675.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,117.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01114719 BTC (15,001.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.13 CZK over 3990 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006145 BTC for 82.70 CZK @ 1,345,781 CZK\nFees are 0.29045699 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.01114719 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (14.803595258255990120826091592 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55451947 BTC (375,586.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.69 % (370,675.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,117.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01114719 BTC (15,001.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.13 CZK over 3990 transactions" + } + ] + }, + { + "id": 5689, + "type": "message", + "date": "2024-08-30T14:00:06", + "date_unixtime": "1725019206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006139 BTC for 82.71 CZK @ 1,347,261 CZK\nFees are 0.29049243 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 17.92 % (14.819871706236187677710193830 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55458086 BTC (375,669.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.89 % (371,496.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,034.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00006139 BTC (82.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.13 CZK over 3991 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006139 BTC for 82.71 CZK @ 1,347,261 CZK\nFees are 0.29049243 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 17.92 % (14.819871706236187677710193830 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55458086 BTC (375,669.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.89 % (371,496.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,034.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00006139 BTC (82.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.13 CZK over 3991 transactions" + } + ] + }, + { + "id": 5690, + "type": "message", + "date": "2024-08-30T18:00:06", + "date_unixtime": "1725033606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006261 BTC for 82.71 CZK @ 1,321,025 CZK\nFees are 0.29049597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 8.87 % (14.531273514747576900430031386 CZK)\nThe limits being 0.10 % (0.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55464347 BTC (375,752.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,321,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.00 % (356,945.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,951.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00012400 BTC (163.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.13 CZK over 3992 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006261 BTC for 82.71 CZK @ 1,321,025 CZK\nFees are 0.29049597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 8.87 % (14.531273514747576900430031386 CZK)\nThe limits being 0.10 % (0.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55464347 BTC (375,752.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,321,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.00 % (356,945.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,951.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00012400 BTC (163.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.13 CZK over 3992 transactions" + } + ] + }, + { + "id": 5691, + "type": "message", + "date": "2024-08-30T22:00:07", + "date_unixtime": "1725048007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006182 BTC for 82.70 CZK @ 1,337,721 CZK\nFees are 0.29045582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 5.92 % (14.714934928816757008832077054 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55470529 BTC (375,835.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.44 % (366,206.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,868.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00018582 BTC (248.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.12 CZK over 3993 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006182 BTC for 82.70 CZK @ 1,337,721 CZK\nFees are 0.29045582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 5.92 % (14.714934928816757008832077054 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55470529 BTC (375,835.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.44 % (366,206.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,868.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00018582 BTC (248.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.12 CZK over 3993 transactions" + } + ] + }, + { + "id": 5692, + "type": "message", + "date": "2024-08-31T02:00:06", + "date_unixtime": "1725062406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006146 BTC for 82.71 CZK @ 1,345,687 CZK\nFees are 0.29048391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 4.45 % (14.802558681776165457994318941 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55476675 BTC (375,918.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.59 % (370,624.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,785.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00024728 BTC (332.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.12 CZK over 3994 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006146 BTC for 82.71 CZK @ 1,345,687 CZK\nFees are 0.29048391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 4.45 % (14.802558681776165457994318941 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55476675 BTC (375,918.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.59 % (370,624.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,785.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00024728 BTC (332.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.12 CZK over 3994 transactions" + } + ] + }, + { + "id": 5693, + "type": "message", + "date": "2024-08-31T06:00:06", + "date_unixtime": "1725076806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006136 BTC for 82.70 CZK @ 1,347,742 CZK\nFees are 0.29045417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.56 % (14.825164859757472055108294373 CZK)\nThe limits being 0.10 % (0.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55482811 BTC (376,001.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.87 % (371,764.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,702.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00030864 BTC (415.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.12 CZK over 3995 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006136 BTC for 82.70 CZK @ 1,347,742 CZK\nFees are 0.29045417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.56 % (14.825164859757472055108294373 CZK)\nThe limits being 0.10 % (0.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55482811 BTC (376,001.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.87 % (371,764.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,702.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00030864 BTC (415.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.12 CZK over 3995 transactions" + } + ] + }, + { + "id": 5694, + "type": "message", + "date": "2024-08-31T10:00:06", + "date_unixtime": "1725091206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006151 BTC for 82.70 CZK @ 1,344,492 CZK\nFees are 0.29046207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.97 % (14.789414015504343155321194547 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55488962 BTC (376,084.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,344,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.37 % (369,960.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,619.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00037015 BTC (497.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.12 CZK over 3996 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006151 BTC for 82.70 CZK @ 1,344,492 CZK\nFees are 0.29046207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.97 % (14.789414015504343155321194547 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55488962 BTC (376,084.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,344,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.37 % (369,960.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,619.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00037015 BTC (497.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.12 CZK over 3996 transactions" + } + ] + }, + { + "id": 5695, + "type": "message", + "date": "2024-08-31T14:00:06", + "date_unixtime": "1725105606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006151 BTC for 82.71 CZK @ 1,344,664 CZK\nFees are 0.29049911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.55 % (14.791299701734872508081574673 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55495113 BTC (376,167.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,344,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.38 % (370,055.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,536.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00043166 BTC (580.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.11 CZK over 3997 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006151 BTC for 82.71 CZK @ 1,344,664 CZK\nFees are 0.29049911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.55 % (14.791299701734872508081574673 CZK)\nThe limits being 0.10 % (0.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55495113 BTC (376,167.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,344,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.38 % (370,055.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,536.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00043166 BTC (580.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.11 CZK over 3997 transactions" + } + ] + }, + { + "id": 5696, + "type": "message", + "date": "2024-08-31T18:00:05", + "date_unixtime": "1725120005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006157 BTC for 82.71 CZK @ 1,343,283 CZK\nFees are 0.29048396 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.23 % (14.776114967275086167068824164 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55501270 BTC (376,250.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,912 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,343,283 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.15 % (369,289.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,453.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00049323 BTC (662.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.11 CZK over 3998 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006157 BTC for 82.71 CZK @ 1,343,283 CZK\nFees are 0.29048396 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.23 % (14.776114967275086167068824164 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55501270 BTC (376,250.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,912 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,343,283 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.15 % (369,289.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,453.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00049323 BTC (662.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.11 CZK over 3998 transactions" + } + ] + }, + { + "id": 5697, + "type": "message", + "date": "2024-08-31T22:00:07", + "date_unixtime": "1725134407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006174 BTC for 82.70 CZK @ 1,339,464 CZK\nFees are 0.29045776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.98 % (14.734100558153363131856771465 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55507444 BTC (376,333.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 677,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,339,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.56 % (367,169.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,370.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00055497 BTC (743.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.11 CZK over 3999 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006174 BTC for 82.70 CZK @ 1,339,464 CZK\nFees are 0.29045776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.98 % (14.734100558153363131856771465 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55507444 BTC (376,333.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 677,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,339,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.56 % (367,169.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,370.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00055497 BTC (743.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.11 CZK over 3999 transactions" + } + ] + }, + { + "id": 5698, + "type": "message", + "date": "2024-09-01T02:00:07", + "date_unixtime": "1725148807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006163 BTC for 82.70 CZK @ 1,341,931 CZK\nFees are 0.29047430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.78 % (14.761238997922329448746683378 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55513607 BTC (376,416.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,341,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.91 % (368,538.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,287.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00061660 BTC (827.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.10 CZK over 4000 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006163 BTC for 82.70 CZK @ 1,341,931 CZK\nFees are 0.29047430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.78 % (14.761238997922329448746683378 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55513607 BTC (376,416.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,341,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.91 % (368,538.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,287.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00061660 BTC (827.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.10 CZK over 4000 transactions" + } + ] + }, + { + "id": 5699, + "type": "message", + "date": "2024-09-01T06:00:07", + "date_unixtime": "1725163207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006209 BTC for 82.70 CZK @ 1,331,935 CZK\nFees are 0.29046252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.62 % (14.651284752039146607424826444 CZK)\nThe limits being 0.10 % (0.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55519816 BTC (376,499.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,331,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.41 % (362,988.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,204.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00067869 BTC (903.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.10 CZK over 4001 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006209 BTC for 82.70 CZK @ 1,331,935 CZK\nFees are 0.29046252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.62 % (14.651284752039146607424826444 CZK)\nThe limits being 0.10 % (0.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55519816 BTC (376,499.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,331,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.41 % (362,988.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,204.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00067869 BTC (903.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.10 CZK over 4001 transactions" + } + ] + }, + { + "id": 5700, + "type": "message", + "date": "2024-09-01T10:00:07", + "date_unixtime": "1725177607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006220 BTC for 82.71 CZK @ 1,329,730 CZK\nFees are 0.29049552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.48 % (14.627035491214831690369879056 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55526036 BTC (376,582.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.07 % (361,764.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,121.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00074089 BTC (985.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.10 CZK over 4002 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006220 BTC for 82.71 CZK @ 1,329,730 CZK\nFees are 0.29049552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.48 % (14.627035491214831690369879056 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55526036 BTC (376,582.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.07 % (361,764.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,121.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00074089 BTC (985.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.10 CZK over 4002 transactions" + } + ] + }, + { + "id": 5701, + "type": "message", + "date": "2024-09-01T14:00:07", + "date_unixtime": "1725192007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006241 BTC for 82.71 CZK @ 1,325,271 CZK\nFees are 0.29049886 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.37 % (14.577985598075379019130846874 CZK)\nThe limits being 0.10 % (1.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55532277 BTC (376,665.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,325,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.39 % (359,288.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,038.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00080330 BTC (1,064.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.10 CZK over 4003 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006241 BTC for 82.71 CZK @ 1,325,271 CZK\nFees are 0.29049886 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.37 % (14.577985598075379019130846874 CZK)\nThe limits being 0.10 % (1.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55532277 BTC (376,665.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,325,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.39 % (359,288.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,038.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00080330 BTC (1,064.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.10 CZK over 4003 transactions" + } + ] + }, + { + "id": 5702, + "type": "message", + "date": "2024-09-01T18:00:07", + "date_unixtime": "1725206407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006229 BTC for 82.70 CZK @ 1,327,636 CZK\nFees are 0.29045768 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.27 % (14.603999244576875461490818417 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55538506 BTC (376,748.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.71 % (360,601.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,955.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00086559 BTC (1,149.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.09 CZK over 4004 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006229 BTC for 82.70 CZK @ 1,327,636 CZK\nFees are 0.29045768 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.27 % (14.603999244576875461490818417 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55538506 BTC (376,748.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.71 % (360,601.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,955.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00086559 BTC (1,149.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.09 CZK over 4004 transactions" + } + ] + }, + { + "id": 5703, + "type": "message", + "date": "2024-09-01T22:00:06", + "date_unixtime": "1725220806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006213 BTC for 82.71 CZK @ 1,331,218 CZK\nFees are 0.29049323 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.19 % (14.643400159477239287473722864 CZK)\nThe limits being 0.10 % (1.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55544719 BTC (376,831.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,331,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.22 % (362,590.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,872.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00092772 BTC (1,235.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.09 CZK over 4005 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006213 BTC for 82.71 CZK @ 1,331,218 CZK\nFees are 0.29049323 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.19 % (14.643400159477239287473722864 CZK)\nThe limits being 0.10 % (1.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55544719 BTC (376,831.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,331,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.22 % (362,590.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,872.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00092772 BTC (1,235.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.09 CZK over 4005 transactions" + } + ] + }, + { + "id": 5704, + "type": "message", + "date": "2024-09-02T02:00:08", + "date_unixtime": "1725235208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006321 BTC for 82.71 CZK @ 1,308,474 CZK\nFees are 0.29049335 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.11 % (14.393210414553650106292270678 CZK)\nThe limits being 0.10 % (1.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55551040 BTC (376,914.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,308,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.85 % (349,956.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,789.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00099093 BTC (1,296.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.09 CZK over 4006 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006321 BTC for 82.71 CZK @ 1,308,474 CZK\nFees are 0.29049335 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.11 % (14.393210414553650106292270678 CZK)\nThe limits being 0.10 % (1.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55551040 BTC (376,914.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,308,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.85 % (349,956.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,789.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00099093 BTC (1,296.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.09 CZK over 4006 transactions" + } + ] + }, + { + "id": 5705, + "type": "message", + "date": "2024-09-02T06:00:07", + "date_unixtime": "1725249607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006286 BTC for 82.71 CZK @ 1,315,787 CZK\nFees are 0.29049947 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.04 % (14.473655328050835756050133790 CZK)\nThe limits being 0.10 % (1.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55557326 BTC (376,997.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,315,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.90 % (354,018.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,706.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00105379 BTC (1,386.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.08 CZK over 4007 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006286 BTC for 82.71 CZK @ 1,315,787 CZK\nFees are 0.29049947 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.04 % (14.473655328050835756050133790 CZK)\nThe limits being 0.10 % (1.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55557326 BTC (376,997.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,315,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.90 % (354,018.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,706.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00105379 BTC (1,386.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.08 CZK over 4007 transactions" + } + ] + }, + { + "id": 5706, + "type": "message", + "date": "2024-09-02T10:00:07", + "date_unixtime": "1725264007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006327 BTC for 82.70 CZK @ 1,307,064 CZK\nFees are 0.29045588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.98 % (14.377705885414956298443042209 CZK)\nThe limits being 0.10 % (1.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55563653 BTC (377,079.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,645 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,307,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.60 % (349,172.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,623.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00111706 BTC (1,460.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.08 CZK over 4008 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006327 BTC for 82.70 CZK @ 1,307,064 CZK\nFees are 0.29045588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.98 % (14.377705885414956298443042209 CZK)\nThe limits being 0.10 % (1.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55563653 BTC (377,079.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,645 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,307,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.60 % (349,172.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,623.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00111706 BTC (1,460.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.08 CZK over 4008 transactions" + } + ] + }, + { + "id": 5707, + "type": "message", + "date": "2024-09-02T14:00:06", + "date_unixtime": "1725278406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006230 BTC for 82.70 CZK @ 1,327,457 CZK\nFees are 0.29046505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.93 % (14.602025339242026902630520306 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55569883 BTC (377,162.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,327,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.58 % (360,503.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,540.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00117936 BTC (1,565.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.08 CZK over 4009 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006230 BTC for 82.70 CZK @ 1,327,457 CZK\nFees are 0.29046505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.93 % (14.602025339242026902630520306 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55569883 BTC (377,162.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,327,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.58 % (360,503.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,540.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00117936 BTC (1,565.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.08 CZK over 4009 transactions" + } + ] + }, + { + "id": 5708, + "type": "message", + "date": "2024-09-02T18:00:06", + "date_unixtime": "1725292806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006219 BTC for 82.71 CZK @ 1,329,879 CZK\nFees are 0.29048122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.89 % (14.628667547167483353206693440 CZK)\nThe limits being 0.10 % (1.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55576102 BTC (377,245.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.92 % (361,848.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,457.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00124155 BTC (1,651.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.08 CZK over 4010 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006219 BTC for 82.71 CZK @ 1,329,879 CZK\nFees are 0.29048122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.89 % (14.628667547167483353206693440 CZK)\nThe limits being 0.10 % (1.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55576102 BTC (377,245.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.92 % (361,848.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,457.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00124155 BTC (1,651.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.08 CZK over 4010 transactions" + } + ] + }, + { + "id": 5709, + "type": "message", + "date": "2024-09-02T22:00:08", + "date_unixtime": "1725307208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006233 BTC for 82.71 CZK @ 1,326,958 CZK\nFees are 0.29049563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.84 % (14.596533690881849352710723442 CZK)\nThe limits being 0.10 % (1.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55582335 BTC (377,328.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,326,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.47 % (360,225.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,374.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00130388 BTC (1,730.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.07 CZK over 4011 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006233 BTC for 82.71 CZK @ 1,326,958 CZK\nFees are 0.29049563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.84 % (14.596533690881849352710723442 CZK)\nThe limits being 0.10 % (1.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55582335 BTC (377,328.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,326,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.47 % (360,225.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,374.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00130388 BTC (1,730.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.07 CZK over 4011 transactions" + } + ] + }, + { + "id": 5710, + "type": "message", + "date": "2024-09-03T02:00:05", + "date_unixtime": "1725321605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006159 BTC for 82.71 CZK @ 1,342,864 CZK\nFees are 0.29048767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.81 % (14.771505511356461185978964839 CZK)\nThe limits being 0.10 % (1.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55588494 BTC (377,411.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 678,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,342,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.79 % (369,065.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,291.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00136547 BTC (1,833.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.07 CZK over 4012 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006159 BTC for 82.71 CZK @ 1,342,864 CZK\nFees are 0.29048767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.81 % (14.771505511356461185978964839 CZK)\nThe limits being 0.10 % (1.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55588494 BTC (377,411.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 678,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,342,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.79 % (369,065.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,291.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00136547 BTC (1,833.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.07 CZK over 4012 transactions" + } + ] + }, + { + "id": 5711, + "type": "message", + "date": "2024-09-03T06:00:08", + "date_unixtime": "1725336008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006152 BTC for 82.70 CZK @ 1,344,275 CZK\nFees are 0.29046229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.77 % (14.787021068814416123541596608 CZK)\nThe limits being 0.10 % (1.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55594646 BTC (377,494.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,344,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.97 % (369,849.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,208.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00142699 BTC (1,918.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.07 CZK over 4013 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006152 BTC for 82.70 CZK @ 1,344,275 CZK\nFees are 0.29046229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.77 % (14.787021068814416123541596608 CZK)\nThe limits being 0.10 % (1.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55594646 BTC (377,494.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,344,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.97 % (369,849.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,208.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00142699 BTC (1,918.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.07 CZK over 4013 transactions" + } + ] + }, + { + "id": 5712, + "type": "message", + "date": "2024-09-03T10:00:07", + "date_unixtime": "1725350407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006152 BTC for 82.71 CZK @ 1,344,427 CZK\nFees are 0.29049521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.74 % (14.788697234905399372676775629 CZK)\nThe limits being 0.10 % (2.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55600798 BTC (377,577.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,344,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.98 % (369,934.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,125.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00148851 BTC (2,001.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.07 CZK over 4014 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006152 BTC for 82.71 CZK @ 1,344,427 CZK\nFees are 0.29049521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.74 % (14.788697234905399372676775629 CZK)\nThe limits being 0.10 % (2.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55600798 BTC (377,577.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,344,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.98 % (369,934.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,125.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00148851 BTC (2,001.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.07 CZK over 4014 transactions" + } + ] + }, + { + "id": 5713, + "type": "message", + "date": "2024-09-03T14:00:06", + "date_unixtime": "1725364806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006139 BTC for 82.71 CZK @ 1,347,233 CZK\nFees are 0.29048637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.71 % (14.819562939550309865949710302 CZK)\nThe limits being 0.10 % (2.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55606937 BTC (377,660.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,347,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.37 % (371,494.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,042.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00154990 BTC (2,088.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.06 CZK over 4015 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006139 BTC for 82.71 CZK @ 1,347,233 CZK\nFees are 0.29048637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.71 % (14.819562939550309865949710302 CZK)\nThe limits being 0.10 % (2.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55606937 BTC (377,660.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,347,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.37 % (371,494.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,042.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00154990 BTC (2,088.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.06 CZK over 4015 transactions" + } + ] + }, + { + "id": 5714, + "type": "message", + "date": "2024-09-03T18:00:07", + "date_unixtime": "1725379207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006279 BTC for 82.70 CZK @ 1,317,138 CZK\nFees are 0.29047399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.68 % (14.488520269040838352595030309 CZK)\nThe limits being 0.10 % (2.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55613216 BTC (377,743.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,317,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.92 % (354,758.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,959.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00161269 BTC (2,124.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.06 CZK over 4016 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006279 BTC for 82.70 CZK @ 1,317,138 CZK\nFees are 0.29047399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.68 % (14.488520269040838352595030309 CZK)\nThe limits being 0.10 % (2.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55613216 BTC (377,743.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,317,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.92 % (354,758.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,959.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00161269 BTC (2,124.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.06 CZK over 4016 transactions" + } + ] + }, + { + "id": 5715, + "type": "message", + "date": "2024-09-03T22:00:06", + "date_unixtime": "1725393606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006244 BTC for 82.70 CZK @ 1,324,510 CZK\nFees are 0.29047142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.31 % (29.139209542067210630825423001 CZK)\nThe limits being 0.10 % (2.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55619460 BTC (377,826.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,324,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.98 % (358,858.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,876.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00167513 BTC (2,218.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.06 CZK over 4017 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006244 BTC for 82.70 CZK @ 1,324,510 CZK\nFees are 0.29047142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.31 % (29.139209542067210630825423001 CZK)\nThe limits being 0.10 % (2.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55619460 BTC (377,826.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,324,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.98 % (358,858.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,876.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00167513 BTC (2,218.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.06 CZK over 4017 transactions" + } + ] + }, + { + "id": 5716, + "type": "message", + "date": "2024-09-04T02:00:06", + "date_unixtime": "1725408006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006310 BTC for 82.70 CZK @ 1,310,592 CZK\nFees are 0.29045728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (14.416511320204956187416940866 CZK)\nThe limits being 0.10 % (2.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55625770 BTC (377,909.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,310,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.91 % (351,116.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,793.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00173823 BTC (2,278.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.05 CZK over 4018 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006310 BTC for 82.70 CZK @ 1,310,592 CZK\nFees are 0.29045728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (14.416511320204956187416940866 CZK)\nThe limits being 0.10 % (2.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55625770 BTC (377,909.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,310,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.91 % (351,116.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,793.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00173823 BTC (2,278.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.05 CZK over 4018 transactions" + } + ] + }, + { + "id": 5717, + "type": "message", + "date": "2024-09-04T06:00:07", + "date_unixtime": "1725422407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006396 BTC for 82.70 CZK @ 1,293,008 CZK\nFees are 0.29046591 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (14.223090652852601884648258923 CZK)\nThe limits being 0.10 % (2.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55632166 BTC (377,992.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,293,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.30 % (341,335.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,710.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00180219 BTC (2,330.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.05 CZK over 4019 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006396 BTC for 82.70 CZK @ 1,293,008 CZK\nFees are 0.29046591 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (14.223090652852601884648258923 CZK)\nThe limits being 0.10 % (2.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55632166 BTC (377,992.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,293,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.30 % (341,335.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,710.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00180219 BTC (2,330.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.05 CZK over 4019 transactions" + } + ] + }, + { + "id": 5718, + "type": "message", + "date": "2024-09-04T10:00:09", + "date_unixtime": "1725436809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006399 BTC for 82.70 CZK @ 1,292,359 CZK\nFees are 0.29045615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (14.215944895008430019856272697 CZK)\nThe limits being 0.10 % (2.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55638565 BTC (378,075.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,292,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.19 % (340,973.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,627.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00186618 BTC (2,411.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.05 CZK over 4020 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006399 BTC for 82.70 CZK @ 1,292,359 CZK\nFees are 0.29045615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (14.215944895008430019856272697 CZK)\nThe limits being 0.10 % (2.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55638565 BTC (378,075.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,292,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.19 % (340,973.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,627.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00186618 BTC (2,411.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.05 CZK over 4020 transactions" + } + ] + }, + { + "id": 5719, + "type": "message", + "date": "2024-09-04T14:00:05", + "date_unixtime": "1725451205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006412 BTC for 82.71 CZK @ 1,289,929 CZK\nFees are 0.29049897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.57 % (14.189214466926580424534093244 CZK)\nThe limits being 0.10 % (2.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55644977 BTC (378,158.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,289,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.81 % (339,621.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,544.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00193030 BTC (2,489.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.05 CZK over 4021 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006412 BTC for 82.71 CZK @ 1,289,929 CZK\nFees are 0.29049897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.57 % (14.189214466926580424534093244 CZK)\nThe limits being 0.10 % (2.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55644977 BTC (378,158.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,289,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.81 % (339,621.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,544.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00193030 BTC (2,489.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.05 CZK over 4021 transactions" + } + ] + }, + { + "id": 5720, + "type": "message", + "date": "2024-09-04T18:00:08", + "date_unixtime": "1725465608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006278 BTC for 82.71 CZK @ 1,317,422 CZK\nFees are 0.29049029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.55 % (14.491641022905971184320948677 CZK)\nThe limits being 0.10 % (2.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55651255 BTC (378,241.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,317,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.83 % (354,919.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,461.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00199308 BTC (2,625.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.04 CZK over 4022 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006278 BTC for 82.71 CZK @ 1,317,422 CZK\nFees are 0.29049029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.55 % (14.491641022905971184320948677 CZK)\nThe limits being 0.10 % (2.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55651255 BTC (378,241.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,317,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.83 % (354,919.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,461.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00199308 BTC (2,625.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.04 CZK over 4022 transactions" + } + ] + }, + { + "id": 5721, + "type": "message", + "date": "2024-09-04T22:00:07", + "date_unixtime": "1725480007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006283 BTC for 82.71 CZK @ 1,316,382 CZK\nFees are 0.29049223 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.54 % (14.480205605543735553606305988 CZK)\nThe limits being 0.10 % (2.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55657538 BTC (378,324.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,316,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.66 % (354,341.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,378.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00205591 BTC (2,706.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.04 CZK over 4023 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006283 BTC for 82.71 CZK @ 1,316,382 CZK\nFees are 0.29049223 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.54 % (14.480205605543735553606305988 CZK)\nThe limits being 0.10 % (2.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55657538 BTC (378,324.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,316,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.66 % (354,341.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,378.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00205591 BTC (2,706.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.04 CZK over 4023 transactions" + } + ] + }, + { + "id": 5722, + "type": "message", + "date": "2024-09-05T02:00:08", + "date_unixtime": "1725494408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006279 BTC for 82.70 CZK @ 1,317,154 CZK\nFees are 0.29047753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.52 % (14.488696706137532809398670191 CZK)\nThe limits being 0.10 % (2.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55663817 BTC (378,407.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,317,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.75 % (354,770.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,295.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00211870 BTC (2,790.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.04 CZK over 4024 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006279 BTC for 82.70 CZK @ 1,317,154 CZK\nFees are 0.29047753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.52 % (14.488696706137532809398670191 CZK)\nThe limits being 0.10 % (2.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55663817 BTC (378,407.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,317,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.75 % (354,770.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,295.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00211870 BTC (2,790.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.04 CZK over 4024 transactions" + } + ] + }, + { + "id": 5723, + "type": "message", + "date": "2024-09-05T06:00:07", + "date_unixtime": "1725508807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006374 BTC for 82.70 CZK @ 1,297,456 CZK\nFees are 0.29046260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (14.272019243598143867033315619 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55670191 BTC (378,490.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,297,456 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.84 % (343,805.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,212.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00218244 BTC (2,831.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.03 CZK over 4025 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006374 BTC for 82.70 CZK @ 1,297,456 CZK\nFees are 0.29046260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (14.272019243598143867033315619 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55670191 BTC (378,490.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,297,456 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.84 % (343,805.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,212.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00218244 BTC (2,831.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.03 CZK over 4025 transactions" + } + ] + }, + { + "id": 5724, + "type": "message", + "date": "2024-09-05T10:00:06", + "date_unixtime": "1725523206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006369 BTC for 82.70 CZK @ 1,298,516 CZK\nFees are 0.29047178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (14.283675209306288095293416048 CZK)\nThe limits being 0.10 % (2.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55676560 BTC (378,573.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 679,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,298,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.97 % (344,395.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,129.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00224613 BTC (2,916.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.03 CZK over 4026 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006369 BTC for 82.70 CZK @ 1,298,516 CZK\nFees are 0.29047178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.49 % (14.283675209306288095293416048 CZK)\nThe limits being 0.10 % (2.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55676560 BTC (378,573.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 679,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,298,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.97 % (344,395.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,129.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00224613 BTC (2,916.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.03 CZK over 4026 transactions" + } + ] + }, + { + "id": 5725, + "type": "message", + "date": "2024-09-05T14:00:06", + "date_unixtime": "1725537606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006433 BTC for 82.71 CZK @ 1,285,643 CZK\nFees are 0.29048208 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (14.142072315061438548168616433 CZK)\nThe limits being 0.10 % (2.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55682993 BTC (378,656.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,285,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.06 % (337,227.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,046.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00231046 BTC (2,970.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.03 CZK over 4027 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006433 BTC for 82.71 CZK @ 1,285,643 CZK\nFees are 0.29048208 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.48 % (14.142072315061438548168616433 CZK)\nThe limits being 0.10 % (2.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55682993 BTC (378,656.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,285,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.06 % (337,227.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,046.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00231046 BTC (2,970.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.03 CZK over 4027 transactions" + } + ] + }, + { + "id": 5726, + "type": "message", + "date": "2024-09-05T18:00:06", + "date_unixtime": "1725552006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006518 BTC for 82.71 CZK @ 1,268,937 CZK\nFees are 0.29049588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (13.958311652083617128329459962 CZK)\nThe limits being 0.10 % (3.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55689511 BTC (378,739.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,268,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.58 % (327,925.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,963.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00237564 BTC (3,014.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.03 CZK over 4028 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006518 BTC for 82.71 CZK @ 1,268,937 CZK\nFees are 0.29049588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (13.958311652083617128329459962 CZK)\nThe limits being 0.10 % (3.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55689511 BTC (378,739.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,268,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.58 % (327,925.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,963.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00237564 BTC (3,014.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.03 CZK over 4028 transactions" + } + ] + }, + { + "id": 5727, + "type": "message", + "date": "2024-09-05T22:00:06", + "date_unixtime": "1725566406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006515 BTC for 82.71 CZK @ 1,269,514 CZK\nFees are 0.29049408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (13.964652410041447412949534649 CZK)\nThe limits being 0.10 % (3.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55696026 BTC (378,822.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,269,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.65 % (328,245.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,880.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00244079 BTC (3,098.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.02 CZK over 4029 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006515 BTC for 82.71 CZK @ 1,269,514 CZK\nFees are 0.29049408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (13.964652410041447412949534649 CZK)\nThe limits being 0.10 % (3.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55696026 BTC (378,822.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,269,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.65 % (328,245.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,880.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00244079 BTC (3,098.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.02 CZK over 4029 transactions" + } + ] + }, + { + "id": 5728, + "type": "message", + "date": "2024-09-06T02:00:09", + "date_unixtime": "1725580809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006506 BTC for 82.71 CZK @ 1,271,213 CZK\nFees are 0.29048107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (13.983343860582642583114034785 CZK)\nThe limits being 0.10 % (3.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55702532 BTC (378,905.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,271,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.88 % (329,192.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,797.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00250585 BTC (3,185.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.02 CZK over 4030 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006506 BTC for 82.71 CZK @ 1,271,213 CZK\nFees are 0.29048107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (13.983343860582642583114034785 CZK)\nThe limits being 0.10 % (3.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55702532 BTC (378,905.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,271,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.88 % (329,192.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,797.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00250585 BTC (3,185.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.02 CZK over 4030 transactions" + } + ] + }, + { + "id": 5729, + "type": "message", + "date": "2024-09-06T06:00:07", + "date_unixtime": "1725595207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006461 BTC for 82.70 CZK @ 1,279,994 CZK\nFees are 0.29046450 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (14.079932891588926452818324226 CZK)\nThe limits being 0.10 % (3.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55708993 BTC (378,988.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,279,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 88.15 % (334,082.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,714.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00257046 BTC (3,290.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.02 CZK over 4031 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006461 BTC for 82.70 CZK @ 1,279,994 CZK\nFees are 0.29046450 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (14.079932891588926452818324226 CZK)\nThe limits being 0.10 % (3.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55708993 BTC (378,988.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,279,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 88.15 % (334,082.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,714.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00257046 BTC (3,290.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.02 CZK over 4031 transactions" + } + ] + }, + { + "id": 5730, + "type": "message", + "date": "2024-09-06T10:00:07", + "date_unixtime": "1725609607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006551 BTC for 82.70 CZK @ 1,262,388 CZK\nFees are 0.29045973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (13.886269620973212592744201584 CZK)\nThe limits being 0.10 % (3.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55715544 BTC (379,071.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,262,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.54 % (324,274.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,631.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00263597 BTC (3,327.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.02 CZK over 4032 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006551 BTC for 82.70 CZK @ 1,262,388 CZK\nFees are 0.29045973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.42 % (13.886269620973212592744201584 CZK)\nThe limits being 0.10 % (3.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55715544 BTC (379,071.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,262,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.54 % (324,274.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,631.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00263597 BTC (3,327.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.02 CZK over 4032 transactions" + } + ] + }, + { + "id": 5731, + "type": "message", + "date": "2024-09-06T14:00:06", + "date_unixtime": "1725624006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006526 BTC for 82.70 CZK @ 1,267,297 CZK\nFees are 0.29047651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (13.940270819981734172504722591 CZK)\nThe limits being 0.10 % (3.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55722070 BTC (379,154.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,267,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 86.25 % (327,009.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,548.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00270123 BTC (3,423.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.01 CZK over 4033 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006526 BTC for 82.70 CZK @ 1,267,297 CZK\nFees are 0.29047651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (13.940270819981734172504722591 CZK)\nThe limits being 0.10 % (3.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55722070 BTC (379,154.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,267,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 86.25 % (327,009.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,548.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00270123 BTC (3,423.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.01 CZK over 4033 transactions" + } + ] + }, + { + "id": 5732, + "type": "message", + "date": "2024-09-06T18:00:07", + "date_unixtime": "1725638407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006746 BTC for 82.70 CZK @ 1,225,931 CZK\nFees are 0.29046755 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (13.485236016663291288081397884 CZK)\nThe limits being 0.10 % (3.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55728816 BTC (379,237.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,225,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.15 % (303,958.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,465.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00276869 BTC (3,394.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.01 CZK over 4034 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006746 BTC for 82.70 CZK @ 1,225,931 CZK\nFees are 0.29046755 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.40 % (13.485236016663291288081397884 CZK)\nThe limits being 0.10 % (3.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55728816 BTC (379,237.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,225,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.15 % (303,958.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,465.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00276869 BTC (3,394.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.01 CZK over 4034 transactions" + } + ] + }, + { + "id": 5733, + "type": "message", + "date": "2024-09-06T22:00:05", + "date_unixtime": "1725652805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006813 BTC for 82.71 CZK @ 1,213,990 CZK\nFees are 0.29049514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (13.353888607399421268185744434 CZK)\nThe limits being 0.10 % (3.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55735629 BTC (379,320.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,213,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 78.38 % (297,304.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,382.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00283682 BTC (3,443.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.01 CZK over 4035 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006813 BTC for 82.71 CZK @ 1,213,990 CZK\nFees are 0.29049514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.39 % (13.353888607399421268185744434 CZK)\nThe limits being 0.10 % (3.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55735629 BTC (379,320.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,213,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 78.38 % (297,304.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,382.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00283682 BTC (3,443.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.01 CZK over 4035 transactions" + } + ] + }, + { + "id": 5734, + "type": "message", + "date": "2024-09-07T02:00:06", + "date_unixtime": "1725667206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006743 BTC for 82.71 CZK @ 1,226,582 CZK\nFees are 0.29049270 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (13.492403829663063454093381160 CZK)\nThe limits being 0.10 % (3.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55742372 BTC (379,403.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,226,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.21 % (304,322.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,299.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00290425 BTC (3,562.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.00 CZK over 4036 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006743 BTC for 82.71 CZK @ 1,226,582 CZK\nFees are 0.29049270 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.38 % (13.492403829663063454093381160 CZK)\nThe limits being 0.10 % (3.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55742372 BTC (379,403.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,226,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.21 % (304,322.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,299.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00290425 BTC (3,562.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.00 CZK over 4036 transactions" + } + ] + }, + { + "id": 5735, + "type": "message", + "date": "2024-09-07T06:00:06", + "date_unixtime": "1725681606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006775 BTC for 82.71 CZK @ 1,220,781 CZK\nFees are 0.29049081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (13.428588242259104205391829704 CZK)\nThe limits being 0.10 % (3.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55749147 BTC (379,486.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,220,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.34 % (301,088.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,216.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00297200 BTC (3,628.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.00 CZK over 4037 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006775 BTC for 82.71 CZK @ 1,220,781 CZK\nFees are 0.29049081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.37 % (13.428588242259104205391829704 CZK)\nThe limits being 0.10 % (3.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55749147 BTC (379,486.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,220,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.34 % (301,088.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,216.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00297200 BTC (3,628.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.00 CZK over 4037 transactions" + } + ] + }, + { + "id": 5736, + "type": "message", + "date": "2024-09-07T10:00:06", + "date_unixtime": "1725696006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006707 BTC for 82.70 CZK @ 1,233,090 CZK\nFees are 0.29047491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.36 % (13.563993737440057160902994284 CZK)\nThe limits being 0.10 % (3.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55755854 BTC (379,569.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,233,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.13 % (307,950.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,133.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00303907 BTC (3,747.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.00 CZK over 4038 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006707 BTC for 82.70 CZK @ 1,233,090 CZK\nFees are 0.29047491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.36 % (13.563993737440057160902994284 CZK)\nThe limits being 0.10 % (3.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55755854 BTC (379,569.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,233,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.13 % (307,950.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,133.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00303907 BTC (3,747.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.00 CZK over 4038 transactions" + } + ] + }, + { + "id": 5737, + "type": "message", + "date": "2024-09-07T14:00:06", + "date_unixtime": "1725710406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006700 BTC for 82.70 CZK @ 1,234,346 CZK\nFees are 0.29046734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (13.577811073927819794896965100 CZK)\nThe limits being 0.10 % (3.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55762554 BTC (379,652.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,234,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.30 % (308,650.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,050.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00310607 BTC (3,833.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 94.00 CZK over 4039 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006700 BTC for 82.70 CZK @ 1,234,346 CZK\nFees are 0.29046734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (13.577811073927819794896965100 CZK)\nThe limits being 0.10 % (3.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55762554 BTC (379,652.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,234,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.30 % (308,650.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,050.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00310607 BTC (3,833.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 94.00 CZK over 4039 transactions" + } + ] + }, + { + "id": 5738, + "type": "message", + "date": "2024-09-07T18:00:06", + "date_unixtime": "1725724806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006645 BTC for 82.71 CZK @ 1,244,623 CZK\nFees are 0.29048133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (13.690852994354222223721864370 CZK)\nThe limits being 0.10 % (3.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55769199 BTC (379,735.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,244,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.79 % (314,380.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,967.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00317252 BTC (3,948.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.99 CZK over 4040 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006645 BTC for 82.71 CZK @ 1,244,623 CZK\nFees are 0.29048133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (13.690852994354222223721864370 CZK)\nThe limits being 0.10 % (3.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55769199 BTC (379,735.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,244,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.79 % (314,380.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,967.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00317252 BTC (3,948.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.99 CZK over 4040 transactions" + } + ] + }, + { + "id": 5739, + "type": "message", + "date": "2024-09-07T22:00:07", + "date_unixtime": "1725739207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006691 BTC for 82.70 CZK @ 1,236,056 CZK\nFees are 0.29047884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (13.596612798114981960090810544 CZK)\nThe limits being 0.10 % (4.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55775890 BTC (379,818.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 680,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,236,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.51 % (309,602.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,884.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00323943 BTC (4,004.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.99 CZK over 4041 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006691 BTC for 82.70 CZK @ 1,236,056 CZK\nFees are 0.29047884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.34 % (13.596612798114981960090810544 CZK)\nThe limits being 0.10 % (4.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55775890 BTC (379,818.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 680,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,236,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.51 % (309,602.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,884.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00323943 BTC (4,004.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.99 CZK over 4041 transactions" + } + ] + }, + { + "id": 5740, + "type": "message", + "date": "2024-09-08T02:00:07", + "date_unixtime": "1725753607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006723 BTC for 82.71 CZK @ 1,230,195 CZK\nFees are 0.29048422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (13.532146593867766550525488620 CZK)\nThe limits being 0.10 % (4.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55782613 BTC (379,901.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,230,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 80.63 % (306,333.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,801.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00330666 BTC (4,067.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.99 CZK over 4042 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006723 BTC for 82.71 CZK @ 1,230,195 CZK\nFees are 0.29048422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (13.532146593867766550525488620 CZK)\nThe limits being 0.10 % (4.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55782613 BTC (379,901.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,230,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 80.63 % (306,333.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,801.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00330666 BTC (4,067.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.99 CZK over 4042 transactions" + } + ] + }, + { + "id": 5741, + "type": "message", + "date": "2024-09-08T06:00:06", + "date_unixtime": "1725768006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006696 BTC for 82.71 CZK @ 1,235,172 CZK\nFees are 0.29048796 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (13.586886628877780813746868040 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55789309 BTC (379,984.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,235,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.35 % (309,108.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,718.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00337362 BTC (4,167.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.99 CZK over 4043 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006696 BTC for 82.71 CZK @ 1,235,172 CZK\nFees are 0.29048796 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.33 % (13.586886628877780813746868040 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55789309 BTC (379,984.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,235,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.35 % (309,108.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,718.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00337362 BTC (4,167.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.99 CZK over 4043 transactions" + } + ] + }, + { + "id": 5742, + "type": "message", + "date": "2024-09-08T10:00:06", + "date_unixtime": "1725782406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006692 BTC for 82.71 CZK @ 1,235,905 CZK\nFees are 0.29048691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (13.594958687331935357152536356 CZK)\nThe limits being 0.10 % (4.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55796001 BTC (380,067.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,235,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.44 % (309,517.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,635.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00344054 BTC (4,252.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.98 CZK over 4044 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006692 BTC for 82.71 CZK @ 1,235,905 CZK\nFees are 0.29048691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.32 % (13.594958687331935357152536356 CZK)\nThe limits being 0.10 % (4.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55796001 BTC (380,067.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,235,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.44 % (309,517.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,635.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00344054 BTC (4,252.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.98 CZK over 4044 transactions" + } + ] + }, + { + "id": 5743, + "type": "message", + "date": "2024-09-08T14:00:07", + "date_unixtime": "1725796807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006674 BTC for 82.70 CZK @ 1,239,146 CZK\nFees are 0.29046529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (13.630610286084410287696986230 CZK)\nThe limits being 0.10 % (4.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55802675 BTC (380,150.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,239,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.90 % (311,326.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,552.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00350728 BTC (4,346.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.98 CZK over 4045 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006674 BTC for 82.70 CZK @ 1,239,146 CZK\nFees are 0.29046529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (13.630610286084410287696986230 CZK)\nThe limits being 0.10 % (4.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55802675 BTC (380,150.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,239,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.90 % (311,326.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,552.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00350728 BTC (4,346.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.98 CZK over 4045 transactions" + } + ] + }, + { + "id": 5744, + "type": "message", + "date": "2024-09-08T18:00:06", + "date_unixtime": "1725811206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006781 BTC for 82.70 CZK @ 1,219,634 CZK\nFees are 0.29047493 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (13.415972891811266378029352657 CZK)\nThe limits being 0.10 % (4.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55809456 BTC (380,233.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,219,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 79.01 % (300,437.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,469.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00357509 BTC (4,360.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.98 CZK over 4046 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006781 BTC for 82.70 CZK @ 1,219,634 CZK\nFees are 0.29047493 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.31 % (13.415972891811266378029352657 CZK)\nThe limits being 0.10 % (4.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55809456 BTC (380,233.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,219,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 79.01 % (300,437.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,469.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00357509 BTC (4,360.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.98 CZK over 4046 transactions" + } + ] + }, + { + "id": 5745, + "type": "message", + "date": "2024-09-08T22:00:08", + "date_unixtime": "1725825608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006701 BTC for 82.70 CZK @ 1,234,177 CZK\nFees are 0.29047081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (13.575947442866546701527492159 CZK)\nThe limits being 0.10 % (4.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55816157 BTC (380,316.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,374 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,234,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 81.13 % (308,553.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,386.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00364210 BTC (4,495.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.97 CZK over 4047 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006701 BTC for 82.70 CZK @ 1,234,177 CZK\nFees are 0.29047081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (13.575947442866546701527492159 CZK)\nThe limits being 0.10 % (4.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55816157 BTC (380,316.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,374 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,234,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 81.13 % (308,553.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,386.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00364210 BTC (4,495.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.97 CZK over 4047 transactions" + } + ] + }, + { + "id": 5746, + "type": "message", + "date": "2024-09-09T02:00:06", + "date_unixtime": "1725840006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006645 BTC for 82.71 CZK @ 1,244,661 CZK\nFees are 0.29049022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (13.691272035610502443854335259 CZK)\nThe limits being 0.10 % (4.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55822802 BTC (380,399.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,244,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 82.65 % (314,404.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,303.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00370855 BTC (4,615.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.97 CZK over 4048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006645 BTC for 82.71 CZK @ 1,244,661 CZK\nFees are 0.29049022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.30 % (13.691272035610502443854335259 CZK)\nThe limits being 0.10 % (4.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55822802 BTC (380,399.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,244,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 82.65 % (314,404.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,303.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00370855 BTC (4,615.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.97 CZK over 4048 transactions" + } + ] + }, + { + "id": 5747, + "type": "message", + "date": "2024-09-09T06:00:06", + "date_unixtime": "1725854406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006610 BTC for 82.71 CZK @ 1,251,282 CZK\nFees are 0.29049718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (13.764097011594065249689626399 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55829412 BTC (380,482.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,251,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.60 % (318,100.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,220.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00377465 BTC (4,723.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.97 CZK over 4049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006610 BTC for 82.71 CZK @ 1,251,282 CZK\nFees are 0.29049718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (13.764097011594065249689626399 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55829412 BTC (380,482.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,251,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.60 % (318,100.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,220.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00377465 BTC (4,723.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.97 CZK over 4049 transactions" + } + ] + }, + { + "id": 5748, + "type": "message", + "date": "2024-09-09T10:00:06", + "date_unixtime": "1725868806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006613 BTC for 82.71 CZK @ 1,250,659 CZK\nFees are 0.29048443 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (13.757248993561096573304488275 CZK)\nThe limits being 0.10 % (4.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55836025 BTC (380,565.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,250,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 83.49 % (317,752.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,137.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00384078 BTC (4,803.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.97 CZK over 4050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006613 BTC for 82.71 CZK @ 1,250,659 CZK\nFees are 0.29048443 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (13.757248993561096573304488275 CZK)\nThe limits being 0.10 % (4.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55836025 BTC (380,565.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,250,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 83.49 % (317,752.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,137.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00384078 BTC (4,803.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.97 CZK over 4050 transactions" + } + ] + }, + { + "id": 5749, + "type": "message", + "date": "2024-09-09T14:00:07", + "date_unixtime": "1725883207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006570 BTC for 82.70 CZK @ 1,258,738 CZK\nFees are 0.29045988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (13.846118843712152064425955124 CZK)\nThe limits being 0.10 % (4.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55842595 BTC (380,648.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,258,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 84.66 % (322,263.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,054.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00390648 BTC (4,917.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.96 CZK over 4051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006570 BTC for 82.70 CZK @ 1,258,738 CZK\nFees are 0.29045988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (13.846118843712152064425955124 CZK)\nThe limits being 0.10 % (4.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55842595 BTC (380,648.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,258,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 84.66 % (322,263.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,054.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00390648 BTC (4,917.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.96 CZK over 4051 transactions" + } + ] + }, + { + "id": 5750, + "type": "message", + "date": "2024-09-09T18:00:06", + "date_unixtime": "1725897606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006554 BTC for 82.70 CZK @ 1,261,810 CZK\nFees are 0.29045959 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (13.879906809535560539637056084 CZK)\nThe limits being 0.10 % (5.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55849149 BTC (380,731.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,261,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 85.09 % (323,978.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,971.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00397202 BTC (5,011.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.96 CZK over 4052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006554 BTC for 82.70 CZK @ 1,261,810 CZK\nFees are 0.29045959 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (13.879906809535560539637056084 CZK)\nThe limits being 0.10 % (5.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55849149 BTC (380,731.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,261,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 85.09 % (323,978.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,971.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00397202 BTC (5,011.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.96 CZK over 4052 transactions" + } + ] + }, + { + "id": 5751, + "type": "message", + "date": "2024-09-09T22:00:07", + "date_unixtime": "1725912007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006357 BTC for 82.70 CZK @ 1,300,900 CZK\nFees are 0.29045677 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (14.309898376446947246694144821 CZK)\nThe limits being 0.10 % (5.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55855506 BTC (380,814.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,300,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.81 % (345,809.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,888.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00403559 BTC (5,249.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.96 CZK over 4053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006357 BTC for 82.70 CZK @ 1,300,900 CZK\nFees are 0.29045677 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (14.309898376446947246694144821 CZK)\nThe limits being 0.10 % (5.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55855506 BTC (380,814.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,300,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.81 % (345,809.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,888.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00403559 BTC (5,249.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.96 CZK over 4053 transactions" + } + ] + }, + { + "id": 5752, + "type": "message", + "date": "2024-09-10T02:00:06", + "date_unixtime": "1725926406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006356 BTC for 82.71 CZK @ 1,301,222 CZK\nFees are 0.29048291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (14.313438173754979033420786844 CZK)\nThe limits being 0.10 % (5.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55861862 BTC (380,897.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,301,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.84 % (345,988.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,805.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00409915 BTC (5,333.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.96 CZK over 4054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006356 BTC for 82.71 CZK @ 1,301,222 CZK\nFees are 0.29048291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (14.313438173754979033420786844 CZK)\nThe limits being 0.10 % (5.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55861862 BTC (380,897.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,301,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.84 % (345,988.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,805.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00409915 BTC (5,333.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.96 CZK over 4054 transactions" + } + ] + }, + { + "id": 5753, + "type": "message", + "date": "2024-09-10T06:00:06", + "date_unixtime": "1725940806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006413 BTC for 82.71 CZK @ 1,289,725 CZK\nFees are 0.29049844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (14.186975903377629411980879956 CZK)\nThe limits being 0.10 % (5.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55868275 BTC (380,980.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,289,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.13 % (339,566.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,722.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00416328 BTC (5,369.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.95 CZK over 4055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006413 BTC for 82.71 CZK @ 1,289,725 CZK\nFees are 0.29049844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (14.186975903377629411980879956 CZK)\nThe limits being 0.10 % (5.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55868275 BTC (380,980.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,289,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.13 % (339,566.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,722.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00416328 BTC (5,369.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.95 CZK over 4055 transactions" + } + ] + }, + { + "id": 5754, + "type": "message", + "date": "2024-09-10T10:00:06", + "date_unixtime": "1725955206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006333 BTC for 82.70 CZK @ 1,305,865 CZK\nFees are 0.29046463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (14.364517108799133555215831908 CZK)\nThe limits being 0.10 % (5.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55874608 BTC (381,063.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 681,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,305,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.48 % (348,583.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,639.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00422661 BTC (5,519.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.95 CZK over 4056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006333 BTC for 82.70 CZK @ 1,305,865 CZK\nFees are 0.29046463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (14.364517108799133555215831908 CZK)\nThe limits being 0.10 % (5.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55874608 BTC (381,063.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 681,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,305,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.48 % (348,583.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,639.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00422661 BTC (5,519.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.95 CZK over 4056 transactions" + } + ] + }, + { + "id": 5755, + "type": "message", + "date": "2024-09-10T14:00:06", + "date_unixtime": "1725969606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006333 BTC for 82.70 CZK @ 1,305,904 CZK\nFees are 0.29047333 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (14.364947177693484142938527723 CZK)\nThe limits being 0.10 % (5.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55880941 BTC (381,146.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,305,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.46 % (348,604.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,556.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00428994 BTC (5,602.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.95 CZK over 4057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006333 BTC for 82.70 CZK @ 1,305,904 CZK\nFees are 0.29047333 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (14.364947177693484142938527723 CZK)\nThe limits being 0.10 % (5.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55880941 BTC (381,146.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,305,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.46 % (348,604.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,556.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00428994 BTC (5,602.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.95 CZK over 4057 transactions" + } + ] + }, + { + "id": 5756, + "type": "message", + "date": "2024-09-10T18:00:06", + "date_unixtime": "1725984006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006398 BTC for 82.70 CZK @ 1,292,634 CZK\nFees are 0.29047271 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (14.218977429730547647161162876 CZK)\nThe limits being 0.10 % (5.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55887339 BTC (381,229.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,292,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.50 % (341,189.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,473.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00435392 BTC (5,628.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.95 CZK over 4058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006398 BTC for 82.70 CZK @ 1,292,634 CZK\nFees are 0.29047271 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (14.218977429730547647161162876 CZK)\nThe limits being 0.10 % (5.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55887339 BTC (381,229.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,292,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.50 % (341,189.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,473.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00435392 BTC (5,628.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.95 CZK over 4058 transactions" + } + ] + }, + { + "id": 5757, + "type": "message", + "date": "2024-09-10T22:00:06", + "date_unixtime": "1725998406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006245 BTC for 82.70 CZK @ 1,324,338 CZK\nFees are 0.29048034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (14.567719085043819809210597178 CZK)\nThe limits being 0.10 % (5.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55893584 BTC (381,312.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,324,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.12 % (358,907.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,390.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00441637 BTC (5,848.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.94 CZK over 4059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006245 BTC for 82.70 CZK @ 1,324,338 CZK\nFees are 0.29048034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (14.567719085043819809210597178 CZK)\nThe limits being 0.10 % (5.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55893584 BTC (381,312.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,324,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.12 % (358,907.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,390.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00441637 BTC (5,848.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.94 CZK over 4059 transactions" + } + ] + }, + { + "id": 5758, + "type": "message", + "date": "2024-09-11T02:00:06", + "date_unixtime": "1726012806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006280 BTC for 82.70 CZK @ 1,316,882 CZK\nFees are 0.29046365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (14.485697253402898771497211987 CZK)\nThe limits being 0.10 % (5.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55899864 BTC (381,395.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,316,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.01 % (354,739.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,307.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00447917 BTC (5,898.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.94 CZK over 4060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006280 BTC for 82.70 CZK @ 1,316,882 CZK\nFees are 0.29046365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.25 % (14.485697253402898771497211987 CZK)\nThe limits being 0.10 % (5.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55899864 BTC (381,395.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,316,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.01 % (354,739.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,307.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00447917 BTC (5,898.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.94 CZK over 4060 transactions" + } + ] + }, + { + "id": 5759, + "type": "message", + "date": "2024-09-11T06:00:07", + "date_unixtime": "1726027207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006383 BTC for 82.70 CZK @ 1,295,609 CZK\nFees are 0.29045852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.251695739047752418470181250 CZK)\nThe limits being 0.10 % (5.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55906247 BTC (381,478.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,295,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.87 % (342,847.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,224.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00454300 BTC (5,885.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.94 CZK over 4061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006383 BTC for 82.70 CZK @ 1,295,609 CZK\nFees are 0.29045852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.251695739047752418470181250 CZK)\nThe limits being 0.10 % (5.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55906247 BTC (381,478.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,295,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.87 % (342,847.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,224.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00454300 BTC (5,885.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.94 CZK over 4061 transactions" + } + ] + }, + { + "id": 5760, + "type": "message", + "date": "2024-09-11T10:00:06", + "date_unixtime": "1726041606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006393 BTC for 82.71 CZK @ 1,293,703 CZK\nFees are 0.29048566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.230732642539785862885188872 CZK)\nThe limits being 0.10 % (5.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55912640 BTC (381,561.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,293,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.57 % (341,781.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,141.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00460693 BTC (5,960.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.93 CZK over 4062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006393 BTC for 82.71 CZK @ 1,293,703 CZK\nFees are 0.29048566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.230732642539785862885188872 CZK)\nThe limits being 0.10 % (5.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55912640 BTC (381,561.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,293,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.57 % (341,781.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,141.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00460693 BTC (5,960.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.93 CZK over 4062 transactions" + } + ] + }, + { + "id": 5761, + "type": "message", + "date": "2024-09-11T14:00:07", + "date_unixtime": "1726056007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006384 BTC for 82.70 CZK @ 1,295,493 CZK\nFees are 0.29047818 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.250427586935699987387502138 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55919024 BTC (381,644.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,295,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 89.82 % (342,782.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,058.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00467077 BTC (6,050.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.93 CZK over 4063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006384 BTC for 82.70 CZK @ 1,295,493 CZK\nFees are 0.29047818 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.24 % (14.250427586935699987387502138 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55919024 BTC (381,644.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,295,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 89.82 % (342,782.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,058.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00467077 BTC (6,050.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.93 CZK over 4063 transactions" + } + ] + }, + { + "id": 5762, + "type": "message", + "date": "2024-09-11T18:00:08", + "date_unixtime": "1726070408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006369 BTC for 82.70 CZK @ 1,298,505 CZK\nFees are 0.29046932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (14.283553908470611925617850477 CZK)\nThe limits being 0.10 % (6.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55925393 BTC (381,727.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,298,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 90.24 % (344,466.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,975.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00473446 BTC (6,147.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.93 CZK over 4064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006369 BTC for 82.70 CZK @ 1,298,505 CZK\nFees are 0.29046932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (14.283553908470611925617850477 CZK)\nThe limits being 0.10 % (6.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55925393 BTC (381,727.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,298,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 90.24 % (344,466.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,975.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00473446 BTC (6,147.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.93 CZK over 4064 transactions" + } + ] + }, + { + "id": 5763, + "type": "message", + "date": "2024-09-11T22:00:07", + "date_unixtime": "1726084807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006282 BTC for 82.70 CZK @ 1,316,531 CZK\nFees are 0.29047873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (14.481837661784518273911415110 CZK)\nThe limits being 0.10 % (6.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55931675 BTC (381,810.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,316,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.86 % (354,547.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,892.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00479728 BTC (6,315.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.93 CZK over 4065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006282 BTC for 82.70 CZK @ 1,316,531 CZK\nFees are 0.29047873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.23 % (14.481837661784518273911415110 CZK)\nThe limits being 0.10 % (6.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55931675 BTC (381,810.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,316,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.86 % (354,547.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,892.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00479728 BTC (6,315.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.93 CZK over 4065 transactions" + } + ] + }, + { + "id": 5764, + "type": "message", + "date": "2024-09-12T02:00:07", + "date_unixtime": "1726099207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006310 BTC for 82.71 CZK @ 1,310,748 CZK\nFees are 0.29049194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (28.836463189928751746067843373 CZK)\nThe limits being 0.10 % (6.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55937985 BTC (381,893.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,310,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.99 % (351,312.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,810.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00486038 BTC (6,370.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.92 CZK over 4066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006310 BTC for 82.71 CZK @ 1,310,748 CZK\nFees are 0.29049194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (28.836463189928751746067843373 CZK)\nThe limits being 0.10 % (6.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55937985 BTC (381,893.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,310,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.99 % (351,312.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,810.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00486038 BTC (6,370.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.92 CZK over 4066 transactions" + } + ] + }, + { + "id": 5765, + "type": "message", + "date": "2024-09-12T06:00:07", + "date_unixtime": "1726113607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006214 BTC for 82.70 CZK @ 1,330,924 CZK\nFees are 0.29047588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (29.280338259285291951295666326 CZK)\nThe limits being 0.10 % (6.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55944199 BTC (381,976.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,330,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.93 % (362,598.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,727.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00492252 BTC (6,551.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.92 CZK over 4067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006214 BTC for 82.70 CZK @ 1,330,924 CZK\nFees are 0.29047588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (29.280338259285291951295666326 CZK)\nThe limits being 0.10 % (6.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55944199 BTC (381,976.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,330,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.93 % (362,598.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,727.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00492252 BTC (6,551.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.92 CZK over 4067 transactions" + } + ] + }, + { + "id": 5766, + "type": "message", + "date": "2024-09-12T10:00:07", + "date_unixtime": "1726128007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006214 BTC for 82.70 CZK @ 1,330,931 CZK\nFees are 0.29047741 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (14.640246321492414143032376704 CZK)\nThe limits being 0.10 % (6.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55950413 BTC (382,059.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,330,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.91 % (362,602.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,644.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00498466 BTC (6,634.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.92 CZK over 4068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006214 BTC for 82.70 CZK @ 1,330,931 CZK\nFees are 0.29047741 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (14.640246321492414143032376704 CZK)\nThe limits being 0.10 % (6.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55950413 BTC (382,059.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,330,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.91 % (362,602.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,644.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00498466 BTC (6,634.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.92 CZK over 4068 transactions" + } + ] + }, + { + "id": 5767, + "type": "message", + "date": "2024-09-12T14:00:06", + "date_unixtime": "1726142406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006220 BTC for 82.71 CZK @ 1,329,667 CZK\nFees are 0.29048172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (14.626340765039403887038452234 CZK)\nThe limits being 0.10 % (6.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55956633 BTC (382,142.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.70 % (361,894.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,561.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00504686 BTC (6,710.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.92 CZK over 4069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006220 BTC for 82.71 CZK @ 1,329,667 CZK\nFees are 0.29048172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (14.626340765039403887038452234 CZK)\nThe limits being 0.10 % (6.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55956633 BTC (382,142.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.70 % (361,894.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,561.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00504686 BTC (6,710.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.92 CZK over 4069 transactions" + } + ] + }, + { + "id": 5768, + "type": "message", + "date": "2024-09-12T18:00:08", + "date_unixtime": "1726156808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006295 BTC for 82.70 CZK @ 1,313,812 CZK\nFees are 0.29047875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (14.451931341971091647858389204 CZK)\nThe limits being 0.10 % (6.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55962928 BTC (382,225.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 682,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,313,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.36 % (353,022.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,478.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00510981 BTC (6,713.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.91 CZK over 4070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006295 BTC for 82.70 CZK @ 1,313,812 CZK\nFees are 0.29047875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.22 % (14.451931341971091647858389204 CZK)\nThe limits being 0.10 % (6.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55962928 BTC (382,225.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 682,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,313,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.36 % (353,022.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,478.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00510981 BTC (6,713.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.91 CZK over 4070 transactions" + } + ] + }, + { + "id": 5769, + "type": "message", + "date": "2024-09-12T22:00:07", + "date_unixtime": "1726171207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006219 BTC for 82.70 CZK @ 1,329,790 CZK\nFees are 0.29046173 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.627686108108675432737308790 CZK)\nThe limits being 0.10 % (6.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55969147 BTC (382,308.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,329,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.68 % (361,963.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,395.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00517200 BTC (6,877.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.91 CZK over 4071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006219 BTC for 82.70 CZK @ 1,329,790 CZK\nFees are 0.29046173 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.627686108108675432737308790 CZK)\nThe limits being 0.10 % (6.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55969147 BTC (382,308.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,329,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.68 % (361,963.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,395.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00517200 BTC (6,877.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.91 CZK over 4071 transactions" + } + ] + }, + { + "id": 5770, + "type": "message", + "date": "2024-09-13T02:00:06", + "date_unixtime": "1726185606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006250 BTC for 82.71 CZK @ 1,323,306 CZK\nFees are 0.29048624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.556360858116591928251121076 CZK)\nThe limits being 0.10 % (6.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55975397 BTC (382,391.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,323,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.71 % (358,333.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,312.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00523450 BTC (6,926.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.91 CZK over 4072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006250 BTC for 82.71 CZK @ 1,323,306 CZK\nFees are 0.29048624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.556360858116591928251121076 CZK)\nThe limits being 0.10 % (6.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55975397 BTC (382,391.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,323,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.71 % (358,333.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,312.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00523450 BTC (6,926.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.91 CZK over 4072 transactions" + } + ] + }, + { + "id": 5771, + "type": "message", + "date": "2024-09-13T06:00:06", + "date_unixtime": "1726200006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006287 BTC for 82.70 CZK @ 1,315,481 CZK\nFees are 0.29047816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.470291969993047239069174859 CZK)\nThe limits being 0.10 % (6.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55981684 BTC (382,474.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,315,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.54 % (353,953.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,229.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00529737 BTC (6,968.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.90 CZK over 4073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006287 BTC for 82.70 CZK @ 1,315,481 CZK\nFees are 0.29047816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.470291969993047239069174859 CZK)\nThe limits being 0.10 % (6.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55981684 BTC (382,474.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,315,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.54 % (353,953.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,229.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00529737 BTC (6,968.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.90 CZK over 4073 transactions" + } + ] + }, + { + "id": 5772, + "type": "message", + "date": "2024-09-13T10:00:06", + "date_unixtime": "1726214406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006263 BTC for 82.70 CZK @ 1,320,531 CZK\nFees are 0.29048005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.525837004620822172690967213 CZK)\nThe limits being 0.10 % (7.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55987947 BTC (382,557.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,320,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.26 % (356,780.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,146.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00536000 BTC (7,078.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.90 CZK over 4074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006263 BTC for 82.70 CZK @ 1,320,531 CZK\nFees are 0.29048005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.21 % (14.525837004620822172690967213 CZK)\nThe limits being 0.10 % (7.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55987947 BTC (382,557.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,320,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.26 % (356,780.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,146.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00536000 BTC (7,078.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.90 CZK over 4074 transactions" + } + ] + }, + { + "id": 5773, + "type": "message", + "date": "2024-09-13T14:00:06", + "date_unixtime": "1726228806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006276 BTC for 82.70 CZK @ 1,317,700 CZK\nFees are 0.29045896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.494695613949011474498274523 CZK)\nThe limits being 0.10 % (7.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.55994223 BTC (382,640.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,317,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.83 % (355,195.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,063.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00542276 BTC (7,145.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.90 CZK over 4075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006276 BTC for 82.70 CZK @ 1,317,700 CZK\nFees are 0.29045896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.494695613949011474498274523 CZK)\nThe limits being 0.10 % (7.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.55994223 BTC (382,640.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,317,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.83 % (355,195.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,063.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00542276 BTC (7,145.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.90 CZK over 4075 transactions" + } + ] + }, + { + "id": 5774, + "type": "message", + "date": "2024-09-13T18:00:06", + "date_unixtime": "1726243206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006105 BTC for 82.70 CZK @ 1,354,622 CZK\nFees are 0.29046200 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.900845934723961629791226204 CZK)\nThe limits being 0.10 % (7.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56000328 BTC (382,723.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,354,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.21 % (375,869.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,980.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00548381 BTC (7,428.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.90 CZK over 4076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006105 BTC for 82.70 CZK @ 1,354,622 CZK\nFees are 0.29046200 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.900845934723961629791226204 CZK)\nThe limits being 0.10 % (7.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56000328 BTC (382,723.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,354,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.21 % (375,869.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,980.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00548381 BTC (7,428.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.90 CZK over 4076 transactions" + } + ] + }, + { + "id": 5775, + "type": "message", + "date": "2024-09-13T22:00:07", + "date_unixtime": "1726257607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006081 BTC for 82.70 CZK @ 1,360,046 CZK\nFees are 0.29047848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.960504190111783564300150920 CZK)\nThe limits being 0.10 % (7.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56006409 BTC (382,806.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.98 % (378,906.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,897.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00554462 BTC (7,540.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.89 CZK over 4077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006081 BTC for 82.70 CZK @ 1,360,046 CZK\nFees are 0.29047848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.20 % (14.960504190111783564300150920 CZK)\nThe limits being 0.10 % (7.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56006409 BTC (382,806.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.98 % (378,906.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,897.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00554462 BTC (7,540.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.89 CZK over 4077 transactions" + } + ] + }, + { + "id": 5776, + "type": "message", + "date": "2024-09-14T02:00:07", + "date_unixtime": "1726272007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006008 BTC for 82.71 CZK @ 1,376,593 CZK\nFees are 0.29048311 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (30.285045045403670376053984160 CZK)\nThe limits being 0.10 % (7.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56012417 BTC (382,889.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,376,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.38 % (388,173.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,814.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00560470 BTC (7,715.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.89 CZK over 4078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006008 BTC for 82.71 CZK @ 1,376,593 CZK\nFees are 0.29048311 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (30.285045045403670376053984160 CZK)\nThe limits being 0.10 % (7.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56012417 BTC (382,889.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,376,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.38 % (388,173.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,814.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00560470 BTC (7,715.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.89 CZK over 4078 transactions" + } + ] + }, + { + "id": 5777, + "type": "message", + "date": "2024-09-14T06:00:07", + "date_unixtime": "1726286407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006017 BTC for 82.71 CZK @ 1,374,578 CZK\nFees are 0.29049242 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.120357440002040390625498143 CZK)\nThe limits being 0.10 % (7.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56018434 BTC (382,972.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,374,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.06 % (387,044.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,731.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00566487 BTC (7,786.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.89 CZK over 4079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006017 BTC for 82.71 CZK @ 1,374,578 CZK\nFees are 0.29049242 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.120357440002040390625498143 CZK)\nThe limits being 0.10 % (7.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56018434 BTC (382,972.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,374,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.06 % (387,044.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,731.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00566487 BTC (7,786.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.89 CZK over 4079 transactions" + } + ] + }, + { + "id": 5778, + "type": "message", + "date": "2024-09-14T10:00:06", + "date_unixtime": "1726300806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006039 BTC for 82.70 CZK @ 1,369,401 CZK\nFees are 0.29045651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.063411925292441845163058621 CZK)\nThe limits being 0.10 % (7.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56024473 BTC (383,055.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,369,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.28 % (384,144.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,648.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00572526 BTC (7,840.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.89 CZK over 4080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006039 BTC for 82.70 CZK @ 1,369,401 CZK\nFees are 0.29045651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.063411925292441845163058621 CZK)\nThe limits being 0.10 % (7.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56024473 BTC (383,055.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,369,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.28 % (384,144.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,648.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00572526 BTC (7,840.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.89 CZK over 4080 transactions" + } + ] + }, + { + "id": 5779, + "type": "message", + "date": "2024-09-14T14:00:06", + "date_unixtime": "1726315206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006084 BTC for 82.71 CZK @ 1,359,419 CZK\nFees are 0.29048790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.953612062580442481557808682 CZK)\nThe limits being 0.10 % (7.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56030557 BTC (383,138.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,359,419 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.80 % (378,551.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,565.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00578610 BTC (7,865.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.88 CZK over 4081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006084 BTC for 82.71 CZK @ 1,359,419 CZK\nFees are 0.29048790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.953612062580442481557808682 CZK)\nThe limits being 0.10 % (7.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56030557 BTC (383,138.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,359,419 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.80 % (378,551.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,565.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00578610 BTC (7,865.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.88 CZK over 4081 transactions" + } + ] + }, + { + "id": 5780, + "type": "message", + "date": "2024-09-14T18:00:06", + "date_unixtime": "1726329606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006063 BTC for 82.71 CZK @ 1,364,100 CZK\nFees are 0.29048196 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.005099012765891702971646080 CZK)\nThe limits being 0.10 % (7.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56036620 BTC (383,221.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,364,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.47 % (381,173.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,482.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00584673 BTC (7,975.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.88 CZK over 4082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006063 BTC for 82.71 CZK @ 1,364,100 CZK\nFees are 0.29048196 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (15.005099012765891702971646080 CZK)\nThe limits being 0.10 % (7.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56036620 BTC (383,221.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,364,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.47 % (381,173.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,482.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00584673 BTC (7,975.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.88 CZK over 4082 transactions" + } + ] + }, + { + "id": 5781, + "type": "message", + "date": "2024-09-14T22:00:06", + "date_unixtime": "1726344006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006077 BTC for 82.70 CZK @ 1,360,880 CZK\nFees are 0.29046544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.969678991392558167526049809 CZK)\nThe limits being 0.10 % (8.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56042697 BTC (383,304.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 683,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,360,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.97 % (379,369.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,399.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00590750 BTC (8,039.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.88 CZK over 4083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006077 BTC for 82.70 CZK @ 1,360,880 CZK\nFees are 0.29046544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.19 % (14.969678991392558167526049809 CZK)\nThe limits being 0.10 % (8.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56042697 BTC (383,304.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 683,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,360,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.97 % (379,369.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,399.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00590750 BTC (8,039.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.88 CZK over 4083 transactions" + } + ] + }, + { + "id": 5782, + "type": "message", + "date": "2024-09-15T02:00:05", + "date_unixtime": "1726358405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006057 BTC for 82.70 CZK @ 1,365,390 CZK\nFees are 0.29046897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (30.038582565116528340341576480 CZK)\nThe limits being 0.10 % (8.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56048754 BTC (383,387.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,365,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.61 % (381,896.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,316.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00596807 BTC (8,148.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.88 CZK over 4084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006057 BTC for 82.70 CZK @ 1,365,390 CZK\nFees are 0.29046897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (30.038582565116528340341576480 CZK)\nThe limits being 0.10 % (8.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56048754 BTC (383,387.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,365,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.61 % (381,896.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,316.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00596807 BTC (8,148.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.88 CZK over 4084 transactions" + } + ] + }, + { + "id": 5783, + "type": "message", + "date": "2024-09-15T06:00:06", + "date_unixtime": "1726372806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006041 BTC for 82.70 CZK @ 1,368,942 CZK\nFees are 0.29045529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (30.116722747325265394987762991 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56054795 BTC (383,470.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,099 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,368,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.11 % (383,887.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,233.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00602848 BTC (8,252.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.87 CZK over 4085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006041 BTC for 82.70 CZK @ 1,368,942 CZK\nFees are 0.29045529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (30.116722747325265394987762991 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56054795 BTC (383,470.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,099 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,368,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.11 % (383,887.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,233.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00602848 BTC (8,252.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.87 CZK over 4085 transactions" + } + ] + }, + { + "id": 5784, + "type": "message", + "date": "2024-09-15T10:00:07", + "date_unixtime": "1726387207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006051 BTC for 82.70 CZK @ 1,366,797 CZK\nFees are 0.29048016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (15.034762729718831552794437778 CZK)\nThe limits being 0.10 % (8.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56060846 BTC (383,553.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,366,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.77 % (382,684.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,150.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00608899 BTC (8,322.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.87 CZK over 4086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006051 BTC for 82.70 CZK @ 1,366,797 CZK\nFees are 0.29048016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (15.034762729718831552794437778 CZK)\nThe limits being 0.10 % (8.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56060846 BTC (383,553.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,366,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.77 % (382,684.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,150.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00608899 BTC (8,322.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.87 CZK over 4086 transactions" + } + ] + }, + { + "id": 5785, + "type": "message", + "date": "2024-09-15T14:00:05", + "date_unixtime": "1726401605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006053 BTC for 82.70 CZK @ 1,366,263 CZK\nFees are 0.29046278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (15.028896151426392888396312559 CZK)\nThe limits being 0.10 % (8.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56066899 BTC (383,636.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,366,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.67 % (382,385.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,067.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00614952 BTC (8,401.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.87 CZK over 4087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006053 BTC for 82.70 CZK @ 1,366,263 CZK\nFees are 0.29046278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (15.028896151426392888396312559 CZK)\nThe limits being 0.10 % (8.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56066899 BTC (383,636.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,366,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.67 % (382,385.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,067.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00614952 BTC (8,401.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.87 CZK over 4087 transactions" + } + ] + }, + { + "id": 5786, + "type": "message", + "date": "2024-09-15T18:00:05", + "date_unixtime": "1726416005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006027 BTC for 82.70 CZK @ 1,372,118 CZK\nFees are 0.29045444 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (15.093296190064490559795320658 CZK)\nThe limits being 0.10 % (8.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56072926 BTC (383,719.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,372,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.51 % (385,667.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,984.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00620979 BTC (8,520.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.86 CZK over 4088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006027 BTC for 82.70 CZK @ 1,372,118 CZK\nFees are 0.29045444 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (15.093296190064490559795320658 CZK)\nThe limits being 0.10 % (8.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56072926 BTC (383,719.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,372,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.51 % (385,667.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,984.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00620979 BTC (8,520.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.86 CZK over 4088 transactions" + } + ] + }, + { + "id": 5787, + "type": "message", + "date": "2024-09-15T22:00:06", + "date_unixtime": "1726430406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006067 BTC for 82.71 CZK @ 1,363,258 CZK\nFees are 0.29049416 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (14.995835992683921751042933710 CZK)\nThe limits being 0.10 % (8.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56078993 BTC (383,802.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,363,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.19 % (380,698.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,901.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00627046 BTC (8,548.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.86 CZK over 4089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006067 BTC for 82.71 CZK @ 1,363,258 CZK\nFees are 0.29049416 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (14.995835992683921751042933710 CZK)\nThe limits being 0.10 % (8.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56078993 BTC (383,802.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,363,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.19 % (380,698.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,901.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00627046 BTC (8,548.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.86 CZK over 4089 transactions" + } + ] + }, + { + "id": 5788, + "type": "message", + "date": "2024-09-16T02:00:06", + "date_unixtime": "1726444806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006143 BTC for 82.70 CZK @ 1,346,280 CZK\nFees are 0.29046995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.809075877761709971472952270 CZK)\nThe limits being 0.10 % (8.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56085136 BTC (383,885.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,346,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.69 % (371,177.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,818.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00633189 BTC (8,524.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.86 CZK over 4090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006143 BTC for 82.70 CZK @ 1,346,280 CZK\nFees are 0.29046995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.809075877761709971472952270 CZK)\nThe limits being 0.10 % (8.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56085136 BTC (383,885.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,346,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.69 % (371,177.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,818.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00633189 BTC (8,524.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.86 CZK over 4090 transactions" + } + ] + }, + { + "id": 5789, + "type": "message", + "date": "2024-09-16T06:00:06", + "date_unixtime": "1726459206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006232 BTC for 82.70 CZK @ 1,326,981 CZK\nFees are 0.29045407 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.596787321077128637701293228 CZK)\nThe limits being 0.10 % (8.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56091368 BTC (383,968.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,326,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 93.85 % (360,353.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,735.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00639421 BTC (8,484.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.86 CZK over 4091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006232 BTC for 82.70 CZK @ 1,326,981 CZK\nFees are 0.29045407 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.596787321077128637701293228 CZK)\nThe limits being 0.10 % (8.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56091368 BTC (383,968.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,326,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 93.85 % (360,353.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,735.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00639421 BTC (8,484.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.86 CZK over 4091 transactions" + } + ] + }, + { + "id": 5790, + "type": "message", + "date": "2024-09-16T10:00:07", + "date_unixtime": "1726473607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006183 BTC for 82.70 CZK @ 1,337,585 CZK\nFees are 0.29047320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.713435201765517276947794156 CZK)\nThe limits being 0.10 % (8.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56097551 BTC (384,051.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,337,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.38 % (366,301.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,652.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00645604 BTC (8,635.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.85 CZK over 4092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006183 BTC for 82.70 CZK @ 1,337,585 CZK\nFees are 0.29047320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.713435201765517276947794156 CZK)\nThe limits being 0.10 % (8.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56097551 BTC (384,051.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,337,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.38 % (366,301.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,652.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00645604 BTC (8,635.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.85 CZK over 4092 transactions" + } + ] + }, + { + "id": 5791, + "type": "message", + "date": "2024-09-16T14:00:06", + "date_unixtime": "1726488006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006210 BTC for 82.70 CZK @ 1,331,773 CZK\nFees are 0.29047388 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.649498313230585061784559196 CZK)\nThe limits being 0.10 % (8.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56103761 BTC (384,134.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,331,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.51 % (363,040.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,569.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00651814 BTC (8,680.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.85 CZK over 4093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006210 BTC for 82.70 CZK @ 1,331,773 CZK\nFees are 0.29047388 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.649498313230585061784559196 CZK)\nThe limits being 0.10 % (8.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56103761 BTC (384,134.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,331,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.51 % (363,040.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,569.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00651814 BTC (8,680.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.85 CZK over 4093 transactions" + } + ] + }, + { + "id": 5792, + "type": "message", + "date": "2024-09-16T18:00:06", + "date_unixtime": "1726502406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006293 BTC for 82.70 CZK @ 1,314,171 CZK\nFees are 0.29046578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.455879152982042590326832409 CZK)\nThe limits being 0.10 % (8.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56110054 BTC (384,217.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,314,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.92 % (353,164.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,486.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00658107 BTC (8,648.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.85 CZK over 4094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006293 BTC for 82.70 CZK @ 1,314,171 CZK\nFees are 0.29046578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.455879152982042590326832409 CZK)\nThe limits being 0.10 % (8.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56110054 BTC (384,217.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,314,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.92 % (353,164.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,486.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00658107 BTC (8,648.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.85 CZK over 4094 transactions" + } + ] + }, + { + "id": 5793, + "type": "message", + "date": "2024-09-16T22:00:05", + "date_unixtime": "1726516805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006294 BTC for 82.70 CZK @ 1,313,998 CZK\nFees are 0.29047382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.453982439440984200674189431 CZK)\nThe limits being 0.10 % (8.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56116348 BTC (384,300.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,313,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 91.87 % (353,067.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,403.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00664401 BTC (8,730.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.85 CZK over 4095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006294 BTC for 82.70 CZK @ 1,313,998 CZK\nFees are 0.29047382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.17 % (14.453982439440984200674189431 CZK)\nThe limits being 0.10 % (8.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56116348 BTC (384,300.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,313,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 91.87 % (353,067.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,403.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00664401 BTC (8,730.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.85 CZK over 4095 transactions" + } + ] + }, + { + "id": 5794, + "type": "message", + "date": "2024-09-17T02:00:15", + "date_unixtime": "1726531215", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006266 BTC for 82.70 CZK @ 1,319,808 CZK\nFees are 0.29046012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.517886244934939648669808878 CZK)\nThe limits being 0.10 % (8.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56122614 BTC (384,383.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,319,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.70 % (356,327.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,320.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00670667 BTC (8,851.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.84 CZK over 4096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006266 BTC for 82.70 CZK @ 1,319,808 CZK\nFees are 0.29046012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.517886244934939648669808878 CZK)\nThe limits being 0.10 % (8.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56122614 BTC (384,383.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,319,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.70 % (356,327.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,320.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00670667 BTC (8,851.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.84 CZK over 4096 transactions" + } + ] + }, + { + "id": 5795, + "type": "message", + "date": "2024-09-17T06:00:07", + "date_unixtime": "1726545607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006277 BTC for 82.70 CZK @ 1,317,536 CZK\nFees are 0.29046921 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.492898147704953961120148304 CZK)\nThe limits being 0.10 % (8.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56128891 BTC (384,466.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 684,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,317,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 92.35 % (355,052.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,237.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00676944 BTC (8,918.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.84 CZK over 4097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006277 BTC for 82.70 CZK @ 1,317,536 CZK\nFees are 0.29046921 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.492898147704953961120148304 CZK)\nThe limits being 0.10 % (8.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56128891 BTC (384,466.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 684,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,317,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 92.35 % (355,052.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,237.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00676944 BTC (8,918.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.84 CZK over 4097 transactions" + } + ] + }, + { + "id": 5796, + "type": "message", + "date": "2024-09-17T10:00:06", + "date_unixtime": "1726560006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006217 BTC for 82.71 CZK @ 1,330,323 CZK\nFees are 0.29048478 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.633552687357158101702750363 CZK)\nThe limits being 0.10 % (9.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56135108 BTC (384,549.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,330,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 94.20 % (362,228.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,154.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00683161 BTC (9,088.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.84 CZK over 4098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006217 BTC for 82.71 CZK @ 1,330,323 CZK\nFees are 0.29048478 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.633552687357158101702750363 CZK)\nThe limits being 0.10 % (9.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56135108 BTC (384,549.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,330,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 94.20 % (362,228.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,154.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00683161 BTC (9,088.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.84 CZK over 4098 transactions" + } + ] + }, + { + "id": 5797, + "type": "message", + "date": "2024-09-17T14:00:06", + "date_unixtime": "1726574406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006177 BTC for 82.70 CZK @ 1,338,845 CZK\nFees are 0.29046471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.727296649520106856050770659 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56141285 BTC (384,632.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,115 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,338,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 95.42 % (367,012.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,071.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00689338 BTC (9,229.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.84 CZK over 4099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006177 BTC for 82.70 CZK @ 1,338,845 CZK\nFees are 0.29046471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (14.727296649520106856050770659 CZK)\nThe limits being 0.10 % (9.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56141285 BTC (384,632.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,115 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,338,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 95.42 % (367,012.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,071.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00689338 BTC (9,229.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.84 CZK over 4099 transactions" + } + ] + }, + { + "id": 5798, + "type": "message", + "date": "2024-09-17T18:00:07", + "date_unixtime": "1726588807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005969 BTC for 82.70 CZK @ 1,385,467 CZK\nFees are 0.29045790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.240137103151200651965064810 CZK)\nThe limits being 0.10 % (9.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56147254 BTC (384,715.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,385,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.20 % (393,186.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,988.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00695307 BTC (9,633.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.83 CZK over 4100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005969 BTC for 82.70 CZK @ 1,385,467 CZK\nFees are 0.29045790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.16 % (15.240137103151200651965064810 CZK)\nThe limits being 0.10 % (9.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56147254 BTC (384,715.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,385,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.20 % (393,186.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,988.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00695307 BTC (9,633.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.83 CZK over 4100 transactions" + } + ] + }, + { + "id": 5799, + "type": "message", + "date": "2024-09-17T22:00:06", + "date_unixtime": "1726603206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006084 BTC for 82.71 CZK @ 1,359,462 CZK\nFees are 0.29049711 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (29.908172483094180231124004841 CZK)\nThe limits being 0.10 % (9.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56153338 BTC (384,798.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,359,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.39 % (378,585.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,905.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00701391 BTC (9,535.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.83 CZK over 4101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006084 BTC for 82.71 CZK @ 1,359,462 CZK\nFees are 0.29049711 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (29.908172483094180231124004841 CZK)\nThe limits being 0.10 % (9.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56153338 BTC (384,798.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,359,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.39 % (378,585.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,905.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00701391 BTC (9,535.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.83 CZK over 4101 transactions" + } + ] + }, + { + "id": 5800, + "type": "message", + "date": "2024-09-18T02:00:06", + "date_unixtime": "1726617606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006057 BTC for 82.70 CZK @ 1,365,356 CZK\nFees are 0.29046172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (30.037832700292249374177336560 CZK)\nThe limits being 0.10 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56159395 BTC (384,881.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,365,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.22 % (381,894.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,822.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00707448 BTC (9,659.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.83 CZK over 4102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006057 BTC for 82.70 CZK @ 1,365,356 CZK\nFees are 0.29046172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (30.037832700292249374177336560 CZK)\nThe limits being 0.10 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56159395 BTC (384,881.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,365,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.22 % (381,894.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,822.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00707448 BTC (9,659.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.83 CZK over 4102 transactions" + } + ] + }, + { + "id": 5801, + "type": "message", + "date": "2024-09-18T06:00:08", + "date_unixtime": "1726632008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006033 BTC for 82.70 CZK @ 1,370,867 CZK\nFees are 0.29047849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.079533990886034466967139956 CZK)\nThe limits being 0.10 % (9.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56165428 BTC (384,964.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,370,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.01 % (384,988.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,739.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00713481 BTC (9,780.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.83 CZK over 4103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006033 BTC for 82.70 CZK @ 1,370,867 CZK\nFees are 0.29047849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.079533990886034466967139956 CZK)\nThe limits being 0.10 % (9.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56165428 BTC (384,964.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,370,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.01 % (384,988.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,739.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00713481 BTC (9,780.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.83 CZK over 4103 transactions" + } + ] + }, + { + "id": 5802, + "type": "message", + "date": "2024-09-18T10:00:07", + "date_unixtime": "1726646407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006049 BTC for 82.70 CZK @ 1,367,134 CZK\nFees are 0.29045592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.038478964391697994035259136 CZK)\nThe limits being 0.10 % (9.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56171477 BTC (385,047.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,367,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.44 % (382,892.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,656.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00719530 BTC (9,836.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.82 CZK over 4104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006049 BTC for 82.70 CZK @ 1,367,134 CZK\nFees are 0.29045592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.038478964391697994035259136 CZK)\nThe limits being 0.10 % (9.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56171477 BTC (385,047.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,367,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.44 % (382,892.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,656.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00719530 BTC (9,836.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.82 CZK over 4104 transactions" + } + ] + }, + { + "id": 5803, + "type": "message", + "date": "2024-09-18T14:00:07", + "date_unixtime": "1726660807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006108 BTC for 82.70 CZK @ 1,353,978 CZK\nFees are 0.29046645 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.893755313997603019425462094 CZK)\nThe limits being 0.10 % (9.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56177585 BTC (385,130.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,353,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 97.50 % (375,501.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,573.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00725638 BTC (9,824.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.82 CZK over 4105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006108 BTC for 82.70 CZK @ 1,353,978 CZK\nFees are 0.29046645 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.893755313997603019425462094 CZK)\nThe limits being 0.10 % (9.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56177585 BTC (385,130.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,353,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 97.50 % (375,501.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,573.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00725638 BTC (9,824.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.82 CZK over 4105 transactions" + } + ] + }, + { + "id": 5804, + "type": "message", + "date": "2024-09-18T18:00:07", + "date_unixtime": "1726675207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006148 BTC for 82.70 CZK @ 1,345,179 CZK\nFees are 0.29046869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.796967788083283005252598340 CZK)\nThe limits being 0.10 % (9.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56183733 BTC (385,213.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,345,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 96.20 % (370,558.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,490.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00731786 BTC (9,843.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.82 CZK over 4106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006148 BTC for 82.70 CZK @ 1,345,179 CZK\nFees are 0.29046869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.796967788083283005252598340 CZK)\nThe limits being 0.10 % (9.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56183733 BTC (385,213.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,345,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 96.20 % (370,558.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,490.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00731786 BTC (9,843.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.82 CZK over 4106 transactions" + } + ] + }, + { + "id": 5805, + "type": "message", + "date": "2024-09-18T22:00:07", + "date_unixtime": "1726689607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00006074 BTC for 82.70 CZK @ 1,361,610 CZK\nFees are 0.29047774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.977706941083225503625030537 CZK)\nThe limits being 0.10 % (10.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56189807 BTC (385,296.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,361,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 98.57 % (379,789.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,407.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00737860 BTC (10,046.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.81 CZK over 4107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00006074 BTC for 82.70 CZK @ 1,361,610 CZK\nFees are 0.29047774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (14.977706941083225503625030537 CZK)\nThe limits being 0.10 % (10.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56189807 BTC (385,296.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,361,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 98.57 % (379,789.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,407.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00737860 BTC (10,046.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.81 CZK over 4107 transactions" + } + ] + }, + { + "id": 5806, + "type": "message", + "date": "2024-09-19T02:00:08", + "date_unixtime": "1726704008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005926 BTC for 82.71 CZK @ 1,395,717 CZK\nFees are 0.29049896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.352892310090518487352988805 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56195733 BTC (385,379.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,395,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.52 % (398,954.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,324.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00743786 BTC (10,381.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.81 CZK over 4108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005926 BTC for 82.71 CZK @ 1,395,717 CZK\nFees are 0.29049896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.352892310090518487352988805 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56195733 BTC (385,379.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,395,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.52 % (398,954.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,324.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00743786 BTC (10,381.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.81 CZK over 4108 transactions" + } + ] + }, + { + "id": 5807, + "type": "message", + "date": "2024-09-19T06:00:07", + "date_unixtime": "1726718407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005880 BTC for 82.70 CZK @ 1,406,536 CZK\nFees are 0.29047831 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.471900054909856319209298069 CZK)\nThe limits being 0.10 % (10.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56201613 BTC (385,462.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,406,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.08 % (405,033.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,241.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00749666 BTC (10,544.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.81 CZK over 4109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005880 BTC for 82.70 CZK @ 1,406,536 CZK\nFees are 0.29047831 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.471900054909856319209298069 CZK)\nThe limits being 0.10 % (10.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56201613 BTC (385,462.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,406,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.08 % (405,033.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,241.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00749666 BTC (10,544.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.81 CZK over 4109 transactions" + } + ] + }, + { + "id": 5808, + "type": "message", + "date": "2024-09-19T10:00:07", + "date_unixtime": "1726732807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005897 BTC for 82.70 CZK @ 1,402,486 CZK\nFees are 0.29047929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.427349342588374976204616722 CZK)\nThe limits being 0.10 % (10.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56207510 BTC (385,545.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 685,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,402,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.46 % (402,757.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,158.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00755563 BTC (10,596.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.81 CZK over 4110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005897 BTC for 82.70 CZK @ 1,402,486 CZK\nFees are 0.29047929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (15.427349342588374976204616722 CZK)\nThe limits being 0.10 % (10.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56207510 BTC (385,545.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 685,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,402,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.46 % (402,757.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,158.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00755563 BTC (10,596.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.81 CZK over 4110 transactions" + } + ] + }, + { + "id": 5809, + "type": "message", + "date": "2024-09-19T14:00:09", + "date_unixtime": "1726747209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005861 BTC for 82.70 CZK @ 1,411,107 CZK\nFees are 0.29048051 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.522173989909229996666674318 CZK)\nThe limits being 0.10 % (10.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56213371 BTC (385,628.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,411,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.70 % (407,602.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,075.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00761424 BTC (10,744.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.80 CZK over 4111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005861 BTC for 82.70 CZK @ 1,411,107 CZK\nFees are 0.29048051 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.522173989909229996666674318 CZK)\nThe limits being 0.10 % (10.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56213371 BTC (385,628.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,411,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.70 % (407,602.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,075.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00761424 BTC (10,744.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.80 CZK over 4111 transactions" + } + ] + }, + { + "id": 5810, + "type": "message", + "date": "2024-09-19T18:00:06", + "date_unixtime": "1726761606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005789 BTC for 82.71 CZK @ 1,428,660 CZK\nFees are 0.29048115 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (47.145791505512361597080799340 CZK)\nThe limits being 0.10 % (10.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56219160 BTC (385,711.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.23 % (417,469.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,992.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00767213 BTC (10,960.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.80 CZK over 4112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005789 BTC for 82.71 CZK @ 1,428,660 CZK\nFees are 0.29048115 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (47.145791505512361597080799340 CZK)\nThe limits being 0.10 % (10.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56219160 BTC (385,711.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.23 % (417,469.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,992.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00767213 BTC (10,960.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.80 CZK over 4112 transactions" + } + ] + }, + { + "id": 5811, + "type": "message", + "date": "2024-09-19T22:00:07", + "date_unixtime": "1726776007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005792 BTC for 82.71 CZK @ 1,428,001 CZK\nFees are 0.29049750 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (31.416015609730583840536024466 CZK)\nThe limits being 0.10 % (11.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56224952 BTC (385,794.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.11 % (417,098.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,909.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00773005 BTC (11,038.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.80 CZK over 4113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005792 BTC for 82.71 CZK @ 1,428,001 CZK\nFees are 0.29049750 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (31.416015609730583840536024466 CZK)\nThe limits being 0.10 % (11.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56224952 BTC (385,794.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.11 % (417,098.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,909.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00773005 BTC (11,038.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.80 CZK over 4113 transactions" + } + ] + }, + { + "id": 5812, + "type": "message", + "date": "2024-09-20T02:00:09", + "date_unixtime": "1726790409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005822 BTC for 82.70 CZK @ 1,420,418 CZK\nFees are 0.29045158 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (31.249193038039140575830693569 CZK)\nThe limits being 0.10 % (11.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56230774 BTC (385,877.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,420,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.99 % (412,834.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,826.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00778827 BTC (11,062.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.80 CZK over 4114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005822 BTC for 82.70 CZK @ 1,420,418 CZK\nFees are 0.29045158 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (31.249193038039140575830693569 CZK)\nThe limits being 0.10 % (11.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56230774 BTC (385,877.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,420,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.99 % (412,834.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,826.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00778827 BTC (11,062.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.80 CZK over 4114 transactions" + } + ] + }, + { + "id": 5813, + "type": "message", + "date": "2024-09-20T06:00:09", + "date_unixtime": "1726804809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005771 BTC for 82.71 CZK @ 1,433,194 CZK\nFees are 0.29049680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.765129756647091271349099844 CZK)\nThe limits being 0.10 % (11.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56236545 BTC (385,960.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.82 % (420,018.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,743.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00784598 BTC (11,244.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.79 CZK over 4115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005771 BTC for 82.71 CZK @ 1,433,194 CZK\nFees are 0.29049680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.765129756647091271349099844 CZK)\nThe limits being 0.10 % (11.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56236545 BTC (385,960.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.82 % (420,018.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,743.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00784598 BTC (11,244.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.79 CZK over 4115 transactions" + } + ] + }, + { + "id": 5814, + "type": "message", + "date": "2024-09-20T10:00:08", + "date_unixtime": "1726819208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005768 BTC for 82.71 CZK @ 1,433,921 CZK\nFees are 0.29049324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.773135651951871639276402218 CZK)\nThe limits being 0.10 % (11.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56242313 BTC (386,043.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,921 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.91 % (420,427.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,660.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00790366 BTC (11,333.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.79 CZK over 4116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005768 BTC for 82.71 CZK @ 1,433,921 CZK\nFees are 0.29049324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.773135651951871639276402218 CZK)\nThe limits being 0.10 % (11.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56242313 BTC (386,043.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,921 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.91 % (420,427.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,660.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00790366 BTC (11,333.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.79 CZK over 4116 transactions" + } + ] + }, + { + "id": 5815, + "type": "message", + "date": "2024-09-20T14:00:10", + "date_unixtime": "1726833610", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005782 BTC for 82.71 CZK @ 1,430,427 CZK\nFees are 0.29048862 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.734694121767173591840526334 CZK)\nThe limits being 0.10 % (11.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56248095 BTC (386,126.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,430,427 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.37 % (418,461.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,577.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00796148 BTC (11,388.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.79 CZK over 4117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005782 BTC for 82.71 CZK @ 1,430,427 CZK\nFees are 0.29048862 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.14 % (15.734694121767173591840526334 CZK)\nThe limits being 0.10 % (11.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56248095 BTC (386,126.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,430,427 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.37 % (418,461.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,577.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00796148 BTC (11,388.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.79 CZK over 4117 transactions" + } + ] + }, + { + "id": 5816, + "type": "message", + "date": "2024-09-20T18:00:07", + "date_unixtime": "1726848007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005809 BTC for 82.70 CZK @ 1,423,682 CZK\nFees are 0.29046900 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.321003495855399542812070303 CZK)\nThe limits being 0.10 % (11.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56253904 BTC (386,209.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,423,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.37 % (414,667.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,494.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00801957 BTC (11,417.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.79 CZK over 4118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005809 BTC for 82.70 CZK @ 1,423,682 CZK\nFees are 0.29046900 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.321003495855399542812070303 CZK)\nThe limits being 0.10 % (11.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56253904 BTC (386,209.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,423,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.37 % (414,667.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,494.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00801957 BTC (11,417.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.79 CZK over 4118 transactions" + } + ] + }, + { + "id": 5817, + "type": "message", + "date": "2024-09-20T22:00:06", + "date_unixtime": "1726862406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005845 BTC for 82.70 CZK @ 1,414,825 CZK\nFees are 0.29045085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.126149263207516208241215628 CZK)\nThe limits being 0.10 % (11.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56259749 BTC (386,292.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,825 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.06 % (409,684.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,411.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00807802 BTC (11,428.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.78 CZK over 4119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005845 BTC for 82.70 CZK @ 1,414,825 CZK\nFees are 0.29045085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.126149263207516208241215628 CZK)\nThe limits being 0.10 % (11.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56259749 BTC (386,292.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,825 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.06 % (409,684.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,411.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00807802 BTC (11,428.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.78 CZK over 4119 transactions" + } + ] + }, + { + "id": 5818, + "type": "message", + "date": "2024-09-21T02:00:06", + "date_unixtime": "1726876806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005811 BTC for 82.70 CZK @ 1,423,114 CZK\nFees are 0.29045299 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.308498416958645086372536938 CZK)\nThe limits being 0.10 % (11.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56265560 BTC (386,375.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,423,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.24 % (414,347.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,328.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00813613 BTC (11,578.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.78 CZK over 4120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005811 BTC for 82.70 CZK @ 1,423,114 CZK\nFees are 0.29045299 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (31.308498416958645086372536938 CZK)\nThe limits being 0.10 % (11.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56265560 BTC (386,375.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,423,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.24 % (414,347.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,328.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00813613 BTC (11,578.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.78 CZK over 4120 transactions" + } + ] + }, + { + "id": 5819, + "type": "message", + "date": "2024-09-21T06:00:08", + "date_unixtime": "1726891208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005834 BTC for 82.70 CZK @ 1,417,511 CZK\nFees are 0.29045454 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.592617048421030336229777883 CZK)\nThe limits being 0.10 % (11.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56271394 BTC (386,458.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.40 % (411,194.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,245.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00819447 BTC (11,615.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.78 CZK over 4121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005834 BTC for 82.70 CZK @ 1,417,511 CZK\nFees are 0.29045454 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.592617048421030336229777883 CZK)\nThe limits being 0.10 % (11.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56271394 BTC (386,458.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.40 % (411,194.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,245.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00819447 BTC (11,615.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.78 CZK over 4121 transactions" + } + ] + }, + { + "id": 5820, + "type": "message", + "date": "2024-09-21T10:00:07", + "date_unixtime": "1726905607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005822 BTC for 82.55 CZK @ 1,417,815 CZK\nFees are 0.28991936 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.595965914558406621140676133 CZK)\nThe limits being 0.10 % (11.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56277216 BTC (386,541.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.42 % (411,365.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,162.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00825269 BTC (11,700.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.78 CZK over 4122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005822 BTC for 82.55 CZK @ 1,417,815 CZK\nFees are 0.28991936 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.595965914558406621140676133 CZK)\nThe limits being 0.10 % (11.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56277216 BTC (386,541.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.42 % (411,365.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,162.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00825269 BTC (11,700.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.78 CZK over 4122 transactions" + } + ] + }, + { + "id": 5821, + "type": "message", + "date": "2024-09-21T14:00:08", + "date_unixtime": "1726920008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,224 CZK\nFees are 0.29047132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.644467902153297508590954874 CZK)\nThe limits being 0.10 % (11.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56283031 BTC (386,624.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 686,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.04 % (413,846.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,079.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00831084 BTC (11,819.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.77 CZK over 4123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005815 BTC for 82.70 CZK @ 1,422,224 CZK\nFees are 0.29047132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.644467902153297508590954874 CZK)\nThe limits being 0.10 % (11.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56283031 BTC (386,624.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 686,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.04 % (413,846.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,079.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00831084 BTC (11,819.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.77 CZK over 4123 transactions" + } + ] + }, + { + "id": 5822, + "type": "message", + "date": "2024-09-21T18:00:06", + "date_unixtime": "1726934406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005805 BTC for 82.70 CZK @ 1,424,681 CZK\nFees are 0.29047276 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.671496069699205236452777038 CZK)\nThe limits being 0.10 % (11.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56288836 BTC (386,707.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,424,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.38 % (415,229.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,996.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00836889 BTC (11,923.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.77 CZK over 4124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005805 BTC for 82.70 CZK @ 1,424,681 CZK\nFees are 0.29047276 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.671496069699205236452777038 CZK)\nThe limits being 0.10 % (11.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56288836 BTC (386,707.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,424,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.38 % (415,229.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,996.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00836889 BTC (11,923.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.77 CZK over 4124 transactions" + } + ] + }, + { + "id": 5823, + "type": "message", + "date": "2024-09-21T22:00:07", + "date_unixtime": "1726948807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005803 BTC for 82.70 CZK @ 1,425,202 CZK\nFees are 0.29047873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.677219290814048126061627661 CZK)\nThe limits being 0.10 % (12.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56294639 BTC (386,790.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,425,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.43 % (415,522.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,913.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00842692 BTC (12,010.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.77 CZK over 4125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005803 BTC for 82.70 CZK @ 1,425,202 CZK\nFees are 0.29047873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.677219290814048126061627661 CZK)\nThe limits being 0.10 % (12.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56294639 BTC (386,790.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,425,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.43 % (415,522.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,913.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00842692 BTC (12,010.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.77 CZK over 4125 transactions" + } + ] + }, + { + "id": 5824, + "type": "message", + "date": "2024-09-22T02:00:08", + "date_unixtime": "1726963208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005791 BTC for 82.71 CZK @ 1,428,234 CZK\nFees are 0.29049485 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.710577189816646744166097299 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56300430 BTC (386,873.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.85 % (417,229.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,830.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00848483 BTC (12,118.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.76 CZK over 4126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005791 BTC for 82.71 CZK @ 1,428,234 CZK\nFees are 0.29049485 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.710577189816646744166097299 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56300430 BTC (386,873.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.85 % (417,229.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,830.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00848483 BTC (12,118.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.76 CZK over 4126 transactions" + } + ] + }, + { + "id": 5825, + "type": "message", + "date": "2024-09-22T06:00:07", + "date_unixtime": "1726977607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005812 BTC for 82.70 CZK @ 1,422,891 CZK\nFees are 0.29045755 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.651801125002614730068984294 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56306242 BTC (386,955.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.05 % (414,220.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,747.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00854295 BTC (12,155.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.76 CZK over 4127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005812 BTC for 82.70 CZK @ 1,422,891 CZK\nFees are 0.29045755 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.651801125002614730068984294 CZK)\nThe limits being 0.10 % (12.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56306242 BTC (386,955.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.05 % (414,220.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,747.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00854295 BTC (12,155.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.76 CZK over 4127 transactions" + } + ] + }, + { + "id": 5826, + "type": "message", + "date": "2024-09-22T10:00:06", + "date_unixtime": "1726992006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005830 BTC for 82.70 CZK @ 1,418,559 CZK\nFees are 0.29047011 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.604151712402816557144334452 CZK)\nThe limits being 0.10 % (12.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56312072 BTC (387,038.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.39 % (411,781.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,664.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00860125 BTC (12,201.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.76 CZK over 4128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005830 BTC for 82.70 CZK @ 1,418,559 CZK\nFees are 0.29047011 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.604151712402816557144334452 CZK)\nThe limits being 0.10 % (12.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56312072 BTC (387,038.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.39 % (411,781.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,664.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00860125 BTC (12,201.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.76 CZK over 4128 transactions" + } + ] + }, + { + "id": 5827, + "type": "message", + "date": "2024-09-22T14:00:07", + "date_unixtime": "1727006407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005842 BTC for 82.70 CZK @ 1,415,659 CZK\nFees are 0.29047291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.572249432361605998314355762 CZK)\nThe limits being 0.10 % (12.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56317914 BTC (387,121.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,415,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.95 % (410,147.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,581.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00865967 BTC (12,259.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.76 CZK over 4129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005842 BTC for 82.70 CZK @ 1,415,659 CZK\nFees are 0.29047291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.572249432361605998314355762 CZK)\nThe limits being 0.10 % (12.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56317914 BTC (387,121.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,415,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.95 % (410,147.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,581.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00865967 BTC (12,259.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.76 CZK over 4129 transactions" + } + ] + }, + { + "id": 5828, + "type": "message", + "date": "2024-09-22T18:00:06", + "date_unixtime": "1727020806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005856 BTC for 82.70 CZK @ 1,412,270 CZK\nFees are 0.29047189 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.534965779096931232489565210 CZK)\nThe limits being 0.10 % (12.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56323770 BTC (387,204.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,412,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.43 % (408,238.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,498.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00871823 BTC (12,312.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.75 CZK over 4130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005856 BTC for 82.70 CZK @ 1,412,270 CZK\nFees are 0.29047189 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.534965779096931232489565210 CZK)\nThe limits being 0.10 % (12.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56323770 BTC (387,204.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,412,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.43 % (408,238.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,498.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00871823 BTC (12,312.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.75 CZK over 4130 transactions" + } + ] + }, + { + "id": 5829, + "type": "message", + "date": "2024-09-22T22:00:07", + "date_unixtime": "1727035207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005812 BTC for 82.70 CZK @ 1,422,899 CZK\nFees are 0.29045918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.651889344280565165760169757 CZK)\nThe limits being 0.10 % (12.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56329582 BTC (387,287.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,422,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.96 % (414,225.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,415.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00877635 BTC (12,487.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.75 CZK over 4131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005812 BTC for 82.70 CZK @ 1,422,899 CZK\nFees are 0.29045918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.13 % (15.651889344280565165760169757 CZK)\nThe limits being 0.10 % (12.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56329582 BTC (387,287.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,422,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.96 % (414,225.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,415.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00877635 BTC (12,487.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.75 CZK over 4131 transactions" + } + ] + }, + { + "id": 5830, + "type": "message", + "date": "2024-09-23T02:00:08", + "date_unixtime": "1727049608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005768 BTC for 82.70 CZK @ 1,433,762 CZK\nFees are 0.29046095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.771382295979328936793345344 CZK)\nThe limits being 0.10 % (12.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56335350 BTC (387,370.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.51 % (420,343.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,332.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00883403 BTC (12,665.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.75 CZK over 4132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005768 BTC for 82.70 CZK @ 1,433,762 CZK\nFees are 0.29046095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.771382295979328936793345344 CZK)\nThe limits being 0.10 % (12.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56335350 BTC (387,370.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.51 % (420,343.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,332.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00883403 BTC (12,665.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.75 CZK over 4132 transactions" + } + ] + }, + { + "id": 5831, + "type": "message", + "date": "2024-09-23T06:00:07", + "date_unixtime": "1727064007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005704 BTC for 82.70 CZK @ 1,449,907 CZK\nFees are 0.29047257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.948978638579837329515000442 CZK)\nThe limits being 0.10 % (12.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56341054 BTC (387,453.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.84 % (429,439.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,249.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00889107 BTC (12,891.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.75 CZK over 4133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005704 BTC for 82.70 CZK @ 1,449,907 CZK\nFees are 0.29047257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.948978638579837329515000442 CZK)\nThe limits being 0.10 % (12.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56341054 BTC (387,453.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.84 % (429,439.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,249.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00889107 BTC (12,891.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.75 CZK over 4133 transactions" + } + ] + }, + { + "id": 5832, + "type": "message", + "date": "2024-09-23T10:00:07", + "date_unixtime": "1727078407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,598 CZK\nFees are 0.29048021 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.835572814383773416193887104 CZK)\nThe limits being 0.10 % (12.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56346799 BTC (387,536.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.31 % (423,630.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,166.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00894852 BTC (12,882.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.74 CZK over 4134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,598 CZK\nFees are 0.29048021 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.835572814383773416193887104 CZK)\nThe limits being 0.10 % (12.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56346799 BTC (387,536.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.31 % (423,630.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,166.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00894852 BTC (12,882.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.74 CZK over 4134 transactions" + } + ] + }, + { + "id": 5833, + "type": "message", + "date": "2024-09-23T14:00:07", + "date_unixtime": "1727092807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005759 BTC for 82.71 CZK @ 1,436,144 CZK\nFees are 0.29048952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.797583407024883302606530902 CZK)\nThe limits being 0.10 % (12.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56352558 BTC (387,619.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,848 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.79 % (421,683.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,083.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00900611 BTC (12,934.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.74 CZK over 4135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005759 BTC for 82.71 CZK @ 1,436,144 CZK\nFees are 0.29048952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.797583407024883302606530902 CZK)\nThe limits being 0.10 % (12.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56352558 BTC (387,619.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,848 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.79 % (421,683.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,083.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00900611 BTC (12,934.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.74 CZK over 4135 transactions" + } + ] + }, + { + "id": 5834, + "type": "message", + "date": "2024-09-23T18:00:07", + "date_unixtime": "1727107207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005736 BTC for 82.71 CZK @ 1,441,901 CZK\nFees are 0.29048926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.860913789185549322142376160 CZK)\nThe limits being 0.10 % (13.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56358294 BTC (387,702.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 687,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.60 % (424,928.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,000.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00906347 BTC (13,068.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.74 CZK over 4136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005736 BTC for 82.71 CZK @ 1,441,901 CZK\nFees are 0.29048926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.860913789185549322142376160 CZK)\nThe limits being 0.10 % (13.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56358294 BTC (387,702.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 687,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.60 % (424,928.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,000.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00906347 BTC (13,068.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.74 CZK over 4136 transactions" + } + ] + }, + { + "id": 5835, + "type": "message", + "date": "2024-09-23T22:00:07", + "date_unixtime": "1727121607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005758 BTC for 82.71 CZK @ 1,436,361 CZK\nFees are 0.29048308 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.799976354727886229388526057 CZK)\nThe limits being 0.10 % (13.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56364052 BTC (387,785.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.77 % (421,805.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,917.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00912105 BTC (13,101.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.74 CZK over 4137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005758 BTC for 82.71 CZK @ 1,436,361 CZK\nFees are 0.29048308 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.799976354727886229388526057 CZK)\nThe limits being 0.10 % (13.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56364052 BTC (387,785.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.77 % (421,805.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,917.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00912105 BTC (13,101.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.74 CZK over 4137 transactions" + } + ] + }, + { + "id": 5836, + "type": "message", + "date": "2024-09-24T02:00:08", + "date_unixtime": "1727136008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005753 BTC for 82.71 CZK @ 1,437,616 CZK\nFees are 0.29048424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (31.627543273494966470127021961 CZK)\nThe limits being 0.10 % (13.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56369805 BTC (387,868.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,437,616 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.93 % (422,512.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,834.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00917858 BTC (13,195.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.73 CZK over 4138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005753 BTC for 82.71 CZK @ 1,437,616 CZK\nFees are 0.29048424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (31.627543273494966470127021961 CZK)\nThe limits being 0.10 % (13.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56369805 BTC (387,868.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,437,616 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.93 % (422,512.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,834.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00917858 BTC (13,195.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.73 CZK over 4138 transactions" + } + ] + }, + { + "id": 5837, + "type": "message", + "date": "2024-09-24T06:00:07", + "date_unixtime": "1727150407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005771 BTC for 82.70 CZK @ 1,432,970 CZK\nFees are 0.29045149 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.762670646671841761252010271 CZK)\nThe limits being 0.10 % (13.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56375576 BTC (387,951.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,432,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.23 % (419,893.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,751.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00923629 BTC (13,235.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.73 CZK over 4139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005771 BTC for 82.70 CZK @ 1,432,970 CZK\nFees are 0.29045149 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.762670646671841761252010271 CZK)\nThe limits being 0.10 % (13.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56375576 BTC (387,951.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,432,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.23 % (419,893.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,751.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00923629 BTC (13,235.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.73 CZK over 4139 transactions" + } + ] + }, + { + "id": 5838, + "type": "message", + "date": "2024-09-24T10:00:07", + "date_unixtime": "1727164807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005743 BTC for 82.70 CZK @ 1,440,087 CZK\nFees are 0.29047776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.840954187073433822644599031 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56381319 BTC (388,034.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.24 % (423,905.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,668.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00929372 BTC (13,383.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.73 CZK over 4140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005743 BTC for 82.70 CZK @ 1,440,087 CZK\nFees are 0.29047776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.840954187073433822644599031 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56381319 BTC (388,034.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.24 % (423,905.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,668.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00929372 BTC (13,383.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.73 CZK over 4140 transactions" + } + ] + }, + { + "id": 5839, + "type": "message", + "date": "2024-09-24T14:00:06", + "date_unixtime": "1727179206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,561 CZK\nFees are 0.29047293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.835175827684045787524343649 CZK)\nThe limits being 0.10 % (13.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56387064 BTC (388,117.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.14 % (423,608.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,585.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00935117 BTC (13,461.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.73 CZK over 4141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005745 BTC for 82.70 CZK @ 1,439,561 CZK\nFees are 0.29047293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.835175827684045787524343649 CZK)\nThe limits being 0.10 % (13.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56387064 BTC (388,117.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.14 % (423,608.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,585.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00935117 BTC (13,461.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.73 CZK over 4141 transactions" + } + ] + }, + { + "id": 5840, + "type": "message", + "date": "2024-09-24T18:00:06", + "date_unixtime": "1727193606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005791 BTC for 82.70 CZK @ 1,428,105 CZK\nFees are 0.29046855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.709154653239649828604546495 CZK)\nThe limits being 0.10 % (13.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56392855 BTC (388,200.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,428,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.46 % (417,148.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,502.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00940908 BTC (13,437.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.72 CZK over 4142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005791 BTC for 82.70 CZK @ 1,428,105 CZK\nFees are 0.29046855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.709154653239649828604546495 CZK)\nThe limits being 0.10 % (13.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56392855 BTC (388,200.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,428,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.46 % (417,148.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,502.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00940908 BTC (13,437.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.72 CZK over 4142 transactions" + } + ] + }, + { + "id": 5841, + "type": "message", + "date": "2024-09-24T22:00:06", + "date_unixtime": "1727208006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005716 BTC for 82.70 CZK @ 1,446,819 CZK\nFees are 0.29046378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.915014233597384661034176046 CZK)\nThe limits being 0.10 % (13.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56398571 BTC (388,283.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,446,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.15 % (427,701.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,419.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00946624 BTC (13,695.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.72 CZK over 4143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005716 BTC for 82.70 CZK @ 1,446,819 CZK\nFees are 0.29046378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.915014233597384661034176046 CZK)\nThe limits being 0.10 % (13.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56398571 BTC (388,283.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,446,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.15 % (427,701.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,419.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00946624 BTC (13,695.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.72 CZK over 4143 transactions" + } + ] + }, + { + "id": 5842, + "type": "message", + "date": "2024-09-25T02:00:07", + "date_unixtime": "1727222407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005719 BTC for 82.70 CZK @ 1,446,023 CZK\nFees are 0.29045634 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.906258475297988775602927784 CZK)\nThe limits being 0.10 % (13.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56404290 BTC (388,366.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,446,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.01 % (427,252.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,336.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00952343 BTC (13,771.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.72 CZK over 4144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005719 BTC for 82.70 CZK @ 1,446,023 CZK\nFees are 0.29045634 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (15.906258475297988775602927784 CZK)\nThe limits being 0.10 % (13.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56404290 BTC (388,366.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,446,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.01 % (427,252.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,336.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00952343 BTC (13,771.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.72 CZK over 4144 transactions" + } + ] + }, + { + "id": 5843, + "type": "message", + "date": "2024-09-25T06:00:07", + "date_unixtime": "1727236807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005706 BTC for 82.71 CZK @ 1,449,459 CZK\nFees are 0.29048461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.944049388653906909413268072 CZK)\nThe limits being 0.10 % (13.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56409996 BTC (388,449.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,449,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.49 % (429,189.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,253.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00958049 BTC (13,886.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.72 CZK over 4145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005706 BTC for 82.71 CZK @ 1,449,459 CZK\nFees are 0.29048461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.944049388653906909413268072 CZK)\nThe limits being 0.10 % (13.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56409996 BTC (388,449.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,449,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.49 % (429,189.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,253.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00958049 BTC (13,886.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.72 CZK over 4145 transactions" + } + ] + }, + { + "id": 5844, + "type": "message", + "date": "2024-09-25T10:00:07", + "date_unixtime": "1727251207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005747 BTC for 82.71 CZK @ 1,439,158 CZK\nFees are 0.29049270 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.830742811157988973515264869 CZK)\nThe limits being 0.10 % (13.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56415743 BTC (388,532.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.97 % (423,379.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,170.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00963796 BTC (13,870.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.71 CZK over 4146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005747 BTC for 82.71 CZK @ 1,439,158 CZK\nFees are 0.29049270 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.830742811157988973515264869 CZK)\nThe limits being 0.10 % (13.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56415743 BTC (388,532.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.97 % (423,379.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,170.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00963796 BTC (13,870.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.71 CZK over 4146 transactions" + } + ] + }, + { + "id": 5845, + "type": "message", + "date": "2024-09-25T14:00:06", + "date_unixtime": "1727265606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005747 BTC for 82.71 CZK @ 1,439,174 CZK\nFees are 0.29049594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.830919250172681676425879875 CZK)\nThe limits being 0.10 % (13.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56421490 BTC (388,615.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.95 % (423,387.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,087.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00969543 BTC (13,953.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.71 CZK over 4147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005747 BTC for 82.71 CZK @ 1,439,174 CZK\nFees are 0.29049594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.830919250172681676425879875 CZK)\nThe limits being 0.10 % (13.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56421490 BTC (388,615.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.95 % (423,387.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,087.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00969543 BTC (13,953.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.71 CZK over 4147 transactions" + } + ] + }, + { + "id": 5846, + "type": "message", + "date": "2024-09-25T18:00:06", + "date_unixtime": "1727280006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005741 BTC for 82.70 CZK @ 1,440,529 CZK\nFees are 0.29046575 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.845817273057623522339986324 CZK)\nThe limits being 0.10 % (14.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56427231 BTC (388,698.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.12 % (424,151.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,004.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00975284 BTC (14,049.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.71 CZK over 4148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005741 BTC for 82.70 CZK @ 1,440,529 CZK\nFees are 0.29046575 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.845817273057623522339986324 CZK)\nThe limits being 0.10 % (14.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56427231 BTC (388,698.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.12 % (424,151.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,004.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00975284 BTC (14,049.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.71 CZK over 4148 transactions" + } + ] + }, + { + "id": 5847, + "type": "message", + "date": "2024-09-25T22:00:06", + "date_unixtime": "1727294406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005763 BTC for 82.70 CZK @ 1,435,091 CZK\nFees are 0.29047822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.786004632925831946334627348 CZK)\nThe limits being 0.10 % (14.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56432994 BTC (388,781.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 688,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,435,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.31 % (421,083.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,921.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00981047 BTC (14,078.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.70 CZK over 4149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005763 BTC for 82.70 CZK @ 1,435,091 CZK\nFees are 0.29047822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.786004632925831946334627348 CZK)\nThe limits being 0.10 % (14.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56432994 BTC (388,781.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 688,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,435,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.31 % (421,083.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,921.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00981047 BTC (14,078.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.70 CZK over 4149 transactions" + } + ] + }, + { + "id": 5848, + "type": "message", + "date": "2024-09-26T02:00:06", + "date_unixtime": "1727308806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005768 BTC for 82.71 CZK @ 1,433,904 CZK\nFees are 0.29048978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.772948186720956541148974429 CZK)\nThe limits being 0.10 % (14.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56438762 BTC (388,864.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,433,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.11 % (420,413.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,838.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00986815 BTC (14,149.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.70 CZK over 4150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005768 BTC for 82.71 CZK @ 1,433,904 CZK\nFees are 0.29048978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.772948186720956541148974429 CZK)\nThe limits being 0.10 % (14.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56438762 BTC (388,864.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,433,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.11 % (420,413.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,838.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00986815 BTC (14,149.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.70 CZK over 4150 transactions" + } + ] + }, + { + "id": 5849, + "type": "message", + "date": "2024-09-26T06:00:07", + "date_unixtime": "1727323207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,438,950 CZK\nFees are 0.29045061 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.828449111596449142807898127 CZK)\nThe limits being 0.10 % (14.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56444509 BTC (388,947.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.82 % (423,260.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,755.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00992562 BTC (14,282.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.70 CZK over 4151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,438,950 CZK\nFees are 0.29045061 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.828449111596449142807898127 CZK)\nThe limits being 0.10 % (14.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56444509 BTC (388,947.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.82 % (423,260.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,755.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00992562 BTC (14,282.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.70 CZK over 4151 transactions" + } + ] + }, + { + "id": 5850, + "type": "message", + "date": "2024-09-26T10:00:07", + "date_unixtime": "1727337607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005719 BTC for 82.71 CZK @ 1,446,145 CZK\nFees are 0.29048071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.907592791203858709937495388 CZK)\nThe limits being 0.10 % (14.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56450228 BTC (389,030.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,446,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.84 % (427,321.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,672.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00998281 BTC (14,436.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.70 CZK over 4152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005719 BTC for 82.71 CZK @ 1,446,145 CZK\nFees are 0.29048071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (15.907592791203858709937495388 CZK)\nThe limits being 0.10 % (14.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56450228 BTC (389,030.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,446,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.84 % (427,321.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,672.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00998281 BTC (14,436.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.70 CZK over 4152 transactions" + } + ] + }, + { + "id": 5851, + "type": "message", + "date": "2024-09-26T14:00:07", + "date_unixtime": "1727352007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005673 BTC for 82.71 CZK @ 1,457,924 CZK\nFees are 0.29049129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (16.037164788391344203273734948 CZK)\nThe limits being 0.10 % (14.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56455901 BTC (389,113.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,457,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.53 % (433,970.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,589.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01003954 BTC (14,636.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.69 CZK over 4153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005673 BTC for 82.71 CZK @ 1,457,924 CZK\nFees are 0.29049129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (16.037164788391344203273734948 CZK)\nThe limits being 0.10 % (14.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56455901 BTC (389,113.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,457,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.53 % (433,970.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,589.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01003954 BTC (14,636.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.69 CZK over 4153 transactions" + } + ] + }, + { + "id": 5852, + "type": "message", + "date": "2024-09-26T18:00:06", + "date_unixtime": "1727366406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005615 BTC for 82.70 CZK @ 1,472,835 CZK\nFees are 0.29046199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (16.201186396144216524444054002 CZK)\nThe limits being 0.10 % (14.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56461516 BTC (389,196.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,472,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.67 % (442,388.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,506.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01009569 BTC (14,869.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.69 CZK over 4154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005615 BTC for 82.70 CZK @ 1,472,835 CZK\nFees are 0.29046199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (16.201186396144216524444054002 CZK)\nThe limits being 0.10 % (14.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56461516 BTC (389,196.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,472,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.67 % (442,388.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,506.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01009569 BTC (14,869.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.69 CZK over 4154 transactions" + } + ] + }, + { + "id": 5853, + "type": "message", + "date": "2024-09-26T22:00:07", + "date_unixtime": "1727380807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005650 BTC for 82.71 CZK @ 1,463,831 CZK\nFees are 0.29048568 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (48.306414758257602814926518249 CZK)\nThe limits being 0.10 % (14.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56467166 BTC (389,279.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,463,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.34 % (437,303.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,423.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01015219 BTC (14,861.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.69 CZK over 4155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005650 BTC for 82.71 CZK @ 1,463,831 CZK\nFees are 0.29048568 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (48.306414758257602814926518249 CZK)\nThe limits being 0.10 % (14.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56467166 BTC (389,279.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,463,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.34 % (437,303.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,423.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01015219 BTC (14,861.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.69 CZK over 4155 transactions" + } + ] + }, + { + "id": 5854, + "type": "message", + "date": "2024-09-27T02:00:08", + "date_unixtime": "1727395208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005622 BTC for 82.71 CZK @ 1,471,108 CZK\nFees are 0.29048303 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (48.546558536052312105070885840 CZK)\nThe limits being 0.10 % (15.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56472788 BTC (389,362.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,471,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.37 % (441,412.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,340.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01020841 BTC (15,017.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.69 CZK over 4156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005622 BTC for 82.71 CZK @ 1,471,108 CZK\nFees are 0.29048303 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (48.546558536052312105070885840 CZK)\nThe limits being 0.10 % (15.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56472788 BTC (389,362.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,471,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.37 % (441,412.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,340.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01020841 BTC (15,017.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.69 CZK over 4156 transactions" + } + ] + }, + { + "id": 5855, + "type": "message", + "date": "2024-09-27T06:00:07", + "date_unixtime": "1727409607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005600 BTC for 82.71 CZK @ 1,476,903 CZK\nFees are 0.29048619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (48.737806805466581251334614562 CZK)\nThe limits being 0.10 % (15.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56478388 BTC (389,445.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,476,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.18 % (444,685.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,257.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01026441 BTC (15,159.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.68 CZK over 4157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005600 BTC for 82.71 CZK @ 1,476,903 CZK\nFees are 0.29048619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (48.737806805466581251334614562 CZK)\nThe limits being 0.10 % (15.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56478388 BTC (389,445.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,476,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.18 % (444,685.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,257.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01026441 BTC (15,159.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.68 CZK over 4157 transactions" + } + ] + }, + { + "id": 5856, + "type": "message", + "date": "2024-09-27T10:00:07", + "date_unixtime": "1727424007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005569 BTC for 82.71 CZK @ 1,485,190 CZK\nFees are 0.29049898 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.674176248814192524046963300 CZK)\nThe limits being 0.10 % (15.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56483957 BTC (389,528.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.36 % (449,365.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,174.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01032010 BTC (15,327.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.68 CZK over 4158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005569 BTC for 82.71 CZK @ 1,485,190 CZK\nFees are 0.29049898 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.674176248814192524046963300 CZK)\nThe limits being 0.10 % (15.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56483957 BTC (389,528.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.36 % (449,365.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,174.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01032010 BTC (15,327.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.68 CZK over 4158 transactions" + } + ] + }, + { + "id": 5857, + "type": "message", + "date": "2024-09-27T14:00:06", + "date_unixtime": "1727438406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005584 BTC for 82.70 CZK @ 1,480,994 CZK\nFees are 0.29045861 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.581876877918688601356570055 CZK)\nThe limits being 0.10 % (15.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56489541 BTC (389,611.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,706 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,480,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.73 % (446,995.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,091.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01037594 BTC (15,366.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.68 CZK over 4159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005584 BTC for 82.70 CZK @ 1,480,994 CZK\nFees are 0.29045861 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.581876877918688601356570055 CZK)\nThe limits being 0.10 % (15.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56489541 BTC (389,611.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,706 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,480,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.73 % (446,995.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,091.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01037594 BTC (15,366.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.68 CZK over 4159 transactions" + } + ] + }, + { + "id": 5858, + "type": "message", + "date": "2024-09-27T18:00:06", + "date_unixtime": "1727452806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005535 BTC for 82.71 CZK @ 1,494,241 CZK\nFees are 0.29048505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.873309110615105486713395617 CZK)\nThe limits being 0.10 % (15.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56495076 BTC (389,694.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,494,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.62 % (454,478.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,008.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01043129 BTC (15,586.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.68 CZK over 4160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005535 BTC for 82.71 CZK @ 1,494,241 CZK\nFees are 0.29048505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.873309110615105486713395617 CZK)\nThe limits being 0.10 % (15.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56495076 BTC (389,694.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,494,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.62 % (454,478.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,008.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01043129 BTC (15,586.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.68 CZK over 4160 transactions" + } + ] + }, + { + "id": 5859, + "type": "message", + "date": "2024-09-27T22:00:05", + "date_unixtime": "1727467205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005570 BTC for 82.71 CZK @ 1,484,905 CZK\nFees are 0.29049544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.001869026629418221145201850 CZK)\nThe limits being 0.10 % (15.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56500646 BTC (389,777.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,864 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,484,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.25 % (449,203.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,925.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01048699 BTC (15,572.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.67 CZK over 4161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005570 BTC for 82.71 CZK @ 1,484,905 CZK\nFees are 0.29049544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.001869026629418221145201850 CZK)\nThe limits being 0.10 % (15.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56500646 BTC (389,777.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,864 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,484,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.25 % (449,203.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,925.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01048699 BTC (15,572.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.67 CZK over 4161 transactions" + } + ] + }, + { + "id": 5860, + "type": "message", + "date": "2024-09-28T02:00:06", + "date_unixtime": "1727481606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005559 BTC for 82.70 CZK @ 1,487,648 CZK\nFees are 0.29045728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.092381957267211817462410973 CZK)\nThe limits being 0.10 % (15.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56506205 BTC (389,860.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 689,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.62 % (450,752.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,842.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01054258 BTC (15,683.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.67 CZK over 4162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005559 BTC for 82.70 CZK @ 1,487,648 CZK\nFees are 0.29045728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.092381957267211817462410973 CZK)\nThe limits being 0.10 % (15.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56506205 BTC (389,860.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 689,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.62 % (450,752.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,842.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01054258 BTC (15,683.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.67 CZK over 4162 transactions" + } + ] + }, + { + "id": 5861, + "type": "message", + "date": "2024-09-28T06:00:07", + "date_unixtime": "1727496007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005535 BTC for 82.70 CZK @ 1,494,121 CZK\nFees are 0.29046167 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.870662534426706167078279317 CZK)\nThe limits being 0.10 % (15.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56511740 BTC (389,943.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,494,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 116.53 % (454,410.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,759.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01059793 BTC (15,834.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.67 CZK over 4163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005535 BTC for 82.70 CZK @ 1,494,121 CZK\nFees are 0.29046167 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (32.870662534426706167078279317 CZK)\nThe limits being 0.10 % (15.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56511740 BTC (389,943.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,494,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 116.53 % (454,410.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,759.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01059793 BTC (15,834.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.67 CZK over 4163 transactions" + } + ] + }, + { + "id": 5862, + "type": "message", + "date": "2024-09-28T10:00:06", + "date_unixtime": "1727510406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005553 BTC for 82.71 CZK @ 1,489,377 CZK\nFees are 0.29048105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.149448777469025886436908960 CZK)\nThe limits being 0.10 % (15.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56517293 BTC (390,026.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,489,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.82 % (451,728.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,676.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01065346 BTC (15,867.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.67 CZK over 4164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005553 BTC for 82.71 CZK @ 1,489,377 CZK\nFees are 0.29048105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.149448777469025886436908960 CZK)\nThe limits being 0.10 % (15.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56517293 BTC (390,026.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,489,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.82 % (451,728.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,676.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01065346 BTC (15,867.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.67 CZK over 4164 transactions" + } + ] + }, + { + "id": 5863, + "type": "message", + "date": "2024-09-28T14:00:06", + "date_unixtime": "1727524806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005568 BTC for 82.71 CZK @ 1,485,377 CZK\nFees are 0.29048347 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.017450745129117055821864855 CZK)\nThe limits being 0.10 % (15.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56522861 BTC (390,109.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.22 % (449,468.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,593.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01070914 BTC (15,907.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.66 CZK over 4165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005568 BTC for 82.71 CZK @ 1,485,377 CZK\nFees are 0.29048347 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (49.017450745129117055821864855 CZK)\nThe limits being 0.10 % (15.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56522861 BTC (390,109.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.22 % (449,468.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,593.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01070914 BTC (15,907.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.66 CZK over 4165 transactions" + } + ] + }, + { + "id": 5864, + "type": "message", + "date": "2024-09-28T18:00:07", + "date_unixtime": "1727539207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005572 BTC for 82.70 CZK @ 1,484,260 CZK\nFees are 0.29047340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (32.653709386494004652059500291 CZK)\nThe limits being 0.10 % (15.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56528433 BTC (390,192.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,484,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.03 % (448,835.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,510.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01076486 BTC (15,977.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.66 CZK over 4166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005572 BTC for 82.70 CZK @ 1,484,260 CZK\nFees are 0.29047340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (32.653709386494004652059500291 CZK)\nThe limits being 0.10 % (15.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56528433 BTC (390,192.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,484,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.03 % (448,835.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,510.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01076486 BTC (15,977.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.66 CZK over 4166 transactions" + } + ] + }, + { + "id": 5865, + "type": "message", + "date": "2024-09-28T22:00:06", + "date_unixtime": "1727553606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005564 BTC for 82.70 CZK @ 1,486,340 CZK\nFees are 0.29046286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (32.699473115841499396254016765 CZK)\nThe limits being 0.10 % (16.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56533997 BTC (390,275.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,486,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.31 % (450,011.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,427.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01082050 BTC (16,082.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.66 CZK over 4167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005564 BTC for 82.70 CZK @ 1,486,340 CZK\nFees are 0.29046286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (32.699473115841499396254016765 CZK)\nThe limits being 0.10 % (16.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56533997 BTC (390,275.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,486,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.31 % (450,011.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,427.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01082050 BTC (16,082.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.66 CZK over 4167 transactions" + } + ] + }, + { + "id": 5866, + "type": "message", + "date": "2024-09-29T02:00:07", + "date_unixtime": "1727568007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005550 BTC for 82.70 CZK @ 1,490,075 CZK\nFees are 0.29046013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (16.390824664485112915606189148 CZK)\nThe limits being 0.10 % (16.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56539547 BTC (390,358.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.82 % (452,122.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,344.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01087600 BTC (16,206.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.66 CZK over 4168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005550 BTC for 82.70 CZK @ 1,490,075 CZK\nFees are 0.29046013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (16.390824664485112915606189148 CZK)\nThe limits being 0.10 % (16.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56539547 BTC (390,358.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.82 % (452,122.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,344.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01087600 BTC (16,206.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.66 CZK over 4168 transactions" + } + ] + }, + { + "id": 5867, + "type": "message", + "date": "2024-09-29T06:00:08", + "date_unixtime": "1727582408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005551 BTC for 82.70 CZK @ 1,489,834 CZK\nFees are 0.29046555 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (16.388178087915498780749093180 CZK)\nThe limits being 0.10 % (16.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56545098 BTC (390,441.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,496 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,489,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.76 % (451,986.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,261.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01093151 BTC (16,286.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.65 CZK over 4169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005551 BTC for 82.70 CZK @ 1,489,834 CZK\nFees are 0.29046555 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (16.388178087915498780749093180 CZK)\nThe limits being 0.10 % (16.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56545098 BTC (390,441.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,496 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,489,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.76 % (451,986.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,261.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01093151 BTC (16,286.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.65 CZK over 4169 transactions" + } + ] + }, + { + "id": 5868, + "type": "message", + "date": "2024-09-29T10:00:07", + "date_unixtime": "1727596807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005555 BTC for 82.70 CZK @ 1,488,701 CZK\nFees are 0.29045365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (16.375706094017473496228546622 CZK)\nThe limits being 0.10 % (16.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56550653 BTC (390,524.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,488,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.57 % (451,345.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,178.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01098706 BTC (16,356.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.65 CZK over 4170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005555 BTC for 82.70 CZK @ 1,488,701 CZK\nFees are 0.29045365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (16.375706094017473496228546622 CZK)\nThe limits being 0.10 % (16.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56550653 BTC (390,524.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,488,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.57 % (451,345.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,178.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01098706 BTC (16,356.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.65 CZK over 4170 transactions" + } + ] + }, + { + "id": 5869, + "type": "message", + "date": "2024-09-29T14:00:08", + "date_unixtime": "1727611208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005566 BTC for 82.70 CZK @ 1,485,804 CZK\nFees are 0.29046262 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.01104272 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (16.343847923571846363813608891 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56556219 BTC (390,607.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,485,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.13 % (449,707.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,095.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01104272 BTC (16,407.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.65 CZK over 4171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005566 BTC for 82.70 CZK @ 1,485,804 CZK\nFees are 0.29046262 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.01104272 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (16.343847923571846363813608891 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56556219 BTC (390,607.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,485,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.13 % (449,707.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,095.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01104272 BTC (16,407.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.65 CZK over 4171 transactions" + } + ] + }, + { + "id": 5870, + "type": "message", + "date": "2024-09-29T18:00:06", + "date_unixtime": "1727625606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005560 BTC for 82.70 CZK @ 1,487,444 CZK\nFees are 0.29046978 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 19.78 % (16.361888756797252780735053213 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56561779 BTC (390,690.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,487,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.34 % (450,634.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,012.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00005560 BTC (82.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.65 CZK over 4172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005560 BTC for 82.70 CZK @ 1,487,444 CZK\nFees are 0.29046978 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 19.78 % (16.361888756797252780735053213 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56561779 BTC (390,690.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,487,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.34 % (450,634.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,012.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00005560 BTC (82.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.65 CZK over 4172 transactions" + } + ] + }, + { + "id": 5871, + "type": "message", + "date": "2024-09-29T22:00:06", + "date_unixtime": "1727640006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,680 CZK\nFees are 0.29045864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 9.91 % (16.408479537887235944037139851 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56567323 BTC (390,773.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,491,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.93 % (453,029.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,929.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00011104 BTC (165.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.64 CZK over 4173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005544 BTC for 82.70 CZK @ 1,491,680 CZK\nFees are 0.29045864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 9.91 % (16.408479537887235944037139851 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56567323 BTC (390,773.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,491,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.93 % (453,029.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,929.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00011104 BTC (165.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.64 CZK over 4173 transactions" + } + ] + }, + { + "id": 5872, + "type": "message", + "date": "2024-09-30T02:00:06", + "date_unixtime": "1727654406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005572 BTC for 82.71 CZK @ 1,484,346 CZK\nFees are 0.29049027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 6.60 % (16.327803049699347331003369042 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56572895 BTC (390,856.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,484,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.85 % (448,880.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,846.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00016676 BTC (247.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.64 CZK over 4174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005572 BTC for 82.71 CZK @ 1,484,346 CZK\nFees are 0.29049027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 6.60 % (16.327803049699347331003369042 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56572895 BTC (390,856.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,484,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.85 % (448,880.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,846.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00016676 BTC (247.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.64 CZK over 4174 transactions" + } + ] + }, + { + "id": 5873, + "type": "message", + "date": "2024-09-30T06:00:06", + "date_unixtime": "1727668806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005659 BTC for 82.71 CZK @ 1,461,500 CZK\nFees are 0.29048514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 4.93 % (16.076499539471894314412720348 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56578554 BTC (390,939.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 690,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,461,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.51 % (435,955.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,763.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00022335 BTC (326.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.64 CZK over 4175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005659 BTC for 82.71 CZK @ 1,461,500 CZK\nFees are 0.29048514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 4.93 % (16.076499539471894314412720348 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56578554 BTC (390,939.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 690,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,461,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.51 % (435,955.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,763.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00022335 BTC (326.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.64 CZK over 4175 transactions" + } + ] + }, + { + "id": 5874, + "type": "message", + "date": "2024-09-30T10:00:07", + "date_unixtime": "1727683207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005630 BTC for 82.70 CZK @ 1,468,845 CZK\nFees are 0.29044897 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.93 % (16.157297329152584072973721637 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56584184 BTC (391,022.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,468,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.55 % (440,111.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,680.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00027965 BTC (410.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.64 CZK over 4176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005630 BTC for 82.70 CZK @ 1,468,845 CZK\nFees are 0.29044897 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.93 % (16.157297329152584072973721637 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56584184 BTC (391,022.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,468,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.55 % (440,111.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,680.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00027965 BTC (410.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.64 CZK over 4176 transactions" + } + ] + }, + { + "id": 5875, + "type": "message", + "date": "2024-09-30T14:00:07", + "date_unixtime": "1727697607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005734 BTC for 82.70 CZK @ 1,442,223 CZK\nFees are 0.29045278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.26 % (15.864453586149210237138275540 CZK)\nThe limits being 0.10 % (0.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56589918 BTC (391,105.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.68 % (425,047.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,598.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00033699 BTC (486.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.63 CZK over 4177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005734 BTC for 82.70 CZK @ 1,442,223 CZK\nFees are 0.29045278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.26 % (15.864453586149210237138275540 CZK)\nThe limits being 0.10 % (0.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56589918 BTC (391,105.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.68 % (425,047.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,598.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00033699 BTC (486.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.63 CZK over 4177 transactions" + } + ] + }, + { + "id": 5876, + "type": "message", + "date": "2024-09-30T18:00:07", + "date_unixtime": "1727712007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005725 BTC for 82.71 CZK @ 1,444,695 CZK\nFees are 0.29049398 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.79 % (15.891647163486748345855009649 CZK)\nThe limits being 0.10 % (0.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56595643 BTC (391,188.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.01 % (426,445.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,515.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00039424 BTC (569.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.63 CZK over 4178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005725 BTC for 82.71 CZK @ 1,444,695 CZK\nFees are 0.29049398 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.79 % (15.891647163486748345855009649 CZK)\nThe limits being 0.10 % (0.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56595643 BTC (391,188.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.01 % (426,445.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,515.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00039424 BTC (569.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.63 CZK over 4178 transactions" + } + ] + }, + { + "id": 5877, + "type": "message", + "date": "2024-09-30T22:00:06", + "date_unixtime": "1727726406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005728 BTC for 82.70 CZK @ 1,443,732 CZK\nFees are 0.29045239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.44 % (15.881049829611722101137638378 CZK)\nThe limits being 0.10 % (0.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56601371 BTC (391,271.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.85 % (425,900.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,432.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00045152 BTC (651.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.63 CZK over 4179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005728 BTC for 82.70 CZK @ 1,443,732 CZK\nFees are 0.29045239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.44 % (15.881049829611722101137638378 CZK)\nThe limits being 0.10 % (0.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56601371 BTC (391,271.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.85 % (425,900.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,432.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00045152 BTC (651.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.63 CZK over 4179 transactions" + } + ] + }, + { + "id": 5878, + "type": "message", + "date": "2024-10-01T02:00:07", + "date_unixtime": "1727740807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,438,950 CZK\nFees are 0.29045061 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.16 % (15.828449111596449142807898127 CZK)\nThe limits being 0.10 % (0.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56607118 BTC (391,354.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.14 % (423,193.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,349.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00050899 BTC (732.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.63 CZK over 4180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,438,950 CZK\nFees are 0.29045061 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.16 % (15.828449111596449142807898127 CZK)\nThe limits being 0.10 % (0.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56607118 BTC (391,354.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.14 % (423,193.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,349.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00050899 BTC (732.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.63 CZK over 4180 transactions" + } + ] + }, + { + "id": 5879, + "type": "message", + "date": "2024-10-01T06:00:06", + "date_unixtime": "1727755206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005721 BTC for 82.70 CZK @ 1,445,550 CZK\nFees are 0.29046284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.94 % (15.901053540017733771687226154 CZK)\nThe limits being 0.10 % (0.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56612839 BTC (391,437.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.07 % (426,929.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,266.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00056620 BTC (818.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.62 CZK over 4181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005721 BTC for 82.70 CZK @ 1,445,550 CZK\nFees are 0.29046284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.94 % (15.901053540017733771687226154 CZK)\nThe limits being 0.10 % (0.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56612839 BTC (391,437.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.07 % (426,929.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,266.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00056620 BTC (818.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.62 CZK over 4181 transactions" + } + ] + }, + { + "id": 5880, + "type": "message", + "date": "2024-10-01T10:00:07", + "date_unixtime": "1727769607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005660 BTC for 82.71 CZK @ 1,461,219 CZK\nFees are 0.29048067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.77 % (16.073411865537755664362012110 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56618499 BTC (391,520.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,461,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.31 % (435,799.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,183.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00062280 BTC (910.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.62 CZK over 4182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005660 BTC for 82.71 CZK @ 1,461,219 CZK\nFees are 0.29048067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.77 % (16.073411865537755664362012110 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56618499 BTC (391,520.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,461,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.31 % (435,799.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,183.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00062280 BTC (910.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.62 CZK over 4182 transactions" + } + ] + }, + { + "id": 5881, + "type": "message", + "date": "2024-10-01T14:00:06", + "date_unixtime": "1727784006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005666 BTC for 82.70 CZK @ 1,459,554 CZK\nFees are 0.29045723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.62 % (16.055095347716103415666065347 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56624165 BTC (391,603.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,459,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.05 % (434,856.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,100.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00067946 BTC (991.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.62 CZK over 4183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005666 BTC for 82.70 CZK @ 1,459,554 CZK\nFees are 0.29045723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.62 % (16.055095347716103415666065347 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56624165 BTC (391,603.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,459,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.05 % (434,856.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,100.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00067946 BTC (991.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.62 CZK over 4183 transactions" + } + ] + }, + { + "id": 5882, + "type": "message", + "date": "2024-10-01T18:00:07", + "date_unixtime": "1727798407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005749 BTC for 82.70 CZK @ 1,438,562 CZK\nFees are 0.29047335 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.99 % (31.648363011248766384968664639 CZK)\nThe limits being 0.10 % (1.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56629914 BTC (391,686.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.99 % (422,969.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,017.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00073695 BTC (1,060.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.62 CZK over 4184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005749 BTC for 82.70 CZK @ 1,438,562 CZK\nFees are 0.29047335 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.99 % (31.648363011248766384968664639 CZK)\nThe limits being 0.10 % (1.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56629914 BTC (391,686.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.99 % (422,969.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,017.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00073695 BTC (1,060.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.62 CZK over 4184 transactions" + } + ] + }, + { + "id": 5883, + "type": "message", + "date": "2024-10-01T22:00:07", + "date_unixtime": "1727812807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005835 BTC for 82.71 CZK @ 1,417,443 CZK\nFees are 0.29049056 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.38 % (15.591878211862594031429841314 CZK)\nThe limits being 0.10 % (1.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56635749 BTC (391,769.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.91 % (411,010.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,934.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00079530 BTC (1,127.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.61 CZK over 4185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005835 BTC for 82.71 CZK @ 1,417,443 CZK\nFees are 0.29049056 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.38 % (15.591878211862594031429841314 CZK)\nThe limits being 0.10 % (1.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56635749 BTC (391,769.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.91 % (411,010.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,934.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00079530 BTC (1,127.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.61 CZK over 4185 transactions" + } + ] + }, + { + "id": 5884, + "type": "message", + "date": "2024-10-02T02:00:06", + "date_unixtime": "1727827206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005925 BTC for 82.71 CZK @ 1,395,872 CZK\nFees are 0.29048207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.29 % (15.354590529938464320027582784 CZK)\nThe limits being 0.10 % (1.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56641674 BTC (391,852.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,395,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.77 % (398,792.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,851.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00085455 BTC (1,192.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.61 CZK over 4186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005925 BTC for 82.71 CZK @ 1,395,872 CZK\nFees are 0.29048207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.29 % (15.354590529938464320027582784 CZK)\nThe limits being 0.10 % (1.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56641674 BTC (391,852.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,395,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.77 % (398,792.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,851.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00085455 BTC (1,192.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.61 CZK over 4186 transactions" + } + ] + }, + { + "id": 5885, + "type": "message", + "date": "2024-10-02T06:00:07", + "date_unixtime": "1727841607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005838 BTC for 82.71 CZK @ 1,416,756 CZK\nFees are 0.29049891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.20 % (15.584313411965281501043026351 CZK)\nThe limits being 0.10 % (1.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56647512 BTC (391,935.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.77 % (410,621.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,768.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00091293 BTC (1,293.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.61 CZK over 4187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005838 BTC for 82.71 CZK @ 1,416,756 CZK\nFees are 0.29049891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.20 % (15.584313411965281501043026351 CZK)\nThe limits being 0.10 % (1.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56647512 BTC (391,935.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.77 % (410,621.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,768.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00091293 BTC (1,293.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.61 CZK over 4187 transactions" + } + ] + }, + { + "id": 5886, + "type": "message", + "date": "2024-10-02T10:00:08", + "date_unixtime": "1727856008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005832 BTC for 82.71 CZK @ 1,418,130 CZK\nFees are 0.29048187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.13 % (15.599431983770110511700133210 CZK)\nThe limits being 0.10 % (1.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56653344 BTC (392,018.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 691,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.94 % (411,399.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,685.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00097125 BTC (1,377.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.61 CZK over 4188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005832 BTC for 82.71 CZK @ 1,418,130 CZK\nFees are 0.29048187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.13 % (15.599431983770110511700133210 CZK)\nThe limits being 0.10 % (1.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56653344 BTC (392,018.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 691,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.94 % (411,399.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,685.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00097125 BTC (1,377.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.61 CZK over 4188 transactions" + } + ] + }, + { + "id": 5887, + "type": "message", + "date": "2024-10-02T14:00:06", + "date_unixtime": "1727870406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005893 BTC for 82.70 CZK @ 1,403,428 CZK\nFees are 0.29047709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.07 % (15.437704074767670019009489187 CZK)\nThe limits being 0.10 % (1.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56659237 BTC (392,101.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,403,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.80 % (403,069.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,602.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00103018 BTC (1,445.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.60 CZK over 4189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005893 BTC for 82.70 CZK @ 1,403,428 CZK\nFees are 0.29047709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.07 % (15.437704074767670019009489187 CZK)\nThe limits being 0.10 % (1.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56659237 BTC (392,101.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,403,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.80 % (403,069.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,602.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00103018 BTC (1,445.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.60 CZK over 4189 transactions" + } + ] + }, + { + "id": 5888, + "type": "message", + "date": "2024-10-02T18:00:07", + "date_unixtime": "1727884807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005818 BTC for 82.71 CZK @ 1,421,596 CZK\nFees are 0.29049273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.01 % (15.637553719595715442839028681 CZK)\nThe limits being 0.10 % (1.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56665055 BTC (392,184.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 105.40 % (413,363.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,519.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00108836 BTC (1,547.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.60 CZK over 4190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005818 BTC for 82.71 CZK @ 1,421,596 CZK\nFees are 0.29049273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.01 % (15.637553719595715442839028681 CZK)\nThe limits being 0.10 % (1.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56665055 BTC (392,184.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 105.40 % (413,363.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,519.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00108836 BTC (1,547.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.60 CZK over 4190 transactions" + } + ] + }, + { + "id": 5889, + "type": "message", + "date": "2024-10-02T22:00:06", + "date_unixtime": "1727899206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005967 BTC for 82.70 CZK @ 1,385,933 CZK\nFees are 0.29045827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (30.490529693416765136334877535 CZK)\nThe limits being 0.10 % (1.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56671022 BTC (392,267.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,385,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 100.23 % (393,154.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,436.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00114803 BTC (1,591.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.60 CZK over 4191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005967 BTC for 82.70 CZK @ 1,385,933 CZK\nFees are 0.29045827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.92 % (30.490529693416765136334877535 CZK)\nThe limits being 0.10 % (1.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56671022 BTC (392,267.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,385,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 100.23 % (393,154.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,436.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00114803 BTC (1,591.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.60 CZK over 4191 transactions" + } + ] + }, + { + "id": 5890, + "type": "message", + "date": "2024-10-03T02:00:07", + "date_unixtime": "1727913607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005919 BTC for 82.71 CZK @ 1,397,320 CZK\nFees are 0.29048906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.91 % (15.370525128429951160126918515 CZK)\nThe limits being 0.10 % (1.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56676941 BTC (392,350.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,397,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.85 % (399,607.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,353.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00120722 BTC (1,686.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.60 CZK over 4192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005919 BTC for 82.71 CZK @ 1,397,320 CZK\nFees are 0.29048906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.91 % (15.370525128429951160126918515 CZK)\nThe limits being 0.10 % (1.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56676941 BTC (392,350.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,397,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.85 % (399,607.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,353.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00120722 BTC (1,686.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.60 CZK over 4192 transactions" + } + ] + }, + { + "id": 5891, + "type": "message", + "date": "2024-10-03T06:00:06", + "date_unixtime": "1727928006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005850 BTC for 82.70 CZK @ 1,413,636 CZK\nFees are 0.29045502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.87 % (15.549996130977476268956089584 CZK)\nThe limits being 0.10 % (1.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56682791 BTC (392,433.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,413,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.18 % (408,854.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,270.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00126572 BTC (1,789.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.59 CZK over 4193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005850 BTC for 82.70 CZK @ 1,413,636 CZK\nFees are 0.29045502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.87 % (15.549996130977476268956089584 CZK)\nThe limits being 0.10 % (1.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56682791 BTC (392,433.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,413,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.18 % (408,854.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,270.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00126572 BTC (1,789.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.59 CZK over 4193 transactions" + } + ] + }, + { + "id": 5892, + "type": "message", + "date": "2024-10-03T10:00:07", + "date_unixtime": "1727942407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005887 BTC for 82.71 CZK @ 1,404,884 CZK\nFees are 0.29048252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.83 % (15.453726892854794189421448236 CZK)\nThe limits being 0.10 % (1.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56688678 BTC (392,516.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,404,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.90 % (403,893.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,187.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00132459 BTC (1,860.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.59 CZK over 4194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005887 BTC for 82.71 CZK @ 1,404,884 CZK\nFees are 0.29048252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.83 % (15.453726892854794189421448236 CZK)\nThe limits being 0.10 % (1.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56688678 BTC (392,516.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,404,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.90 % (403,893.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,187.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00132459 BTC (1,860.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.59 CZK over 4194 transactions" + } + ] + }, + { + "id": 5893, + "type": "message", + "date": "2024-10-03T14:00:07", + "date_unixtime": "1727956807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005903 BTC for 82.70 CZK @ 1,401,049 CZK\nFees are 0.29047680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.80 % (15.411536045828419775238638338 CZK)\nThe limits being 0.10 % (1.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56694581 BTC (392,599.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,401,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.32 % (401,719.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,104.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00138362 BTC (1,938.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.59 CZK over 4195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005903 BTC for 82.70 CZK @ 1,401,049 CZK\nFees are 0.29047680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.80 % (15.411536045828419775238638338 CZK)\nThe limits being 0.10 % (1.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56694581 BTC (392,599.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,401,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.32 % (401,719.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,104.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00138362 BTC (1,938.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.59 CZK over 4195 transactions" + } + ] + }, + { + "id": 5894, + "type": "message", + "date": "2024-10-03T18:00:05", + "date_unixtime": "1727971205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005916 BTC for 82.71 CZK @ 1,398,058 CZK\nFees are 0.29049514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.76 % (15.378641298221606392501161418 CZK)\nThe limits being 0.10 % (2.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56700497 BTC (392,682.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,398,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.87 % (400,023.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,021.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00144278 BTC (2,017.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.58 CZK over 4196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005916 BTC for 82.71 CZK @ 1,398,058 CZK\nFees are 0.29049514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.76 % (15.378641298221606392501161418 CZK)\nThe limits being 0.10 % (2.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56700497 BTC (392,682.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,398,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.87 % (400,023.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,021.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00144278 BTC (2,017.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.58 CZK over 4196 transactions" + } + ] + }, + { + "id": 5895, + "type": "message", + "date": "2024-10-03T22:00:06", + "date_unixtime": "1727985606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005889 BTC for 82.70 CZK @ 1,404,372 CZK\nFees are 0.29047525 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.73 % (15.448091889289169008825707072 CZK)\nThe limits being 0.10 % (2.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56706386 BTC (392,765.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,404,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.76 % (403,603.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,938.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00150167 BTC (2,108.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.58 CZK over 4197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005889 BTC for 82.70 CZK @ 1,404,372 CZK\nFees are 0.29047525 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.73 % (15.448091889289169008825707072 CZK)\nThe limits being 0.10 % (2.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56706386 BTC (392,765.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,404,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.76 % (403,603.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,938.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00150167 BTC (2,108.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.58 CZK over 4197 transactions" + } + ] + }, + { + "id": 5896, + "type": "message", + "date": "2024-10-04T02:00:07", + "date_unixtime": "1728000007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005906 BTC for 82.71 CZK @ 1,400,441 CZK\nFees are 0.29049840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.70 % (15.404853438971051370997310295 CZK)\nThe limits being 0.10 % (2.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56712292 BTC (392,848.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,400,441 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.17 % (401,373.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,855.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00156073 BTC (2,185.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.58 CZK over 4198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005906 BTC for 82.71 CZK @ 1,400,441 CZK\nFees are 0.29049840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.70 % (15.404853438971051370997310295 CZK)\nThe limits being 0.10 % (2.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56712292 BTC (392,848.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,400,441 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.17 % (401,373.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,855.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00156073 BTC (2,185.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.58 CZK over 4198 transactions" + } + ] + }, + { + "id": 5897, + "type": "message", + "date": "2024-10-04T06:00:08", + "date_unixtime": "1728014408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005886 BTC for 82.70 CZK @ 1,404,969 CZK\nFees are 0.29045079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.68 % (15.454664223129342916509850588 CZK)\nThe limits being 0.10 % (2.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56718178 BTC (392,931.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,404,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.80 % (403,941.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,772.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00161959 BTC (2,275.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.58 CZK over 4199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005886 BTC for 82.70 CZK @ 1,404,969 CZK\nFees are 0.29045079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.68 % (15.454664223129342916509850588 CZK)\nThe limits being 0.10 % (2.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56718178 BTC (392,931.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,404,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.80 % (403,941.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,772.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00161959 BTC (2,275.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.58 CZK over 4199 transactions" + } + ] + }, + { + "id": 5898, + "type": "message", + "date": "2024-10-04T10:00:06", + "date_unixtime": "1728028806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005837 BTC for 82.70 CZK @ 1,416,768 CZK\nFees are 0.29045161 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.66 % (15.584445741088305032096417038 CZK)\nThe limits being 0.10 % (2.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56724015 BTC (393,014.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,416,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.48 % (410,633.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,689.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00167796 BTC (2,377.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.57 CZK over 4200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005837 BTC for 82.70 CZK @ 1,416,768 CZK\nFees are 0.29045161 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.66 % (15.584445741088305032096417038 CZK)\nThe limits being 0.10 % (2.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56724015 BTC (393,014.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,416,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.48 % (410,633.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,689.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00167796 BTC (2,377.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.57 CZK over 4200 transactions" + } + ] + }, + { + "id": 5899, + "type": "message", + "date": "2024-10-04T14:00:07", + "date_unixtime": "1728043207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005832 BTC for 82.71 CZK @ 1,418,162 CZK\nFees are 0.29048844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (15.599784859302455124485425837 CZK)\nThe limits being 0.10 % (2.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56729847 BTC (393,097.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 692,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,418,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.66 % (411,423.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,606.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00173628 BTC (2,462.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.57 CZK over 4201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005832 BTC for 82.71 CZK @ 1,418,162 CZK\nFees are 0.29048844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (15.599784859302455124485425837 CZK)\nThe limits being 0.10 % (2.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56729847 BTC (393,097.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 692,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,418,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.66 % (411,423.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,606.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00173628 BTC (2,462.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.57 CZK over 4201 transactions" + } + ] + }, + { + "id": 5900, + "type": "message", + "date": "2024-10-04T18:00:06", + "date_unixtime": "1728057606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005767 BTC for 82.71 CZK @ 1,434,193 CZK\nFees are 0.29049790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (15.776124078470282051660872398 CZK)\nThe limits being 0.10 % (2.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56735614 BTC (393,180.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.95 % (420,517.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,523.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00179395 BTC (2,572.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.57 CZK over 4202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005767 BTC for 82.71 CZK @ 1,434,193 CZK\nFees are 0.29049790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.61 % (15.776124078470282051660872398 CZK)\nThe limits being 0.10 % (2.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56735614 BTC (393,180.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.95 % (420,517.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,523.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00179395 BTC (2,572.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.57 CZK over 4202 transactions" + } + ] + }, + { + "id": 5901, + "type": "message", + "date": "2024-10-04T22:00:06", + "date_unixtime": "1728072006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005721 BTC for 82.70 CZK @ 1,445,544 CZK\nFees are 0.29046163 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (15.900987375508914046423952105 CZK)\nThe limits being 0.10 % (2.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56741335 BTC (393,263.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,445,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.57 % (426,957.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,440.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00185116 BTC (2,675.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.57 CZK over 4203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005721 BTC for 82.70 CZK @ 1,445,544 CZK\nFees are 0.29046163 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (15.900987375508914046423952105 CZK)\nThe limits being 0.10 % (2.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56741335 BTC (393,263.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,445,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.57 % (426,957.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,440.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00185116 BTC (2,675.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.57 CZK over 4203 transactions" + } + ] + }, + { + "id": 5902, + "type": "message", + "date": "2024-10-05T02:00:08", + "date_unixtime": "1728086408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005736 BTC for 82.70 CZK @ 1,441,744 CZK\nFees are 0.29045755 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.58 % (15.859182487340333935827115556 CZK)\nThe limits being 0.10 % (2.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56747071 BTC (393,346.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.00 % (424,800.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,357.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00190852 BTC (2,751.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.56 CZK over 4204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005736 BTC for 82.70 CZK @ 1,441,744 CZK\nFees are 0.29045755 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.58 % (15.859182487340333935827115556 CZK)\nThe limits being 0.10 % (2.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56747071 BTC (393,346.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.00 % (424,800.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,357.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00190852 BTC (2,751.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.56 CZK over 4204 transactions" + } + ] + }, + { + "id": 5903, + "type": "message", + "date": "2024-10-05T06:00:07", + "date_unixtime": "1728100807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005765 BTC for 82.70 CZK @ 1,434,602 CZK\nFees are 0.29047998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (15.780623259009771091725361927 CZK)\nThe limits being 0.10 % (2.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56752836 BTC (393,429.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.94 % (420,747.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,274.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00196617 BTC (2,820.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.56 CZK over 4205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005765 BTC for 82.70 CZK @ 1,434,602 CZK\nFees are 0.29047998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (15.780623259009771091725361927 CZK)\nThe limits being 0.10 % (2.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56752836 BTC (393,429.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.94 % (420,747.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,274.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00196617 BTC (2,820.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.56 CZK over 4205 transactions" + } + ] + }, + { + "id": 5904, + "type": "message", + "date": "2024-10-05T10:00:06", + "date_unixtime": "1728115206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005743 BTC for 82.71 CZK @ 1,440,103 CZK\nFees are 0.29048100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.54 % (15.841130626821447934145864713 CZK)\nThe limits being 0.10 % (2.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56758579 BTC (393,512.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,440,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.71 % (423,869.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,191.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00202360 BTC (2,914.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.56 CZK over 4206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005743 BTC for 82.71 CZK @ 1,440,103 CZK\nFees are 0.29048100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.54 % (15.841130626821447934145864713 CZK)\nThe limits being 0.10 % (2.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56758579 BTC (393,512.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,440,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.71 % (423,869.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,191.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00202360 BTC (2,914.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.56 CZK over 4206 transactions" + } + ] + }, + { + "id": 5905, + "type": "message", + "date": "2024-10-05T14:00:06", + "date_unixtime": "1728129606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005730 BTC for 82.70 CZK @ 1,443,271 CZK\nFees are 0.29046100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.53 % (15.875977223870032547514762902 CZK)\nThe limits being 0.10 % (3.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56764309 BTC (393,595.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.15 % (425,667.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,108.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00208090 BTC (3,003.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.56 CZK over 4207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005730 BTC for 82.70 CZK @ 1,443,271 CZK\nFees are 0.29046100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.53 % (15.875977223870032547514762902 CZK)\nThe limits being 0.10 % (3.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56764309 BTC (393,595.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.15 % (425,667.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,108.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00208090 BTC (3,003.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.56 CZK over 4207 transactions" + } + ] + }, + { + "id": 5906, + "type": "message", + "date": "2024-10-05T18:00:06", + "date_unixtime": "1728144006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005736 BTC for 82.70 CZK @ 1,441,794 CZK\nFees are 0.29046765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (31.719467712031599304804175620 CZK)\nThe limits being 0.10 % (3.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56770045 BTC (393,678.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,441,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.91 % (424,828.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,025.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00213826 BTC (3,082.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.55 CZK over 4208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005736 BTC for 82.70 CZK @ 1,441,794 CZK\nFees are 0.29046765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (31.719467712031599304804175620 CZK)\nThe limits being 0.10 % (3.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56770045 BTC (393,678.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,441,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.91 % (424,828.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,025.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00213826 BTC (3,082.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.55 CZK over 4208 transactions" + } + ] + }, + { + "id": 5907, + "type": "message", + "date": "2024-10-05T22:00:06", + "date_unixtime": "1728158406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005767 BTC for 82.70 CZK @ 1,434,042 CZK\nFees are 0.29046724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (31.548917880534135381375865933 CZK)\nThe limits being 0.10 % (3.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56775812 BTC (393,761.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.77 % (420,427.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,942.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00219593 BTC (3,149.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.55 CZK over 4209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005767 BTC for 82.70 CZK @ 1,434,042 CZK\nFees are 0.29046724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.00 % (31.548917880534135381375865933 CZK)\nThe limits being 0.10 % (3.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56775812 BTC (393,761.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.77 % (420,427.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,942.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00219593 BTC (3,149.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.55 CZK over 4209 transactions" + } + ] + }, + { + "id": 5908, + "type": "message", + "date": "2024-10-06T02:00:06", + "date_unixtime": "1728172806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,438,949 CZK\nFees are 0.29045041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (31.656876166408695370969312296 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56781559 BTC (393,844.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,438,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.46 % (423,213.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,859.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00225340 BTC (3,242.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.55 CZK over 4210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005747 BTC for 82.70 CZK @ 1,438,949 CZK\nFees are 0.29045041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.98 % (31.656876166408695370969312296 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56781559 BTC (393,844.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,438,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.46 % (423,213.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,859.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00225340 BTC (3,242.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.55 CZK over 4210 transactions" + } + ] + }, + { + "id": 5909, + "type": "message", + "date": "2024-10-06T06:00:05", + "date_unixtime": "1728187205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005764 BTC for 82.71 CZK @ 1,434,870 CZK\nFees are 0.29048378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (31.567135152918982036155897106 CZK)\nThe limits being 0.10 % (3.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56787323 BTC (393,927.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,434,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 106.85 % (420,896.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,776.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00231104 BTC (3,316.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.55 CZK over 4211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005764 BTC for 82.71 CZK @ 1,434,870 CZK\nFees are 0.29048378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.95 % (31.567135152918982036155897106 CZK)\nThe limits being 0.10 % (3.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56787323 BTC (393,927.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,434,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 106.85 % (420,896.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,776.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00231104 BTC (3,316.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.55 CZK over 4211 transactions" + } + ] + }, + { + "id": 5910, + "type": "message", + "date": "2024-10-06T10:00:05", + "date_unixtime": "1728201605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005757 BTC for 82.70 CZK @ 1,436,553 CZK\nFees are 0.29047134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (15.802082587442128683012271018 CZK)\nThe limits being 0.10 % (3.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56793080 BTC (394,010.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,436,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.07 % (421,852.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,693.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00236861 BTC (3,402.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.54 CZK over 4212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005757 BTC for 82.70 CZK @ 1,436,553 CZK\nFees are 0.29047134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (15.802082587442128683012271018 CZK)\nThe limits being 0.10 % (3.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56793080 BTC (394,010.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,436,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.07 % (421,852.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,693.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00236861 BTC (3,402.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.54 CZK over 4212 transactions" + } + ] + }, + { + "id": 5911, + "type": "message", + "date": "2024-10-06T14:00:09", + "date_unixtime": "1728216009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005744 BTC for 82.71 CZK @ 1,439,938 CZK\nFees are 0.29049841 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (15.839322132459789066956460189 CZK)\nThe limits being 0.10 % (3.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56798824 BTC (394,093.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.53 % (423,774.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,610.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00242605 BTC (3,493.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.54 CZK over 4213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005744 BTC for 82.71 CZK @ 1,439,938 CZK\nFees are 0.29049841 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (15.839322132459789066956460189 CZK)\nThe limits being 0.10 % (3.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56798824 BTC (394,093.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.53 % (423,774.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,610.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00242605 BTC (3,493.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.54 CZK over 4213 transactions" + } + ] + }, + { + "id": 5912, + "type": "message", + "date": "2024-10-06T18:00:06", + "date_unixtime": "1728230406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005687 BTC for 82.71 CZK @ 1,454,353 CZK\nFees are 0.29049492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (15.997885175579861201462193733 CZK)\nThe limits being 0.10 % (3.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56804511 BTC (394,176.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,454,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.59 % (431,961.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,527.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00248292 BTC (3,611.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.54 CZK over 4214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005687 BTC for 82.71 CZK @ 1,454,353 CZK\nFees are 0.29049492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.44 % (15.997885175579861201462193733 CZK)\nThe limits being 0.10 % (3.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56804511 BTC (394,176.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,454,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.59 % (431,961.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,527.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00248292 BTC (3,611.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.54 CZK over 4214 transactions" + } + ] + }, + { + "id": 5913, + "type": "message", + "date": "2024-10-06T22:00:06", + "date_unixtime": "1728244806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005697 BTC for 82.70 CZK @ 1,451,592 CZK\nFees are 0.29045329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (31.935031409025755826172377720 CZK)\nThe limits being 0.10 % (3.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56810208 BTC (394,259.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 693,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,451,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.17 % (430,393.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,444.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00253989 BTC (3,686.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.54 CZK over 4215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005697 BTC for 82.70 CZK @ 1,451,592 CZK\nFees are 0.29045329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (31.935031409025755826172377720 CZK)\nThe limits being 0.10 % (3.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56810208 BTC (394,259.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 693,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,451,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.17 % (430,393.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,444.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00253989 BTC (3,686.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.54 CZK over 4215 transactions" + } + ] + }, + { + "id": 5914, + "type": "message", + "date": "2024-10-07T02:00:06", + "date_unixtime": "1728259206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005671 BTC for 82.70 CZK @ 1,458,321 CZK\nFees are 0.29046795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (32.083063282039576347885556960 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56815879 BTC (394,342.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,458,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.11 % (434,215.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,361.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00259660 BTC (3,786.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.53 CZK over 4216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005671 BTC for 82.70 CZK @ 1,458,321 CZK\nFees are 0.29046795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (32.083063282039576347885556960 CZK)\nThe limits being 0.10 % (3.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56815879 BTC (394,342.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,458,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.11 % (434,215.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,361.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00259660 BTC (3,786.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.53 CZK over 4216 transactions" + } + ] + }, + { + "id": 5915, + "type": "message", + "date": "2024-10-07T06:00:06", + "date_unixtime": "1728273606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005613 BTC for 82.70 CZK @ 1,473,316 CZK\nFees are 0.29045340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (32.412959102787491241904004077 CZK)\nThe limits being 0.10 % (3.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56821492 BTC (394,425.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,473,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.25 % (442,735.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,278.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00265273 BTC (3,908.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.53 CZK over 4217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005613 BTC for 82.70 CZK @ 1,473,316 CZK\nFees are 0.29045340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (32.412959102787491241904004077 CZK)\nThe limits being 0.10 % (3.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56821492 BTC (394,425.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,473,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.25 % (442,735.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,278.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00265273 BTC (3,908.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.53 CZK over 4217 transactions" + } + ] + }, + { + "id": 5916, + "type": "message", + "date": "2024-10-07T10:00:06", + "date_unixtime": "1728288006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005608 BTC for 82.70 CZK @ 1,474,740 CZK\nFees are 0.29047506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (16.222138464198415389219045751 CZK)\nThe limits being 0.10 % (3.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56827100 BTC (394,508.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,474,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.43 % (443,543.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,195.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00270881 BTC (3,994.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.53 CZK over 4218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005608 BTC for 82.70 CZK @ 1,474,740 CZK\nFees are 0.29047506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.41 % (16.222138464198415389219045751 CZK)\nThe limits being 0.10 % (3.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56827100 BTC (394,508.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,474,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.43 % (443,543.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,195.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00270881 BTC (3,994.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.53 CZK over 4218 transactions" + } + ] + }, + { + "id": 5917, + "type": "message", + "date": "2024-10-07T14:00:07", + "date_unixtime": "1728302407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005646 BTC for 82.70 CZK @ 1,464,727 CZK\nFees are 0.29045775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (32.223993505903267010380423742 CZK)\nThe limits being 0.10 % (4.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56832746 BTC (394,591.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,303 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,464,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.96 % (437,853.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,112.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00276527 BTC (4,050.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.53 CZK over 4219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005646 BTC for 82.70 CZK @ 1,464,727 CZK\nFees are 0.29045775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (32.223993505903267010380423742 CZK)\nThe limits being 0.10 % (4.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56832746 BTC (394,591.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,303 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,464,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.96 % (437,853.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,112.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00276527 BTC (4,050.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.53 CZK over 4219 transactions" + } + ] + }, + { + "id": 5918, + "type": "message", + "date": "2024-10-07T18:00:05", + "date_unixtime": "1728316805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005599 BTC for 82.70 CZK @ 1,477,039 CZK\nFees are 0.29046093 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (32.494848603561405415035587622 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56838345 BTC (394,674.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,477,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 112.71 % (444,849.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,029.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00282126 BTC (4,167.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.52 CZK over 4220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005599 BTC for 82.70 CZK @ 1,477,039 CZK\nFees are 0.29046093 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (32.494848603561405415035587622 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56838345 BTC (394,674.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,477,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 112.71 % (444,849.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,029.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00282126 BTC (4,167.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.52 CZK over 4220 transactions" + } + ] + }, + { + "id": 5919, + "type": "message", + "date": "2024-10-07T22:00:05", + "date_unixtime": "1728331205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005618 BTC for 82.71 CZK @ 1,472,151 CZK\nFees are 0.29048228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (32.387331415872144184567257744 CZK)\nThe limits being 0.10 % (4.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56843963 BTC (394,757.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,472,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 111.99 % (442,071.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,946.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00287744 BTC (4,236.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.52 CZK over 4221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005618 BTC for 82.71 CZK @ 1,472,151 CZK\nFees are 0.29048228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (32.387331415872144184567257744 CZK)\nThe limits being 0.10 % (4.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56843963 BTC (394,757.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,472,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 111.99 % (442,071.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,946.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00287744 BTC (4,236.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.52 CZK over 4221 transactions" + } + ] + }, + { + "id": 5920, + "type": "message", + "date": "2024-10-08T02:00:06", + "date_unixtime": "1728345606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005724 BTC for 82.70 CZK @ 1,444,799 CZK\nFees are 0.29046420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (47.678382039695447485164607315 CZK)\nThe limits being 0.10 % (4.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56849687 BTC (394,840.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.02 % (426,523.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,863.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00293468 BTC (4,240.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.52 CZK over 4222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005724 BTC for 82.70 CZK @ 1,444,799 CZK\nFees are 0.29046420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (47.678382039695447485164607315 CZK)\nThe limits being 0.10 % (4.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56849687 BTC (394,840.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.02 % (426,523.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,863.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00293468 BTC (4,240.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.52 CZK over 4222 transactions" + } + ] + }, + { + "id": 5921, + "type": "message", + "date": "2024-10-08T06:00:06", + "date_unixtime": "1728360006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005694 BTC for 82.70 CZK @ 1,452,368 CZK\nFees are 0.29045552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (47.928152744635083845109030932 CZK)\nThe limits being 0.10 % (4.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56855381 BTC (394,923.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,452,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.09 % (430,826.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,780.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00299162 BTC (4,344.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.52 CZK over 4223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005694 BTC for 82.70 CZK @ 1,452,368 CZK\nFees are 0.29045552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (47.928152744635083845109030932 CZK)\nThe limits being 0.10 % (4.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56855381 BTC (394,923.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,452,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.09 % (430,826.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,780.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00299162 BTC (4,344.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.52 CZK over 4223 transactions" + } + ] + }, + { + "id": 5922, + "type": "message", + "date": "2024-10-08T10:00:06", + "date_unixtime": "1728374406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005735 BTC for 82.71 CZK @ 1,442,114 CZK\nFees are 0.29048143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (31.726503197657370954058354607 CZK)\nThe limits being 0.10 % (4.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56861116 BTC (395,006.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.59 % (424,995.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,697.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00304897 BTC (4,396.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.51 CZK over 4224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005735 BTC for 82.71 CZK @ 1,442,114 CZK\nFees are 0.29048143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (31.726503197657370954058354607 CZK)\nThe limits being 0.10 % (4.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56861116 BTC (395,006.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.59 % (424,995.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,697.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00304897 BTC (4,396.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.51 CZK over 4224 transactions" + } + ] + }, + { + "id": 5923, + "type": "message", + "date": "2024-10-08T14:00:06", + "date_unixtime": "1728388806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005709 BTC for 82.71 CZK @ 1,448,714 CZK\nFees are 0.29048799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (15.935856027986824534168944342 CZK)\nThe limits being 0.10 % (4.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56866825 BTC (395,089.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,448,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.52 % (428,748.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,614.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00310606 BTC (4,499.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.51 CZK over 4225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005709 BTC for 82.71 CZK @ 1,448,714 CZK\nFees are 0.29048799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (15.935856027986824534168944342 CZK)\nThe limits being 0.10 % (4.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56866825 BTC (395,089.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,448,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.52 % (428,748.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,614.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00310606 BTC (4,499.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.51 CZK over 4225 transactions" + } + ] + }, + { + "id": 5924, + "type": "message", + "date": "2024-10-08T18:00:06", + "date_unixtime": "1728403206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005733 BTC for 82.71 CZK @ 1,442,660 CZK\nFees are 0.29049014 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (15.869261533003578700781348657 CZK)\nThe limits being 0.10 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56872558 BTC (395,172.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.63 % (425,305.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,531.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00316339 BTC (4,563.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.51 CZK over 4226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005733 BTC for 82.71 CZK @ 1,442,660 CZK\nFees are 0.29049014 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (15.869261533003578700781348657 CZK)\nThe limits being 0.10 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56872558 BTC (395,172.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.63 % (425,305.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,531.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00316339 BTC (4,563.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.51 CZK over 4226 transactions" + } + ] + }, + { + "id": 5925, + "type": "message", + "date": "2024-10-08T22:00:07", + "date_unixtime": "1728417607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005735 BTC for 82.70 CZK @ 1,442,063 CZK\nFees are 0.29047113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (31.725378402096585229812482813 CZK)\nThe limits being 0.10 % (4.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56878293 BTC (395,255.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,442,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.52 % (424,965.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,448.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00322074 BTC (4,644.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.51 CZK over 4227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005735 BTC for 82.70 CZK @ 1,442,063 CZK\nFees are 0.29047113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (31.725378402096585229812482813 CZK)\nThe limits being 0.10 % (4.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56878293 BTC (395,255.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,442,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.52 % (424,965.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,448.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00322074 BTC (4,644.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.51 CZK over 4227 transactions" + } + ] + }, + { + "id": 5926, + "type": "message", + "date": "2024-10-09T02:00:06", + "date_unixtime": "1728432006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005746 BTC for 82.71 CZK @ 1,439,428 CZK\nFees are 0.29049658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (31.667418367423034346719998972 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56884039 BTC (395,338.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 694,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,439,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.12 % (423,466.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,365.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00327820 BTC (4,718.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.50 CZK over 4228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005746 BTC for 82.71 CZK @ 1,439,428 CZK\nFees are 0.29049658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (31.667418367423034346719998972 CZK)\nThe limits being 0.10 % (4.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56884039 BTC (395,338.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 694,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,439,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.12 % (423,466.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,365.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00327820 BTC (4,718.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.50 CZK over 4228 transactions" + } + ] + }, + { + "id": 5927, + "type": "message", + "date": "2024-10-09T06:00:08", + "date_unixtime": "1728446408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005724 BTC for 82.71 CZK @ 1,444,883 CZK\nFees are 0.29048093 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (31.787418577257725145777340455 CZK)\nThe limits being 0.10 % (4.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56889763 BTC (395,421.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.88 % (426,569.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,282.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00333544 BTC (4,819.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.50 CZK over 4229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005724 BTC for 82.71 CZK @ 1,444,883 CZK\nFees are 0.29048093 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (31.787418577257725145777340455 CZK)\nThe limits being 0.10 % (4.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56889763 BTC (395,421.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.88 % (426,569.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,282.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00333544 BTC (4,819.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.50 CZK over 4229 transactions" + } + ] + }, + { + "id": 5928, + "type": "message", + "date": "2024-10-09T10:00:06", + "date_unixtime": "1728460806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005725 BTC for 82.70 CZK @ 1,444,506 CZK\nFees are 0.29045588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (31.779125968803510856108424010 CZK)\nThe limits being 0.10 % (4.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56895488 BTC (395,504.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.80 % (426,354.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,199.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00339269 BTC (4,900.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.50 CZK over 4230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005725 BTC for 82.70 CZK @ 1,444,506 CZK\nFees are 0.29045588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (31.779125968803510856108424010 CZK)\nThe limits being 0.10 % (4.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56895488 BTC (395,504.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.80 % (426,354.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,199.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00339269 BTC (4,900.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.50 CZK over 4230 transactions" + } + ] + }, + { + "id": 5929, + "type": "message", + "date": "2024-10-09T14:00:09", + "date_unixtime": "1728475209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005729 BTC for 82.70 CZK @ 1,443,550 CZK\nFees are 0.29046659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (31.758107738293873345890187276 CZK)\nThe limits being 0.10 % (4.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56901217 BTC (395,587.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.64 % (425,810.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,116.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00344998 BTC (4,980.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.50 CZK over 4231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005729 BTC for 82.70 CZK @ 1,443,550 CZK\nFees are 0.29046659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (31.758107738293873345890187276 CZK)\nThe limits being 0.10 % (4.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56901217 BTC (395,587.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.64 % (425,810.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,116.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00344998 BTC (4,980.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.50 CZK over 4231 transactions" + } + ] + }, + { + "id": 5930, + "type": "message", + "date": "2024-10-09T18:00:06", + "date_unixtime": "1728489606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005714 BTC for 82.71 CZK @ 1,447,455 CZK\nFees are 0.29048970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (31.844011214163099784286673226 CZK)\nThe limits being 0.10 % (5.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56906931 BTC (395,670.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,447,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.18 % (428,032.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,033.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00350712 BTC (5,076.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.49 CZK over 4232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005714 BTC for 82.71 CZK @ 1,447,455 CZK\nFees are 0.29048970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (31.844011214163099784286673226 CZK)\nThe limits being 0.10 % (5.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56906931 BTC (395,670.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,447,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.18 % (428,032.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,033.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00350712 BTC (5,076.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.49 CZK over 4232 transactions" + } + ] + }, + { + "id": 5931, + "type": "message", + "date": "2024-10-09T22:00:07", + "date_unixtime": "1728504007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005834 BTC for 82.70 CZK @ 1,417,536 CZK\nFees are 0.29045968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (62.371570933341122321446415094 CZK)\nThe limits being 0.10 % (5.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56912765 BTC (395,753.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,417,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.85 % (411,005.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,950.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00356546 BTC (5,054.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.49 CZK over 4233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005834 BTC for 82.70 CZK @ 1,417,536 CZK\nFees are 0.29045968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (62.371570933341122321446415094 CZK)\nThe limits being 0.10 % (5.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56912765 BTC (395,753.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,417,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.85 % (411,005.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,950.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00356546 BTC (5,054.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.49 CZK over 4233 transactions" + } + ] + }, + { + "id": 5932, + "type": "message", + "date": "2024-10-10T02:00:07", + "date_unixtime": "1728518407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005870 BTC for 82.71 CZK @ 1,408,961 CZK\nFees are 0.29048427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (46.495726037743536463943489098 CZK)\nThe limits being 0.10 % (5.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56918635 BTC (395,836.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,408,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.60 % (406,125.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,867.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00362416 BTC (5,106.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.49 CZK over 4234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005870 BTC for 82.71 CZK @ 1,408,961 CZK\nFees are 0.29048427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (46.495726037743536463943489098 CZK)\nThe limits being 0.10 % (5.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56918635 BTC (395,836.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,408,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.60 % (406,125.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,867.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00362416 BTC (5,106.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.49 CZK over 4234 transactions" + } + ] + }, + { + "id": 5933, + "type": "message", + "date": "2024-10-10T06:00:05", + "date_unixtime": "1728532805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005848 BTC for 82.70 CZK @ 1,414,121 CZK\nFees are 0.29045538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (46.666000183011988818887655176 CZK)\nThe limits being 0.10 % (5.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56924483 BTC (395,919.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.32 % (409,062.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,784.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00368264 BTC (5,207.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.49 CZK over 4235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005848 BTC for 82.70 CZK @ 1,414,121 CZK\nFees are 0.29045538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (46.666000183011988818887655176 CZK)\nThe limits being 0.10 % (5.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56924483 BTC (395,919.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.32 % (409,062.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,784.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00368264 BTC (5,207.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.49 CZK over 4235 transactions" + } + ] + }, + { + "id": 5934, + "type": "message", + "date": "2024-10-10T10:00:06", + "date_unixtime": "1728547206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005851 BTC for 82.70 CZK @ 1,413,500 CZK\nFees are 0.29047665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (46.645489210255985779391000067 CZK)\nThe limits being 0.10 % (5.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56930334 BTC (396,002.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,413,500 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.21 % (408,707.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,701.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00374115 BTC (5,288.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.48 CZK over 4236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005851 BTC for 82.70 CZK @ 1,413,500 CZK\nFees are 0.29047665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (46.645489210255985779391000067 CZK)\nThe limits being 0.10 % (5.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56930334 BTC (396,002.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,413,500 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.21 % (408,707.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,701.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00374115 BTC (5,288.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.48 CZK over 4236 transactions" + } + ] + }, + { + "id": 5935, + "type": "message", + "date": "2024-10-10T14:00:08", + "date_unixtime": "1728561608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005810 BTC for 82.70 CZK @ 1,423,362 CZK\nFees are 0.29045374 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (46.970952015107193668974424282 CZK)\nThe limits being 0.10 % (5.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56936144 BTC (396,085.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,423,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.60 % (414,322.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,618.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00379925 BTC (5,407.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.48 CZK over 4237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005810 BTC for 82.70 CZK @ 1,423,362 CZK\nFees are 0.29045374 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (46.970952015107193668974424282 CZK)\nThe limits being 0.10 % (5.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56936144 BTC (396,085.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,423,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.60 % (414,322.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,618.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00379925 BTC (5,407.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.48 CZK over 4237 transactions" + } + ] + }, + { + "id": 5936, + "type": "message", + "date": "2024-10-10T18:00:06", + "date_unixtime": "1728576006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005846 BTC for 82.70 CZK @ 1,414,601 CZK\nFees are 0.29045464 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.14 % (171.16677072736015802372162706 CZK)\nThe limits being 0.10 % (5.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56941990 BTC (396,168.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,414,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 103.32 % (409,334.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,535.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00385771 BTC (5,457.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.48 CZK over 4238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005846 BTC for 82.70 CZK @ 1,414,601 CZK\nFees are 0.29045464 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.14 % (171.16677072736015802372162706 CZK)\nThe limits being 0.10 % (5.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56941990 BTC (396,168.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,414,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 103.32 % (409,334.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,535.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00385771 BTC (5,457.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.48 CZK over 4238 transactions" + } + ] + }, + { + "id": 5937, + "type": "message", + "date": "2024-10-10T22:00:06", + "date_unixtime": "1728590406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005954 BTC for 82.71 CZK @ 1,389,143 CZK\nFees are 0.29049673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.97 % (106.96402216076449926098427088 CZK)\nThe limits being 0.10 % (5.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56947944 BTC (396,251.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,389,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 99.64 % (394,837.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,452.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00391725 BTC (5,441.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.48 CZK over 4239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005954 BTC for 82.71 CZK @ 1,389,143 CZK\nFees are 0.29049673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.97 % (106.96402216076449926098427088 CZK)\nThe limits being 0.10 % (5.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56947944 BTC (396,251.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,389,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 99.64 % (394,837.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,452.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00391725 BTC (5,441.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.48 CZK over 4239 transactions" + } + ] + }, + { + "id": 5938, + "type": "message", + "date": "2024-10-11T02:00:06", + "date_unixtime": "1728604806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005899 BTC for 82.70 CZK @ 1,401,876 CZK\nFees are 0.29045132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (61.682534613511127733725316197 CZK)\nThe limits being 0.10 % (5.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56953843 BTC (396,334.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,401,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 101.45 % (402,088.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,369.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00397624 BTC (5,574.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.48 CZK over 4240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005899 BTC for 82.70 CZK @ 1,401,876 CZK\nFees are 0.29045132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.11 % (61.682534613511127733725316197 CZK)\nThe limits being 0.10 % (5.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56953843 BTC (396,334.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,401,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 101.45 % (402,088.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,369.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00397624 BTC (5,574.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.48 CZK over 4240 transactions" + } + ] + }, + { + "id": 5939, + "type": "message", + "date": "2024-10-11T06:00:06", + "date_unixtime": "1728619206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005869 BTC for 82.70 CZK @ 1,409,139 CZK\nFees are 0.29047136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (62.002108784868907027822114846 CZK)\nThe limits being 0.10 % (5.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56959712 BTC (396,417.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 695,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,409,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.47 % (406,224.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,286.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00403493 BTC (5,685.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.47 CZK over 4241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005869 BTC for 82.70 CZK @ 1,409,139 CZK\nFees are 0.29047136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (62.002108784868907027822114846 CZK)\nThe limits being 0.10 % (5.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56959712 BTC (396,417.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 695,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,409,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.47 % (406,224.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,286.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00403493 BTC (5,685.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.47 CZK over 4241 transactions" + } + ] + }, + { + "id": 5940, + "type": "message", + "date": "2024-10-11T10:00:08", + "date_unixtime": "1728633608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005868 BTC for 82.70 CZK @ 1,409,379 CZK\nFees are 0.29047145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.34 % (77.515868865073130206513059778 CZK)\nThe limits being 0.10 % (5.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56965580 BTC (396,500.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,409,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 102.49 % (406,361.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,203.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00409361 BTC (5,769.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.47 CZK over 4242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005868 BTC for 82.70 CZK @ 1,409,379 CZK\nFees are 0.29047145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.34 % (77.515868865073130206513059778 CZK)\nThe limits being 0.10 % (5.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56965580 BTC (396,500.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,409,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 102.49 % (406,361.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,203.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00409361 BTC (5,769.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.47 CZK over 4242 transactions" + } + ] + }, + { + "id": 5941, + "type": "message", + "date": "2024-10-11T14:00:07", + "date_unixtime": "1728648007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005820 BTC for 82.70 CZK @ 1,421,045 CZK\nFees are 0.29048009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (78.157498367397955951420886004 CZK)\nThe limits being 0.10 % (5.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56971400 BTC (396,583.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,109 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,421,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 104.14 % (413,006.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,120.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00415181 BTC (5,899.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.47 CZK over 4243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005820 BTC for 82.70 CZK @ 1,421,045 CZK\nFees are 0.29048009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.32 % (78.157498367397955951420886004 CZK)\nThe limits being 0.10 % (5.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56971400 BTC (396,583.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,109 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,421,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 104.14 % (413,006.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,120.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00415181 BTC (5,899.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.47 CZK over 4243 transactions" + } + ] + }, + { + "id": 5942, + "type": "message", + "date": "2024-10-11T18:00:06", + "date_unixtime": "1728662406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005725 BTC for 82.70 CZK @ 1,444,478 CZK\nFees are 0.29045024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.14 % (190.67105060045299965404925555 CZK)\nThe limits being 0.10 % (6.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56977125 BTC (396,666.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,444,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.48 % (426,355.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,037.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00420906 BTC (6,079.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.47 CZK over 4244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005725 BTC for 82.70 CZK @ 1,444,478 CZK\nFees are 0.29045024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.14 % (190.67105060045299965404925555 CZK)\nThe limits being 0.10 % (6.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56977125 BTC (396,666.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,444,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.48 % (426,355.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,037.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00420906 BTC (6,079.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.47 CZK over 4244 transactions" + } + ] + }, + { + "id": 5943, + "type": "message", + "date": "2024-10-11T22:00:06", + "date_unixtime": "1728676806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005650 BTC for 82.71 CZK @ 1,463,890 CZK\nFees are 0.29049742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.09 % (193.23346643279495218064208898 CZK)\nThe limits being 0.10 % (6.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56982775 BTC (396,749.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,463,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.25 % (437,415.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,954.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00426556 BTC (6,244.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.46 CZK over 4245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005650 BTC for 82.71 CZK @ 1,463,890 CZK\nFees are 0.29049742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.09 % (193.23346643279495218064208898 CZK)\nThe limits being 0.10 % (6.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56982775 BTC (396,749.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,463,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.25 % (437,415.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,954.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00426556 BTC (6,244.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.46 CZK over 4245 transactions" + } + ] + }, + { + "id": 5944, + "type": "message", + "date": "2024-10-12T02:00:07", + "date_unixtime": "1728691207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005703 BTC for 82.71 CZK @ 1,450,246 CZK\nFees are 0.29048952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.56 % (223.33788262001808329797139086 CZK)\nThe limits being 0.10 % (6.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56988478 BTC (396,832.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,450,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.27 % (429,641.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,871.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00432259 BTC (6,268.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.46 CZK over 4246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005703 BTC for 82.71 CZK @ 1,450,246 CZK\nFees are 0.29048952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.56 % (223.33788262001808329797139086 CZK)\nThe limits being 0.10 % (6.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56988478 BTC (396,832.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,450,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.27 % (429,641.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,871.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00432259 BTC (6,268.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.46 CZK over 4246 transactions" + } + ] + }, + { + "id": 5945, + "type": "message", + "date": "2024-10-12T06:00:07", + "date_unixtime": "1728705607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005695 BTC for 82.70 CZK @ 1,452,146 CZK\nFees are 0.29046202 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.27 % (207.65683680988358130214136388 CZK)\nThe limits being 0.10 % (6.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56994173 BTC (396,915.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,452,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.52 % (430,723.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,788.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00437954 BTC (6,359.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.46 CZK over 4247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005695 BTC for 82.70 CZK @ 1,452,146 CZK\nFees are 0.29046202 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.27 % (207.65683680988358130214136388 CZK)\nThe limits being 0.10 % (6.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56994173 BTC (396,915.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,452,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.52 % (430,723.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,788.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00437954 BTC (6,359.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.46 CZK over 4247 transactions" + } + ] + }, + { + "id": 5946, + "type": "message", + "date": "2024-10-12T10:00:06", + "date_unixtime": "1728720006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005676 BTC for 82.70 CZK @ 1,457,017 CZK\nFees are 0.29046404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.74 % (112.19029491740149785827124444 CZK)\nThe limits being 0.10 % (6.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.56999849 BTC (396,998.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,457,017 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.19 % (433,499.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,705.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00443630 BTC (6,463.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.46 CZK over 4248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005676 BTC for 82.70 CZK @ 1,457,017 CZK\nFees are 0.29046404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.74 % (112.19029491740149785827124444 CZK)\nThe limits being 0.10 % (6.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.56999849 BTC (396,998.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,457,017 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.19 % (433,499.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,705.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00443630 BTC (6,463.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.46 CZK over 4248 transactions" + } + ] + }, + { + "id": 5947, + "type": "message", + "date": "2024-10-12T14:00:06", + "date_unixtime": "1728734406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005656 BTC for 82.71 CZK @ 1,462,335 CZK\nFees are 0.29049704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.71 % (112.59979756865821111259107974 CZK)\nThe limits being 0.10 % (6.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57005505 BTC (397,081.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,462,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.93 % (436,530.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,622.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00449286 BTC (6,570.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.45 CZK over 4249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005656 BTC for 82.71 CZK @ 1,462,335 CZK\nFees are 0.29049704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.71 % (112.59979756865821111259107974 CZK)\nThe limits being 0.10 % (6.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57005505 BTC (397,081.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,462,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.93 % (436,530.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,622.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00449286 BTC (6,570.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.45 CZK over 4249 transactions" + } + ] + }, + { + "id": 5948, + "type": "message", + "date": "2024-10-12T18:00:06", + "date_unixtime": "1728748806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005642 BTC for 82.71 CZK @ 1,465,890 CZK\nFees are 0.29048241 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.66 % (177.37267395364010437061210966 CZK)\nThe limits being 0.10 % (6.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57011147 BTC (397,164.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,465,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.42 % (438,556.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,539.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00454928 BTC (6,668.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.45 CZK over 4250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005642 BTC for 82.71 CZK @ 1,465,890 CZK\nFees are 0.29048241 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.66 % (177.37267395364010437061210966 CZK)\nThe limits being 0.10 % (6.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57011147 BTC (397,164.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,465,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.42 % (438,556.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,539.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00454928 BTC (6,668.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.45 CZK over 4250 transactions" + } + ] + }, + { + "id": 5949, + "type": "message", + "date": "2024-10-12T22:00:07", + "date_unixtime": "1728763207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005652 BTC for 82.70 CZK @ 1,463,202 CZK\nFees are 0.29046373 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.43 % (96.57134442825905509062231235 CZK)\nThe limits being 0.10 % (6.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57016799 BTC (397,247.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,463,202 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.01 % (437,024.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,456.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00460580 BTC (6,739.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.45 CZK over 4251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005652 BTC for 82.70 CZK @ 1,463,202 CZK\nFees are 0.29046373 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.43 % (96.57134442825905509062231235 CZK)\nThe limits being 0.10 % (6.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57016799 BTC (397,247.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,463,202 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.01 % (437,024.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,456.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00460580 BTC (6,739.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.45 CZK over 4251 transactions" + } + ] + }, + { + "id": 5950, + "type": "message", + "date": "2024-10-13T02:00:06", + "date_unixtime": "1728777606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005642 BTC for 82.71 CZK @ 1,465,931 CZK\nFees are 0.29049056 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (112.87668465457746522407306437 CZK)\nThe limits being 0.10 % (6.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57022441 BTC (397,330.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,465,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 110.38 % (438,579.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,373.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00466222 BTC (6,834.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.45 CZK over 4252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005642 BTC for 82.71 CZK @ 1,465,931 CZK\nFees are 0.29049056 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.65 % (112.87668465457746522407306437 CZK)\nThe limits being 0.10 % (6.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57022441 BTC (397,330.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,465,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 110.38 % (438,579.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,373.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00466222 BTC (6,834.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.45 CZK over 4252 transactions" + } + ] + }, + { + "id": 5951, + "type": "message", + "date": "2024-10-13T06:00:05", + "date_unixtime": "1728792005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005683 BTC for 82.70 CZK @ 1,455,285 CZK\nFees are 0.29047649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.40 % (96.04877780031021111136536815 CZK)\nThe limits being 0.10 % (6.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57028124 BTC (397,413.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,872 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,455,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.83 % (432,508.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,290.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00471905 BTC (6,867.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.44 CZK over 4253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005683 BTC for 82.70 CZK @ 1,455,285 CZK\nFees are 0.29047649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.40 % (96.04877780031021111136536815 CZK)\nThe limits being 0.10 % (6.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57028124 BTC (397,413.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,872 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,455,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.83 % (432,508.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,290.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00471905 BTC (6,867.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.44 CZK over 4253 transactions" + } + ] + }, + { + "id": 5952, + "type": "message", + "date": "2024-10-13T10:00:07", + "date_unixtime": "1728806407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005671 BTC for 82.71 CZK @ 1,458,474 CZK\nFees are 0.29049850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (96.25931300332454817590030731 CZK)\nThe limits being 0.10 % (6.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57033795 BTC (397,496.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 696,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,458,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.27 % (434,327.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,207.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00477576 BTC (6,965.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.44 CZK over 4254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005671 BTC for 82.71 CZK @ 1,458,474 CZK\nFees are 0.29049850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (96.25931300332454817590030731 CZK)\nThe limits being 0.10 % (6.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57033795 BTC (397,496.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 696,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,458,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.27 % (434,327.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,207.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00477576 BTC (6,965.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.44 CZK over 4254 transactions" + } + ] + }, + { + "id": 5953, + "type": "message", + "date": "2024-10-13T14:00:07", + "date_unixtime": "1728820807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005689 BTC for 82.70 CZK @ 1,453,613 CZK\nFees are 0.29044925 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (31.979493902821930240116701756 CZK)\nThe limits being 0.10 % (7.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57039484 BTC (397,579.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,453,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.55 % (431,554.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,124.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00483265 BTC (7,024.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.44 CZK over 4255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005689 BTC for 82.70 CZK @ 1,453,613 CZK\nFees are 0.29044925 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (31.979493902821930240116701756 CZK)\nThe limits being 0.10 % (7.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57039484 BTC (397,579.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,453,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.55 % (431,554.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,124.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00483265 BTC (7,024.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.44 CZK over 4255 transactions" + } + ] + }, + { + "id": 5954, + "type": "message", + "date": "2024-10-13T18:00:06", + "date_unixtime": "1728835206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005729 BTC for 82.71 CZK @ 1,443,646 CZK\nFees are 0.29048575 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (63.520405886083991420149915167 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57045213 BTC (397,662.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,100 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,443,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 107.09 % (425,868.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,041.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00488994 BTC (7,059.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.44 CZK over 4256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005729 BTC for 82.71 CZK @ 1,443,646 CZK\nFees are 0.29048575 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.90 % (63.520405886083991420149915167 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57045213 BTC (397,662.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,100 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,443,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 107.09 % (425,868.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,041.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00488994 BTC (7,059.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.44 CZK over 4256 transactions" + } + ] + }, + { + "id": 5955, + "type": "message", + "date": "2024-10-13T22:00:06", + "date_unixtime": "1728849606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005690 BTC for 82.70 CZK @ 1,453,368 CZK\nFees are 0.29045122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (47.961135708149771056136562451 CZK)\nThe limits being 0.10 % (7.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57050903 BTC (397,745.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,453,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 108.47 % (431,414.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,958.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00494684 BTC (7,189.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.43 CZK over 4257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005690 BTC for 82.70 CZK @ 1,453,368 CZK\nFees are 0.29045122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (47.961135708149771056136562451 CZK)\nThe limits being 0.10 % (7.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57050903 BTC (397,745.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,453,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 108.47 % (431,414.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,958.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00494684 BTC (7,189.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.43 CZK over 4257 transactions" + } + ] + }, + { + "id": 5956, + "type": "message", + "date": "2024-10-14T02:00:07", + "date_unixtime": "1728864007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005656 BTC for 82.70 CZK @ 1,462,219 CZK\nFees are 0.29047394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (80.42203093627748425066721918 CZK)\nThe limits being 0.10 % (7.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57056559 BTC (397,828.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,462,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 109.71 % (436,463.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,875.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00500340 BTC (7,316.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.43 CZK over 4258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005656 BTC for 82.70 CZK @ 1,462,219 CZK\nFees are 0.29047394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (80.42203093627748425066721918 CZK)\nThe limits being 0.10 % (7.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57056559 BTC (397,828.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,462,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 109.71 % (436,463.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,875.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00500340 BTC (7,316.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.43 CZK over 4258 transactions" + } + ] + }, + { + "id": 5957, + "type": "message", + "date": "2024-10-14T06:00:07", + "date_unixtime": "1728878407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005547 BTC for 82.70 CZK @ 1,490,948 CZK\nFees are 0.29047324 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (65.601718134357403675202412612 CZK)\nThe limits being 0.10 % (7.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57062106 BTC (397,911.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,490,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 113.81 % (452,855.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,792.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00505887 BTC (7,542.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.43 CZK over 4259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005547 BTC for 82.70 CZK @ 1,490,948 CZK\nFees are 0.29047324 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.87 % (65.601718134357403675202412612 CZK)\nThe limits being 0.10 % (7.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57062106 BTC (397,911.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,490,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 113.81 % (452,855.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,792.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00505887 BTC (7,542.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.43 CZK over 4259 transactions" + } + ] + }, + { + "id": 5958, + "type": "message", + "date": "2024-10-14T10:00:07", + "date_unixtime": "1728892807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005526 BTC for 82.70 CZK @ 1,496,590 CZK\nFees are 0.29046860 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (49.387475289256332478020738488 CZK)\nThe limits being 0.10 % (7.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57067632 BTC (397,993.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,496,590 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 114.59 % (456,074.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,709.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00511413 BTC (7,653.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.43 CZK over 4260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005526 BTC for 82.70 CZK @ 1,496,590 CZK\nFees are 0.29046860 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.65 % (49.387475289256332478020738488 CZK)\nThe limits being 0.10 % (7.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57067632 BTC (397,993.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,496,590 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 114.59 % (456,074.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,709.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00511413 BTC (7,653.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.43 CZK over 4260 transactions" + } + ] + }, + { + "id": 5959, + "type": "message", + "date": "2024-10-14T14:00:06", + "date_unixtime": "1728907206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005492 BTC for 82.71 CZK @ 1,505,942 CZK\nFees are 0.29048540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (49.696099250220731445766474293 CZK)\nThe limits being 0.10 % (7.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57073124 BTC (398,076.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,505,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 115.91 % (461,411.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,626.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00516905 BTC (7,784.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.42 CZK over 4261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005492 BTC for 82.71 CZK @ 1,505,942 CZK\nFees are 0.29048540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.64 % (49.696099250220731445766474293 CZK)\nThe limits being 0.10 % (7.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57073124 BTC (398,076.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,505,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 115.91 % (461,411.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,626.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00516905 BTC (7,784.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.42 CZK over 4261 transactions" + } + ] + }, + { + "id": 5960, + "type": "message", + "date": "2024-10-14T18:00:06", + "date_unixtime": "1728921606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005414 BTC for 82.71 CZK @ 1,527,660 CZK\nFees are 0.29048953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (50.412792297884629507841873721 CZK)\nThe limits being 0.10 % (7.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57078538 BTC (398,159.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,527,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.00 % (473,806.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,543.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00522319 BTC (7,979.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.42 CZK over 4262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005414 BTC for 82.71 CZK @ 1,527,660 CZK\nFees are 0.29048953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.63 % (50.412792297884629507841873721 CZK)\nThe limits being 0.10 % (7.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57078538 BTC (398,159.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,527,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.00 % (473,806.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,543.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00522319 BTC (7,979.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.42 CZK over 4262 transactions" + } + ] + }, + { + "id": 5961, + "type": "message", + "date": "2024-10-14T22:00:05", + "date_unixtime": "1728936005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005410 BTC for 82.70 CZK @ 1,528,638 CZK\nFees are 0.29046063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (67.260063275025396325430309994 CZK)\nThe limits being 0.10 % (8.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57083948 BTC (398,242.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,528,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.11 % (474,363.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,460.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00527729 BTC (8,067.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.42 CZK over 4263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005410 BTC for 82.70 CZK @ 1,528,638 CZK\nFees are 0.29046063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (67.260063275025396325430309994 CZK)\nThe limits being 0.10 % (8.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57083948 BTC (398,242.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,528,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.11 % (474,363.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,460.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00527729 BTC (8,067.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.42 CZK over 4263 transactions" + } + ] + }, + { + "id": 5962, + "type": "message", + "date": "2024-10-15T02:00:07", + "date_unixtime": "1728950407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005409 BTC for 82.71 CZK @ 1,529,090 CZK\nFees are 0.29049284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (117.73992423577932035435598258 CZK)\nThe limits being 0.10 % (8.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57089357 BTC (398,325.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,529,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.15 % (474,621.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,377.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00533138 BTC (8,152.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.42 CZK over 4264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005409 BTC for 82.71 CZK @ 1,529,090 CZK\nFees are 0.29049284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (117.73992423577932035435598258 CZK)\nThe limits being 0.10 % (8.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57089357 BTC (398,325.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,529,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.15 % (474,621.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,377.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00533138 BTC (8,152.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.42 CZK over 4264 transactions" + } + ] + }, + { + "id": 5963, + "type": "message", + "date": "2024-10-15T06:00:07", + "date_unixtime": "1728964807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005452 BTC for 82.71 CZK @ 1,516,970 CZK\nFees are 0.29048132 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (83.43333930838543454475732588 CZK)\nThe limits being 0.10 % (8.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57094809 BTC (398,408.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,516,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.39 % (467,702.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,294.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00538590 BTC (8,170.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.41 CZK over 4265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005452 BTC for 82.71 CZK @ 1,516,970 CZK\nFees are 0.29048132 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.02 % (83.43333930838543454475732588 CZK)\nThe limits being 0.10 % (8.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57094809 BTC (398,408.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,516,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.39 % (467,702.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,294.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00538590 BTC (8,170.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.41 CZK over 4265 transactions" + } + ] + }, + { + "id": 5964, + "type": "message", + "date": "2024-10-15T10:00:07", + "date_unixtime": "1728979207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005428 BTC for 82.70 CZK @ 1,523,587 CZK\nFees are 0.29046418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (83.79729878457822088423751946 CZK)\nThe limits being 0.10 % (8.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57100237 BTC (398,491.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,523,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.32 % (471,479.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,211.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00544018 BTC (8,288.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.41 CZK over 4266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005428 BTC for 82.70 CZK @ 1,523,587 CZK\nFees are 0.29046418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (83.79729878457822088423751946 CZK)\nThe limits being 0.10 % (8.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57100237 BTC (398,491.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,523,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.32 % (471,479.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,211.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00544018 BTC (8,288.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.41 CZK over 4266 transactions" + } + ] + }, + { + "id": 5965, + "type": "message", + "date": "2024-10-15T14:00:06", + "date_unixtime": "1728993606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005456 BTC for 82.70 CZK @ 1,515,749 CZK\nFees are 0.29046045 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (33.346472965588183293955028366 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57105693 BTC (398,574.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 697,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,515,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.17 % (467,003.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,128.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00549474 BTC (8,328.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.41 CZK over 4267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005456 BTC for 82.70 CZK @ 1,515,749 CZK\nFees are 0.29046045 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (33.346472965588183293955028366 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57105693 BTC (398,574.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 697,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,515,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.17 % (467,003.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,128.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00549474 BTC (8,328.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.41 CZK over 4267 transactions" + } + ] + }, + { + "id": 5966, + "type": "message", + "date": "2024-10-15T18:00:07", + "date_unixtime": "1729008007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005397 BTC for 82.70 CZK @ 1,532,295 CZK\nFees are 0.29045589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (33.710487577340711992000575345 CZK)\nThe limits being 0.10 % (8.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57111090 BTC (398,657.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,532,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 119.51 % (476,452.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,045.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00554871 BTC (8,502.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.41 CZK over 4268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005397 BTC for 82.70 CZK @ 1,532,295 CZK\nFees are 0.29045589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (33.710487577340711992000575345 CZK)\nThe limits being 0.10 % (8.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57111090 BTC (398,657.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,532,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 119.51 % (476,452.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,045.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00554871 BTC (8,502.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.41 CZK over 4268 transactions" + } + ] + }, + { + "id": 5967, + "type": "message", + "date": "2024-10-15T22:00:06", + "date_unixtime": "1729022406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005329 BTC for 82.71 CZK @ 1,552,079 CZK\nFees are 0.29049923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (51.218608823705134861536882123 CZK)\nThe limits being 0.10 % (8.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57116419 BTC (398,740.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.32 % (487,751.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,962.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00560200 BTC (8,694.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.40 CZK over 4269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005329 BTC for 82.71 CZK @ 1,552,079 CZK\nFees are 0.29049923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (51.218608823705134861536882123 CZK)\nThe limits being 0.10 % (8.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57116419 BTC (398,740.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.32 % (487,751.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,962.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00560200 BTC (8,694.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.40 CZK over 4269 transactions" + } + ] + }, + { + "id": 5968, + "type": "message", + "date": "2024-10-16T02:00:06", + "date_unixtime": "1729036806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005329 BTC for 82.71 CZK @ 1,552,079 CZK\nFees are 0.29049923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (85.36434803950855810256147021 CZK)\nThe limits being 0.10 % (8.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57121748 BTC (398,823.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,552,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.30 % (487,750.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,879.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00565529 BTC (8,777.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.40 CZK over 4270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005329 BTC for 82.71 CZK @ 1,552,079 CZK\nFees are 0.29049923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (85.36434803950855810256147021 CZK)\nThe limits being 0.10 % (8.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57121748 BTC (398,823.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,552,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.30 % (487,750.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,879.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00565529 BTC (8,777.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.40 CZK over 4270 transactions" + } + ] + }, + { + "id": 5969, + "type": "message", + "date": "2024-10-16T06:00:06", + "date_unixtime": "1729051206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,861 CZK\nFees are 0.29045081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (68.369905331340308918784255109 CZK)\nThe limits being 0.10 % (8.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57127070 BTC (398,906.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.53 % (488,768.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,796.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00570851 BTC (8,870.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.40 CZK over 4271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,861 CZK\nFees are 0.29045081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.77 % (68.369905331340308918784255109 CZK)\nThe limits being 0.10 % (8.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57127070 BTC (398,906.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.53 % (488,768.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,796.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00570851 BTC (8,870.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.40 CZK over 4271 transactions" + } + ] + }, + { + "id": 5970, + "type": "message", + "date": "2024-10-16T10:00:07", + "date_unixtime": "1729065607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,862 CZK\nFees are 0.29045100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (34.184974720758442782092814195 CZK)\nThe limits being 0.10 % (8.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57132392 BTC (398,989.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.50 % (488,768.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,713.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00576173 BTC (8,952.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.40 CZK over 4272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,862 CZK\nFees are 0.29045100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (34.184974720758442782092814195 CZK)\nThe limits being 0.10 % (8.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57132392 BTC (398,989.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.50 % (488,768.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,713.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00576173 BTC (8,952.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.40 CZK over 4272 transactions" + } + ] + }, + { + "id": 5971, + "type": "message", + "date": "2024-10-16T14:00:05", + "date_unixtime": "1729080005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,045 CZK\nFees are 0.29047876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (52.174486261190402507301676021 CZK)\nThe limits being 0.10 % (9.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57137623 BTC (399,072.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,581,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.37 % (504,298.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,630.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00581404 BTC (9,192.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.39 CZK over 4273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005231 BTC for 82.70 CZK @ 1,581,045 CZK\nFees are 0.29047876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (52.174486261190402507301676021 CZK)\nThe limits being 0.10 % (9.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57137623 BTC (399,072.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,581,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.37 % (504,298.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,630.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00581404 BTC (9,192.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.39 CZK over 4273 transactions" + } + ] + }, + { + "id": 5972, + "type": "message", + "date": "2024-10-16T18:00:05", + "date_unixtime": "1729094405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005242 BTC for 82.70 CZK @ 1,577,554 CZK\nFees are 0.29044692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.50 % (138.82478399847006290649647257 CZK)\nThe limits being 0.10 % (9.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57142865 BTC (399,155.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.84 % (502,303.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,547.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00586646 BTC (9,254.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.39 CZK over 4274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005242 BTC for 82.70 CZK @ 1,577,554 CZK\nFees are 0.29044692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.50 % (138.82478399847006290649647257 CZK)\nThe limits being 0.10 % (9.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57142865 BTC (399,155.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.84 % (502,303.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,547.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00586646 BTC (9,254.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.39 CZK over 4274 transactions" + } + ] + }, + { + "id": 5973, + "type": "message", + "date": "2024-10-16T22:00:06", + "date_unixtime": "1729108806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005233 BTC for 82.70 CZK @ 1,580,431 CZK\nFees are 0.29047687 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.67 % (156.46262060620810156997803692 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57148098 BTC (399,238.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.23 % (503,947.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,464.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00591879 BTC (9,354.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.39 CZK over 4275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005233 BTC for 82.70 CZK @ 1,580,431 CZK\nFees are 0.29047687 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.67 % (156.46262060620810156997803692 CZK)\nThe limits being 0.10 % (9.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57148098 BTC (399,238.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.23 % (503,947.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,464.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00591879 BTC (9,354.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.39 CZK over 4275 transactions" + } + ] + }, + { + "id": 5974, + "type": "message", + "date": "2024-10-17T02:00:06", + "date_unixtime": "1729123206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005243 BTC for 82.70 CZK @ 1,577,260 CZK\nFees are 0.29044805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.55 % (711.34409365028997782983665508 CZK)\nThe limits being 0.10 % (9.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57153341 BTC (399,321.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.75 % (502,134.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,381.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597122 BTC (9,418.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.39 CZK over 4276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005243 BTC for 82.70 CZK @ 1,577,260 CZK\nFees are 0.29044805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.55 % (711.34409365028997782983665508 CZK)\nThe limits being 0.10 % (9.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57153341 BTC (399,321.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.75 % (502,134.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,381.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597122 BTC (9,418.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.39 CZK over 4276 transactions" + } + ] + }, + { + "id": 5975, + "type": "message", + "date": "2024-10-17T06:00:06", + "date_unixtime": "1729137606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005241 BTC for 82.71 CZK @ 1,578,065 CZK\nFees are 0.29048544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 9.68 % (920.0116802465935149510580551 CZK)\nThe limits being 0.10 % (9.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57158582 BTC (399,404.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.84 % (502,594.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,298.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00602363 BTC (9,505.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.38 CZK over 4277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005241 BTC for 82.71 CZK @ 1,578,065 CZK\nFees are 0.29048544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 9.68 % (920.0116802465935149510580551 CZK)\nThe limits being 0.10 % (9.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57158582 BTC (399,404.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.84 % (502,594.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,298.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00602363 BTC (9,505.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.38 CZK over 4277 transactions" + } + ] + }, + { + "id": 5976, + "type": "message", + "date": "2024-10-17T10:00:06", + "date_unixtime": "1729152006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005269 BTC for 82.70 CZK @ 1,569,614 CZK\nFees are 0.29047341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.42 % (707.89574719587914116874862826 CZK)\nThe limits being 0.10 % (9.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57163851 BTC (399,487.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,569,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.60 % (497,763.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,215.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00607632 BTC (9,537.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.38 CZK over 4278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005269 BTC for 82.70 CZK @ 1,569,614 CZK\nFees are 0.29047341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 7.42 % (707.89574719587914116874862826 CZK)\nThe limits being 0.10 % (9.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57163851 BTC (399,487.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,569,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.60 % (497,763.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,215.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00607632 BTC (9,537.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.38 CZK over 4278 transactions" + } + ] + }, + { + "id": 5977, + "type": "message", + "date": "2024-10-17T14:00:06", + "date_unixtime": "1729166406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,861 CZK\nFees are 0.29045081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (68.369905331340308918784255109 CZK)\nThe limits being 0.10 % (9.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57169173 BTC (399,570.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 698,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,553,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.32 % (488,758.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,132.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00612954 BTC (9,524.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.38 CZK over 4279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005322 BTC for 82.70 CZK @ 1,553,861 CZK\nFees are 0.29045081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (68.369905331340308918784255109 CZK)\nThe limits being 0.10 % (9.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57169173 BTC (399,570.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 698,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,553,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.32 % (488,758.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,132.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00612954 BTC (9,524.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.38 CZK over 4279 transactions" + } + ] + }, + { + "id": 5978, + "type": "message", + "date": "2024-10-17T18:00:05", + "date_unixtime": "1729180805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005250 BTC for 82.70 CZK @ 1,575,199 CZK\nFees are 0.29045578 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (69.308734405580468360737419033 CZK)\nThe limits being 0.10 % (9.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57174423 BTC (399,653.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.35 % (500,956.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,049.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00618204 BTC (9,737.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.38 CZK over 4280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005250 BTC for 82.70 CZK @ 1,575,199 CZK\nFees are 0.29045578 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (69.308734405580468360737419033 CZK)\nThe limits being 0.10 % (9.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57174423 BTC (399,653.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.35 % (500,956.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,049.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00618204 BTC (9,737.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.38 CZK over 4280 transactions" + } + ] + }, + { + "id": 5979, + "type": "message", + "date": "2024-10-17T22:00:05", + "date_unixtime": "1729195205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005296 BTC for 82.70 CZK @ 1,561,489 CZK\nFees are 0.29045071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (68.705535397257634532911245684 CZK)\nThe limits being 0.10 % (9.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57179719 BTC (399,736.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.36 % (493,118.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,966.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00623500 BTC (9,735.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.37 CZK over 4281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005296 BTC for 82.70 CZK @ 1,561,489 CZK\nFees are 0.29045071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (68.705535397257634532911245684 CZK)\nThe limits being 0.10 % (9.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57179719 BTC (399,736.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.36 % (493,118.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,966.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00623500 BTC (9,735.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.37 CZK over 4281 transactions" + } + ] + }, + { + "id": 5980, + "type": "message", + "date": "2024-10-18T02:00:06", + "date_unixtime": "1729209606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005258 BTC for 82.71 CZK @ 1,572,960 CZK\nFees are 0.29048497 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (69.210237632720624258609511063 CZK)\nThe limits being 0.10 % (9.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57184977 BTC (399,819.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.98 % (499,676.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,883.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00628758 BTC (9,890.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.37 CZK over 4282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005258 BTC for 82.71 CZK @ 1,572,960 CZK\nFees are 0.29048497 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (69.210237632720624258609511063 CZK)\nThe limits being 0.10 % (9.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57184977 BTC (399,819.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.98 % (499,676.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,883.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00628758 BTC (9,890.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.37 CZK over 4282 transactions" + } + ] + }, + { + "id": 5981, + "type": "message", + "date": "2024-10-18T06:00:07", + "date_unixtime": "1729224007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005242 BTC for 82.71 CZK @ 1,577,795 CZK\nFees are 0.29049121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (52.067233733630119838101935100 CZK)\nThe limits being 0.10 % (10.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57190219 BTC (399,902.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.64 % (502,441.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,800.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00634000 BTC (10,003.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.37 CZK over 4283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005242 BTC for 82.71 CZK @ 1,577,795 CZK\nFees are 0.29049121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (52.067233733630119838101935100 CZK)\nThe limits being 0.10 % (10.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57190219 BTC (399,902.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.64 % (502,441.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,800.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00634000 BTC (10,003.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.37 CZK over 4283 transactions" + } + ] + }, + { + "id": 5982, + "type": "message", + "date": "2024-10-18T10:00:06", + "date_unixtime": "1729238406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005216 BTC for 82.71 CZK @ 1,585,696 CZK\nFees are 0.29049778 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (52.327954645703228882958724223 CZK)\nThe limits being 0.10 % (10.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57195435 BTC (399,985.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.74 % (506,959.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,717.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00639216 BTC (10,136.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.37 CZK over 4284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005216 BTC for 82.71 CZK @ 1,585,696 CZK\nFees are 0.29049778 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (52.327954645703228882958724223 CZK)\nThe limits being 0.10 % (10.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57195435 BTC (399,985.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.74 % (506,959.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,717.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00639216 BTC (10,136.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.37 CZK over 4284 transactions" + } + ] + }, + { + "id": 5983, + "type": "message", + "date": "2024-10-18T14:00:05", + "date_unixtime": "1729252805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005237 BTC for 82.71 CZK @ 1,579,316 CZK\nFees are 0.29049386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (34.744946299941801936491327519 CZK)\nThe limits being 0.10 % (10.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57200672 BTC (400,068.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,316 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.81 % (503,310.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,634.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00644453 BTC (10,177.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.36 CZK over 4285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005237 BTC for 82.71 CZK @ 1,579,316 CZK\nFees are 0.29049386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (34.744946299941801936491327519 CZK)\nThe limits being 0.10 % (10.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57200672 BTC (400,068.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,316 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.81 % (503,310.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,634.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00644453 BTC (10,177.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.36 CZK over 4285 transactions" + } + ] + }, + { + "id": 5984, + "type": "message", + "date": "2024-10-18T18:00:05", + "date_unixtime": "1729267205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005172 BTC for 82.70 CZK @ 1,598,974 CZK\nFees are 0.29045926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (35.177419033383158943697060287 CZK)\nThe limits being 0.10 % (10.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57205844 BTC (400,151.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,598,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.59 % (514,554.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,551.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00649625 BTC (10,387.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.36 CZK over 4286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005172 BTC for 82.70 CZK @ 1,598,974 CZK\nFees are 0.29045926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (35.177419033383158943697060287 CZK)\nThe limits being 0.10 % (10.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57205844 BTC (400,151.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,598,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.59 % (514,554.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,551.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00649625 BTC (10,387.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.36 CZK over 4286 transactions" + } + ] + }, + { + "id": 5985, + "type": "message", + "date": "2024-10-18T22:00:06", + "date_unixtime": "1729281606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005180 BTC for 82.70 CZK @ 1,596,538 CZK\nFees are 0.29046534 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (52.685738770480922947290660296 CZK)\nThe limits being 0.10 % (10.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57211024 BTC (400,234.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,538 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.21 % (513,160.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,468.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00654805 BTC (10,454.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.36 CZK over 4287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005180 BTC for 82.70 CZK @ 1,596,538 CZK\nFees are 0.29046534 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (52.685738770480922947290660296 CZK)\nThe limits being 0.10 % (10.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57211024 BTC (400,234.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,538 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.21 % (513,160.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,468.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00654805 BTC (10,454.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.36 CZK over 4287 transactions" + } + ] + }, + { + "id": 5986, + "type": "message", + "date": "2024-10-19T02:00:06", + "date_unixtime": "1729296006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005203 BTC for 82.71 CZK @ 1,589,601 CZK\nFees are 0.29048751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (52.456842948201379737514892378 CZK)\nThe limits being 0.10 % (10.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57216227 BTC (400,317.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.20 % (509,192.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,385.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00660008 BTC (10,491.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.36 CZK over 4288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005203 BTC for 82.71 CZK @ 1,589,601 CZK\nFees are 0.29048751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (52.456842948201379737514892378 CZK)\nThe limits being 0.10 % (10.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57216227 BTC (400,317.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.20 % (509,192.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,385.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00660008 BTC (10,491.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.36 CZK over 4288 transactions" + } + ] + }, + { + "id": 5987, + "type": "message", + "date": "2024-10-19T06:00:06", + "date_unixtime": "1729310406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005203 BTC for 82.71 CZK @ 1,589,601 CZK\nFees are 0.29048751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (34.971228632134253158343261585 CZK)\nThe limits being 0.10 % (10.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57221430 BTC (400,400.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.17 % (509,191.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,302.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00665211 BTC (10,574.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.36 CZK over 4289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005203 BTC for 82.71 CZK @ 1,589,601 CZK\nFees are 0.29048751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (34.971228632134253158343261585 CZK)\nThe limits being 0.10 % (10.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57221430 BTC (400,400.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.17 % (509,191.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,302.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00665211 BTC (10,574.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.36 CZK over 4289 transactions" + } + ] + }, + { + "id": 5988, + "type": "message", + "date": "2024-10-19T10:00:06", + "date_unixtime": "1729324806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005203 BTC for 82.69 CZK @ 1,589,366 CZK\nFees are 0.29044445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (34.966045748969515785659283416 CZK)\nThe limits being 0.10 % (10.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57226633 BTC (400,483.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.11 % (509,056.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,219.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00670414 BTC (10,655.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.35 CZK over 4290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005203 BTC for 82.69 CZK @ 1,589,366 CZK\nFees are 0.29044445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (34.966045748969515785659283416 CZK)\nThe limits being 0.10 % (10.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57226633 BTC (400,483.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.11 % (509,056.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,219.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00670414 BTC (10,655.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.35 CZK over 4290 transactions" + } + ] + }, + { + "id": 5989, + "type": "message", + "date": "2024-10-19T14:00:05", + "date_unixtime": "1729339205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005220 BTC for 82.70 CZK @ 1,584,196 CZK\nFees are 0.29044560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (34.852309102432673382624416074 CZK)\nThe limits being 0.10 % (10.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57231853 BTC (400,566.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.35 % (506,097.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,136.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00675634 BTC (10,703.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.35 CZK over 4291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005220 BTC for 82.70 CZK @ 1,584,196 CZK\nFees are 0.29044560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (34.852309102432673382624416074 CZK)\nThe limits being 0.10 % (10.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57231853 BTC (400,566.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.35 % (506,097.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,136.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00675634 BTC (10,703.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.35 CZK over 4291 transactions" + } + ] + }, + { + "id": 5990, + "type": "message", + "date": "2024-10-19T18:00:07", + "date_unixtime": "1729353607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005211 BTC for 82.71 CZK @ 1,587,146 CZK\nFees are 0.29048481 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.917216403497373470343722132 CZK)\nThe limits being 0.10 % (10.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57237064 BTC (400,649.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 699,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,587,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.74 % (507,786.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,053.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00680845 BTC (10,806.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.35 CZK over 4292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005211 BTC for 82.71 CZK @ 1,587,146 CZK\nFees are 0.29048481 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.917216403497373470343722132 CZK)\nThe limits being 0.10 % (10.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57237064 BTC (400,649.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 699,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,587,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.74 % (507,786.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,053.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00680845 BTC (10,806.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.35 CZK over 4292 transactions" + } + ] + }, + { + "id": 5991, + "type": "message", + "date": "2024-10-19T22:00:06", + "date_unixtime": "1729368006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005219 BTC for 82.70 CZK @ 1,584,628 CZK\nFees are 0.29046916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.861814725677984880089642186 CZK)\nThe limits being 0.10 % (10.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57242283 BTC (400,732.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,628 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.35 % (506,344.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,970.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00686064 BTC (10,871.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.35 CZK over 4293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005219 BTC for 82.70 CZK @ 1,584,628 CZK\nFees are 0.29046916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.861814725677984880089642186 CZK)\nThe limits being 0.10 % (10.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57242283 BTC (400,732.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,628 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.35 % (506,344.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,970.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00686064 BTC (10,871.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.35 CZK over 4293 transactions" + } + ] + }, + { + "id": 5992, + "type": "message", + "date": "2024-10-20T02:00:05", + "date_unixtime": "1729382405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005212 BTC for 82.71 CZK @ 1,586,873 CZK\nFees are 0.29049046 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.911195441052249589980731296 CZK)\nThe limits being 0.10 % (10.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57247495 BTC (400,815.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.65 % (507,629.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,887.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00691276 BTC (10,969.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.34 CZK over 4294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005212 BTC for 82.71 CZK @ 1,586,873 CZK\nFees are 0.29049046 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.911195441052249589980731296 CZK)\nThe limits being 0.10 % (10.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57247495 BTC (400,815.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.65 % (507,629.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,887.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00691276 BTC (10,969.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.34 CZK over 4294 transactions" + } + ] + }, + { + "id": 5993, + "type": "message", + "date": "2024-10-20T06:00:05", + "date_unixtime": "1729396805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005216 BTC for 82.70 CZK @ 1,585,444 CZK\nFees are 0.29045169 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.879767341528576363097257758 CZK)\nThe limits being 0.10 % (11.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57252711 BTC (400,898.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.42 % (506,810.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,804.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00696492 BTC (11,042.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.34 CZK over 4295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005216 BTC for 82.70 CZK @ 1,585,444 CZK\nFees are 0.29045169 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (34.879767341528576363097257758 CZK)\nThe limits being 0.10 % (11.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57252711 BTC (400,898.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.42 % (506,810.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,804.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00696492 BTC (11,042.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.34 CZK over 4295 transactions" + } + ] + }, + { + "id": 5994, + "type": "message", + "date": "2024-10-20T10:00:05", + "date_unixtime": "1729411205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005205 BTC for 82.70 CZK @ 1,588,948 CZK\nFees are 0.29047968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (34.956848893617774867694098513 CZK)\nThe limits being 0.10 % (11.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57257916 BTC (400,981.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,588,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.89 % (508,816.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,721.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00701697 BTC (11,149.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.34 CZK over 4296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005205 BTC for 82.70 CZK @ 1,588,948 CZK\nFees are 0.29047968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (34.956848893617774867694098513 CZK)\nThe limits being 0.10 % (11.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57257916 BTC (400,981.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,588,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.89 % (508,816.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,721.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00701697 BTC (11,149.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.34 CZK over 4296 transactions" + } + ] + }, + { + "id": 5995, + "type": "message", + "date": "2024-10-20T14:00:06", + "date_unixtime": "1729425606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005200 BTC for 82.70 CZK @ 1,590,351 CZK\nFees are 0.29045697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (34.987725624928136138898470737 CZK)\nThe limits being 0.10 % (11.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57263116 BTC (401,064.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,351 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.07 % (509,619.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,638.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00706897 BTC (11,242.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.34 CZK over 4297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005200 BTC for 82.70 CZK @ 1,590,351 CZK\nFees are 0.29045697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (34.987725624928136138898470737 CZK)\nThe limits being 0.10 % (11.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57263116 BTC (401,064.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,351 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.07 % (509,619.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,638.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00706897 BTC (11,242.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.34 CZK over 4297 transactions" + } + ] + }, + { + "id": 5996, + "type": "message", + "date": "2024-10-20T18:00:06", + "date_unixtime": "1729440006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005195 BTC for 82.70 CZK @ 1,591,956 CZK\nFees are 0.29047053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (35.023035376183358246138515198 CZK)\nThe limits being 0.10 % (11.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57268311 BTC (401,147.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.27 % (510,538.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,555.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00712092 BTC (11,336.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.33 CZK over 4298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005195 BTC for 82.70 CZK @ 1,591,956 CZK\nFees are 0.29047053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (35.023035376183358246138515198 CZK)\nThe limits being 0.10 % (11.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57268311 BTC (401,147.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.27 % (510,538.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,555.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00712092 BTC (11,336.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.33 CZK over 4298 transactions" + } + ] + }, + { + "id": 5997, + "type": "message", + "date": "2024-10-20T22:00:05", + "date_unixtime": "1729454405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005197 BTC for 82.70 CZK @ 1,591,240 CZK\nFees are 0.29045170 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (35.007288242929619335980025272 CZK)\nThe limits being 0.10 % (11.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57273508 BTC (401,230.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,591,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.14 % (510,128.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,472.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00717289 BTC (11,413.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.33 CZK over 4299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005197 BTC for 82.70 CZK @ 1,591,240 CZK\nFees are 0.29045170 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (35.007288242929619335980025272 CZK)\nThe limits being 0.10 % (11.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57273508 BTC (401,230.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,591,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.14 % (510,128.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,472.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00717289 BTC (11,413.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.33 CZK over 4299 transactions" + } + ] + }, + { + "id": 5998, + "type": "message", + "date": "2024-10-21T02:00:05", + "date_unixtime": "1729468805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005172 BTC for 82.70 CZK @ 1,598,974 CZK\nFees are 0.29045926 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (35.177419033383158943697060287 CZK)\nThe limits being 0.10 % (11.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57278680 BTC (401,313.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,598,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.22 % (514,557.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,389.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00722461 BTC (11,551.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.33 CZK over 4300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005172 BTC for 82.70 CZK @ 1,598,974 CZK\nFees are 0.29045926 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (35.177419033383158943697060287 CZK)\nThe limits being 0.10 % (11.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57278680 BTC (401,313.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,598,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.22 % (514,557.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,389.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00722461 BTC (11,551.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.33 CZK over 4300 transactions" + } + ] + }, + { + "id": 5999, + "type": "message", + "date": "2024-10-21T06:00:06", + "date_unixtime": "1729483206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,987 CZK\nFees are 0.29046328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (35.089707059044549477023282543 CZK)\nThe limits being 0.10 % (11.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57283865 BTC (401,396.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,594,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.62 % (512,273.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,306.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00727646 BTC (11,605.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.33 CZK over 4301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005185 BTC for 82.70 CZK @ 1,594,987 CZK\nFees are 0.29046328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (35.089707059044549477023282543 CZK)\nThe limits being 0.10 % (11.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57283865 BTC (401,396.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,594,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.62 % (512,273.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,306.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00727646 BTC (11,605.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.33 CZK over 4301 transactions" + } + ] + }, + { + "id": 6000, + "type": "message", + "date": "2024-10-21T10:00:05", + "date_unixtime": "1729497605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005182 BTC for 82.71 CZK @ 1,596,030 CZK\nFees are 0.29048516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (17.556333056417552076031843007 CZK)\nThe limits being 0.10 % (11.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57289047 BTC (401,479.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,596,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.75 % (512,870.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,223.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00732828 BTC (11,696.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.32 CZK over 4302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005182 BTC for 82.71 CZK @ 1,596,030 CZK\nFees are 0.29048516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.15 % (17.556333056417552076031843007 CZK)\nThe limits being 0.10 % (11.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57289047 BTC (401,479.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,596,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.75 % (512,870.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,223.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00732828 BTC (11,696.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.32 CZK over 4302 transactions" + } + ] + }, + { + "id": 6001, + "type": "message", + "date": "2024-10-21T14:00:07", + "date_unixtime": "1729512007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,590,976 CZK\nFees are 0.29045927 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (35.001465773218130540798624591 CZK)\nThe limits being 0.10 % (11.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57294245 BTC (401,562.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.00 % (509,974.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,140.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00738026 BTC (11,741.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.32 CZK over 4303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005198 BTC for 82.70 CZK @ 1,590,976 CZK\nFees are 0.29045927 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (35.001465773218130540798624591 CZK)\nThe limits being 0.10 % (11.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57294245 BTC (401,562.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.00 % (509,974.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,140.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00738026 BTC (11,741.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.32 CZK over 4303 transactions" + } + ] + }, + { + "id": 6002, + "type": "message", + "date": "2024-10-21T18:00:05", + "date_unixtime": "1729526405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005270 BTC for 82.70 CZK @ 1,569,231 CZK\nFees are 0.29045765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (34.523074928830686525056041992 CZK)\nThe limits being 0.10 % (11.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57299515 BTC (401,645.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 700,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,569,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.87 % (497,515.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,058.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00743296 BTC (11,664.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.32 CZK over 4304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005270 BTC for 82.70 CZK @ 1,569,231 CZK\nFees are 0.29045765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (34.523074928830686525056041992 CZK)\nThe limits being 0.10 % (11.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57299515 BTC (401,645.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 700,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,569,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.87 % (497,515.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,058.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00743296 BTC (11,664.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.32 CZK over 4304 transactions" + } + ] + }, + { + "id": 6003, + "type": "message", + "date": "2024-10-21T22:00:06", + "date_unixtime": "1729540806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005219 BTC for 82.70 CZK @ 1,584,591 CZK\nFees are 0.29046236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (52.291498050557480701048915499 CZK)\nThe limits being 0.10 % (11.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57304734 BTC (401,728.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,591 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.03 % (506,316.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,975.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00748515 BTC (11,860.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.32 CZK over 4305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005219 BTC for 82.70 CZK @ 1,584,591 CZK\nFees are 0.29046236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (52.291498050557480701048915499 CZK)\nThe limits being 0.10 % (11.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57304734 BTC (401,728.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,591 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.03 % (506,316.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,975.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00748515 BTC (11,860.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.32 CZK over 4305 transactions" + } + ] + }, + { + "id": 6004, + "type": "message", + "date": "2024-10-22T02:00:06", + "date_unixtime": "1729555206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005241 BTC for 82.71 CZK @ 1,578,076 CZK\nFees are 0.29048747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (69.435328998761917718437671922 CZK)\nThe limits being 0.10 % (11.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57309975 BTC (401,811.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,120 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.08 % (502,583.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,892.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00753756 BTC (11,894.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.31 CZK over 4306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005241 BTC for 82.71 CZK @ 1,578,076 CZK\nFees are 0.29048747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (69.435328998761917718437671922 CZK)\nThe limits being 0.10 % (11.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57309975 BTC (401,811.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,120 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.08 % (502,583.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,892.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00753756 BTC (11,894.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.31 CZK over 4306 transactions" + } + ] + }, + { + "id": 6005, + "type": "message", + "date": "2024-10-22T06:00:05", + "date_unixtime": "1729569605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005243 BTC for 82.70 CZK @ 1,577,393 CZK\nFees are 0.29047260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (86.75661293806599655354647062 CZK)\nThe limits being 0.10 % (11.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57315218 BTC (401,894.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.96 % (502,191.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,809.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00758999 BTC (11,972.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.31 CZK over 4307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005243 BTC for 82.70 CZK @ 1,577,393 CZK\nFees are 0.29047260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (86.75661293806599655354647062 CZK)\nThe limits being 0.10 % (11.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57315218 BTC (401,894.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.96 % (502,191.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,809.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00758999 BTC (11,972.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.31 CZK over 4307 transactions" + } + ] + }, + { + "id": 6006, + "type": "message", + "date": "2024-10-22T10:00:06", + "date_unixtime": "1729584006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005247 BTC for 82.70 CZK @ 1,576,165 CZK\nFees are 0.29046790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (86.68907008906980703805026223 CZK)\nThe limits being 0.10 % (12.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57320465 BTC (401,977.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.76 % (501,487.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,726.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00764246 BTC (12,045.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.31 CZK over 4308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005247 BTC for 82.70 CZK @ 1,576,165 CZK\nFees are 0.29046790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (86.68907008906980703805026223 CZK)\nThe limits being 0.10 % (12.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57320465 BTC (401,977.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.76 % (501,487.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,726.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00764246 BTC (12,045.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.31 CZK over 4308 transactions" + } + ] + }, + { + "id": 6007, + "type": "message", + "date": "2024-10-22T14:00:06", + "date_unixtime": "1729598406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005249 BTC for 82.70 CZK @ 1,575,504 CZK\nFees are 0.29045682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (86.65273479856129380659784486 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57325714 BTC (402,060.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.64 % (501,108.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,643.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00769495 BTC (12,123.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.31 CZK over 4309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005249 BTC for 82.70 CZK @ 1,575,504 CZK\nFees are 0.29045682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (86.65273479856129380659784486 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57325714 BTC (402,060.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.64 % (501,108.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,643.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00769495 BTC (12,123.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.31 CZK over 4309 transactions" + } + ] + }, + { + "id": 6008, + "type": "message", + "date": "2024-10-22T18:00:05", + "date_unixtime": "1729612805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,575,008 CZK\nFees are 0.29047597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (103.95053036064879378089844941 CZK)\nThe limits being 0.10 % (12.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57330965 BTC (402,143.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.54 % (500,823.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,560.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00774746 BTC (12,202.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.30 CZK over 4310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.70 CZK @ 1,575,008 CZK\nFees are 0.29047597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (103.95053036064879378089844941 CZK)\nThe limits being 0.10 % (12.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57330965 BTC (402,143.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.54 % (500,823.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,560.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00774746 BTC (12,202.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.30 CZK over 4310 transactions" + } + ] + }, + { + "id": 6009, + "type": "message", + "date": "2024-10-22T22:00:06", + "date_unixtime": "1729627206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005238 BTC for 82.71 CZK @ 1,578,974 CZK\nFees are 0.29048644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (86.84356402172389001990551208 CZK)\nThe limits being 0.10 % (12.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57336203 BTC (402,226.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.08 % (503,097.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,477.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00779984 BTC (12,315.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.30 CZK over 4311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005238 BTC for 82.71 CZK @ 1,578,974 CZK\nFees are 0.29048644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (86.84356402172389001990551208 CZK)\nThe limits being 0.10 % (12.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57336203 BTC (402,226.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.08 % (503,097.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,477.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00779984 BTC (12,315.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.30 CZK over 4311 transactions" + } + ] + }, + { + "id": 6010, + "type": "message", + "date": "2024-10-23T02:00:06", + "date_unixtime": "1729641606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005234 BTC for 82.70 CZK @ 1,580,003 CZK\nFees are 0.29045387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (86.90018974475845812106995025 CZK)\nThe limits being 0.10 % (12.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57341437 BTC (402,309.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,580,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.20 % (503,687.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,394.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00785218 BTC (12,406.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.30 CZK over 4312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005234 BTC for 82.70 CZK @ 1,580,003 CZK\nFees are 0.29045387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (86.90018974475845812106995025 CZK)\nThe limits being 0.10 % (12.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57341437 BTC (402,309.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,580,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.20 % (503,687.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,394.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00785218 BTC (12,406.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.30 CZK over 4312 transactions" + } + ] + }, + { + "id": 6011, + "type": "message", + "date": "2024-10-23T06:00:11", + "date_unixtime": "1729656011", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005263 BTC for 82.71 CZK @ 1,571,498 CZK\nFees are 0.29049102 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (86.43240725672193683498596637 CZK)\nThe limits being 0.10 % (12.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57346700 BTC (402,392.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.96 % (498,809.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,311.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00790481 BTC (12,422.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.30 CZK over 4313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005263 BTC for 82.71 CZK @ 1,571,498 CZK\nFees are 0.29049102 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (86.43240725672193683498596637 CZK)\nThe limits being 0.10 % (12.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57346700 BTC (402,392.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.96 % (498,809.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,311.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00790481 BTC (12,422.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.30 CZK over 4313 transactions" + } + ] + }, + { + "id": 6012, + "type": "message", + "date": "2024-10-23T10:00:07", + "date_unixtime": "1729670407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005264 BTC for 82.71 CZK @ 1,571,226 CZK\nFees are 0.29049580 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (86.41740999018632355146046588 CZK)\nThe limits being 0.10 % (12.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57351964 BTC (402,475.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,226 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.90 % (498,653.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,228.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00795745 BTC (12,502.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.30 CZK over 4314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005264 BTC for 82.71 CZK @ 1,571,226 CZK\nFees are 0.29049580 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (86.41740999018632355146046588 CZK)\nThe limits being 0.10 % (12.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57351964 BTC (402,475.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,226 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.90 % (498,653.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,228.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00795745 BTC (12,502.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.30 CZK over 4314 transactions" + } + ] + }, + { + "id": 6013, + "type": "message", + "date": "2024-10-23T14:00:06", + "date_unixtime": "1729684806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005297 BTC for 82.70 CZK @ 1,561,217 CZK\nFees are 0.29045483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (85.86692197753398314507868863 CZK)\nThe limits being 0.10 % (12.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57357261 BTC (402,558.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,561,217 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.44 % (492,912.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,145.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00801042 BTC (12,506.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.29 CZK over 4315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005297 BTC for 82.70 CZK @ 1,561,217 CZK\nFees are 0.29045483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (85.86692197753398314507868863 CZK)\nThe limits being 0.10 % (12.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57357261 BTC (402,558.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,561,217 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.44 % (492,912.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,145.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00801042 BTC (12,506.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.29 CZK over 4315 transactions" + } + ] + }, + { + "id": 6014, + "type": "message", + "date": "2024-10-23T18:00:07", + "date_unixtime": "1729699207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005312 BTC for 82.70 CZK @ 1,556,889 CZK\nFees are 0.29046990 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (68.503116369063698741152952618 CZK)\nThe limits being 0.10 % (12.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57362573 BTC (402,641.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 701,924 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,556,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.80 % (490,430.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,062.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00806354 BTC (12,554.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.29 CZK over 4316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005312 BTC for 82.70 CZK @ 1,556,889 CZK\nFees are 0.29046990 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (68.503116369063698741152952618 CZK)\nThe limits being 0.10 % (12.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57362573 BTC (402,641.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 701,924 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,556,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.80 % (490,430.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,062.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00806354 BTC (12,554.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.29 CZK over 4316 transactions" + } + ] + }, + { + "id": 6015, + "type": "message", + "date": "2024-10-23T22:00:06", + "date_unixtime": "1729713606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005303 BTC for 82.70 CZK @ 1,559,404 CZK\nFees are 0.29044624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (102.92068109119496057594384203 CZK)\nThe limits being 0.10 % (12.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57367876 BTC (402,724.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,004 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,559,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.14 % (491,872.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,979.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00811657 BTC (12,657.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.29 CZK over 4317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005303 BTC for 82.70 CZK @ 1,559,404 CZK\nFees are 0.29044624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.81 % (102.92068109119496057594384203 CZK)\nThe limits being 0.10 % (12.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57367876 BTC (402,724.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,004 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,559,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.14 % (491,872.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,979.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00811657 BTC (12,657.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.29 CZK over 4317 transactions" + } + ] + }, + { + "id": 6016, + "type": "message", + "date": "2024-10-24T02:00:07", + "date_unixtime": "1729728007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005292 BTC for 82.71 CZK @ 1,562,863 CZK\nFees are 0.29048661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (85.95745696844867604352265182 CZK)\nThe limits being 0.10 % (12.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57373168 BTC (402,807.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,562,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.60 % (493,856.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,896.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00816949 BTC (12,767.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.29 CZK over 4318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005292 BTC for 82.71 CZK @ 1,562,863 CZK\nFees are 0.29048661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.67 % (85.95745696844867604352265182 CZK)\nThe limits being 0.10 % (12.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57373168 BTC (402,807.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,562,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.60 % (493,856.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,896.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00816949 BTC (12,767.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.29 CZK over 4318 transactions" + } + ] + }, + { + "id": 6017, + "type": "message", + "date": "2024-10-24T06:00:07", + "date_unixtime": "1729742407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005237 BTC for 82.70 CZK @ 1,579,105 CZK\nFees are 0.29045514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (34.740314788635041818024921179 CZK)\nThe limits being 0.10 % (12.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57378405 BTC (402,890.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,579,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.89 % (503,174.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,813.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00822186 BTC (12,983.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.28 CZK over 4319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005237 BTC for 82.70 CZK @ 1,579,105 CZK\nFees are 0.29045514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (34.740314788635041818024921179 CZK)\nThe limits being 0.10 % (12.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57378405 BTC (402,890.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,579,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.89 % (503,174.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,813.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00822186 BTC (12,983.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.28 CZK over 4319 transactions" + } + ] + }, + { + "id": 6018, + "type": "message", + "date": "2024-10-24T10:00:07", + "date_unixtime": "1729756807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005259 BTC for 82.70 CZK @ 1,572,531 CZK\nFees are 0.29046096 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (34.595679357654181083075559935 CZK)\nThe limits being 0.10 % (13.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57383664 BTC (402,973.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,572,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.93 % (499,402.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,730.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00827445 BTC (13,011.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.28 CZK over 4320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005259 BTC for 82.70 CZK @ 1,572,531 CZK\nFees are 0.29046096 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (34.595679357654181083075559935 CZK)\nThe limits being 0.10 % (13.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57383664 BTC (402,973.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,572,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.93 % (499,402.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,730.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00827445 BTC (13,011.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.28 CZK over 4320 transactions" + } + ] + }, + { + "id": 6019, + "type": "message", + "date": "2024-10-24T14:00:11", + "date_unixtime": "1729771211", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,253 CZK\nFees are 0.29046470 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.082352300916258743253574325 CZK)\nThe limits being 0.10 % (13.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57388904 BTC (403,056.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.72 % (502,685.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,647.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00832685 BTC (13,141.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.28 CZK over 4321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005240 BTC for 82.70 CZK @ 1,578,253 CZK\nFees are 0.29046470 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.082352300916258743253574325 CZK)\nThe limits being 0.10 % (13.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57388904 BTC (403,056.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.72 % (502,685.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,647.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00832685 BTC (13,141.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.28 CZK over 4321 transactions" + } + ] + }, + { + "id": 6020, + "type": "message", + "date": "2024-10-24T18:00:06", + "date_unixtime": "1729785606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005221 BTC for 82.70 CZK @ 1,583,926 CZK\nFees are 0.29045179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (191.65506997792728323879255396 CZK)\nThe limits being 0.10 % (13.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57394125 BTC (403,139.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,583,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.50 % (505,941.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,564.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00837906 BTC (13,271.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.28 CZK over 4322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005221 BTC for 82.70 CZK @ 1,583,926 CZK\nFees are 0.29045179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (191.65506997792728323879255396 CZK)\nThe limits being 0.10 % (13.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57394125 BTC (403,139.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,583,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.50 % (505,941.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,564.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00837906 BTC (13,271.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.28 CZK over 4322 transactions" + } + ] + }, + { + "id": 6021, + "type": "message", + "date": "2024-10-24T22:00:06", + "date_unixtime": "1729800006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005210 BTC for 82.71 CZK @ 1,587,451 CZK\nFees are 0.29048483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.83 % (244.46744746133255295525162891 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57399335 BTC (403,222.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,587,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.98 % (507,963.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,481.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00843116 BTC (13,384.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.27 CZK over 4323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005210 BTC for 82.71 CZK @ 1,587,451 CZK\nFees are 0.29048483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.83 % (244.46744746133255295525162891 CZK)\nThe limits being 0.10 % (13.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57399335 BTC (403,222.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,587,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.98 % (507,963.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,481.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00843116 BTC (13,384.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.27 CZK over 4323 transactions" + } + ] + }, + { + "id": 6022, + "type": "message", + "date": "2024-10-25T02:00:07", + "date_unixtime": "1729814407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005205 BTC for 82.71 CZK @ 1,589,012 CZK\nFees are 0.29049141 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.33 % (314.62434362268084758101687324 CZK)\nThe limits being 0.10 % (13.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57404540 BTC (403,305.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.17 % (508,859.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,398.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00848321 BTC (13,479.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.27 CZK over 4324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005205 BTC for 82.71 CZK @ 1,589,012 CZK\nFees are 0.29049141 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.33 % (314.62434362268084758101687324 CZK)\nThe limits being 0.10 % (13.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57404540 BTC (403,305.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.17 % (508,859.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,398.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00848321 BTC (13,479.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.27 CZK over 4324 transactions" + } + ] + }, + { + "id": 6023, + "type": "message", + "date": "2024-10-25T06:00:07", + "date_unixtime": "1729828807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005213 BTC for 82.70 CZK @ 1,586,491 CZK\nFees are 0.29047626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.32 % (314.12513304527573787160247022 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57409753 BTC (403,388.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,586,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.79 % (507,411.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,315.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00853534 BTC (13,541.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.27 CZK over 4325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005213 BTC for 82.70 CZK @ 1,586,491 CZK\nFees are 0.29047626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.32 % (314.12513304527573787160247022 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57409753 BTC (403,388.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,586,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.79 % (507,411.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,315.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00853534 BTC (13,541.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.27 CZK over 4325 transactions" + } + ] + }, + { + "id": 6024, + "type": "message", + "date": "2024-10-25T10:00:08", + "date_unixtime": "1729843208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005246 BTC for 82.71 CZK @ 1,576,635 CZK\nFees are 0.29049917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.18 % (294.83075980427634047133165830 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57414999 BTC (403,471.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,576,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.36 % (501,753.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,232.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00858780 BTC (13,539.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.27 CZK over 4326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005246 BTC for 82.71 CZK @ 1,576,635 CZK\nFees are 0.29049917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.18 % (294.83075980427634047133165830 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57414999 BTC (403,471.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,576,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.36 % (501,753.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,232.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00858780 BTC (13,539.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.27 CZK over 4326 transactions" + } + ] + }, + { + "id": 6025, + "type": "message", + "date": "2024-10-25T14:00:05", + "date_unixtime": "1729857605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,093 CZK\nFees are 0.29046558 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (262.36526615699119607043488531 CZK)\nThe limits being 0.10 % (13.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57420200 BTC (403,554.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.25 % (509,479.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,149.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00863981 BTC (13,738.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.26 CZK over 4327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005201 BTC for 82.70 CZK @ 1,590,093 CZK\nFees are 0.29046558 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (262.36526615699119607043488531 CZK)\nThe limits being 0.10 % (13.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57420200 BTC (403,554.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.25 % (509,479.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,149.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00863981 BTC (13,738.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.26 CZK over 4327 transactions" + } + ] + }, + { + "id": 6026, + "type": "message", + "date": "2024-10-25T18:00:05", + "date_unixtime": "1729872005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005218 BTC for 82.71 CZK @ 1,585,083 CZK\nFees are 0.29049691 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (52.307741414821982776648155371 CZK)\nThe limits being 0.10 % (13.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57425418 BTC (403,637.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,585,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.51 % (506,603.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,066.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00869199 BTC (13,777.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.26 CZK over 4328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005218 BTC for 82.71 CZK @ 1,585,083 CZK\nFees are 0.29049691 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (52.307741414821982776648155371 CZK)\nThe limits being 0.10 % (13.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57425418 BTC (403,637.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,585,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.51 % (506,603.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,066.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00869199 BTC (13,777.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.26 CZK over 4328 transactions" + } + ] + }, + { + "id": 6027, + "type": "message", + "date": "2024-10-25T22:00:06", + "date_unixtime": "1729886406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005272 BTC for 82.70 CZK @ 1,568,752 CZK\nFees are 0.29047934 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (51.768832174831186446829117815 CZK)\nThe limits being 0.10 % (13.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57430690 BTC (403,720.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 702,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,568,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.16 % (497,224.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,983.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00874471 BTC (13,718.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.26 CZK over 4329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005272 BTC for 82.70 CZK @ 1,568,752 CZK\nFees are 0.29047934 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (51.768832174831186446829117815 CZK)\nThe limits being 0.10 % (13.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57430690 BTC (403,720.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 702,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,568,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.16 % (497,224.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,983.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00874471 BTC (13,718.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.26 CZK over 4329 transactions" + } + ] + }, + { + "id": 6028, + "type": "message", + "date": "2024-10-26T02:00:07", + "date_unixtime": "1729900807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005283 BTC for 82.71 CZK @ 1,565,581 CZK\nFees are 0.29049688 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (51.664160055931440412842388382 CZK)\nThe limits being 0.10 % (13.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57435973 BTC (403,803.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,565,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.68 % (495,403.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,900.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00879754 BTC (13,773.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.26 CZK over 4330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005283 BTC for 82.71 CZK @ 1,565,581 CZK\nFees are 0.29049688 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (51.664160055931440412842388382 CZK)\nThe limits being 0.10 % (13.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57435973 BTC (403,803.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,565,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.68 % (495,403.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,900.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00879754 BTC (13,773.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.26 CZK over 4330 transactions" + } + ] + }, + { + "id": 6029, + "type": "message", + "date": "2024-10-26T06:00:13", + "date_unixtime": "1729915213", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,289 CZK\nFees are 0.29045229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (34.568353451121719999382741821 CZK)\nThe limits being 0.10 % (13.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57441236 BTC (403,886.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.47 % (498,681.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,817.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00885017 BTC (13,906.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.25 CZK over 4331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005263 BTC for 82.70 CZK @ 1,571,289 CZK\nFees are 0.29045229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (34.568353451121719999382741821 CZK)\nThe limits being 0.10 % (13.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57441236 BTC (403,886.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.47 % (498,681.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,817.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00885017 BTC (13,906.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.25 CZK over 4331 transactions" + } + ] + }, + { + "id": 6030, + "type": "message", + "date": "2024-10-26T10:00:07", + "date_unixtime": "1729929607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005254 BTC for 82.70 CZK @ 1,574,002 CZK\nFees are 0.29045619 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.314016880582976711316255307 CZK)\nThe limits being 0.10 % (14.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57446490 BTC (403,969.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,574,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.83 % (500,239.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,734.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00890271 BTC (14,012.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.25 CZK over 4332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005254 BTC for 82.70 CZK @ 1,574,002 CZK\nFees are 0.29045619 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.314016880582976711316255307 CZK)\nThe limits being 0.10 % (14.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57446490 BTC (403,969.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,574,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.83 % (500,239.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,734.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00890271 BTC (14,012.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.25 CZK over 4332 transactions" + } + ] + }, + { + "id": 6031, + "type": "message", + "date": "2024-10-26T14:00:05", + "date_unixtime": "1729944005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,128 CZK\nFees are 0.29049816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.326411682516258795985143221 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57451741 BTC (404,052.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.97 % (500,886.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,651.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00895522 BTC (14,105.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.25 CZK over 4333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005251 BTC for 82.71 CZK @ 1,575,128 CZK\nFees are 0.29049816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.326411682516258795985143221 CZK)\nThe limits being 0.10 % (14.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57451741 BTC (404,052.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.97 % (500,886.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,651.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00895522 BTC (14,105.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.25 CZK over 4333 transactions" + } + ] + }, + { + "id": 6032, + "type": "message", + "date": "2024-10-26T18:00:05", + "date_unixtime": "1729958405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005264 BTC for 82.70 CZK @ 1,571,036 CZK\nFees are 0.29046077 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.281397819448041278019333548 CZK)\nThe limits being 0.10 % (14.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57457005 BTC (404,135.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,571,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.36 % (498,534.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,568.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00900786 BTC (14,151.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.25 CZK over 4334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005264 BTC for 82.70 CZK @ 1,571,036 CZK\nFees are 0.29046077 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.281397819448041278019333548 CZK)\nThe limits being 0.10 % (14.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57457005 BTC (404,135.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,571,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.36 % (498,534.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,568.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00900786 BTC (14,151.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.25 CZK over 4334 transactions" + } + ] + }, + { + "id": 6033, + "type": "message", + "date": "2024-10-26T22:00:07", + "date_unixtime": "1729972807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005248 BTC for 82.70 CZK @ 1,575,837 CZK\nFees are 0.29046283 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.334208056861958754116689149 CZK)\nThe limits being 0.10 % (14.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57462253 BTC (404,218.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.02 % (501,293.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,485.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00906034 BTC (14,277.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.25 CZK over 4335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005248 BTC for 82.70 CZK @ 1,575,837 CZK\nFees are 0.29046283 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.334208056861958754116689149 CZK)\nThe limits being 0.10 % (14.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57462253 BTC (404,218.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.02 % (501,293.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,485.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00906034 BTC (14,277.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.25 CZK over 4335 transactions" + } + ] + }, + { + "id": 6034, + "type": "message", + "date": "2024-10-27T02:00:07", + "date_unixtime": "1729987207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005243 BTC for 82.70 CZK @ 1,577,321 CZK\nFees are 0.29045931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.350528614468851676009800145 CZK)\nThe limits being 0.10 % (14.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57467496 BTC (404,301.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.20 % (502,145.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,402.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00911277 BTC (14,373.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.24 CZK over 4336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005243 BTC for 82.70 CZK @ 1,577,321 CZK\nFees are 0.29045931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.350528614468851676009800145 CZK)\nThe limits being 0.10 % (14.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57467496 BTC (404,301.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.20 % (502,145.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,402.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00911277 BTC (14,373.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.24 CZK over 4336 transactions" + } + ] + }, + { + "id": 6035, + "type": "message", + "date": "2024-10-27T05:00:06", + "date_unixtime": "1730001606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005242 BTC for 82.70 CZK @ 1,577,734 CZK\nFees are 0.29047996 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.355071905332480918083921080 CZK)\nThe limits being 0.10 % (14.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57472738 BTC (404,384.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,577,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.23 % (502,382.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,319.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00916519 BTC (14,460.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.24 CZK over 4337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005242 BTC for 82.70 CZK @ 1,577,734 CZK\nFees are 0.29047996 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.355071905332480918083921080 CZK)\nThe limits being 0.10 % (14.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57472738 BTC (404,384.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,577,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.23 % (502,382.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,319.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00916519 BTC (14,460.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.24 CZK over 4337 transactions" + } + ] + }, + { + "id": 6036, + "type": "message", + "date": "2024-10-27T09:00:05", + "date_unixtime": "1730016005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005239 BTC for 82.71 CZK @ 1,578,729 CZK\nFees are 0.29049689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.366022116902732020292024298 CZK)\nThe limits being 0.10 % (14.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57477977 BTC (404,467.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,578,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.35 % (502,954.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,236.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00921758 BTC (14,552.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.24 CZK over 4338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005239 BTC for 82.71 CZK @ 1,578,729 CZK\nFees are 0.29049689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.366022116902732020292024298 CZK)\nThe limits being 0.10 % (14.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57477977 BTC (404,467.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,578,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.35 % (502,954.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,236.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00921758 BTC (14,552.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.24 CZK over 4338 transactions" + } + ] + }, + { + "id": 6037, + "type": "message", + "date": "2024-10-27T13:00:06", + "date_unixtime": "1730030406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005249 BTC for 82.71 CZK @ 1,575,731 CZK\nFees are 0.29049859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.333039151690743665982169665 CZK)\nThe limits being 0.10 % (14.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57483226 BTC (404,550.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,575,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.90 % (501,230.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,153.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00927007 BTC (14,607.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.24 CZK over 4339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005249 BTC for 82.71 CZK @ 1,575,731 CZK\nFees are 0.29049859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.333039151690743665982169665 CZK)\nThe limits being 0.10 % (14.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57483226 BTC (404,550.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,575,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.90 % (501,230.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,153.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00927007 BTC (14,607.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.24 CZK over 4339 transactions" + } + ] + }, + { + "id": 6038, + "type": "message", + "date": "2024-10-27T17:00:07", + "date_unixtime": "1730044807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005202 BTC for 82.71 CZK @ 1,589,873 CZK\nFees are 0.29048131 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.488602741423855414162695081 CZK)\nThe limits being 0.10 % (14.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57488428 BTC (404,633.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.88 % (509,359.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,070.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00932209 BTC (14,820.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.23 CZK over 4340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005202 BTC for 82.71 CZK @ 1,589,873 CZK\nFees are 0.29048131 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.488602741423855414162695081 CZK)\nThe limits being 0.10 % (14.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57488428 BTC (404,633.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.88 % (509,359.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,070.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00932209 BTC (14,820.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.23 CZK over 4340 transactions" + } + ] + }, + { + "id": 6039, + "type": "message", + "date": "2024-10-27T21:00:06", + "date_unixtime": "1730059206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005199 BTC for 82.71 CZK @ 1,590,837 CZK\nFees are 0.29048989 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.499211104086265487604310092 CZK)\nThe limits being 0.10 % (14.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57493627 BTC (404,716.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 703,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,590,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.99 % (509,913.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,987.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00937408 BTC (14,912.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.23 CZK over 4341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005199 BTC for 82.71 CZK @ 1,590,837 CZK\nFees are 0.29048989 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.499211104086265487604310092 CZK)\nThe limits being 0.10 % (14.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57493627 BTC (404,716.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 703,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,590,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.99 % (509,913.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,987.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00937408 BTC (14,912.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.23 CZK over 4341 transactions" + } + ] + }, + { + "id": 6040, + "type": "message", + "date": "2024-10-28T01:00:05", + "date_unixtime": "1730073605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005182 BTC for 82.70 CZK @ 1,595,971 CZK\nFees are 0.29047440 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.555682440481856535702809368 CZK)\nThe limits being 0.10 % (15.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57498809 BTC (404,799.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,595,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.70 % (512,865.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,904.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00942590 BTC (15,043.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.23 CZK over 4342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005182 BTC for 82.70 CZK @ 1,595,971 CZK\nFees are 0.29047440 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.555682440481856535702809368 CZK)\nThe limits being 0.10 % (15.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57498809 BTC (404,799.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,595,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.70 % (512,865.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,904.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00942590 BTC (15,043.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.23 CZK over 4342 transactions" + } + ] + }, + { + "id": 6041, + "type": "message", + "date": "2024-10-28T05:00:06", + "date_unixtime": "1730088006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005194 BTC for 82.70 CZK @ 1,592,294 CZK\nFees are 0.29047625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.515233922702961659605320537 CZK)\nThe limits being 0.10 % (15.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57504003 BTC (404,882.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,592,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.15 % (510,750.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,821.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00947784 BTC (15,091.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.23 CZK over 4343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005194 BTC for 82.70 CZK @ 1,592,294 CZK\nFees are 0.29047625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.515233922702961659605320537 CZK)\nThe limits being 0.10 % (15.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57504003 BTC (404,882.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,592,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.15 % (510,750.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,821.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00947784 BTC (15,091.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.23 CZK over 4343 transactions" + } + ] + }, + { + "id": 6042, + "type": "message", + "date": "2024-10-28T09:00:07", + "date_unixtime": "1730102407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005146 BTC for 82.70 CZK @ 1,607,038 CZK\nFees are 0.29045660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.677413953998161506627309663 CZK)\nThe limits being 0.10 % (15.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57509149 BTC (404,965.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,607,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.22 % (519,228.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,738.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00952930 BTC (15,313.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.22 CZK over 4344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005146 BTC for 82.70 CZK @ 1,607,038 CZK\nFees are 0.29045660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.12 % (17.677413953998161506627309663 CZK)\nThe limits being 0.10 % (15.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57509149 BTC (404,965.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,607,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.22 % (519,228.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,738.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00952930 BTC (15,313.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.22 CZK over 4344 transactions" + } + ] + }, + { + "id": 6043, + "type": "message", + "date": "2024-10-28T13:00:05", + "date_unixtime": "1730116805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005127 BTC for 82.53 CZK @ 1,609,802 CZK\nFees are 0.28988191 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (17.707818634778276033881415047 CZK)\nThe limits being 0.10 % (15.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57514276 BTC (405,048.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.58 % (520,817.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,655.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00958057 BTC (15,422.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.22 CZK over 4345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005127 BTC for 82.53 CZK @ 1,609,802 CZK\nFees are 0.28988191 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (17.707818634778276033881415047 CZK)\nThe limits being 0.10 % (15.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57514276 BTC (405,048.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.58 % (520,817.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,655.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00958057 BTC (15,422.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.22 CZK over 4345 transactions" + } + ] + }, + { + "id": 6044, + "type": "message", + "date": "2024-10-28T17:00:06", + "date_unixtime": "1730131206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005139 BTC for 82.70 CZK @ 1,609,265 CZK\nFees are 0.29046356 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (17.701916845235099994929209141 CZK)\nThe limits being 0.10 % (15.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57519415 BTC (405,131.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.48 % (520,508.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,572.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00963196 BTC (15,500.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.22 CZK over 4346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005139 BTC for 82.70 CZK @ 1,609,265 CZK\nFees are 0.29046356 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (17.701916845235099994929209141 CZK)\nThe limits being 0.10 % (15.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57519415 BTC (405,131.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.48 % (520,508.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,572.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00963196 BTC (15,500.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.22 CZK over 4346 transactions" + } + ] + }, + { + "id": 6045, + "type": "message", + "date": "2024-10-28T21:00:07", + "date_unixtime": "1730145607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005058 BTC for 82.70 CZK @ 1,635,072 CZK\nFees are 0.29046995 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (17.985795310127483818497654412 CZK)\nThe limits being 0.10 % (15.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57524473 BTC (405,214.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,635,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.12 % (535,352.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,489.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00968254 BTC (15,831.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.22 CZK over 4347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005058 BTC for 82.70 CZK @ 1,635,072 CZK\nFees are 0.29046995 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (17.985795310127483818497654412 CZK)\nThe limits being 0.10 % (15.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57524473 BTC (405,214.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,635,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.12 % (535,352.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,489.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00968254 BTC (15,831.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.22 CZK over 4347 transactions" + } + ] + }, + { + "id": 6046, + "type": "message", + "date": "2024-10-29T01:00:06", + "date_unixtime": "1730160006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005039 BTC for 82.70 CZK @ 1,641,131 CZK\nFees are 0.29045117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.052444939833029326905345084 CZK)\nThe limits being 0.10 % (15.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57529512 BTC (405,297.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,641,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.95 % (538,837.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,406.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00973293 BTC (15,973.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.21 CZK over 4348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005039 BTC for 82.70 CZK @ 1,641,131 CZK\nFees are 0.29045117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.052444939833029326905345084 CZK)\nThe limits being 0.10 % (15.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57529512 BTC (405,297.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,641,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.95 % (538,837.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,406.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00973293 BTC (15,973.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.21 CZK over 4348 transactions" + } + ] + }, + { + "id": 6047, + "type": "message", + "date": "2024-10-29T05:00:09", + "date_unixtime": "1730174409", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004982 BTC for 82.69 CZK @ 1,659,868 CZK\nFees are 0.29044418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (36.517094242811740601991784276 CZK)\nThe limits being 0.10 % (16.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57534494 BTC (405,380.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,659,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.58 % (549,616.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,323.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00978275 BTC (16,238.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.21 CZK over 4349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004982 BTC for 82.69 CZK @ 1,659,868 CZK\nFees are 0.29044418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (36.517094242811740601991784276 CZK)\nThe limits being 0.10 % (16.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57534494 BTC (405,380.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,659,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.58 % (549,616.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,323.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00978275 BTC (16,238.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.21 CZK over 4349 transactions" + } + ] + }, + { + "id": 6048, + "type": "message", + "date": "2024-10-29T09:00:08", + "date_unixtime": "1730188808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005005 BTC for 82.70 CZK @ 1,652,435 CZK\nFees are 0.29047851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.176789947272458483220815059 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57539499 BTC (405,463.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,652,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.50 % (545,339.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,240.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00983280 BTC (16,248.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.21 CZK over 4350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005005 BTC for 82.70 CZK @ 1,652,435 CZK\nFees are 0.29047851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.176789947272458483220815059 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57539499 BTC (405,463.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,652,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.50 % (545,339.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,240.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00983280 BTC (16,248.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.21 CZK over 4350 transactions" + } + ] + }, + { + "id": 6049, + "type": "message", + "date": "2024-10-29T13:00:06", + "date_unixtime": "1730203206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004940 BTC for 82.54 CZK @ 1,670,832 CZK\nFees are 0.28989797 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.379152964623816641753861485 CZK)\nThe limits being 0.10 % (16.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57544439 BTC (405,545.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,670,832 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.08 % (555,925.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,157.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00988220 BTC (16,511.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.21 CZK over 4351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004940 BTC for 82.54 CZK @ 1,670,832 CZK\nFees are 0.28989797 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.379152964623816641753861485 CZK)\nThe limits being 0.10 % (16.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57544439 BTC (405,545.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,670,832 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.08 % (555,925.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,157.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00988220 BTC (16,511.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.21 CZK over 4351 transactions" + } + ] + }, + { + "id": 6050, + "type": "message", + "date": "2024-10-29T17:00:06", + "date_unixtime": "1730217606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004873 BTC for 82.70 CZK @ 1,697,038 CZK\nFees are 0.29045140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.667421210863557683547763415 CZK)\nThe limits being 0.10 % (16.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57549312 BTC (405,628.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,697,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.77 % (571,004.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,074.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00993093 BTC (16,853.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.21 CZK over 4352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004873 BTC for 82.70 CZK @ 1,697,038 CZK\nFees are 0.29045140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.667421210863557683547763415 CZK)\nThe limits being 0.10 % (16.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57549312 BTC (405,628.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,697,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.77 % (571,004.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,074.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00993093 BTC (16,853.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.21 CZK over 4352 transactions" + } + ] + }, + { + "id": 6051, + "type": "message", + "date": "2024-10-29T21:00:05", + "date_unixtime": "1730232005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004878 BTC for 82.70 CZK @ 1,695,385 CZK\nFees are 0.29046620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (37.298474044411595087550277595 CZK)\nThe limits being 0.10 % (16.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57554190 BTC (405,711.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 704,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,695,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.51 % (570,053.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,991.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00997971 BTC (16,919.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.20 CZK over 4353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004878 BTC for 82.70 CZK @ 1,695,385 CZK\nFees are 0.29046620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (37.298474044411595087550277595 CZK)\nThe limits being 0.10 % (16.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57554190 BTC (405,711.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 704,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,695,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.51 % (570,053.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,991.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00997971 BTC (16,919.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.20 CZK over 4353 transactions" + } + ] + }, + { + "id": 6052, + "type": "message", + "date": "2024-10-30T01:00:06", + "date_unixtime": "1730246406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004906 BTC for 82.70 CZK @ 1,685,699 CZK\nFees are 0.29046447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.542690243341131153071871767 CZK)\nThe limits being 0.10 % (16.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57559096 BTC (405,794.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,685,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.10 % (564,478.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,908.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01002877 BTC (16,905.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.20 CZK over 4354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004906 BTC for 82.70 CZK @ 1,685,699 CZK\nFees are 0.29046447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.542690243341131153071871767 CZK)\nThe limits being 0.10 % (16.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57559096 BTC (405,794.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,685,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.10 % (564,478.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,908.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01002877 BTC (16,905.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.20 CZK over 4354 transactions" + } + ] + }, + { + "id": 6053, + "type": "message", + "date": "2024-10-30T05:00:06", + "date_unixtime": "1730260806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004906 BTC for 82.70 CZK @ 1,685,699 CZK\nFees are 0.29046447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.542690243341131153071871767 CZK)\nThe limits being 0.10 % (16.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57564002 BTC (405,877.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,685,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.08 % (564,478.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,825.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01007783 BTC (16,988.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.20 CZK over 4355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004906 BTC for 82.70 CZK @ 1,685,699 CZK\nFees are 0.29046447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.542690243341131153071871767 CZK)\nThe limits being 0.10 % (16.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57564002 BTC (405,877.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,685,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.08 % (564,478.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,825.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01007783 BTC (16,988.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.20 CZK over 4355 transactions" + } + ] + }, + { + "id": 6054, + "type": "message", + "date": "2024-10-30T09:00:06", + "date_unixtime": "1730275206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004938 BTC for 82.71 CZK @ 1,674,878 CZK\nFees are 0.29048235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.423660443005979678658110949 CZK)\nThe limits being 0.10 % (16.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57568940 BTC (405,960.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,674,878 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.51 % (558,248.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,742.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01012721 BTC (16,961.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.20 CZK over 4356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004938 BTC for 82.71 CZK @ 1,674,878 CZK\nFees are 0.29048235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.423660443005979678658110949 CZK)\nThe limits being 0.10 % (16.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57568940 BTC (405,960.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,674,878 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.51 % (558,248.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,742.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01012721 BTC (16,961.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.20 CZK over 4356 transactions" + } + ] + }, + { + "id": 6055, + "type": "message", + "date": "2024-10-30T13:00:06", + "date_unixtime": "1730289606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004903 BTC for 82.70 CZK @ 1,686,724 CZK\nFees are 0.29046329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.553960250280453249441761098 CZK)\nThe limits being 0.10 % (17.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57573843 BTC (406,043.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,686,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.16 % (565,067.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,659.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01017624 BTC (17,164.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.19 CZK over 4357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004903 BTC for 82.70 CZK @ 1,686,724 CZK\nFees are 0.29046329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.553960250280453249441761098 CZK)\nThe limits being 0.10 % (17.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57573843 BTC (406,043.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,686,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.16 % (565,067.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,659.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01017624 BTC (17,164.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.19 CZK over 4357 transactions" + } + ] + }, + { + "id": 6056, + "type": "message", + "date": "2024-10-30T17:00:06", + "date_unixtime": "1730304006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004908 BTC for 82.70 CZK @ 1,684,904 CZK\nFees are 0.29044585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (55.601836536669334590546778205 CZK)\nThe limits being 0.10 % (17.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57578751 BTC (406,126.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,342 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,684,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.88 % (564,019.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,576.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01022532 BTC (17,228.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.19 CZK over 4358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004908 BTC for 82.70 CZK @ 1,684,904 CZK\nFees are 0.29044585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (55.601836536669334590546778205 CZK)\nThe limits being 0.10 % (17.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57578751 BTC (406,126.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,342 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,684,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.88 % (564,019.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,576.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01022532 BTC (17,228.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.19 CZK over 4358 transactions" + } + ] + }, + { + "id": 6057, + "type": "message", + "date": "2024-10-30T21:00:08", + "date_unixtime": "1730318408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004917 BTC for 82.70 CZK @ 1,682,008 CZK\nFees are 0.29047828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (37.004174681679000455898761494 CZK)\nThe limits being 0.10 % (17.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57583668 BTC (406,209.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,682,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.44 % (562,352.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,493.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01027449 BTC (17,281.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.19 CZK over 4359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004917 BTC for 82.70 CZK @ 1,682,008 CZK\nFees are 0.29047828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (37.004174681679000455898761494 CZK)\nThe limits being 0.10 % (17.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57583668 BTC (406,209.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,682,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.44 % (562,352.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,493.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01027449 BTC (17,281.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.19 CZK over 4359 transactions" + } + ] + }, + { + "id": 6058, + "type": "message", + "date": "2024-10-31T01:00:05", + "date_unixtime": "1730332805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004883 BTC for 82.70 CZK @ 1,693,647 CZK\nFees are 0.29046580 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.630115502560615972296838192 CZK)\nThe limits being 0.10 % (17.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57588551 BTC (406,292.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,693,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.06 % (569,053.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,410.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01032332 BTC (17,484.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.19 CZK over 4360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004883 BTC for 82.70 CZK @ 1,693,647 CZK\nFees are 0.29046580 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.11 % (18.630115502560615972296838192 CZK)\nThe limits being 0.10 % (17.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57588551 BTC (406,292.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,693,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.06 % (569,053.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,410.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01032332 BTC (17,484.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.19 CZK over 4360 transactions" + } + ] + }, + { + "id": 6059, + "type": "message", + "date": "2024-10-31T05:00:06", + "date_unixtime": "1730347206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004881 BTC for 82.71 CZK @ 1,694,482 CZK\nFees are 0.29048999 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (74.557205320815784377706096678 CZK)\nThe limits being 0.10 % (17.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57593432 BTC (406,375.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,694,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.15 % (569,534.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,327.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01037213 BTC (17,575.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.18 CZK over 4361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004881 BTC for 82.71 CZK @ 1,694,482 CZK\nFees are 0.29048999 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (74.557205320815784377706096678 CZK)\nThe limits being 0.10 % (17.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57593432 BTC (406,375.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,694,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.15 % (569,534.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,327.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01037213 BTC (17,575.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.18 CZK over 4361 transactions" + } + ] + }, + { + "id": 6060, + "type": "message", + "date": "2024-10-31T09:00:08", + "date_unixtime": "1730361608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004881 BTC for 82.70 CZK @ 1,694,355 CZK\nFees are 0.29046816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (37.275801701216404334470819045 CZK)\nThe limits being 0.10 % (17.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57598313 BTC (406,458.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,694,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.10 % (569,460.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,244.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01042094 BTC (17,656.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.18 CZK over 4362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004881 BTC for 82.70 CZK @ 1,694,355 CZK\nFees are 0.29046816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (37.275801701216404334470819045 CZK)\nThe limits being 0.10 % (17.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57598313 BTC (406,458.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,694,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.10 % (569,460.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,244.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01042094 BTC (17,656.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.18 CZK over 4362 transactions" + } + ] + }, + { + "id": 6061, + "type": "message", + "date": "2024-10-31T13:00:05", + "date_unixtime": "1730376005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004903 BTC for 82.70 CZK @ 1,686,724 CZK\nFees are 0.29046329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (37.107920500560906498883522196 CZK)\nThe limits being 0.10 % (17.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57603216 BTC (406,541.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,686,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.99 % (565,065.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,161.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01046997 BTC (17,659.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.18 CZK over 4363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004903 BTC for 82.70 CZK @ 1,686,724 CZK\nFees are 0.29046329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (37.107920500560906498883522196 CZK)\nThe limits being 0.10 % (17.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57603216 BTC (406,541.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,686,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.99 % (565,065.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,161.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01046997 BTC (17,659.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.18 CZK over 4363 transactions" + } + ] + }, + { + "id": 6062, + "type": "message", + "date": "2024-10-31T17:00:05", + "date_unixtime": "1730390405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005015 BTC for 82.70 CZK @ 1,649,074 CZK\nFees are 0.29046682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (18.139815061442478742149237390 CZK)\nThe limits being 0.10 % (17.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57608231 BTC (406,624.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,649,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.63 % (543,377.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,078.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01052012 BTC (17,348.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.18 CZK over 4364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005015 BTC for 82.70 CZK @ 1,649,074 CZK\nFees are 0.29046682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (18.139815061442478742149237390 CZK)\nThe limits being 0.10 % (17.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57608231 BTC (406,624.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,649,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.63 % (543,377.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,078.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01052012 BTC (17,348.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.18 CZK over 4364 transactions" + } + ] + }, + { + "id": 6063, + "type": "message", + "date": "2024-10-31T21:00:05", + "date_unixtime": "1730404805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005052 BTC for 82.70 CZK @ 1,637,069 CZK\nFees are 0.29047972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.015523797350603055576266915 CZK)\nThe limits being 0.10 % (17.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57613283 BTC (406,707.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 705,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,637,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.90 % (536,461.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,995.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01057064 BTC (17,304.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.17 CZK over 4365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005052 BTC for 82.70 CZK @ 1,637,069 CZK\nFees are 0.29047972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (36.015523797350603055576266915 CZK)\nThe limits being 0.10 % (17.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57613283 BTC (406,707.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 705,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,637,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.90 % (536,461.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,995.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01057064 BTC (17,304.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.17 CZK over 4365 transactions" + } + ] + }, + { + "id": 6064, + "type": "message", + "date": "2024-11-01T01:00:06", + "date_unixtime": "1730419206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005043 BTC for 82.70 CZK @ 1,639,941 CZK\nFees are 0.29047096 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (18.039355411127482524232803668 CZK)\nThe limits being 0.10 % (17.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57618326 BTC (406,790.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,639,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.28 % (538,116.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,912.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01062107 BTC (17,417.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.17 CZK over 4366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005043 BTC for 82.70 CZK @ 1,639,941 CZK\nFees are 0.29047096 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (18.039355411127482524232803668 CZK)\nThe limits being 0.10 % (17.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57618326 BTC (406,790.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,639,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.28 % (538,116.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,912.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01062107 BTC (17,417.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.17 CZK over 4366 transactions" + } + ] + }, + { + "id": 6065, + "type": "message", + "date": "2024-11-01T05:00:06", + "date_unixtime": "1730433606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005110 BTC for 82.71 CZK @ 1,618,546 CZK\nFees are 0.29049016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.804008552258874760256909037 CZK)\nThe limits being 0.10 % (17.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57623436 BTC (406,873.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,618,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.23 % (525,788.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,829.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01067217 BTC (17,273.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.17 CZK over 4367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005110 BTC for 82.71 CZK @ 1,618,546 CZK\nFees are 0.29049016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.804008552258874760256909037 CZK)\nThe limits being 0.10 % (17.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57623436 BTC (406,873.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,618,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.23 % (525,788.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,829.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01067217 BTC (17,273.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.17 CZK over 4367 transactions" + } + ] + }, + { + "id": 6066, + "type": "message", + "date": "2024-11-01T09:00:05", + "date_unixtime": "1730448005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005107 BTC for 82.71 CZK @ 1,619,549 CZK\nFees are 0.29049944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.815035957270758532721142733 CZK)\nThe limits being 0.10 % (17.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57628543 BTC (406,956.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,619,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.34 % (526,365.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,746.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01072324 BTC (17,366.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.17 CZK over 4368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005107 BTC for 82.71 CZK @ 1,619,549 CZK\nFees are 0.29049944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.815035957270758532721142733 CZK)\nThe limits being 0.10 % (17.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57628543 BTC (406,956.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,619,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.34 % (526,365.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,746.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01072324 BTC (17,366.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.17 CZK over 4368 transactions" + } + ] + }, + { + "id": 6067, + "type": "message", + "date": "2024-11-01T13:00:08", + "date_unixtime": "1730462408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005060 BTC for 82.70 CZK @ 1,634,408 CZK\nFees are 0.29046668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.978484140291588137172071663 CZK)\nThe limits being 0.10 % (17.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57633603 BTC (407,039.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,634,408 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.42 % (534,928.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,663.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01077384 BTC (17,608.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.17 CZK over 4369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005060 BTC for 82.70 CZK @ 1,634,408 CZK\nFees are 0.29046668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.978484140291588137172071663 CZK)\nThe limits being 0.10 % (17.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57633603 BTC (407,039.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,634,408 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.42 % (534,928.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,663.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01077384 BTC (17,608.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.17 CZK over 4369 transactions" + } + ] + }, + { + "id": 6068, + "type": "message", + "date": "2024-11-01T17:00:06", + "date_unixtime": "1730476806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005094 BTC for 82.70 CZK @ 1,623,392 CZK\nFees are 0.29044763 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.857315025600425992340510608 CZK)\nThe limits being 0.10 % (17.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57638697 BTC (407,122.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,623,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.83 % (528,579.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,580.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01082478 BTC (17,572.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.16 CZK over 4370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005094 BTC for 82.70 CZK @ 1,623,392 CZK\nFees are 0.29044763 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.857315025600425992340510608 CZK)\nThe limits being 0.10 % (17.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57638697 BTC (407,122.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,623,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.83 % (528,579.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,580.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01082478 BTC (17,572.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.16 CZK over 4370 transactions" + } + ] + }, + { + "id": 6069, + "type": "message", + "date": "2024-11-01T21:00:07", + "date_unixtime": "1730491207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005093 BTC for 82.70 CZK @ 1,623,705 CZK\nFees are 0.29044656 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (35.721511147269653405306050851 CZK)\nThe limits being 0.10 % (17.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57643790 BTC (407,205.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,623,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.85 % (528,759.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,497.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01087571 BTC (17,658.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.16 CZK over 4371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005093 BTC for 82.70 CZK @ 1,623,705 CZK\nFees are 0.29044656 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (35.721511147269653405306050851 CZK)\nThe limits being 0.10 % (17.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57643790 BTC (407,205.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,623,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.85 % (528,759.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,497.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01087571 BTC (17,658.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.16 CZK over 4371 transactions" + } + ] + }, + { + "id": 6070, + "type": "message", + "date": "2024-11-02T01:00:05", + "date_unixtime": "1730505605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005075 BTC for 82.69 CZK @ 1,629,449 CZK\nFees are 0.29044395 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.923942600896860986547085203 CZK)\nThe limits being 0.10 % (17.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57648865 BTC (407,288.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,629,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.64 % (532,070.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,414.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01092646 BTC (17,804.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.16 CZK over 4372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005075 BTC for 82.69 CZK @ 1,629,449 CZK\nFees are 0.29044395 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.923942600896860986547085203 CZK)\nThe limits being 0.10 % (17.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57648865 BTC (407,288.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,629,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.64 % (532,070.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,414.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01092646 BTC (17,804.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.16 CZK over 4372 transactions" + } + ] + }, + { + "id": 6071, + "type": "message", + "date": "2024-11-02T05:00:06", + "date_unixtime": "1730520006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005068 BTC for 82.71 CZK @ 1,632,002 CZK\nFees are 0.29049765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.952018371768266473813633342 CZK)\nThe limits being 0.10 % (17.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57653933 BTC (407,371.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,632,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.97 % (533,541.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,331.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01097714 BTC (17,914.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.16 CZK over 4373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005068 BTC for 82.71 CZK @ 1,632,002 CZK\nFees are 0.29049765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (17.952018371768266473813633342 CZK)\nThe limits being 0.10 % (17.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57653933 BTC (407,371.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,632,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.97 % (533,541.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,331.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01097714 BTC (17,914.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.16 CZK over 4373 transactions" + } + ] + }, + { + "id": 6072, + "type": "message", + "date": "2024-11-02T09:00:07", + "date_unixtime": "1730534407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005056 BTC for 82.71 CZK @ 1,635,884 CZK\nFees are 0.29049929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.01102770 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (17.994727507324049371503535096 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57658989 BTC (407,454.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,635,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.49 % (535,779.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,248.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01102770 BTC (18,040.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.15 CZK over 4374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005056 BTC for 82.71 CZK @ 1,635,884 CZK\nFees are 0.29049929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.01102770 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.10 % (17.994727507324049371503535096 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57658989 BTC (407,454.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,635,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.49 % (535,779.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,248.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01102770 BTC (18,040.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.15 CZK over 4374 transactions" + } + ] + }, + { + "id": 6073, + "type": "message", + "date": "2024-11-02T13:00:05", + "date_unixtime": "1730548805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005066 BTC for 82.70 CZK @ 1,632,418 CZK\nFees are 0.29045704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 21.71 % (17.956594744489824500942319724 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57664055 BTC (407,537.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,632,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.98 % (533,780.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,165.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00005066 BTC (82.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.15 CZK over 4375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005066 BTC for 82.70 CZK @ 1,632,418 CZK\nFees are 0.29045704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 21.71 % (17.956594744489824500942319724 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57664055 BTC (407,537.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,632,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.98 % (533,780.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,165.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00005066 BTC (82.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.15 CZK over 4375 transactions" + } + ] + }, + { + "id": 6074, + "type": "message", + "date": "2024-11-02T17:00:05", + "date_unixtime": "1730563205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005080 BTC for 82.71 CZK @ 1,628,146 CZK\nFees are 0.29049757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 10.84 % (17.909606975585450921773791729 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57669135 BTC (407,620.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,628,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.35 % (531,317.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,082.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00010146 BTC (165.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.15 CZK over 4376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005080 BTC for 82.71 CZK @ 1,628,146 CZK\nFees are 0.29049757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 10.84 % (17.909606975585450921773791729 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57669135 BTC (407,620.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,628,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.35 % (531,317.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,082.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00010146 BTC (165.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.15 CZK over 4376 transactions" + } + ] + }, + { + "id": 6075, + "type": "message", + "date": "2024-11-02T21:00:05", + "date_unixtime": "1730577605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005072 BTC for 82.71 CZK @ 1,630,688 CZK\nFees are 0.29049299 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 7.23 % (17.937572470721559714500824402 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57674207 BTC (407,703.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,630,688 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.68 % (532,782.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,999.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00015218 BTC (248.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.15 CZK over 4377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005072 BTC for 82.71 CZK @ 1,630,688 CZK\nFees are 0.29049299 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 7.23 % (17.937572470721559714500824402 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57674207 BTC (407,703.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,630,688 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.68 % (532,782.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,999.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00015218 BTC (248.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.15 CZK over 4377 transactions" + } + ] + }, + { + "id": 6076, + "type": "message", + "date": "2024-11-03T01:00:05", + "date_unixtime": "1730592005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005080 BTC for 82.70 CZK @ 1,628,028 CZK\nFees are 0.29047646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 10.84 % (35.816611482253059174778040637 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57679287 BTC (407,786.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 706,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,628,028 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.28 % (531,248.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,916.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00020298 BTC (330.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.14 CZK over 4378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005080 BTC for 82.70 CZK @ 1,628,028 CZK\nFees are 0.29047646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 10.84 % (35.816611482253059174778040637 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57679287 BTC (407,786.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 706,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,628,028 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.28 % (531,248.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,916.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00020298 BTC (330.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.14 CZK over 4378 transactions" + } + ] + }, + { + "id": 6077, + "type": "message", + "date": "2024-11-03T05:00:06", + "date_unixtime": "1730606406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005153 BTC for 82.71 CZK @ 1,605,014 CZK\nFees are 0.29048538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 4.32 % (17.655149626414283947576844134 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57684440 BTC (407,869.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,605,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.99 % (517,973.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,833.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00025451 BTC (408.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.14 CZK over 4379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005153 BTC for 82.71 CZK @ 1,605,014 CZK\nFees are 0.29048538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 4.32 % (17.655149626414283947576844134 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57684440 BTC (407,869.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,605,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.99 % (517,973.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,833.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00025451 BTC (408.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.14 CZK over 4379 transactions" + } + ] + }, + { + "id": 6078, + "type": "message", + "date": "2024-11-03T09:00:05", + "date_unixtime": "1730620805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005150 BTC for 82.70 CZK @ 1,605,830 CZK\nFees are 0.29046387 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.59 % (17.664125933020834845032676892 CZK)\nThe limits being 0.10 % (0.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57689590 BTC (407,952.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,605,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.08 % (518,443.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,750.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00030601 BTC (491.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.14 CZK over 4380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005150 BTC for 82.70 CZK @ 1,605,830 CZK\nFees are 0.29046387 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.59 % (17.664125933020834845032676892 CZK)\nThe limits being 0.10 % (0.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57689590 BTC (407,952.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,605,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.08 % (518,443.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,750.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00030601 BTC (491.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.14 CZK over 4380 transactions" + } + ] + }, + { + "id": 6079, + "type": "message", + "date": "2024-11-03T13:00:05", + "date_unixtime": "1730635205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005150 BTC for 82.71 CZK @ 1,606,024 CZK\nFees are 0.29049905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.08 % (17.666265248136377049259630129 CZK)\nThe limits being 0.10 % (0.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57694740 BTC (408,035.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,606,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.09 % (518,555.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,667.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00035751 BTC (574.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.14 CZK over 4381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005150 BTC for 82.71 CZK @ 1,606,024 CZK\nFees are 0.29049905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.08 % (17.666265248136377049259630129 CZK)\nThe limits being 0.10 % (0.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57694740 BTC (408,035.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,606,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.09 % (518,555.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,667.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00035751 BTC (574.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.14 CZK over 4381 transactions" + } + ] + }, + { + "id": 6080, + "type": "message", + "date": "2024-11-03T17:00:06", + "date_unixtime": "1730649606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005177 BTC for 82.70 CZK @ 1,597,394 CZK\nFees are 0.29045278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.69 % (17.571330327242713088697959690 CZK)\nThe limits being 0.10 % (0.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57699917 BTC (408,118.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,597,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.84 % (513,576.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,584.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00040928 BTC (653.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.14 CZK over 4382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005177 BTC for 82.70 CZK @ 1,597,394 CZK\nFees are 0.29045278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.69 % (17.571330327242713088697959690 CZK)\nThe limits being 0.10 % (0.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57699917 BTC (408,118.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,597,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.84 % (513,576.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,584.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00040928 BTC (653.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.14 CZK over 4382 transactions" + } + ] + }, + { + "id": 6081, + "type": "message", + "date": "2024-11-03T21:00:06", + "date_unixtime": "1730664006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005142 BTC for 82.71 CZK @ 1,608,468 CZK\nFees are 0.29048919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.39 % (17.693150060164763661684299429 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57705059 BTC (408,201.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,608,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.38 % (519,965.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,501.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00046070 BTC (741.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.13 CZK over 4383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005142 BTC for 82.71 CZK @ 1,608,468 CZK\nFees are 0.29048919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.39 % (17.693150060164763661684299429 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57705059 BTC (408,201.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,608,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.38 % (519,965.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,501.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00046070 BTC (741.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.13 CZK over 4383 transactions" + } + ] + }, + { + "id": 6082, + "type": "message", + "date": "2024-11-04T01:00:05", + "date_unixtime": "1730678405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005142 BTC for 82.71 CZK @ 1,608,457 CZK\nFees are 0.29048719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 2.15 % (17.693028759512844678010471712 CZK)\nThe limits being 0.10 % (0.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57710201 BTC (408,284.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,608,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.35 % (519,959.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,418.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00051212 BTC (823.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.13 CZK over 4384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005142 BTC for 82.71 CZK @ 1,608,457 CZK\nFees are 0.29048719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 2.15 % (17.693028759512844678010471712 CZK)\nThe limits being 0.10 % (0.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57710201 BTC (408,284.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,608,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.35 % (519,959.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,418.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00051212 BTC (823.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.13 CZK over 4384 transactions" + } + ] + }, + { + "id": 6083, + "type": "message", + "date": "2024-11-04T05:00:05", + "date_unixtime": "1730692805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005139 BTC for 82.71 CZK @ 1,609,411 CZK\nFees are 0.29048979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.95 % (17.703515818976838508303250358 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57715340 BTC (408,367.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,609,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.46 % (520,509.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,335.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00056351 BTC (906.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.13 CZK over 4385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005139 BTC for 82.71 CZK @ 1,609,411 CZK\nFees are 0.29048979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.95 % (17.703515818976838508303250358 CZK)\nThe limits being 0.10 % (0.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57715340 BTC (408,367.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,609,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.46 % (520,509.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,335.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00056351 BTC (906.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.13 CZK over 4385 transactions" + } + ] + }, + { + "id": 6084, + "type": "message", + "date": "2024-11-04T09:00:06", + "date_unixtime": "1730707206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005164 BTC for 82.70 CZK @ 1,601,546 CZK\nFees are 0.29047654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.79 % (17.617005835694357124193903830 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57720504 BTC (408,450.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,601,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.32 % (515,969.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,252.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00061515 BTC (985.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.13 CZK over 4386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005164 BTC for 82.70 CZK @ 1,601,546 CZK\nFees are 0.29047654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.79 % (17.617005835694357124193903830 CZK)\nThe limits being 0.10 % (0.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57720504 BTC (408,450.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,601,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.32 % (515,969.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,252.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00061515 BTC (985.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.13 CZK over 4386 transactions" + } + ] + }, + { + "id": 6085, + "type": "message", + "date": "2024-11-04T13:00:08", + "date_unixtime": "1730721608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005174 BTC for 82.70 CZK @ 1,598,339 CZK\nFees are 0.29045626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.65 % (17.581729169591778600950018577 CZK)\nThe limits being 0.10 % (1.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57725678 BTC (408,533.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,598,339 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.84 % (514,118.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,169.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00066689 BTC (1,065.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.12 CZK over 4387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005174 BTC for 82.70 CZK @ 1,598,339 CZK\nFees are 0.29045626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.65 % (17.581729169591778600950018577 CZK)\nThe limits being 0.10 % (1.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57725678 BTC (408,533.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,598,339 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.84 % (514,118.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,169.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00066689 BTC (1,065.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.12 CZK over 4387 transactions" + } + ] + }, + { + "id": 6086, + "type": "message", + "date": "2024-11-04T17:00:05", + "date_unixtime": "1730736005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005169 BTC for 82.70 CZK @ 1,599,949 CZK\nFees are 0.29046787 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.53 % (17.599439179547921990579884701 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57730847 BTC (408,616.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,599,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.05 % (515,047.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,086.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00071858 BTC (1,149.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.12 CZK over 4388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005169 BTC for 82.70 CZK @ 1,599,949 CZK\nFees are 0.29046787 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.53 % (17.599439179547921990579884701 CZK)\nThe limits being 0.10 % (1.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57730847 BTC (408,616.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,599,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.05 % (515,047.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,086.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00071858 BTC (1,149.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.12 CZK over 4388 transactions" + } + ] + }, + { + "id": 6087, + "type": "message", + "date": "2024-11-04T21:00:05", + "date_unixtime": "1730750405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005220 BTC for 82.71 CZK @ 1,584,452 CZK\nFees are 0.29049247 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.43 % (17.428966540098162179498193107 CZK)\nThe limits being 0.10 % (1.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57736067 BTC (408,699.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.83 % (506,100.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,003.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00077078 BTC (1,221.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.12 CZK over 4389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005220 BTC for 82.71 CZK @ 1,584,452 CZK\nFees are 0.29049247 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.43 % (17.428966540098162179498193107 CZK)\nThe limits being 0.10 % (1.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57736067 BTC (408,699.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.83 % (506,100.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,003.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00077078 BTC (1,221.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.12 CZK over 4389 transactions" + } + ] + }, + { + "id": 6088, + "type": "message", + "date": "2024-11-05T01:00:05", + "date_unixtime": "1730764805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005221 BTC for 82.70 CZK @ 1,584,079 CZK\nFees are 0.29047973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.34 % (17.424864346173186034285096969 CZK)\nThe limits being 0.10 % (1.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57741288 BTC (408,782.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 707,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,584,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.75 % (505,884.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,920.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00082299 BTC (1,303.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.12 CZK over 4390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005221 BTC for 82.70 CZK @ 1,584,079 CZK\nFees are 0.29047973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.34 % (17.424864346173186034285096969 CZK)\nThe limits being 0.10 % (1.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57741288 BTC (408,782.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 707,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,584,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.75 % (505,884.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,920.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00082299 BTC (1,303.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.12 CZK over 4390 transactions" + } + ] + }, + { + "id": 6089, + "type": "message", + "date": "2024-11-05T05:00:06", + "date_unixtime": "1730779206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005203 BTC for 82.71 CZK @ 1,589,601 CZK\nFees are 0.29048751 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.26 % (17.485614316067126579171630792 CZK)\nThe limits being 0.10 % (1.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57746491 BTC (408,865.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,589,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.51 % (509,073.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,837.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00087502 BTC (1,390.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.11 CZK over 4391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005203 BTC for 82.71 CZK @ 1,589,601 CZK\nFees are 0.29048751 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.26 % (17.485614316067126579171630792 CZK)\nThe limits being 0.10 % (1.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57746491 BTC (408,865.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,589,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.51 % (509,073.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,837.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00087502 BTC (1,390.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.11 CZK over 4391 transactions" + } + ] + }, + { + "id": 6090, + "type": "message", + "date": "2024-11-05T09:00:05", + "date_unixtime": "1730793605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005143 BTC for 82.70 CZK @ 1,607,944 CZK\nFees are 0.29045097 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.19 % (17.687382727631977559389889615 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57751634 BTC (408,948.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,607,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.07 % (519,665.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,755.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00092645 BTC (1,489.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.11 CZK over 4392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005143 BTC for 82.70 CZK @ 1,607,944 CZK\nFees are 0.29045097 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.19 % (17.687382727631977559389889615 CZK)\nThe limits being 0.10 % (1.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57751634 BTC (408,948.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,607,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.07 % (519,665.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,755.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00092645 BTC (1,489.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.11 CZK over 4392 transactions" + } + ] + }, + { + "id": 6091, + "type": "message", + "date": "2024-11-05T13:00:05", + "date_unixtime": "1730808005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005154 BTC for 82.70 CZK @ 1,604,547 CZK\nFees are 0.29045737 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.12 % (17.650021882472270607394878499 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57756788 BTC (409,031.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,604,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.57 % (517,703.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,672.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00097799 BTC (1,569.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.11 CZK over 4393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005154 BTC for 82.70 CZK @ 1,604,547 CZK\nFees are 0.29045737 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.12 % (17.650021882472270607394878499 CZK)\nThe limits being 0.10 % (1.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57756788 BTC (409,031.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,604,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.57 % (517,703.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,672.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00097799 BTC (1,569.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.11 CZK over 4393 transactions" + } + ] + }, + { + "id": 6092, + "type": "message", + "date": "2024-11-05T17:00:06", + "date_unixtime": "1730822406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005098 BTC for 82.70 CZK @ 1,622,297 CZK\nFees are 0.29047951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.07 % (17.845262070982240854537561062 CZK)\nThe limits being 0.10 % (1.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57761886 BTC (409,114.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,622,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.05 % (527,954.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,589.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00102897 BTC (1,669.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.11 CZK over 4394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005098 BTC for 82.70 CZK @ 1,622,297 CZK\nFees are 0.29047951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.07 % (17.845262070982240854537561062 CZK)\nThe limits being 0.10 % (1.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57761886 BTC (409,114.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,622,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.05 % (527,954.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,589.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00102897 BTC (1,669.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.11 CZK over 4394 transactions" + } + ] + }, + { + "id": 6093, + "type": "message", + "date": "2024-11-05T21:00:05", + "date_unixtime": "1730836805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005114 BTC for 82.70 CZK @ 1,617,182 CZK\nFees are 0.29047249 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 1.02 % (17.789000256045569096352052134 CZK)\nThe limits being 0.10 % (1.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57767000 BTC (409,197.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,617,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.30 % (524,999.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,506.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00108011 BTC (1,746.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.11 CZK over 4395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005114 BTC for 82.70 CZK @ 1,617,182 CZK\nFees are 0.29047249 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 1.02 % (17.789000256045569096352052134 CZK)\nThe limits being 0.10 % (1.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57767000 BTC (409,197.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,617,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.30 % (524,999.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,506.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00108011 BTC (1,746.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.11 CZK over 4395 transactions" + } + ] + }, + { + "id": 6094, + "type": "message", + "date": "2024-11-06T01:00:05", + "date_unixtime": "1730851205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00005123 BTC for 82.70 CZK @ 1,614,294 CZK\nFees are 0.29046400 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.97 % (17.757230305681043538713468311 CZK)\nThe limits being 0.10 % (1.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57772123 BTC (409,280.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,614,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.87 % (523,331.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,423.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00113134 BTC (1,826.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.10 CZK over 4396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00005123 BTC for 82.70 CZK @ 1,614,294 CZK\nFees are 0.29046400 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.97 % (17.757230305681043538713468311 CZK)\nThe limits being 0.10 % (1.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57772123 BTC (409,280.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,614,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.87 % (523,331.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,423.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00113134 BTC (1,826.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.10 CZK over 4396 transactions" + } + ] + }, + { + "id": 6095, + "type": "message", + "date": "2024-11-06T05:00:07", + "date_unixtime": "1730865607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004685 BTC for 82.70 CZK @ 1,765,184 CZK\nFees are 0.29045905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.93 % (19.417020030320771642899797348 CZK)\nThe limits being 0.10 % (2.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57776808 BTC (409,363.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,526 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,765,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.13 % (610,503.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,340.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00117819 BTC (2,079.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.10 CZK over 4397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004685 BTC for 82.70 CZK @ 1,765,184 CZK\nFees are 0.29045905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.93 % (19.417020030320771642899797348 CZK)\nThe limits being 0.10 % (2.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57776808 BTC (409,363.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,526 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,765,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.13 % (610,503.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,340.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00117819 BTC (2,079.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.10 CZK over 4397 transactions" + } + ] + }, + { + "id": 6096, + "type": "message", + "date": "2024-11-06T09:00:06", + "date_unixtime": "1730880006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004755 BTC for 82.71 CZK @ 1,739,423 CZK\nFees are 0.29049660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.90 % (19.133648829098156452416542103 CZK)\nThe limits being 0.10 % (2.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57781563 BTC (409,446.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,739,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.47 % (595,619.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,257.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00122574 BTC (2,132.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.10 CZK over 4398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004755 BTC for 82.71 CZK @ 1,739,423 CZK\nFees are 0.29049660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.90 % (19.133648829098156452416542103 CZK)\nThe limits being 0.10 % (2.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57781563 BTC (409,446.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,739,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.47 % (595,619.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,257.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00122574 BTC (2,132.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.10 CZK over 4398 transactions" + } + ] + }, + { + "id": 6097, + "type": "message", + "date": "2024-11-06T13:00:06", + "date_unixtime": "1730894406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004706 BTC for 82.70 CZK @ 1,757,367 CZK\nFees are 0.29046905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.86 % (19.331039362232187344294967614 CZK)\nThe limits being 0.10 % (2.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57786269 BTC (409,529.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,757,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.97 % (605,987.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,174.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00127280 BTC (2,236.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.10 CZK over 4399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004706 BTC for 82.70 CZK @ 1,757,367 CZK\nFees are 0.29046905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.86 % (19.331039362232187344294967614 CZK)\nThe limits being 0.10 % (2.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57786269 BTC (409,529.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,757,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.97 % (605,987.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,174.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00127280 BTC (2,236.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.10 CZK over 4399 transactions" + } + ] + }, + { + "id": 6098, + "type": "message", + "date": "2024-11-06T17:00:04", + "date_unixtime": "1730908804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004698 BTC for 82.69 CZK @ 1,760,215 CZK\nFees are 0.29044521 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.83 % (19.362368216987669593205390330 CZK)\nThe limits being 0.10 % (2.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57790967 BTC (409,612.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,760,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.34 % (607,632.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,091.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00131978 BTC (2,323.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.09 CZK over 4400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004698 BTC for 82.69 CZK @ 1,760,215 CZK\nFees are 0.29044521 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.83 % (19.362368216987669593205390330 CZK)\nThe limits being 0.10 % (2.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57790967 BTC (409,612.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,760,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.34 % (607,632.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,091.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00131978 BTC (2,323.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.09 CZK over 4400 transactions" + } + ] + }, + { + "id": 6099, + "type": "message", + "date": "2024-11-06T21:00:06", + "date_unixtime": "1730923206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004627 BTC for 82.70 CZK @ 1,787,273 CZK\nFees are 0.29045289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.81 % (19.659997852986774514830253181 CZK)\nThe limits being 0.10 % (2.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57795594 BTC (409,695.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,787,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.13 % (623,269.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,008.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00136605 BTC (2,441.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.09 CZK over 4401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004627 BTC for 82.70 CZK @ 1,787,273 CZK\nFees are 0.29045289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.81 % (19.659997852986774514830253181 CZK)\nThe limits being 0.10 % (2.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57795594 BTC (409,695.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,787,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.13 % (623,269.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,008.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00136605 BTC (2,441.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.09 CZK over 4401 transactions" + } + ] + }, + { + "id": 6100, + "type": "message", + "date": "2024-11-07T01:00:05", + "date_unixtime": "1730937605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004621 BTC for 82.70 CZK @ 1,789,758 CZK\nFees are 0.29047962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.78 % (19.687336318125685829956545728 CZK)\nThe limits being 0.10 % (2.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57800215 BTC (409,778.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 708,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,789,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.45 % (624,705.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,925.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00141226 BTC (2,527.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.09 CZK over 4402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004621 BTC for 82.70 CZK @ 1,789,758 CZK\nFees are 0.29047962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.78 % (19.687336318125685829956545728 CZK)\nThe limits being 0.10 % (2.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57800215 BTC (409,778.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 708,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,789,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.45 % (624,705.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,925.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00141226 BTC (2,527.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.09 CZK over 4402 transactions" + } + ] + }, + { + "id": 6101, + "type": "message", + "date": "2024-11-07T05:00:05", + "date_unixtime": "1730952005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004655 BTC for 82.71 CZK @ 1,776,733 CZK\nFees are 0.29048744 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.75 % (19.544066752617182503557634210 CZK)\nThe limits being 0.10 % (2.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57804870 BTC (409,861.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,776,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.58 % (617,176.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,842.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00145881 BTC (2,591.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.09 CZK over 4403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004655 BTC for 82.71 CZK @ 1,776,733 CZK\nFees are 0.29048744 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.75 % (19.544066752617182503557634210 CZK)\nThe limits being 0.10 % (2.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57804870 BTC (409,861.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,776,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.58 % (617,176.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,842.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00145881 BTC (2,591.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.09 CZK over 4403 transactions" + } + ] + }, + { + "id": 6102, + "type": "message", + "date": "2024-11-07T09:00:08", + "date_unixtime": "1730966408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004678 BTC for 82.70 CZK @ 1,767,945 CZK\nFees are 0.29047868 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.73 % (19.447389501643776495817439305 CZK)\nThe limits being 0.10 % (2.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57809548 BTC (409,944.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,767,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.31 % (612,096.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,759.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00150559 BTC (2,661.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.08 CZK over 4404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004678 BTC for 82.70 CZK @ 1,767,945 CZK\nFees are 0.29047868 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.73 % (19.447389501643776495817439305 CZK)\nThe limits being 0.10 % (2.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57809548 BTC (409,944.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,767,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.31 % (612,096.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,759.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00150559 BTC (2,661.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.08 CZK over 4404 transactions" + } + ] + }, + { + "id": 6103, + "type": "message", + "date": "2024-11-07T13:00:05", + "date_unixtime": "1730980805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004694 BTC for 82.69 CZK @ 1,761,705 CZK\nFees are 0.29044352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.71 % (19.378754938244478369167649062 CZK)\nThe limits being 0.10 % (2.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57814242 BTC (410,027.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,761,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.40 % (608,488.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,676.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00155253 BTC (2,735.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.08 CZK over 4405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004694 BTC for 82.69 CZK @ 1,761,705 CZK\nFees are 0.29044352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.71 % (19.378754938244478369167649062 CZK)\nThe limits being 0.10 % (2.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57814242 BTC (410,027.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,761,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.40 % (608,488.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,676.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00155253 BTC (2,735.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.08 CZK over 4405 transactions" + } + ] + }, + { + "id": 6104, + "type": "message", + "date": "2024-11-07T17:00:06", + "date_unixtime": "1730995206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004652 BTC for 82.71 CZK @ 1,777,917 CZK\nFees are 0.29049367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.69 % (19.557090118377595869315521214 CZK)\nThe limits being 0.10 % (2.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57818894 BTC (410,110.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,777,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.66 % (617,861.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,593.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00159905 BTC (2,842.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.08 CZK over 4406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004652 BTC for 82.71 CZK @ 1,777,917 CZK\nFees are 0.29049367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.69 % (19.557090118377595869315521214 CZK)\nThe limits being 0.10 % (2.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57818894 BTC (410,110.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,777,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.66 % (617,861.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,593.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00159905 BTC (2,842.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.08 CZK over 4406 transactions" + } + ] + }, + { + "id": 6105, + "type": "message", + "date": "2024-11-07T21:00:05", + "date_unixtime": "1731009605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004612 BTC for 82.69 CZK @ 1,792,994 CZK\nFees are 0.29043804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.67 % (19.722931247355850360684698093 CZK)\nThe limits being 0.10 % (2.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57823506 BTC (410,193.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,792,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.75 % (626,578.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,510.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00164517 BTC (2,949.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.08 CZK over 4407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004612 BTC for 82.69 CZK @ 1,792,994 CZK\nFees are 0.29043804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.67 % (19.722931247355850360684698093 CZK)\nThe limits being 0.10 % (2.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57823506 BTC (410,193.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,792,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.75 % (626,578.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,510.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00164517 BTC (2,949.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.08 CZK over 4407 transactions" + } + ] + }, + { + "id": 6106, + "type": "message", + "date": "2024-11-08T01:00:06", + "date_unixtime": "1731024006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004645 BTC for 82.71 CZK @ 1,780,615 CZK\nFees are 0.29049667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.65 % (19.586764862271608037101576129 CZK)\nThe limits being 0.10 % (3.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57828151 BTC (410,276.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,780,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.98 % (619,420.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,427.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00169162 BTC (3,012.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.08 CZK over 4408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004645 BTC for 82.71 CZK @ 1,780,615 CZK\nFees are 0.29049667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.65 % (19.586764862271608037101576129 CZK)\nThe limits being 0.10 % (3.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57828151 BTC (410,276.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,780,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.98 % (619,420.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,427.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00169162 BTC (3,012.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.08 CZK over 4408 transactions" + } + ] + }, + { + "id": 6107, + "type": "message", + "date": "2024-11-08T05:00:06", + "date_unixtime": "1731038406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004633 BTC for 82.71 CZK @ 1,785,144 CZK\nFees are 0.29048321 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (19.636586674676620173876646502 CZK)\nThe limits being 0.10 % (3.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57832784 BTC (410,359.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,785,144 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.58 % (622,039.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,344.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00173795 BTC (3,102.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.07 CZK over 4409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004633 BTC for 82.71 CZK @ 1,785,144 CZK\nFees are 0.29048321 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.63 % (19.636586674676620173876646502 CZK)\nThe limits being 0.10 % (3.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57832784 BTC (410,359.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,785,144 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.58 % (622,039.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,344.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00173795 BTC (3,102.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.07 CZK over 4409 transactions" + } + ] + }, + { + "id": 6108, + "type": "message", + "date": "2024-11-08T09:00:07", + "date_unixtime": "1731052807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004618 BTC for 82.70 CZK @ 1,790,770 CZK\nFees are 0.29045524 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.62 % (19.698472465038454624923637776 CZK)\nThe limits being 0.10 % (3.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57837402 BTC (410,442.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,790,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.35 % (625,292.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,261.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00178413 BTC (3,194.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.07 CZK over 4410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004618 BTC for 82.70 CZK @ 1,790,770 CZK\nFees are 0.29045524 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.62 % (19.698472465038454624923637776 CZK)\nThe limits being 0.10 % (3.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57837402 BTC (410,442.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,790,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.35 % (625,292.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,261.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00178413 BTC (3,194.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.07 CZK over 4410 transactions" + } + ] + }, + { + "id": 6109, + "type": "message", + "date": "2024-11-08T13:00:06", + "date_unixtime": "1731067206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004638 BTC for 82.70 CZK @ 1,783,050 CZK\nFees are 0.29045556 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (19.613550426246386891245023616 CZK)\nThe limits being 0.10 % (3.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57842040 BTC (410,525.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,783,050 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.23 % (620,827.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,178.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00183051 BTC (3,263.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.07 CZK over 4411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004638 BTC for 82.70 CZK @ 1,783,050 CZK\nFees are 0.29045556 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.60 % (19.613550426246386891245023616 CZK)\nThe limits being 0.10 % (3.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57842040 BTC (410,525.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,783,050 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.23 % (620,827.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,178.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00183051 BTC (3,263.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.07 CZK over 4411 transactions" + } + ] + }, + { + "id": 6110, + "type": "message", + "date": "2024-11-08T17:00:05", + "date_unixtime": "1731081605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004607 BTC for 82.69 CZK @ 1,794,946 CZK\nFees are 0.29043899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (19.744401603504296715349110759 CZK)\nThe limits being 0.10 % (3.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57846647 BTC (410,608.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,794,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.87 % (627,707.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,095.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00187658 BTC (3,368.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.07 CZK over 4412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004607 BTC for 82.69 CZK @ 1,794,946 CZK\nFees are 0.29043899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.59 % (19.744401603504296715349110759 CZK)\nThe limits being 0.10 % (3.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57846647 BTC (410,608.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,794,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.87 % (627,707.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,095.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00187658 BTC (3,368.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.07 CZK over 4412 transactions" + } + ] + }, + { + "id": 6111, + "type": "message", + "date": "2024-11-08T21:00:05", + "date_unixtime": "1731096005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004545 BTC for 82.70 CZK @ 1,819,506 CZK\nFees are 0.29045089 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.57 % (20.014561975440194741945544829 CZK)\nThe limits being 0.10 % (3.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57851192 BTC (410,691.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,910 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,819,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.30 % (641,914.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,012.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00192203 BTC (3,497.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.06 CZK over 4413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004545 BTC for 82.70 CZK @ 1,819,506 CZK\nFees are 0.29045089 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.57 % (20.014561975440194741945544829 CZK)\nThe limits being 0.10 % (3.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57851192 BTC (410,691.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,910 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,819,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.30 % (641,914.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,012.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00192203 BTC (3,497.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.06 CZK over 4413 transactions" + } + ] + }, + { + "id": 6112, + "type": "message", + "date": "2024-11-09T01:00:06", + "date_unixtime": "1731110406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004571 BTC for 82.71 CZK @ 1,809,449 CZK\nFees are 0.29049784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (19.903935057968734892762663864 CZK)\nThe limits being 0.10 % (3.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57855763 BTC (410,774.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 709,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,809,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.85 % (636,095.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,929.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00196774 BTC (3,560.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.06 CZK over 4414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004571 BTC for 82.71 CZK @ 1,809,449 CZK\nFees are 0.29049784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.56 % (19.903935057968734892762663864 CZK)\nThe limits being 0.10 % (3.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57855763 BTC (410,774.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 709,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,809,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.85 % (636,095.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,929.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00196774 BTC (3,560.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.06 CZK over 4414 transactions" + } + ] + }, + { + "id": 6113, + "type": "message", + "date": "2024-11-09T05:00:08", + "date_unixtime": "1731124808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004575 BTC for 82.70 CZK @ 1,807,620 CZK\nFees are 0.29045823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.55 % (19.883821072802568060966943565 CZK)\nThe limits being 0.10 % (3.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57860338 BTC (410,857.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,807,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.56 % (635,037.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,846.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00201349 BTC (3,639.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.06 CZK over 4415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004575 BTC for 82.70 CZK @ 1,807,620 CZK\nFees are 0.29045823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.55 % (19.883821072802568060966943565 CZK)\nThe limits being 0.10 % (3.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57860338 BTC (410,857.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,807,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.56 % (635,037.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,846.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00201349 BTC (3,639.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.06 CZK over 4415 transactions" + } + ] + }, + { + "id": 6114, + "type": "message", + "date": "2024-11-09T09:00:05", + "date_unixtime": "1731139205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004564 BTC for 82.69 CZK @ 1,811,873 CZK\nFees are 0.29044154 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (39.861198644359116449132680663 CZK)\nThe limits being 0.10 % (3.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57864902 BTC (410,940.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,811,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.13 % (637,497.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,763.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00205913 BTC (3,730.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.06 CZK over 4416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004564 BTC for 82.69 CZK @ 1,811,873 CZK\nFees are 0.29044154 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.07 % (39.861198644359116449132680663 CZK)\nThe limits being 0.10 % (3.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57864902 BTC (410,940.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,811,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.13 % (637,497.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,763.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00205913 BTC (3,730.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.06 CZK over 4416 transactions" + } + ] + }, + { + "id": 6115, + "type": "message", + "date": "2024-11-09T13:00:08", + "date_unixtime": "1731153608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004570 BTC for 82.71 CZK @ 1,809,755 CZK\nFees are 0.29048352 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (39.814618888158404010471010110 CZK)\nThe limits being 0.10 % (3.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57869472 BTC (411,023.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,809,755 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.80 % (636,272.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,680.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00210483 BTC (3,809.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.05 CZK over 4417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004570 BTC for 82.71 CZK @ 1,809,755 CZK\nFees are 0.29048352 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.05 % (39.814618888158404010471010110 CZK)\nThe limits being 0.10 % (3.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57869472 BTC (411,023.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,809,755 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.80 % (636,272.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,680.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00210483 BTC (3,809.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.05 CZK over 4417 transactions" + } + ] + }, + { + "id": 6116, + "type": "message", + "date": "2024-11-09T17:00:05", + "date_unixtime": "1731168005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004588 BTC for 82.69 CZK @ 1,802,389 CZK\nFees are 0.29044064 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.51 % (19.826280078574162184750930593 CZK)\nThe limits being 0.10 % (3.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57874060 BTC (411,106.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,802,389 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.73 % (632,009.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,597.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00215071 BTC (3,876.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.05 CZK over 4418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004588 BTC for 82.69 CZK @ 1,802,389 CZK\nFees are 0.29044064 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.51 % (19.826280078574162184750930593 CZK)\nThe limits being 0.10 % (3.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57874060 BTC (411,106.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,802,389 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.73 % (632,009.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,597.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00215071 BTC (3,876.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.05 CZK over 4418 transactions" + } + ] + }, + { + "id": 6117, + "type": "message", + "date": "2024-11-09T21:00:06", + "date_unixtime": "1731182406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004589 BTC for 82.71 CZK @ 1,802,300 CZK\nFees are 0.29048956 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (19.825298639768437403061826645 CZK)\nThe limits being 0.10 % (3.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57878649 BTC (411,189.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,802,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.69 % (631,957.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,514.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00219660 BTC (3,958.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.05 CZK over 4419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004589 BTC for 82.71 CZK @ 1,802,300 CZK\nFees are 0.29048956 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.50 % (19.825298639768437403061826645 CZK)\nThe limits being 0.10 % (3.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57878649 BTC (411,189.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,802,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.69 % (631,957.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,514.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00219660 BTC (3,958.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.05 CZK over 4419 transactions" + } + ] + }, + { + "id": 6118, + "type": "message", + "date": "2024-11-10T01:00:05", + "date_unixtime": "1731196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004564 BTC for 82.70 CZK @ 1,812,009 CZK\nFees are 0.29046339 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.96 % (79.72839619438887644340339050 CZK)\nThe limits being 0.10 % (4.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57883213 BTC (411,272.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,812,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.03 % (637,576.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,431.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00224224 BTC (4,062.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.05 CZK over 4420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004564 BTC for 82.70 CZK @ 1,812,009 CZK\nFees are 0.29046339 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.96 % (79.72839619438887644340339050 CZK)\nThe limits being 0.10 % (4.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57883213 BTC (411,272.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,812,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.03 % (637,576.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,431.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00224224 BTC (4,062.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.05 CZK over 4420 transactions" + } + ] + }, + { + "id": 6119, + "type": "message", + "date": "2024-11-10T05:00:06", + "date_unixtime": "1731211206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004534 BTC for 82.70 CZK @ 1,823,982 CZK\nFees are 0.29046079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (60.191409797952424564311631830 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57887747 BTC (411,355.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,823,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.68 % (644,506.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,348.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00228758 BTC (4,172.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.05 CZK over 4421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004534 BTC for 82.70 CZK @ 1,823,982 CZK\nFees are 0.29046079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.44 % (60.191409797952424564311631830 CZK)\nThe limits being 0.10 % (4.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57887747 BTC (411,355.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,823,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.68 % (644,506.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,348.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00228758 BTC (4,172.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.05 CZK over 4421 transactions" + } + ] + }, + { + "id": 6120, + "type": "message", + "date": "2024-11-10T09:00:05", + "date_unixtime": "1731225605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004447 BTC for 82.71 CZK @ 1,859,858 CZK\nFees are 0.29049076 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (40.916874092912270511720334801 CZK)\nThe limits being 0.10 % (4.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57892194 BTC (411,438.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.69 % (665,274.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,265.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00233205 BTC (4,337.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.04 CZK over 4422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004447 BTC for 82.71 CZK @ 1,859,858 CZK\nFees are 0.29049076 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (40.916874092912270511720334801 CZK)\nThe limits being 0.10 % (4.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57892194 BTC (411,438.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.69 % (665,274.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,265.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00233205 BTC (4,337.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.04 CZK over 4422 transactions" + } + ] + }, + { + "id": 6121, + "type": "message", + "date": "2024-11-10T13:00:07", + "date_unixtime": "1731240007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004388 BTC for 82.70 CZK @ 1,884,684 CZK\nFees are 0.29046278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (20.731519681116093672147483806 CZK)\nThe limits being 0.10 % (4.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57896582 BTC (411,521.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,884,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.15 % (679,646.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,182.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00237593 BTC (4,477.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.04 CZK over 4423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004388 BTC for 82.70 CZK @ 1,884,684 CZK\nFees are 0.29046278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.46 % (20.731519681116093672147483806 CZK)\nThe limits being 0.10 % (4.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57896582 BTC (411,521.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,884,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.15 % (679,646.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,182.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00237593 BTC (4,477.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.04 CZK over 4423 transactions" + } + ] + }, + { + "id": 6122, + "type": "message", + "date": "2024-11-10T17:00:05", + "date_unixtime": "1731254405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004392 BTC for 82.70 CZK @ 1,882,981 CZK\nFees are 0.29046498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (20.712795148219846203134203330 CZK)\nThe limits being 0.10 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57900974 BTC (411,604.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,882,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.88 % (678,660.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,099.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00241985 BTC (4,556.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.04 CZK over 4424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004392 BTC for 82.70 CZK @ 1,882,981 CZK\nFees are 0.29046498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.45 % (20.712795148219846203134203330 CZK)\nThe limits being 0.10 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57900974 BTC (411,604.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,882,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.88 % (678,660.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,099.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00241985 BTC (4,556.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.04 CZK over 4424 transactions" + } + ] + }, + { + "id": 6123, + "type": "message", + "date": "2024-11-10T21:00:06", + "date_unixtime": "1731268806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004395 BTC for 82.70 CZK @ 1,881,650 CZK\nFees are 0.29045788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (41.396301510810003440744651964 CZK)\nThe limits being 0.10 % (4.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57905369 BTC (411,687.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 710,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,881,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.66 % (677,889.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,016.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00246380 BTC (4,636.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.04 CZK over 4425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004395 BTC for 82.70 CZK @ 1,881,650 CZK\nFees are 0.29045788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.89 % (41.396301510810003440744651964 CZK)\nThe limits being 0.10 % (4.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57905369 BTC (411,687.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 710,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,881,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.66 % (677,889.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,016.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00246380 BTC (4,636.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.04 CZK over 4425 transactions" + } + ] + }, + { + "id": 6124, + "type": "message", + "date": "2024-11-11T01:00:06", + "date_unixtime": "1731283206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004353 BTC for 82.70 CZK @ 1,899,734 CZK\nFees are 0.29044699 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (41.794148194620001600188451379 CZK)\nThe limits being 0.10 % (4.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57909722 BTC (411,770.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,899,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.17 % (688,360.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,933.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00250733 BTC (4,763.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.03 CZK over 4426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004353 BTC for 82.70 CZK @ 1,899,734 CZK\nFees are 0.29044699 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (41.794148194620001600188451379 CZK)\nThe limits being 0.10 % (4.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57909722 BTC (411,770.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,899,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.17 % (688,360.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,933.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00250733 BTC (4,763.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.03 CZK over 4426 transactions" + } + ] + }, + { + "id": 6125, + "type": "message", + "date": "2024-11-11T05:00:06", + "date_unixtime": "1731297606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004286 BTC for 82.69 CZK @ 1,929,406 CZK\nFees are 0.29044316 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (21.223463203565867573618327454 CZK)\nThe limits being 0.10 % (4.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57914008 BTC (411,853.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,929,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.31 % (705,542.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,850.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00255019 BTC (4,920.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.03 CZK over 4427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004286 BTC for 82.69 CZK @ 1,929,406 CZK\nFees are 0.29044316 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.43 % (21.223463203565867573618327454 CZK)\nThe limits being 0.10 % (4.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57914008 BTC (411,853.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,929,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.31 % (705,542.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,850.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00255019 BTC (4,920.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.03 CZK over 4427 transactions" + } + ] + }, + { + "id": 6126, + "type": "message", + "date": "2024-11-11T09:00:06", + "date_unixtime": "1731312006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004299 BTC for 82.69 CZK @ 1,923,555 CZK\nFees are 0.29044073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (42.318214547293359030784670497 CZK)\nThe limits being 0.10 % (4.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57918307 BTC (411,936.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,237 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,923,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.45 % (702,154.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,767.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00259318 BTC (4,988.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.03 CZK over 4428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004299 BTC for 82.69 CZK @ 1,923,555 CZK\nFees are 0.29044073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.85 % (42.318214547293359030784670497 CZK)\nThe limits being 0.10 % (4.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57918307 BTC (411,936.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,237 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,923,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.45 % (702,154.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,767.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00259318 BTC (4,988.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.03 CZK over 4428 transactions" + } + ] + }, + { + "id": 6127, + "type": "message", + "date": "2024-11-11T13:00:06", + "date_unixtime": "1731326406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004240 BTC for 82.71 CZK @ 1,950,644 CZK\nFees are 0.29048866 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (42.914157519436688571133109586 CZK)\nThe limits being 0.10 % (5.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57922547 BTC (412,019.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,950,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.23 % (717,843.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,684.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00263558 BTC (5,141.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.03 CZK over 4429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004240 BTC for 82.71 CZK @ 1,950,644 CZK\nFees are 0.29048866 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (42.914157519436688571133109586 CZK)\nThe limits being 0.10 % (5.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57922547 BTC (412,019.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,950,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.23 % (717,843.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,684.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00263558 BTC (5,141.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.03 CZK over 4429 transactions" + } + ] + }, + { + "id": 6128, + "type": "message", + "date": "2024-11-11T17:00:09", + "date_unixtime": "1731340809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004125 BTC for 82.71 CZK @ 2,004,974 CZK\nFees are 0.29048119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (66.164126772296960637767812654 CZK)\nThe limits being 0.10 % (5.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57926672 BTC (412,102.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,004,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.83 % (749,312.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,601.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00267683 BTC (5,366.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.03 CZK over 4430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004125 BTC for 82.71 CZK @ 2,004,974 CZK\nFees are 0.29048119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (66.164126772296960637767812654 CZK)\nThe limits being 0.10 % (5.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57926672 BTC (412,102.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,004,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.83 % (749,312.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,601.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00267683 BTC (5,366.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.03 CZK over 4430 transactions" + } + ] + }, + { + "id": 6129, + "type": "message", + "date": "2024-11-11T21:00:05", + "date_unixtime": "1731355205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004042 BTC for 82.70 CZK @ 2,046,076 CZK\nFees are 0.29047143 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (90.02732996116758095798796247 CZK)\nThe limits being 0.10 % (5.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57930714 BTC (412,185.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,046,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.57 % (773,121.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,518.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00271725 BTC (5,559.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.02 CZK over 4431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004042 BTC for 82.70 CZK @ 2,046,076 CZK\nFees are 0.29047143 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.62 % (90.02732996116758095798796247 CZK)\nThe limits being 0.10 % (5.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57930714 BTC (412,185.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,046,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.57 % (773,121.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,518.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00271725 BTC (5,559.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.02 CZK over 4431 transactions" + } + ] + }, + { + "id": 6130, + "type": "message", + "date": "2024-11-12T01:00:05", + "date_unixtime": "1731369605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003959 BTC for 82.70 CZK @ 2,088,879 CZK\nFees are 0.29045859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.00 % (114.88834781221018176719949487 CZK)\nThe limits being 0.10 % (5.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57934673 BTC (412,268.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,088,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.54 % (797,917.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,435.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00275684 BTC (5,758.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.02 CZK over 4432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003959 BTC for 82.70 CZK @ 2,088,879 CZK\nFees are 0.29045859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.00 % (114.88834781221018176719949487 CZK)\nThe limits being 0.10 % (5.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57934673 BTC (412,268.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,088,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.54 % (797,917.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,435.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00275684 BTC (5,758.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.02 CZK over 4432 transactions" + } + ] + }, + { + "id": 6131, + "type": "message", + "date": "2024-11-12T05:00:06", + "date_unixtime": "1731384006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003981 BTC for 82.70 CZK @ 2,077,443 CZK\nFees are 0.29047358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.97 % (114.25934469247110120856830282 CZK)\nThe limits being 0.10 % (5.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57938654 BTC (412,351.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,703 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,077,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 191.90 % (791,291.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,352.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00279665 BTC (5,809.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.02 CZK over 4433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003981 BTC for 82.70 CZK @ 2,077,443 CZK\nFees are 0.29047358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.97 % (114.25934469247110120856830282 CZK)\nThe limits being 0.10 % (5.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57938654 BTC (412,351.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,703 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,077,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 191.90 % (791,291.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,352.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00279665 BTC (5,809.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.02 CZK over 4433 transactions" + } + ] + }, + { + "id": 6132, + "type": "message", + "date": "2024-11-12T09:00:08", + "date_unixtime": "1731398408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003910 BTC for 82.71 CZK @ 2,115,257 CZK\nFees are 0.29048602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.94 % (116.33911310413552566018933731 CZK)\nThe limits being 0.10 % (6.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57942564 BTC (412,434.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,115,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 197.17 % (813,199.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,269.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00283575 BTC (5,998.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.02 CZK over 4434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003910 BTC for 82.71 CZK @ 2,115,257 CZK\nFees are 0.29048602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.94 % (116.33911310413552566018933731 CZK)\nThe limits being 0.10 % (6.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57942564 BTC (412,434.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,115,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 197.17 % (813,199.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,269.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00283575 BTC (5,998.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.02 CZK over 4434 transactions" + } + ] + }, + { + "id": 6133, + "type": "message", + "date": "2024-11-12T13:00:05", + "date_unixtime": "1731412805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004009 BTC for 82.70 CZK @ 2,062,845 CZK\nFees are 0.29046121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (45.382597811128249927946127191 CZK)\nThe limits being 0.10 % (5.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57946573 BTC (412,517.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,062,845 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.77 % (782,830.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,186.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00287584 BTC (5,932.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.01 CZK over 4435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004009 BTC for 82.70 CZK @ 2,062,845 CZK\nFees are 0.29046121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (45.382597811128249927946127191 CZK)\nThe limits being 0.10 % (5.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57946573 BTC (412,517.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,062,845 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.77 % (782,830.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,186.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00287584 BTC (5,932.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.01 CZK over 4435 transactions" + } + ] + }, + { + "id": 6134, + "type": "message", + "date": "2024-11-12T17:00:08", + "date_unixtime": "1731427208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004078 BTC for 82.69 CZK @ 2,027,760 CZK\nFees are 0.29043519 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (44.610723636961659205043260797 CZK)\nThe limits being 0.10 % (5.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57950651 BTC (412,600.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 711,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,027,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.80 % (762,500.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,103.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00291662 BTC (5,914.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.01 CZK over 4436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004078 BTC for 82.69 CZK @ 2,027,760 CZK\nFees are 0.29043519 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.75 % (44.610723636961659205043260797 CZK)\nThe limits being 0.10 % (5.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57950651 BTC (412,600.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 711,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,027,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.80 % (762,500.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,103.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00291662 BTC (5,914.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.01 CZK over 4436 transactions" + } + ] + }, + { + "id": 6135, + "type": "message", + "date": "2024-11-12T21:00:05", + "date_unixtime": "1731441605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004045 BTC for 82.71 CZK @ 2,044,668 CZK\nFees are 0.29048706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.49 % (89.96540006245138307641425592 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57954696 BTC (412,683.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,044,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.14 % (772,298.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,020.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00295707 BTC (6,046.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.01 CZK over 4437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004045 BTC for 82.71 CZK @ 2,044,668 CZK\nFees are 0.29048706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.49 % (89.96540006245138307641425592 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57954696 BTC (412,683.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,044,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.14 % (772,298.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,020.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00295707 BTC (6,046.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.01 CZK over 4437 transactions" + } + ] + }, + { + "id": 6136, + "type": "message", + "date": "2024-11-13T01:00:05", + "date_unixtime": "1731456005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004099 BTC for 82.71 CZK @ 2,017,723 CZK\nFees are 0.29048582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.47 % (88.77982179813930093173526714 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57958795 BTC (412,766.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,172 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,017,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.32 % (756,681.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,937.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00299806 BTC (6,049.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.01 CZK over 4438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004099 BTC for 82.71 CZK @ 2,017,723 CZK\nFees are 0.29048582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.47 % (88.77982179813930093173526714 CZK)\nThe limits being 0.10 % (6.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57958795 BTC (412,766.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,172 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,017,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.32 % (756,681.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,937.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00299806 BTC (6,049.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.01 CZK over 4438 transactions" + } + ] + }, + { + "id": 6137, + "type": "message", + "date": "2024-11-13T05:00:08", + "date_unixtime": "1731470408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003970 BTC for 82.71 CZK @ 2,083,262 CZK\nFees are 0.29048241 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (68.747649052497618536633119096 CZK)\nThe limits being 0.10 % (6.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57962765 BTC (412,849.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,083,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.48 % (794,667.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,854.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00303776 BTC (6,328.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.00 CZK over 4439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003970 BTC for 82.71 CZK @ 2,083,262 CZK\nFees are 0.29048241 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.09 % (68.747649052497618536633119096 CZK)\nThe limits being 0.10 % (6.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57962765 BTC (412,849.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,083,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.48 % (794,667.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,854.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00303776 BTC (6,328.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.00 CZK over 4439 transactions" + } + ] + }, + { + "id": 6138, + "type": "message", + "date": "2024-11-13T09:00:05", + "date_unixtime": "1731484805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003956 BTC for 82.70 CZK @ 2,090,578 CZK\nFees are 0.29047458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (45.992722023977756315988076115 CZK)\nThe limits being 0.10 % (6.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57966721 BTC (412,932.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,090,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.47 % (798,907.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,771.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00307732 BTC (6,433.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.00 CZK over 4440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003956 BTC for 82.70 CZK @ 2,090,578 CZK\nFees are 0.29047458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (45.992722023977756315988076115 CZK)\nThe limits being 0.10 % (6.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57966721 BTC (412,932.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,090,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.47 % (798,907.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,771.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00307732 BTC (6,433.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.00 CZK over 4440 transactions" + } + ] + }, + { + "id": 6139, + "type": "message", + "date": "2024-11-13T13:00:05", + "date_unixtime": "1731499205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003951 BTC for 82.71 CZK @ 2,093,361 CZK\nFees are 0.29049363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (69.080919262459902111781127480 CZK)\nThe limits being 0.10 % (6.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57970672 BTC (413,015.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,093,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.82 % (800,520.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,688.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00311683 BTC (6,524.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.00 CZK over 4441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003951 BTC for 82.71 CZK @ 2,093,361 CZK\nFees are 0.29049363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (69.080919262459902111781127480 CZK)\nThe limits being 0.10 % (6.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57970672 BTC (413,015.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,093,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.82 % (800,520.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,688.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00311683 BTC (6,524.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.00 CZK over 4441 transactions" + } + ] + }, + { + "id": 6140, + "type": "message", + "date": "2024-11-13T17:00:07", + "date_unixtime": "1731513607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003737 BTC for 82.70 CZK @ 2,213,000 CZK\nFees are 0.29046234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (97.37197807673143996013951171 CZK)\nThe limits being 0.10 % (6.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57974409 BTC (413,098.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,213,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.57 % (869,875.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,605.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00315420 BTC (6,980.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.00 CZK over 4442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003737 BTC for 82.70 CZK @ 2,213,000 CZK\nFees are 0.29046234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.39 % (97.37197807673143996013951171 CZK)\nThe limits being 0.10 % (6.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57974409 BTC (413,098.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,213,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.57 % (869,875.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,605.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00315420 BTC (6,980.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.00 CZK over 4442 transactions" + } + ] + }, + { + "id": 6141, + "type": "message", + "date": "2024-11-13T21:00:07", + "date_unixtime": "1731528007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003823 BTC for 82.69 CZK @ 2,163,064 CZK\nFees are 0.29044183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.07 % (142.76225096076888098039284685 CZK)\nThe limits being 0.10 % (6.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57978232 BTC (413,181.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,163,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.52 % (840,925.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,522.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00319243 BTC (6,905.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 93.00 CZK over 4443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003823 BTC for 82.69 CZK @ 2,163,064 CZK\nFees are 0.29044183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.07 % (142.76225096076888098039284685 CZK)\nThe limits being 0.10 % (6.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57978232 BTC (413,181.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,163,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.52 % (840,925.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,522.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00319243 BTC (6,905.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 93.00 CZK over 4443 transactions" + } + ] + }, + { + "id": 6142, + "type": "message", + "date": "2024-11-14T01:00:05", + "date_unixtime": "1731542405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003817 BTC for 82.71 CZK @ 2,166,779 CZK\nFees are 0.29048394 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (143.00739015175990660928824044 CZK)\nThe limits being 0.10 % (7.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57982049 BTC (413,264.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,166,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.00 % (843,078.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,439.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00323060 BTC (7,000.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.99 CZK over 4444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003817 BTC for 82.71 CZK @ 2,166,779 CZK\nFees are 0.29048394 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.04 % (143.00739015175990660928824044 CZK)\nThe limits being 0.10 % (7.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57982049 BTC (413,264.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,166,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.00 % (843,078.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,439.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00323060 BTC (7,000.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.99 CZK over 4444 transactions" + } + ] + }, + { + "id": 6143, + "type": "message", + "date": "2024-11-14T05:00:05", + "date_unixtime": "1731556805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003830 BTC for 82.70 CZK @ 2,159,145 CZK\nFees are 0.29044636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.68 % (118.75295671546454250853084700 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57985879 BTC (413,347.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,159,145 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.89 % (838,651.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,356.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00326890 BTC (7,058.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.99 CZK over 4445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003830 BTC for 82.70 CZK @ 2,159,145 CZK\nFees are 0.29044636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.68 % (118.75295671546454250853084700 CZK)\nThe limits being 0.10 % (7.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57985879 BTC (413,347.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,159,145 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.89 % (838,651.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,356.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00326890 BTC (7,058.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.99 CZK over 4445 transactions" + } + ] + }, + { + "id": 6144, + "type": "message", + "date": "2024-11-14T09:00:08", + "date_unixtime": "1731571208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003797 BTC for 82.70 CZK @ 2,178,054 CZK\nFees are 0.29046552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.66 % (119.79295119701534489702160426 CZK)\nThe limits being 0.10 % (7.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57989676 BTC (413,430.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 712,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,178,054 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.50 % (849,616.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,273.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00330687 BTC (7,202.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.99 CZK over 4446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003797 BTC for 82.70 CZK @ 2,178,054 CZK\nFees are 0.29046552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.66 % (119.79295119701534489702160426 CZK)\nThe limits being 0.10 % (7.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57989676 BTC (413,430.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 712,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,178,054 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.50 % (849,616.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,273.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00330687 BTC (7,202.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.99 CZK over 4446 transactions" + } + ] + }, + { + "id": 6145, + "type": "message", + "date": "2024-11-14T13:00:05", + "date_unixtime": "1731585605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003758 BTC for 82.69 CZK @ 2,200,341 CZK\nFees are 0.29042380 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.64 % (121.01875743307153011293893406 CZK)\nThe limits being 0.10 % (7.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57993434 BTC (413,513.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,200,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.59 % (862,540.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,190.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00334445 BTC (7,358.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.99 CZK over 4447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003758 BTC for 82.69 CZK @ 2,200,341 CZK\nFees are 0.29042380 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.64 % (121.01875743307153011293893406 CZK)\nThe limits being 0.10 % (7.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57993434 BTC (413,513.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,200,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.59 % (862,540.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,190.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00334445 BTC (7,358.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.99 CZK over 4447 transactions" + } + ] + }, + { + "id": 6146, + "type": "message", + "date": "2024-11-14T17:00:05", + "date_unixtime": "1731600005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003914 BTC for 82.70 CZK @ 2,113,035 CZK\nFees are 0.29047780 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (92.97354356838444086474039890 CZK)\nThe limits being 0.10 % (7.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.57997348 BTC (413,596.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,113,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 196.30 % (811,908.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,107.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00338359 BTC (7,149.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.98 CZK over 4448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003914 BTC for 82.70 CZK @ 2,113,035 CZK\nFees are 0.29047780 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.30 % (92.97354356838444086474039890 CZK)\nThe limits being 0.10 % (7.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.57997348 BTC (413,596.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,113,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 196.30 % (811,908.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,107.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00338359 BTC (7,149.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.98 CZK over 4448 transactions" + } + ] + }, + { + "id": 6147, + "type": "message", + "date": "2024-11-14T21:00:07", + "date_unixtime": "1731614407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003849 BTC for 82.70 CZK @ 2,148,710 CZK\nFees are 0.29047655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (118.17903546472770090342414177 CZK)\nThe limits being 0.10 % (7.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58001197 BTC (413,679.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,225 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,148,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.27 % (832,598.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,024.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00342208 BTC (7,353.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.98 CZK over 4449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003849 BTC for 82.70 CZK @ 2,148,710 CZK\nFees are 0.29047655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.61 % (118.17903546472770090342414177 CZK)\nThe limits being 0.10 % (7.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58001197 BTC (413,679.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,225 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,148,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.27 % (832,598.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,024.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00342208 BTC (7,353.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.98 CZK over 4449 transactions" + } + ] + }, + { + "id": 6148, + "type": "message", + "date": "2024-11-15T01:00:06", + "date_unixtime": "1731628806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003936 BTC for 82.69 CZK @ 2,100,963 CZK\nFees are 0.29044167 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (138.66356335903605672828028729 CZK)\nThe limits being 0.10 % (7.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58005133 BTC (413,762.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,100,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.53 % (804,904.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,941.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00346144 BTC (7,272.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.98 CZK over 4450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003936 BTC for 82.69 CZK @ 2,100,963 CZK\nFees are 0.29044167 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.91 % (138.66356335903605672828028729 CZK)\nThe limits being 0.10 % (7.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58005133 BTC (413,762.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,100,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.53 % (804,904.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,941.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00346144 BTC (7,272.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.98 CZK over 4450 transactions" + } + ] + }, + { + "id": 6149, + "type": "message", + "date": "2024-11-15T05:00:06", + "date_unixtime": "1731643206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003897 BTC for 82.71 CZK @ 2,122,295 CZK\nFees are 0.29048359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (140.07147614910553631957126194 CZK)\nThe limits being 0.10 % (7.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58009030 BTC (413,845.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,122,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 197.48 % (817,277.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,858.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00350041 BTC (7,428.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.98 CZK over 4451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003897 BTC for 82.71 CZK @ 2,122,295 CZK\nFees are 0.29048359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (140.07147614910553631957126194 CZK)\nThe limits being 0.10 % (7.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58009030 BTC (413,845.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,122,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 197.48 % (817,277.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,858.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00350041 BTC (7,428.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.98 CZK over 4451 transactions" + } + ] + }, + { + "id": 6150, + "type": "message", + "date": "2024-11-15T09:00:06", + "date_unixtime": "1731657606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003928 BTC for 82.69 CZK @ 2,105,239 CZK\nFees are 0.29044122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.86 % (138.94575463119407937798154524 CZK)\nThe limits being 0.10 % (7.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58012958 BTC (413,928.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,105,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 195.05 % (807,383.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,775.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00353969 BTC (7,451.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.98 CZK over 4452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003928 BTC for 82.69 CZK @ 2,105,239 CZK\nFees are 0.29044122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.86 % (138.94575463119407937798154524 CZK)\nThe limits being 0.10 % (7.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58012958 BTC (413,928.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,105,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 195.05 % (807,383.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,775.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00353969 BTC (7,451.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.98 CZK over 4452 transactions" + } + ] + }, + { + "id": 6151, + "type": "message", + "date": "2024-11-15T13:00:08", + "date_unixtime": "1731672008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003850 BTC for 82.69 CZK @ 2,147,918 CZK\nFees are 0.29044493 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (47.254190891878425510712506230 CZK)\nThe limits being 0.10 % (7.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58016808 BTC (414,011.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,147,918 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.00 % (832,142.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,692.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00357819 BTC (7,685.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.97 CZK over 4453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003850 BTC for 82.69 CZK @ 2,147,918 CZK\nFees are 0.29044493 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (47.254190891878425510712506230 CZK)\nThe limits being 0.10 % (7.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58016808 BTC (414,011.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,147,918 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.00 % (832,142.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,692.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00357819 BTC (7,685.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.97 CZK over 4453 transactions" + } + ] + }, + { + "id": 6152, + "type": "message", + "date": "2024-11-15T17:00:06", + "date_unixtime": "1731686406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003887 BTC for 82.69 CZK @ 2,127,357 CZK\nFees are 0.29042920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (46.801846773237327701385772382 CZK)\nThe limits being 0.10 % (7.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58020695 BTC (414,093.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,127,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 198.07 % (820,213.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,609.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00361706 BTC (7,694.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.97 CZK over 4454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003887 BTC for 82.69 CZK @ 2,127,357 CZK\nFees are 0.29042920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (46.801846773237327701385772382 CZK)\nThe limits being 0.10 % (7.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58020695 BTC (414,093.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,127,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 198.07 % (820,213.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,609.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00361706 BTC (7,694.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.97 CZK over 4454 transactions" + } + ] + }, + { + "id": 6153, + "type": "message", + "date": "2024-11-15T21:00:05", + "date_unixtime": "1731700805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003811 BTC for 82.71 CZK @ 2,170,273 CZK\nFees are 0.29049509 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 9.03 % (716.19019670460656137002516906 CZK)\nThe limits being 0.10 % (7.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58024506 BTC (414,176.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,170,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.05 % (845,113.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,526.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00365517 BTC (7,932.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.97 CZK over 4455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003811 BTC for 82.71 CZK @ 2,170,273 CZK\nFees are 0.29049509 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 9.03 % (716.19019670460656137002516906 CZK)\nThe limits being 0.10 % (7.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58024506 BTC (414,176.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,170,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.05 % (845,113.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,526.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00365517 BTC (7,932.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.97 CZK over 4455 transactions" + } + ] + }, + { + "id": 6154, + "type": "message", + "date": "2024-11-16T01:00:07", + "date_unixtime": "1731715207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003782 BTC for 82.70 CZK @ 2,186,595 CZK\nFees are 0.29045260 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.94 % (721.57631165326434159447749900 CZK)\nThe limits being 0.10 % (8.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58028288 BTC (414,259.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,186,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.29 % (854,583.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,443.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00369299 BTC (8,075.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.97 CZK over 4456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003782 BTC for 82.70 CZK @ 2,186,595 CZK\nFees are 0.29045260 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.94 % (721.57631165326434159447749900 CZK)\nThe limits being 0.10 % (8.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58028288 BTC (414,259.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,186,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.29 % (854,583.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,443.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00369299 BTC (8,075.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.97 CZK over 4456 transactions" + } + ] + }, + { + "id": 6155, + "type": "message", + "date": "2024-11-16T05:00:06", + "date_unixtime": "1731729606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003773 BTC for 82.70 CZK @ 2,191,961 CZK\nFees are 0.29047255 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.85 % (723.34720251713754047422940993 CZK)\nThe limits being 0.10 % (8.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58032061 BTC (414,342.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 713,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,191,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.00 % (857,697.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,360.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00373072 BTC (8,177.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.96 CZK over 4457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003773 BTC for 82.70 CZK @ 2,191,961 CZK\nFees are 0.29047255 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 8.85 % (723.34720251713754047422940993 CZK)\nThe limits being 0.10 % (8.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58032061 BTC (414,342.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 713,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,191,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.00 % (857,697.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,360.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00373072 BTC (8,177.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.96 CZK over 4457 transactions" + } + ] + }, + { + "id": 6156, + "type": "message", + "date": "2024-11-16T09:00:05", + "date_unixtime": "1731744005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003776 BTC for 82.70 CZK @ 2,190,052 CZK\nFees are 0.29045037 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (72.271731717590129462136758634 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58035837 BTC (414,425.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,086 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,190,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.69 % (856,589.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,277.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00376848 BTC (8,253.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.96 CZK over 4458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003776 BTC for 82.70 CZK @ 2,190,052 CZK\nFees are 0.29045037 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (72.271731717590129462136758634 CZK)\nThe limits being 0.10 % (8.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58035837 BTC (414,425.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,086 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,190,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.69 % (856,589.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,277.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00376848 BTC (8,253.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.96 CZK over 4458 transactions" + } + ] + }, + { + "id": 6157, + "type": "message", + "date": "2024-11-16T13:00:05", + "date_unixtime": "1731758405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003780 BTC for 82.71 CZK @ 2,187,980 CZK\nFees are 0.29048294 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (48.135567189440134133706629970 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58039617 BTC (414,508.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,187,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.36 % (855,386.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,194.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00380628 BTC (8,328.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.96 CZK over 4459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003780 BTC for 82.71 CZK @ 2,187,980 CZK\nFees are 0.29048294 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (48.135567189440134133706629970 CZK)\nThe limits being 0.10 % (8.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58039617 BTC (414,508.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,187,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.36 % (855,386.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,194.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00380628 BTC (8,328.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.96 CZK over 4459 transactions" + } + ] + }, + { + "id": 6158, + "type": "message", + "date": "2024-11-16T17:00:07", + "date_unixtime": "1731772807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003811 BTC for 82.71 CZK @ 2,170,277 CZK\nFees are 0.29049563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (23.873050665101951618560961589 CZK)\nThe limits being 0.10 % (8.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58043428 BTC (414,591.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,170,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.84 % (845,111.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,111.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00384439 BTC (8,343.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.96 CZK over 4460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003811 BTC for 82.71 CZK @ 2,170,277 CZK\nFees are 0.29049563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.29 % (23.873050665101951618560961589 CZK)\nThe limits being 0.10 % (8.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58043428 BTC (414,591.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,170,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.84 % (845,111.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,111.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00384439 BTC (8,343.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.96 CZK over 4460 transactions" + } + ] + }, + { + "id": 6159, + "type": "message", + "date": "2024-11-16T21:00:05", + "date_unixtime": "1731787205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003793 BTC for 82.70 CZK @ 2,180,257 CZK\nFees are 0.29045308 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.982828474449629302976098289 CZK)\nThe limits being 0.10 % (8.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58047221 BTC (414,674.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,180,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.20 % (850,903.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,028.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00388232 BTC (8,464.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.96 CZK over 4461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003793 BTC for 82.70 CZK @ 2,180,257 CZK\nFees are 0.29045308 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.982828474449629302976098289 CZK)\nThe limits being 0.10 % (8.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58047221 BTC (414,674.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,180,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.20 % (850,903.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,028.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00388232 BTC (8,464.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.96 CZK over 4461 transactions" + } + ] + }, + { + "id": 6160, + "type": "message", + "date": "2024-11-17T01:00:05", + "date_unixtime": "1731801605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003805 BTC for 82.69 CZK @ 2,173,314 CZK\nFees are 0.29044408 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.906452671366380611355655993 CZK)\nThe limits being 0.10 % (8.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58051026 BTC (414,757.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,173,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.18 % (846,873.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,945.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00392037 BTC (8,520.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.95 CZK over 4462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003805 BTC for 82.69 CZK @ 2,173,314 CZK\nFees are 0.29044408 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.906452671366380611355655993 CZK)\nThe limits being 0.10 % (8.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58051026 BTC (414,757.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,173,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.18 % (846,873.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,945.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00392037 BTC (8,520.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.95 CZK over 4462 transactions" + } + ] + }, + { + "id": 6161, + "type": "message", + "date": "2024-11-17T05:00:05", + "date_unixtime": "1731816005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003820 BTC for 82.70 CZK @ 2,164,795 CZK\nFees are 0.29044607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.812741791426342878459423432 CZK)\nThe limits being 0.10 % (8.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58054846 BTC (414,840.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,164,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.95 % (841,927.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,862.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00395857 BTC (8,569.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.95 CZK over 4463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003820 BTC for 82.70 CZK @ 2,164,795 CZK\nFees are 0.29044607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.812741791426342878459423432 CZK)\nThe limits being 0.10 % (8.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58054846 BTC (414,840.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,164,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.95 % (841,927.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,862.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00395857 BTC (8,569.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.95 CZK over 4463 transactions" + } + ] + }, + { + "id": 6162, + "type": "message", + "date": "2024-11-17T09:00:07", + "date_unixtime": "1731830407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003807 BTC for 82.70 CZK @ 2,172,434 CZK\nFees are 0.29047906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.896770611501719291123044652 CZK)\nThe limits being 0.10 % (8.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58058653 BTC (414,923.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,172,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.98 % (846,361.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,779.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00399664 BTC (8,682.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.95 CZK over 4464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003807 BTC for 82.70 CZK @ 2,172,434 CZK\nFees are 0.29047906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.28 % (23.896770611501719291123044652 CZK)\nThe limits being 0.10 % (8.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58058653 BTC (414,923.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,172,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.98 % (846,361.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,779.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00399664 BTC (8,682.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.95 CZK over 4464 transactions" + } + ] + }, + { + "id": 6163, + "type": "message", + "date": "2024-11-17T13:00:07", + "date_unixtime": "1731844807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003798 BTC for 82.69 CZK @ 2,177,298 CZK\nFees are 0.29044119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (23.950275577605815139376584272 CZK)\nThe limits being 0.10 % (8.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58062451 BTC (415,006.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,177,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.62 % (849,185.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,696.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00403462 BTC (8,784.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.95 CZK over 4465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003798 BTC for 82.69 CZK @ 2,177,298 CZK\nFees are 0.29044119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (23.950275577605815139376584272 CZK)\nThe limits being 0.10 % (8.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58062451 BTC (415,006.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,177,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.62 % (849,185.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,696.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00403462 BTC (8,784.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.95 CZK over 4465 transactions" + } + ] + }, + { + "id": 6164, + "type": "message", + "date": "2024-11-17T17:00:06", + "date_unixtime": "1731859206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003818 BTC for 82.69 CZK @ 2,165,884 CZK\nFees are 0.29044013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (47.649457159240719294934987886 CZK)\nThe limits being 0.10 % (8.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58066269 BTC (415,089.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,165,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.98 % (842,558.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,613.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00407280 BTC (8,821.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.94 CZK over 4466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003818 BTC for 82.69 CZK @ 2,165,884 CZK\nFees are 0.29044013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (47.649457159240719294934987886 CZK)\nThe limits being 0.10 % (8.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58066269 BTC (415,089.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,165,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.98 % (842,558.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,613.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00407280 BTC (8,821.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.94 CZK over 4466 transactions" + } + ] + }, + { + "id": 6165, + "type": "message", + "date": "2024-11-17T21:00:05", + "date_unixtime": "1731873605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003828 BTC for 82.70 CZK @ 2,160,464 CZK\nFees are 0.29047207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (23.765103408186290511943828785 CZK)\nThe limits being 0.10 % (8.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58070097 BTC (415,172.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 714,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,160,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.18 % (839,410.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,530.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00411108 BTC (8,881.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.94 CZK over 4467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003828 BTC for 82.70 CZK @ 2,160,464 CZK\nFees are 0.29047207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (23.765103408186290511943828785 CZK)\nThe limits being 0.10 % (8.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58070097 BTC (415,172.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 714,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,160,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.18 % (839,410.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,530.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00411108 BTC (8,881.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.94 CZK over 4467 transactions" + } + ] + }, + { + "id": 6166, + "type": "message", + "date": "2024-11-18T01:00:07", + "date_unixtime": "1731888007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003838 BTC for 82.69 CZK @ 2,154,570 CZK\nFees are 0.29043641 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (23.700273299314826455503704726 CZK)\nThe limits being 0.10 % (8.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58073935 BTC (415,255.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,154,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.32 % (835,987.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,447.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00414946 BTC (8,940.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.94 CZK over 4468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003838 BTC for 82.69 CZK @ 2,154,570 CZK\nFees are 0.29043641 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.27 % (23.700273299314826455503704726 CZK)\nThe limits being 0.10 % (8.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58073935 BTC (415,255.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,154,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.32 % (835,987.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,447.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00414946 BTC (8,940.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.94 CZK over 4468 transactions" + } + ] + }, + { + "id": 6167, + "type": "message", + "date": "2024-11-18T05:00:05", + "date_unixtime": "1731902405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003806 BTC for 82.70 CZK @ 2,172,937 CZK\nFees are 0.29047003 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (23.902306369901875228607388590 CZK)\nThe limits being 0.10 % (9.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58077741 BTC (415,338.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,172,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.85 % (846,653.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,364.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00418752 BTC (9,099.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.94 CZK over 4469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003806 BTC for 82.70 CZK @ 2,172,937 CZK\nFees are 0.29047003 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.26 % (23.902306369901875228607388590 CZK)\nThe limits being 0.10 % (9.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58077741 BTC (415,338.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,172,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.85 % (846,653.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,364.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00418752 BTC (9,099.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.94 CZK over 4469 transactions" + } + ] + }, + { + "id": 6168, + "type": "message", + "date": "2024-11-18T09:00:05", + "date_unixtime": "1731916805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003755 BTC for 82.69 CZK @ 2,202,155 CZK\nFees are 0.29043113 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (48.447400120881840323183106793 CZK)\nThe limits being 0.10 % (9.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58081496 BTC (415,421.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,202,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.89 % (863,622.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,281.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00422507 BTC (9,304.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.94 CZK over 4470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003755 BTC for 82.69 CZK @ 2,202,155 CZK\nFees are 0.29043113 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (48.447400120881840323183106793 CZK)\nThe limits being 0.10 % (9.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58081496 BTC (415,421.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,202,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.89 % (863,622.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,281.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00422507 BTC (9,304.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.94 CZK over 4470 transactions" + } + ] + }, + { + "id": 6169, + "type": "message", + "date": "2024-11-18T13:00:05", + "date_unixtime": "1731931205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003815 BTC for 82.70 CZK @ 2,167,698 CZK\nFees are 0.29045491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (47.689354307368509038809775225 CZK)\nThe limits being 0.10 % (9.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58085311 BTC (415,504.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,167,698 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.03 % (843,609.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,198.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00426322 BTC (9,241.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.93 CZK over 4471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003815 BTC for 82.70 CZK @ 2,167,698 CZK\nFees are 0.29045491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (47.689354307368509038809775225 CZK)\nThe limits being 0.10 % (9.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58085311 BTC (415,504.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,167,698 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.03 % (843,609.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,198.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00426322 BTC (9,241.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.93 CZK over 4471 transactions" + } + ] + }, + { + "id": 6170, + "type": "message", + "date": "2024-11-18T17:00:06", + "date_unixtime": "1731945606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003730 BTC for 82.70 CZK @ 2,217,060 CZK\nFees are 0.29045016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (48.775311011459890383657199801 CZK)\nThe limits being 0.10 % (9.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58089041 BTC (415,587.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,432 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,217,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.89 % (872,280.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,115.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00430052 BTC (9,534.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.93 CZK over 4472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003730 BTC for 82.70 CZK @ 2,217,060 CZK\nFees are 0.29045016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (48.775311011459890383657199801 CZK)\nThe limits being 0.10 % (9.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58089041 BTC (415,587.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,432 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,217,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.89 % (872,280.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,115.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00430052 BTC (9,534.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.93 CZK over 4472 transactions" + } + ] + }, + { + "id": 6171, + "type": "message", + "date": "2024-11-18T21:00:05", + "date_unixtime": "1731960005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003809 BTC for 82.70 CZK @ 2,171,167 CZK\nFees are 0.29046214 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.03 % (191.06265578273365353057420581 CZK)\nThe limits being 0.10 % (9.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58092850 BTC (415,670.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,171,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.44 % (845,621.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,032.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00433861 BTC (9,419.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.93 CZK over 4473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003809 BTC for 82.70 CZK @ 2,171,167 CZK\nFees are 0.29046214 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.03 % (191.06265578273365353057420581 CZK)\nThe limits being 0.10 % (9.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58092850 BTC (415,670.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,171,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.44 % (845,621.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,032.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00433861 BTC (9,419.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.93 CZK over 4473 transactions" + } + ] + }, + { + "id": 6172, + "type": "message", + "date": "2024-11-19T01:00:04", + "date_unixtime": "1731974404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003818 BTC for 82.71 CZK @ 2,166,232 CZK\nFees are 0.29048678 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.26 % (214.45699579757908608503031428 CZK)\nThe limits being 0.10 % (9.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58096668 BTC (415,753.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,166,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.71 % (842,755.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,949.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00437679 BTC (9,481.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.93 CZK over 4474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003818 BTC for 82.71 CZK @ 2,166,232 CZK\nFees are 0.29048678 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.26 % (214.45699579757908608503031428 CZK)\nThe limits being 0.10 % (9.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58096668 BTC (415,753.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,166,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.71 % (842,755.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,949.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00437679 BTC (9,481.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.93 CZK over 4474 transactions" + } + ] + }, + { + "id": 6173, + "type": "message", + "date": "2024-11-19T05:00:06", + "date_unixtime": "1731988806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003783 BTC for 82.71 CZK @ 2,186,265 CZK\nFees are 0.29048558 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (48.097831409785549677371599612 CZK)\nThe limits being 0.10 % (9.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58100451 BTC (415,836.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,186,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.46 % (854,393.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,866.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00441462 BTC (9,651.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.92 CZK over 4475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003783 BTC for 82.71 CZK @ 2,186,265 CZK\nFees are 0.29048558 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (48.097831409785549677371599612 CZK)\nThe limits being 0.10 % (9.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58100451 BTC (415,836.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,186,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.46 % (854,393.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,866.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00441462 BTC (9,651.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.92 CZK over 4475 transactions" + } + ] + }, + { + "id": 6174, + "type": "message", + "date": "2024-11-19T09:00:04", + "date_unixtime": "1732003204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003765 BTC for 82.69 CZK @ 2,196,324 CZK\nFees are 0.29043358 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.24 % (120.79782339898006380060227452 CZK)\nThe limits being 0.10 % (9.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58104216 BTC (415,919.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,196,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.83 % (860,237.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,783.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00445227 BTC (9,778.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.92 CZK over 4476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003765 BTC for 82.69 CZK @ 2,196,324 CZK\nFees are 0.29043358 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.24 % (120.79782339898006380060227452 CZK)\nThe limits being 0.10 % (9.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58104216 BTC (415,919.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,196,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.83 % (860,237.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,783.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00445227 BTC (9,778.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.92 CZK over 4476 transactions" + } + ] + }, + { + "id": 6175, + "type": "message", + "date": "2024-11-19T13:00:12", + "date_unixtime": "1732017612", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003750 BTC for 82.69 CZK @ 2,205,190 CZK\nFees are 0.29044421 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (121.28545520677628300946686596 CZK)\nThe limits being 0.10 % (9.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58107966 BTC (416,002.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 715,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,205,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.02 % (865,388.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,700.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00448977 BTC (9,900.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.92 CZK over 4477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003750 BTC for 82.69 CZK @ 2,205,190 CZK\nFees are 0.29044421 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.23 % (121.28545520677628300946686596 CZK)\nThe limits being 0.10 % (9.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58107966 BTC (416,002.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 715,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,205,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.02 % (865,388.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,700.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00448977 BTC (9,900.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.92 CZK over 4477 transactions" + } + ] + }, + { + "id": 6176, + "type": "message", + "date": "2024-11-19T17:00:06", + "date_unixtime": "1732032006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003743 BTC for 82.70 CZK @ 2,209,360 CZK\nFees are 0.29045030 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (97.21186016401850802447911071 CZK)\nThe limits being 0.10 % (10.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58111709 BTC (416,085.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,209,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.57 % (867,811.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,617.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00452720 BTC (10,002.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.92 CZK over 4478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003743 BTC for 82.70 CZK @ 2,209,360 CZK\nFees are 0.29045030 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.97 % (97.21186016401850802447911071 CZK)\nThe limits being 0.10 % (10.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58111709 BTC (416,085.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,209,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.57 % (867,811.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,617.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00452720 BTC (10,002.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.92 CZK over 4478 transactions" + } + ] + }, + { + "id": 6177, + "type": "message", + "date": "2024-11-19T21:00:07", + "date_unixtime": "1732046407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003712 BTC for 82.69 CZK @ 2,227,738 CZK\nFees are 0.29044073 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (122.52559707108095802621857980 CZK)\nThe limits being 0.10 % (10.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58115421 BTC (416,168.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,227,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.09 % (878,490.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,534.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00456432 BTC (10,168.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.92 CZK over 4479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003712 BTC for 82.69 CZK @ 2,227,738 CZK\nFees are 0.29044073 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.20 % (122.52559707108095802621857980 CZK)\nThe limits being 0.10 % (10.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58115421 BTC (416,168.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,227,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.09 % (878,490.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,534.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00456432 BTC (10,168.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.92 CZK over 4479 transactions" + } + ] + }, + { + "id": 6178, + "type": "message", + "date": "2024-11-20T01:00:04", + "date_unixtime": "1732060804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003753 BTC for 82.70 CZK @ 2,203,598 CZK\nFees are 0.29046672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (96.95831809237877925528701769 CZK)\nThe limits being 0.10 % (10.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58119174 BTC (416,251.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,203,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.68 % (864,461.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,451.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00460185 BTC (10,140.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.91 CZK over 4480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003753 BTC for 82.70 CZK @ 2,203,598 CZK\nFees are 0.29046672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (96.95831809237877925528701769 CZK)\nThe limits being 0.10 % (10.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58119174 BTC (416,251.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,203,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.68 % (864,461.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,451.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00460185 BTC (10,140.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.91 CZK over 4480 transactions" + } + ] + }, + { + "id": 6179, + "type": "message", + "date": "2024-11-20T05:00:04", + "date_unixtime": "1732075204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003752 BTC for 82.69 CZK @ 2,203,909 CZK\nFees are 0.29043028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.42 % (145.45798811037700670255385468 CZK)\nThe limits being 0.10 % (10.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58122926 BTC (416,334.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,203,909 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.68 % (864,641.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,368.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00463937 BTC (10,224.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.91 CZK over 4481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003752 BTC for 82.69 CZK @ 2,203,909 CZK\nFees are 0.29043028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.42 % (145.45798811037700670255385468 CZK)\nThe limits being 0.10 % (10.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58122926 BTC (416,334.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,203,909 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.68 % (864,641.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,368.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00463937 BTC (10,224.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.91 CZK over 4481 transactions" + } + ] + }, + { + "id": 6180, + "type": "message", + "date": "2024-11-20T09:00:04", + "date_unixtime": "1732089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003718 BTC for 82.71 CZK @ 2,224,523 CZK\nFees are 0.29049037 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (146.81852716675069210426230089 CZK)\nThe limits being 0.10 % (10.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58126644 BTC (416,417.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,224,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.52 % (876,622.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,285.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00467655 BTC (10,403.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.91 CZK over 4482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003718 BTC for 82.71 CZK @ 2,224,523 CZK\nFees are 0.29049037 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.41 % (146.81852716675069210426230089 CZK)\nThe limits being 0.10 % (10.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58126644 BTC (416,417.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,224,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.52 % (876,622.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,285.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00467655 BTC (10,403.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.91 CZK over 4482 transactions" + } + ] + }, + { + "id": 6181, + "type": "message", + "date": "2024-11-20T13:00:04", + "date_unixtime": "1732104004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003678 BTC for 82.70 CZK @ 2,248,577 CZK\nFees are 0.29047241 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (74.203038186087681694818542932 CZK)\nThe limits being 0.10 % (10.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58130322 BTC (416,500.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,248,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.83 % (890,604.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,202.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00471333 BTC (10,598.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.91 CZK over 4483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003678 BTC for 82.70 CZK @ 2,248,577 CZK\nFees are 0.29047241 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.70 % (74.203038186087681694818542932 CZK)\nThe limits being 0.10 % (10.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58130322 BTC (416,500.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,248,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.83 % (890,604.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,202.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00471333 BTC (10,598.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.91 CZK over 4483 transactions" + } + ] + }, + { + "id": 6182, + "type": "message", + "date": "2024-11-20T17:00:04", + "date_unixtime": "1732118404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003621 BTC for 82.70 CZK @ 2,283,893 CZK\nFees are 0.29046221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (75.368458356811639790971863600 CZK)\nThe limits being 0.10 % (10.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58133943 BTC (416,583.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.72 % (911,133.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,119.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00474954 BTC (10,847.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.90 CZK over 4484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003621 BTC for 82.70 CZK @ 2,283,893 CZK\nFees are 0.29046221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (75.368458356811639790971863600 CZK)\nThe limits being 0.10 % (10.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58133943 BTC (416,583.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.72 % (911,133.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,119.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00474954 BTC (10,847.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.90 CZK over 4484 transactions" + } + ] + }, + { + "id": 6183, + "type": "message", + "date": "2024-11-20T21:00:03", + "date_unixtime": "1732132803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003660 BTC for 82.69 CZK @ 2,259,415 CZK\nFees are 0.29044405 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (74.560689985052316890881913303 CZK)\nThe limits being 0.10 % (10.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58137603 BTC (416,666.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,259,415 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.26 % (896,903.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,036.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00478614 BTC (10,813.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.90 CZK over 4485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003660 BTC for 82.69 CZK @ 2,259,415 CZK\nFees are 0.29044405 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (74.560689985052316890881913303 CZK)\nThe limits being 0.10 % (10.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58137603 BTC (416,666.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,259,415 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.26 % (896,903.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,036.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00478614 BTC (10,813.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.90 CZK over 4485 transactions" + } + ] + }, + { + "id": 6184, + "type": "message", + "date": "2024-11-21T01:00:04", + "date_unixtime": "1732147204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003658 BTC for 82.70 CZK @ 2,260,892 CZK\nFees are 0.29047506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (74.609420076479179078801014380 CZK)\nThe limits being 0.10 % (10.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58141261 BTC (416,749.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,260,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.42 % (897,761.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,953.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00482272 BTC (10,903.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.90 CZK over 4486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003658 BTC for 82.70 CZK @ 2,260,892 CZK\nFees are 0.29047506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (74.609420076479179078801014380 CZK)\nThe limits being 0.10 % (10.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58141261 BTC (416,749.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,260,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.42 % (897,761.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,953.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00482272 BTC (10,903.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.90 CZK over 4486 transactions" + } + ] + }, + { + "id": 6185, + "type": "message", + "date": "2024-11-21T05:00:07", + "date_unixtime": "1732161607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,731 CZK\nFees are 0.29048615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (202.90432338335202314619767529 CZK)\nThe limits being 0.10 % (11.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58144848 BTC (416,832.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.63 % (923,831.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,870.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00485859 BTC (11,202.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.90 CZK over 4487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,731 CZK\nFees are 0.29048615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.81 % (202.90432338335202314619767529 CZK)\nThe limits being 0.10 % (11.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58144848 BTC (416,832.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.63 % (923,831.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,870.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00485859 BTC (11,202.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.90 CZK over 4487 transactions" + } + ] + }, + { + "id": 6186, + "type": "message", + "date": "2024-11-21T09:00:04", + "date_unixtime": "1732176004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003546 BTC for 82.69 CZK @ 2,331,850 CZK\nFees are 0.29041881 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.80 % (205.20278728005281008854795020 CZK)\nThe limits being 0.10 % (11.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58148394 BTC (416,915.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 716,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.23 % (939,017.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,788.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00489405 BTC (11,412.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.90 CZK over 4488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003546 BTC for 82.69 CZK @ 2,331,850 CZK\nFees are 0.29041881 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.80 % (205.20278728005281008854795020 CZK)\nThe limits being 0.10 % (11.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58148394 BTC (416,915.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 716,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.23 % (939,017.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,788.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00489405 BTC (11,412.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.90 CZK over 4488 transactions" + } + ] + }, + { + "id": 6187, + "type": "message", + "date": "2024-11-21T13:00:04", + "date_unixtime": "1732190404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003500 BTC for 82.70 CZK @ 2,362,881 CZK\nFees are 0.29046600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (51.983381353263577478824115595 CZK)\nThe limits being 0.10 % (11.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58151894 BTC (416,998.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,362,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.51 % (957,061.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,705.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00492905 BTC (11,646.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.89 CZK over 4489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003500 BTC for 82.70 CZK @ 2,362,881 CZK\nFees are 0.29046600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (51.983381353263577478824115595 CZK)\nThe limits being 0.10 % (11.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58151894 BTC (416,998.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,362,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.51 % (957,061.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,705.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00492905 BTC (11,646.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.89 CZK over 4489 transactions" + } + ] + }, + { + "id": 6188, + "type": "message", + "date": "2024-11-21T17:00:04", + "date_unixtime": "1732204804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003540 BTC for 82.70 CZK @ 2,336,047 CZK\nFees are 0.29044929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (51.393040302444269914057859640 CZK)\nThe limits being 0.10 % (11.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58155434 BTC (417,081.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.72 % (941,456.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,622.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00496445 BTC (11,597.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.89 CZK over 4490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003540 BTC for 82.70 CZK @ 2,336,047 CZK\nFees are 0.29044929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (51.393040302444269914057859640 CZK)\nThe limits being 0.10 % (11.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58155434 BTC (417,081.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.72 % (941,456.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,622.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00496445 BTC (11,597.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.89 CZK over 4490 transactions" + } + ] + }, + { + "id": 6189, + "type": "message", + "date": "2024-11-21T21:00:04", + "date_unixtime": "1732219204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003493 BTC for 82.71 CZK @ 2,367,792 CZK\nFees are 0.29048759 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (78.137141779608758409409038020 CZK)\nThe limits being 0.10 % (11.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58158927 BTC (417,164.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,367,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.11 % (959,917.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,539.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00499938 BTC (11,837.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.89 CZK over 4491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003493 BTC for 82.71 CZK @ 2,367,792 CZK\nFees are 0.29048759 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (78.137141779608758409409038020 CZK)\nThe limits being 0.10 % (11.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58158927 BTC (417,164.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,367,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.11 % (959,917.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,539.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00499938 BTC (11,837.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.89 CZK over 4491 transactions" + } + ] + }, + { + "id": 6190, + "type": "message", + "date": "2024-11-22T01:00:03", + "date_unixtime": "1732233603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003474 BTC for 82.69 CZK @ 2,380,209 CZK\nFees are 0.29042255 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (52.364598711647977042928908294 CZK)\nThe limits being 0.10 % (11.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58162401 BTC (417,247.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.79 % (967,139.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,456.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00503412 BTC (11,982.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.89 CZK over 4492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003474 BTC for 82.69 CZK @ 2,380,209 CZK\nFees are 0.29042255 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (52.364598711647977042928908294 CZK)\nThe limits being 0.10 % (11.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58162401 BTC (417,247.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.79 % (967,139.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,456.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00503412 BTC (11,982.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.89 CZK over 4492 transactions" + } + ] + }, + { + "id": 6191, + "type": "message", + "date": "2024-11-22T05:00:05", + "date_unixtime": "1732248005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003458 BTC for 82.71 CZK @ 2,391,791 CZK\nFees are 0.29049162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.619397907785446138054115394 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58165859 BTC (417,330.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,391,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.36 % (973,875.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,373.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00506870 BTC (12,123.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.88 CZK over 4493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003458 BTC for 82.71 CZK @ 2,391,791 CZK\nFees are 0.29049162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.619397907785446138054115394 CZK)\nThe limits being 0.10 % (12.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58165859 BTC (417,330.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,391,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.36 % (973,875.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,373.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00506870 BTC (12,123.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.88 CZK over 4493 transactions" + } + ] + }, + { + "id": 6192, + "type": "message", + "date": "2024-11-22T09:00:04", + "date_unixtime": "1732262404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003459 BTC for 82.70 CZK @ 2,390,814 CZK\nFees are 0.29045700 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.597916526617665001059460434 CZK)\nThe limits being 0.10 % (12.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58169318 BTC (417,413.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,390,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.18 % (973,306.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,290.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00510329 BTC (12,201.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.88 CZK over 4494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003459 BTC for 82.70 CZK @ 2,390,814 CZK\nFees are 0.29045700 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.597916526617665001059460434 CZK)\nThe limits being 0.10 % (12.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58169318 BTC (417,413.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,390,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.18 % (973,306.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,290.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00510329 BTC (12,201.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.88 CZK over 4494 transactions" + } + ] + }, + { + "id": 6193, + "type": "message", + "date": "2024-11-22T13:00:04", + "date_unixtime": "1732276804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003437 BTC for 82.69 CZK @ 2,405,979 CZK\nFees are 0.29044025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.931539611360239162929745890 CZK)\nThe limits being 0.10 % (12.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58172755 BTC (417,496.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,405,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.24 % (982,127.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,207.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00513766 BTC (12,361.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.88 CZK over 4495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003437 BTC for 82.69 CZK @ 2,405,979 CZK\nFees are 0.29044025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.931539611360239162929745890 CZK)\nThe limits being 0.10 % (12.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58172755 BTC (417,496.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,405,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.24 % (982,127.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,207.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00513766 BTC (12,361.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.88 CZK over 4495 transactions" + } + ] + }, + { + "id": 6194, + "type": "message", + "date": "2024-11-22T17:00:04", + "date_unixtime": "1732291204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003434 BTC for 82.69 CZK @ 2,407,914 CZK\nFees are 0.29042009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.974105386534432921002466904 CZK)\nThe limits being 0.10 % (12.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58176189 BTC (417,579.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,407,914 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.46 % (983,253.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,124.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00517200 BTC (12,453.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.88 CZK over 4496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003434 BTC for 82.69 CZK @ 2,407,914 CZK\nFees are 0.29042009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (52.974105386534432921002466904 CZK)\nThe limits being 0.10 % (12.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58176189 BTC (417,579.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,407,914 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.46 % (983,253.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,124.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00517200 BTC (12,453.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.88 CZK over 4496 transactions" + } + ] + }, + { + "id": 6195, + "type": "message", + "date": "2024-11-22T21:00:03", + "date_unixtime": "1732305603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003418 BTC for 82.71 CZK @ 2,419,700 CZK\nFees are 0.29048187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.90 % (239.55031696872531861130863511 CZK)\nThe limits being 0.10 % (12.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58179607 BTC (417,662.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,419,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 237.06 % (990,109.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,041.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00520618 BTC (12,597.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.88 CZK over 4497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003418 BTC for 82.71 CZK @ 2,419,700 CZK\nFees are 0.29048187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.90 % (239.55031696872531861130863511 CZK)\nThe limits being 0.10 % (12.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58179607 BTC (417,662.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,419,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 237.06 % (990,109.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,041.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00520618 BTC (12,597.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.88 CZK over 4497 transactions" + } + ] + }, + { + "id": 6196, + "type": "message", + "date": "2024-11-23T01:00:03", + "date_unixtime": "1732320003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003433 BTC for 82.69 CZK @ 2,408,670 CZK\nFees are 0.29042666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.68 % (211.96293886515169525362077470 CZK)\nThe limits being 0.10 % (12.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58183040 BTC (417,745.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 717,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,408,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.48 % (983,691.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,958.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00524051 BTC (12,622.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.87 CZK over 4498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003433 BTC for 82.69 CZK @ 2,408,670 CZK\nFees are 0.29042666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.68 % (211.96293886515169525362077470 CZK)\nThe limits being 0.10 % (12.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58183040 BTC (417,745.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 717,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,408,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.48 % (983,691.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,958.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00524051 BTC (12,622.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.87 CZK over 4498 transactions" + } + ] + }, + { + "id": 6197, + "type": "message", + "date": "2024-11-23T05:00:03", + "date_unixtime": "1732334403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003438 BTC for 82.70 CZK @ 2,405,556 CZK\nFees are 0.29047367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (132.30558120603484082616021354 CZK)\nThe limits being 0.10 % (12.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58186478 BTC (417,828.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,405,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.00 % (981,879.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,875.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00527489 BTC (12,689.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.87 CZK over 4499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003438 BTC for 82.70 CZK @ 2,405,556 CZK\nFees are 0.29047367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (132.30558120603484082616021354 CZK)\nThe limits being 0.10 % (12.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58186478 BTC (417,828.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,405,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.00 % (981,879.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,875.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00527489 BTC (12,689.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.87 CZK over 4499 transactions" + } + ] + }, + { + "id": 6198, + "type": "message", + "date": "2024-11-23T09:00:03", + "date_unixtime": "1732348803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003447 BTC for 82.71 CZK @ 2,399,357 CZK\nFees are 0.29048353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (105.57169108815403702359409604 CZK)\nThe limits being 0.10 % (12.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58189925 BTC (417,911.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,399,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.09 % (978,272.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,792.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00530936 BTC (12,739.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.87 CZK over 4500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003447 BTC for 82.71 CZK @ 2,399,357 CZK\nFees are 0.29048353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.83 % (105.57169108815403702359409604 CZK)\nThe limits being 0.10 % (12.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58189925 BTC (417,911.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,399,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.09 % (978,272.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,792.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00530936 BTC (12,739.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.87 CZK over 4500 transactions" + } + ] + }, + { + "id": 6199, + "type": "message", + "date": "2024-11-23T13:00:03", + "date_unixtime": "1732363203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003450 BTC for 82.69 CZK @ 2,396,883 CZK\nFees are 0.29043666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (79.097154496653018782088776241 CZK)\nThe limits being 0.10 % (12.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58193375 BTC (417,994.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,396,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.70 % (976,832.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,709.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00534386 BTC (12,808.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.87 CZK over 4501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003450 BTC for 82.69 CZK @ 2,396,883 CZK\nFees are 0.29043666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.62 % (79.097154496653018782088776241 CZK)\nThe limits being 0.10 % (12.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58193375 BTC (417,994.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,396,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.70 % (976,832.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,709.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00534386 BTC (12,808.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.87 CZK over 4501 transactions" + } + ] + }, + { + "id": 6200, + "type": "message", + "date": "2024-11-23T17:00:03", + "date_unixtime": "1732377603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003448 BTC for 82.71 CZK @ 2,398,657 CZK\nFees are 0.29048306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (52.770451287084531286668354493 CZK)\nThe limits being 0.10 % (12.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58196823 BTC (418,077.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,398,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.90 % (977,864.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,626.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00537834 BTC (12,900.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.86 CZK over 4502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003448 BTC for 82.71 CZK @ 2,398,657 CZK\nFees are 0.29048306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (52.770451287084531286668354493 CZK)\nThe limits being 0.10 % (12.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58196823 BTC (418,077.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,398,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.90 % (977,864.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,626.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00537834 BTC (12,900.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.86 CZK over 4502 transactions" + } + ] + }, + { + "id": 6201, + "type": "message", + "date": "2024-11-23T21:00:03", + "date_unixtime": "1732392003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003479 BTC for 82.70 CZK @ 2,377,092 CZK\nFees are 0.29045971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (52.296030309553240863072949764 CZK)\nThe limits being 0.10 % (12.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58200302 BTC (418,160.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.85 % (965,314.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,543.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00541313 BTC (12,867.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.86 CZK over 4503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003479 BTC for 82.70 CZK @ 2,377,092 CZK\nFees are 0.29045971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (52.296030309553240863072949764 CZK)\nThe limits being 0.10 % (12.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58200302 BTC (418,160.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.85 % (965,314.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,543.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00541313 BTC (12,867.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.86 CZK over 4503 transactions" + } + ] + }, + { + "id": 6202, + "type": "message", + "date": "2024-11-24T01:00:05", + "date_unixtime": "1732406405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003482 BTC for 82.69 CZK @ 2,374,737 CZK\nFees are 0.29042218 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.244223565023852472692503295 CZK)\nThe limits being 0.10 % (12.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58203784 BTC (418,243.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,585 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,374,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.47 % (963,943.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,460.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00544795 BTC (12,937.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.86 CZK over 4504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003482 BTC for 82.69 CZK @ 2,374,737 CZK\nFees are 0.29042218 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.244223565023852472692503295 CZK)\nThe limits being 0.10 % (12.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58203784 BTC (418,243.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,585 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,374,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.47 % (963,943.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,460.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00544795 BTC (12,937.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.86 CZK over 4504 transactions" + } + ] + }, + { + "id": 6203, + "type": "message", + "date": "2024-11-24T05:00:04", + "date_unixtime": "1732420804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003461 BTC for 82.71 CZK @ 2,389,704 CZK\nFees are 0.29048992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.573479800760902285514135950 CZK)\nThe limits being 0.10 % (13.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58207245 BTC (418,326.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,389,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.51 % (972,654.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,377.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00548256 BTC (13,101.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.86 CZK over 4505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003461 BTC for 82.71 CZK @ 2,389,704 CZK\nFees are 0.29048992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.573479800760902285514135950 CZK)\nThe limits being 0.10 % (13.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58207245 BTC (418,326.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,389,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.51 % (972,654.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,377.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00548256 BTC (13,101.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.86 CZK over 4505 transactions" + } + ] + }, + { + "id": 6204, + "type": "message", + "date": "2024-11-24T09:00:03", + "date_unixtime": "1732435203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003452 BTC for 82.71 CZK @ 2,395,944 CZK\nFees are 0.29049114 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.710770975975741913730679587 CZK)\nThe limits being 0.10 % (13.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58210697 BTC (418,409.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,395,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.33 % (976,286.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,294.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00551708 BTC (13,218.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.86 CZK over 4506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003452 BTC for 82.71 CZK @ 2,395,944 CZK\nFees are 0.29049114 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (52.710770975975741913730679587 CZK)\nThe limits being 0.10 % (13.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58210697 BTC (418,409.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,395,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.33 % (976,286.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,294.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00551708 BTC (13,218.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.86 CZK over 4506 transactions" + } + ] + }, + { + "id": 6205, + "type": "message", + "date": "2024-11-24T13:00:04", + "date_unixtime": "1732449604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003489 BTC for 82.69 CZK @ 2,369,943 CZK\nFees are 0.29041845 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (26.069367709434291530231749781 CZK)\nThe limits being 0.10 % (13.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58214186 BTC (418,492.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.67 % (961,150.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,211.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00555197 BTC (13,157.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.85 CZK over 4507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003489 BTC for 82.69 CZK @ 2,369,943 CZK\nFees are 0.29041845 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (26.069367709434291530231749781 CZK)\nThe limits being 0.10 % (13.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58214186 BTC (418,492.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.67 % (961,150.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,211.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00555197 BTC (13,157.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.85 CZK over 4507 transactions" + } + ] + }, + { + "id": 6206, + "type": "message", + "date": "2024-11-24T17:00:06", + "date_unixtime": "1732464006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003544 BTC for 82.70 CZK @ 2,333,580 CZK\nFees are 0.29047038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (51.338763418891666975967859666 CZK)\nThe limits being 0.10 % (13.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58217730 BTC (418,575.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 718,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,580 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.57 % (939,982.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,128.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00558741 BTC (13,038.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.85 CZK over 4508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003544 BTC for 82.70 CZK @ 2,333,580 CZK\nFees are 0.29047038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (51.338763418891666975967859666 CZK)\nThe limits being 0.10 % (13.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58217730 BTC (418,575.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 718,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,580 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.57 % (939,982.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,128.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00558741 BTC (13,038.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.85 CZK over 4508 transactions" + } + ] + }, + { + "id": 6207, + "type": "message", + "date": "2024-11-24T21:00:06", + "date_unixtime": "1732478406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003535 BTC for 82.70 CZK @ 2,339,329 CZK\nFees are 0.29044655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (51.465247742660236555365978621 CZK)\nThe limits being 0.10 % (13.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58221265 BTC (418,658.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,339,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.32 % (943,328.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,045.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00562276 BTC (13,153.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.85 CZK over 4509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003535 BTC for 82.70 CZK @ 2,339,329 CZK\nFees are 0.29044655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (51.465247742660236555365978621 CZK)\nThe limits being 0.10 % (13.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58221265 BTC (418,658.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,339,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.32 % (943,328.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,045.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00562276 BTC (13,153.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.85 CZK over 4509 transactions" + } + ] + }, + { + "id": 6208, + "type": "message", + "date": "2024-11-25T01:00:03", + "date_unixtime": "1732492803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 82.69 CZK @ 2,373,540 CZK\nFees are 0.29044253 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.108945063117206882684427696 CZK)\nThe limits being 0.10 % (13.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58224749 BTC (418,741.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.03 % (963,246.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,962.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00565760 BTC (13,428.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.85 CZK over 4510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 82.69 CZK @ 2,373,540 CZK\nFees are 0.29044253 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.108945063117206882684427696 CZK)\nThe limits being 0.10 % (13.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58224749 BTC (418,741.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.03 % (963,246.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,962.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00565760 BTC (13,428.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.85 CZK over 4510 transactions" + } + ] + }, + { + "id": 6209, + "type": "message", + "date": "2024-11-25T05:00:04", + "date_unixtime": "1732507204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003491 BTC for 82.69 CZK @ 2,368,730 CZK\nFees are 0.29043620 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.056024550566857305646222180 CZK)\nThe limits being 0.10 % (13.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58228240 BTC (418,824.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,368,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.32 % (960,445.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,879.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00569251 BTC (13,484.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.85 CZK over 4511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003491 BTC for 82.69 CZK @ 2,368,730 CZK\nFees are 0.29043620 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.056024550566857305646222180 CZK)\nThe limits being 0.10 % (13.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58228240 BTC (418,824.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,368,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.32 % (960,445.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,879.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00569251 BTC (13,484.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.85 CZK over 4511 transactions" + } + ] + }, + { + "id": 6210, + "type": "message", + "date": "2024-11-25T09:00:04", + "date_unixtime": "1732521604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003476 BTC for 82.69 CZK @ 2,378,991 CZK\nFees are 0.29044104 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.168901058321192282706728981 CZK)\nThe limits being 0.10 % (13.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58231716 BTC (418,907.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.70 % (966,419.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,796.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00572727 BTC (13,625.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.84 CZK over 4512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003476 BTC for 82.69 CZK @ 2,378,991 CZK\nFees are 0.29044104 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.168901058321192282706728981 CZK)\nThe limits being 0.10 % (13.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58231716 BTC (418,907.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.70 % (966,419.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,796.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00572727 BTC (13,625.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.84 CZK over 4512 transactions" + } + ] + }, + { + "id": 6211, + "type": "message", + "date": "2024-11-25T13:00:04", + "date_unixtime": "1732536004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003471 BTC for 82.71 CZK @ 2,382,887 CZK\nFees are 0.29049819 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (52.423507104563586651559644963 CZK)\nThe limits being 0.10 % (13.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58235187 BTC (418,990.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,382,887 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.20 % (968,688.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,713.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00576198 BTC (13,730.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.84 CZK over 4513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003471 BTC for 82.71 CZK @ 2,382,887 CZK\nFees are 0.29049819 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (52.423507104563586651559644963 CZK)\nThe limits being 0.10 % (13.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58235187 BTC (418,990.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,382,887 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.20 % (968,688.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,713.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00576198 BTC (13,730.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.84 CZK over 4513 transactions" + } + ] + }, + { + "id": 6212, + "type": "message", + "date": "2024-11-25T17:00:05", + "date_unixtime": "1732550405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003555 BTC for 82.71 CZK @ 2,326,529 CZK\nFees are 0.29049150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (25.591814948103578403856544288 CZK)\nThe limits being 0.10 % (13.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58238742 BTC (419,073.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.32 % (935,867.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,630.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00579753 BTC (13,488.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.84 CZK over 4514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003555 BTC for 82.71 CZK @ 2,326,529 CZK\nFees are 0.29049150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (25.591814948103578403856544288 CZK)\nThe limits being 0.10 % (13.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58238742 BTC (419,073.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.32 % (935,867.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,630.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00579753 BTC (13,488.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.84 CZK over 4514 transactions" + } + ] + }, + { + "id": 6213, + "type": "message", + "date": "2024-11-25T21:00:03", + "date_unixtime": "1732564803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,611 CZK\nFees are 0.29046569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (75.557159301249613065235132186 CZK)\nThe limits being 0.10 % (13.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58242354 BTC (419,156.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.14 % (914,367.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,547.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00583365 BTC (13,356.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.84 CZK over 4515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,611 CZK\nFees are 0.29046569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (75.557159301249613065235132186 CZK)\nThe limits being 0.10 % (13.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58242354 BTC (419,156.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.14 % (914,367.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,547.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00583365 BTC (13,356.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.84 CZK over 4515 transactions" + } + ] + }, + { + "id": 6214, + "type": "message", + "date": "2024-11-26T01:00:04", + "date_unixtime": "1732579204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003669 BTC for 82.71 CZK @ 2,254,275 CZK\nFees are 0.29049592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (74.391077479027818009004461494 CZK)\nThe limits being 0.10 % (13.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58246023 BTC (419,239.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,254,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.19 % (893,786.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,464.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00587034 BTC (13,233.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.83 CZK over 4516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003669 BTC for 82.71 CZK @ 2,254,275 CZK\nFees are 0.29049592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.56 % (74.391077479027818009004461494 CZK)\nThe limits being 0.10 % (13.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58246023 BTC (419,239.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,254,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.19 % (893,786.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,464.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00587034 BTC (13,233.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.83 CZK over 4516 transactions" + } + ] + }, + { + "id": 6215, + "type": "message", + "date": "2024-11-26T05:00:04", + "date_unixtime": "1732593604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003606 BTC for 82.70 CZK @ 2,293,275 CZK\nFees are 0.29044726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (50.452049855455987239337858261 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58249629 BTC (419,322.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.57 % (916,501.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,381.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00590640 BTC (13,545.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.83 CZK over 4517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003606 BTC for 82.70 CZK @ 2,293,275 CZK\nFees are 0.29044726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (50.452049855455987239337858261 CZK)\nThe limits being 0.10 % (13.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58249629 BTC (419,322.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.57 % (916,501.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,381.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00590640 BTC (13,545.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.83 CZK over 4517 transactions" + } + ] + }, + { + "id": 6216, + "type": "message", + "date": "2024-11-26T09:00:04", + "date_unixtime": "1732608004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003638 BTC for 82.69 CZK @ 2,272,981 CZK\nFees are 0.29043158 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (25.002786157738733563917164031 CZK)\nThe limits being 0.10 % (13.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58253267 BTC (419,405.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 719,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,272,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.71 % (904,680.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,298.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00594278 BTC (13,507.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.83 CZK over 4518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003638 BTC for 82.69 CZK @ 2,272,981 CZK\nFees are 0.29043158 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (25.002786157738733563917164031 CZK)\nThe limits being 0.10 % (13.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58253267 BTC (419,405.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 719,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,272,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.71 % (904,680.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,298.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00594278 BTC (13,507.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.83 CZK over 4518 transactions" + } + ] + }, + { + "id": 6217, + "type": "message", + "date": "2024-11-26T13:00:04", + "date_unixtime": "1732622404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003715 BTC for 82.70 CZK @ 2,226,031 CZK\nFees are 0.29045270 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.84 % (244.86339742797919261051997684 CZK)\nThe limits being 0.10 % (13.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58256982 BTC (419,488.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,226,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.14 % (877,330.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,215.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00597993 BTC (13,311.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.83 CZK over 4519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003715 BTC for 82.70 CZK @ 2,226,031 CZK\nFees are 0.29045270 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.84 % (244.86339742797919261051997684 CZK)\nThe limits being 0.10 % (13.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58256982 BTC (419,488.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,226,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.14 % (877,330.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,215.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00597993 BTC (13,311.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.83 CZK over 4519 transactions" + } + ] + }, + { + "id": 6218, + "type": "message", + "date": "2024-11-26T17:00:04", + "date_unixtime": "1732636804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003679 BTC for 82.69 CZK @ 2,247,753 CZK\nFees are 0.29044491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (123.62640767777578692028295096 CZK)\nThe limits being 0.10 % (13.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58260661 BTC (419,571.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,247,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.12 % (889,984.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,132.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00601672 BTC (13,524.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.83 CZK over 4520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003679 BTC for 82.69 CZK @ 2,247,753 CZK\nFees are 0.29044491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (123.62640767777578692028295096 CZK)\nThe limits being 0.10 % (13.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58260661 BTC (419,571.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,247,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.12 % (889,984.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,132.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00601672 BTC (13,524.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.83 CZK over 4520 transactions" + } + ] + }, + { + "id": 6219, + "type": "message", + "date": "2024-11-26T21:00:03", + "date_unixtime": "1732651203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003724 BTC for 82.71 CZK @ 2,220,906 CZK\nFees are 0.29048606 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (73.289902964490020695556957740 CZK)\nThe limits being 0.10 % (13.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58264385 BTC (419,654.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,220,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.35 % (874,343.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,049.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00605396 BTC (13,445.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.82 CZK over 4521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003724 BTC for 82.71 CZK @ 2,220,906 CZK\nFees are 0.29048606 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (73.289902964490020695556957740 CZK)\nThe limits being 0.10 % (13.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58264385 BTC (419,654.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,220,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.35 % (874,343.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,049.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00605396 BTC (13,445.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.82 CZK over 4521 transactions" + } + ] + }, + { + "id": 6220, + "type": "message", + "date": "2024-11-27T01:00:03", + "date_unixtime": "1732665603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003718 BTC for 82.69 CZK @ 2,224,078 CZK\nFees are 0.29043224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (73.394575078939687425372144240 CZK)\nThe limits being 0.10 % (13.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58268103 BTC (419,737.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,224,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.75 % (876,190.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,966.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00609114 BTC (13,547.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.82 CZK over 4522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003718 BTC for 82.69 CZK @ 2,224,078 CZK\nFees are 0.29043224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.54 % (73.394575078939687425372144240 CZK)\nThe limits being 0.10 % (13.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58268103 BTC (419,737.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,224,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.75 % (876,190.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,966.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00609114 BTC (13,547.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.82 CZK over 4522 transactions" + } + ] + }, + { + "id": 6221, + "type": "message", + "date": "2024-11-27T05:00:04", + "date_unixtime": "1732680004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003689 BTC for 82.70 CZK @ 2,241,892 CZK\nFees are 0.29047504 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (49.321630664590441991927683847 CZK)\nThe limits being 0.10 % (13.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58271792 BTC (419,820.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,241,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.18 % (886,570.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,883.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00612803 BTC (13,738.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.82 CZK over 4523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003689 BTC for 82.70 CZK @ 2,241,892 CZK\nFees are 0.29047504 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (49.321630664590441991927683847 CZK)\nThe limits being 0.10 % (13.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58271792 BTC (419,820.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,241,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.18 % (886,570.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,883.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00612803 BTC (13,738.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.82 CZK over 4523 transactions" + } + ] + }, + { + "id": 6222, + "type": "message", + "date": "2024-11-27T09:00:07", + "date_unixtime": "1732694407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003664 BTC for 82.70 CZK @ 2,257,231 CZK\nFees are 0.29048049 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (24.829545642108515392632337040 CZK)\nThe limits being 0.10 % (13.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58275456 BTC (419,903.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,257,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.27 % (895,508.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,800.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00616467 BTC (13,915.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.82 CZK over 4524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003664 BTC for 82.70 CZK @ 2,257,231 CZK\nFees are 0.29048049 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.18 % (24.829545642108515392632337040 CZK)\nThe limits being 0.10 % (13.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58275456 BTC (419,903.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,257,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.27 % (895,508.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,800.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00616467 BTC (13,915.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.82 CZK over 4524 transactions" + } + ] + }, + { + "id": 6223, + "type": "message", + "date": "2024-11-27T13:00:04", + "date_unixtime": "1732708804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003669 BTC for 82.71 CZK @ 2,254,276 CZK\nFees are 0.29049605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (49.594073707409729614922315369 CZK)\nThe limits being 0.10 % (13.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58279125 BTC (419,986.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,254,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.81 % (893,786.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,717.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00620136 BTC (13,979.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.81 CZK over 4525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003669 BTC for 82.71 CZK @ 2,254,276 CZK\nFees are 0.29049605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (49.594073707409729614922315369 CZK)\nThe limits being 0.10 % (13.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58279125 BTC (419,986.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,254,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.81 % (893,786.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,717.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00620136 BTC (13,979.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.81 CZK over 4525 transactions" + } + ] + }, + { + "id": 6224, + "type": "message", + "date": "2024-11-27T17:00:07", + "date_unixtime": "1732723207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003601 BTC for 82.71 CZK @ 2,296,827 CZK\nFees are 0.29049375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (50.530190042155980865083842207 CZK)\nThe limits being 0.10 % (14.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58282726 BTC (420,069.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,296,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.67 % (918,584.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,634.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00623737 BTC (14,326.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.81 CZK over 4526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003601 BTC for 82.71 CZK @ 2,296,827 CZK\nFees are 0.29049375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (50.530190042155980865083842207 CZK)\nThe limits being 0.10 % (14.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58282726 BTC (420,069.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,296,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.67 % (918,584.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,634.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00623737 BTC (14,326.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.81 CZK over 4526 transactions" + } + ] + }, + { + "id": 6225, + "type": "message", + "date": "2024-11-27T21:00:03", + "date_unixtime": "1732737603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003563 BTC for 82.69 CZK @ 2,320,767 CZK\nFees are 0.29042423 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (76.585321375186846038863976085 CZK)\nThe limits being 0.10 % (14.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58286289 BTC (420,152.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.95 % (932,536.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,551.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00627300 BTC (14,558.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.81 CZK over 4527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003563 BTC for 82.69 CZK @ 2,320,767 CZK\nFees are 0.29042423 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (76.585321375186846038863976085 CZK)\nThe limits being 0.10 % (14.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58286289 BTC (420,152.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.95 % (932,536.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,551.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00627300 BTC (14,558.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.81 CZK over 4527 transactions" + } + ] + }, + { + "id": 6226, + "type": "message", + "date": "2024-11-28T01:00:04", + "date_unixtime": "1732752004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.70 CZK @ 2,306,224 CZK\nFees are 0.29046729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (76.105397718414995368969343495 CZK)\nThe limits being 0.10 % (14.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58289875 BTC (420,235.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 720,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.89 % (924,060.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,468.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00630886 BTC (14,549.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.81 CZK over 4528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.70 CZK @ 2,306,224 CZK\nFees are 0.29046729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (76.105397718414995368969343495 CZK)\nThe limits being 0.10 % (14.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58289875 BTC (420,235.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 720,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.89 % (924,060.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,468.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00630886 BTC (14,549.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.81 CZK over 4528 transactions" + } + ] + }, + { + "id": 6227, + "type": "message", + "date": "2024-11-28T05:00:07", + "date_unixtime": "1732766407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,108 CZK\nFees are 0.29044857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (50.536365386702098211814205834 CZK)\nThe limits being 0.10 % (14.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58293475 BTC (420,318.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.58 % (918,745.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,385.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00634486 BTC (14,574.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.81 CZK over 4529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,108 CZK\nFees are 0.29044857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (50.536365386702098211814205834 CZK)\nThe limits being 0.10 % (14.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58293475 BTC (420,318.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.58 % (918,745.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,385.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00634486 BTC (14,574.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.81 CZK over 4529 transactions" + } + ] + }, + { + "id": 6228, + "type": "message", + "date": "2024-11-28T09:00:04", + "date_unixtime": "1732780804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003603 BTC for 82.70 CZK @ 2,295,349 CZK\nFees are 0.29046810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (50.497681251893698173517307794 CZK)\nThe limits being 0.10 % (14.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58297078 BTC (420,401.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.30 % (917,720.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,302.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00638089 BTC (14,646.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.80 CZK over 4530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003603 BTC for 82.70 CZK @ 2,295,349 CZK\nFees are 0.29046810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (50.497681251893698173517307794 CZK)\nThe limits being 0.10 % (14.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58297078 BTC (420,401.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.30 % (917,720.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,302.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00638089 BTC (14,646.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.80 CZK over 4530 transactions" + } + ] + }, + { + "id": 6229, + "type": "message", + "date": "2024-11-28T13:00:04", + "date_unixtime": "1732795204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,980 CZK\nFees are 0.29047814 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (50.555553067459224750051673827 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58300677 BTC (420,484.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.62 % (919,253.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,219.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00641688 BTC (14,745.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.80 CZK over 4531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,980 CZK\nFees are 0.29047814 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (50.555553067459224750051673827 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58300677 BTC (420,484.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.62 % (919,253.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,219.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00641688 BTC (14,745.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.80 CZK over 4531 transactions" + } + ] + }, + { + "id": 6230, + "type": "message", + "date": "2024-11-28T17:00:03", + "date_unixtime": "1732809603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,682 CZK\nFees are 0.29044895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (100.57001347577563657106153890 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58304295 BTC (420,567.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.87 % (912,083.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,136.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00645306 BTC (14,749.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.80 CZK over 4532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,682 CZK\nFees are 0.29044895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (100.57001347577563657106153890 CZK)\nThe limits being 0.10 % (14.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58304295 BTC (420,567.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.87 % (912,083.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,136.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00645306 BTC (14,749.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.80 CZK over 4532 transactions" + } + ] + }, + { + "id": 6231, + "type": "message", + "date": "2024-11-28T21:00:03", + "date_unixtime": "1732824003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,035 CZK\nFees are 0.29042649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (75.505154056265163791698617645 CZK)\nThe limits being 0.10 % (14.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58307909 BTC (420,650.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.15 % (913,455.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,053.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00648920 BTC (14,847.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.80 CZK over 4533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,035 CZK\nFees are 0.29042649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (75.505154056265163791698617645 CZK)\nThe limits being 0.10 % (14.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58307909 BTC (420,650.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.15 % (913,455.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,053.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00648920 BTC (14,847.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.80 CZK over 4533 transactions" + } + ] + }, + { + "id": 6232, + "type": "message", + "date": "2024-11-29T01:00:06", + "date_unixtime": "1732838406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,447 CZK\nFees are 0.29046681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (75.914744931820686013417572572 CZK)\nThe limits being 0.10 % (15.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58311504 BTC (420,733.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.83 % (920,692.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,970.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00652515 BTC (15,010.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.80 CZK over 4534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,447 CZK\nFees are 0.29046681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.51 % (75.914744931820686013417572572 CZK)\nThe limits being 0.10 % (15.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58311504 BTC (420,733.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.83 % (920,692.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,970.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00652515 BTC (15,010.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.80 CZK over 4534 transactions" + } + ] + }, + { + "id": 6233, + "type": "message", + "date": "2024-11-29T05:00:04", + "date_unixtime": "1732852804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,271 CZK\nFees are 0.29044362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (76.568945680857738655446677369 CZK)\nThe limits being 0.10 % (15.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58315068 BTC (420,816.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.53 % (932,251.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,887.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00656079 BTC (15,222.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.79 CZK over 4535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,271 CZK\nFees are 0.29044362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (76.568945680857738655446677369 CZK)\nThe limits being 0.10 % (15.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58315068 BTC (420,816.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.53 % (932,251.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,887.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00656079 BTC (15,222.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.79 CZK over 4535 transactions" + } + ] + }, + { + "id": 6234, + "type": "message", + "date": "2024-11-29T09:00:05", + "date_unixtime": "1732867205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003602 BTC for 82.70 CZK @ 2,295,927 CZK\nFees are 0.29046053 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (75.765577235367496383424256079 CZK)\nThe limits being 0.10 % (15.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58318670 BTC (420,899.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.12 % (918,054.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,804.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00659681 BTC (15,145.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.79 CZK over 4536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003602 BTC for 82.70 CZK @ 2,295,927 CZK\nFees are 0.29046053 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (75.765577235367496383424256079 CZK)\nThe limits being 0.10 % (15.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58318670 BTC (420,899.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.12 % (918,054.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,804.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00659681 BTC (15,145.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.79 CZK over 4536 transactions" + } + ] + }, + { + "id": 6235, + "type": "message", + "date": "2024-11-29T13:00:03", + "date_unixtime": "1732881603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003548 BTC for 82.69 CZK @ 2,330,581 CZK\nFees are 0.29042445 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (76.909163148821290084478844897 CZK)\nThe limits being 0.10 % (15.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58322218 BTC (420,982.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,330,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.88 % (938,264.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,721.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00663229 BTC (15,457.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.79 CZK over 4537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003548 BTC for 82.69 CZK @ 2,330,581 CZK\nFees are 0.29042445 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (76.909163148821290084478844897 CZK)\nThe limits being 0.10 % (15.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58322218 BTC (420,982.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,330,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.88 % (938,264.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,721.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00663229 BTC (15,457.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.79 CZK over 4537 transactions" + } + ] + }, + { + "id": 6236, + "type": "message", + "date": "2024-11-29T17:00:04", + "date_unixtime": "1732896004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003509 BTC for 82.69 CZK @ 2,356,650 CZK\nFees are 0.29044504 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (77.769466072507977564417954086 CZK)\nThe limits being 0.10 % (15.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58325727 BTC (421,065.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 721,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,356,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.44 % (953,468.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,638.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00666738 BTC (15,712.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.79 CZK over 4538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003509 BTC for 82.69 CZK @ 2,356,650 CZK\nFees are 0.29044504 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (77.769466072507977564417954086 CZK)\nThe limits being 0.10 % (15.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58325727 BTC (421,065.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 721,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,356,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.44 % (953,468.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,638.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00666738 BTC (15,712.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.79 CZK over 4538 transactions" + } + ] + }, + { + "id": 6237, + "type": "message", + "date": "2024-11-29T21:00:07", + "date_unixtime": "1732910407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003546 BTC for 82.69 CZK @ 2,332,052 CZK\nFees are 0.29044403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (76.957727839195640975705167278 CZK)\nThe limits being 0.10 % (15.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58329273 BTC (421,147.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,332,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.99 % (939,121.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,555.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00670284 BTC (15,631.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.78 CZK over 4539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003546 BTC for 82.69 CZK @ 2,332,052 CZK\nFees are 0.29044403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (76.957727839195640975705167278 CZK)\nThe limits being 0.10 % (15.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58329273 BTC (421,147.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,332,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.99 % (939,121.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,555.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00670284 BTC (15,631.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.78 CZK over 4539 transactions" + } + ] + }, + { + "id": 6238, + "type": "message", + "date": "2024-11-30T01:00:03", + "date_unixtime": "1732924803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003543 BTC for 82.69 CZK @ 2,333,923 CZK\nFees are 0.29043109 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (77.019459239824036701350522959 CZK)\nThe limits being 0.10 % (15.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58332816 BTC (421,230.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.21 % (940,212.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,472.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00673827 BTC (15,726.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.78 CZK over 4540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003543 BTC for 82.69 CZK @ 2,333,923 CZK\nFees are 0.29043109 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (77.019459239824036701350522959 CZK)\nThe limits being 0.10 % (15.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58332816 BTC (421,230.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.21 % (940,212.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,472.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00673827 BTC (15,726.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.78 CZK over 4540 transactions" + } + ] + }, + { + "id": 6239, + "type": "message", + "date": "2024-11-30T05:00:04", + "date_unixtime": "1732939204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003577 BTC for 82.69 CZK @ 2,311,799 CZK\nFees are 0.29043867 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (50.859578603208591010579549712 CZK)\nThe limits being 0.10 % (15.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58336393 BTC (421,313.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.10 % (927,306.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,389.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00677404 BTC (15,660.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.78 CZK over 4541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003577 BTC for 82.69 CZK @ 2,311,799 CZK\nFees are 0.29043867 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (50.859578603208591010579549712 CZK)\nThe limits being 0.10 % (15.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58336393 BTC (421,313.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.10 % (927,306.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,389.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00677404 BTC (15,660.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.78 CZK over 4541 transactions" + } + ] + }, + { + "id": 6240, + "type": "message", + "date": "2024-11-30T09:00:04", + "date_unixtime": "1732953604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.70 CZK @ 2,320,472 CZK\nFees are 0.29046872 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.525187371975862259868238941 CZK)\nThe limits being 0.10 % (15.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58339957 BTC (421,396.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.26 % (932,365.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,306.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00680968 BTC (15,801.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.78 CZK over 4542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.70 CZK @ 2,320,472 CZK\nFees are 0.29046872 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.525187371975862259868238941 CZK)\nThe limits being 0.10 % (15.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58339957 BTC (421,396.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.26 % (932,365.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,306.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00680968 BTC (15,801.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.78 CZK over 4542 transactions" + } + ] + }, + { + "id": 6241, + "type": "message", + "date": "2024-11-30T13:00:03", + "date_unixtime": "1732968003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.71 CZK @ 2,306,378 CZK\nFees are 0.29048660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.370153099122396764697790862 CZK)\nThe limits being 0.10 % (15.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58343543 BTC (421,479.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.26 % (924,142.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,223.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00684554 BTC (15,788.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.78 CZK over 4543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.71 CZK @ 2,306,378 CZK\nFees are 0.29048660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.370153099122396764697790862 CZK)\nThe limits being 0.10 % (15.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58343543 BTC (421,479.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.26 % (924,142.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,223.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00684554 BTC (15,788.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.78 CZK over 4543 transactions" + } + ] + }, + { + "id": 6242, + "type": "message", + "date": "2024-11-30T17:00:04", + "date_unixtime": "1732982404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.69 CZK @ 2,313,596 CZK\nFees are 0.29042071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (50.899122873524087071857340939 CZK)\nThe limits being 0.10 % (15.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58347117 BTC (421,562.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,596 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.22 % (928,353.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,140.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00688128 BTC (15,920.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.77 CZK over 4544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.69 CZK @ 2,313,596 CZK\nFees are 0.29042071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (50.899122873524087071857340939 CZK)\nThe limits being 0.10 % (15.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58347117 BTC (421,562.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,596 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.22 % (928,353.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,140.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00688128 BTC (15,920.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.77 CZK over 4544 transactions" + } + ] + }, + { + "id": 6243, + "type": "message", + "date": "2024-11-30T21:00:04", + "date_unixtime": "1732996804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003559 BTC for 82.70 CZK @ 2,323,618 CZK\nFees are 0.29045457 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.559802393225284978271469917 CZK)\nThe limits being 0.10 % (16.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58350676 BTC (421,645.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,323,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.56 % (934,201.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,057.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00691687 BTC (16,072.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.77 CZK over 4545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003559 BTC for 82.70 CZK @ 2,323,618 CZK\nFees are 0.29045457 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.559802393225284978271469917 CZK)\nThe limits being 0.10 % (16.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58350676 BTC (421,645.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,323,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.56 % (934,201.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,057.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00691687 BTC (16,072.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.77 CZK over 4545 transactions" + } + ] + }, + { + "id": 6244, + "type": "message", + "date": "2024-12-01T01:00:04", + "date_unixtime": "1733011204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003578 BTC for 82.70 CZK @ 2,311,460 CZK\nFees are 0.29047728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.426062038594377476484623550 CZK)\nThe limits being 0.10 % (16.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58354254 BTC (421,728.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.83 % (927,106.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,974.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00695265 BTC (16,070.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.77 CZK over 4546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003578 BTC for 82.70 CZK @ 2,311,460 CZK\nFees are 0.29047728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.426062038594377476484623550 CZK)\nThe limits being 0.10 % (16.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58354254 BTC (421,728.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.83 % (927,106.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,974.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00695265 BTC (16,070.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.77 CZK over 4546 transactions" + } + ] + }, + { + "id": 6245, + "type": "message", + "date": "2024-12-01T05:00:04", + "date_unixtime": "1733025604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,564 CZK\nFees are 0.29043765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.394203865755172362949665004 CZK)\nThe limits being 0.10 % (16.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58357836 BTC (421,811.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.39 % (925,416.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,891.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00698847 BTC (16,133.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.77 CZK over 4547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,564 CZK\nFees are 0.29043765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.394203865755172362949665004 CZK)\nThe limits being 0.10 % (16.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58357836 BTC (421,811.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.39 % (925,416.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,891.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00698847 BTC (16,133.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.77 CZK over 4547 transactions" + } + ] + }, + { + "id": 6246, + "type": "message", + "date": "2024-12-01T09:00:07", + "date_unixtime": "1733040007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003575 BTC for 82.71 CZK @ 2,313,458 CZK\nFees are 0.29048460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.448039655053466712659537773 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58361411 BTC (421,894.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,900 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.02 % (928,271.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,808.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00702422 BTC (16,250.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.76 CZK over 4548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003575 BTC for 82.71 CZK @ 2,313,458 CZK\nFees are 0.29048460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.448039655053466712659537773 CZK)\nThe limits being 0.10 % (16.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58361411 BTC (421,894.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,900 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.02 % (928,271.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,808.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00702422 BTC (16,250.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.76 CZK over 4548 transactions" + } + ] + }, + { + "id": 6247, + "type": "message", + "date": "2024-12-01T13:00:04", + "date_unixtime": "1733054404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003558 BTC for 82.71 CZK @ 2,324,618 CZK\nFees are 0.29049786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.570796715430787073797078411 CZK)\nThe limits being 0.10 % (16.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58364969 BTC (421,977.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 722,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.52 % (934,784.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,725.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00705980 BTC (16,411.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.76 CZK over 4549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003558 BTC for 82.71 CZK @ 2,324,618 CZK\nFees are 0.29049786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (25.570796715430787073797078411 CZK)\nThe limits being 0.10 % (16.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58364969 BTC (421,977.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 722,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.52 % (934,784.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,725.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00705980 BTC (16,411.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.76 CZK over 4549 transactions" + } + ] + }, + { + "id": 6248, + "type": "message", + "date": "2024-12-01T17:00:04", + "date_unixtime": "1733068804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003555 BTC for 82.70 CZK @ 2,326,404 CZK\nFees are 0.29047598 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (51.180895099500552566719715876 CZK)\nThe limits being 0.10 % (16.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58368524 BTC (422,060.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.73 % (935,827.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,642.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00709535 BTC (16,506.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.76 CZK over 4550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003555 BTC for 82.70 CZK @ 2,326,404 CZK\nFees are 0.29047598 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (51.180895099500552566719715876 CZK)\nThe limits being 0.10 % (16.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58368524 BTC (422,060.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.73 % (935,827.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,642.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00709535 BTC (16,506.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.76 CZK over 4550 transactions" + } + ] + }, + { + "id": 6249, + "type": "message", + "date": "2024-12-01T21:00:03", + "date_unixtime": "1733083203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003559 BTC for 82.69 CZK @ 2,323,528 CZK\nFees are 0.29044329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (51.117619859012702520666288389 CZK)\nThe limits being 0.10 % (16.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58372083 BTC (422,143.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,323,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.29 % (934,147.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,559.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00713094 BTC (16,568.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.76 CZK over 4551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003559 BTC for 82.69 CZK @ 2,323,528 CZK\nFees are 0.29044329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (51.117619859012702520666288389 CZK)\nThe limits being 0.10 % (16.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58372083 BTC (422,143.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,323,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.29 % (934,147.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,559.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00713094 BTC (16,568.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.76 CZK over 4551 transactions" + } + ] + }, + { + "id": 6250, + "type": "message", + "date": "2024-12-02T01:00:04", + "date_unixtime": "1733097604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003538 BTC for 82.70 CZK @ 2,337,433 CZK\nFees are 0.29045735 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (359.96464032302993789684098870 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58375621 BTC (422,226.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,337,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.17 % (942,264.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,476.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00716632 BTC (16,750.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.76 CZK over 4552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003538 BTC for 82.70 CZK @ 2,337,433 CZK\nFees are 0.29045735 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.15 % (359.96464032302993789684098870 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58375621 BTC (422,226.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,337,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.17 % (942,264.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,476.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00716632 BTC (16,750.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.76 CZK over 4552 transactions" + } + ] + }, + { + "id": 6251, + "type": "message", + "date": "2024-12-02T05:00:04", + "date_unixtime": "1733112004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003558 BTC for 82.69 CZK @ 2,324,119 CZK\nFees are 0.29043547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.14 % (357.91427096785757997654639343 CZK)\nThe limits being 0.10 % (16.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58379179 BTC (422,309.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.28 % (934,491.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,393.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00720190 BTC (16,738.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.75 CZK over 4553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003558 BTC for 82.69 CZK @ 2,324,119 CZK\nFees are 0.29043547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.14 % (357.91427096785757997654639343 CZK)\nThe limits being 0.10 % (16.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58379179 BTC (422,309.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.28 % (934,491.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,393.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00720190 BTC (16,738.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.75 CZK over 4553 transactions" + } + ] + }, + { + "id": 6252, + "type": "message", + "date": "2024-12-02T09:00:04", + "date_unixtime": "1733126404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,464 CZK\nFees are 0.29044828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (356.42740194430046195717730737 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58382752 BTC (422,392.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.90 % (928,854.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,310.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00723763 BTC (16,751.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.75 CZK over 4554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,464 CZK\nFees are 0.29044828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.13 % (356.42740194430046195717730737 CZK)\nThe limits being 0.10 % (16.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58382752 BTC (422,392.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.90 % (928,854.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,310.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00723763 BTC (16,751.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.75 CZK over 4554 transactions" + } + ] + }, + { + "id": 6253, + "type": "message", + "date": "2024-12-02T13:00:05", + "date_unixtime": "1733140805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003613 BTC for 82.70 CZK @ 2,289,013 CZK\nFees are 0.29047029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (75.537442298757559171187585770 CZK)\nThe limits being 0.10 % (16.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58386365 BTC (422,475.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,586 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.34 % (913,995.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,227.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00727376 BTC (16,649.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.75 CZK over 4555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003613 BTC for 82.70 CZK @ 2,289,013 CZK\nFees are 0.29047029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (75.537442298757559171187585770 CZK)\nThe limits being 0.10 % (16.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58386365 BTC (422,475.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,586 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.34 % (913,995.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,227.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00727376 BTC (16,649.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.75 CZK over 4555 transactions" + } + ] + }, + { + "id": 6254, + "type": "message", + "date": "2024-12-02T17:00:03", + "date_unixtime": "1733155203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003528 BTC for 82.70 CZK @ 2,344,014 CZK\nFees are 0.29045190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (77.352464788207260981123889519 CZK)\nThe limits being 0.10 % (17.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58389893 BTC (422,558.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,344,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.90 % (946,108.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,144.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00730904 BTC (17,132.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.75 CZK over 4556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003528 BTC for 82.70 CZK @ 2,344,014 CZK\nFees are 0.29045190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (77.352464788207260981123889519 CZK)\nThe limits being 0.10 % (17.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58389893 BTC (422,558.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,344,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.90 % (946,108.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,144.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00730904 BTC (17,132.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.75 CZK over 4556 transactions" + } + ] + }, + { + "id": 6255, + "type": "message", + "date": "2024-12-02T21:00:04", + "date_unixtime": "1733169604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,730 CZK\nFees are 0.29048602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (76.089088191330343796711509714 CZK)\nThe limits being 0.10 % (16.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58393480 BTC (422,641.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.57 % (923,754.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,061.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00734491 BTC (16,935.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.75 CZK over 4557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,730 CZK\nFees are 0.29048602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (76.089088191330343796711509714 CZK)\nThe limits being 0.10 % (16.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58393480 BTC (422,641.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.57 % (923,754.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,061.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00734491 BTC (16,935.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.75 CZK over 4557 transactions" + } + ] + }, + { + "id": 6256, + "type": "message", + "date": "2024-12-03T01:00:06", + "date_unixtime": "1733184006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,593 CZK\nFees are 0.29044131 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (101.57809465085489452466339893 CZK)\nThe limits being 0.10 % (17.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58397062 BTC (422,724.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.92 % (925,425.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,978.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00738073 BTC (17,039.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.74 CZK over 4558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,593 CZK\nFees are 0.29044131 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (101.57809465085489452466339893 CZK)\nThe limits being 0.10 % (17.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58397062 BTC (422,724.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.92 % (925,425.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,978.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00738073 BTC (17,039.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.74 CZK over 4558 transactions" + } + ] + }, + { + "id": 6257, + "type": "message", + "date": "2024-12-03T05:00:04", + "date_unixtime": "1733198404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003568 BTC for 82.70 CZK @ 2,317,737 CZK\nFees are 0.29045201 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (76.485313841856193904294610119 CZK)\nThe limits being 0.10 % (17.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58400630 BTC (422,807.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 723,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.14 % (930,765.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,895.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00741641 BTC (17,189.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.74 CZK over 4559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003568 BTC for 82.70 CZK @ 2,317,737 CZK\nFees are 0.29045201 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (76.485313841856193904294610119 CZK)\nThe limits being 0.10 % (17.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58400630 BTC (422,807.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 723,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.14 % (930,765.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,895.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00741641 BTC (17,189.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.74 CZK over 4559 transactions" + } + ] + }, + { + "id": 6258, + "type": "message", + "date": "2024-12-03T09:00:04", + "date_unixtime": "1733212804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003590 BTC for 82.70 CZK @ 2,303,675 CZK\nFees are 0.29046984 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (76.021269656203288490284005980 CZK)\nThe limits being 0.10 % (17.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58404220 BTC (422,890.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.15 % (922,552.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,812.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00745231 BTC (17,167.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.74 CZK over 4560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003590 BTC for 82.70 CZK @ 2,303,675 CZK\nFees are 0.29046984 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (76.021269656203288490284005980 CZK)\nThe limits being 0.10 % (17.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58404220 BTC (422,890.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.15 % (922,552.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,812.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00745231 BTC (17,167.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.74 CZK over 4560 transactions" + } + ] + }, + { + "id": 6259, + "type": "message", + "date": "2024-12-03T13:00:08", + "date_unixtime": "1733227208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003623 BTC for 82.70 CZK @ 2,282,641 CZK\nFees are 0.29046331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (75.327138675139358367711354171 CZK)\nThe limits being 0.10 % (17.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58407843 BTC (422,973.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,282,641 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.21 % (910,267.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,729.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00748854 BTC (17,093.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.74 CZK over 4561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003623 BTC for 82.70 CZK @ 2,282,641 CZK\nFees are 0.29046331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (75.327138675139358367711354171 CZK)\nThe limits being 0.10 % (17.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58407843 BTC (422,973.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,282,641 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.21 % (910,267.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,729.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00748854 BTC (17,093.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.74 CZK over 4561 transactions" + } + ] + }, + { + "id": 6260, + "type": "message", + "date": "2024-12-03T17:00:04", + "date_unixtime": "1733241604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003609 BTC for 82.71 CZK @ 2,291,729 CZK\nFees are 0.29049295 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.418041341864847376106597260 CZK)\nThe limits being 0.10 % (17.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58411452 BTC (423,056.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,291,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.42 % (915,575.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,646.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00752463 BTC (17,244.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.73 CZK over 4562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003609 BTC for 82.71 CZK @ 2,291,729 CZK\nFees are 0.29049295 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.418041341864847376106597260 CZK)\nThe limits being 0.10 % (17.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58411452 BTC (423,056.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,291,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.42 % (915,575.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,646.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00752463 BTC (17,244.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.73 CZK over 4562 transactions" + } + ] + }, + { + "id": 6261, + "type": "message", + "date": "2024-12-03T21:00:04", + "date_unixtime": "1733256004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003609 BTC for 82.71 CZK @ 2,291,689 CZK\nFees are 0.29048786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (75.625738725764893529338918110 CZK)\nThe limits being 0.10 % (17.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58415061 BTC (423,139.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,291,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.37 % (915,551.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,563.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00756072 BTC (17,326.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.73 CZK over 4563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003609 BTC for 82.71 CZK @ 2,291,689 CZK\nFees are 0.29048786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (75.625738725764893529338918110 CZK)\nThe limits being 0.10 % (17.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58415061 BTC (423,139.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,291,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.37 % (915,551.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,563.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00756072 BTC (17,326.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.73 CZK over 4563 transactions" + } + ] + }, + { + "id": 6262, + "type": "message", + "date": "2024-12-04T01:00:04", + "date_unixtime": "1733270404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,704 CZK\nFees are 0.29046386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.637486684164566793844699689 CZK)\nThe limits being 0.10 % (17.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58418654 BTC (423,222.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.71 % (921,401.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,480.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00759665 BTC (17,485.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.73 CZK over 4564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,704 CZK\nFees are 0.29046386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.637486684164566793844699689 CZK)\nThe limits being 0.10 % (17.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58418654 BTC (423,222.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.71 % (921,401.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,480.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00759665 BTC (17,485.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.73 CZK over 4564 transactions" + } + ] + }, + { + "id": 6263, + "type": "message", + "date": "2024-12-04T05:00:04", + "date_unixtime": "1733284804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,758 CZK\nFees are 0.29046062 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.594678297261032437636237573 CZK)\nThe limits being 0.10 % (17.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58422250 BTC (423,305.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.40 % (920,264.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,397.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00763261 BTC (17,553.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.73 CZK over 4565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,758 CZK\nFees are 0.29046062 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.594678297261032437636237573 CZK)\nThe limits being 0.10 % (17.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58422250 BTC (423,305.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.40 % (920,264.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,397.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00763261 BTC (17,553.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.73 CZK over 4565 transactions" + } + ] + }, + { + "id": 6264, + "type": "message", + "date": "2024-12-04T09:00:04", + "date_unixtime": "1733299204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003567 BTC for 82.69 CZK @ 2,318,168 CZK\nFees are 0.29042461 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.999692795429062480924278344 CZK)\nThe limits being 0.10 % (17.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58425817 BTC (423,388.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,318,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.90 % (931,019.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,314.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00766828 BTC (17,776.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.73 CZK over 4566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003567 BTC for 82.69 CZK @ 2,318,168 CZK\nFees are 0.29042461 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.999692795429062480924278344 CZK)\nThe limits being 0.10 % (17.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58425817 BTC (423,388.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,318,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.90 % (931,019.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,314.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00766828 BTC (17,776.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.73 CZK over 4566 transactions" + } + ] + }, + { + "id": 6265, + "type": "message", + "date": "2024-12-04T13:00:04", + "date_unixtime": "1733313604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003572 BTC for 82.70 CZK @ 2,315,333 CZK\nFees are 0.29047603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.937321800908466503854649824 CZK)\nThe limits being 0.10 % (17.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58429389 BTC (423,471.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.46 % (929,363.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,231.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00770400 BTC (17,837.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.72 CZK over 4567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003572 BTC for 82.70 CZK @ 2,315,333 CZK\nFees are 0.29047603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (50.937321800908466503854649824 CZK)\nThe limits being 0.10 % (17.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58429389 BTC (423,471.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.46 % (929,363.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,231.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00770400 BTC (17,837.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.72 CZK over 4567 transactions" + } + ] + }, + { + "id": 6266, + "type": "message", + "date": "2024-12-04T17:00:07", + "date_unixtime": "1733328007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,759 CZK\nFees are 0.29046075 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (50.594700354654149852601545315 CZK)\nThe limits being 0.10 % (17.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58432985 BTC (423,554.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.27 % (920,263.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,148.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00773996 BTC (17,800.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.72 CZK over 4568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,759 CZK\nFees are 0.29046075 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (50.594700354654149852601545315 CZK)\nThe limits being 0.10 % (17.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58432985 BTC (423,554.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.27 % (920,263.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,148.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00773996 BTC (17,800.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.72 CZK over 4568 transactions" + } + ] + }, + { + "id": 6267, + "type": "message", + "date": "2024-12-04T21:00:04", + "date_unixtime": "1733342404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003552 BTC for 82.70 CZK @ 2,328,253 CZK\nFees are 0.29046147 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (51.221564165061922909456541747 CZK)\nThe limits being 0.10 % (18.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58436537 BTC (423,637.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 724,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.16 % (936,912.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,065.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00777548 BTC (18,103.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.72 CZK over 4569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003552 BTC for 82.70 CZK @ 2,328,253 CZK\nFees are 0.29046147 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (51.221564165061922909456541747 CZK)\nThe limits being 0.10 % (18.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58436537 BTC (423,637.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 724,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.16 % (936,912.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,065.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00777548 BTC (18,103.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.72 CZK over 4569 transactions" + } + ] + }, + { + "id": 6268, + "type": "message", + "date": "2024-12-05T01:00:04", + "date_unixtime": "1733356804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003504 BTC for 82.69 CZK @ 2,359,889 CZK\nFees are 0.29042969 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (51.917547747268123212591546029 CZK)\nThe limits being 0.10 % (18.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58440041 BTC (423,720.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,052 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,359,889 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.48 % (955,399.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,982.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00781052 BTC (18,431.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.72 CZK over 4570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003504 BTC for 82.69 CZK @ 2,359,889 CZK\nFees are 0.29042969 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (51.917547747268123212591546029 CZK)\nThe limits being 0.10 % (18.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58440041 BTC (423,720.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,052 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,359,889 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.48 % (955,399.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,982.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00781052 BTC (18,431.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.72 CZK over 4570 transactions" + } + ] + }, + { + "id": 6269, + "type": "message", + "date": "2024-12-05T05:00:04", + "date_unixtime": "1733371204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003378 BTC for 82.70 CZK @ 2,448,124 CZK\nFees are 0.29045472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.858723742213089001992139415 CZK)\nThe limits being 0.10 % (19.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58443419 BTC (423,803.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,448,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 237.60 % (1,006,963.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,899.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00784430 BTC (19,203.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.72 CZK over 4571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003378 BTC for 82.70 CZK @ 2,448,124 CZK\nFees are 0.29045472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.858723742213089001992139415 CZK)\nThe limits being 0.10 % (19.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58443419 BTC (423,803.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,448,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 237.60 % (1,006,963.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,899.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00784430 BTC (19,203.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.72 CZK over 4571 transactions" + } + ] + }, + { + "id": 6270, + "type": "message", + "date": "2024-12-05T09:00:05", + "date_unixtime": "1733385605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003421 BTC for 82.69 CZK @ 2,417,168 CZK\nFees are 0.29043256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.177693320965046773591465242 CZK)\nThe limits being 0.10 % (19.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58446840 BTC (423,886.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,417,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.29 % (988,871.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,817.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00787851 BTC (19,043.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.71 CZK over 4572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003421 BTC for 82.69 CZK @ 2,417,168 CZK\nFees are 0.29043256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.177693320965046773591465242 CZK)\nThe limits being 0.10 % (19.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58446840 BTC (423,886.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,417,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.29 % (988,871.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,817.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00787851 BTC (19,043.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.71 CZK over 4572 transactions" + } + ] + }, + { + "id": 6271, + "type": "message", + "date": "2024-12-05T13:00:08", + "date_unixtime": "1733400008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003373 BTC for 82.71 CZK @ 2,452,082 CZK\nFees are 0.29049368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.945796128610639518282512834 CZK)\nThe limits being 0.10 % (19.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58450213 BTC (423,969.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,452,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 238.05 % (1,009,277.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,734.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00791224 BTC (19,401.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.71 CZK over 4573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003373 BTC for 82.71 CZK @ 2,452,082 CZK\nFees are 0.29049368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.945796128610639518282512834 CZK)\nThe limits being 0.10 % (19.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58450213 BTC (423,969.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,452,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 238.05 % (1,009,277.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,734.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00791224 BTC (19,401.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.71 CZK over 4573 transactions" + } + ] + }, + { + "id": 6272, + "type": "message", + "date": "2024-12-05T17:00:04", + "date_unixtime": "1733414404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003428 BTC for 82.70 CZK @ 2,412,510 CZK\nFees are 0.29046607 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.075226683271327483329932168 CZK)\nThe limits being 0.10 % (19.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58453641 BTC (424,052.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,412,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.55 % (986,147.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,651.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00794652 BTC (19,171.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.71 CZK over 4574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003428 BTC for 82.70 CZK @ 2,412,510 CZK\nFees are 0.29046607 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (53.075226683271327483329932168 CZK)\nThe limits being 0.10 % (19.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58453641 BTC (424,052.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,412,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.55 % (986,147.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,651.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00794652 BTC (19,171.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.71 CZK over 4574 transactions" + } + ] + }, + { + "id": 6273, + "type": "message", + "date": "2024-12-05T21:00:04", + "date_unixtime": "1733428804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003515 BTC for 82.71 CZK @ 2,352,940 CZK\nFees are 0.29048362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (77.647028809692392416017622535 CZK)\nThe limits being 0.10 % (18.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58457156 BTC (424,135.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,352,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.30 % (951,326.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,568.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00798167 BTC (18,780.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.71 CZK over 4575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003515 BTC for 82.71 CZK @ 2,352,940 CZK\nFees are 0.29048362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (77.647028809692392416017622535 CZK)\nThe limits being 0.10 % (18.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58457156 BTC (424,135.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,352,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.30 % (951,326.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,568.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00798167 BTC (18,780.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.71 CZK over 4575 transactions" + } + ] + }, + { + "id": 6274, + "type": "message", + "date": "2024-12-06T01:00:04", + "date_unixtime": "1733443204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,588 CZK\nFees are 0.29044068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (76.183405572122362351535121211 CZK)\nThe limits being 0.10 % (18.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58460738 BTC (424,218.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.14 % (925,399.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,485.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00801749 BTC (18,509.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.71 CZK over 4576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,588 CZK\nFees are 0.29044068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (76.183405572122362351535121211 CZK)\nThe limits being 0.10 % (18.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58460738 BTC (424,218.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.14 % (925,399.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,485.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00801749 BTC (18,509.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.71 CZK over 4576 transactions" + } + ] + }, + { + "id": 6275, + "type": "message", + "date": "2024-12-06T05:00:04", + "date_unixtime": "1733457604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003555 BTC for 82.71 CZK @ 2,326,571 CZK\nFees are 0.29049676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (76.776834298520578818018790772 CZK)\nThe limits being 0.10 % (18.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58464293 BTC (424,301.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.58 % (935,911.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,402.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00805304 BTC (18,735.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.70 CZK over 4577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003555 BTC for 82.71 CZK @ 2,326,571 CZK\nFees are 0.29049676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (76.776834298520578818018790772 CZK)\nThe limits being 0.10 % (18.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58464293 BTC (424,301.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.58 % (935,911.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,402.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00805304 BTC (18,735.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.70 CZK over 4577 transactions" + } + ] + }, + { + "id": 6276, + "type": "message", + "date": "2024-12-06T09:00:04", + "date_unixtime": "1733472004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 82.69 CZK @ 2,337,784 CZK\nFees are 0.29041884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (77.146858843919056837962804482 CZK)\nThe limits being 0.10 % (18.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58467830 BTC (424,384.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,337,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.08 % (942,466.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,319.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00808841 BTC (18,908.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.70 CZK over 4578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 82.69 CZK @ 2,337,784 CZK\nFees are 0.29041884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (77.146858843919056837962804482 CZK)\nThe limits being 0.10 % (18.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58467830 BTC (424,384.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,337,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.08 % (942,466.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,319.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00808841 BTC (18,908.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.70 CZK over 4578 transactions" + } + ] + }, + { + "id": 6277, + "type": "message", + "date": "2024-12-06T13:00:04", + "date_unixtime": "1733486404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003539 BTC for 82.69 CZK @ 2,336,619 CZK\nFees are 0.29043826 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (51.405611543547850959055005696 CZK)\nThe limits being 0.10 % (18.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58471369 BTC (424,467.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 725,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.87 % (941,785.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,236.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00812380 BTC (18,982.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.70 CZK over 4579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003539 BTC for 82.69 CZK @ 2,336,619 CZK\nFees are 0.29043826 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (51.405611543547850959055005696 CZK)\nThe limits being 0.10 % (18.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58471369 BTC (424,467.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 725,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.87 % (941,785.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,236.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00812380 BTC (18,982.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.70 CZK over 4579 transactions" + } + ] + }, + { + "id": 6278, + "type": "message", + "date": "2024-12-06T17:00:04", + "date_unixtime": "1733500804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003495 BTC for 82.71 CZK @ 2,366,523 CZK\nFees are 0.29049813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.095259700062656239641939908 CZK)\nThe limits being 0.10 % (19.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58474864 BTC (424,550.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,366,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.95 % (959,270.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,153.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00815875 BTC (19,307.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.70 CZK over 4580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003495 BTC for 82.71 CZK @ 2,366,523 CZK\nFees are 0.29049813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.095259700062656239641939908 CZK)\nThe limits being 0.10 % (19.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58474864 BTC (424,550.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,366,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.95 % (959,270.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,153.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00815875 BTC (19,307.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.70 CZK over 4580 transactions" + } + ] + }, + { + "id": 6279, + "type": "message", + "date": "2024-12-06T21:00:04", + "date_unixtime": "1733515204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003414 BTC for 82.70 CZK @ 2,422,511 CZK\nFees are 0.29047899 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (79.94286817316895260262193045 CZK)\nThe limits being 0.10 % (19.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58478278 BTC (424,633.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,422,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.62 % (992,009.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,070.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00819289 BTC (19,847.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.69 CZK over 4581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003414 BTC for 82.70 CZK @ 2,422,511 CZK\nFees are 0.29047899 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (79.94286817316895260262193045 CZK)\nThe limits being 0.10 % (19.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58478278 BTC (424,633.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,422,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.62 % (992,009.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,070.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00819289 BTC (19,847.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.69 CZK over 4581 transactions" + } + ] + }, + { + "id": 6280, + "type": "message", + "date": "2024-12-07T01:00:05", + "date_unixtime": "1733529605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003477 BTC for 82.71 CZK @ 2,378,653 CZK\nFees are 0.29048334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.495554469623788698141491833 CZK)\nThe limits being 0.10 % (19.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58481755 BTC (424,716.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,653 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.53 % (966,361.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,987.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00822766 BTC (19,570.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.69 CZK over 4582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003477 BTC for 82.71 CZK @ 2,378,653 CZK\nFees are 0.29048334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.495554469623788698141491833 CZK)\nThe limits being 0.10 % (19.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58481755 BTC (424,716.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,653 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.53 % (966,361.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,987.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00822766 BTC (19,570.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.69 CZK over 4582 transactions" + } + ] + }, + { + "id": 6281, + "type": "message", + "date": "2024-12-07T05:00:03", + "date_unixtime": "1733544003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003487 BTC for 82.70 CZK @ 2,371,533 CZK\nFees are 0.29044682 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (104.34747280417592055565772163 CZK)\nThe limits being 0.10 % (19.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58485242 BTC (424,799.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,336 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,371,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.51 % (962,197.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,904.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00826253 BTC (19,594.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.69 CZK over 4583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003487 BTC for 82.70 CZK @ 2,371,533 CZK\nFees are 0.29044682 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (104.34747280417592055565772163 CZK)\nThe limits being 0.10 % (19.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58485242 BTC (424,799.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,336 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,371,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.51 % (962,197.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,904.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00826253 BTC (19,594.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.69 CZK over 4583 transactions" + } + ] + }, + { + "id": 6282, + "type": "message", + "date": "2024-12-07T09:00:04", + "date_unixtime": "1733558404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003488 BTC for 82.70 CZK @ 2,371,080 CZK\nFees are 0.29047460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.245651439571591174010230247 CZK)\nThe limits being 0.10 % (19.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58488730 BTC (424,882.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,371,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.40 % (961,932.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,821.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00829741 BTC (19,673.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.69 CZK over 4584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003488 BTC for 82.70 CZK @ 2,371,080 CZK\nFees are 0.29047460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.245651439571591174010230247 CZK)\nThe limits being 0.10 % (19.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58488730 BTC (424,882.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,371,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.40 % (961,932.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,821.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00829741 BTC (19,673.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.69 CZK over 4584 transactions" + } + ] + }, + { + "id": 6283, + "type": "message", + "date": "2024-12-07T13:00:04", + "date_unixtime": "1733572804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003477 BTC for 82.71 CZK @ 2,378,752 CZK\nFees are 0.29049546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.498829614898330390655999940 CZK)\nThe limits being 0.10 % (19.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58492207 BTC (424,965.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,534 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.41 % (966,419.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,738.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00833218 BTC (19,820.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.69 CZK over 4585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003477 BTC for 82.71 CZK @ 2,378,752 CZK\nFees are 0.29049546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (78.498829614898330390655999940 CZK)\nThe limits being 0.10 % (19.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58492207 BTC (424,965.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,534 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.41 % (966,419.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,738.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00833218 BTC (19,820.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.69 CZK over 4585 transactions" + } + ] + }, + { + "id": 6284, + "type": "message", + "date": "2024-12-07T17:00:03", + "date_unixtime": "1733587203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 82.70 CZK @ 2,373,828 CZK\nFees are 0.29047773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.336329780040810092346134106 CZK)\nThe limits being 0.10 % (19.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58495691 BTC (425,048.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,828 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.69 % (963,538.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,655.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00836702 BTC (19,861.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.68 CZK over 4586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 82.70 CZK @ 2,373,828 CZK\nFees are 0.29047773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.336329780040810092346134106 CZK)\nThe limits being 0.10 % (19.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58495691 BTC (425,048.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,828 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.69 % (963,538.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,655.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00836702 BTC (19,861.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.68 CZK over 4586 transactions" + } + ] + }, + { + "id": 6285, + "type": "message", + "date": "2024-12-07T21:00:04", + "date_unixtime": "1733601604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003468 BTC for 82.71 CZK @ 2,384,840 CZK\nFees are 0.29048497 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.699704800499290545374924786 CZK)\nThe limits being 0.10 % (20.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58499159 BTC (425,131.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.16 % (969,979.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,572.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00840170 BTC (20,036.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.68 CZK over 4587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003468 BTC for 82.71 CZK @ 2,384,840 CZK\nFees are 0.29048497 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.699704800499290545374924786 CZK)\nThe limits being 0.10 % (20.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58499159 BTC (425,131.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.16 % (969,979.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,572.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00840170 BTC (20,036.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.68 CZK over 4587 transactions" + } + ] + }, + { + "id": 6286, + "type": "message", + "date": "2024-12-08T01:00:04", + "date_unixtime": "1733616004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,744 CZK\nFees are 0.29044938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.531547917540407136174468497 CZK)\nThe limits being 0.10 % (20.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58502634 BTC (425,214.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,830 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,744 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.41 % (966,998.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,489.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00843645 BTC (20,076.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.68 CZK over 4588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,744 CZK\nFees are 0.29044938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.531547917540407136174468497 CZK)\nThe limits being 0.10 % (20.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58502634 BTC (425,214.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,830 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,744 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.41 % (966,998.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,489.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00843645 BTC (20,076.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.68 CZK over 4588 transactions" + } + ] + }, + { + "id": 6287, + "type": "message", + "date": "2024-12-08T05:00:04", + "date_unixtime": "1733630404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003473 BTC for 82.69 CZK @ 2,380,935 CZK\nFees are 0.29042748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (52.380566393092072936200407702 CZK)\nThe limits being 0.10 % (20.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58506107 BTC (425,297.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 726,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.53 % (967,694.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,406.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00847118 BTC (20,169.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.68 CZK over 4589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003473 BTC for 82.69 CZK @ 2,380,935 CZK\nFees are 0.29042748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (52.380566393092072936200407702 CZK)\nThe limits being 0.10 % (20.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58506107 BTC (425,297.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 726,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.53 % (967,694.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,406.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00847118 BTC (20,169.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.68 CZK over 4589 transactions" + } + ] + }, + { + "id": 6288, + "type": "message", + "date": "2024-12-08T09:00:03", + "date_unixtime": "1733644803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003481 BTC for 82.71 CZK @ 2,375,935 CZK\nFees are 0.29048524 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.405868593505036308570677720 CZK)\nThe limits being 0.10 % (20.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58509588 BTC (425,380.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,375,935 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.80 % (964,769.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,323.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00850599 BTC (20,209.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.68 CZK over 4590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003481 BTC for 82.71 CZK @ 2,375,935 CZK\nFees are 0.29048524 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.405868593505036308570677720 CZK)\nThe limits being 0.10 % (20.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58509588 BTC (425,380.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,375,935 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.80 % (964,769.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,323.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00850599 BTC (20,209.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.68 CZK over 4590 transactions" + } + ] + }, + { + "id": 6289, + "type": "message", + "date": "2024-12-08T13:00:04", + "date_unixtime": "1733659204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003478 BTC for 82.71 CZK @ 2,377,966 CZK\nFees are 0.29048300 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.472893155439572766163740310 CZK)\nThe limits being 0.10 % (20.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58513066 BTC (425,463.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.04 % (965,957.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,240.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00854077 BTC (20,309.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.67 CZK over 4591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003478 BTC for 82.71 CZK @ 2,377,966 CZK\nFees are 0.29048300 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (78.472893155439572766163740310 CZK)\nThe limits being 0.10 % (20.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58513066 BTC (425,463.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.04 % (965,957.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,240.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00854077 BTC (20,309.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.67 CZK over 4591 transactions" + } + ] + }, + { + "id": 6290, + "type": "message", + "date": "2024-12-08T17:00:06", + "date_unixtime": "1733673606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003472 BTC for 82.70 CZK @ 2,382,053 CZK\nFees are 0.29048017 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.607736250886872903363573112 CZK)\nThe limits being 0.10 % (20.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58516538 BTC (425,546.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,382,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.55 % (968,348.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,157.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00857549 BTC (20,427.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.67 CZK over 4592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003472 BTC for 82.70 CZK @ 2,382,053 CZK\nFees are 0.29048017 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.607736250886872903363573112 CZK)\nThe limits being 0.10 % (20.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58516538 BTC (425,546.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,382,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.55 % (968,348.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,157.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00857549 BTC (20,427.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.67 CZK over 4592 transactions" + } + ] + }, + { + "id": 6291, + "type": "message", + "date": "2024-12-08T21:00:04", + "date_unixtime": "1733688004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003481 BTC for 82.70 CZK @ 2,375,704 CZK\nFees are 0.29045693 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.398226599318358168129444099 CZK)\nThe limits being 0.10 % (20.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58520019 BTC (425,629.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,375,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.64 % (964,632.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,074.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00861030 BTC (20,455.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.67 CZK over 4593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003481 BTC for 82.70 CZK @ 2,375,704 CZK\nFees are 0.29045693 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.398226599318358168129444099 CZK)\nThe limits being 0.10 % (20.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58520019 BTC (425,629.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,375,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.64 % (964,632.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,074.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00861030 BTC (20,455.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.67 CZK over 4593 transactions" + } + ] + }, + { + "id": 6292, + "type": "message", + "date": "2024-12-09T01:00:04", + "date_unixtime": "1733702404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003434 BTC for 82.69 CZK @ 2,407,984 CZK\nFees are 0.29042856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.46347384155455904334828101 CZK)\nThe limits being 0.10 % (20.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58523453 BTC (425,712.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,407,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.03 % (983,523.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,991.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00864464 BTC (20,816.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.67 CZK over 4594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003434 BTC for 82.69 CZK @ 2,407,984 CZK\nFees are 0.29042856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (79.46347384155455904334828101 CZK)\nThe limits being 0.10 % (20.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58523453 BTC (425,712.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,407,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.03 % (983,523.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,991.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00864464 BTC (20,816.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.67 CZK over 4594 transactions" + } + ] + }, + { + "id": 6293, + "type": "message", + "date": "2024-12-09T05:00:04", + "date_unixtime": "1733716804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003496 BTC for 82.70 CZK @ 2,365,423 CZK\nFees are 0.29044621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.058968520931887136441220032 CZK)\nThe limits being 0.10 % (20.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58526949 BTC (425,795.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,365,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.14 % (958,614.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,908.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00867960 BTC (20,530.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.66 CZK over 4595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003496 BTC for 82.70 CZK @ 2,365,423 CZK\nFees are 0.29044621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.058968520931887136441220032 CZK)\nThe limits being 0.10 % (20.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58526949 BTC (425,795.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,365,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.14 % (958,614.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,908.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00867960 BTC (20,530.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.66 CZK over 4595 transactions" + } + ] + }, + { + "id": 6294, + "type": "message", + "date": "2024-12-09T09:00:08", + "date_unixtime": "1733731208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003481 BTC for 82.70 CZK @ 2,375,611 CZK\nFees are 0.29044553 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.395149957338341945105374512 CZK)\nThe limits being 0.10 % (20.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58530430 BTC (425,878.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,375,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.49 % (964,576.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,825.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00871441 BTC (20,702.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.66 CZK over 4596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003481 BTC for 82.70 CZK @ 2,375,611 CZK\nFees are 0.29044553 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (78.395149957338341945105374512 CZK)\nThe limits being 0.10 % (20.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58530430 BTC (425,878.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,375,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.49 % (964,576.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,825.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00871441 BTC (20,702.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.66 CZK over 4596 transactions" + } + ] + }, + { + "id": 6295, + "type": "message", + "date": "2024-12-09T13:00:07", + "date_unixtime": "1733745607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003539 BTC for 82.70 CZK @ 2,336,808 CZK\nFees are 0.29046182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (77.114669851338343489225968510 CZK)\nThe limits being 0.10 % (20.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58533969 BTC (425,961.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.12 % (941,865.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,742.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00874980 BTC (20,446.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.66 CZK over 4597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003539 BTC for 82.70 CZK @ 2,336,808 CZK\nFees are 0.29046182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (77.114669851338343489225968510 CZK)\nThe limits being 0.10 % (20.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58533969 BTC (425,961.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.12 % (941,865.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,742.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00874980 BTC (20,446.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.66 CZK over 4597 transactions" + } + ] + }, + { + "id": 6296, + "type": "message", + "date": "2024-12-09T17:00:03", + "date_unixtime": "1733760003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003554 BTC for 82.70 CZK @ 2,326,937 CZK\nFees are 0.29046072 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (51.192606200750945130422811103 CZK)\nThe limits being 0.10 % (20.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58537523 BTC (426,044.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.72 % (936,086.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,659.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00878534 BTC (20,442.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.66 CZK over 4598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003554 BTC for 82.70 CZK @ 2,326,937 CZK\nFees are 0.29046072 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (51.192606200750945130422811103 CZK)\nThe limits being 0.10 % (20.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58537523 BTC (426,044.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.72 % (936,086.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,659.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00878534 BTC (20,442.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.66 CZK over 4598 transactions" + } + ] + }, + { + "id": 6297, + "type": "message", + "date": "2024-12-09T21:00:04", + "date_unixtime": "1733774404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003570 BTC for 82.70 CZK @ 2,316,463 CZK\nFees are 0.29045505 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (76.443266350964900160363098900 CZK)\nThe limits being 0.10 % (20.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58541093 BTC (426,127.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 727,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,316,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.23 % (929,955.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,576.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882104 BTC (20,433.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.66 CZK over 4599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003570 BTC for 82.70 CZK @ 2,316,463 CZK\nFees are 0.29045505 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (76.443266350964900160363098900 CZK)\nThe limits being 0.10 % (20.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58541093 BTC (426,127.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 727,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,316,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.23 % (929,955.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,576.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882104 BTC (20,433.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.66 CZK over 4599 transactions" + } + ] + }, + { + "id": 6298, + "type": "message", + "date": "2024-12-10T01:00:03", + "date_unixtime": "1733788803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003557 BTC for 82.70 CZK @ 2,324,938 CZK\nFees are 0.29045617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (51.148628914346596022720030078 CZK)\nThe limits being 0.10 % (20.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58544650 BTC (426,210.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.36 % (934,916.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,493.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00885661 BTC (20,591.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.65 CZK over 4600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003557 BTC for 82.70 CZK @ 2,324,938 CZK\nFees are 0.29045617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (51.148628914346596022720030078 CZK)\nThe limits being 0.10 % (20.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58544650 BTC (426,210.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.36 % (934,916.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,493.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00885661 BTC (20,591.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.65 CZK over 4600 transactions" + } + ] + }, + { + "id": 6299, + "type": "message", + "date": "2024-12-10T05:00:06", + "date_unixtime": "1733803206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,566 CZK\nFees are 0.29043791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (50.788451841224613907159670356 CZK)\nThe limits being 0.10 % (20.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58548232 BTC (426,293.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.06 % (925,331.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,410.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00889243 BTC (20,528.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.65 CZK over 4601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,566 CZK\nFees are 0.29043791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (50.788451841224613907159670356 CZK)\nThe limits being 0.10 % (20.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58548232 BTC (426,293.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.06 % (925,331.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,410.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00889243 BTC (20,528.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.65 CZK over 4601 transactions" + } + ] + }, + { + "id": 6300, + "type": "message", + "date": "2024-12-10T09:00:03", + "date_unixtime": "1733817603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.71 CZK @ 2,314,169 CZK\nFees are 0.29049257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (50.911716165775688838366221857 CZK)\nThe limits being 0.10 % (20.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58551806 BTC (426,376.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,169 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.79 % (928,611.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,327.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00892817 BTC (20,661.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.65 CZK over 4602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.71 CZK @ 2,314,169 CZK\nFees are 0.29049257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (50.911716165775688838366221857 CZK)\nThe limits being 0.10 % (20.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58551806 BTC (426,376.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,169 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.79 % (928,611.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,327.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00892817 BTC (20,661.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.65 CZK over 4602 transactions" + } + ] + }, + { + "id": 6301, + "type": "message", + "date": "2024-12-10T13:00:05", + "date_unixtime": "1733832005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003532 BTC for 82.70 CZK @ 2,341,462 CZK\nFees are 0.29046458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (51.512158319043032286205528667 CZK)\nThe limits being 0.10 % (20.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58555338 BTC (426,459.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.50 % (944,591.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,244.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00896349 BTC (20,987.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.65 CZK over 4603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003532 BTC for 82.70 CZK @ 2,341,462 CZK\nFees are 0.29046458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (51.512158319043032286205528667 CZK)\nThe limits being 0.10 % (20.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58555338 BTC (426,459.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.50 % (944,591.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,244.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00896349 BTC (20,987.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.65 CZK over 4603 transactions" + } + ] + }, + { + "id": 6302, + "type": "message", + "date": "2024-12-10T17:00:08", + "date_unixtime": "1733846408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,928 CZK\nFees are 0.29047155 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (126.38601554188016296947901018 CZK)\nThe limits being 0.10 % (20.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58558937 BTC (426,542.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,398 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.48 % (919,099.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,161.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00899948 BTC (20,680.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.65 CZK over 4604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,928 CZK\nFees are 0.29047155 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (126.38601554188016296947901018 CZK)\nThe limits being 0.10 % (20.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58558937 BTC (426,542.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,398 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.48 % (919,099.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,161.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00899948 BTC (20,680.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.65 CZK over 4604 transactions" + } + ] + }, + { + "id": 6303, + "type": "message", + "date": "2024-12-10T21:00:04", + "date_unixtime": "1733860804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003608 BTC for 82.70 CZK @ 2,292,037 CZK\nFees are 0.29045146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (126.06203042400379160742280069 CZK)\nThe limits being 0.10 % (20.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58562545 BTC (426,625.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,292,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.63 % (915,649.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,078.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00903556 BTC (20,709.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.64 CZK over 4605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003608 BTC for 82.70 CZK @ 2,292,037 CZK\nFees are 0.29045146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (126.06203042400379160742280069 CZK)\nThe limits being 0.10 % (20.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58562545 BTC (426,625.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,292,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.63 % (915,649.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,078.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00903556 BTC (20,709.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.64 CZK over 4605 transactions" + } + ] + }, + { + "id": 6304, + "type": "message", + "date": "2024-12-11T01:00:05", + "date_unixtime": "1733875205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003578 BTC for 82.69 CZK @ 2,311,137 CZK\nFees are 0.29043672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (127.11255606773720708654421654 CZK)\nThe limits being 0.10 % (20.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58566123 BTC (426,708.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.21 % (926,835.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,995.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00907134 BTC (20,965.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.64 CZK over 4606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003578 BTC for 82.69 CZK @ 2,311,137 CZK\nFees are 0.29043672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (127.11255606773720708654421654 CZK)\nThe limits being 0.10 % (20.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58566123 BTC (426,708.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.21 % (926,835.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,995.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00907134 BTC (20,965.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.64 CZK over 4606 transactions" + } + ] + }, + { + "id": 6305, + "type": "message", + "date": "2024-12-11T05:00:04", + "date_unixtime": "1733889604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,372 CZK\nFees are 0.29042872 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (51.158178649193514487819067462 CZK)\nThe limits being 0.10 % (21.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58569679 BTC (426,791.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.12 % (935,171.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,912.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00910690 BTC (21,176.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.64 CZK over 4607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,372 CZK\nFees are 0.29042872 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.24 % (51.158178649193514487819067462 CZK)\nThe limits being 0.10 % (21.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58569679 BTC (426,791.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.12 % (935,171.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,912.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00910690 BTC (21,176.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.64 CZK over 4607 transactions" + } + ] + }, + { + "id": 6306, + "type": "message", + "date": "2024-12-11T09:00:04", + "date_unixtime": "1733904004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003540 BTC for 82.69 CZK @ 2,335,805 CZK\nFees are 0.29041912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (102.77540607872446437468858994 CZK)\nThe limits being 0.10 % (21.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58573219 BTC (426,874.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,335,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.51 % (941,281.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,829.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00914230 BTC (21,354.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.64 CZK over 4608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003540 BTC for 82.69 CZK @ 2,335,805 CZK\nFees are 0.29041912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (102.77540607872446437468858994 CZK)\nThe limits being 0.10 % (21.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58573219 BTC (426,874.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,335,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.51 % (941,281.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,829.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00914230 BTC (21,354.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.64 CZK over 4608 transactions" + } + ] + }, + { + "id": 6307, + "type": "message", + "date": "2024-12-11T13:00:04", + "date_unixtime": "1733918404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003509 BTC for 82.70 CZK @ 2,356,749 CZK\nFees are 0.29045715 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (77.772708135944257793647000392 CZK)\nThe limits being 0.10 % (21.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58576728 BTC (426,957.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,356,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.34 % (953,549.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,746.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00917739 BTC (21,628.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.64 CZK over 4609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003509 BTC for 82.70 CZK @ 2,356,749 CZK\nFees are 0.29045715 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (77.772708135944257793647000392 CZK)\nThe limits being 0.10 % (21.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58576728 BTC (426,957.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,356,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.34 % (953,549.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,746.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00917739 BTC (21,628.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.64 CZK over 4609 transactions" + } + ] + }, + { + "id": 6308, + "type": "message", + "date": "2024-12-11T17:00:04", + "date_unixtime": "1733932804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003436 BTC for 82.70 CZK @ 2,406,928 CZK\nFees are 0.29047031 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (132.38106378113158079434435820 CZK)\nThe limits being 0.10 % (22.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58580164 BTC (427,040.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 728,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,406,928 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.18 % (982,942.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,663.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00921175 BTC (22,172.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.63 CZK over 4610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003436 BTC for 82.70 CZK @ 2,406,928 CZK\nFees are 0.29047031 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (132.38106378113158079434435820 CZK)\nThe limits being 0.10 % (22.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58580164 BTC (427,040.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 728,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,406,928 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.18 % (982,942.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,663.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00921175 BTC (22,172.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.63 CZK over 4610 transactions" + } + ] + }, + { + "id": 6309, + "type": "message", + "date": "2024-12-11T21:00:04", + "date_unixtime": "1733947204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003419 BTC for 82.70 CZK @ 2,418,742 CZK\nFees are 0.29045177 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (133.03079842370947078614728533 CZK)\nThe limits being 0.10 % (22.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58583583 BTC (427,123.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,418,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.75 % (989,862.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,580.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00924594 BTC (22,363.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.63 CZK over 4611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003419 BTC for 82.70 CZK @ 2,418,742 CZK\nFees are 0.29045177 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.59 % (133.03079842370947078614728533 CZK)\nThe limits being 0.10 % (22.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58583583 BTC (427,123.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,418,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.75 % (989,862.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,580.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00924594 BTC (22,363.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.63 CZK over 4611 transactions" + } + ] + }, + { + "id": 6310, + "type": "message", + "date": "2024-12-12T01:00:06", + "date_unixtime": "1733961606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003419 BTC for 82.70 CZK @ 2,418,807 CZK\nFees are 0.29045960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (106.42750587159623971845834111 CZK)\nThe limits being 0.10 % (22.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58587002 BTC (427,206.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,418,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.71 % (989,900.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,497.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00928013 BTC (22,446.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.63 CZK over 4612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003419 BTC for 82.70 CZK @ 2,418,807 CZK\nFees are 0.29045960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (106.42750587159623971845834111 CZK)\nThe limits being 0.10 % (22.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58587002 BTC (427,206.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,418,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.71 % (989,900.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,497.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00928013 BTC (22,446.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.63 CZK over 4612 transactions" + } + ] + }, + { + "id": 6311, + "type": "message", + "date": "2024-12-12T05:00:04", + "date_unixtime": "1733976004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003427 BTC for 82.71 CZK @ 2,413,353 CZK\nFees are 0.29048282 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (106.18754955961691709597092987 CZK)\nThe limits being 0.10 % (22.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58590429 BTC (427,289.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,281 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,413,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.92 % (986,704.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,414.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00931440 BTC (22,478.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.63 CZK over 4613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003427 BTC for 82.71 CZK @ 2,413,353 CZK\nFees are 0.29048282 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (106.18754955961691709597092987 CZK)\nThe limits being 0.10 % (22.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58590429 BTC (427,289.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,281 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,413,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.92 % (986,704.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,414.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00931440 BTC (22,478.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.63 CZK over 4613 transactions" + } + ] + }, + { + "id": 6312, + "type": "message", + "date": "2024-12-12T09:00:04", + "date_unixtime": "1733990404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003433 BTC for 82.69 CZK @ 2,408,664 CZK\nFees are 0.29042594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (105.98120476961569548816253511 CZK)\nThe limits being 0.10 % (22.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58593862 BTC (427,372.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,408,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.23 % (983,956.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,331.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00934873 BTC (22,517.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.63 CZK over 4614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003433 BTC for 82.69 CZK @ 2,408,664 CZK\nFees are 0.29042594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (105.98120476961569548816253511 CZK)\nThe limits being 0.10 % (22.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58593862 BTC (427,372.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,408,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.23 % (983,956.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,331.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00934873 BTC (22,517.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.63 CZK over 4614 transactions" + } + ] + }, + { + "id": 6313, + "type": "message", + "date": "2024-12-12T13:00:04", + "date_unixtime": "1734004804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003449 BTC for 82.70 CZK @ 2,397,665 CZK\nFees are 0.29044720 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (79.122958624518447538572953491 CZK)\nThe limits being 0.10 % (22.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58597311 BTC (427,455.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,397,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.68 % (977,512.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,248.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00938322 BTC (22,497.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.62 CZK over 4615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003449 BTC for 82.70 CZK @ 2,397,665 CZK\nFees are 0.29044720 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (79.122958624518447538572953491 CZK)\nThe limits being 0.10 % (22.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58597311 BTC (427,455.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,397,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.68 % (977,512.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,248.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00938322 BTC (22,497.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.62 CZK over 4615 transactions" + } + ] + }, + { + "id": 6314, + "type": "message", + "date": "2024-12-12T17:00:03", + "date_unixtime": "1734019203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003394 BTC for 82.70 CZK @ 2,436,579 CZK\nFees are 0.29045428 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (80.40711085684488497682976993 CZK)\nThe limits being 0.10 % (22.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58600705 BTC (427,538.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,436,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.97 % (1,000,314.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,165.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00941716 BTC (22,945.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.62 CZK over 4616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003394 BTC for 82.70 CZK @ 2,436,579 CZK\nFees are 0.29045428 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (80.40711085684488497682976993 CZK)\nThe limits being 0.10 % (22.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58600705 BTC (427,538.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,436,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.97 % (1,000,314.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,165.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00941716 BTC (22,945.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.62 CZK over 4616 transactions" + } + ] + }, + { + "id": 6315, + "type": "message", + "date": "2024-12-12T21:00:04", + "date_unixtime": "1734033604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,233 CZK\nFees are 0.29047891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (78.811688087650485788910053623 CZK)\nThe limits being 0.10 % (22.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58604168 BTC (427,621.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,233 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.30 % (971,982.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,082.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00945179 BTC (22,573.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.62 CZK over 4617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,233 CZK\nFees are 0.29047891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (78.811688087650485788910053623 CZK)\nThe limits being 0.10 % (22.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58604168 BTC (427,621.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,233 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.30 % (971,982.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,082.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00945179 BTC (22,573.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.62 CZK over 4617 transactions" + } + ] + }, + { + "id": 6316, + "type": "message", + "date": "2024-12-13T01:00:04", + "date_unixtime": "1734048004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003442 BTC for 82.69 CZK @ 2,402,334 CZK\nFees are 0.29042211 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (79.27702249013982728086792102 CZK)\nThe limits being 0.10 % (22.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58607610 BTC (427,704.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,776 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,334 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.19 % (980,246.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,999.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00948621 BTC (22,789.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.62 CZK over 4618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003442 BTC for 82.69 CZK @ 2,402,334 CZK\nFees are 0.29042211 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (79.27702249013982728086792102 CZK)\nThe limits being 0.10 % (22.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58607610 BTC (427,704.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,776 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,334 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.19 % (980,246.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,999.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00948621 BTC (22,789.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.62 CZK over 4618 transactions" + } + ] + }, + { + "id": 6317, + "type": "message", + "date": "2024-12-13T05:00:04", + "date_unixtime": "1734062404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003449 BTC for 82.71 CZK @ 2,398,027 CZK\nFees are 0.29049104 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.756600871724262269646842027 CZK)\nThe limits being 0.10 % (22.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58611059 BTC (427,787.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,398,027 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.55 % (977,722.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,916.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00952070 BTC (22,830.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.61 CZK over 4619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003449 BTC for 82.71 CZK @ 2,398,027 CZK\nFees are 0.29049104 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.756600871724262269646842027 CZK)\nThe limits being 0.10 % (22.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58611059 BTC (427,787.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,398,027 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.55 % (977,722.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,916.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00952070 BTC (22,830.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.61 CZK over 4619 transactions" + } + ] + }, + { + "id": 6318, + "type": "message", + "date": "2024-12-13T09:00:04", + "date_unixtime": "1734076804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003440 BTC for 82.69 CZK @ 2,403,802 CZK\nFees are 0.29043068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.883636568521801601371942391 CZK)\nThe limits being 0.10 % (22.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58614499 BTC (427,870.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 729,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.30 % (981,106.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,833.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00955510 BTC (22,968.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.61 CZK over 4620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003440 BTC for 82.69 CZK @ 2,403,802 CZK\nFees are 0.29043068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.883636568521801601371942391 CZK)\nThe limits being 0.10 % (22.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58614499 BTC (427,870.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 729,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.30 % (981,106.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,833.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00955510 BTC (22,968.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.61 CZK over 4620 transactions" + } + ] + }, + { + "id": 6319, + "type": "message", + "date": "2024-12-13T13:00:05", + "date_unixtime": "1734091205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003441 BTC for 82.69 CZK @ 2,402,991 CZK\nFees are 0.29041709 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.865794226455589105668665915 CZK)\nThe limits being 0.10 % (23.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58617940 BTC (427,953.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.14 % (980,630.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,750.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00958951 BTC (23,043.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.61 CZK over 4621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003441 BTC for 82.69 CZK @ 2,402,991 CZK\nFees are 0.29041709 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.865794226455589105668665915 CZK)\nThe limits being 0.10 % (23.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58617940 BTC (427,953.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.14 % (980,630.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,750.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00958951 BTC (23,043.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.61 CZK over 4621 transactions" + } + ] + }, + { + "id": 6320, + "type": "message", + "date": "2024-12-13T17:00:04", + "date_unixtime": "1734105604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003454 BTC for 82.69 CZK @ 2,394,064 CZK\nFees are 0.29043142 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.669418214592873985636260351 CZK)\nThe limits being 0.10 % (23.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58621394 BTC (428,036.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,170 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,394,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.88 % (975,397.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,667.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00962405 BTC (23,040.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.61 CZK over 4622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003454 BTC for 82.69 CZK @ 2,394,064 CZK\nFees are 0.29043142 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (52.669418214592873985636260351 CZK)\nThe limits being 0.10 % (23.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58621394 BTC (428,036.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,170 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,394,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.88 % (975,397.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,667.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00962405 BTC (23,040.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.61 CZK over 4622 transactions" + } + ] + }, + { + "id": 6321, + "type": "message", + "date": "2024-12-13T21:00:08", + "date_unixtime": "1734120008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003409 BTC for 82.70 CZK @ 2,426,019 CZK\nFees are 0.29047355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (53.372415223748268563693836023 CZK)\nThe limits being 0.10 % (23.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58624803 BTC (428,119.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,426,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.21 % (994,129.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,584.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00965814 BTC (23,430.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.61 CZK over 4623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003409 BTC for 82.70 CZK @ 2,426,019 CZK\nFees are 0.29047355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (53.372415223748268563693836023 CZK)\nThe limits being 0.10 % (23.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58624803 BTC (428,119.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,426,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.21 % (994,129.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,584.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00965814 BTC (23,430.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.61 CZK over 4623 transactions" + } + ] + }, + { + "id": 6322, + "type": "message", + "date": "2024-12-14T01:00:04", + "date_unixtime": "1734134404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003424 BTC for 82.71 CZK @ 2,415,503 CZK\nFees are 0.29048701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (79.71159043348281016442451420 CZK)\nThe limits being 0.10 % (23.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58628227 BTC (428,202.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,415,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.72 % (987,964.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,501.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00969238 BTC (23,411.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.60 CZK over 4624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003424 BTC for 82.71 CZK @ 2,415,503 CZK\nFees are 0.29048701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (79.71159043348281016442451420 CZK)\nThe limits being 0.10 % (23.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58628227 BTC (428,202.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,415,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.72 % (987,964.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,501.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00969238 BTC (23,411.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.60 CZK over 4624 transactions" + } + ] + }, + { + "id": 6323, + "type": "message", + "date": "2024-12-14T05:00:03", + "date_unixtime": "1734148803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003395 BTC for 82.70 CZK @ 2,435,940 CZK\nFees are 0.29046359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (80.38600440461330850124710788 CZK)\nThe limits being 0.10 % (23.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58631622 BTC (428,284.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,435,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.48 % (999,945.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,418.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00972633 BTC (23,692.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.60 CZK over 4625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003395 BTC for 82.70 CZK @ 2,435,940 CZK\nFees are 0.29046359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (80.38600440461330850124710788 CZK)\nThe limits being 0.10 % (23.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58631622 BTC (428,284.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,435,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.48 % (999,945.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,418.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00972633 BTC (23,692.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.60 CZK over 4625 transactions" + } + ] + }, + { + "id": 6324, + "type": "message", + "date": "2024-12-14T09:00:03", + "date_unixtime": "1734163203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003400 BTC for 82.70 CZK @ 2,432,364 CZK\nFees are 0.29046435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (53.512000103754506286819660603 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58635022 BTC (428,367.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,432,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.94 % (997,848.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,335.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00976033 BTC (23,740.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.60 CZK over 4626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003400 BTC for 82.70 CZK @ 2,432,364 CZK\nFees are 0.29046435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (53.512000103754506286819660603 CZK)\nThe limits being 0.10 % (23.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58635022 BTC (428,367.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,432,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.94 % (997,848.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,335.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00976033 BTC (23,740.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.60 CZK over 4626 transactions" + } + ] + }, + { + "id": 6325, + "type": "message", + "date": "2024-12-14T13:00:04", + "date_unixtime": "1734177604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003429 BTC for 82.71 CZK @ 2,411,994 CZK\nFees are 0.29048863 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.063868460388639760837070257 CZK)\nThe limits being 0.10 % (23.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58638451 BTC (428,450.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,411,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.11 % (985,904.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,252.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00979462 BTC (23,624.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.60 CZK over 4627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003429 BTC for 82.71 CZK @ 2,411,994 CZK\nFees are 0.29048863 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.063868460388639760837070257 CZK)\nThe limits being 0.10 % (23.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58638451 BTC (428,450.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,411,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.11 % (985,904.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,252.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00979462 BTC (23,624.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.60 CZK over 4627 transactions" + } + ] + }, + { + "id": 6326, + "type": "message", + "date": "2024-12-14T17:00:03", + "date_unixtime": "1734192003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003406 BTC for 82.69 CZK @ 2,427,727 CZK\nFees are 0.29042228 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.409996616071582696030715747 CZK)\nThe limits being 0.10 % (23.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58641857 BTC (428,533.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,427,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.22 % (995,130.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,169.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00982868 BTC (23,861.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.60 CZK over 4628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003406 BTC for 82.69 CZK @ 2,427,727 CZK\nFees are 0.29042228 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.409996616071582696030715747 CZK)\nThe limits being 0.10 % (23.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58641857 BTC (428,533.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,427,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.22 % (995,130.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,169.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00982868 BTC (23,861.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.60 CZK over 4628 transactions" + } + ] + }, + { + "id": 6327, + "type": "message", + "date": "2024-12-14T21:00:04", + "date_unixtime": "1734206404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003429 BTC for 82.70 CZK @ 2,411,847 CZK\nFees are 0.29047088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.060626399610694735239144769 CZK)\nThe limits being 0.10 % (23.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58645286 BTC (428,616.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,411,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.00 % (985,817.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,086.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00986297 BTC (23,787.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.59 CZK over 4629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003429 BTC for 82.70 CZK @ 2,411,847 CZK\nFees are 0.29047088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.060626399610694735239144769 CZK)\nThe limits being 0.10 % (23.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58645286 BTC (428,616.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,411,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.00 % (985,817.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,086.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00986297 BTC (23,787.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.59 CZK over 4629 transactions" + } + ] + }, + { + "id": 6328, + "type": "message", + "date": "2024-12-15T01:00:04", + "date_unixtime": "1734220804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003415 BTC for 82.71 CZK @ 2,421,952 CZK\nFees are 0.29049698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.282938868863808296146503342 CZK)\nThe limits being 0.10 % (23.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58648701 BTC (428,699.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 730,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,421,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.34 % (991,743.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,003.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00989712 BTC (23,970.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.59 CZK over 4630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003415 BTC for 82.71 CZK @ 2,421,952 CZK\nFees are 0.29049698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.282938868863808296146503342 CZK)\nThe limits being 0.10 % (23.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58648701 BTC (428,699.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 730,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,421,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.34 % (991,743.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,003.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00989712 BTC (23,970.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.59 CZK over 4630 transactions" + } + ] + }, + { + "id": 6329, + "type": "message", + "date": "2024-12-15T05:00:03", + "date_unixtime": "1734235203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003402 BTC for 82.69 CZK @ 2,430,642 CZK\nFees are 0.29042954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.474132001838362907952677094 CZK)\nThe limits being 0.10 % (24.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58652103 BTC (428,782.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,430,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.48 % (996,839.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,920.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00993114 BTC (24,139.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.59 CZK over 4631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003402 BTC for 82.69 CZK @ 2,430,642 CZK\nFees are 0.29042954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.474132001838362907952677094 CZK)\nThe limits being 0.10 % (24.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58652103 BTC (428,782.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,430,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.48 % (996,839.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,920.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00993114 BTC (24,139.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.59 CZK over 4631 transactions" + } + ] + }, + { + "id": 6330, + "type": "message", + "date": "2024-12-15T09:00:04", + "date_unixtime": "1734249604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003402 BTC for 82.71 CZK @ 2,431,229 CZK\nFees are 0.29049962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.487034064489747377418306942 CZK)\nThe limits being 0.10 % (24.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58655505 BTC (428,865.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,431,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.52 % (997,183.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,837.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00996516 BTC (24,227.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.59 CZK over 4632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003402 BTC for 82.71 CZK @ 2,431,229 CZK\nFees are 0.29049962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.487034064489747377418306942 CZK)\nThe limits being 0.10 % (24.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58655505 BTC (428,865.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,431,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.52 % (997,183.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,837.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00996516 BTC (24,227.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.59 CZK over 4632 transactions" + } + ] + }, + { + "id": 6331, + "type": "message", + "date": "2024-12-15T13:00:04", + "date_unixtime": "1734264004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003384 BTC for 82.70 CZK @ 2,443,994 CZK\nFees are 0.29047973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.767857932814346006471439793 CZK)\nThe limits being 0.10 % (24.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58658889 BTC (428,948.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,443,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.22 % (1,004,670.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,754.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00999900 BTC (24,437.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.59 CZK over 4633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003384 BTC for 82.70 CZK @ 2,443,994 CZK\nFees are 0.29047973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.767857932814346006471439793 CZK)\nThe limits being 0.10 % (24.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58658889 BTC (428,948.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,443,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.22 % (1,004,670.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,754.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00999900 BTC (24,437.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.59 CZK over 4633 transactions" + } + ] + }, + { + "id": 6332, + "type": "message", + "date": "2024-12-15T17:00:04", + "date_unixtime": "1734278404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003369 BTC for 82.69 CZK @ 2,454,450 CZK\nFees are 0.29042937 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.997889580590817268678059558 CZK)\nThe limits being 0.10 % (24.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58662258 BTC (429,031.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,454,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.60 % (1,010,803.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,671.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01003269 BTC (24,624.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.58 CZK over 4634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003369 BTC for 82.69 CZK @ 2,454,450 CZK\nFees are 0.29042937 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (53.997889580590817268678059558 CZK)\nThe limits being 0.10 % (24.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58662258 BTC (429,031.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,454,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.60 % (1,010,803.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,671.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01003269 BTC (24,624.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.58 CZK over 4634 transactions" + } + ] + }, + { + "id": 6333, + "type": "message", + "date": "2024-12-15T21:00:03", + "date_unixtime": "1734292803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003357 BTC for 82.71 CZK @ 2,463,762 CZK\nFees are 0.29049288 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.202760554324386541652918983 CZK)\nThe limits being 0.10 % (24.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58665615 BTC (429,114.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,463,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.83 % (1,016,266.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,588.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01006626 BTC (24,800.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.58 CZK over 4635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003357 BTC for 82.71 CZK @ 2,463,762 CZK\nFees are 0.29049288 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.202760554324386541652918983 CZK)\nThe limits being 0.10 % (24.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58665615 BTC (429,114.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,463,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.83 % (1,016,266.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,588.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01006626 BTC (24,800.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.58 CZK over 4635 transactions" + } + ] + }, + { + "id": 6334, + "type": "message", + "date": "2024-12-16T01:00:05", + "date_unixtime": "1734307205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003327 BTC for 82.70 CZK @ 2,485,711 CZK\nFees are 0.29046171 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.685646719799008250204536605 CZK)\nThe limits being 0.10 % (25.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58668942 BTC (429,197.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,485,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 239.78 % (1,029,142.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,505.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01009953 BTC (25,104.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.58 CZK over 4636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003327 BTC for 82.70 CZK @ 2,485,711 CZK\nFees are 0.29046171 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.685646719799008250204536605 CZK)\nThe limits being 0.10 % (25.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58668942 BTC (429,197.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,485,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 239.78 % (1,029,142.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,505.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01009953 BTC (25,104.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.58 CZK over 4636 transactions" + } + ] + }, + { + "id": 6335, + "type": "message", + "date": "2024-12-16T05:00:04", + "date_unixtime": "1734321604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003325 BTC for 82.70 CZK @ 2,487,215 CZK\nFees are 0.29046271 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.718728934743435569491741310 CZK)\nThe limits being 0.10 % (25.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58672267 BTC (429,280.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,487,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 239.94 % (1,030,024.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,422.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01013278 BTC (25,202.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.58 CZK over 4637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003325 BTC for 82.70 CZK @ 2,487,215 CZK\nFees are 0.29046271 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.718728934743435569491741310 CZK)\nThe limits being 0.10 % (25.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58672267 BTC (429,280.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,487,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 239.94 % (1,030,024.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,422.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01013278 BTC (25,202.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.58 CZK over 4637 transactions" + } + ] + }, + { + "id": 6336, + "type": "message", + "date": "2024-12-16T09:00:04", + "date_unixtime": "1734336004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003298 BTC for 82.69 CZK @ 2,507,222 CZK\nFees are 0.29042153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (55.158876744009671425934033794 CZK)\nThe limits being 0.10 % (25.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58675565 BTC (429,363.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,507,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 242.63 % (1,041,762.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,339.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01016576 BTC (25,487.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.58 CZK over 4638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003298 BTC for 82.69 CZK @ 2,507,222 CZK\nFees are 0.29042153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (55.158876744009671425934033794 CZK)\nThe limits being 0.10 % (25.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58675565 BTC (429,363.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,507,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 242.63 % (1,041,762.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,339.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01016576 BTC (25,487.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.58 CZK over 4638 transactions" + } + ] + }, + { + "id": 6337, + "type": "message", + "date": "2024-12-16T13:00:04", + "date_unixtime": "1734350404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003332 BTC for 82.70 CZK @ 2,481,890 CZK\nFees are 0.29045101 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.601573794241164328212600434 CZK)\nThe limits being 0.10 % (25.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58678897 BTC (429,446.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,481,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 239.12 % (1,026,898.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,256.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01019908 BTC (25,312.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.57 CZK over 4639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003332 BTC for 82.70 CZK @ 2,481,890 CZK\nFees are 0.29045101 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (54.601573794241164328212600434 CZK)\nThe limits being 0.10 % (25.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58678897 BTC (429,446.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,481,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 239.12 % (1,026,898.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,256.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01019908 BTC (25,312.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.57 CZK over 4639 transactions" + } + ] + }, + { + "id": 6338, + "type": "message", + "date": "2024-12-16T17:00:04", + "date_unixtime": "1734364804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003263 BTC for 82.69 CZK @ 2,534,066 CZK\nFees are 0.29041596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (55.749460393373422869787188298 CZK)\nThe limits being 0.10 % (25.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58682160 BTC (429,529.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 731,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,534,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 246.20 % (1,057,515.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,173.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01023171 BTC (25,927.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.57 CZK over 4640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003263 BTC for 82.69 CZK @ 2,534,066 CZK\nFees are 0.29041596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (55.749460393373422869787188298 CZK)\nThe limits being 0.10 % (25.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58682160 BTC (429,529.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 731,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,534,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 246.20 % (1,057,515.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,173.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01023171 BTC (25,927.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.57 CZK over 4640 transactions" + } + ] + }, + { + "id": 6339, + "type": "message", + "date": "2024-12-16T21:00:04", + "date_unixtime": "1734379204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003250 BTC for 82.71 CZK @ 2,544,850 CZK\nFees are 0.29048988 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.986703968111609367214748384 CZK)\nThe limits being 0.10 % (26.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58685410 BTC (429,612.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,544,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 247.63 % (1,063,842.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,090.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01026421 BTC (26,120.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.57 CZK over 4641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003250 BTC for 82.71 CZK @ 2,544,850 CZK\nFees are 0.29048988 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.986703968111609367214748384 CZK)\nThe limits being 0.10 % (26.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58685410 BTC (429,612.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,544,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 247.63 % (1,063,842.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,090.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01026421 BTC (26,120.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.57 CZK over 4641 transactions" + } + ] + }, + { + "id": 6340, + "type": "message", + "date": "2024-12-17T01:00:03", + "date_unixtime": "1734393603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003269 BTC for 82.70 CZK @ 2,529,792 CZK\nFees are 0.29045919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.655418694099559464785456473 CZK)\nThe limits being 0.10 % (26.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58688679 BTC (429,695.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,529,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 245.52 % (1,055,005.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,007.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01029690 BTC (26,049.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.57 CZK over 4642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003269 BTC for 82.70 CZK @ 2,529,792 CZK\nFees are 0.29045919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.655418694099559464785456473 CZK)\nThe limits being 0.10 % (26.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58688679 BTC (429,695.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,529,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 245.52 % (1,055,005.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,007.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01029690 BTC (26,049.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.57 CZK over 4642 transactions" + } + ] + }, + { + "id": 6341, + "type": "message", + "date": "2024-12-17T05:00:04", + "date_unixtime": "1734408004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003246 BTC for 82.71 CZK @ 2,547,983 CZK\nFees are 0.29048951 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (56.055625237730788819538270400 CZK)\nThe limits being 0.10 % (26.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58691925 BTC (429,778.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,547,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 247.96 % (1,065,681.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,924.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01032936 BTC (26,319.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.56 CZK over 4643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003246 BTC for 82.71 CZK @ 2,547,983 CZK\nFees are 0.29048951 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (56.055625237730788819538270400 CZK)\nThe limits being 0.10 % (26.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58691925 BTC (429,778.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,547,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 247.96 % (1,065,681.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,924.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01032936 BTC (26,319.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.56 CZK over 4643 transactions" + } + ] + }, + { + "id": 6342, + "type": "message", + "date": "2024-12-17T09:00:04", + "date_unixtime": "1734422404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003239 BTC for 82.70 CZK @ 2,553,315 CZK\nFees are 0.29046968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (56.172934768446282407990680353 CZK)\nThe limits being 0.10 % (26.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58695164 BTC (429,861.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,553,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 248.64 % (1,068,810.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,841.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01036175 BTC (26,456.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.56 CZK over 4644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003239 BTC for 82.70 CZK @ 2,553,315 CZK\nFees are 0.29046968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (56.172934768446282407990680353 CZK)\nThe limits being 0.10 % (26.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58695164 BTC (429,861.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,553,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 248.64 % (1,068,810.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,841.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01036175 BTC (26,456.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.56 CZK over 4644 transactions" + } + ] + }, + { + "id": 6343, + "type": "message", + "date": "2024-12-17T13:00:04", + "date_unixtime": "1734436804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003236 BTC for 82.71 CZK @ 2,555,782 CZK\nFees are 0.29048105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (56.227211649215385212325464087 CZK)\nThe limits being 0.10 % (26.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58698400 BTC (429,944.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,555,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 248.93 % (1,070,258.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,758.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01039411 BTC (26,565.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.56 CZK over 4645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003236 BTC for 82.71 CZK @ 2,555,782 CZK\nFees are 0.29048105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (56.227211649215385212325464087 CZK)\nThe limits being 0.10 % (26.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58698400 BTC (429,944.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,555,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 248.93 % (1,070,258.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,758.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01039411 BTC (26,565.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.56 CZK over 4645 transactions" + } + ] + }, + { + "id": 6344, + "type": "message", + "date": "2024-12-17T17:00:04", + "date_unixtime": "1734451204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003238 BTC for 82.69 CZK @ 2,553,602 CZK\nFees are 0.29041261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (84.26886365940332985261898365 CZK)\nThe limits being 0.10 % (26.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58701638 BTC (430,027.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,553,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 248.58 % (1,068,978.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,675.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01042649 BTC (26,625.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.56 CZK over 4646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003238 BTC for 82.69 CZK @ 2,553,602 CZK\nFees are 0.29041261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (84.26886365940332985261898365 CZK)\nThe limits being 0.10 % (26.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58701638 BTC (430,027.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,553,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 248.58 % (1,068,978.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,675.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01042649 BTC (26,625.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.56 CZK over 4646 transactions" + } + ] + }, + { + "id": 6345, + "type": "message", + "date": "2024-12-17T21:00:03", + "date_unixtime": "1734465603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003244 BTC for 82.71 CZK @ 2,549,481 CZK\nFees are 0.29048118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (84.13286268774455865629360125 CZK)\nThe limits being 0.10 % (26.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58704882 BTC (430,110.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,549,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 247.97 % (1,066,558.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,592.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01045893 BTC (26,664.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.56 CZK over 4647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003244 BTC for 82.71 CZK @ 2,549,481 CZK\nFees are 0.29048118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (84.13286268774455865629360125 CZK)\nThe limits being 0.10 % (26.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58704882 BTC (430,110.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,549,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 247.97 % (1,066,558.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,592.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01045893 BTC (26,664.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.56 CZK over 4647 transactions" + } + ] + }, + { + "id": 6346, + "type": "message", + "date": "2024-12-18T01:00:04", + "date_unixtime": "1734480004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003248 BTC for 82.69 CZK @ 2,545,892 CZK\nFees are 0.29042994 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (84.01442836341278431892317775 CZK)\nThe limits being 0.10 % (26.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58708130 BTC (430,193.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,545,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 247.44 % (1,064,451.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,509.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01049141 BTC (26,709.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.55 CZK over 4648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003248 BTC for 82.69 CZK @ 2,545,892 CZK\nFees are 0.29042994 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (84.01442836341278431892317775 CZK)\nThe limits being 0.10 % (26.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58708130 BTC (430,193.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,545,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 247.44 % (1,064,451.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,509.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01049141 BTC (26,709.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.55 CZK over 4648 transactions" + } + ] + }, + { + "id": 6347, + "type": "message", + "date": "2024-12-18T05:00:04", + "date_unixtime": "1734494404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003291 BTC for 82.69 CZK @ 2,512,627 CZK\nFees are 0.29042991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (82.91669439641291941286627161 CZK)\nThe limits being 0.10 % (26.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58711421 BTC (430,276.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,512,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 242.85 % (1,044,922.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,426.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01052432 BTC (26,443.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.55 CZK over 4649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003291 BTC for 82.69 CZK @ 2,512,627 CZK\nFees are 0.29042991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (82.91669439641291941286627161 CZK)\nThe limits being 0.10 % (26.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58711421 BTC (430,276.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,512,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 242.85 % (1,044,922.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,426.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01052432 BTC (26,443.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.55 CZK over 4649 transactions" + } + ] + }, + { + "id": 6348, + "type": "message", + "date": "2024-12-18T09:00:03", + "date_unixtime": "1734508803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003307 BTC for 82.70 CZK @ 2,500,797 CZK\nFees are 0.29046781 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.017527477535911880236529269 CZK)\nThe limits being 0.10 % (26.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58714728 BTC (430,359.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 732,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,500,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 241.19 % (1,037,976.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,343.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01055739 BTC (26,401.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.55 CZK over 4650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003307 BTC for 82.70 CZK @ 2,500,797 CZK\nFees are 0.29046781 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.017527477535911880236529269 CZK)\nThe limits being 0.10 % (26.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58714728 BTC (430,359.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 732,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,500,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 241.19 % (1,037,976.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,343.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01055739 BTC (26,401.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.55 CZK over 4650 transactions" + } + ] + }, + { + "id": 6349, + "type": "message", + "date": "2024-12-18T13:00:05", + "date_unixtime": "1734523205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003285 BTC for 82.70 CZK @ 2,517,517 CZK\nFees are 0.29046463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.385379621249523168150438457 CZK)\nThe limits being 0.10 % (26.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58718013 BTC (430,442.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,517,517 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 243.42 % (1,047,793.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,260.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01059024 BTC (26,661.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.55 CZK over 4651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003285 BTC for 82.70 CZK @ 2,517,517 CZK\nFees are 0.29046463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.385379621249523168150438457 CZK)\nThe limits being 0.10 % (26.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58718013 BTC (430,442.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,517,517 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 243.42 % (1,047,793.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,260.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01059024 BTC (26,661.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.55 CZK over 4651 transactions" + } + ] + }, + { + "id": 6350, + "type": "message", + "date": "2024-12-18T17:00:05", + "date_unixtime": "1734537605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003290 BTC for 82.69 CZK @ 2,513,354 CZK\nFees are 0.29042565 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.293786005515649633577312236 CZK)\nThe limits being 0.10 % (26.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58721303 BTC (430,525.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,513,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 242.81 % (1,045,348.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,177.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01062314 BTC (26,699.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.55 CZK over 4652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003290 BTC for 82.69 CZK @ 2,513,354 CZK\nFees are 0.29042565 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (55.293786005515649633577312236 CZK)\nThe limits being 0.10 % (26.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58721303 BTC (430,525.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,513,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 242.81 % (1,045,348.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,177.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01062314 BTC (26,699.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.55 CZK over 4652 transactions" + } + ] + }, + { + "id": 6351, + "type": "message", + "date": "2024-12-18T21:00:04", + "date_unixtime": "1734552004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003310 BTC for 82.69 CZK @ 2,498,165 CZK\nFees are 0.29042538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (82.43945040936781687056028974 CZK)\nThe limits being 0.10 % (26.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58724613 BTC (430,608.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,268 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,498,165 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 240.69 % (1,036,429.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,094.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01065624 BTC (26,621.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.54 CZK over 4653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003310 BTC for 82.69 CZK @ 2,498,165 CZK\nFees are 0.29042538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (82.43945040936781687056028974 CZK)\nThe limits being 0.10 % (26.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58724613 BTC (430,608.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,268 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,498,165 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 240.69 % (1,036,429.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,094.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01065624 BTC (26,621.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.54 CZK over 4653 transactions" + } + ] + }, + { + "id": 6352, + "type": "message", + "date": "2024-12-19T01:00:06", + "date_unixtime": "1734566406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003392 BTC for 82.71 CZK @ 2,438,246 CZK\nFees are 0.29048174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (80.46212657497109174493047917 CZK)\nThe limits being 0.10 % (26.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58728005 BTC (430,691.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,438,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.47 % (1,001,241.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,011.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01069016 BTC (26,065.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.54 CZK over 4654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003392 BTC for 82.71 CZK @ 2,438,246 CZK\nFees are 0.29048174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (80.46212657497109174493047917 CZK)\nThe limits being 0.10 % (26.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58728005 BTC (430,691.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,438,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.47 % (1,001,241.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,011.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01069016 BTC (26,065.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.54 CZK over 4654 transactions" + } + ] + }, + { + "id": 6353, + "type": "message", + "date": "2024-12-19T05:00:04", + "date_unixtime": "1734580804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003370 BTC for 82.71 CZK @ 2,454,285 CZK\nFees are 0.29049612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (53.994272598427758039739250902 CZK)\nThe limits being 0.10 % (26.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58731375 BTC (430,774.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,454,285 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.61 % (1,010,660.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 928.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01072386 BTC (26,319.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.54 CZK over 4655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003370 BTC for 82.71 CZK @ 2,454,285 CZK\nFees are 0.29049612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (53.994272598427758039739250902 CZK)\nThe limits being 0.10 % (26.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58731375 BTC (430,774.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,454,285 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.61 % (1,010,660.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 928.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01072386 BTC (26,319.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.54 CZK over 4655 transactions" + } + ] + }, + { + "id": 6354, + "type": "message", + "date": "2024-12-19T09:00:07", + "date_unixtime": "1734595207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003359 BTC for 82.69 CZK @ 2,461,829 CZK\nFees are 0.29043790 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (54.160235026172908069746361092 CZK)\nThe limits being 0.10 % (26.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58734734 BTC (430,857.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,461,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.60 % (1,015,091.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 845.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01075745 BTC (26,483.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.54 CZK over 4656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003359 BTC for 82.69 CZK @ 2,461,829 CZK\nFees are 0.29043790 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (54.160235026172908069746361092 CZK)\nThe limits being 0.10 % (26.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58734734 BTC (430,857.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,461,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.60 % (1,015,091.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 845.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01075745 BTC (26,483.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.54 CZK over 4656 transactions" + } + ] + }, + { + "id": 6355, + "type": "message", + "date": "2024-12-19T13:00:04", + "date_unixtime": "1734609604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003339 BTC for 82.71 CZK @ 2,477,097 CZK\nFees are 0.29049912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (54.496129757886928544344569390 CZK)\nThe limits being 0.10 % (26.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58738073 BTC (430,940.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,477,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 237.63 % (1,024,058.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 762.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01079084 BTC (26,729.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.54 CZK over 4657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003339 BTC for 82.71 CZK @ 2,477,097 CZK\nFees are 0.29049912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (54.496129757886928544344569390 CZK)\nThe limits being 0.10 % (26.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58738073 BTC (430,940.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,477,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 237.63 % (1,024,058.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 762.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01079084 BTC (26,729.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.54 CZK over 4657 transactions" + } + ] + }, + { + "id": 6356, + "type": "message", + "date": "2024-12-19T17:00:03", + "date_unixtime": "1734624003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003383 BTC for 82.69 CZK @ 2,444,182 CZK\nFees are 0.29041628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (53.772004239963556461636415613 CZK)\nThe limits being 0.10 % (26.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58741456 BTC (431,023.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,444,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.10 % (1,004,724.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 680.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01082467 BTC (26,457.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.53 CZK over 4658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003383 BTC for 82.69 CZK @ 2,444,182 CZK\nFees are 0.29041628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (53.772004239963556461636415613 CZK)\nThe limits being 0.10 % (26.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58741456 BTC (431,023.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,444,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.10 % (1,004,724.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 680.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01082467 BTC (26,457.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.53 CZK over 4658 transactions" + } + ] + }, + { + "id": 6357, + "type": "message", + "date": "2024-12-19T21:00:03", + "date_unixtime": "1734638403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003495 BTC for 82.71 CZK @ 2,366,475 CZK\nFees are 0.29049222 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (78.093671759143427189386503460 CZK)\nThe limits being 0.10 % (25.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58744951 BTC (431,106.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,366,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.47 % (959,077.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 597.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01085962 BTC (25,699.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.53 CZK over 4659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003495 BTC for 82.71 CZK @ 2,366,475 CZK\nFees are 0.29049222 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (78.093671759143427189386503460 CZK)\nThe limits being 0.10 % (25.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58744951 BTC (431,106.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,366,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.47 % (959,077.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 597.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01085962 BTC (25,699.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.53 CZK over 4659 transactions" + } + ] + }, + { + "id": 6358, + "type": "message", + "date": "2024-12-20T01:00:03", + "date_unixtime": "1734652803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003485 BTC for 82.70 CZK @ 2,372,948 CZK\nFees are 0.29045337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (78.307283601512353820451947598 CZK)\nThe limits being 0.10 % (25.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58748436 BTC (431,189.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 733,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,372,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.31 % (962,880.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 514.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01089447 BTC (25,852.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.53 CZK over 4660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003485 BTC for 82.70 CZK @ 2,372,948 CZK\nFees are 0.29045337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (78.307283601512353820451947598 CZK)\nThe limits being 0.10 % (25.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58748436 BTC (431,189.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 733,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,372,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.31 % (962,880.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 514.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01089447 BTC (25,852.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.53 CZK over 4660 transactions" + } + ] + }, + { + "id": 6359, + "type": "message", + "date": "2024-12-20T05:00:04", + "date_unixtime": "1734667204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003497 BTC for 82.69 CZK @ 2,364,717 CZK\nFees are 0.29044248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (52.023763701508546224901435198 CZK)\nThe limits being 0.10 % (25.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58751933 BTC (431,272.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,364,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.14 % (958,044.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 431.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01092944 BTC (25,845.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.53 CZK over 4661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003497 BTC for 82.69 CZK @ 2,364,717 CZK\nFees are 0.29044248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (52.023763701508546224901435198 CZK)\nThe limits being 0.10 % (25.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58751933 BTC (431,272.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,364,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.14 % (958,044.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 431.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01092944 BTC (25,845.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.53 CZK over 4661 transactions" + } + ] + }, + { + "id": 6360, + "type": "message", + "date": "2024-12-20T09:00:03", + "date_unixtime": "1734681603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003483 BTC for 82.71 CZK @ 2,374,542 CZK\nFees are 0.29048168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (52.239922878023386708106468016 CZK)\nThe limits being 0.10 % (26.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58755416 BTC (431,355.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,374,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.44 % (963,816.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 348.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01096427 BTC (26,035.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.53 CZK over 4662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003483 BTC for 82.71 CZK @ 2,374,542 CZK\nFees are 0.29048168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (52.239922878023386708106468016 CZK)\nThe limits being 0.10 % (26.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58755416 BTC (431,355.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,374,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.44 % (963,816.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 348.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01096427 BTC (26,035.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.53 CZK over 4662 transactions" + } + ] + }, + { + "id": 6361, + "type": "message", + "date": "2024-12-20T13:00:04", + "date_unixtime": "1734696004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003678 BTC for 82.71 CZK @ 2,248,737 CZK\nFees are 0.29049313 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (49.472220894081156409337303125 CZK)\nThe limits being 0.10 % (24.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58759094 BTC (431,438.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,248,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.26 % (889,899.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 265.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01100105 BTC (24,738.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.52 CZK over 4663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003678 BTC for 82.71 CZK @ 2,248,737 CZK\nFees are 0.29049313 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (49.472220894081156409337303125 CZK)\nThe limits being 0.10 % (24.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58759094 BTC (431,438.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,248,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.26 % (889,899.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 265.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01100105 BTC (24,738.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.52 CZK over 4663 transactions" + } + ] + }, + { + "id": 6362, + "type": "message", + "date": "2024-12-20T17:00:04", + "date_unixtime": "1734710404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003512 BTC for 82.69 CZK @ 2,354,436 CZK\nFees are 0.29042020 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (51.797591648478616414303922605 CZK)\nThe limits being 0.10 % (25.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58762606 BTC (431,521.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,354,436 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.62 % (952,006.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 182.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01103617 BTC (25,983.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.52 CZK over 4664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003512 BTC for 82.69 CZK @ 2,354,436 CZK\nFees are 0.29042020 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (51.797591648478616414303922605 CZK)\nThe limits being 0.10 % (25.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58762606 BTC (431,521.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,354,436 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.62 % (952,006.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 182.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01103617 BTC (25,983.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.52 CZK over 4664 transactions" + } + ] + }, + { + "id": 6363, + "type": "message", + "date": "2024-12-20T21:00:03", + "date_unixtime": "1734724803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003526 BTC for 82.69 CZK @ 2,345,110 CZK\nFees are 0.29042294 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (103.18483153771781747434744136 CZK)\nThe limits being 0.10 % (25.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58766132 BTC (431,604.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,345,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.30 % (946,525.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 99.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01107143 BTC (25,963.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.52 CZK over 4665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003526 BTC for 82.69 CZK @ 2,345,110 CZK\nFees are 0.29042294 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (103.18483153771781747434744136 CZK)\nThe limits being 0.10 % (25.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58766132 BTC (431,604.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,345,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.30 % (946,525.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 99.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01107143 BTC (25,963.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.52 CZK over 4665 transactions" + } + ] + }, + { + "id": 6364, + "type": "message", + "date": "2024-12-21T01:00:03", + "date_unixtime": "1734739203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003501 BTC for 82.70 CZK @ 2,362,141 CZK\nFees are 0.29045802 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (77.950657351369606548459995844 CZK)\nThe limits being 0.10 % (26.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58769633 BTC (431,687.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,362,141 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.58 % (956,534.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01110644 BTC (26,234.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.52 CZK over 4666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003501 BTC for 82.70 CZK @ 2,362,141 CZK\nFees are 0.29045802 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (77.950657351369606548459995844 CZK)\nThe limits being 0.10 % (26.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58769633 BTC (431,687.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,362,141 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.58 % (956,534.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01110644 BTC (26,234.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.52 CZK over 4666 transactions" + } + ] + }, + { + "id": 6365, + "type": "message", + "date": "2024-12-21T05:00:00", + "date_unixtime": "1734753600", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6366, + "type": "message", + "date": "2024-12-21T09:00:00", + "date_unixtime": "1734768000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6367, + "type": "message", + "date": "2024-12-21T13:00:00", + "date_unixtime": "1734782400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6368, + "type": "message", + "date": "2024-12-21T17:00:00", + "date_unixtime": "1734796800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6369, + "type": "message", + "date": "2024-12-21T21:00:00", + "date_unixtime": "1734811200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6370, + "type": "message", + "date": "2024-12-22T01:00:01", + "date_unixtime": "1734825601", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6371, + "type": "message", + "date": "2024-12-22T05:00:00", + "date_unixtime": "1734840000", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6372, + "type": "message", + "date": "2024-12-22T09:00:00", + "date_unixtime": "1734854400", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6373, + "type": "message", + "date": "2024-12-22T13:00:00", + "date_unixtime": "1734868800", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6374, + "type": "message", + "date": "2024-12-22T17:00:00", + "date_unixtime": "1734883200", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "⚠️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + ], + "text_entities": [ + { + "type": "plain", + "text": "⚠️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\nNot enough CZK on the main account\nThe account balance (16.10498961 CZK) should be strictly superior than the bot configuration chunk size (83 CZK)" + } + ] + }, + { + "id": 6375, + "type": "message", + "date": "2024-12-22T21:00:03", + "date_unixtime": "1734897603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003607 BTC for 82.70 CZK @ 2,292,892 CZK\nFees are 0.29047929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (25.221812458723273643440086120 CZK)\nThe limits being 0.10 % (25.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58773240 BTC (431,770.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,292,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.11 % (915,836.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,933.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01114251 BTC (25,548.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.52 CZK over 4667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003607 BTC for 82.70 CZK @ 2,292,892 CZK\nFees are 0.29047929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (25.221812458723273643440086120 CZK)\nThe limits being 0.10 % (25.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58773240 BTC (431,770.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,292,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.11 % (915,836.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,933.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01114251 BTC (25,548.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.52 CZK over 4667 transactions" + } + ] + }, + { + "id": 6376, + "type": "message", + "date": "2024-12-23T01:00:04", + "date_unixtime": "1734912004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,782 CZK\nFees are 0.29046366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (25.297603806865071249514352713 CZK)\nThe limits being 0.10 % (25.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58776836 BTC (431,853.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.01 % (919,885.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,850.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01117847 BTC (25,708.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.51 CZK over 4668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,782 CZK\nFees are 0.29046366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (25.297603806865071249514352713 CZK)\nThe limits being 0.10 % (25.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58776836 BTC (431,853.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.01 % (919,885.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,850.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01117847 BTC (25,708.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.51 CZK over 4668 transactions" + } + ] + }, + { + "id": 6377, + "type": "message", + "date": "2024-12-23T05:00:06", + "date_unixtime": "1734926406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003575 BTC for 82.71 CZK @ 2,313,470 CZK\nFees are 0.29048611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (25.448171982676018550458012342 CZK)\nThe limits being 0.10 % (25.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58780411 BTC (431,936.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.83 % (927,930.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,767.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01121422 BTC (25,943.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.51 CZK over 4669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003575 BTC for 82.71 CZK @ 2,313,470 CZK\nFees are 0.29048611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.10 % (25.448171982676018550458012342 CZK)\nThe limits being 0.10 % (25.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58780411 BTC (431,936.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.83 % (927,930.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,767.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01121422 BTC (25,943.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.51 CZK over 4669 transactions" + } + ] + }, + { + "id": 6378, + "type": "message", + "date": "2024-12-23T09:00:07", + "date_unixtime": "1734940807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.71 CZK @ 2,309,011 CZK\nFees are 0.29049390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (101.59648835886235139602124002 CZK)\nThe limits being 0.10 % (25.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58783993 BTC (432,019.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 734,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.18 % (925,309.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,684.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01125004 BTC (25,976.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.51 CZK over 4670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.71 CZK @ 2,309,011 CZK\nFees are 0.29049390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (101.59648835886235139602124002 CZK)\nThe limits being 0.10 % (25.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58783993 BTC (432,019.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 734,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.18 % (925,309.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,684.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01125004 BTC (25,976.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.51 CZK over 4670 transactions" + } + ] + }, + { + "id": 6379, + "type": "message", + "date": "2024-12-23T13:00:03", + "date_unixtime": "1734955203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003552 BTC for 82.70 CZK @ 2,328,377 CZK\nFees are 0.29047698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (51.224298963200869030465443021 CZK)\nThe limits being 0.10 % (26.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58787545 BTC (432,102.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.78 % (936,693.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,601.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01128556 BTC (26,277.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.51 CZK over 4671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003552 BTC for 82.70 CZK @ 2,328,377 CZK\nFees are 0.29047698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (51.224298963200869030465443021 CZK)\nThe limits being 0.10 % (26.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58787545 BTC (432,102.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.78 % (936,693.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,601.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01128556 BTC (26,277.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.51 CZK over 4671 transactions" + } + ] + }, + { + "id": 6380, + "type": "message", + "date": "2024-12-23T17:00:04", + "date_unixtime": "1734969604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003649 BTC for 82.69 CZK @ 2,266,063 CZK\nFees are 0.29042322 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (49.853394143244601690739031638 CZK)\nThe limits being 0.10 % (25.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58791194 BTC (432,185.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,266,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.26 % (900,060.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,518.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01132205 BTC (25,656.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.51 CZK over 4672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003649 BTC for 82.69 CZK @ 2,266,063 CZK\nFees are 0.29042322 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (49.853394143244601690739031638 CZK)\nThe limits being 0.10 % (25.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58791194 BTC (432,185.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,266,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.26 % (900,060.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,518.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01132205 BTC (25,656.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.51 CZK over 4672 transactions" + } + ] + }, + { + "id": 6381, + "type": "message", + "date": "2024-12-23T21:00:03", + "date_unixtime": "1734984003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003666 BTC for 82.70 CZK @ 2,255,957 CZK\nFees are 0.29047499 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (49.631059619754209965067707652 CZK)\nThe limits being 0.10 % (25.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58794860 BTC (432,268.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,255,957 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.84 % (894,118.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,435.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01135871 BTC (25,624.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.50 CZK over 4673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003666 BTC for 82.70 CZK @ 2,255,957 CZK\nFees are 0.29047499 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (49.631059619754209965067707652 CZK)\nThe limits being 0.10 % (25.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58794860 BTC (432,268.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,255,957 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.84 % (894,118.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,435.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01135871 BTC (25,624.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.50 CZK over 4673 transactions" + } + ] + }, + { + "id": 6382, + "type": "message", + "date": "2024-12-24T01:00:04", + "date_unixtime": "1734998404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003603 BTC for 82.70 CZK @ 2,295,277 CZK\nFees are 0.29045896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.496093308723381570000419017 CZK)\nThe limits being 0.10 % (26.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58798463 BTC (432,351.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.15 % (917,236.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,352.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01139474 BTC (26,154.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.50 CZK over 4674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003603 BTC for 82.70 CZK @ 2,295,277 CZK\nFees are 0.29045896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.496093308723381570000419017 CZK)\nThe limits being 0.10 % (26.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58798463 BTC (432,351.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.15 % (917,236.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,352.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01139474 BTC (26,154.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.50 CZK over 4674 transactions" + } + ] + }, + { + "id": 6383, + "type": "message", + "date": "2024-12-24T05:00:04", + "date_unixtime": "1735012804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003622 BTC for 82.71 CZK @ 2,283,443 CZK\nFees are 0.29048517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.235736297888368072321144354 CZK)\nThe limits being 0.10 % (26.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58802085 BTC (432,434.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.50 % (910,277.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,269.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01143096 BTC (26,101.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.50 CZK over 4675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003622 BTC for 82.71 CZK @ 2,283,443 CZK\nFees are 0.29048517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.235736297888368072321144354 CZK)\nThe limits being 0.10 % (26.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58802085 BTC (432,434.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.50 % (910,277.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,269.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01143096 BTC (26,101.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.50 CZK over 4675 transactions" + } + ] + }, + { + "id": 6384, + "type": "message", + "date": "2024-12-24T09:00:04", + "date_unixtime": "1735027204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,895 CZK\nFees are 0.29047596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.289682356638443171398722491 CZK)\nThe limits being 0.10 % (26.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58805703 BTC (432,517.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,895 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.79 % (911,718.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,186.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01146714 BTC (26,212.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.50 CZK over 4676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,895 CZK\nFees are 0.29047596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.289682356638443171398722491 CZK)\nThe limits being 0.10 % (26.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58805703 BTC (432,517.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,895 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.79 % (911,718.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,186.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01146714 BTC (26,212.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.50 CZK over 4676 transactions" + } + ] + }, + { + "id": 6385, + "type": "message", + "date": "2024-12-24T13:00:04", + "date_unixtime": "1735041604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003610 BTC for 82.70 CZK @ 2,290,965 CZK\nFees are 0.29047658 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.401235576313926189086121015 CZK)\nThe limits being 0.10 % (26.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58809313 BTC (432,600.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,290,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.44 % (914,700.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,103.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01150324 BTC (26,353.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.50 CZK over 4677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003610 BTC for 82.70 CZK @ 2,290,965 CZK\nFees are 0.29047658 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.401235576313926189086121015 CZK)\nThe limits being 0.10 % (26.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58809313 BTC (432,600.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,290,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.44 % (914,700.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,103.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01150324 BTC (26,353.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.50 CZK over 4677 transactions" + } + ] + }, + { + "id": 6386, + "type": "message", + "date": "2024-12-24T17:00:03", + "date_unixtime": "1735056003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003476 BTC for 82.70 CZK @ 2,379,137 CZK\nFees are 0.29045891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.341022118786777922839681366 CZK)\nThe limits being 0.10 % (27.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58812789 BTC (432,683.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.39 % (966,553.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,020.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01153800 BTC (27,450.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.49 CZK over 4678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003476 BTC for 82.70 CZK @ 2,379,137 CZK\nFees are 0.29045891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.341022118786777922839681366 CZK)\nThe limits being 0.10 % (27.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58812789 BTC (432,683.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.39 % (966,553.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,020.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01153800 BTC (27,450.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.49 CZK over 4678 transactions" + } + ] + }, + { + "id": 6387, + "type": "message", + "date": "2024-12-24T21:00:04", + "date_unixtime": "1735070404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003487 BTC for 82.69 CZK @ 2,371,447 CZK\nFees are 0.29043626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.171839684133922438657129072 CZK)\nThe limits being 0.10 % (27.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58816276 BTC (432,766.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,371,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.30 % (962,030.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,937.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01157287 BTC (27,444.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.49 CZK over 4679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003487 BTC for 82.69 CZK @ 2,371,447 CZK\nFees are 0.29043626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.171839684133922438657129072 CZK)\nThe limits being 0.10 % (27.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58816276 BTC (432,766.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,371,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.30 % (962,030.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,937.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01157287 BTC (27,444.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.49 CZK over 4679 transactions" + } + ] + }, + { + "id": 6388, + "type": "message", + "date": "2024-12-25T01:00:05", + "date_unixtime": "1735084805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003453 BTC for 82.70 CZK @ 2,395,107 CZK\nFees are 0.29047378 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.692355214900180673752494706 CZK)\nThe limits being 0.10 % (27.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58819729 BTC (432,849.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,395,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.47 % (975,946.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,854.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01160740 BTC (27,800.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.49 CZK over 4680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003453 BTC for 82.70 CZK @ 2,395,107 CZK\nFees are 0.29047378 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.692355214900180673752494706 CZK)\nThe limits being 0.10 % (27.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58819729 BTC (432,849.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,395,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.47 % (975,946.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,854.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01160740 BTC (27,800.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.49 CZK over 4680 transactions" + } + ] + }, + { + "id": 6389, + "type": "message", + "date": "2024-12-25T05:00:05", + "date_unixtime": "1735099205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003479 BTC for 82.69 CZK @ 2,376,808 CZK\nFees are 0.29042492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.289766745393708968881980043 CZK)\nThe limits being 0.10 % (27.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58823208 BTC (432,932.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 735,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,376,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.94 % (965,182.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,771.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01164219 BTC (27,671.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.49 CZK over 4681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003479 BTC for 82.69 CZK @ 2,376,808 CZK\nFees are 0.29042492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (52.289766745393708968881980043 CZK)\nThe limits being 0.10 % (27.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58823208 BTC (432,932.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 735,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,376,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.94 % (965,182.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,771.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01164219 BTC (27,671.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.49 CZK over 4681 transactions" + } + ] + }, + { + "id": 6390, + "type": "message", + "date": "2024-12-25T09:00:04", + "date_unixtime": "1735113604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,803 CZK\nFees are 0.29045660 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.177833255548027945356719108 CZK)\nThe limits being 0.10 % (27.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58826683 BTC (433,015.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,087 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,803 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.30 % (966,943.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,688.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01167694 BTC (27,788.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.49 CZK over 4682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,803 CZK\nFees are 0.29045660 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.177833255548027945356719108 CZK)\nThe limits being 0.10 % (27.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58826683 BTC (433,015.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,087 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,803 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.30 % (966,943.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,688.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01167694 BTC (27,788.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.49 CZK over 4682 transactions" + } + ] + }, + { + "id": 6391, + "type": "message", + "date": "2024-12-25T13:00:03", + "date_unixtime": "1735128003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 82.70 CZK @ 2,373,601 CZK\nFees are 0.29044989 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.109606706607242046637000121 CZK)\nThe limits being 0.10 % (27.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58830167 BTC (433,098.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,601 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.42 % (963,294.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,605.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01171178 BTC (27,799.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.48 CZK over 4683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 82.70 CZK @ 2,373,601 CZK\nFees are 0.29044989 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.109606706607242046637000121 CZK)\nThe limits being 0.10 % (27.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58830167 BTC (433,098.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,601 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.42 % (963,294.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,605.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01171178 BTC (27,799.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.48 CZK over 4683 transactions" + } + ] + }, + { + "id": 6392, + "type": "message", + "date": "2024-12-25T17:00:03", + "date_unixtime": "1735142403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003462 BTC for 82.70 CZK @ 2,388,917 CZK\nFees are 0.29047816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.278083386368392313787935178 CZK)\nThe limits being 0.10 % (28.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58833629 BTC (433,181.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.46 % (972,305.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,522.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01174640 BTC (28,061.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.48 CZK over 4684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003462 BTC for 82.70 CZK @ 2,388,917 CZK\nFees are 0.29047816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.278083386368392313787935178 CZK)\nThe limits being 0.10 % (28.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58833629 BTC (433,181.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.46 % (972,305.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,522.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01174640 BTC (28,061.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.48 CZK over 4684 transactions" + } + ] + }, + { + "id": 6393, + "type": "message", + "date": "2024-12-25T21:00:03", + "date_unixtime": "1735156803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003445 BTC for 82.69 CZK @ 2,400,423 CZK\nFees are 0.29044404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.404655929500738706255247418 CZK)\nThe limits being 0.10 % (28.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58837074 BTC (433,264.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,380 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,400,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.98 % (979,074.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,439.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01178085 BTC (28,279.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.48 CZK over 4685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003445 BTC for 82.69 CZK @ 2,400,423 CZK\nFees are 0.29044404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.404655929500738706255247418 CZK)\nThe limits being 0.10 % (28.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58837074 BTC (433,264.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,380 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,400,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.98 % (979,074.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,439.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01178085 BTC (28,279.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.48 CZK over 4685 transactions" + } + ] + }, + { + "id": 6394, + "type": "message", + "date": "2024-12-26T01:00:04", + "date_unixtime": "1735171204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,987 CZK\nFees are 0.29045309 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.443858352742146672692089315 CZK)\nThe limits being 0.10 % (28.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58840514 BTC (433,347.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.42 % (981,171.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,356.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01181525 BTC (28,403.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.48 CZK over 4686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,987 CZK\nFees are 0.29045309 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.443858352742146672692089315 CZK)\nThe limits being 0.10 % (28.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58840514 BTC (433,347.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.42 % (981,171.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,356.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01181525 BTC (28,403.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.48 CZK over 4686 transactions" + } + ] + }, + { + "id": 6395, + "type": "message", + "date": "2024-12-26T05:00:06", + "date_unixtime": "1735185606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003445 BTC for 82.71 CZK @ 2,400,774 CZK\nFees are 0.29048650 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.408515522521682095250079005 CZK)\nThe limits being 0.10 % (28.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58843959 BTC (433,430.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,400,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.94 % (979,280.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,273.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01184970 BTC (28,448.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.47 CZK over 4687 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003445 BTC for 82.71 CZK @ 2,400,774 CZK\nFees are 0.29048650 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.408515522521682095250079005 CZK)\nThe limits being 0.10 % (28.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58843959 BTC (433,430.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,400,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.94 % (979,280.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,273.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01184970 BTC (28,448.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.47 CZK over 4687 transactions" + } + ] + }, + { + "id": 6396, + "type": "message", + "date": "2024-12-26T09:00:03", + "date_unixtime": "1735200003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003480 BTC for 82.70 CZK @ 2,376,514 CZK\nFees are 0.29047249 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.141652344667227920668464972 CZK)\nThe limits being 0.10 % (28.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58847439 BTC (433,513.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,376,514 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.60 % (965,004.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,190.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01188450 BTC (28,243.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.47 CZK over 4688 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003480 BTC for 82.70 CZK @ 2,376,514 CZK\nFees are 0.29047249 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (26.141652344667227920668464972 CZK)\nThe limits being 0.10 % (28.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58847439 BTC (433,513.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,376,514 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.60 % (965,004.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,190.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01188450 BTC (28,243.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.47 CZK over 4688 transactions" + } + ] + }, + { + "id": 6397, + "type": "message", + "date": "2024-12-26T13:00:04", + "date_unixtime": "1735214404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,152 CZK\nFees are 0.29046649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.510675310278299647252563307 CZK)\nThe limits being 0.10 % (27.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58851005 BTC (433,596.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,770 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,319,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.77 % (931,248.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,107.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01192016 BTC (27,644.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.47 CZK over 4689 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,152 CZK\nFees are 0.29046649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.510675310278299647252563307 CZK)\nThe limits being 0.10 % (27.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58851005 BTC (433,596.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,770 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,319,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.77 % (931,248.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,107.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01192016 BTC (27,644.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.47 CZK over 4689 transactions" + } + ] + }, + { + "id": 6398, + "type": "message", + "date": "2024-12-26T17:00:04", + "date_unixtime": "1735228804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003553 BTC for 82.69 CZK @ 2,327,407 CZK\nFees are 0.29043766 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.601474955303496585480230957 CZK)\nThe limits being 0.10 % (27.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58854558 BTC (433,679.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,327,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.85 % (936,105.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,024.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01195569 BTC (27,825.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.47 CZK over 4690 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003553 BTC for 82.69 CZK @ 2,327,407 CZK\nFees are 0.29043766 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.601474955303496585480230957 CZK)\nThe limits being 0.10 % (27.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58854558 BTC (433,679.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,327,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.85 % (936,105.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,024.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01195569 BTC (27,825.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.47 CZK over 4690 transactions" + } + ] + }, + { + "id": 6399, + "type": "message", + "date": "2024-12-26T21:00:04", + "date_unixtime": "1735243204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,167 CZK\nFees are 0.29043057 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (51.043670086794982991628067198 CZK)\nThe limits being 0.10 % (27.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58858122 BTC (433,762.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 736,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.83 % (931,844.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,941.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01199133 BTC (27,821.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.47 CZK over 4691 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,167 CZK\nFees are 0.29043057 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (51.043670086794982991628067198 CZK)\nThe limits being 0.10 % (27.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58858122 BTC (433,762.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 736,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.83 % (931,844.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,941.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01199133 BTC (27,821.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.47 CZK over 4691 transactions" + } + ] + }, + { + "id": 6400, + "type": "message", + "date": "2024-12-27T01:00:03", + "date_unixtime": "1735257603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,318,991 CZK\nFees are 0.29044627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (51.017799794940926052143353564 CZK)\nThe limits being 0.10 % (27.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58861688 BTC (433,845.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,318,991 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.63 % (931,151.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,858.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01202699 BTC (27,890.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.46 CZK over 4692 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,318,991 CZK\nFees are 0.29044627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (51.017799794940926052143353564 CZK)\nThe limits being 0.10 % (27.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58861688 BTC (433,845.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,318,991 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.63 % (931,151.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,858.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01202699 BTC (27,890.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.46 CZK over 4692 transactions" + } + ] + }, + { + "id": 6401, + "type": "message", + "date": "2024-12-27T05:00:04", + "date_unixtime": "1735272004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003542 BTC for 82.69 CZK @ 2,334,598 CZK\nFees are 0.29043305 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (51.361149046659672512665298783 CZK)\nThe limits being 0.10 % (28.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58865230 BTC (433,928.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,334,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.70 % (940,338.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,775.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01206241 BTC (28,160.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.46 CZK over 4693 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003542 BTC for 82.69 CZK @ 2,334,598 CZK\nFees are 0.29043305 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (51.361149046659672512665298783 CZK)\nThe limits being 0.10 % (28.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58865230 BTC (433,928.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,334,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.70 % (940,338.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,775.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01206241 BTC (28,160.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.46 CZK over 4693 transactions" + } + ] + }, + { + "id": 6402, + "type": "message", + "date": "2024-12-27T09:00:03", + "date_unixtime": "1735286403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.71 CZK @ 2,303,250 CZK\nFees are 0.29049714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.335747598803796847486040572 CZK)\nThe limits being 0.10 % (27.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58868821 BTC (434,011.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.41 % (921,884.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,692.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01209832 BTC (27,865.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.46 CZK over 4694 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.71 CZK @ 2,303,250 CZK\nFees are 0.29049714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.335747598803796847486040572 CZK)\nThe limits being 0.10 % (27.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58868821 BTC (434,011.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.41 % (921,884.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,692.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01209832 BTC (27,865.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.46 CZK over 4694 transactions" + } + ] + }, + { + "id": 6403, + "type": "message", + "date": "2024-12-27T13:00:03", + "date_unixtime": "1735300803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,175 CZK\nFees are 0.29042901 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.752925321679896127991441054 CZK)\nThe limits being 0.10 % (28.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58872353 BTC (434,094.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,348 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,175 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.51 % (944,210.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,609.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01213364 BTC (28,406.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.46 CZK over 4695 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,175 CZK\nFees are 0.29042901 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.752925321679896127991441054 CZK)\nThe limits being 0.10 % (28.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58872353 BTC (434,094.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,348 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,175 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.51 % (944,210.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,609.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01213364 BTC (28,406.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.46 CZK over 4695 transactions" + } + ] + }, + { + "id": 6404, + "type": "message", + "date": "2024-12-27T17:00:03", + "date_unixtime": "1735315203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003604 BTC for 82.71 CZK @ 2,294,865 CZK\nFees are 0.29048742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.243514391361643791679178371 CZK)\nThe limits being 0.10 % (27.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58875957 BTC (434,177.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.19 % (916,946.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,526.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01216968 BTC (27,927.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.46 CZK over 4696 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003604 BTC for 82.71 CZK @ 2,294,865 CZK\nFees are 0.29048742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.243514391361643791679178371 CZK)\nThe limits being 0.10 % (27.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58875957 BTC (434,177.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.19 % (916,946.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,526.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01216968 BTC (27,927.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.46 CZK over 4696 transactions" + } + ] + }, + { + "id": 6405, + "type": "message", + "date": "2024-12-27T21:00:03", + "date_unixtime": "1735329603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003598 BTC for 82.70 CZK @ 2,298,537 CZK\nFees are 0.29046786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.283907772490557645239992435 CZK)\nThe limits being 0.10 % (28.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58879555 BTC (434,260.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,298,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.65 % (919,108.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,443.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01220566 BTC (28,055.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.45 CZK over 4697 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003598 BTC for 82.70 CZK @ 2,298,537 CZK\nFees are 0.29046786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.283907772490557645239992435 CZK)\nThe limits being 0.10 % (28.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58879555 BTC (434,260.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,298,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.65 % (919,108.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,443.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01220566 BTC (28,055.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.45 CZK over 4697 transactions" + } + ] + }, + { + "id": 6406, + "type": "message", + "date": "2024-12-28T01:00:03", + "date_unixtime": "1735344003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,980 CZK\nFees are 0.29049985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.167778177760962495718650009 CZK)\nThe limits being 0.10 % (28.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58883170 BTC (434,343.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,980 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.18 % (912,891.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,360.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01224181 BTC (28,009.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.45 CZK over 4698 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,980 CZK\nFees are 0.29049985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.167778177760962495718650009 CZK)\nThe limits being 0.10 % (28.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58883170 BTC (434,343.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,980 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.18 % (912,891.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,360.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01224181 BTC (28,009.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.45 CZK over 4698 transactions" + } + ] + }, + { + "id": 6407, + "type": "message", + "date": "2024-12-28T05:00:04", + "date_unixtime": "1735358404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003604 BTC for 82.70 CZK @ 2,294,700 CZK\nFees are 0.29046649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.241694869565842525633092168 CZK)\nThe limits being 0.10 % (28.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58886774 BTC (434,426.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.05 % (916,848.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,277.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01227785 BTC (28,173.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.45 CZK over 4699 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003604 BTC for 82.70 CZK @ 2,294,700 CZK\nFees are 0.29046649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.241694869565842525633092168 CZK)\nThe limits being 0.10 % (28.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58886774 BTC (434,426.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.05 % (916,848.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,277.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01227785 BTC (28,173.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.45 CZK over 4699 transactions" + } + ] + }, + { + "id": 6408, + "type": "message", + "date": "2024-12-28T09:00:03", + "date_unixtime": "1735372803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,539 CZK\nFees are 0.29045654 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.184925792119607950247224416 CZK)\nThe limits being 0.10 % (28.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58890386 BTC (434,509.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.31 % (913,809.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,194.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01231397 BTC (28,193.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.45 CZK over 4700 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,539 CZK\nFees are 0.29045654 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.184925792119607950247224416 CZK)\nThe limits being 0.10 % (28.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58890386 BTC (434,509.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.31 % (913,809.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,194.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01231397 BTC (28,193.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.45 CZK over 4700 transactions" + } + ] + }, + { + "id": 6409, + "type": "message", + "date": "2024-12-28T13:00:06", + "date_unixtime": "1735387206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003598 BTC for 82.70 CZK @ 2,298,576 CZK\nFees are 0.29047281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.284337841457068132575452288 CZK)\nThe limits being 0.10 % (28.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58893984 BTC (434,592.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 737,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,298,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.49 % (919,130.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,111.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01234995 BTC (28,387.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.45 CZK over 4701 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003598 BTC for 82.70 CZK @ 2,298,576 CZK\nFees are 0.29047281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.284337841457068132575452288 CZK)\nThe limits being 0.10 % (28.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58893984 BTC (434,592.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 737,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,298,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.49 % (919,130.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,111.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01234995 BTC (28,387.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.45 CZK over 4701 transactions" + } + ] + }, + { + "id": 6410, + "type": "message", + "date": "2024-12-28T17:00:04", + "date_unixtime": "1735401604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,033 CZK\nFees are 0.29042624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.168362631729731771671314207 CZK)\nThe limits being 0.10 % (28.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58897598 BTC (434,675.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.02 % (912,921.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,028.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01238609 BTC (28,339.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.44 CZK over 4702 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,033 CZK\nFees are 0.29042624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.168362631729731771671314207 CZK)\nThe limits being 0.10 % (28.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58897598 BTC (434,675.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.02 % (912,921.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,028.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01238609 BTC (28,339.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.44 CZK over 4702 transactions" + } + ] + }, + { + "id": 6411, + "type": "message", + "date": "2024-12-28T21:00:04", + "date_unixtime": "1735416004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003595 BTC for 82.69 CZK @ 2,300,108 CZK\nFees are 0.29042402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.301187713655890059340292286 CZK)\nThe limits being 0.10 % (28.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58901193 BTC (434,758.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.62 % (920,032.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,945.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01242204 BTC (28,572.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.44 CZK over 4703 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003595 BTC for 82.69 CZK @ 2,300,108 CZK\nFees are 0.29042402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.301187713655890059340292286 CZK)\nThe limits being 0.10 % (28.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58901193 BTC (434,758.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.62 % (920,032.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,945.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01242204 BTC (28,572.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.44 CZK over 4703 transactions" + } + ] + }, + { + "id": 6412, + "type": "message", + "date": "2024-12-29T01:00:04", + "date_unixtime": "1735430404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.70 CZK @ 2,308,636 CZK\nFees are 0.29044673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.394997840612017625635791204 CZK)\nThe limits being 0.10 % (28.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58904775 BTC (434,841.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.73 % (925,055.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,862.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01245786 BTC (28,760.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.44 CZK over 4704 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.70 CZK @ 2,308,636 CZK\nFees are 0.29044673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.394997840612017625635791204 CZK)\nThe limits being 0.10 % (28.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58904775 BTC (434,841.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.73 % (925,055.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,862.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01245786 BTC (28,760.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.44 CZK over 4704 transactions" + } + ] + }, + { + "id": 6413, + "type": "message", + "date": "2024-12-29T05:00:04", + "date_unixtime": "1735444804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.69 CZK @ 2,305,960 CZK\nFees are 0.29043395 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.365554672144427020764746700 CZK)\nThe limits being 0.10 % (28.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58908361 BTC (434,924.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.33 % (923,478.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,779.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01249372 BTC (28,810.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.44 CZK over 4705 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.69 CZK @ 2,305,960 CZK\nFees are 0.29043395 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.365554672144427020764746700 CZK)\nThe limits being 0.10 % (28.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58908361 BTC (434,924.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.33 % (923,478.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,779.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01249372 BTC (28,810.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.44 CZK over 4705 transactions" + } + ] + }, + { + "id": 6414, + "type": "message", + "date": "2024-12-29T09:00:04", + "date_unixtime": "1735459204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003580 BTC for 82.71 CZK @ 2,310,280 CZK\nFees are 0.29049129 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.413082782050532632991234589 CZK)\nThe limits being 0.10 % (28.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58911941 BTC (435,007.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.88 % (926,023.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,696.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01252952 BTC (28,946.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.44 CZK over 4706 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003580 BTC for 82.71 CZK @ 2,310,280 CZK\nFees are 0.29049129 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.413082782050532632991234589 CZK)\nThe limits being 0.10 % (28.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58911941 BTC (435,007.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.88 % (926,023.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,696.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01252952 BTC (28,946.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.44 CZK over 4706 transactions" + } + ] + }, + { + "id": 6415, + "type": "message", + "date": "2024-12-29T13:00:03", + "date_unixtime": "1735473603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003590 BTC for 82.70 CZK @ 2,303,648 CZK\nFees are 0.29046643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.340125477541695986054380697 CZK)\nThe limits being 0.10 % (28.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58915531 BTC (435,090.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.94 % (922,116.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,613.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01256542 BTC (28,946.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.43 CZK over 4707 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003590 BTC for 82.70 CZK @ 2,303,648 CZK\nFees are 0.29046643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.340125477541695986054380697 CZK)\nThe limits being 0.10 % (28.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58915531 BTC (435,090.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.94 % (922,116.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,613.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01256542 BTC (28,946.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.43 CZK over 4707 transactions" + } + ] + }, + { + "id": 6416, + "type": "message", + "date": "2024-12-29T17:00:03", + "date_unixtime": "1735488003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003609 BTC for 82.71 CZK @ 2,291,635 CZK\nFees are 0.29048100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.207984093356819985688770380 CZK)\nThe limits being 0.10 % (28.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58919140 BTC (435,173.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,594 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,291,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.27 % (915,038.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,530.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01260151 BTC (28,878.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.43 CZK over 4708 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003609 BTC for 82.71 CZK @ 2,291,635 CZK\nFees are 0.29048100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee absolute limit exceeded]\nFees would have been 0.09 % (25.207984093356819985688770380 CZK)\nThe limits being 0.10 % (28.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58919140 BTC (435,173.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,594 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,291,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.27 % (915,038.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,530.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01260151 BTC (28,878.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.43 CZK over 4708 transactions" + } + ] + }, + { + "id": 6417, + "type": "message", + "date": "2024-12-29T21:00:04", + "date_unixtime": "1735502404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003652 BTC for 82.69 CZK @ 2,264,241 CZK\nFees are 0.29042822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + "✔️ Success\nInitiated transfer of 0.01263803 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.09 % (24.906649251715381706196985250 CZK)\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58922792 BTC (435,256.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,264,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.52 % (898,897.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,447.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01263803 BTC (28,615.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.43 CZK over 4709 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003652 BTC for 82.69 CZK @ 2,264,241 CZK\nFees are 0.29042822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": "✔️ Success\nInitiated transfer of 0.01263803 BTC to the address bc1p5rluy8ejs4yhlz66lj5pxjgs5cmxalsrjk3mmkqp9wxsk9rwjdysn4ryce\nFees are 0.09 % (24.906649251715381706196985250 CZK)\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58922792 BTC (435,256.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,264,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.52 % (898,897.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,447.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01263803 BTC (28,615.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.43 CZK over 4709 transactions" + } + ] + }, + { + "id": 6418, + "type": "message", + "date": "2024-12-30T01:00:03", + "date_unixtime": "1735516803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003642 BTC for 82.70 CZK @ 2,270,783 CZK\nFees are 0.29046982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 30.20 % (24.978614089839871268790972398 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58926434 BTC (435,339.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,270,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.37 % (902,752.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,364.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00003642 BTC (82.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.43 CZK over 4710 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003642 BTC for 82.70 CZK @ 2,270,783 CZK\nFees are 0.29046982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 30.20 % (24.978614089839871268790972398 CZK)\nThe limits being 0.10 % (0.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58926434 BTC (435,339.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,270,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.37 % (902,752.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,364.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00003642 BTC (82.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.43 CZK over 4710 transactions" + } + ] + }, + { + "id": 6419, + "type": "message", + "date": "2024-12-30T05:00:03", + "date_unixtime": "1735531203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003643 BTC for 82.71 CZK @ 2,270,250 CZK\nFees are 0.29048134 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 15.10 % (24.972747509711070271343736395 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58930077 BTC (435,422.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,270,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.26 % (902,437.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,281.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00007285 BTC (165.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.43 CZK over 4711 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003643 BTC for 82.71 CZK @ 2,270,250 CZK\nFees are 0.29048134 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 15.10 % (24.972747509711070271343736395 CZK)\nThe limits being 0.10 % (0.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58930077 BTC (435,422.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,270,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.26 % (902,437.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,281.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00007285 BTC (165.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.43 CZK over 4711 transactions" + } + ] + }, + { + "id": 6420, + "type": "message", + "date": "2024-12-30T09:00:04", + "date_unixtime": "1735545604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003647 BTC for 82.70 CZK @ 2,267,737 CZK\nFees are 0.29047836 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 10.06 % (24.945101809419704464590549475 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58933724 BTC (435,505.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 738,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,267,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.88 % (900,956.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,198.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00010932 BTC (247.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.42 CZK over 4712 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003647 BTC for 82.70 CZK @ 2,267,737 CZK\nFees are 0.29047836 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 10.06 % (24.945101809419704464590549475 CZK)\nThe limits being 0.10 % (0.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58933724 BTC (435,505.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 738,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,267,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.88 % (900,956.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,198.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00010932 BTC (247.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.42 CZK over 4712 transactions" + } + ] + }, + { + "id": 6421, + "type": "message", + "date": "2024-12-30T13:00:05", + "date_unixtime": "1735560005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003640 BTC for 82.70 CZK @ 2,272,068 CZK\nFees are 0.29047462 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 7.55 % (24.992751221274988091131588889 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58937364 BTC (435,588.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,272,068 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.42 % (903,509.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,115.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00014572 BTC (331.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.42 CZK over 4713 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003640 BTC for 82.70 CZK @ 2,272,068 CZK\nFees are 0.29047462 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 7.55 % (24.992751221274988091131588889 CZK)\nThe limits being 0.10 % (0.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58937364 BTC (435,588.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,272,068 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.42 % (903,509.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,115.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00014572 BTC (331.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.42 CZK over 4713 transactions" + } + ] + }, + { + "id": 6422, + "type": "message", + "date": "2024-12-30T17:00:04", + "date_unixtime": "1735574404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003676 BTC for 82.69 CZK @ 2,249,488 CZK\nFees are 0.29043212 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 6.03 % (24.744369972235369894162596310 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58941040 BTC (435,670.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,249,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.33 % (890,200.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,032.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00018248 BTC (410.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.42 CZK over 4714 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003676 BTC for 82.69 CZK @ 2,249,488 CZK\nFees are 0.29043212 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 6.03 % (24.744369972235369894162596310 CZK)\nThe limits being 0.10 % (0.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58941040 BTC (435,670.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,249,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.33 % (890,200.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,032.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00018248 BTC (410.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.42 CZK over 4714 transactions" + } + ] + }, + { + "id": 6423, + "type": "message", + "date": "2024-12-30T21:00:03", + "date_unixtime": "1735588803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003606 BTC for 82.69 CZK @ 2,293,253 CZK\nFees are 0.29044446 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.03 % (25.225782324813789562377491314 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58944646 BTC (435,753.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,260 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,253 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.21 % (915,995.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,949.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00021854 BTC (501.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.42 CZK over 4715 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003606 BTC for 82.69 CZK @ 2,293,253 CZK\nFees are 0.29044446 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 5.03 % (25.225782324813789562377491314 CZK)\nThe limits being 0.10 % (0.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58944646 BTC (435,753.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,260 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,253 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.21 % (915,995.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,949.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00021854 BTC (501.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.42 CZK over 4715 transactions" + } + ] + }, + { + "id": 6424, + "type": "message", + "date": "2024-12-31T01:00:03", + "date_unixtime": "1735603203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003672 BTC for 82.70 CZK @ 2,252,129 CZK\nFees are 0.29045664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 4.31 % (24.773416155384259666331239355 CZK)\nThe limits being 0.10 % (0.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58948318 BTC (435,836.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,354 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,252,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.61 % (891,755.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,866.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00025526 BTC (574.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.42 CZK over 4716 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003672 BTC for 82.70 CZK @ 2,252,129 CZK\nFees are 0.29045664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 4.31 % (24.773416155384259666331239355 CZK)\nThe limits being 0.10 % (0.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58948318 BTC (435,836.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,354 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,252,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.61 % (891,755.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,866.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00025526 BTC (574.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.42 CZK over 4716 transactions" + } + ] + }, + { + "id": 6425, + "type": "message", + "date": "2024-12-31T05:00:04", + "date_unixtime": "1735617604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003684 BTC for 82.69 CZK @ 2,244,638 CZK\nFees are 0.29043662 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.77 % (24.691019391413440580119419167 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58952002 BTC (435,919.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,244,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.56 % (887,339.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,783.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00029210 BTC (655.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.41 CZK over 4717 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003684 BTC for 82.69 CZK @ 2,244,638 CZK\nFees are 0.29043662 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.77 % (24.691019391413440580119419167 CZK)\nThe limits being 0.10 % (0.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58952002 BTC (435,919.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,244,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.56 % (887,339.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,783.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00029210 BTC (655.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.41 CZK over 4717 transactions" + } + ] + }, + { + "id": 6426, + "type": "message", + "date": "2024-12-31T09:00:04", + "date_unixtime": "1735632004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003673 BTC for 82.69 CZK @ 2,251,419 CZK\nFees are 0.29044418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 3.35 % (24.765608752432101584014891522 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58955675 BTC (436,002.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,251,419 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.43 % (891,336.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,700.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00032883 BTC (740.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.41 CZK over 4718 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003673 BTC for 82.69 CZK @ 2,251,419 CZK\nFees are 0.29044418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 3.35 % (24.765608752432101584014891522 CZK)\nThe limits being 0.10 % (0.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58955675 BTC (436,002.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,251,419 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.43 % (891,336.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,700.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00032883 BTC (740.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.41 CZK over 4718 transactions" + } + ] + }, + { + "id": 6427, + "type": "message", + "date": "2024-12-31T13:00:07", + "date_unixtime": "1735646407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,670 CZK\nFees are 0.29044742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.01 % (25.142371041597636574917583923 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58959293 BTC (436,085.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,639 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.03 % (911,529.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,617.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00036501 BTC (834.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.41 CZK over 4719 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,670 CZK\nFees are 0.29044742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 3.01 % (25.142371041597636574917583923 CZK)\nThe limits being 0.10 % (0.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58959293 BTC (436,085.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,639 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.03 % (911,529.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,617.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00036501 BTC (834.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.41 CZK over 4719 transactions" + } + ] + }, + { + "id": 6428, + "type": "message", + "date": "2024-12-31T17:00:04", + "date_unixtime": "1735660804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003558 BTC for 82.69 CZK @ 2,324,060 CZK\nFees are 0.29042821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.75 % (25.564665480262588528682494911 CZK)\nThe limits being 0.10 % (0.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58962851 BTC (436,168.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.17 % (934,163.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,534.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00040059 BTC (931.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.41 CZK over 4720 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003558 BTC for 82.69 CZK @ 2,324,060 CZK\nFees are 0.29042821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.75 % (25.564665480262588528682494911 CZK)\nThe limits being 0.10 % (0.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58962851 BTC (436,168.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.17 % (934,163.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,534.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00040059 BTC (931.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.41 CZK over 4720 transactions" + } + ] + }, + { + "id": 6429, + "type": "message", + "date": "2024-12-31T21:00:04", + "date_unixtime": "1735675204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003604 BTC for 82.71 CZK @ 2,294,874 CZK\nFees are 0.29048857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.52 % (25.243613636124839421624757302 CZK)\nThe limits being 0.10 % (1.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58966455 BTC (436,251.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,831 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.19 % (916,953.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,451.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00043663 BTC (1,002.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.41 CZK over 4721 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003604 BTC for 82.71 CZK @ 2,294,874 CZK\nFees are 0.29048857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.52 % (25.243613636124839421624757302 CZK)\nThe limits being 0.10 % (1.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58966455 BTC (436,251.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,831 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.19 % (916,953.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,451.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00043663 BTC (1,002.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.41 CZK over 4721 transactions" + } + ] + }, + { + "id": 6430, + "type": "message", + "date": "2025-01-01T01:00:04", + "date_unixtime": "1735689604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003627 BTC for 82.71 CZK @ 2,280,296 CZK\nFees are 0.29048530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.33 % (25.083253127151193596055932715 CZK)\nThe limits being 0.10 % (1.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58970082 BTC (436,334.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 739,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,280,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.18 % (908,357.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,368.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00047290 BTC (1,078.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.40 CZK over 4722 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003627 BTC for 82.71 CZK @ 2,280,296 CZK\nFees are 0.29048530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.33 % (25.083253127151193596055932715 CZK)\nThe limits being 0.10 % (1.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58970082 BTC (436,334.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 739,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,280,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.18 % (908,357.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,368.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00047290 BTC (1,078.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.40 CZK over 4722 transactions" + } + ] + }, + { + "id": 6431, + "type": "message", + "date": "2025-01-01T05:00:06", + "date_unixtime": "1735704006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003610 BTC for 82.70 CZK @ 2,290,946 CZK\nFees are 0.29047417 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.16 % (25.200408269119025239915144640 CZK)\nThe limits being 0.10 % (1.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58973692 BTC (436,417.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,290,946 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.58 % (914,637.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,285.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00050900 BTC (1,166.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.40 CZK over 4723 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003610 BTC for 82.70 CZK @ 2,290,946 CZK\nFees are 0.29047417 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.16 % (25.200408269119025239915144640 CZK)\nThe limits being 0.10 % (1.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58973692 BTC (436,417.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,290,946 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.58 % (914,637.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,285.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00050900 BTC (1,166.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.40 CZK over 4723 transactions" + } + ] + }, + { + "id": 6432, + "type": "message", + "date": "2025-01-01T09:00:04", + "date_unixtime": "1735718404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003616 BTC for 82.71 CZK @ 2,287,275 CZK\nFees are 0.29049071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.02 % (25.160025914277903444140199567 CZK)\nThe limits being 0.10 % (1.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58977308 BTC (436,500.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.04 % (912,472.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,202.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00054516 BTC (1,246.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.40 CZK over 4724 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003616 BTC for 82.71 CZK @ 2,287,275 CZK\nFees are 0.29049071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 2.02 % (25.160025914277903444140199567 CZK)\nThe limits being 0.10 % (1.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58977308 BTC (436,500.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.04 % (912,472.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,202.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00054516 BTC (1,246.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.40 CZK over 4724 transactions" + } + ] + }, + { + "id": 6433, + "type": "message", + "date": "2025-01-01T13:00:04", + "date_unixtime": "1735732804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003624 BTC for 82.71 CZK @ 2,282,298 CZK\nFees are 0.29049985 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (25.105274851760559894673279285 CZK)\nThe limits being 0.10 % (1.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58980932 BTC (436,583.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,282,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.33 % (909,536.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,119.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00058140 BTC (1,326.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.40 CZK over 4725 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003624 BTC for 82.71 CZK @ 2,282,298 CZK\nFees are 0.29049985 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.89 % (25.105274851760559894673279285 CZK)\nThe limits being 0.10 % (1.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58980932 BTC (436,583.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,282,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.33 % (909,536.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,119.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00058140 BTC (1,326.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.40 CZK over 4725 transactions" + } + ] + }, + { + "id": 6434, + "type": "message", + "date": "2025-01-01T17:00:03", + "date_unixtime": "1735747203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003590 BTC for 82.71 CZK @ 2,303,850 CZK\nFees are 0.29049190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (25.342347376383215847597475687 CZK)\nThe limits being 0.10 % (1.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58984522 BTC (436,666.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.20 % (922,247.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,036.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00061730 BTC (1,422.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.40 CZK over 4726 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003590 BTC for 82.71 CZK @ 2,303,850 CZK\nFees are 0.29049190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.78 % (25.342347376383215847597475687 CZK)\nThe limits being 0.10 % (1.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58984522 BTC (436,666.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.20 % (922,247.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,036.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00061730 BTC (1,422.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.40 CZK over 4726 transactions" + } + ] + }, + { + "id": 6435, + "type": "message", + "date": "2025-01-01T21:00:03", + "date_unixtime": "1735761603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003581 BTC for 82.70 CZK @ 2,309,444 CZK\nFees are 0.29046728 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.68 % (25.403885927319169280041496760 CZK)\nThe limits being 0.10 % (1.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58988103 BTC (436,749.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,403 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.92 % (925,547.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,953.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00065311 BTC (1,508.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.39 CZK over 4727 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003581 BTC for 82.70 CZK @ 2,309,444 CZK\nFees are 0.29046728 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.68 % (25.403885927319169280041496760 CZK)\nThe limits being 0.10 % (1.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58988103 BTC (436,749.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,403 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.92 % (925,547.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,953.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00065311 BTC (1,508.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.39 CZK over 4727 transactions" + } + ] + }, + { + "id": 6436, + "type": "message", + "date": "2025-01-02T01:00:03", + "date_unixtime": "1735776003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003583 BTC for 82.70 CZK @ 2,308,088 CZK\nFees are 0.29045881 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.60 % (25.388965850614114901500900907 CZK)\nThe limits being 0.10 % (1.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58991686 BTC (436,832.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,088 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.69 % (924,747.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,870.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00068894 BTC (1,590.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.39 CZK over 4728 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003583 BTC for 82.70 CZK @ 2,308,088 CZK\nFees are 0.29045881 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.60 % (25.388965850614114901500900907 CZK)\nThe limits being 0.10 % (1.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58991686 BTC (436,832.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,088 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.69 % (924,747.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,870.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00068894 BTC (1,590.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.39 CZK over 4728 transactions" + } + ] + }, + { + "id": 6437, + "type": "message", + "date": "2025-01-02T05:00:04", + "date_unixtime": "1735790404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003573 BTC for 82.69 CZK @ 2,314,414 CZK\nFees are 0.29044198 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (25.458548771435436370129679064 CZK)\nThe limits being 0.10 % (1.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58995259 BTC (436,915.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.51 % (928,478.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,787.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00072467 BTC (1,677.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.39 CZK over 4729 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003573 BTC for 82.69 CZK @ 2,314,414 CZK\nFees are 0.29044198 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.52 % (25.458548771435436370129679064 CZK)\nThe limits being 0.10 % (1.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58995259 BTC (436,915.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.51 % (928,478.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,787.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00072467 BTC (1,677.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.39 CZK over 4729 transactions" + } + ] + }, + { + "id": 6438, + "type": "message", + "date": "2025-01-02T09:00:04", + "date_unixtime": "1735804804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003541 BTC for 82.70 CZK @ 2,335,400 CZK\nFees are 0.29045079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (25.689396446523583723558902216 CZK)\nThe limits being 0.10 % (1.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.58998800 BTC (436,998.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,335,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.30 % (940,858.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,704.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00076008 BTC (1,775.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.39 CZK over 4730 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003541 BTC for 82.70 CZK @ 2,335,400 CZK\nFees are 0.29045079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.45 % (25.689396446523583723558902216 CZK)\nThe limits being 0.10 % (1.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.58998800 BTC (436,998.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,335,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.30 % (940,858.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,704.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00076008 BTC (1,775.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.39 CZK over 4730 transactions" + } + ] + }, + { + "id": 6439, + "type": "message", + "date": "2025-01-02T13:00:04", + "date_unixtime": "1735819204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003501 BTC for 82.70 CZK @ 2,362,265 CZK\nFees are 0.29047331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (25.984919849364698562173210673 CZK)\nThe limits being 0.10 % (1.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59002301 BTC (437,081.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,362,265 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.89 % (956,709.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,621.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00079509 BTC (1,878.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.39 CZK over 4731 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003501 BTC for 82.70 CZK @ 2,362,265 CZK\nFees are 0.29047331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.38 % (25.984919849364698562173210673 CZK)\nThe limits being 0.10 % (1.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59002301 BTC (437,081.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,362,265 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.89 % (956,709.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,621.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00079509 BTC (1,878.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.39 CZK over 4731 transactions" + } + ] + }, + { + "id": 6440, + "type": "message", + "date": "2025-01-02T17:00:04", + "date_unixtime": "1735833604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003490 BTC for 82.69 CZK @ 2,369,440 CZK\nFees are 0.29044012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (26.063842978800559074756975229 CZK)\nThe limits being 0.10 % (1.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59005791 BTC (437,164.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.81 % (960,942.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,538.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00082999 BTC (1,966.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.38 CZK over 4732 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003490 BTC for 82.69 CZK @ 2,369,440 CZK\nFees are 0.29044012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.33 % (26.063842978800559074756975229 CZK)\nThe limits being 0.10 % (1.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59005791 BTC (437,164.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.81 % (960,942.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,538.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00082999 BTC (1,966.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.38 CZK over 4732 transactions" + } + ] + }, + { + "id": 6441, + "type": "message", + "date": "2025-01-02T21:00:03", + "date_unixtime": "1735848003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003455 BTC for 82.70 CZK @ 2,393,664 CZK\nFees are 0.29046696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (26.330309171733952872615887808 CZK)\nThe limits being 0.10 % (2.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59009246 BTC (437,247.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 740,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,393,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.04 % (975,235.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,455.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00086454 BTC (2,069.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.38 CZK over 4733 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003455 BTC for 82.70 CZK @ 2,393,664 CZK\nFees are 0.29046696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.27 % (26.330309171733952872615887808 CZK)\nThe limits being 0.10 % (2.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59009246 BTC (437,247.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 740,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,393,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.04 % (975,235.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,455.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00086454 BTC (2,069.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.38 CZK over 4733 transactions" + } + ] + }, + { + "id": 6442, + "type": "message", + "date": "2025-01-03T01:00:04", + "date_unixtime": "1735862404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,904 CZK\nFees are 0.29046895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (26.178947023833847720030253825 CZK)\nThe limits being 0.10 % (2.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59012721 BTC (437,330.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.14 % (967,115.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,372.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00089929 BTC (2,140.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.38 CZK over 4734 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,904 CZK\nFees are 0.29046895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.22 % (26.178947023833847720030253825 CZK)\nThe limits being 0.10 % (2.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59012721 BTC (437,330.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.14 % (967,115.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,372.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00089929 BTC (2,140.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.38 CZK over 4734 transactions" + } + ] + }, + { + "id": 6443, + "type": "message", + "date": "2025-01-03T05:00:03", + "date_unixtime": "1735876803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003468 BTC for 82.69 CZK @ 2,384,447 CZK\nFees are 0.29043711 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (26.228912193424513625609099409 CZK)\nThe limits being 0.10 % (2.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59016189 BTC (437,413.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.71 % (969,795.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,289.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00093397 BTC (2,227.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.38 CZK over 4735 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003468 BTC for 82.69 CZK @ 2,384,447 CZK\nFees are 0.29043711 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (26.228912193424513625609099409 CZK)\nThe limits being 0.10 % (2.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59016189 BTC (437,413.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.71 % (969,795.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,289.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00093397 BTC (2,227.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.38 CZK over 4735 transactions" + } + ] + }, + { + "id": 6444, + "type": "message", + "date": "2025-01-03T09:00:03", + "date_unixtime": "1735891203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003499 BTC for 82.71 CZK @ 2,363,804 CZK\nFees are 0.29049648 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (26.001846914478946436828060917 CZK)\nThe limits being 0.10 % (2.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59019688 BTC (437,496.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,363,804 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.88 % (957,613.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,206.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00096896 BTC (2,290.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.38 CZK over 4736 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003499 BTC for 82.71 CZK @ 2,363,804 CZK\nFees are 0.29049648 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (26.001846914478946436828060917 CZK)\nThe limits being 0.10 % (2.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59019688 BTC (437,496.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,363,804 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.88 % (957,613.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,206.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00096896 BTC (2,290.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.38 CZK over 4736 transactions" + } + ] + }, + { + "id": 6445, + "type": "message", + "date": "2025-01-03T13:00:05", + "date_unixtime": "1735905605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 82.69 CZK @ 2,373,491 CZK\nFees are 0.29043652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (26.108404721248306015055228628 CZK)\nThe limits being 0.10 % (2.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59023172 BTC (437,579.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.15 % (963,330.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,123.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00100380 BTC (2,382.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.37 CZK over 4737 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 82.69 CZK @ 2,373,491 CZK\nFees are 0.29043652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (26.108404721248306015055228628 CZK)\nThe limits being 0.10 % (2.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59023172 BTC (437,579.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.15 % (963,330.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,123.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00100380 BTC (2,382.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.37 CZK over 4737 transactions" + } + ] + }, + { + "id": 6446, + "type": "message", + "date": "2025-01-03T17:00:06", + "date_unixtime": "1735920006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003453 BTC for 82.69 CZK @ 2,394,862 CZK\nFees are 0.29044411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (26.343486921462688294415823217 CZK)\nThe limits being 0.10 % (2.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59026625 BTC (437,662.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,394,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.99 % (975,943.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,040.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00103833 BTC (2,486.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.37 CZK over 4738 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003453 BTC for 82.69 CZK @ 2,394,862 CZK\nFees are 0.29044411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (26.343486921462688294415823217 CZK)\nThe limits being 0.10 % (2.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59026625 BTC (437,662.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,394,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.99 % (975,943.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,040.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00103833 BTC (2,486.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.37 CZK over 4738 transactions" + } + ] + }, + { + "id": 6447, + "type": "message", + "date": "2025-01-03T21:00:03", + "date_unixtime": "1735934403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003424 BTC for 82.70 CZK @ 2,415,193 CZK\nFees are 0.29044975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (26.567122676939124279973364251 CZK)\nThe limits being 0.10 % (2.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59030049 BTC (437,745.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,415,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.69 % (987,943.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,957.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00107257 BTC (2,590.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.37 CZK over 4739 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003424 BTC for 82.70 CZK @ 2,415,193 CZK\nFees are 0.29044975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (26.567122676939124279973364251 CZK)\nThe limits being 0.10 % (2.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59030049 BTC (437,745.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,415,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.69 % (987,943.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,957.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00107257 BTC (2,590.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.37 CZK over 4739 transactions" + } + ] + }, + { + "id": 6448, + "type": "message", + "date": "2025-01-04T01:00:05", + "date_unixtime": "1735948805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003441 BTC for 82.70 CZK @ 2,403,473 CZK\nFees are 0.29047537 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (26.438201295465869456900847034 CZK)\nThe limits being 0.10 % (2.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59033490 BTC (437,828.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,473 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.07 % (981,025.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,874.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00110698 BTC (2,660.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.37 CZK over 4740 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003441 BTC for 82.70 CZK @ 2,403,473 CZK\nFees are 0.29047537 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.99 % (26.438201295465869456900847034 CZK)\nThe limits being 0.10 % (2.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59033490 BTC (437,828.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,473 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.07 % (981,025.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,874.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00110698 BTC (2,660.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.37 CZK over 4740 transactions" + } + ] + }, + { + "id": 6449, + "type": "message", + "date": "2025-01-04T05:00:03", + "date_unixtime": "1735963203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003441 BTC for 82.70 CZK @ 2,403,458 CZK\nFees are 0.29047355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (26.438035883417049336331847543 CZK)\nThe limits being 0.10 % (2.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59036931 BTC (437,911.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.02 % (981,016.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,791.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00114139 BTC (2,743.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.37 CZK over 4741 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003441 BTC for 82.70 CZK @ 2,403,458 CZK\nFees are 0.29047355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.96 % (26.438035883417049336331847543 CZK)\nThe limits being 0.10 % (2.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59036931 BTC (437,911.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.02 % (981,016.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,791.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00114139 BTC (2,743.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.37 CZK over 4741 transactions" + } + ] + }, + { + "id": 6450, + "type": "message", + "date": "2025-01-04T09:00:03", + "date_unixtime": "1735977603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,974 CZK\nFees are 0.29045152 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (26.443714997508719481813652216 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59040371 BTC (437,994.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.05 % (981,320.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,708.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00117579 BTC (2,826.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.36 CZK over 4742 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,974 CZK\nFees are 0.29045152 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.94 % (26.443714997508719481813652216 CZK)\nThe limits being 0.10 % (2.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59040371 BTC (437,994.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.05 % (981,320.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,708.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00117579 BTC (2,826.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.36 CZK over 4742 transactions" + } + ] + }, + { + "id": 6451, + "type": "message", + "date": "2025-01-04T13:00:04", + "date_unixtime": "1735992004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003460 BTC for 82.69 CZK @ 2,389,870 CZK\nFees are 0.29042621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (26.288570447652868140698307371 CZK)\nThe limits being 0.10 % (2.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59043831 BTC (438,077.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 741,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,389,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.11 % (972,993.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,625.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00121039 BTC (2,892.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.36 CZK over 4743 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003460 BTC for 82.69 CZK @ 2,389,870 CZK\nFees are 0.29042621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.91 % (26.288570447652868140698307371 CZK)\nThe limits being 0.10 % (2.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59043831 BTC (438,077.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 741,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,389,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.11 % (972,993.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,625.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00121039 BTC (2,892.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.36 CZK over 4743 transactions" + } + ] + }, + { + "id": 6452, + "type": "message", + "date": "2025-01-04T17:00:03", + "date_unixtime": "1736006403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003448 BTC for 82.70 CZK @ 2,398,409 CZK\nFees are 0.29045307 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (26.382501877708761793120828840 CZK)\nThe limits being 0.10 % (2.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59047279 BTC (438,160.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,398,409 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.21 % (978,034.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,542.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00124487 BTC (2,985.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.36 CZK over 4744 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003448 BTC for 82.70 CZK @ 2,398,409 CZK\nFees are 0.29045307 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.88 % (26.382501877708761793120828840 CZK)\nThe limits being 0.10 % (2.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59047279 BTC (438,160.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,398,409 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.21 % (978,034.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,542.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00124487 BTC (2,985.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.36 CZK over 4744 transactions" + } + ] + }, + { + "id": 6453, + "type": "message", + "date": "2025-01-04T21:00:04", + "date_unixtime": "1736020804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003427 BTC for 82.70 CZK @ 2,413,245 CZK\nFees are 0.29046979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (26.545696429290596422878838568 CZK)\nThe limits being 0.10 % (3.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59050706 BTC (438,243.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,148 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,413,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.17 % (986,794.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,459.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00127914 BTC (3,086.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.36 CZK over 4745 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003427 BTC for 82.70 CZK @ 2,413,245 CZK\nFees are 0.29046979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.86 % (26.545696429290596422878838568 CZK)\nThe limits being 0.10 % (3.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59050706 BTC (438,243.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,148 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,413,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.17 % (986,794.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,459.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00127914 BTC (3,086.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.36 CZK over 4745 transactions" + } + ] + }, + { + "id": 6454, + "type": "message", + "date": "2025-01-05T01:00:04", + "date_unixtime": "1736035204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003437 BTC for 82.71 CZK @ 2,406,470 CZK\nFees are 0.29049955 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (26.471173231194456295604314200 CZK)\nThe limits being 0.10 % (3.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59054143 BTC (438,326.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,245 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,406,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.21 % (982,793.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,376.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00131351 BTC (3,160.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.36 CZK over 4746 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003437 BTC for 82.71 CZK @ 2,406,470 CZK\nFees are 0.29049955 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.84 % (26.471173231194456295604314200 CZK)\nThe limits being 0.10 % (3.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59054143 BTC (438,326.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,245 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,406,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.21 % (982,793.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,376.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00131351 BTC (3,160.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.36 CZK over 4746 transactions" + } + ] + }, + { + "id": 6455, + "type": "message", + "date": "2025-01-05T05:00:04", + "date_unixtime": "1736049604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003438 BTC for 82.70 CZK @ 2,405,482 CZK\nFees are 0.29046471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (26.460300211621164203356895426 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59057581 BTC (438,409.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,405,482 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.04 % (982,209.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,293.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00134789 BTC (3,242.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.36 CZK over 4747 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003438 BTC for 82.70 CZK @ 2,405,482 CZK\nFees are 0.29046471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.82 % (26.460300211621164203356895426 CZK)\nThe limits being 0.10 % (3.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59057581 BTC (438,409.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,405,482 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.04 % (982,209.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,293.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00134789 BTC (3,242.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.36 CZK over 4747 transactions" + } + ] + }, + { + "id": 6456, + "type": "message", + "date": "2025-01-05T09:00:04", + "date_unixtime": "1736064004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003435 BTC for 82.71 CZK @ 2,407,730 CZK\nFees are 0.29048253 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (26.485034678479760430922629602 CZK)\nThe limits being 0.10 % (3.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59061016 BTC (438,492.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,407,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.30 % (983,537.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,211.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00138224 BTC (3,328.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.35 CZK over 4748 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003435 BTC for 82.71 CZK @ 2,407,730 CZK\nFees are 0.29048253 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.80 % (26.485034678479760430922629602 CZK)\nThe limits being 0.10 % (3.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59061016 BTC (438,492.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,407,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.30 % (983,537.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,211.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00138224 BTC (3,328.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.35 CZK over 4748 transactions" + } + ] + }, + { + "id": 6457, + "type": "message", + "date": "2025-01-05T13:00:03", + "date_unixtime": "1736078403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003457 BTC for 82.70 CZK @ 2,392,284 CZK\nFees are 0.29046750 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (26.315124436759452993492979950 CZK)\nThe limits being 0.10 % (3.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59064473 BTC (438,575.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,392,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.18 % (974,414.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,128.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00141681 BTC (3,389.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.35 CZK over 4749 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003457 BTC for 82.70 CZK @ 2,392,284 CZK\nFees are 0.29046750 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.78 % (26.315124436759452993492979950 CZK)\nThe limits being 0.10 % (3.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59064473 BTC (438,575.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,392,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.18 % (974,414.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,128.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00141681 BTC (3,389.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.35 CZK over 4749 transactions" + } + ] + }, + { + "id": 6458, + "type": "message", + "date": "2025-01-05T17:00:04", + "date_unixtime": "1736092804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003444 BTC for 82.69 CZK @ 2,400,938 CZK\nFees are 0.29042194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (26.410312988165115475626248894 CZK)\nThe limits being 0.10 % (3.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59067917 BTC (438,658.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,400,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.30 % (979,525.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,045.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00145125 BTC (3,484.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.35 CZK over 4750 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003444 BTC for 82.69 CZK @ 2,400,938 CZK\nFees are 0.29042194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.76 % (26.410312988165115475626248894 CZK)\nThe limits being 0.10 % (3.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59067917 BTC (438,658.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,400,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.30 % (979,525.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,045.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00145125 BTC (3,484.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.35 CZK over 4750 transactions" + } + ] + }, + { + "id": 6459, + "type": "message", + "date": "2025-01-05T21:00:04", + "date_unixtime": "1736107204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003445 BTC for 82.70 CZK @ 2,400,545 CZK\nFees are 0.29045872 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (26.405990248354272383378060678 CZK)\nThe limits being 0.10 % (3.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59071362 BTC (438,741.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,400,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.20 % (979,292.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,962.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00148570 BTC (3,566.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.35 CZK over 4751 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003445 BTC for 82.70 CZK @ 2,400,545 CZK\nFees are 0.29045872 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.74 % (26.405990248354272383378060678 CZK)\nThe limits being 0.10 % (3.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59071362 BTC (438,741.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,400,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.20 % (979,292.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,962.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00148570 BTC (3,566.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.35 CZK over 4751 transactions" + } + ] + }, + { + "id": 6460, + "type": "message", + "date": "2025-01-06T01:00:04", + "date_unixtime": "1736121604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003430 BTC for 82.71 CZK @ 2,411,324 CZK\nFees are 0.29049267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (26.524567922475417670805242875 CZK)\nThe limits being 0.10 % (3.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59074792 BTC (438,824.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,411,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.61 % (985,660.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,879.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00152000 BTC (3,665.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.35 CZK over 4752 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003430 BTC for 82.71 CZK @ 2,411,324 CZK\nFees are 0.29049267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (26.524567922475417670805242875 CZK)\nThe limits being 0.10 % (3.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59074792 BTC (438,824.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,411,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.61 % (985,660.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,879.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00152000 BTC (3,665.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.35 CZK over 4752 transactions" + } + ] + }, + { + "id": 6461, + "type": "message", + "date": "2025-01-06T05:00:03", + "date_unixtime": "1736136003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003412 BTC for 82.69 CZK @ 2,423,501 CZK\nFees are 0.29042739 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (26.658506772310979566826774520 CZK)\nThe limits being 0.10 % (3.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59078204 BTC (438,907.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 742,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,423,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.21 % (992,853.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,796.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00155412 BTC (3,766.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.34 CZK over 4753 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003412 BTC for 82.69 CZK @ 2,423,501 CZK\nFees are 0.29042739 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (26.658506772310979566826774520 CZK)\nThe limits being 0.10 % (3.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59078204 BTC (438,907.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 742,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,423,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.21 % (992,853.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,796.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00155412 BTC (3,766.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.34 CZK over 4753 transactions" + } + ] + }, + { + "id": 6462, + "type": "message", + "date": "2025-01-06T09:00:07", + "date_unixtime": "1736150407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003403 BTC for 82.70 CZK @ 2,430,164 CZK\nFees are 0.29045776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (26.731805928442341314655244991 CZK)\nThe limits being 0.10 % (3.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59081607 BTC (438,990.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,430,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.06 % (996,789.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,713.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00158815 BTC (3,859.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.34 CZK over 4754 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003403 BTC for 82.70 CZK @ 2,430,164 CZK\nFees are 0.29045776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (26.731805928442341314655244991 CZK)\nThe limits being 0.10 % (3.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59081607 BTC (438,990.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,430,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.06 % (996,789.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,713.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00158815 BTC (3,859.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.34 CZK over 4754 transactions" + } + ] + }, + { + "id": 6463, + "type": "message", + "date": "2025-01-06T13:00:04", + "date_unixtime": "1736164804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003439 BTC for 82.71 CZK @ 2,405,047 CZK\nFees are 0.29049664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (26.455514318669188227942532629 CZK)\nThe limits being 0.10 % (3.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59085046 BTC (439,073.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,121 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,405,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.64 % (981,949.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,630.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00162254 BTC (3,902.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.34 CZK over 4755 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003439 BTC for 82.71 CZK @ 2,405,047 CZK\nFees are 0.29049664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (26.455514318669188227942532629 CZK)\nThe limits being 0.10 % (3.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59085046 BTC (439,073.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,121 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,405,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.64 % (981,949.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,630.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00162254 BTC (3,902.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.34 CZK over 4755 transactions" + } + ] + }, + { + "id": 6464, + "type": "message", + "date": "2025-01-06T17:00:05", + "date_unixtime": "1736179205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003329 BTC for 82.70 CZK @ 2,484,180 CZK\nFees are 0.29045734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (27.325984513499836783334029304 CZK)\nThe limits being 0.10 % (4.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59088375 BTC (439,156.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,484,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.25 % (1,028,705.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,547.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00165583 BTC (4,113.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.34 CZK over 4756 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003329 BTC for 82.70 CZK @ 2,484,180 CZK\nFees are 0.29045734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.66 % (27.325984513499836783334029304 CZK)\nThe limits being 0.10 % (4.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59088375 BTC (439,156.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,484,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.25 % (1,028,705.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,547.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00165583 BTC (4,113.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.34 CZK over 4756 transactions" + } + ] + }, + { + "id": 6465, + "type": "message", + "date": "2025-01-06T21:00:04", + "date_unixtime": "1736193604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003345 BTC for 82.70 CZK @ 2,472,229 CZK\nFees are 0.29044920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.95 % (81.58354741454237522929835263 CZK)\nThe limits being 0.10 % (4.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59091720 BTC (439,239.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,472,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.59 % (1,021,642.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,464.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00168928 BTC (4,176.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.34 CZK over 4757 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003345 BTC for 82.70 CZK @ 2,472,229 CZK\nFees are 0.29044920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.95 % (81.58354741454237522929835263 CZK)\nThe limits being 0.10 % (4.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59091720 BTC (439,239.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,472,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.59 % (1,021,642.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,464.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00168928 BTC (4,176.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.34 CZK over 4757 transactions" + } + ] + }, + { + "id": 6466, + "type": "message", + "date": "2025-01-07T01:00:03", + "date_unixtime": "1736208003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003336 BTC for 82.69 CZK @ 2,478,663 CZK\nFees are 0.29042159 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (54.530579367895817874848103583 CZK)\nThe limits being 0.10 % (4.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59095056 BTC (439,322.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,478,663 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.42 % (1,025,444.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,381.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00172264 BTC (4,269.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.33 CZK over 4758 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003336 BTC for 82.69 CZK @ 2,478,663 CZK\nFees are 0.29042159 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.28 % (54.530579367895817874848103583 CZK)\nThe limits being 0.10 % (4.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59095056 BTC (439,322.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,478,663 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.42 % (1,025,444.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,381.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00172264 BTC (4,269.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.33 CZK over 4758 transactions" + } + ] + }, + { + "id": 6467, + "type": "message", + "date": "2025-01-07T05:00:04", + "date_unixtime": "1736222404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003343 BTC for 82.71 CZK @ 2,474,073 CZK\nFees are 0.29049212 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.25 % (54.429612452139915321799963964 CZK)\nThe limits being 0.10 % (4.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59098399 BTC (439,405.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,474,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.75 % (1,022,732.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,298.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00175607 BTC (4,344.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.33 CZK over 4759 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003343 BTC for 82.71 CZK @ 2,474,073 CZK\nFees are 0.29049212 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.25 % (54.429612452139915321799963964 CZK)\nThe limits being 0.10 % (4.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59098399 BTC (439,405.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,474,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.75 % (1,022,732.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,298.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00175607 BTC (4,344.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.33 CZK over 4759 transactions" + } + ] + }, + { + "id": 6468, + "type": "message", + "date": "2025-01-07T09:00:04", + "date_unixtime": "1736236804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003348 BTC for 82.69 CZK @ 2,469,789 CZK\nFees are 0.29042277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (27.167675102196077170762546141 CZK)\nThe limits being 0.10 % (4.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59101747 BTC (439,488.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,469,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.13 % (1,020,199.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,215.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00178955 BTC (4,419.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.33 CZK over 4760 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003348 BTC for 82.69 CZK @ 2,469,789 CZK\nFees are 0.29042277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (27.167675102196077170762546141 CZK)\nThe limits being 0.10 % (4.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59101747 BTC (439,488.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,469,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.13 % (1,020,199.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,215.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00178955 BTC (4,419.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.33 CZK over 4760 transactions" + } + ] + }, + { + "id": 6469, + "type": "message", + "date": "2025-01-07T13:00:05", + "date_unixtime": "1736251205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003384 BTC for 82.69 CZK @ 2,443,488 CZK\nFees are 0.29041968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (26.878371155447658961954671652 CZK)\nThe limits being 0.10 % (4.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59105131 BTC (439,571.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,443,488 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.55 % (1,004,655.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,132.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00182339 BTC (4,455.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.33 CZK over 4761 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003384 BTC for 82.69 CZK @ 2,443,488 CZK\nFees are 0.29041968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.60 % (26.878371155447658961954671652 CZK)\nThe limits being 0.10 % (4.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59105131 BTC (439,571.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,443,488 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.55 % (1,004,655.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,132.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00182339 BTC (4,455.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.33 CZK over 4761 transactions" + } + ] + }, + { + "id": 6470, + "type": "message", + "date": "2025-01-07T17:00:06", + "date_unixtime": "1736265606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003468 BTC for 82.69 CZK @ 2,384,306 CZK\nFees are 0.29042001 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (52.454736708142033448098897230 CZK)\nThe limits being 0.10 % (4.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59108599 BTC (439,654.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.55 % (969,675.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,049.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00185807 BTC (4,430.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.33 CZK over 4762 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003468 BTC for 82.69 CZK @ 2,384,306 CZK\nFees are 0.29042001 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.18 % (52.454736708142033448098897230 CZK)\nThe limits being 0.10 % (4.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59108599 BTC (439,654.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.55 % (969,675.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,049.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00185807 BTC (4,430.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.33 CZK over 4762 transactions" + } + ] + }, + { + "id": 6471, + "type": "message", + "date": "2025-01-07T21:00:04", + "date_unixtime": "1736280004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003521 BTC for 82.71 CZK @ 2,348,974 CZK\nFees are 0.29048903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (51.677437052678590001736325585 CZK)\nThe limits being 0.10 % (4.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59112120 BTC (439,737.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 743,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,348,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.76 % (948,791.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,966.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00189328 BTC (4,447.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.32 CZK over 4763 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003521 BTC for 82.71 CZK @ 2,348,974 CZK\nFees are 0.29048903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.16 % (51.677437052678590001736325585 CZK)\nThe limits being 0.10 % (4.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59112120 BTC (439,737.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 743,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,348,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.76 % (948,791.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,966.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00189328 BTC (4,447.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.32 CZK over 4763 transactions" + } + ] + }, + { + "id": 6472, + "type": "message", + "date": "2025-01-08T01:00:03", + "date_unixtime": "1736294403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003495 BTC for 82.69 CZK @ 2,365,877 CZK\nFees are 0.29041888 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (52.049303174511527251187367815 CZK)\nThe limits being 0.10 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59115615 BTC (439,820.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,365,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.99 % (958,782.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,883.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00192823 BTC (4,561.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.32 CZK over 4764 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003495 BTC for 82.69 CZK @ 2,365,877 CZK\nFees are 0.29041888 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.14 % (52.049303174511527251187367815 CZK)\nThe limits being 0.10 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59115615 BTC (439,820.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,365,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.99 % (958,782.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,883.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00192823 BTC (4,561.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.32 CZK over 4764 transactions" + } + ] + }, + { + "id": 6473, + "type": "message", + "date": "2025-01-08T05:00:04", + "date_unixtime": "1736308804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003511 BTC for 82.70 CZK @ 2,355,325 CZK\nFees are 0.29044716 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (51.817154263126621620681928260 CZK)\nThe limits being 0.10 % (4.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59119126 BTC (439,903.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,355,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.53 % (952,544.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,800.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00196334 BTC (4,624.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.32 CZK over 4765 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003511 BTC for 82.70 CZK @ 2,355,325 CZK\nFees are 0.29044716 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.12 % (51.817154263126621620681928260 CZK)\nThe limits being 0.10 % (4.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59119126 BTC (439,903.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,355,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.53 % (952,544.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,800.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00196334 BTC (4,624.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.32 CZK over 4765 transactions" + } + ] + }, + { + "id": 6474, + "type": "message", + "date": "2025-01-08T09:00:04", + "date_unixtime": "1736323204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003535 BTC for 82.69 CZK @ 2,339,261 CZK\nFees are 0.29043809 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (51.463748017441077868196813276 CZK)\nThe limits being 0.10 % (4.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59122661 BTC (439,986.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,339,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.34 % (943,047.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,717.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00199869 BTC (4,675.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.32 CZK over 4766 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003535 BTC for 82.69 CZK @ 2,339,261 CZK\nFees are 0.29043809 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.10 % (51.463748017441077868196813276 CZK)\nThe limits being 0.10 % (4.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59122661 BTC (439,986.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,339,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.34 % (943,047.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,717.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00199869 BTC (4,675.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.32 CZK over 4766 transactions" + } + ] + }, + { + "id": 6475, + "type": "message", + "date": "2025-01-08T13:00:04", + "date_unixtime": "1736337604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003544 BTC for 82.70 CZK @ 2,333,604 CZK\nFees are 0.29047338 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (51.339292732209276561380540568 CZK)\nThe limits being 0.10 % (4.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59126205 BTC (440,069.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,604 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.54 % (939,702.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,634.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00203413 BTC (4,746.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.32 CZK over 4767 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003544 BTC for 82.70 CZK @ 2,333,604 CZK\nFees are 0.29047338 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.08 % (51.339292732209276561380540568 CZK)\nThe limits being 0.10 % (4.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59126205 BTC (440,069.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,604 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.54 % (939,702.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,634.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00203413 BTC (4,746.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.32 CZK over 4767 transactions" + } + ] + }, + { + "id": 6476, + "type": "message", + "date": "2025-01-08T17:00:04", + "date_unixtime": "1736352004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003536 BTC for 82.69 CZK @ 2,338,504 CZK\nFees are 0.29042625 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (51.447096633502199315968769938 CZK)\nThe limits being 0.10 % (4.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59129741 BTC (440,152.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,338,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.15 % (942,599.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,551.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00206949 BTC (4,839.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.31 CZK over 4768 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003536 BTC for 82.69 CZK @ 2,338,504 CZK\nFees are 0.29042625 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.06 % (51.447096633502199315968769938 CZK)\nThe limits being 0.10 % (4.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59129741 BTC (440,152.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,338,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.15 % (942,599.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,551.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00206949 BTC (4,839.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.31 CZK over 4768 transactions" + } + ] + }, + { + "id": 6477, + "type": "message", + "date": "2025-01-08T21:00:04", + "date_unixtime": "1736366404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003578 BTC for 82.70 CZK @ 2,311,455 CZK\nFees are 0.29047665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (50.852013799103918844134963071 CZK)\nThe limits being 0.10 % (4.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59133319 BTC (440,235.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.48 % (926,604.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,468.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00210527 BTC (4,866.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.31 CZK over 4769 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003578 BTC for 82.70 CZK @ 2,311,455 CZK\nFees are 0.29047665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.04 % (50.852013799103918844134963071 CZK)\nThe limits being 0.10 % (4.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59133319 BTC (440,235.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.48 % (926,604.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,468.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00210527 BTC (4,866.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.31 CZK over 4769 transactions" + } + ] + }, + { + "id": 6478, + "type": "message", + "date": "2025-01-09T01:00:06", + "date_unixtime": "1736380806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003554 BTC for 82.70 CZK @ 2,326,833 CZK\nFees are 0.29044783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (51.190334557804016835841016768 CZK)\nThe limits being 0.10 % (4.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59136873 BTC (440,318.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.50 % (935,698.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,385.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00214081 BTC (4,981.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.31 CZK over 4770 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003554 BTC for 82.70 CZK @ 2,326,833 CZK\nFees are 0.29044783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.03 % (51.190334557804016835841016768 CZK)\nThe limits being 0.10 % (4.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59136873 BTC (440,318.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.50 % (935,698.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,385.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00214081 BTC (4,981.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.31 CZK over 4770 transactions" + } + ] + }, + { + "id": 6479, + "type": "message", + "date": "2025-01-09T05:00:05", + "date_unixtime": "1736395205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.69 CZK @ 2,301,382 CZK\nFees are 0.29042325 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (50.630407091461543379136007551 CZK)\nThe limits being 0.10 % (5.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59140466 BTC (440,401.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.05 % (920,646.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,302.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00217674 BTC (5,009.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.31 CZK over 4771 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.69 CZK @ 2,301,382 CZK\nFees are 0.29042325 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 1.01 % (50.630407091461543379136007551 CZK)\nThe limits being 0.10 % (5.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59140466 BTC (440,401.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.05 % (920,646.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,302.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00217674 BTC (5,009.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.31 CZK over 4771 transactions" + } + ] + }, + { + "id": 6480, + "type": "message", + "date": "2025-01-09T09:00:03", + "date_unixtime": "1736409603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,104 CZK\nFees are 0.29043527 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (25.169145578742249387795730989 CZK)\nThe limits being 0.10 % (5.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59144080 BTC (440,484.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.23 % (912,793.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,219.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00221288 BTC (5,063.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.31 CZK over 4772 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,104 CZK\nFees are 0.29043527 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.50 % (25.169145578742249387795730989 CZK)\nThe limits being 0.10 % (5.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59144080 BTC (440,484.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.23 % (912,793.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,219.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00221288 BTC (5,063.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.31 CZK over 4772 transactions" + } + ] + }, + { + "id": 6481, + "type": "message", + "date": "2025-01-09T13:00:04", + "date_unixtime": "1736424004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003613 BTC for 82.70 CZK @ 2,289,067 CZK\nFees are 0.29047703 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (25.179731885535968698539335960 CZK)\nThe limits being 0.10 % (5.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59147693 BTC (440,567.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,067 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.32 % (913,362.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,136.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00224901 BTC (5,148.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.30 CZK over 4773 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003613 BTC for 82.70 CZK @ 2,289,067 CZK\nFees are 0.29047703 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (25.179731885535968698539335960 CZK)\nThe limits being 0.10 % (5.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59147693 BTC (440,567.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,067 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.32 % (913,362.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,136.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00224901 BTC (5,148.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.30 CZK over 4773 transactions" + } + ] + }, + { + "id": 6482, + "type": "message", + "date": "2025-01-09T17:00:03", + "date_unixtime": "1736438403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,783 CZK\nFees are 0.29049271 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (25.363613847491404839126619696 CZK)\nThe limits being 0.10 % (5.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59151280 BTC (440,650.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 744,955 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.52 % (923,249.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,053.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00228488 BTC (5,268.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.30 CZK over 4774 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,783 CZK\nFees are 0.29049271 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (25.363613847491404839126619696 CZK)\nThe limits being 0.10 % (5.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59151280 BTC (440,650.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 744,955 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.52 % (923,249.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,053.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00228488 BTC (5,268.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.30 CZK over 4774 transactions" + } + ] + }, + { + "id": 6483, + "type": "message", + "date": "2025-01-09T21:00:04", + "date_unixtime": "1736452804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003673 BTC for 82.70 CZK @ 2,251,561 CZK\nFees are 0.29046254 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (24.767174642630455805985883059 CZK)\nThe limits being 0.10 % (5.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59154953 BTC (440,733.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,251,561 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.20 % (891,176.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,970.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00232161 BTC (5,227.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.30 CZK over 4775 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003673 BTC for 82.70 CZK @ 2,251,561 CZK\nFees are 0.29046254 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (24.767174642630455805985883059 CZK)\nThe limits being 0.10 % (5.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59154953 BTC (440,733.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,251,561 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.20 % (891,176.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,970.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00232161 BTC (5,227.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.30 CZK over 4775 transactions" + } + ] + }, + { + "id": 6484, + "type": "message", + "date": "2025-01-10T01:00:04", + "date_unixtime": "1736467204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003652 BTC for 82.69 CZK @ 2,264,207 CZK\nFees are 0.29042385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (24.906274320000480246846879296 CZK)\nThe limits being 0.10 % (5.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59158605 BTC (440,816.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,264,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.86 % (898,656.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,887.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00235813 BTC (5,339.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.30 CZK over 4776 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003652 BTC for 82.69 CZK @ 2,264,207 CZK\nFees are 0.29042385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.47 % (24.906274320000480246846879296 CZK)\nThe limits being 0.10 % (5.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59158605 BTC (440,816.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,264,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.86 % (898,656.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,887.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00235813 BTC (5,339.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.30 CZK over 4776 transactions" + } + ] + }, + { + "id": 6485, + "type": "message", + "date": "2025-01-10T05:00:03", + "date_unixtime": "1736481603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003614 BTC for 82.70 CZK @ 2,288,390 CZK\nFees are 0.29047154 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (25.172288386055557072107060815 CZK)\nThe limits being 0.10 % (5.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59162219 BTC (440,899.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.07 % (912,963.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,804.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00239427 BTC (5,479.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.30 CZK over 4777 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003614 BTC for 82.70 CZK @ 2,288,390 CZK\nFees are 0.29047154 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (25.172288386055557072107060815 CZK)\nThe limits being 0.10 % (5.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59162219 BTC (440,899.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.07 % (912,963.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,804.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00239427 BTC (5,479.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.30 CZK over 4777 transactions" + } + ] + }, + { + "id": 6486, + "type": "message", + "date": "2025-01-10T09:00:05", + "date_unixtime": "1736496005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003572 BTC for 82.70 CZK @ 2,315,181 CZK\nFees are 0.29045704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (25.466995760080479798867457739 CZK)\nThe limits being 0.10 % (5.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59165791 BTC (440,982.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,181 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.62 % (928,813.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,721.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00242999 BTC (5,625.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.29 CZK over 4778 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003572 BTC for 82.70 CZK @ 2,315,181 CZK\nFees are 0.29045704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (25.466995760080479798867457739 CZK)\nThe limits being 0.10 % (5.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59165791 BTC (440,982.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,181 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.62 % (928,813.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,721.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00242999 BTC (5,625.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.29 CZK over 4778 transactions" + } + ] + }, + { + "id": 6487, + "type": "message", + "date": "2025-01-10T13:00:04", + "date_unixtime": "1736510404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003557 BTC for 82.70 CZK @ 2,324,985 CZK\nFees are 0.29046205 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (25.574832744937279544086560127 CZK)\nThe limits being 0.10 % (5.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59169348 BTC (441,065.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.90 % (934,613.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,638.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00246556 BTC (5,732.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.29 CZK over 4779 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003557 BTC for 82.70 CZK @ 2,324,985 CZK\nFees are 0.29046205 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (25.574832744937279544086560127 CZK)\nThe limits being 0.10 % (5.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59169348 BTC (441,065.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.90 % (934,613.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,638.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00246556 BTC (5,732.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.29 CZK over 4779 transactions" + } + ] + }, + { + "id": 6488, + "type": "message", + "date": "2025-01-10T17:00:04", + "date_unixtime": "1736524804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,988 CZK\nFees are 0.29045435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (25.310869774930758483316184118 CZK)\nThe limits being 0.10 % (5.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59172942 BTC (441,148.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.64 % (920,414.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,555.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00250150 BTC (5,755.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.29 CZK over 4780 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,988 CZK\nFees are 0.29045435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (25.310869774930758483316184118 CZK)\nThe limits being 0.10 % (5.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59172942 BTC (441,148.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.64 % (920,414.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,555.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00250150 BTC (5,755.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.29 CZK over 4780 transactions" + } + ] + }, + { + "id": 6489, + "type": "message", + "date": "2025-01-10T21:00:03", + "date_unixtime": "1736539203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003541 BTC for 82.71 CZK @ 2,335,644 CZK\nFees are 0.29048121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (25.692087133046199358444258988 CZK)\nThe limits being 0.10 % (5.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59176483 BTC (441,231.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,335,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.25 % (940,920.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,472.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00253691 BTC (5,925.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.29 CZK over 4781 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003541 BTC for 82.71 CZK @ 2,335,644 CZK\nFees are 0.29048121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (25.692087133046199358444258988 CZK)\nThe limits being 0.10 % (5.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59176483 BTC (441,231.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,335,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.25 % (940,920.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,472.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00253691 BTC (5,925.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.29 CZK over 4781 transactions" + } + ] + }, + { + "id": 6490, + "type": "message", + "date": "2025-01-11T01:00:06", + "date_unixtime": "1736553606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003550 BTC for 82.70 CZK @ 2,329,713 CZK\nFees are 0.29047992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (25.626837982273311017074043664 CZK)\nThe limits being 0.10 % (5.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59180033 BTC (441,314.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.41 % (937,410.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,389.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00257241 BTC (5,992.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.29 CZK over 4782 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003550 BTC for 82.70 CZK @ 2,329,713 CZK\nFees are 0.29047992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.43 % (25.626837982273311017074043664 CZK)\nThe limits being 0.10 % (5.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59180033 BTC (441,314.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.41 % (937,410.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,389.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00257241 BTC (5,992.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.29 CZK over 4782 transactions" + } + ] + }, + { + "id": 6491, + "type": "message", + "date": "2025-01-11T05:00:04", + "date_unixtime": "1736568004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003571 BTC for 82.71 CZK @ 2,316,119 CZK\nFees are 0.29049328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (25.477306383691802856900874940 CZK)\nThe limits being 0.10 % (6.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59183604 BTC (441,397.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,316,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.55 % (929,365.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,306.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00260812 BTC (6,040.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.28 CZK over 4783 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003571 BTC for 82.71 CZK @ 2,316,119 CZK\nFees are 0.29049328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (25.477306383691802856900874940 CZK)\nThe limits being 0.10 % (6.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59183604 BTC (441,397.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,316,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.55 % (929,365.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,306.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00260812 BTC (6,040.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.28 CZK over 4783 transactions" + } + ] + }, + { + "id": 6492, + "type": "message", + "date": "2025-01-11T09:00:05", + "date_unixtime": "1736582405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003570 BTC for 82.71 CZK @ 2,316,681 CZK\nFees are 0.29048245 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (25.483492759096663079780990623 CZK)\nThe limits being 0.10 % (6.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59187174 BTC (441,480.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 745,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,316,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.59 % (929,697.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,223.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00264382 BTC (6,124.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.28 CZK over 4784 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003570 BTC for 82.71 CZK @ 2,316,681 CZK\nFees are 0.29048245 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (25.483492759096663079780990623 CZK)\nThe limits being 0.10 % (6.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59187174 BTC (441,480.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 745,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,316,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.59 % (929,697.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,223.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00264382 BTC (6,124.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.28 CZK over 4784 transactions" + } + ] + }, + { + "id": 6493, + "type": "message", + "date": "2025-01-11T13:00:04", + "date_unixtime": "1736596804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,434 CZK\nFees are 0.29043649 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (25.579773024167943132668954496 CZK)\nThe limits being 0.10 % (6.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59190730 BTC (441,563.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.72 % (934,878.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,140.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00267938 BTC (6,230.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.28 CZK over 4785 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,434 CZK\nFees are 0.29043649 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (25.579773024167943132668954496 CZK)\nThe limits being 0.10 % (6.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59190730 BTC (441,563.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.72 % (934,878.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,140.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00267938 BTC (6,230.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.28 CZK over 4785 transactions" + } + ] + }, + { + "id": 6494, + "type": "message", + "date": "2025-01-11T17:00:04", + "date_unixtime": "1736611204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.71 CZK @ 2,320,607 CZK\nFees are 0.29048566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (25.526676072019536560310518123 CZK)\nThe limits being 0.10 % (6.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59194294 BTC (441,646.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,607 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.03 % (932,020.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,057.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00271502 BTC (6,300.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.28 CZK over 4786 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.71 CZK @ 2,320,607 CZK\nFees are 0.29048566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (25.526676072019536560310518123 CZK)\nThe limits being 0.10 % (6.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59194294 BTC (441,646.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,607 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.03 % (932,020.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,057.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00271502 BTC (6,300.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.28 CZK over 4786 transactions" + } + ] + }, + { + "id": 6495, + "type": "message", + "date": "2025-01-11T21:00:03", + "date_unixtime": "1736625603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,484 CZK\nFees are 0.29045079 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (25.459320687696616279071388958 CZK)\nThe limits being 0.10 % (6.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59197867 BTC (441,729.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,191 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.17 % (928,395.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,974.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00275075 BTC (6,366.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.28 CZK over 4787 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,484 CZK\nFees are 0.29045079 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (25.459320687696616279071388958 CZK)\nThe limits being 0.10 % (6.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59197867 BTC (441,729.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,191 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.17 % (928,395.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,974.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00275075 BTC (6,366.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.28 CZK over 4787 transactions" + } + ] + }, + { + "id": 6496, + "type": "message", + "date": "2025-01-12T01:00:03", + "date_unixtime": "1736640003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003558 BTC for 82.69 CZK @ 2,324,156 CZK\nFees are 0.29044011 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (25.565713083465879539655052174 CZK)\nThe limits being 0.10 % (6.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59201425 BTC (441,812.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.43 % (934,121.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,891.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00278633 BTC (6,475.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.27 CZK over 4788 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003558 BTC for 82.69 CZK @ 2,324,156 CZK\nFees are 0.29044011 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (25.565713083465879539655052174 CZK)\nThe limits being 0.10 % (6.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59201425 BTC (441,812.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.43 % (934,121.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,891.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00278633 BTC (6,475.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.27 CZK over 4788 transactions" + } + ] + }, + { + "id": 6497, + "type": "message", + "date": "2025-01-12T05:00:04", + "date_unixtime": "1736654404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003558 BTC for 82.70 CZK @ 2,324,287 CZK\nFees are 0.29045652 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (25.567157671589571407325625066 CZK)\nThe limits being 0.10 % (6.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59204983 BTC (441,895.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.41 % (934,198.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,808.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00282191 BTC (6,558.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.27 CZK over 4789 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003558 BTC for 82.70 CZK @ 2,324,287 CZK\nFees are 0.29045652 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.39 % (25.567157671589571407325625066 CZK)\nThe limits being 0.10 % (6.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59204983 BTC (441,895.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.41 % (934,198.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,808.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00282191 BTC (6,558.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.27 CZK over 4789 transactions" + } + ] + }, + { + "id": 6498, + "type": "message", + "date": "2025-01-12T09:00:04", + "date_unixtime": "1736668804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003569 BTC for 82.70 CZK @ 2,317,312 CZK\nFees are 0.29048013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.490428996690345349137363581 CZK)\nThe limits being 0.10 % (6.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59208552 BTC (441,978.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.43 % (930,068.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,725.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00285760 BTC (6,621.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.27 CZK over 4790 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003569 BTC for 82.70 CZK @ 2,317,312 CZK\nFees are 0.29048013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.490428996690345349137363581 CZK)\nThe limits being 0.10 % (6.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59208552 BTC (441,978.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.43 % (930,068.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,725.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00285760 BTC (6,621.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.27 CZK over 4790 transactions" + } + ] + }, + { + "id": 6499, + "type": "message", + "date": "2025-01-12T13:00:03", + "date_unixtime": "1736683203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003575 BTC for 82.70 CZK @ 2,313,241 CZK\nFees are 0.29045729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.445646707293702809397876662 CZK)\nThe limits being 0.10 % (6.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59212127 BTC (442,061.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.85 % (927,657.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,642.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00289335 BTC (6,693.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.27 CZK over 4791 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003575 BTC for 82.70 CZK @ 2,313,241 CZK\nFees are 0.29045729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.445646707293702809397876662 CZK)\nThe limits being 0.10 % (6.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59212127 BTC (442,061.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.85 % (927,657.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,642.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00289335 BTC (6,693.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.27 CZK over 4791 transactions" + } + ] + }, + { + "id": 6500, + "type": "message", + "date": "2025-01-12T17:00:04", + "date_unixtime": "1736697604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003547 BTC for 82.69 CZK @ 2,331,326 CZK\nFees are 0.29043539 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.644581078152038769297590937 CZK)\nThe limits being 0.10 % (6.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59215674 BTC (442,144.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,326 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.23 % (938,366.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,559.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00292882 BTC (6,828.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.27 CZK over 4792 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003547 BTC for 82.69 CZK @ 2,331,326 CZK\nFees are 0.29043539 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (25.644581078152038769297590937 CZK)\nThe limits being 0.10 % (6.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59215674 BTC (442,144.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,326 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.23 % (938,366.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,559.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00292882 BTC (6,828.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.27 CZK over 4792 transactions" + } + ] + }, + { + "id": 6501, + "type": "message", + "date": "2025-01-12T21:00:06", + "date_unixtime": "1736712006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.70 CZK @ 2,325,687 CZK\nFees are 0.29046804 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (25.582551927926049602544076608 CZK)\nThe limits being 0.10 % (6.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59219230 BTC (442,227.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,763 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.44 % (935,026.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,476.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00296438 BTC (6,894.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.27 CZK over 4793 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.70 CZK @ 2,325,687 CZK\nFees are 0.29046804 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (25.582551927926049602544076608 CZK)\nThe limits being 0.10 % (6.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59219230 BTC (442,227.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,763 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.44 % (935,026.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,476.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00296438 BTC (6,894.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.27 CZK over 4793 transactions" + } + ] + }, + { + "id": 6502, + "type": "message", + "date": "2025-01-13T01:00:03", + "date_unixtime": "1736726403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003568 BTC for 82.70 CZK @ 2,317,701 CZK\nFees are 0.29044748 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (25.494707629518657791898757935 CZK)\nThe limits being 0.10 % (6.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59222798 BTC (442,310.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.33 % (930,297.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,393.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00300006 BTC (6,953.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.26 CZK over 4794 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003568 BTC for 82.70 CZK @ 2,317,701 CZK\nFees are 0.29044748 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.37 % (25.494707629518657791898757935 CZK)\nThe limits being 0.10 % (6.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59222798 BTC (442,310.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.33 % (930,297.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,393.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00300006 BTC (6,953.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.26 CZK over 4794 transactions" + } + ] + }, + { + "id": 6503, + "type": "message", + "date": "2025-01-13T05:00:04", + "date_unixtime": "1736740804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003568 BTC for 82.70 CZK @ 2,317,801 CZK\nFees are 0.29046005 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (25.495810367469462263244563310 CZK)\nThe limits being 0.10 % (7.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59226366 BTC (442,393.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 746,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.30 % (930,356.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,310.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00303574 BTC (7,036.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.26 CZK over 4795 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003568 BTC for 82.70 CZK @ 2,317,801 CZK\nFees are 0.29046005 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (25.495810367469462263244563310 CZK)\nThe limits being 0.10 % (7.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59226366 BTC (442,393.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 746,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.30 % (930,356.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,310.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00303574 BTC (7,036.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.26 CZK over 4795 transactions" + } + ] + }, + { + "id": 6504, + "type": "message", + "date": "2025-01-13T09:00:04", + "date_unixtime": "1736755204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,558 CZK\nFees are 0.29042832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (25.372138032089916811383310436 CZK)\nThe limits being 0.10 % (7.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59229951 BTC (442,476.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.76 % (923,697.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,227.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00307159 BTC (7,084.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.26 CZK over 4796 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,558 CZK\nFees are 0.29042832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (25.372138032089916811383310436 CZK)\nThe limits being 0.10 % (7.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59229951 BTC (442,476.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.76 % (923,697.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,227.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00307159 BTC (7,084.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.26 CZK over 4796 transactions" + } + ] + }, + { + "id": 6505, + "type": "message", + "date": "2025-01-13T13:00:04", + "date_unixtime": "1736769604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003669 BTC for 82.70 CZK @ 2,254,076 CZK\nFees are 0.29047022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (24.794831372290197717636677190 CZK)\nThe limits being 0.10 % (7.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59233620 BTC (442,558.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,142 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,254,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.69 % (892,611.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,144.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00310828 BTC (7,006.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.26 CZK over 4797 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003669 BTC for 82.70 CZK @ 2,254,076 CZK\nFees are 0.29047022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.35 % (24.794831372290197717636677190 CZK)\nThe limits being 0.10 % (7.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59233620 BTC (442,558.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,142 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,254,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.69 % (892,611.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,144.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00310828 BTC (7,006.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.26 CZK over 4797 transactions" + } + ] + }, + { + "id": 6506, + "type": "message", + "date": "2025-01-13T17:00:04", + "date_unixtime": "1736784004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003610 BTC for 82.69 CZK @ 2,290,720 CZK\nFees are 0.29044544 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (25.197916073245027445492024452 CZK)\nThe limits being 0.10 % (7.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59237230 BTC (442,641.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,290,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.56 % (914,316.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,061.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00314438 BTC (7,202.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.26 CZK over 4798 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003610 BTC for 82.69 CZK @ 2,290,720 CZK\nFees are 0.29044544 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.35 % (25.197916073245027445492024452 CZK)\nThe limits being 0.10 % (7.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59237230 BTC (442,641.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,290,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.56 % (914,316.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,061.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00314438 BTC (7,202.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.26 CZK over 4798 transactions" + } + ] + }, + { + "id": 6507, + "type": "message", + "date": "2025-01-13T21:00:04", + "date_unixtime": "1736798404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003611 BTC for 82.70 CZK @ 2,290,216 CZK\nFees are 0.29046207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (50.384760633821502889981989100 CZK)\nThe limits being 0.10 % (7.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59240841 BTC (442,724.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,290,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.45 % (914,018.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,978.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00318049 BTC (7,284.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.25 CZK over 4799 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003611 BTC for 82.70 CZK @ 2,290,216 CZK\nFees are 0.29046207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.69 % (50.384760633821502889981989100 CZK)\nThe limits being 0.10 % (7.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59240841 BTC (442,724.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,290,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.45 % (914,018.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,978.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00318049 BTC (7,284.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.25 CZK over 4799 transactions" + } + ] + }, + { + "id": 6508, + "type": "message", + "date": "2025-01-14T01:00:06", + "date_unixtime": "1736812806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003552 BTC for 82.69 CZK @ 2,328,110 CZK\nFees are 0.29044359 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (51.218410331295420981519636227 CZK)\nThe limits being 0.10 % (7.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59244393 BTC (442,807.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,110 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.48 % (936,466.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,895.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00321601 BTC (7,487.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.25 CZK over 4800 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003552 BTC for 82.69 CZK @ 2,328,110 CZK\nFees are 0.29044359 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.68 % (51.218410331295420981519636227 CZK)\nThe limits being 0.10 % (7.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59244393 BTC (442,807.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,110 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.48 % (936,466.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,895.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00321601 BTC (7,487.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.25 CZK over 4800 transactions" + } + ] + }, + { + "id": 6509, + "type": "message", + "date": "2025-01-14T05:00:03", + "date_unixtime": "1736827203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003527 BTC for 82.70 CZK @ 2,344,654 CZK\nFees are 0.29044880 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (25.791190415626396356726506845 CZK)\nThe limits being 0.10 % (7.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59247920 BTC (442,890.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,344,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.66 % (946,267.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,812.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00325128 BTC (7,623.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.25 CZK over 4801 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003527 BTC for 82.70 CZK @ 2,344,654 CZK\nFees are 0.29044880 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.34 % (25.791190415626396356726506845 CZK)\nThe limits being 0.10 % (7.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59247920 BTC (442,890.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,344,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.66 % (946,267.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,812.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00325128 BTC (7,623.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.25 CZK over 4801 transactions" + } + ] + }, + { + "id": 6510, + "type": "message", + "date": "2025-01-14T09:00:04", + "date_unixtime": "1736841604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003527 BTC for 82.70 CZK @ 2,344,643 CZK\nFees are 0.29044743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (25.791069113503927068981276052 CZK)\nThe limits being 0.10 % (7.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59251447 BTC (442,973.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,344,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.62 % (946,260.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,729.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00328655 BTC (7,705.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.25 CZK over 4802 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003527 BTC for 82.70 CZK @ 2,344,643 CZK\nFees are 0.29044743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (25.791069113503927068981276052 CZK)\nThe limits being 0.10 % (7.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59251447 BTC (442,973.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,344,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.62 % (946,260.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,729.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00328655 BTC (7,705.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.25 CZK over 4802 transactions" + } + ] + }, + { + "id": 6511, + "type": "message", + "date": "2025-01-14T13:00:04", + "date_unixtime": "1736856004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,199 CZK\nFees are 0.29047476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (26.270187765575323215410803740 CZK)\nThe limits being 0.10 % (7.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59254910 BTC (443,056.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.40 % (972,068.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,646.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00332118 BTC (7,931.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.25 CZK over 4803 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,199 CZK\nFees are 0.29047476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (26.270187765575323215410803740 CZK)\nThe limits being 0.10 % (7.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59254910 BTC (443,056.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.40 % (972,068.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,646.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00332118 BTC (7,931.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.25 CZK over 4803 transactions" + } + ] + }, + { + "id": 6512, + "type": "message", + "date": "2025-01-14T17:00:04", + "date_unixtime": "1736870404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003477 BTC for 82.70 CZK @ 2,378,552 CZK\nFees are 0.29047098 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (26.164071055590735847026061646 CZK)\nThe limits being 0.10 % (7.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59258387 BTC (443,139.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.07 % (966,351.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,563.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00335595 BTC (7,982.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.24 CZK over 4804 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003477 BTC for 82.70 CZK @ 2,378,552 CZK\nFees are 0.29047098 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.33 % (26.164071055590735847026061646 CZK)\nThe limits being 0.10 % (7.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59258387 BTC (443,139.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.07 % (966,351.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,563.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00335595 BTC (7,982.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.24 CZK over 4804 transactions" + } + ] + }, + { + "id": 6513, + "type": "message", + "date": "2025-01-14T21:00:03", + "date_unixtime": "1736884803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003480 BTC for 82.71 CZK @ 2,376,627 CZK\nFees are 0.29048634 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (26.142898439942958266756009139 CZK)\nThe limits being 0.10 % (8.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59261867 BTC (443,222.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 747,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,376,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.77 % (965,210.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,480.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00339075 BTC (8,058.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.24 CZK over 4805 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003480 BTC for 82.71 CZK @ 2,376,627 CZK\nFees are 0.29048634 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (26.142898439942958266756009139 CZK)\nThe limits being 0.10 % (8.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59261867 BTC (443,222.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 747,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,376,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.77 % (965,210.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,480.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00339075 BTC (8,058.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.24 CZK over 4805 transactions" + } + ] + }, + { + "id": 6514, + "type": "message", + "date": "2025-01-15T01:00:03", + "date_unixtime": "1736899203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003483 BTC for 82.70 CZK @ 2,374,352 CZK\nFees are 0.29045850 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (26.117877258764579498599575618 CZK)\nThe limits being 0.10 % (8.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59265350 BTC (443,305.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,374,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.43 % (963,862.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,397.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00342558 BTC (8,133.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.24 CZK over 4806 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003483 BTC for 82.70 CZK @ 2,374,352 CZK\nFees are 0.29045850 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (26.117877258764579498599575618 CZK)\nThe limits being 0.10 % (8.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59265350 BTC (443,305.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,374,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.43 % (963,862.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,397.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00342558 BTC (8,133.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.24 CZK over 4806 transactions" + } + ] + }, + { + "id": 6515, + "type": "message", + "date": "2025-01-15T05:00:04", + "date_unixtime": "1736913604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003455 BTC for 82.70 CZK @ 2,393,649 CZK\nFees are 0.29046514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (26.330143760514033011810328108 CZK)\nThe limits being 0.10 % (8.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59268805 BTC (443,388.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,098 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,393,649 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.96 % (975,298.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,314.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00346013 BTC (8,282.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.24 CZK over 4807 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003455 BTC for 82.70 CZK @ 2,393,649 CZK\nFees are 0.29046514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.32 % (26.330143760514033011810328108 CZK)\nThe limits being 0.10 % (8.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59268805 BTC (443,388.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,098 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,393,649 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.96 % (975,298.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,314.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00346013 BTC (8,282.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.24 CZK over 4807 transactions" + } + ] + }, + { + "id": 6516, + "type": "message", + "date": "2025-01-15T09:00:04", + "date_unixtime": "1736928004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003457 BTC for 82.69 CZK @ 2,391,943 CZK\nFees are 0.29042611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (26.311375120258153448755217312 CZK)\nThe limits being 0.10 % (8.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59272262 BTC (443,471.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,391,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.70 % (974,286.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,231.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00349470 BTC (8,359.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.24 CZK over 4808 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003457 BTC for 82.69 CZK @ 2,391,943 CZK\nFees are 0.29042611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (26.311375120258153448755217312 CZK)\nThe limits being 0.10 % (8.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59272262 BTC (443,471.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,391,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.70 % (974,286.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,231.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00349470 BTC (8,359.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.24 CZK over 4808 transactions" + } + ] + }, + { + "id": 6517, + "type": "message", + "date": "2025-01-15T13:00:04", + "date_unixtime": "1736942404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003479 BTC for 82.70 CZK @ 2,377,012 CZK\nFees are 0.29044991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (26.147132962197700402715245134 CZK)\nThe limits being 0.10 % (8.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59275741 BTC (443,554.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.66 % (965,436.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,148.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00352949 BTC (8,389.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.23 CZK over 4809 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003479 BTC for 82.70 CZK @ 2,377,012 CZK\nFees are 0.29044991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (26.147132962197700402715245134 CZK)\nThe limits being 0.10 % (8.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59275741 BTC (443,554.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.66 % (965,436.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,148.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00352949 BTC (8,389.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.23 CZK over 4809 transactions" + } + ] + }, + { + "id": 6518, + "type": "message", + "date": "2025-01-15T17:00:03", + "date_unixtime": "1736956803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003405 BTC for 82.71 CZK @ 2,428,993 CZK\nFees are 0.29048844 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (26.718925919633704940198292759 CZK)\nThe limits being 0.10 % (8.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59279146 BTC (443,637.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,428,993 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.56 % (996,248.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,065.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00356354 BTC (8,655.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.23 CZK over 4810 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003405 BTC for 82.71 CZK @ 2,428,993 CZK\nFees are 0.29048844 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.31 % (26.718925919633704940198292759 CZK)\nThe limits being 0.10 % (8.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59279146 BTC (443,637.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,428,993 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.56 % (996,248.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,065.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00356354 BTC (8,655.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.23 CZK over 4810 transactions" + } + ] + }, + { + "id": 6519, + "type": "message", + "date": "2025-01-15T21:00:03", + "date_unixtime": "1736971203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003377 BTC for 82.69 CZK @ 2,448,577 CZK\nFees are 0.29042248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (53.868692520802598072868737921 CZK)\nThe limits being 0.10 % (8.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59282523 BTC (443,720.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,448,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.14 % (1,007,857.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,982.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00359731 BTC (8,808.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.23 CZK over 4811 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003377 BTC for 82.69 CZK @ 2,448,577 CZK\nFees are 0.29042248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (53.868692520802598072868737921 CZK)\nThe limits being 0.10 % (8.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59282523 BTC (443,720.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,448,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.14 % (1,007,857.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,982.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00359731 BTC (8,808.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.23 CZK over 4811 transactions" + } + ] + }, + { + "id": 6520, + "type": "message", + "date": "2025-01-16T01:00:04", + "date_unixtime": "1736985604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003359 BTC for 82.71 CZK @ 2,462,218 CZK\nFees are 0.29048379 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (54.168792293362039055624457000 CZK)\nThe limits being 0.10 % (8.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59285882 BTC (443,803.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,583 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,462,218 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.92 % (1,015,943.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,899.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00363090 BTC (8,940.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.23 CZK over 4812 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003359 BTC for 82.71 CZK @ 2,462,218 CZK\nFees are 0.29048379 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.61 % (54.168792293362039055624457000 CZK)\nThe limits being 0.10 % (8.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59285882 BTC (443,803.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,583 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,462,218 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.92 % (1,015,943.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,899.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00363090 BTC (8,940.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.23 CZK over 4812 transactions" + } + ] + }, + { + "id": 6521, + "type": "message", + "date": "2025-01-16T05:00:08", + "date_unixtime": "1737000008", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003386 BTC for 82.69 CZK @ 2,442,240 CZK\nFees are 0.29044289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (26.864642038747431832649518768 CZK)\nThe limits being 0.10 % (8.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59289268 BTC (443,886.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,680 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,442,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.21 % (1,004,099.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,816.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00366476 BTC (8,950.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.23 CZK over 4813 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003386 BTC for 82.69 CZK @ 2,442,240 CZK\nFees are 0.29044289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (26.864642038747431832649518768 CZK)\nThe limits being 0.10 % (8.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59289268 BTC (443,886.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,680 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,442,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.21 % (1,004,099.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,816.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00366476 BTC (8,950.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.23 CZK over 4813 transactions" + } + ] + }, + { + "id": 6522, + "type": "message", + "date": "2025-01-16T09:00:04", + "date_unixtime": "1737014404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003373 BTC for 82.71 CZK @ 2,452,002 CZK\nFees are 0.29048430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (26.972026898739085598862327540 CZK)\nThe limits being 0.10 % (9.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59292641 BTC (443,969.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,452,002 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.47 % (1,009,887.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,733.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00369849 BTC (9,068.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.22 CZK over 4814 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003373 BTC for 82.71 CZK @ 2,452,002 CZK\nFees are 0.29048430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.30 % (26.972026898739085598862327540 CZK)\nThe limits being 0.10 % (9.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59292641 BTC (443,969.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,452,002 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.47 % (1,009,887.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,733.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00369849 BTC (9,068.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.22 CZK over 4814 transactions" + } + ] + }, + { + "id": 6523, + "type": "message", + "date": "2025-01-16T13:00:04", + "date_unixtime": "1737028804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003388 BTC for 82.71 CZK @ 2,441,224 CZK\nFees are 0.29049348 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (26.853460249516303327962520789 CZK)\nThe limits being 0.10 % (9.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59296029 BTC (444,052.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,441,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.99 % (1,003,495.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,650.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00373237 BTC (9,111.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.22 CZK over 4815 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003388 BTC for 82.71 CZK @ 2,441,224 CZK\nFees are 0.29049348 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (26.853460249516303327962520789 CZK)\nThe limits being 0.10 % (9.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59296029 BTC (444,052.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,441,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.99 % (1,003,495.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,650.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00373237 BTC (9,111.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.22 CZK over 4815 transactions" + } + ] + }, + { + "id": 6524, + "type": "message", + "date": "2025-01-16T17:00:03", + "date_unixtime": "1737043203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003399 BTC for 82.70 CZK @ 2,433,062 CZK\nFees are 0.29046234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (26.763686153479004713276993307 CZK)\nThe limits being 0.10 % (9.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59299428 BTC (444,135.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 748,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,433,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.85 % (998,656.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,567.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00376636 BTC (9,163.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.22 CZK over 4816 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003399 BTC for 82.70 CZK @ 2,433,062 CZK\nFees are 0.29046234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.29 % (26.763686153479004713276993307 CZK)\nThe limits being 0.10 % (9.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59299428 BTC (444,135.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 748,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,433,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.85 % (998,656.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,567.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00376636 BTC (9,163.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.22 CZK over 4816 transactions" + } + ] + }, + { + "id": 6525, + "type": "message", + "date": "2025-01-16T21:00:04", + "date_unixtime": "1737057604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003353 BTC for 82.69 CZK @ 2,466,043 CZK\nFees are 0.29041542 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (54.252953443145828253067737418 CZK)\nThe limits being 0.10 % (9.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59302781 BTC (444,218.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,069 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,466,043 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.21 % (1,018,213.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,484.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00379989 BTC (9,370.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.22 CZK over 4817 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003353 BTC for 82.69 CZK @ 2,466,043 CZK\nFees are 0.29041542 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.58 % (54.252953443145828253067737418 CZK)\nThe limits being 0.10 % (9.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59302781 BTC (444,218.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,069 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,466,043 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.21 % (1,018,213.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,484.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00379989 BTC (9,370.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.22 CZK over 4817 transactions" + } + ] + }, + { + "id": 6526, + "type": "message", + "date": "2025-01-17T01:00:04", + "date_unixtime": "1737072004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003359 BTC for 82.71 CZK @ 2,462,259 CZK\nFees are 0.29048864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (54.169696538447674876544775633 CZK)\nThe limits being 0.10 % (9.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59306140 BTC (444,301.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,167 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,462,259 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.67 % (1,015,968.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,401.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00383348 BTC (9,439.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.22 CZK over 4818 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003359 BTC for 82.71 CZK @ 2,462,259 CZK\nFees are 0.29048864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (54.169696538447674876544775633 CZK)\nThe limits being 0.10 % (9.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59306140 BTC (444,301.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,167 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,462,259 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.67 % (1,015,968.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,401.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00383348 BTC (9,439.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.22 CZK over 4818 transactions" + } + ] + }, + { + "id": 6527, + "type": "message", + "date": "2025-01-17T05:00:04", + "date_unixtime": "1737086404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003329 BTC for 82.71 CZK @ 2,484,524 CZK\nFees are 0.29049754 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (54.659533825662449375518517874 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59309469 BTC (444,384.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,484,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.60 % (1,029,173.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,318.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00386677 BTC (9,607.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.22 CZK over 4819 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003329 BTC for 82.71 CZK @ 2,484,524 CZK\nFees are 0.29049754 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.57 % (54.659533825662449375518517874 CZK)\nThe limits being 0.10 % (9.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59309469 BTC (444,384.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,484,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.60 % (1,029,173.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,318.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00386677 BTC (9,607.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.22 CZK over 4819 transactions" + } + ] + }, + { + "id": 6528, + "type": "message", + "date": "2025-01-17T09:00:04", + "date_unixtime": "1737100804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003302 BTC for 82.70 CZK @ 2,504,421 CZK\nFees are 0.29044893 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (27.548627804803116409345002969 CZK)\nThe limits being 0.10 % (9.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59312771 BTC (444,467.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,504,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.21 % (1,040,973.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,235.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00389979 BTC (9,766.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.21 CZK over 4820 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003302 BTC for 82.70 CZK @ 2,504,421 CZK\nFees are 0.29044893 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (27.548627804803116409345002969 CZK)\nThe limits being 0.10 % (9.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59312771 BTC (444,467.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,504,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.21 % (1,040,973.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,235.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00389979 BTC (9,766.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.21 CZK over 4820 transactions" + } + ] + }, + { + "id": 6529, + "type": "message", + "date": "2025-01-17T13:00:04", + "date_unixtime": "1737115204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003286 BTC for 82.69 CZK @ 2,516,407 CZK\nFees are 0.29042497 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (27.680482474455655964926166814 CZK)\nThe limits being 0.10 % (9.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59316057 BTC (444,550.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,516,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.76 % (1,048,082.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,152.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00393265 BTC (9,896.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.21 CZK over 4821 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003286 BTC for 82.69 CZK @ 2,516,407 CZK\nFees are 0.29042497 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (27.680482474455655964926166814 CZK)\nThe limits being 0.10 % (9.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59316057 BTC (444,550.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,516,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.76 % (1,048,082.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,152.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00393265 BTC (9,896.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.21 CZK over 4821 transactions" + } + ] + }, + { + "id": 6530, + "type": "message", + "date": "2025-01-17T17:00:04", + "date_unixtime": "1737129604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003245 BTC for 82.71 CZK @ 2,548,752 CZK\nFees are 0.29048766 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (28.036270639203465835676826024 CZK)\nThe limits being 0.10 % (10.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59319302 BTC (444,633.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,548,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 240.03 % (1,067,268.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,069.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00396510 BTC (10,106.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.21 CZK over 4822 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003245 BTC for 82.71 CZK @ 2,548,752 CZK\nFees are 0.29048766 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (28.036270639203465835676826024 CZK)\nThe limits being 0.10 % (10.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59319302 BTC (444,633.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,548,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 240.03 % (1,067,268.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,069.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00396510 BTC (10,106.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.21 CZK over 4822 transactions" + } + ] + }, + { + "id": 6531, + "type": "message", + "date": "2025-01-17T21:00:04", + "date_unixtime": "1737144004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003179 BTC for 82.54 CZK @ 2,596,293 CZK\nFees are 0.28988761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (57.118445440956651718983557550 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59322481 BTC (444,716.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,596,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 246.33 % (1,095,468.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,987.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00399689 BTC (10,377.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.21 CZK over 4823 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003179 BTC for 82.54 CZK @ 2,596,293 CZK\nFees are 0.28988761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.55 % (57.118445440956651718983557550 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59322481 BTC (444,716.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,596,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 246.33 % (1,095,468.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,987.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00399689 BTC (10,377.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.21 CZK over 4823 transactions" + } + ] + }, + { + "id": 6532, + "type": "message", + "date": "2025-01-18T01:00:07", + "date_unixtime": "1737158407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003220 BTC for 82.70 CZK @ 2,568,387 CZK\nFees are 0.29047028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (28.252253376226684863846103855 CZK)\nThe limits being 0.10 % (10.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59325701 BTC (444,799.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,568,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 242.56 % (1,078,913.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,904.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00402909 BTC (10,348.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.21 CZK over 4824 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003220 BTC for 82.70 CZK @ 2,568,387 CZK\nFees are 0.29047028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (28.252253376226684863846103855 CZK)\nThe limits being 0.10 % (10.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59325701 BTC (444,799.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,568,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 242.56 % (1,078,913.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,904.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00402909 BTC (10,348.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.21 CZK over 4824 transactions" + } + ] + }, + { + "id": 6533, + "type": "message", + "date": "2025-01-18T05:00:04", + "date_unixtime": "1737172804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003237 BTC for 82.70 CZK @ 2,554,893 CZK\nFees are 0.29046972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (28.103824516262897590900184234 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59328938 BTC (444,882.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,554,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 240.72 % (1,070,908.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,821.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00406146 BTC (10,376.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.20 CZK over 4825 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003237 BTC for 82.70 CZK @ 2,554,893 CZK\nFees are 0.29046972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (28.103824516262897590900184234 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59328938 BTC (444,882.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,554,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 240.72 % (1,070,908.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,821.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00406146 BTC (10,376.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.20 CZK over 4825 transactions" + } + ] + }, + { + "id": 6534, + "type": "message", + "date": "2025-01-18T09:00:03", + "date_unixtime": "1737187203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003262 BTC for 82.70 CZK @ 2,535,133 CZK\nFees are 0.29044916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (27.886463354653562317297185174 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59332200 BTC (444,965.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 749,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,535,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 238.04 % (1,059,184.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,738.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00409408 BTC (10,379.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.20 CZK over 4826 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003262 BTC for 82.70 CZK @ 2,535,133 CZK\nFees are 0.29044916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (27.886463354653562317297185174 CZK)\nThe limits being 0.10 % (10.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59332200 BTC (444,965.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 749,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,535,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 238.04 % (1,059,184.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,738.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00409408 BTC (10,379.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.20 CZK over 4826 transactions" + } + ] + }, + { + "id": 6535, + "type": "message", + "date": "2025-01-18T13:00:04", + "date_unixtime": "1737201604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003235 BTC for 82.70 CZK @ 2,556,470 CZK\nFees are 0.29046942 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (28.121170624914807447504060363 CZK)\nThe limits being 0.10 % (10.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59335435 BTC (445,048.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,556,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 240.84 % (1,071,844.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,655.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00412643 BTC (10,549.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.20 CZK over 4827 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003235 BTC for 82.70 CZK @ 2,556,470 CZK\nFees are 0.29046942 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (28.121170624914807447504060363 CZK)\nThe limits being 0.10 % (10.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59335435 BTC (445,048.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,556,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 240.84 % (1,071,844.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,655.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00412643 BTC (10,549.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.20 CZK over 4827 transactions" + } + ] + }, + { + "id": 6536, + "type": "message", + "date": "2025-01-18T17:00:03", + "date_unixtime": "1737216003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003207 BTC for 82.69 CZK @ 2,578,328 CZK\nFees are 0.29041738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (56.723224280966104135991755700 CZK)\nThe limits being 0.10 % (10.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59338642 BTC (445,131.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,578,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 243.71 % (1,084,813.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,572.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00415850 BTC (10,721.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.20 CZK over 4828 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003207 BTC for 82.69 CZK @ 2,578,328 CZK\nFees are 0.29041738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.53 % (56.723224280966104135991755700 CZK)\nThe limits being 0.10 % (10.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59338642 BTC (445,131.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,578,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 243.71 % (1,084,813.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,572.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00415850 BTC (10,721.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.20 CZK over 4828 transactions" + } + ] + }, + { + "id": 6537, + "type": "message", + "date": "2025-01-18T21:00:04", + "date_unixtime": "1737230404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003227 BTC for 82.71 CZK @ 2,563,020 CZK\nFees are 0.29049351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (56.386447361720807048278036480 CZK)\nThe limits being 0.10 % (10.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59341869 BTC (445,214.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,254 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,563,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 241.62 % (1,075,729.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,489.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00419077 BTC (10,741.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.20 CZK over 4829 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003227 BTC for 82.71 CZK @ 2,563,020 CZK\nFees are 0.29049351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (56.386447361720807048278036480 CZK)\nThe limits being 0.10 % (10.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59341869 BTC (445,214.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,254 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,563,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 241.62 % (1,075,729.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,489.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00419077 BTC (10,741.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.20 CZK over 4829 transactions" + } + ] + }, + { + "id": 6538, + "type": "message", + "date": "2025-01-19T01:00:05", + "date_unixtime": "1737244805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003218 BTC for 82.70 CZK @ 2,569,849 CZK\nFees are 0.29045517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (56.536684715366942859717526877 CZK)\nThe limits being 0.10 % (10.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59345087 BTC (445,297.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,353 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,569,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 242.49 % (1,079,781.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,406.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00422295 BTC (10,852.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.19 CZK over 4830 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003218 BTC for 82.70 CZK @ 2,569,849 CZK\nFees are 0.29045517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.52 % (56.536684715366942859717526877 CZK)\nThe limits being 0.10 % (10.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59345087 BTC (445,297.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,353 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,569,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 242.49 % (1,079,781.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,406.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00422295 BTC (10,852.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.19 CZK over 4830 transactions" + } + ] + }, + { + "id": 6539, + "type": "message", + "date": "2025-01-19T05:00:07", + "date_unixtime": "1737259207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003199 BTC for 82.69 CZK @ 2,585,009 CZK\nFees are 0.29044354 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.435098762645838035148315687 CZK)\nThe limits being 0.10 % (11.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59348286 BTC (445,380.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,585,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 244.46 % (1,088,778.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,323.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00425494 BTC (10,999.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.19 CZK over 4831 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003199 BTC for 82.69 CZK @ 2,585,009 CZK\nFees are 0.29044354 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.435098762645838035148315687 CZK)\nThe limits being 0.10 % (11.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59348286 BTC (445,380.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,585,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 244.46 % (1,088,778.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,323.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00425494 BTC (10,999.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.19 CZK over 4831 transactions" + } + ] + }, + { + "id": 6540, + "type": "message", + "date": "2025-01-19T09:00:04", + "date_unixtime": "1737273604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003189 BTC for 82.70 CZK @ 2,593,364 CZK\nFees are 0.29047140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.527001149473237522543784118 CZK)\nThe limits being 0.10 % (11.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59351475 BTC (445,463.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,593,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 245.53 % (1,093,736.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,240.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00428683 BTC (11,117.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.19 CZK over 4832 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003189 BTC for 82.70 CZK @ 2,593,364 CZK\nFees are 0.29047140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (28.527001149473237522543784118 CZK)\nThe limits being 0.10 % (11.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59351475 BTC (445,463.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,593,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 245.53 % (1,093,736.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,240.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00428683 BTC (11,117.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.19 CZK over 4832 transactions" + } + ] + }, + { + "id": 6541, + "type": "message", + "date": "2025-01-19T13:00:07", + "date_unixtime": "1737288007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003210 BTC for 82.70 CZK @ 2,576,411 CZK\nFees are 0.29047284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.340516719208626505051633922 CZK)\nThe limits being 0.10 % (11.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59354685 BTC (445,546.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,651 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,576,411 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 243.22 % (1,083,673.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,157.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00431893 BTC (11,127.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.19 CZK over 4833 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003210 BTC for 82.70 CZK @ 2,576,411 CZK\nFees are 0.29047284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.340516719208626505051633922 CZK)\nThe limits being 0.10 % (11.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59354685 BTC (445,546.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,651 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,576,411 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 243.22 % (1,083,673.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,157.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00431893 BTC (11,127.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.19 CZK over 4833 transactions" + } + ] + }, + { + "id": 6542, + "type": "message", + "date": "2025-01-19T17:00:04", + "date_unixtime": "1737302404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003197 BTC for 82.69 CZK @ 2,586,428 CZK\nFees are 0.29042123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.450702541106128550074738415 CZK)\nThe limits being 0.10 % (11.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59357882 BTC (445,629.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,586,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 244.51 % (1,089,619.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,074.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00435090 BTC (11,253.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.19 CZK over 4834 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003197 BTC for 82.69 CZK @ 2,586,428 CZK\nFees are 0.29042123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.450702541106128550074738415 CZK)\nThe limits being 0.10 % (11.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59357882 BTC (445,629.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,586,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 244.51 % (1,089,619.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,074.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00435090 BTC (11,253.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.19 CZK over 4834 transactions" + } + ] + }, + { + "id": 6543, + "type": "message", + "date": "2025-01-19T21:00:03", + "date_unixtime": "1737316803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003172 BTC for 82.71 CZK @ 2,607,513 CZK\nFees are 0.29049928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.682641931047135781385579225 CZK)\nThe limits being 0.10 % (11.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59361054 BTC (445,712.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,607,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 247.27 % (1,102,134.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,991.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00438262 BTC (11,427.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.18 CZK over 4835 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003172 BTC for 82.71 CZK @ 2,607,513 CZK\nFees are 0.29049928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.682641931047135781385579225 CZK)\nThe limits being 0.10 % (11.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59361054 BTC (445,712.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,607,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 247.27 % (1,102,134.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,991.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00438262 BTC (11,427.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.18 CZK over 4835 transactions" + } + ] + }, + { + "id": 6544, + "type": "message", + "date": "2025-01-20T01:00:04", + "date_unixtime": "1737331204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003312 BTC for 82.70 CZK @ 2,496,996 CZK\nFees are 0.29046489 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (27.466958847536039321312603954 CZK)\nThe limits being 0.10 % (11.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59364366 BTC (445,795.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 750,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,496,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.51 % (1,036,530.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,908.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00441574 BTC (11,026.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.18 CZK over 4836 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003312 BTC for 82.70 CZK @ 2,496,996 CZK\nFees are 0.29046489 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (27.466958847536039321312603954 CZK)\nThe limits being 0.10 % (11.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59364366 BTC (445,795.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 750,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,496,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.51 % (1,036,530.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,908.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00441574 BTC (11,026.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.18 CZK over 4836 transactions" + } + ] + }, + { + "id": 6545, + "type": "message", + "date": "2025-01-20T05:00:04", + "date_unixtime": "1737345604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003299 BTC for 82.70 CZK @ 2,506,787 CZK\nFees are 0.29045917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (27.574652477468599217682035277 CZK)\nThe limits being 0.10 % (11.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59367665 BTC (445,878.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,506,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.77 % (1,042,342.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,825.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00444873 BTC (11,152.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.18 CZK over 4837 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003299 BTC for 82.70 CZK @ 2,506,787 CZK\nFees are 0.29045917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (27.574652477468599217682035277 CZK)\nThe limits being 0.10 % (11.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59367665 BTC (445,878.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,506,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.77 % (1,042,342.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,825.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00444873 BTC (11,152.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.18 CZK over 4837 transactions" + } + ] + }, + { + "id": 6546, + "type": "message", + "date": "2025-01-20T09:00:04", + "date_unixtime": "1737360004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003145 BTC for 82.70 CZK @ 2,629,556 CZK\nFees are 0.29046141 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.925112491335967991204076668 CZK)\nThe limits being 0.10 % (11.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59370810 BTC (445,961.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,629,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 250.07 % (1,115,227.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,742.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00448018 BTC (11,780.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.18 CZK over 4838 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003145 BTC for 82.70 CZK @ 2,629,556 CZK\nFees are 0.29046141 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (28.925112491335967991204076668 CZK)\nThe limits being 0.10 % (11.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59370810 BTC (445,961.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,629,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 250.07 % (1,115,227.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,742.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00448018 BTC (11,780.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.18 CZK over 4838 transactions" + } + ] + }, + { + "id": 6547, + "type": "message", + "date": "2025-01-20T13:00:04", + "date_unixtime": "1737374404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003120 BTC for 82.70 CZK @ 2,650,532 CZK\nFees are 0.29045111 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (58.311699787921761015931419519 CZK)\nThe limits being 0.10 % (11.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59373930 BTC (446,044.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,650,532 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 252.82 % (1,127,680.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,659.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00451138 BTC (11,957.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.18 CZK over 4839 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003120 BTC for 82.70 CZK @ 2,650,532 CZK\nFees are 0.29045111 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.49 % (58.311699787921761015931419519 CZK)\nThe limits being 0.10 % (11.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59373930 BTC (446,044.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,650,532 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 252.82 % (1,127,680.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,659.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00451138 BTC (11,957.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.18 CZK over 4839 transactions" + } + ] + }, + { + "id": 6548, + "type": "message", + "date": "2025-01-20T17:00:05", + "date_unixtime": "1737388805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003251 BTC for 82.71 CZK @ 2,544,071 CZK\nFees are 0.29049032 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (55.969567382202892766734454633 CZK)\nThe limits being 0.10 % (11.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59377181 BTC (446,127.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,544,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 238.60 % (1,064,470.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,576.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00454389 BTC (11,559.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.18 CZK over 4840 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003251 BTC for 82.71 CZK @ 2,544,071 CZK\nFees are 0.29049032 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.48 % (55.969567382202892766734454633 CZK)\nThe limits being 0.10 % (11.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59377181 BTC (446,127.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,544,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 238.60 % (1,064,470.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,576.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00454389 BTC (11,559.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.18 CZK over 4840 transactions" + } + ] + }, + { + "id": 6549, + "type": "message", + "date": "2025-01-20T21:00:03", + "date_unixtime": "1737403203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003289 BTC for 82.69 CZK @ 2,514,228 CZK\nFees are 0.29043835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (82.96952669336252880803475461 CZK)\nThe limits being 0.10 % (11.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59380470 BTC (446,210.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,443 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,514,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.59 % (1,046,750.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,493.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00457678 BTC (11,507.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.17 CZK over 4841 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003289 BTC for 82.69 CZK @ 2,514,228 CZK\nFees are 0.29043835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (82.96952669336252880803475461 CZK)\nThe limits being 0.10 % (11.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59380470 BTC (446,210.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,443 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,514,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.59 % (1,046,750.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,493.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00457678 BTC (11,507.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.17 CZK over 4841 transactions" + } + ] + }, + { + "id": 6550, + "type": "message", + "date": "2025-01-21T01:00:03", + "date_unixtime": "1737417603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003336 BTC for 82.70 CZK @ 2,479,030 CZK\nFees are 0.29046458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (81.80797714294931767590411976 CZK)\nThe limits being 0.10 % (11.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59383806 BTC (446,293.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,479,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.86 % (1,025,848.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,410.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00461014 BTC (11,428.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.17 CZK over 4842 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003336 BTC for 82.70 CZK @ 2,479,030 CZK\nFees are 0.29046458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.72 % (81.80797714294931767590411976 CZK)\nThe limits being 0.10 % (11.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59383806 BTC (446,293.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,479,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.86 % (1,025,848.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,410.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00461014 BTC (11,428.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.17 CZK over 4842 transactions" + } + ] + }, + { + "id": 6551, + "type": "message", + "date": "2025-01-21T05:00:04", + "date_unixtime": "1737432004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003303 BTC for 82.71 CZK @ 2,503,978 CZK\nFees are 0.29048548 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (82.63126107035910190808102612 CZK)\nThe limits being 0.10 % (11.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59387109 BTC (446,376.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,503,978 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.14 % (1,040,663.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,327.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00464317 BTC (11,626.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.17 CZK over 4843 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003303 BTC for 82.71 CZK @ 2,503,978 CZK\nFees are 0.29048548 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (82.63126107035910190808102612 CZK)\nThe limits being 0.10 % (11.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59387109 BTC (446,376.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,503,978 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.14 % (1,040,663.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,327.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00464317 BTC (11,626.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.17 CZK over 4843 transactions" + } + ] + }, + { + "id": 6552, + "type": "message", + "date": "2025-01-21T09:00:04", + "date_unixtime": "1737446404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003326 BTC for 82.70 CZK @ 2,486,611 CZK\nFees are 0.29047957 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (82.05817791338253574905150075 CZK)\nThe limits being 0.10 % (11.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59390435 BTC (446,459.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,486,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.78 % (1,030,350.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,244.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00467643 BTC (11,628.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.17 CZK over 4844 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003326 BTC for 82.70 CZK @ 2,486,611 CZK\nFees are 0.29047957 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.71 % (82.05817791338253574905150075 CZK)\nThe limits being 0.10 % (11.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59390435 BTC (446,459.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,486,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.78 % (1,030,350.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,244.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00467643 BTC (11,628.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.17 CZK over 4844 transactions" + } + ] + }, + { + "id": 6553, + "type": "message", + "date": "2025-01-21T13:00:04", + "date_unixtime": "1737460804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003267 BTC for 82.70 CZK @ 2,531,464 CZK\nFees are 0.29047335 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (55.692206113619167929083225548 CZK)\nThe limits being 0.10 % (11.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59393702 BTC (446,542.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,531,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.70 % (1,056,987.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,161.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00470910 BTC (11,920.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.17 CZK over 4845 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003267 BTC for 82.70 CZK @ 2,531,464 CZK\nFees are 0.29047335 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.47 % (55.692206113619167929083225548 CZK)\nThe limits being 0.10 % (11.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59393702 BTC (446,542.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,531,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.70 % (1,056,987.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,161.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00470910 BTC (11,920.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.17 CZK over 4845 transactions" + } + ] + }, + { + "id": 6554, + "type": "message", + "date": "2025-01-21T17:00:04", + "date_unixtime": "1737475204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003285 BTC for 82.70 CZK @ 2,517,491 CZK\nFees are 0.29046162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (55.384806192633241796785831025 CZK)\nThe limits being 0.10 % (11.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59396987 BTC (446,625.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 751,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,517,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.80 % (1,048,688.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,078.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00474195 BTC (11,937.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.16 CZK over 4846 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003285 BTC for 82.70 CZK @ 2,517,491 CZK\nFees are 0.29046162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (55.384806192633241796785831025 CZK)\nThe limits being 0.10 % (11.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59396987 BTC (446,625.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 751,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,517,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.80 % (1,048,688.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,078.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00474195 BTC (11,937.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.16 CZK over 4846 transactions" + } + ] + }, + { + "id": 6555, + "type": "message", + "date": "2025-01-21T21:00:07", + "date_unixtime": "1737489607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003200 BTC for 82.69 CZK @ 2,584,199 CZK\nFees are 0.29044329 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (56.852377240906826108619830594 CZK)\nThe limits being 0.10 % (12.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59400187 BTC (446,708.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,584,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 243.63 % (1,088,310.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,995.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00477395 BTC (12,336.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.16 CZK over 4847 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003200 BTC for 82.69 CZK @ 2,584,199 CZK\nFees are 0.29044329 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (56.852377240906826108619830594 CZK)\nThe limits being 0.10 % (12.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59400187 BTC (446,708.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,584,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 243.63 % (1,088,310.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,995.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00477395 BTC (12,336.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.16 CZK over 4847 transactions" + } + ] + }, + { + "id": 6556, + "type": "message", + "date": "2025-01-22T01:00:04", + "date_unixtime": "1737504004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003217 BTC for 82.71 CZK @ 2,570,899 CZK\nFees are 0.29048351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (56.559776103500973202433075782 CZK)\nThe limits being 0.10 % (12.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59403404 BTC (446,791.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,570,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 241.82 % (1,080,410.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,912.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00480612 BTC (12,356.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.16 CZK over 4848 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003217 BTC for 82.71 CZK @ 2,570,899 CZK\nFees are 0.29048351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (56.559776103500973202433075782 CZK)\nThe limits being 0.10 % (12.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59403404 BTC (446,791.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,570,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 241.82 % (1,080,410.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,912.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00480612 BTC (12,356.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.16 CZK over 4848 transactions" + } + ] + }, + { + "id": 6557, + "type": "message", + "date": "2025-01-22T05:00:03", + "date_unixtime": "1737518403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003239 BTC for 82.70 CZK @ 2,553,129 CZK\nFees are 0.29044847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (56.168832572258287718825420073 CZK)\nThe limits being 0.10 % (12.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59406643 BTC (446,874.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,553,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 239.41 % (1,069,853.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,829.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00483851 BTC (12,353.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.16 CZK over 4849 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003239 BTC for 82.70 CZK @ 2,553,129 CZK\nFees are 0.29044847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.45 % (56.168832572258287718825420073 CZK)\nThe limits being 0.10 % (12.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59406643 BTC (446,874.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,553,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 239.41 % (1,069,853.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,829.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00483851 BTC (12,353.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.16 CZK over 4849 transactions" + } + ] + }, + { + "id": 6558, + "type": "message", + "date": "2025-01-22T09:00:04", + "date_unixtime": "1737532804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003250 BTC for 82.69 CZK @ 2,544,430 CZK\nFees are 0.29044193 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (27.988731500057491088881223410 CZK)\nThe limits being 0.10 % (12.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59409893 BTC (446,957.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,544,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 238.21 % (1,064,685.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,746.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00487101 BTC (12,393.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.16 CZK over 4850 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003250 BTC for 82.69 CZK @ 2,544,430 CZK\nFees are 0.29044193 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.23 % (27.988731500057491088881223410 CZK)\nThe limits being 0.10 % (12.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59409893 BTC (446,957.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,544,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 238.21 % (1,064,685.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,746.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00487101 BTC (12,393.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.16 CZK over 4850 transactions" + } + ] + }, + { + "id": 6559, + "type": "message", + "date": "2025-01-22T13:00:04", + "date_unixtime": "1737547204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003257 BTC for 82.71 CZK @ 2,539,311 CZK\nFees are 0.29048195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.932425574658177496355632168 CZK)\nThe limits being 0.10 % (12.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59413150 BTC (447,040.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,539,311 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 237.48 % (1,061,644.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,663.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00490358 BTC (12,451.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.15 CZK over 4851 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003257 BTC for 82.71 CZK @ 2,539,311 CZK\nFees are 0.29048195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.932425574658177496355632168 CZK)\nThe limits being 0.10 % (12.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59413150 BTC (447,040.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,539,311 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 237.48 % (1,061,644.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,663.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00490358 BTC (12,451.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.15 CZK over 4851 transactions" + } + ] + }, + { + "id": 6560, + "type": "message", + "date": "2025-01-22T17:00:04", + "date_unixtime": "1737561604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003277 BTC for 82.70 CZK @ 2,523,644 CZK\nFees are 0.29046248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.760089305678523094101982700 CZK)\nThe limits being 0.10 % (12.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59416427 BTC (447,123.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,525 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,523,644 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.36 % (1,052,336.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,580.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00493635 BTC (12,457.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.15 CZK over 4852 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003277 BTC for 82.70 CZK @ 2,523,644 CZK\nFees are 0.29046248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.760089305678523094101982700 CZK)\nThe limits being 0.10 % (12.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59416427 BTC (447,123.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,525 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,523,644 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.36 % (1,052,336.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,580.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00493635 BTC (12,457.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.15 CZK over 4852 transactions" + } + ] + }, + { + "id": 6561, + "type": "message", + "date": "2025-01-22T21:00:04", + "date_unixtime": "1737576004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003268 BTC for 82.70 CZK @ 2,530,654 CZK\nFees are 0.29046929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (55.674385830133089876985019993 CZK)\nThe limits being 0.10 % (12.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59419695 BTC (447,206.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,530,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.24 % (1,056,500.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,497.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00496903 BTC (12,574.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.15 CZK over 4853 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003268 BTC for 82.70 CZK @ 2,530,654 CZK\nFees are 0.29046929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.44 % (55.674385830133089876985019993 CZK)\nThe limits being 0.10 % (12.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59419695 BTC (447,206.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,530,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.24 % (1,056,500.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,497.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00496903 BTC (12,574.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.15 CZK over 4853 transactions" + } + ] + }, + { + "id": 6562, + "type": "message", + "date": "2025-01-23T01:00:04", + "date_unixtime": "1737590404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003285 BTC for 82.69 CZK @ 2,517,295 CZK\nFees are 0.29043895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.690241725649723684000973762 CZK)\nThe limits being 0.10 % (12.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59422980 BTC (447,289.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,721 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,517,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.43 % (1,048,562.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,414.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00500188 BTC (12,591.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.15 CZK over 4854 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003285 BTC for 82.69 CZK @ 2,517,295 CZK\nFees are 0.29043895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.690241725649723684000973762 CZK)\nThe limits being 0.10 % (12.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59422980 BTC (447,289.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,721 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,517,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.43 % (1,048,562.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,414.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00500188 BTC (12,591.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.15 CZK over 4854 transactions" + } + ] + }, + { + "id": 6563, + "type": "message", + "date": "2025-01-23T05:00:04", + "date_unixtime": "1737604804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003328 BTC for 82.69 CZK @ 2,484,685 CZK\nFees are 0.29042903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.331531298208673488942547240 CZK)\nThe limits being 0.10 % (12.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59426308 BTC (447,372.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,818 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,484,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.05 % (1,029,184.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,331.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00503516 BTC (12,510.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.15 CZK over 4855 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003328 BTC for 82.69 CZK @ 2,484,685 CZK\nFees are 0.29042903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.331531298208673488942547240 CZK)\nThe limits being 0.10 % (12.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59426308 BTC (447,372.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,818 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,484,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.05 % (1,029,184.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,331.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00503516 BTC (12,510.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.15 CZK over 4855 transactions" + } + ] + }, + { + "id": 6564, + "type": "message", + "date": "2025-01-23T09:00:04", + "date_unixtime": "1737619204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003315 BTC for 82.69 CZK @ 2,494,294 CZK\nFees are 0.29041331 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.437228966791193116700898288 CZK)\nThe limits being 0.03 % (3.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59429623 BTC (447,455.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 752,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,494,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.28 % (1,034,894.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,248.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00506831 BTC (12,641.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.14 CZK over 4856 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003315 BTC for 82.69 CZK @ 2,494,294 CZK\nFees are 0.29041331 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.437228966791193116700898288 CZK)\nThe limits being 0.03 % (3.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59429623 BTC (447,455.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 752,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,494,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.28 % (1,034,894.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,248.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00506831 BTC (12,641.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.14 CZK over 4856 transactions" + } + ] + }, + { + "id": 6565, + "type": "message", + "date": "2025-01-23T13:00:04", + "date_unixtime": "1737633604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003343 BTC for 82.69 CZK @ 2,473,535 CZK\nFees are 0.29042891 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.208884510554667994952157429 CZK)\nThe limits being 0.03 % (3.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59432966 BTC (447,538.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,473,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.48 % (1,022,557.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,165.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00510174 BTC (12,619.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.14 CZK over 4857 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003343 BTC for 82.69 CZK @ 2,473,535 CZK\nFees are 0.29042891 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (27.208884510554667994952157429 CZK)\nThe limits being 0.03 % (3.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59432966 BTC (447,538.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,473,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.48 % (1,022,557.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,165.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00510174 BTC (12,619.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.14 CZK over 4857 transactions" + } + ] + }, + { + "id": 6566, + "type": "message", + "date": "2025-01-23T17:00:04", + "date_unixtime": "1737648004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003247 BTC for 82.69 CZK @ 2,546,666 CZK\nFees are 0.29042879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (28.013323401356723595533894381 CZK)\nThe limits being 0.03 % (3.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59436213 BTC (447,621.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,546,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 238.15 % (1,066,020.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,082.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00513421 BTC (13,075.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.14 CZK over 4858 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003247 BTC for 82.69 CZK @ 2,546,666 CZK\nFees are 0.29042879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (28.013323401356723595533894381 CZK)\nThe limits being 0.03 % (3.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59436213 BTC (447,621.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,546,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 238.15 % (1,066,020.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,082.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00513421 BTC (13,075.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.14 CZK over 4858 transactions" + } + ] + }, + { + "id": 6567, + "type": "message", + "date": "2025-01-23T21:00:04", + "date_unixtime": "1737662404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003295 BTC for 82.69 CZK @ 2,509,692 CZK\nFees are 0.29044321 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.606609894201856476535464265 CZK)\nThe limits being 0.03 % (3.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59439508 BTC (447,704.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,210 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,509,692 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.20 % (1,044,044.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,999.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00516716 BTC (12,967.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.14 CZK over 4859 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003295 BTC for 82.69 CZK @ 2,509,692 CZK\nFees are 0.29044321 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.606609894201856476535464265 CZK)\nThe limits being 0.03 % (3.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59439508 BTC (447,704.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,210 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,509,692 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.20 % (1,044,044.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,999.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00516716 BTC (12,967.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.14 CZK over 4859 transactions" + } + ] + }, + { + "id": 6568, + "type": "message", + "date": "2025-01-24T01:00:04", + "date_unixtime": "1737676804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003287 BTC for 82.69 CZK @ 2,515,687 CZK\nFees are 0.29043014 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.672553771565265410430696698 CZK)\nThe limits being 0.03 % (3.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59442795 BTC (447,787.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,515,687 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.95 % (1,047,607.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,916.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00520003 BTC (13,081.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.14 CZK over 4860 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003287 BTC for 82.69 CZK @ 2,515,687 CZK\nFees are 0.29043014 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.672553771565265410430696698 CZK)\nThe limits being 0.03 % (3.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59442795 BTC (447,787.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,515,687 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.95 % (1,047,607.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,916.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00520003 BTC (13,081.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.14 CZK over 4860 transactions" + } + ] + }, + { + "id": 6569, + "type": "message", + "date": "2025-01-24T05:00:04", + "date_unixtime": "1737691204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003297 BTC for 82.69 CZK @ 2,508,105 CZK\nFees are 0.29043574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.589153515017729121867821134 CZK)\nThe limits being 0.03 % (3.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59446092 BTC (447,870.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,508,105 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.90 % (1,043,100.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,833.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00523300 BTC (13,124.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.14 CZK over 4861 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003297 BTC for 82.69 CZK @ 2,508,105 CZK\nFees are 0.29043574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.589153515017729121867821134 CZK)\nThe limits being 0.03 % (3.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59446092 BTC (447,870.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,508,105 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.90 % (1,043,100.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,833.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00523300 BTC (13,124.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.14 CZK over 4861 transactions" + } + ] + }, + { + "id": 6570, + "type": "message", + "date": "2025-01-24T09:00:04", + "date_unixtime": "1737705604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003265 BTC for 82.69 CZK @ 2,532,558 CZK\nFees are 0.29042095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.858133952605391085259783713 CZK)\nThe limits being 0.03 % (3.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59449357 BTC (447,953.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,532,558 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.10 % (1,057,636.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,750.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00526565 BTC (13,335.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.13 CZK over 4862 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003265 BTC for 82.69 CZK @ 2,532,558 CZK\nFees are 0.29042095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.858133952605391085259783713 CZK)\nThe limits being 0.03 % (3.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59449357 BTC (447,953.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,532,558 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.10 % (1,057,636.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,750.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00526565 BTC (13,335.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.13 CZK over 4862 transactions" + } + ] + }, + { + "id": 6571, + "type": "message", + "date": "2025-01-24T13:00:07", + "date_unixtime": "1737720007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003274 BTC for 82.71 CZK @ 2,526,209 CZK\nFees are 0.29049145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.788297403193891629754016105 CZK)\nThe limits being 0.03 % (3.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59452631 BTC (448,036.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,602 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,526,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.22 % (1,053,861.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,667.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00529839 BTC (13,384.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.13 CZK over 4863 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003274 BTC for 82.71 CZK @ 2,526,209 CZK\nFees are 0.29049145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.788297403193891629754016105 CZK)\nThe limits being 0.03 % (3.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59452631 BTC (448,036.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,602 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,526,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.22 % (1,053,861.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,667.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00529839 BTC (13,384.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.13 CZK over 4863 transactions" + } + ] + }, + { + "id": 6572, + "type": "message", + "date": "2025-01-24T17:00:03", + "date_unixtime": "1737734403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003263 BTC for 82.70 CZK @ 2,534,377 CZK\nFees are 0.29045158 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.878148691348591300353757252 CZK)\nThe limits being 0.03 % (3.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59455894 BTC (448,119.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,534,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.26 % (1,058,717.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,584.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00533102 BTC (13,510.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.13 CZK over 4864 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003263 BTC for 82.70 CZK @ 2,534,377 CZK\nFees are 0.29045158 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.878148691348591300353757252 CZK)\nThe limits being 0.03 % (3.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59455894 BTC (448,119.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,534,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.26 % (1,058,717.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,584.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00533102 BTC (13,510.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.13 CZK over 4864 transactions" + } + ] + }, + { + "id": 6573, + "type": "message", + "date": "2025-01-24T21:00:04", + "date_unixtime": "1737748804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003256 BTC for 82.71 CZK @ 2,540,090 CZK\nFees are 0.29048184 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.940993869429968084676604854 CZK)\nThe limits being 0.03 % (3.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59459150 BTC (448,202.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,540,090 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.97 % (1,062,114.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,501.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00536358 BTC (13,623.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.13 CZK over 4865 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003256 BTC for 82.71 CZK @ 2,540,090 CZK\nFees are 0.29048184 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.21 % (27.940993869429968084676604854 CZK)\nThe limits being 0.03 % (3.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59459150 BTC (448,202.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,540,090 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.97 % (1,062,114.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,501.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00536358 BTC (13,623.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.13 CZK over 4865 transactions" + } + ] + }, + { + "id": 6574, + "type": "message", + "date": "2025-01-25T01:00:03", + "date_unixtime": "1737763203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003289 BTC for 82.70 CZK @ 2,514,358 CZK\nFees are 0.29045341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (55.315884917837735151051587003 CZK)\nThe limits being 0.03 % (3.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59462439 BTC (448,285.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,514,358 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.52 % (1,046,813.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,418.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00539647 BTC (13,568.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.13 CZK over 4866 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003289 BTC for 82.70 CZK @ 2,514,358 CZK\nFees are 0.29045341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (55.315884917837735151051587003 CZK)\nThe limits being 0.03 % (3.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59462439 BTC (448,285.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,514,358 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.52 % (1,046,813.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,418.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00539647 BTC (13,568.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.13 CZK over 4866 transactions" + } + ] + }, + { + "id": 6575, + "type": "message", + "date": "2025-01-25T05:00:03", + "date_unixtime": "1737777603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003278 BTC for 82.69 CZK @ 2,522,675 CZK\nFees are 0.29043950 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (55.498851609969134873580053705 CZK)\nThe limits being 0.03 % (3.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59465717 BTC (448,367.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 753,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,522,675 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.57 % (1,051,758.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,335.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00542925 BTC (13,696.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.12 CZK over 4867 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003278 BTC for 82.69 CZK @ 2,522,675 CZK\nFees are 0.29043950 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.41 % (55.498851609969134873580053705 CZK)\nThe limits being 0.03 % (3.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59465717 BTC (448,367.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 753,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,522,675 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.57 % (1,051,758.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,335.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00542925 BTC (13,696.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.12 CZK over 4867 transactions" + } + ] + }, + { + "id": 6576, + "type": "message", + "date": "2025-01-25T09:00:04", + "date_unixtime": "1737792004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003300 BTC for 82.70 CZK @ 2,506,155 CZK\nFees are 0.29047402 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.567705211758844045839561534 CZK)\nThe limits being 0.03 % (3.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59469017 BTC (448,450.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,506,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.34 % (1,041,934.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,252.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00546225 BTC (13,689.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.12 CZK over 4868 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003300 BTC for 82.70 CZK @ 2,506,155 CZK\nFees are 0.29047402 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.567705211758844045839561534 CZK)\nThe limits being 0.03 % (3.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59469017 BTC (448,450.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,506,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.34 % (1,041,934.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,252.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00546225 BTC (13,689.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.12 CZK over 4868 transactions" + } + ] + }, + { + "id": 6577, + "type": "message", + "date": "2025-01-25T13:00:04", + "date_unixtime": "1737806404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003297 BTC for 82.69 CZK @ 2,508,174 CZK\nFees are 0.29044375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.589914402714551239300603786 CZK)\nThe limits being 0.03 % (3.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59472314 BTC (448,533.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,190 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,508,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 232.57 % (1,043,135.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,169.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00549522 BTC (13,782.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.12 CZK over 4869 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003297 BTC for 82.69 CZK @ 2,508,174 CZK\nFees are 0.29044375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.589914402714551239300603786 CZK)\nThe limits being 0.03 % (3.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59472314 BTC (448,533.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,190 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,508,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 232.57 % (1,043,135.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,169.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00549522 BTC (13,782.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.12 CZK over 4869 transactions" + } + ] + }, + { + "id": 6578, + "type": "message", + "date": "2025-01-25T17:00:03", + "date_unixtime": "1737820803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003275 BTC for 82.70 CZK @ 2,525,249 CZK\nFees are 0.29046982 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.777744179037490919187424169 CZK)\nThe limits being 0.03 % (3.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59475589 BTC (448,616.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,525,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.79 % (1,053,290.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,086.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00552797 BTC (13,959.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.12 CZK over 4870 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003275 BTC for 82.70 CZK @ 2,525,249 CZK\nFees are 0.29046982 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.777744179037490919187424169 CZK)\nThe limits being 0.03 % (3.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59475589 BTC (448,616.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,525,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.79 % (1,053,290.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,086.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00552797 BTC (13,959.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.12 CZK over 4870 transactions" + } + ] + }, + { + "id": 6579, + "type": "message", + "date": "2025-01-25T21:00:04", + "date_unixtime": "1737835204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003266 BTC for 82.69 CZK @ 2,531,810 CZK\nFees are 0.29042411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.849907509265641290388722142 CZK)\nThe limits being 0.03 % (3.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59478855 BTC (448,699.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,386 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,531,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.61 % (1,057,191.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,003.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00556063 BTC (14,078.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.12 CZK over 4871 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003266 BTC for 82.69 CZK @ 2,531,810 CZK\nFees are 0.29042411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.849907509265641290388722142 CZK)\nThe limits being 0.03 % (3.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59478855 BTC (448,699.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,386 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,531,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.61 % (1,057,191.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,003.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00556063 BTC (14,078.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.12 CZK over 4871 transactions" + } + ] + }, + { + "id": 6580, + "type": "message", + "date": "2025-01-26T01:00:03", + "date_unixtime": "1737849603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003288 BTC for 82.69 CZK @ 2,514,970 CZK\nFees are 0.29043572 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.664669177344016138163629242 CZK)\nThe limits being 0.03 % (3.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59482143 BTC (448,782.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,514,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.34 % (1,047,175.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,920.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00559351 BTC (14,067.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.11 CZK over 4872 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003288 BTC for 82.69 CZK @ 2,514,970 CZK\nFees are 0.29043572 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.664669177344016138163629242 CZK)\nThe limits being 0.03 % (3.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59482143 BTC (448,782.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,514,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.34 % (1,047,175.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,920.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00559351 BTC (14,067.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.11 CZK over 4872 transactions" + } + ] + }, + { + "id": 6581, + "type": "message", + "date": "2025-01-26T05:00:03", + "date_unixtime": "1737864003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003279 BTC for 82.69 CZK @ 2,521,708 CZK\nFees are 0.29041669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.738784359955161509282926044 CZK)\nThe limits being 0.03 % (3.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59485422 BTC (448,865.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,581 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,521,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.19 % (1,051,182.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,837.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00562630 BTC (14,187.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.11 CZK over 4873 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003279 BTC for 82.69 CZK @ 2,521,708 CZK\nFees are 0.29041669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.20 % (27.738784359955161509282926044 CZK)\nThe limits being 0.03 % (3.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59485422 BTC (448,865.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,581 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,521,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.19 % (1,051,182.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,837.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00562630 BTC (14,187.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.11 CZK over 4873 transactions" + } + ] + }, + { + "id": 6582, + "type": "message", + "date": "2025-01-26T09:00:04", + "date_unixtime": "1737878404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003281 BTC for 82.69 CZK @ 2,520,417 CZK\nFees are 0.29044515 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.724592089527555718958044892 CZK)\nThe limits being 0.03 % (3.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59488703 BTC (448,948.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,520,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.97 % (1,050,414.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,754.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00565911 BTC (14,263.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.11 CZK over 4874 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003281 BTC for 82.69 CZK @ 2,520,417 CZK\nFees are 0.29044515 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.724592089527555718958044892 CZK)\nThe limits being 0.03 % (3.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59488703 BTC (448,948.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,520,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.97 % (1,050,414.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,754.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00565911 BTC (14,263.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.11 CZK over 4874 transactions" + } + ] + }, + { + "id": 6583, + "type": "message", + "date": "2025-01-26T13:00:04", + "date_unixtime": "1737892804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003289 BTC for 82.71 CZK @ 2,514,729 CZK\nFees are 0.29049626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.662022599830359627591056719 CZK)\nThe limits being 0.03 % (3.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59491992 BTC (449,031.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,514,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.18 % (1,047,030.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,671.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00569200 BTC (14,313.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.11 CZK over 4875 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003289 BTC for 82.71 CZK @ 2,514,729 CZK\nFees are 0.29049626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.662022599830359627591056719 CZK)\nThe limits being 0.03 % (3.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59491992 BTC (449,031.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,514,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.18 % (1,047,030.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,671.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00569200 BTC (14,313.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.11 CZK over 4875 transactions" + } + ] + }, + { + "id": 6584, + "type": "message", + "date": "2025-01-26T17:00:03", + "date_unixtime": "1737907203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003281 BTC for 82.69 CZK @ 2,520,382 CZK\nFees are 0.29044111 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.724206130417965648119421100 CZK)\nThe limits being 0.03 % (3.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59495273 BTC (449,114.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,520,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.88 % (1,050,393.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,588.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00572481 BTC (14,428.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.11 CZK over 4876 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003281 BTC for 82.69 CZK @ 2,520,382 CZK\nFees are 0.29044111 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.724206130417965648119421100 CZK)\nThe limits being 0.03 % (3.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59495273 BTC (449,114.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,520,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.88 % (1,050,393.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,588.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00572481 BTC (14,428.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.11 CZK over 4876 transactions" + } + ] + }, + { + "id": 6585, + "type": "message", + "date": "2025-01-26T21:00:03", + "date_unixtime": "1737921603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003283 BTC for 82.71 CZK @ 2,519,251 CZK\nFees are 0.29048765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.711756193256590055427387026 CZK)\nThe limits being 0.03 % (3.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59498556 BTC (449,197.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 754,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,519,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.69 % (1,049,719.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,505.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00575764 BTC (14,504.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.11 CZK over 4877 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003283 BTC for 82.71 CZK @ 2,519,251 CZK\nFees are 0.29048765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.711756193256590055427387026 CZK)\nThe limits being 0.03 % (3.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59498556 BTC (449,197.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 754,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,519,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.69 % (1,049,719.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,505.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00575764 BTC (14,504.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.11 CZK over 4877 transactions" + } + ] + }, + { + "id": 6586, + "type": "message", + "date": "2025-01-27T01:00:04", + "date_unixtime": "1737936004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003346 BTC for 82.69 CZK @ 2,471,184 CZK\nFees are 0.29041327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.183025248748328846645825089 CZK)\nThe limits being 0.03 % (3.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59501902 BTC (449,280.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,471,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.28 % (1,021,120.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,422.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00579110 BTC (14,310.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.10 CZK over 4878 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003346 BTC for 82.69 CZK @ 2,471,184 CZK\nFees are 0.29041327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (27.183025248748328846645825089 CZK)\nThe limits being 0.03 % (3.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59501902 BTC (449,280.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,471,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.28 % (1,021,120.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,422.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00579110 BTC (14,310.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.10 CZK over 4878 transactions" + } + ] + }, + { + "id": 6587, + "type": "message", + "date": "2025-01-27T05:00:04", + "date_unixtime": "1737950404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003381 BTC for 82.70 CZK @ 2,446,018 CZK\nFees are 0.29046256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.906193295662755039408800934 CZK)\nThe limits being 0.03 % (3.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59505283 BTC (449,363.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,166 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,446,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.90 % (1,006,145.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,339.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00582491 BTC (14,247.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.10 CZK over 4879 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003381 BTC for 82.70 CZK @ 2,446,018 CZK\nFees are 0.29046256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.906193295662755039408800934 CZK)\nThe limits being 0.03 % (3.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59505283 BTC (449,363.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,166 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,446,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.90 % (1,006,145.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,339.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00582491 BTC (14,247.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.10 CZK over 4879 transactions" + } + ] + }, + { + "id": 6588, + "type": "message", + "date": "2025-01-27T09:00:04", + "date_unixtime": "1737964804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003464 BTC for 82.70 CZK @ 2,387,523 CZK\nFees are 0.29047644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.262755294690292981493180335 CZK)\nThe limits being 0.03 % (3.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59508747 BTC (449,446.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.12 % (971,338.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,256.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00585955 BTC (13,989.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.10 CZK over 4880 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003464 BTC for 82.70 CZK @ 2,387,523 CZK\nFees are 0.29047644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.262755294690292981493180335 CZK)\nThe limits being 0.03 % (3.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59508747 BTC (449,446.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.12 % (971,338.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,256.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00585955 BTC (13,989.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.10 CZK over 4880 transactions" + } + ] + }, + { + "id": 6589, + "type": "message", + "date": "2025-01-27T13:00:04", + "date_unixtime": "1737979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003478 BTC for 82.70 CZK @ 2,377,874 CZK\nFees are 0.29047174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.156616530183460819850477326 CZK)\nThe limits being 0.03 % (3.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59512225 BTC (449,529.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,357 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.80 % (965,596.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,173.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00589433 BTC (14,015.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.10 CZK over 4881 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003478 BTC for 82.70 CZK @ 2,377,874 CZK\nFees are 0.29047174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.156616530183460819850477326 CZK)\nThe limits being 0.03 % (3.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59512225 BTC (449,529.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,357 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.80 % (965,596.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,173.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00589433 BTC (14,015.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.10 CZK over 4881 transactions" + } + ] + }, + { + "id": 6590, + "type": "message", + "date": "2025-01-27T17:00:03", + "date_unixtime": "1737993603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003407 BTC for 82.70 CZK @ 2,427,469 CZK\nFees are 0.29047672 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.702164266569794097529793361 CZK)\nThe limits being 0.03 % (3.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59515632 BTC (449,612.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,427,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 221.33 % (995,111.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,090.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00592840 BTC (14,391.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.10 CZK over 4882 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003407 BTC for 82.70 CZK @ 2,427,469 CZK\nFees are 0.29047672 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (26.702164266569794097529793361 CZK)\nThe limits being 0.03 % (3.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59515632 BTC (449,612.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,427,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 221.33 % (995,111.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,090.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00592840 BTC (14,391.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.10 CZK over 4882 transactions" + } + ] + }, + { + "id": 6591, + "type": "message", + "date": "2025-01-27T21:00:06", + "date_unixtime": "1738008006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003455 BTC for 82.70 CZK @ 2,393,747 CZK\nFees are 0.29047694 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (26.331213419313156484864479386 CZK)\nThe limits being 0.03 % (3.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59519087 BTC (449,695.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,549 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,393,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.82 % (975,040.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,007.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00596295 BTC (14,273.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.09 CZK over 4883 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003455 BTC for 82.70 CZK @ 2,393,747 CZK\nFees are 0.29047694 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (26.331213419313156484864479386 CZK)\nThe limits being 0.03 % (3.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59519087 BTC (449,695.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,549 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,393,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.82 % (975,040.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,007.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00596295 BTC (14,273.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.09 CZK over 4883 transactions" + } + ] + }, + { + "id": 6592, + "type": "message", + "date": "2025-01-28T01:00:05", + "date_unixtime": "1738022405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003368 BTC for 82.69 CZK @ 2,455,101 CZK\nFees are 0.29042025 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.006112605879422022919780768 CZK)\nThe limits being 0.03 % (3.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59522455 BTC (449,778.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,455,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 224.90 % (1,011,557.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,924.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00599663 BTC (14,722.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.09 CZK over 4884 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003368 BTC for 82.69 CZK @ 2,455,101 CZK\nFees are 0.29042025 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.006112605879422022919780768 CZK)\nThe limits being 0.03 % (3.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59522455 BTC (449,778.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,455,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 224.90 % (1,011,557.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,924.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00599663 BTC (14,722.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.09 CZK over 4884 transactions" + } + ] + }, + { + "id": 6593, + "type": "message", + "date": "2025-01-28T05:00:07", + "date_unixtime": "1738036807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003342 BTC for 82.71 CZK @ 2,474,834 CZK\nFees are 0.29049454 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.223176026039323170817160884 CZK)\nThe limits being 0.03 % (3.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59525797 BTC (449,861.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,474,834 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.47 % (1,023,303.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,841.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00603005 BTC (14,923.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.09 CZK over 4885 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003342 BTC for 82.71 CZK @ 2,474,834 CZK\nFees are 0.29049454 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.223176026039323170817160884 CZK)\nThe limits being 0.03 % (3.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59525797 BTC (449,861.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,474,834 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.47 % (1,023,303.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,841.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00603005 BTC (14,923.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.09 CZK over 4885 transactions" + } + ] + }, + { + "id": 6594, + "type": "message", + "date": "2025-01-28T09:00:03", + "date_unixtime": "1738051203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003330 BTC for 82.70 CZK @ 2,483,350 CZK\nFees are 0.29044750 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.316853824227815259205393735 CZK)\nThe limits being 0.03 % (3.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59529127 BTC (449,944.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,483,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.56 % (1,028,372.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,758.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00606335 BTC (15,057.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.09 CZK over 4886 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003330 BTC for 82.70 CZK @ 2,483,350 CZK\nFees are 0.29044750 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.316853824227815259205393735 CZK)\nThe limits being 0.03 % (3.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59529127 BTC (449,944.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,483,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.56 % (1,028,372.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,758.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00606335 BTC (15,057.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.09 CZK over 4886 transactions" + } + ] + }, + { + "id": 6595, + "type": "message", + "date": "2025-01-28T13:00:04", + "date_unixtime": "1738065604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003333 BTC for 82.69 CZK @ 2,480,967 CZK\nFees are 0.29043022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.290641684796282318814841125 CZK)\nThe limits being 0.03 % (3.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59532460 BTC (450,027.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 755,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,480,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.20 % (1,026,953.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,675.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00609668 BTC (15,125.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.09 CZK over 4887 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003333 BTC for 82.69 CZK @ 2,480,967 CZK\nFees are 0.29043022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.290641684796282318814841125 CZK)\nThe limits being 0.03 % (3.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59532460 BTC (450,027.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 755,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,480,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.20 % (1,026,953.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,675.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00609668 BTC (15,125.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.09 CZK over 4887 transactions" + } + ] + }, + { + "id": 6596, + "type": "message", + "date": "2025-01-28T17:00:04", + "date_unixtime": "1738080004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003329 BTC for 82.70 CZK @ 2,484,188 CZK\nFees are 0.29045827 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.326072733417418728053494954 CZK)\nThe limits being 0.03 % (3.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59535789 BTC (450,110.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,034 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,484,188 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.58 % (1,028,870.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,592.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00612997 BTC (15,228.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.08 CZK over 4888 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003329 BTC for 82.70 CZK @ 2,484,188 CZK\nFees are 0.29045827 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.326072733417418728053494954 CZK)\nThe limits being 0.03 % (3.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59535789 BTC (450,110.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,034 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,484,188 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.58 % (1,028,870.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,592.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00612997 BTC (15,228.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.08 CZK over 4888 transactions" + } + ] + }, + { + "id": 6597, + "type": "message", + "date": "2025-01-28T21:00:04", + "date_unixtime": "1738094404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003343 BTC for 82.69 CZK @ 2,473,668 CZK\nFees are 0.29044457 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.210351156235854735765532570 CZK)\nThe limits being 0.03 % (3.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59539132 BTC (450,193.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,473,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.15 % (1,022,606.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,509.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00616340 BTC (15,246.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.08 CZK over 4889 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003343 BTC for 82.69 CZK @ 2,473,668 CZK\nFees are 0.29044457 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.210351156235854735765532570 CZK)\nThe limits being 0.03 % (3.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59539132 BTC (450,193.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,473,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.15 % (1,022,606.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,509.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00616340 BTC (15,246.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.08 CZK over 4889 transactions" + } + ] + }, + { + "id": 6598, + "type": "message", + "date": "2025-01-29T01:00:04", + "date_unixtime": "1738108804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003391 BTC for 82.71 CZK @ 2,439,106 CZK\nFees are 0.29049854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (26.830170371849514608043184741 CZK)\nThe limits being 0.03 % (3.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59542523 BTC (450,276.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,439,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 222.54 % (1,002,028.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,426.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00619731 BTC (15,115.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.08 CZK over 4890 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003391 BTC for 82.71 CZK @ 2,439,106 CZK\nFees are 0.29049854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (26.830170371849514608043184741 CZK)\nThe limits being 0.03 % (3.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59542523 BTC (450,276.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,439,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 222.54 % (1,002,028.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,426.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00619731 BTC (15,115.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.08 CZK over 4890 transactions" + } + ] + }, + { + "id": 6599, + "type": "message", + "date": "2025-01-29T05:00:03", + "date_unixtime": "1738123203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003360 BTC for 82.70 CZK @ 2,461,279 CZK\nFees are 0.29045953 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.074074496998600137613590528 CZK)\nThe limits being 0.03 % (3.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59545883 BTC (450,359.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,461,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.43 % (1,015,230.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,343.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00623091 BTC (15,336.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.08 CZK over 4891 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003360 BTC for 82.70 CZK @ 2,461,279 CZK\nFees are 0.29045953 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.074074496998600137613590528 CZK)\nThe limits being 0.03 % (3.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59545883 BTC (450,359.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,461,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.43 % (1,015,230.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,343.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00623091 BTC (15,336.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.08 CZK over 4891 transactions" + } + ] + }, + { + "id": 6600, + "type": "message", + "date": "2025-01-29T09:00:05", + "date_unixtime": "1738137605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003337 BTC for 82.70 CZK @ 2,478,223 CZK\nFees are 0.29045706 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.260448652371778188984643051 CZK)\nThe limits being 0.03 % (3.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59549220 BTC (450,442.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,478,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.62 % (1,025,319.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,260.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00626428 BTC (15,524.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.08 CZK over 4892 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003337 BTC for 82.70 CZK @ 2,478,223 CZK\nFees are 0.29045706 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (27.260448652371778188984643051 CZK)\nThe limits being 0.03 % (3.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59549220 BTC (450,442.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,478,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.62 % (1,025,319.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,260.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00626428 BTC (15,524.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.08 CZK over 4892 transactions" + } + ] + }, + { + "id": 6601, + "type": "message", + "date": "2025-01-29T13:00:04", + "date_unixtime": "1738152004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003323 BTC for 82.71 CZK @ 2,488,984 CZK\nFees are 0.29049451 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.378827835047991074273446490 CZK)\nThe limits being 0.03 % (3.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59552543 BTC (450,525.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,488,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.01 % (1,031,727.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,177.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00629751 BTC (15,674.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.08 CZK over 4893 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003323 BTC for 82.71 CZK @ 2,488,984 CZK\nFees are 0.29049451 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.378827835047991074273446490 CZK)\nThe limits being 0.03 % (3.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59552543 BTC (450,525.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,488,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.01 % (1,031,727.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,177.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00629751 BTC (15,674.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.08 CZK over 4893 transactions" + } + ] + }, + { + "id": 6602, + "type": "message", + "date": "2025-01-29T17:00:04", + "date_unixtime": "1738166404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003348 BTC for 82.71 CZK @ 2,470,417 CZK\nFees are 0.29049668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.174589283981572262910160913 CZK)\nThe limits being 0.03 % (3.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59555891 BTC (450,608.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,470,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 226.51 % (1,020,670.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,094.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00633099 BTC (15,640.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.07 CZK over 4894 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003348 BTC for 82.71 CZK @ 2,470,417 CZK\nFees are 0.29049668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.174589283981572262910160913 CZK)\nThe limits being 0.03 % (3.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59555891 BTC (450,608.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,470,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 226.51 % (1,020,670.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,094.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00633099 BTC (15,640.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.07 CZK over 4894 transactions" + } + ] + }, + { + "id": 6603, + "type": "message", + "date": "2025-01-29T21:00:04", + "date_unixtime": "1738180804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003300 BTC for 82.54 CZK @ 2,501,234 CZK\nFees are 0.28990361 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.513569975087194818136522173 CZK)\nThe limits being 0.03 % (3.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59559191 BTC (450,691.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,501,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 230.54 % (1,039,023.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,012.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00636399 BTC (15,917.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.07 CZK over 4895 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003300 BTC for 82.54 CZK @ 2,501,234 CZK\nFees are 0.28990361 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.513569975087194818136522173 CZK)\nThe limits being 0.03 % (3.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59559191 BTC (450,691.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,501,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 230.54 % (1,039,023.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,012.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00636399 BTC (15,917.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.07 CZK over 4895 transactions" + } + ] + }, + { + "id": 6604, + "type": "message", + "date": "2025-01-30T01:00:03", + "date_unixtime": "1738195203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003298 BTC for 82.70 CZK @ 2,507,519 CZK\nFees are 0.29045602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.582713510898634645327164506 CZK)\nThe limits being 0.03 % (4.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59562489 BTC (450,774.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,507,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 231.33 % (1,042,766.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,929.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00639697 BTC (16,040.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.07 CZK over 4896 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003298 BTC for 82.70 CZK @ 2,507,519 CZK\nFees are 0.29045602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.582713510898634645327164506 CZK)\nThe limits being 0.03 % (4.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59562489 BTC (450,774.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,507,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 231.33 % (1,042,766.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,929.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00639697 BTC (16,040.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.07 CZK over 4896 transactions" + } + ] + }, + { + "id": 6605, + "type": "message", + "date": "2025-01-30T05:00:04", + "date_unixtime": "1738209604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003261 BTC for 82.71 CZK @ 2,536,238 CZK\nFees are 0.29048666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.898615554849654543962735762 CZK)\nThe limits being 0.03 % (4.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59565750 BTC (450,857.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 756,907 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,536,238 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.08 % (1,059,871.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,846.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00642958 BTC (16,306.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.07 CZK over 4897 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003261 BTC for 82.71 CZK @ 2,536,238 CZK\nFees are 0.29048666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.898615554849654543962735762 CZK)\nThe limits being 0.03 % (4.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59565750 BTC (450,857.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 756,907 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,536,238 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.08 % (1,059,871.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,846.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00642958 BTC (16,306.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.07 CZK over 4897 transactions" + } + ] + }, + { + "id": 6606, + "type": "message", + "date": "2025-01-30T09:00:04", + "date_unixtime": "1738224004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003256 BTC for 82.69 CZK @ 2,539,679 CZK\nFees are 0.29043483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.936472632946848193484964783 CZK)\nThe limits being 0.03 % (4.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59569006 BTC (450,940.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,539,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 235.49 % (1,061,921.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,763.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00646214 BTC (16,411.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.07 CZK over 4898 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003256 BTC for 82.69 CZK @ 2,539,679 CZK\nFees are 0.29043483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.936472632946848193484964783 CZK)\nThe limits being 0.03 % (4.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59569006 BTC (450,940.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,539,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 235.49 % (1,061,921.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,763.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00646214 BTC (16,411.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.07 CZK over 4898 transactions" + } + ] + }, + { + "id": 6607, + "type": "message", + "date": "2025-01-30T13:00:04", + "date_unixtime": "1738238404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003248 BTC for 82.70 CZK @ 2,546,328 CZK\nFees are 0.29047968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (28.009606377678126557050323866 CZK)\nThe limits being 0.03 % (4.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59572254 BTC (451,023.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,546,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.33 % (1,065,881.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,680.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00649462 BTC (16,537.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.06 CZK over 4899 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003248 BTC for 82.70 CZK @ 2,546,328 CZK\nFees are 0.29047968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (28.009606377678126557050323866 CZK)\nThe limits being 0.03 % (4.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59572254 BTC (451,023.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,546,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.33 % (1,065,881.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,680.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00649462 BTC (16,537.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.06 CZK over 4899 transactions" + } + ] + }, + { + "id": 6608, + "type": "message", + "date": "2025-01-30T17:00:08", + "date_unixtime": "1738252808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003245 BTC for 82.69 CZK @ 2,548,378 CZK\nFees are 0.29044504 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (28.032157418526682036600711071 CZK)\nThe limits being 0.03 % (4.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59575499 BTC (451,106.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,548,378 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.55 % (1,067,102.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,597.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00652707 BTC (16,633.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.06 CZK over 4900 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003245 BTC for 82.69 CZK @ 2,548,378 CZK\nFees are 0.29044504 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (28.032157418526682036600711071 CZK)\nThe limits being 0.03 % (4.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59575499 BTC (451,106.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,548,378 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.55 % (1,067,102.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,597.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00652707 BTC (16,633.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.06 CZK over 4900 transactions" + } + ] + }, + { + "id": 6609, + "type": "message", + "date": "2025-01-30T21:00:04", + "date_unixtime": "1738267204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003241 BTC for 82.69 CZK @ 2,551,477 CZK\nFees are 0.29043975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (28.066243122843574179664601849 CZK)\nThe limits being 0.03 % (4.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59578740 BTC (451,189.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,551,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.92 % (1,068,948.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,514.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00655948 BTC (16,736.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.06 CZK over 4901 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003241 BTC for 82.69 CZK @ 2,551,477 CZK\nFees are 0.29043975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (28.066243122843574179664601849 CZK)\nThe limits being 0.03 % (4.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59578740 BTC (451,189.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,551,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.92 % (1,068,948.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,514.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00655948 BTC (16,736.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.06 CZK over 4901 transactions" + } + ] + }, + { + "id": 6610, + "type": "message", + "date": "2025-01-31T01:00:04", + "date_unixtime": "1738281604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003249 BTC for 82.69 CZK @ 2,544,945 CZK\nFees are 0.29041136 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.994399584832587329388690827 CZK)\nThe limits being 0.03 % (4.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59581989 BTC (451,272.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,544,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.01 % (1,065,056.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,431.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00659197 BTC (16,776.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.06 CZK over 4902 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003249 BTC for 82.69 CZK @ 2,544,945 CZK\nFees are 0.29041136 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.994399584832587329388690827 CZK)\nThe limits being 0.03 % (4.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59581989 BTC (451,272.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,544,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.01 % (1,065,056.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,431.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00659197 BTC (16,776.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.06 CZK over 4902 transactions" + } + ] + }, + { + "id": 6611, + "type": "message", + "date": "2025-01-31T05:00:04", + "date_unixtime": "1738296004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003261 BTC for 82.70 CZK @ 2,535,952 CZK\nFees are 0.29045393 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.895472742365840991671743196 CZK)\nThe limits being 0.03 % (4.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59585250 BTC (451,355.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,535,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 234.78 % (1,059,697.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,348.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00662458 BTC (16,799.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.06 CZK over 4903 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003261 BTC for 82.70 CZK @ 2,535,952 CZK\nFees are 0.29045393 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.895472742365840991671743196 CZK)\nThe limits being 0.03 % (4.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59585250 BTC (451,355.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,535,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 234.78 % (1,059,697.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,348.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00662458 BTC (16,799.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.06 CZK over 4903 transactions" + } + ] + }, + { + "id": 6612, + "type": "message", + "date": "2025-01-31T09:00:03", + "date_unixtime": "1738310403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003269 BTC for 82.70 CZK @ 2,529,750 CZK\nFees are 0.29045435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.827246195367300407582333048 CZK)\nThe limits being 0.03 % (4.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59588519 BTC (451,438.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,529,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 233.92 % (1,056,001.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,265.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00665727 BTC (16,841.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.06 CZK over 4904 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003269 BTC for 82.70 CZK @ 2,529,750 CZK\nFees are 0.29045435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (27.827246195367300407582333048 CZK)\nThe limits being 0.03 % (4.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59588519 BTC (451,438.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,529,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 233.92 % (1,056,001.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,265.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00665727 BTC (16,841.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.06 CZK over 4904 transactions" + } + ] + }, + { + "id": 6613, + "type": "message", + "date": "2025-01-31T13:00:03", + "date_unixtime": "1738324803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003242 BTC for 82.71 CZK @ 2,551,063 CZK\nFees are 0.29048222 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (28.061688804483505755764755495 CZK)\nThe limits being 0.03 % (4.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59591761 BTC (451,521.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,551,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 236.69 % (1,068,701.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,182.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00668969 BTC (17,065.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.05 CZK over 4905 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003242 BTC for 82.71 CZK @ 2,551,063 CZK\nFees are 0.29048222 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (28.061688804483505755764755495 CZK)\nThe limits being 0.03 % (4.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59591761 BTC (451,521.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,551,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 236.69 % (1,068,701.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,182.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00668969 BTC (17,065.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.05 CZK over 4905 transactions" + } + ] + }, + { + "id": 6614, + "type": "message", + "date": "2025-01-31T17:00:04", + "date_unixtime": "1738339204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003222 BTC for 82.69 CZK @ 2,566,340 CZK\nFees are 0.29041904 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (28.229735416730456437849277992 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59594983 BTC (451,604.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,566,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 238.66 % (1,077,805.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,099.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00672191 BTC (17,250.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.05 CZK over 4906 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003222 BTC for 82.69 CZK @ 2,566,340 CZK\nFees are 0.29041904 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (28.229735416730456437849277992 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59594983 BTC (451,604.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,566,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 238.66 % (1,077,805.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,099.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00672191 BTC (17,250.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.05 CZK over 4906 transactions" + } + ] + }, + { + "id": 6615, + "type": "message", + "date": "2025-01-31T21:00:04", + "date_unixtime": "1738353604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003317 BTC for 82.70 CZK @ 2,493,312 CZK\nFees are 0.29047418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.426433137921405319548598297 CZK)\nThe limits being 0.03 % (4.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59598300 BTC (451,687.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,886 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,493,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.98 % (1,034,284.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,016.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00675508 BTC (16,842.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.05 CZK over 4907 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003317 BTC for 82.70 CZK @ 2,493,312 CZK\nFees are 0.29047418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.426433137921405319548598297 CZK)\nThe limits being 0.03 % (4.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59598300 BTC (451,687.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,886 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,493,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.98 % (1,034,284.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,016.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00675508 BTC (16,842.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.05 CZK over 4907 transactions" + } + ] + }, + { + "id": 6616, + "type": "message", + "date": "2025-02-01T01:00:04", + "date_unixtime": "1738368004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003310 BTC for 82.70 CZK @ 2,498,613 CZK\nFees are 0.29047747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.484746051358011310865144203 CZK)\nThe limits being 0.03 % (4.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59601610 BTC (451,770.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 757,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,498,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.64 % (1,037,443.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,933.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00678818 BTC (16,961.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.05 CZK over 4908 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003310 BTC for 82.70 CZK @ 2,498,613 CZK\nFees are 0.29047747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.484746051358011310865144203 CZK)\nThe limits being 0.03 % (4.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59601610 BTC (451,770.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 757,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,498,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.64 % (1,037,443.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,933.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00678818 BTC (16,961.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.05 CZK over 4908 transactions" + } + ] + }, + { + "id": 6617, + "type": "message", + "date": "2025-02-01T05:00:05", + "date_unixtime": "1738382405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003313 BTC for 82.71 CZK @ 2,496,493 CZK\nFees are 0.29049403 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.461423090718855872842275099 CZK)\nThe limits being 0.03 % (4.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59604923 BTC (451,853.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,081 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,496,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.32 % (1,036,179.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,850.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00682131 BTC (17,029.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.05 CZK over 4909 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003313 BTC for 82.71 CZK @ 2,496,493 CZK\nFees are 0.29049403 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.461423090718855872842275099 CZK)\nThe limits being 0.03 % (4.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59604923 BTC (451,853.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,081 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,496,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.32 % (1,036,179.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,850.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00682131 BTC (17,029.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.05 CZK over 4909 transactions" + } + ] + }, + { + "id": 6618, + "type": "message", + "date": "2025-02-01T09:00:04", + "date_unixtime": "1738396804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003315 BTC for 82.70 CZK @ 2,494,761 CZK\nFees are 0.29046770 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.442367737954865361881980189 CZK)\nThe limits being 0.03 % (4.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59608238 BTC (451,936.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,178 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,494,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.05 % (1,035,146.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,767.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00685446 BTC (17,100.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.04 CZK over 4910 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003315 BTC for 82.70 CZK @ 2,494,761 CZK\nFees are 0.29046770 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.442367737954865361881980189 CZK)\nThe limits being 0.03 % (4.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59608238 BTC (451,936.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,178 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,494,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.05 % (1,035,146.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,767.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00685446 BTC (17,100.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.04 CZK over 4910 transactions" + } + ] + }, + { + "id": 6619, + "type": "message", + "date": "2025-02-01T13:00:07", + "date_unixtime": "1738411207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003321 BTC for 82.70 CZK @ 2,490,135 CZK\nFees are 0.29045391 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.391487296719836489180370959 CZK)\nThe limits being 0.03 % (4.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59611559 BTC (452,019.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,490,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.39 % (1,032,389.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,684.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00688767 BTC (17,151.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.04 CZK over 4911 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003321 BTC for 82.70 CZK @ 2,490,135 CZK\nFees are 0.29045391 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.391487296719836489180370959 CZK)\nThe limits being 0.03 % (4.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59611559 BTC (452,019.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,490,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.39 % (1,032,389.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,684.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00688767 BTC (17,151.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.04 CZK over 4911 transactions" + } + ] + }, + { + "id": 6620, + "type": "message", + "date": "2025-02-01T17:00:04", + "date_unixtime": "1738425604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003320 BTC for 82.71 CZK @ 2,491,185 CZK\nFees are 0.29048884 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.403032986955295021641123536 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59614879 BTC (452,102.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,491,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 228.49 % (1,033,014.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,601.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00692087 BTC (17,241.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.04 CZK over 4912 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003320 BTC for 82.71 CZK @ 2,491,185 CZK\nFees are 0.29048884 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.403032986955295021641123536 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59614879 BTC (452,102.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,491,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 228.49 % (1,033,014.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,601.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00692087 BTC (17,241.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.04 CZK over 4912 transactions" + } + ] + }, + { + "id": 6621, + "type": "message", + "date": "2025-02-01T21:00:04", + "date_unixtime": "1738440004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003332 BTC for 82.69 CZK @ 2,481,652 CZK\nFees are 0.29042321 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.298173402694411097772442310 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59618211 BTC (452,185.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,481,652 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.19 % (1,027,331.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,518.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00695419 BTC (17,257.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.04 CZK over 4913 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003332 BTC for 82.69 CZK @ 2,481,652 CZK\nFees are 0.29042321 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.298173402694411097772442310 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59618211 BTC (452,185.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,481,652 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.19 % (1,027,331.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,518.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00695419 BTC (17,257.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.04 CZK over 4913 transactions" + } + ] + }, + { + "id": 6622, + "type": "message", + "date": "2025-02-02T01:00:04", + "date_unixtime": "1738454404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003365 BTC for 82.70 CZK @ 2,457,685 CZK\nFees are 0.29046689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.034530224156018570960035123 CZK)\nThe limits being 0.03 % (4.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59621576 BTC (452,268.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,457,685 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 223.99 % (1,013,041.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,435.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00698784 BTC (17,173.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.04 CZK over 4914 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003365 BTC for 82.70 CZK @ 2,457,685 CZK\nFees are 0.29046689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (27.034530224156018570960035123 CZK)\nThe limits being 0.03 % (4.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59621576 BTC (452,268.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,457,685 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 223.99 % (1,013,041.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,435.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00698784 BTC (17,173.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.04 CZK over 4914 transactions" + } + ] + }, + { + "id": 6623, + "type": "message", + "date": "2025-02-02T05:00:04", + "date_unixtime": "1738468804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003410 BTC for 82.69 CZK @ 2,425,014 CZK\nFees are 0.29043846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (26.675158152916405484031695517 CZK)\nThe limits being 0.03 % (4.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59624986 BTC (452,351.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,425,014 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.64 % (993,563.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,352.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00702194 BTC (17,028.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.03 CZK over 4915 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003410 BTC for 82.69 CZK @ 2,425,014 CZK\nFees are 0.29043846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (26.675158152916405484031695517 CZK)\nThe limits being 0.03 % (4.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59624986 BTC (452,351.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,425,014 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.64 % (993,563.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,352.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00702194 BTC (17,028.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.03 CZK over 4915 transactions" + } + ] + }, + { + "id": 6624, + "type": "message", + "date": "2025-02-02T09:00:04", + "date_unixtime": "1738483204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003399 BTC for 82.70 CZK @ 2,433,072 CZK\nFees are 0.29046353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (26.763796427713359229750888075 CZK)\nThe limits being 0.03 % (4.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59628385 BTC (452,434.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,757 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,433,072 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.67 % (998,367.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,269.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00705593 BTC (17,167.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.03 CZK over 4916 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003399 BTC for 82.70 CZK @ 2,433,072 CZK\nFees are 0.29046353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (26.763796427713359229750888075 CZK)\nThe limits being 0.03 % (4.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59628385 BTC (452,434.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,757 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,433,072 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.67 % (998,367.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,269.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00705593 BTC (17,167.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.03 CZK over 4916 transactions" + } + ] + }, + { + "id": 6625, + "type": "message", + "date": "2025-02-02T13:00:03", + "date_unixtime": "1738497603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003427 BTC for 82.69 CZK @ 2,413,019 CZK\nFees are 0.29044252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (26.543204236005611523949805678 CZK)\nThe limits being 0.03 % (4.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59631812 BTC (452,517.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,413,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.98 % (986,409.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,186.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00709020 BTC (17,108.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.03 CZK over 4917 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003427 BTC for 82.69 CZK @ 2,413,019 CZK\nFees are 0.29044252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.16 % (26.543204236005611523949805678 CZK)\nThe limits being 0.03 % (4.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59631812 BTC (452,517.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,413,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.98 % (986,409.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,186.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00709020 BTC (17,108.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.03 CZK over 4917 transactions" + } + ] + }, + { + "id": 6626, + "type": "message", + "date": "2025-02-02T17:00:03", + "date_unixtime": "1738512003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003404 BTC for 82.69 CZK @ 2,429,337 CZK\nFees are 0.29044423 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.722708320232886425126627897 CZK)\nThe limits being 0.03 % (4.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59635216 BTC (452,600.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 758,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,429,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.09 % (996,140.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,103.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00712424 BTC (17,307.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.03 CZK over 4918 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003404 BTC for 82.69 CZK @ 2,429,337 CZK\nFees are 0.29044423 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.722708320232886425126627897 CZK)\nThe limits being 0.03 % (4.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59635216 BTC (452,600.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 758,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,429,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.09 % (996,140.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,103.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00712424 BTC (17,307.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.03 CZK over 4918 transactions" + } + ] + }, + { + "id": 6627, + "type": "message", + "date": "2025-02-02T21:00:04", + "date_unixtime": "1738526404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003420 BTC for 82.70 CZK @ 2,418,007 CZK\nFees are 0.29044846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.598076600028555028161668080 CZK)\nThe limits being 0.03 % (4.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59638636 BTC (452,683.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,418,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.56 % (989,383.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,020.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00715844 BTC (17,309.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.03 CZK over 4919 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003420 BTC for 82.70 CZK @ 2,418,007 CZK\nFees are 0.29044846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.598076600028555028161668080 CZK)\nThe limits being 0.03 % (4.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59638636 BTC (452,683.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,418,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.56 % (989,383.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,020.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00715844 BTC (17,309.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.03 CZK over 4919 transactions" + } + ] + }, + { + "id": 6628, + "type": "message", + "date": "2025-02-03T01:00:04", + "date_unixtime": "1738540804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003422 BTC for 82.70 CZK @ 2,416,794 CZK\nFees are 0.29047252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.584733440264742600197962885 CZK)\nThe limits being 0.03 % (4.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59642058 BTC (452,766.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,416,794 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.36 % (988,659.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,937.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00719266 BTC (17,383.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.03 CZK over 4920 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003422 BTC for 82.70 CZK @ 2,416,794 CZK\nFees are 0.29047252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.584733440264742600197962885 CZK)\nThe limits being 0.03 % (4.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59642058 BTC (452,766.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,416,794 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.36 % (988,659.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,937.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00719266 BTC (17,383.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.03 CZK over 4920 transactions" + } + ] + }, + { + "id": 6629, + "type": "message", + "date": "2025-02-03T05:00:03", + "date_unixtime": "1738555203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003431 BTC for 82.70 CZK @ 2,410,478 CZK\nFees are 0.29047540 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.515260795318977574409125042 CZK)\nThe limits being 0.03 % (4.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59645489 BTC (452,849.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,410,478 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 217.49 % (984,892.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,854.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00722697 BTC (17,420.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.02 CZK over 4921 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003431 BTC for 82.70 CZK @ 2,410,478 CZK\nFees are 0.29047540 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.515260795318977574409125042 CZK)\nThe limits being 0.03 % (4.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59645489 BTC (452,849.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,410,478 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 217.49 % (984,892.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,854.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00722697 BTC (17,420.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.02 CZK over 4921 transactions" + } + ] + }, + { + "id": 6630, + "type": "message", + "date": "2025-02-03T09:00:04", + "date_unixtime": "1738569604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003480 BTC for 82.70 CZK @ 2,376,422 CZK\nFees are 0.29046122 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.140637823365347719762440652 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59648969 BTC (452,932.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,376,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.96 % (964,578.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,771.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00726177 BTC (17,257.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.02 CZK over 4922 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003480 BTC for 82.70 CZK @ 2,376,422 CZK\nFees are 0.29046122 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.140637823365347719762440652 CZK)\nThe limits being 0.03 % (4.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59648969 BTC (452,932.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,376,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.96 % (964,578.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,771.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00726177 BTC (17,257.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.02 CZK over 4922 transactions" + } + ] + }, + { + "id": 6631, + "type": "message", + "date": "2025-02-03T13:00:04", + "date_unixtime": "1738584004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003510 BTC for 82.70 CZK @ 2,356,071 CZK\nFees are 0.29045638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (25.916781520802547210120702897 CZK)\nThe limits being 0.03 % (4.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59652479 BTC (453,015.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,356,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.24 % (952,439.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,688.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00729687 BTC (17,191.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.02 CZK over 4923 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003510 BTC for 82.70 CZK @ 2,356,071 CZK\nFees are 0.29045638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (25.916781520802547210120702897 CZK)\nThe limits being 0.03 % (4.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59652479 BTC (453,015.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,356,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.24 % (952,439.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,688.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00729687 BTC (17,191.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.02 CZK over 4923 transactions" + } + ] + }, + { + "id": 6632, + "type": "message", + "date": "2025-02-03T17:00:03", + "date_unixtime": "1738598403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003400 BTC for 82.69 CZK @ 2,432,045 CZK\nFees are 0.29042628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.752493338022802544037046807 CZK)\nThe limits being 0.03 % (4.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59655879 BTC (453,098.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,520 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,432,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 220.21 % (997,759.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,605.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00733087 BTC (17,829.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.02 CZK over 4924 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003400 BTC for 82.69 CZK @ 2,432,045 CZK\nFees are 0.29042628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.752493338022802544037046807 CZK)\nThe limits being 0.03 % (4.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59655879 BTC (453,098.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,520 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,432,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 220.21 % (997,759.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,605.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00733087 BTC (17,829.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.02 CZK over 4924 transactions" + } + ] + }, + { + "id": 6633, + "type": "message", + "date": "2025-02-03T21:00:07", + "date_unixtime": "1738612807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003303 BTC for 82.71 CZK @ 2,503,985 CZK\nFees are 0.29048630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (27.543830882857621696752857580 CZK)\nThe limits being 0.03 % (4.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59659182 BTC (453,181.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,617 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,503,985 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 229.64 % (1,040,675.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,522.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00736390 BTC (18,439.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.02 CZK over 4925 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003303 BTC for 82.71 CZK @ 2,503,985 CZK\nFees are 0.29048630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (27.543830882857621696752857580 CZK)\nThe limits being 0.03 % (4.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59659182 BTC (453,181.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,617 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,503,985 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 229.64 % (1,040,675.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,522.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00736390 BTC (18,439.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.02 CZK over 4925 transactions" + } + ] + }, + { + "id": 6634, + "type": "message", + "date": "2025-02-04T01:00:07", + "date_unixtime": "1738627207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003325 BTC for 82.71 CZK @ 2,487,524 CZK\nFees are 0.29049877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (27.362760905852074131517133641 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59662507 BTC (453,264.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,487,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 227.43 % (1,030,854.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,439.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00739715 BTC (18,400.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.01 CZK over 4926 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003325 BTC for 82.71 CZK @ 2,487,524 CZK\nFees are 0.29049877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (27.362760905852074131517133641 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59662507 BTC (453,264.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,487,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 227.43 % (1,030,854.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,439.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00739715 BTC (18,400.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.01 CZK over 4926 transactions" + } + ] + }, + { + "id": 6635, + "type": "message", + "date": "2025-02-04T05:00:04", + "date_unixtime": "1738641604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003342 BTC for 82.69 CZK @ 2,474,337 CZK\nFees are 0.29043617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (27.217706432930583770686499110 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59665849 BTC (453,347.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,474,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 225.65 % (1,022,987.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,356.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00743057 BTC (18,385.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.01 CZK over 4927 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003342 BTC for 82.69 CZK @ 2,474,337 CZK\nFees are 0.29043617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (27.217706432930583770686499110 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59665849 BTC (453,347.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,474,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 225.65 % (1,022,987.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,356.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00743057 BTC (18,385.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.01 CZK over 4927 transactions" + } + ] + }, + { + "id": 6636, + "type": "message", + "date": "2025-02-04T09:00:04", + "date_unixtime": "1738656004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003422 BTC for 82.70 CZK @ 2,416,854 CZK\nFees are 0.29047975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.585395084766147239774756791 CZK)\nThe limits being 0.03 % (4.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59669271 BTC (453,430.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 759,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,416,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.05 % (988,689.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,273.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00746479 BTC (18,041.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.01 CZK over 4928 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003422 BTC for 82.70 CZK @ 2,416,854 CZK\nFees are 0.29047975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.585395084766147239774756791 CZK)\nThe limits being 0.03 % (4.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59669271 BTC (453,430.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 759,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,416,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.05 % (988,689.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,273.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00746479 BTC (18,041.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.01 CZK over 4928 transactions" + } + ] + }, + { + "id": 6637, + "type": "message", + "date": "2025-02-04T13:00:08", + "date_unixtime": "1738670408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003406 BTC for 82.70 CZK @ 2,427,969 CZK\nFees are 0.29045118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.707655912175851928701687369 CZK)\nThe limits being 0.03 % (4.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59672677 BTC (453,513.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,427,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 219.47 % (995,320.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,190.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00749885 BTC (18,206.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.01 CZK over 4929 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003406 BTC for 82.70 CZK @ 2,427,969 CZK\nFees are 0.29045118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.707655912175851928701687369 CZK)\nThe limits being 0.03 % (4.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59672677 BTC (453,513.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,427,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 219.47 % (995,320.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,190.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00749885 BTC (18,206.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.01 CZK over 4929 transactions" + } + ] + }, + { + "id": 6638, + "type": "message", + "date": "2025-02-04T17:00:08", + "date_unixtime": "1738684808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003415 BTC for 82.70 CZK @ 2,421,791 CZK\nFees are 0.29047774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.639705047852282749760902726 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59676092 BTC (453,596.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,421,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 218.62 % (991,634.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,107.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00753300 BTC (18,243.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.01 CZK over 4930 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003415 BTC for 82.70 CZK @ 2,421,791 CZK\nFees are 0.29047774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.639705047852282749760902726 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59676092 BTC (453,596.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,421,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 218.62 % (991,634.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,107.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00753300 BTC (18,243.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.01 CZK over 4930 transactions" + } + ] + }, + { + "id": 6639, + "type": "message", + "date": "2025-02-04T21:00:04", + "date_unixtime": "1738699204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003435 BTC for 82.71 CZK @ 2,407,774 CZK\nFees are 0.29048773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.485508856121478754490288358 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59679527 BTC (453,679.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,407,774 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 216.73 % (983,268.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,024.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00756735 BTC (18,220.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.01 CZK over 4931 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003435 BTC for 82.71 CZK @ 2,407,774 CZK\nFees are 0.29048773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.15 % (26.485508856121478754490288358 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59679527 BTC (453,679.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,407,774 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 216.73 % (983,268.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,024.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00756735 BTC (18,220.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.01 CZK over 4931 transactions" + } + ] + }, + { + "id": 6640, + "type": "message", + "date": "2025-02-05T01:00:04", + "date_unixtime": "1738713604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003469 BTC for 82.69 CZK @ 2,383,717 CZK\nFees are 0.29043194 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.220884241562717286843984941 CZK)\nThe limits being 0.03 % (4.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59682996 BTC (453,762.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,287 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,383,717 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.53 % (968,911.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,941.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00760204 BTC (18,121.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.00 CZK over 4932 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003469 BTC for 82.69 CZK @ 2,383,717 CZK\nFees are 0.29043194 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.220884241562717286843984941 CZK)\nThe limits being 0.03 % (4.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59682996 BTC (453,762.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,287 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,383,717 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.53 % (968,911.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,941.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00760204 BTC (18,121.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.00 CZK over 4932 transactions" + } + ] + }, + { + "id": 6641, + "type": "message", + "date": "2025-02-05T05:00:04", + "date_unixtime": "1738728004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,040 CZK\nFees are 0.29045550 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.268445435489215409940461057 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59686459 BTC (453,845.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.06 % (971,491.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,858.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00763667 BTC (18,236.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.00 CZK over 4933 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,040 CZK\nFees are 0.29045550 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.268445435489215409940461057 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59686459 BTC (453,845.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.06 % (971,491.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,858.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00763667 BTC (18,236.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.00 CZK over 4933 transactions" + } + ] + }, + { + "id": 6642, + "type": "message", + "date": "2025-02-05T09:00:05", + "date_unixtime": "1738742405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003476 BTC for 82.69 CZK @ 2,378,939 CZK\nFees are 0.29043468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.168327634923337937472012513 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59689935 BTC (453,928.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,378,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.82 % (966,059.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,775.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00767143 BTC (18,249.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.00 CZK over 4934 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003476 BTC for 82.69 CZK @ 2,378,939 CZK\nFees are 0.29043468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.168327634923337937472012513 CZK)\nThe limits being 0.03 % (4.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59689935 BTC (453,928.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,378,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.82 % (966,059.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,775.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00767143 BTC (18,249.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.00 CZK over 4934 transactions" + } + ] + }, + { + "id": 6643, + "type": "message", + "date": "2025-02-05T13:00:05", + "date_unixtime": "1738756805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003468 BTC for 82.71 CZK @ 2,384,860 CZK\nFees are 0.29048742 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.233455481075750444378929800 CZK)\nThe limits being 0.03 % (4.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59693403 BTC (454,011.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,572 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,384,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.56 % (969,592.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,692.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00770611 BTC (18,377.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.00 CZK over 4935 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003468 BTC for 82.71 CZK @ 2,384,860 CZK\nFees are 0.29048742 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.233455481075750444378929800 CZK)\nThe limits being 0.03 % (4.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59693403 BTC (454,011.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,572 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,384,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.56 % (969,592.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,692.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00770611 BTC (18,377.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.00 CZK over 4935 transactions" + } + ] + }, + { + "id": 6644, + "type": "message", + "date": "2025-02-05T17:00:03", + "date_unixtime": "1738771203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003479 BTC for 82.70 CZK @ 2,377,158 CZK\nFees are 0.29046779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.148742964441929532923929797 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59696882 BTC (454,094.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,666 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,377,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.51 % (964,995.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,609.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00774090 BTC (18,401.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 92.00 CZK over 4936 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003479 BTC for 82.70 CZK @ 2,377,158 CZK\nFees are 0.29046779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.148742964441929532923929797 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59696882 BTC (454,094.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,666 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,377,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.51 % (964,995.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,609.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00774090 BTC (18,401.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 92.00 CZK over 4936 transactions" + } + ] + }, + { + "id": 6645, + "type": "message", + "date": "2025-02-05T21:00:04", + "date_unixtime": "1738785604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003495 BTC for 82.70 CZK @ 2,366,249 CZK\nFees are 0.29046453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.028742754579287230031085762 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59700377 BTC (454,177.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,761 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,366,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.04 % (958,482.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,526.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00777585 BTC (18,399.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.99 CZK over 4937 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003495 BTC for 82.70 CZK @ 2,366,249 CZK\nFees are 0.29046453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.028742754579287230031085762 CZK)\nThe limits being 0.03 % (4.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59700377 BTC (454,177.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,761 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,366,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.04 % (958,482.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,526.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00777585 BTC (18,399.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.99 CZK over 4937 transactions" + } + ] + }, + { + "id": 6646, + "type": "message", + "date": "2025-02-06T01:00:04", + "date_unixtime": "1738800004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003519 BTC for 82.69 CZK @ 2,349,875 CZK\nFees are 0.29043529 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.848621136055066148842789934 CZK)\nThe limits being 0.03 % (4.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59703896 BTC (454,260.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,349,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.85 % (948,706.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,443.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00781104 BTC (18,354.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.99 CZK over 4938 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003519 BTC for 82.69 CZK @ 2,349,875 CZK\nFees are 0.29043529 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.848621136055066148842789934 CZK)\nThe limits being 0.03 % (4.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59703896 BTC (454,260.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,349,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.85 % (948,706.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,443.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00781104 BTC (18,354.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.99 CZK over 4938 transactions" + } + ] + }, + { + "id": 6647, + "type": "message", + "date": "2025-02-06T05:00:04", + "date_unixtime": "1738814404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003491 BTC for 82.71 CZK @ 2,369,163 CZK\nFees are 0.29048930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.060788390161789794156430724 CZK)\nThe limits being 0.03 % (4.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59707387 BTC (454,343.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 760,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.34 % (960,222.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,360.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00784595 BTC (18,588.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.99 CZK over 4939 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003491 BTC for 82.71 CZK @ 2,369,163 CZK\nFees are 0.29048930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.060788390161789794156430724 CZK)\nThe limits being 0.03 % (4.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59707387 BTC (454,343.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 760,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.34 % (960,222.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,360.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00784595 BTC (18,588.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.99 CZK over 4939 transactions" + } + ] + }, + { + "id": 6648, + "type": "message", + "date": "2025-02-06T09:00:05", + "date_unixtime": "1738828805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003461 BTC for 82.70 CZK @ 2,389,603 CZK\nFees are 0.29047773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.285637158705006329335335572 CZK)\nThe limits being 0.03 % (4.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59710848 BTC (454,425.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,389,603 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.99 % (972,426.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,277.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00788056 BTC (18,831.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.99 CZK over 4940 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003461 BTC for 82.70 CZK @ 2,389,603 CZK\nFees are 0.29047773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.285637158705006329335335572 CZK)\nThe limits being 0.03 % (4.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59710848 BTC (454,425.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,389,603 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.99 % (972,426.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,277.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00788056 BTC (18,831.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.99 CZK over 4940 transactions" + } + ] + }, + { + "id": 6649, + "type": "message", + "date": "2025-02-06T13:00:07", + "date_unixtime": "1738843207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,948 CZK\nFees are 0.29044837 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.443428283855343507027728531 CZK)\nThe limits being 0.03 % (4.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59714288 BTC (454,508.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 215.84 % (980,991.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,194.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00791496 BTC (19,027.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.99 CZK over 4941 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,948 CZK\nFees are 0.29044837 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.443428283855343507027728531 CZK)\nThe limits being 0.03 % (4.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59714288 BTC (454,508.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 215.84 % (980,991.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,194.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00791496 BTC (19,027.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.99 CZK over 4941 transactions" + } + ] + }, + { + "id": 6650, + "type": "message", + "date": "2025-02-06T17:00:04", + "date_unixtime": "1738857604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003498 BTC for 82.70 CZK @ 2,364,309 CZK\nFees are 0.29047541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.007393697530341916499797877 CZK)\nThe limits being 0.03 % (4.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59717786 BTC (454,591.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,364,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.59 % (957,320.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,111.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00794994 BTC (18,796.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.99 CZK over 4942 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003498 BTC for 82.70 CZK @ 2,364,309 CZK\nFees are 0.29047541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.007393697530341916499797877 CZK)\nThe limits being 0.03 % (4.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59717786 BTC (454,591.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,364,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.59 % (957,320.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,111.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00794994 BTC (18,796.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.99 CZK over 4942 transactions" + } + ] + }, + { + "id": 6651, + "type": "message", + "date": "2025-02-06T21:00:04", + "date_unixtime": "1738872004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003549 BTC for 82.69 CZK @ 2,329,893 CZK\nFees are 0.29042058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.628822916916742373796530402 CZK)\nThe limits being 0.03 % (4.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59721335 BTC (454,674.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.03 % (936,768.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,028.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00798543 BTC (18,605.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.98 CZK over 4943 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003549 BTC for 82.69 CZK @ 2,329,893 CZK\nFees are 0.29042058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.628822916916742373796530402 CZK)\nThe limits being 0.03 % (4.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59721335 BTC (454,674.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.03 % (936,768.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,028.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00798543 BTC (18,605.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.98 CZK over 4943 transactions" + } + ] + }, + { + "id": 6652, + "type": "message", + "date": "2025-02-07T01:00:07", + "date_unixtime": "1738886407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003527 BTC for 82.70 CZK @ 2,344,629 CZK\nFees are 0.29044569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.790914730679649861718744811 CZK)\nThe limits being 0.03 % (4.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59724862 BTC (454,757.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,421 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,344,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.93 % (945,568.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,945.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00802070 BTC (18,805.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.98 CZK over 4944 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003527 BTC for 82.70 CZK @ 2,344,629 CZK\nFees are 0.29044569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.790914730679649861718744811 CZK)\nThe limits being 0.03 % (4.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59724862 BTC (454,757.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,421 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,344,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.93 % (945,568.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,945.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00802070 BTC (18,805.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.98 CZK over 4944 transactions" + } + ] + }, + { + "id": 6653, + "type": "message", + "date": "2025-02-07T05:00:03", + "date_unixtime": "1738900803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003498 BTC for 82.69 CZK @ 2,364,055 CZK\nFees are 0.29044425 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.004603764183847101183593273 CZK)\nThe limits being 0.03 % (4.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59728360 BTC (454,840.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,364,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.44 % (957,170.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,862.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00805568 BTC (19,044.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.98 CZK over 4945 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003498 BTC for 82.69 CZK @ 2,364,055 CZK\nFees are 0.29044425 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.004603764183847101183593273 CZK)\nThe limits being 0.03 % (4.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59728360 BTC (454,840.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,364,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.44 % (957,170.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,862.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00805568 BTC (19,044.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.98 CZK over 4945 transactions" + } + ] + }, + { + "id": 6654, + "type": "message", + "date": "2025-02-07T09:00:07", + "date_unixtime": "1738915207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003521 BTC for 82.69 CZK @ 2,348,423 CZK\nFees are 0.29042084 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.832653455026124836856857291 CZK)\nThe limits being 0.03 % (4.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59731881 BTC (454,923.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,348,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.35 % (947,833.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,779.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00809089 BTC (19,000.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.98 CZK over 4946 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003521 BTC for 82.69 CZK @ 2,348,423 CZK\nFees are 0.29042084 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (25.832653455026124836856857291 CZK)\nThe limits being 0.03 % (4.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59731881 BTC (454,923.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,348,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.35 % (947,833.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,779.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00809089 BTC (19,000.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.98 CZK over 4946 transactions" + } + ] + }, + { + "id": 6655, + "type": "message", + "date": "2025-02-07T13:00:07", + "date_unixtime": "1738929607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003487 BTC for 82.71 CZK @ 2,371,816 CZK\nFees are 0.29048144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.089977928983573266438129010 CZK)\nThe limits being 0.03 % (4.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59735368 BTC (455,006.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,371,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.38 % (961,806.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,696.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00812576 BTC (19,272.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.98 CZK over 4947 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003487 BTC for 82.71 CZK @ 2,371,816 CZK\nFees are 0.29048144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (26.089977928983573266438129010 CZK)\nThe limits being 0.03 % (4.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59735368 BTC (455,006.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,371,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.38 % (961,806.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,696.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00812576 BTC (19,272.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.98 CZK over 4947 transactions" + } + ] + }, + { + "id": 6656, + "type": "message", + "date": "2025-02-07T17:00:04", + "date_unixtime": "1738944004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003457 BTC for 82.70 CZK @ 2,392,174 CZK\nFees are 0.29045411 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.313911424275954033604397913 CZK)\nThe limits being 0.03 % (4.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59738825 BTC (455,089.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,392,174 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.02 % (973,966.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,613.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00816033 BTC (19,520.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.97 CZK over 4948 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003457 BTC for 82.70 CZK @ 2,392,174 CZK\nFees are 0.29045411 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.313911424275954033604397913 CZK)\nThe limits being 0.03 % (4.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59738825 BTC (455,089.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,392,174 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.02 % (973,966.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,613.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00816033 BTC (19,520.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.97 CZK over 4948 transactions" + } + ] + }, + { + "id": 6657, + "type": "message", + "date": "2025-02-07T21:00:04", + "date_unixtime": "1738958404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003493 BTC for 82.71 CZK @ 2,367,866 CZK\nFees are 0.29049669 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.046529954777517166869863295 CZK)\nThe limits being 0.03 % (4.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59742318 BTC (455,172.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,367,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.79 % (959,445.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,530.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00819526 BTC (19,405.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.97 CZK over 4949 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003493 BTC for 82.71 CZK @ 2,367,866 CZK\nFees are 0.29049669 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.046529954777517166869863295 CZK)\nThe limits being 0.03 % (4.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59742318 BTC (455,172.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,367,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.79 % (959,445.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,530.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00819526 BTC (19,405.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.97 CZK over 4949 transactions" + } + ] + }, + { + "id": 6658, + "type": "message", + "date": "2025-02-08T01:00:04", + "date_unixtime": "1738972804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003508 BTC for 82.69 CZK @ 2,357,212 CZK\nFees are 0.29043144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.929330706552152983372335934 CZK)\nThe limits being 0.03 % (4.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59745826 BTC (455,255.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 761,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,357,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.35 % (953,079.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,447.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00823034 BTC (19,400.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.97 CZK over 4950 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003508 BTC for 82.69 CZK @ 2,357,212 CZK\nFees are 0.29043144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.929330706552152983372335934 CZK)\nThe limits being 0.03 % (4.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59745826 BTC (455,255.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 761,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,357,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.35 % (953,079.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,447.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00823034 BTC (19,400.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.97 CZK over 4950 transactions" + } + ] + }, + { + "id": 6659, + "type": "message", + "date": "2025-02-08T05:00:04", + "date_unixtime": "1738987204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003497 BTC for 82.71 CZK @ 2,365,183 CZK\nFees are 0.29049974 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.017009594813919084177640197 CZK)\nThe limits being 0.03 % (4.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59749323 BTC (455,338.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,365,183 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.36 % (957,841.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,364.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00826531 BTC (19,548.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.97 CZK over 4951 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003497 BTC for 82.71 CZK @ 2,365,183 CZK\nFees are 0.29049974 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.017009594813919084177640197 CZK)\nThe limits being 0.03 % (4.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59749323 BTC (455,338.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,365,183 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.36 % (957,841.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,364.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00826531 BTC (19,548.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.97 CZK over 4951 transactions" + } + ] + }, + { + "id": 6660, + "type": "message", + "date": "2025-02-08T09:00:04", + "date_unixtime": "1739001604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003514 BTC for 82.69 CZK @ 2,353,140 CZK\nFees are 0.29042560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.884537389483988737200106969 CZK)\nThe limits being 0.03 % (4.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59752837 BTC (455,421.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,353,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.74 % (950,645.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,281.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00830045 BTC (19,532.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.97 CZK over 4952 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003514 BTC for 82.69 CZK @ 2,353,140 CZK\nFees are 0.29042560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.884537389483988737200106969 CZK)\nThe limits being 0.03 % (4.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59752837 BTC (455,421.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,353,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.74 % (950,645.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,281.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00830045 BTC (19,532.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.97 CZK over 4952 transactions" + } + ] + }, + { + "id": 6661, + "type": "message", + "date": "2025-02-08T13:00:04", + "date_unixtime": "1739016004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003522 BTC for 82.69 CZK @ 2,347,735 CZK\nFees are 0.29041825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.825088655916670981490959947 CZK)\nThe limits being 0.03 % (4.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59756359 BTC (455,504.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,347,735 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.99 % (947,416.34 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,198.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00833567 BTC (19,569.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.97 CZK over 4953 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003522 BTC for 82.69 CZK @ 2,347,735 CZK\nFees are 0.29041825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.825088655916670981490959947 CZK)\nThe limits being 0.03 % (4.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59756359 BTC (455,504.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,347,735 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.99 % (947,416.34 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,198.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00833567 BTC (19,569.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.97 CZK over 4953 transactions" + } + ] + }, + { + "id": 6662, + "type": "message", + "date": "2025-02-08T17:00:07", + "date_unixtime": "1739030407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003531 BTC for 82.71 CZK @ 2,342,381 CZK\nFees are 0.29049635 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.766191289986604516590686493 CZK)\nThe limits being 0.03 % (4.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59759890 BTC (455,587.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,342,381 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.25 % (944,216.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,115.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00837098 BTC (19,608.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.96 CZK over 4954 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003531 BTC for 82.71 CZK @ 2,342,381 CZK\nFees are 0.29049635 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.766191289986604516590686493 CZK)\nThe limits being 0.03 % (4.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59759890 BTC (455,587.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,342,381 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.25 % (944,216.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,115.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00837098 BTC (19,608.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.96 CZK over 4954 transactions" + } + ] + }, + { + "id": 6663, + "type": "message", + "date": "2025-02-08T21:00:08", + "date_unixtime": "1739044808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003502 BTC for 82.71 CZK @ 2,361,696 CZK\nFees are 0.29048624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.978656285240379403100000939 CZK)\nThe limits being 0.03 % (4.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59763392 BTC (455,670.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,361,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.75 % (955,758.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,032.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00840600 BTC (19,852.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.96 CZK over 4955 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003502 BTC for 82.71 CZK @ 2,361,696 CZK\nFees are 0.29048624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.978656285240379403100000939 CZK)\nThe limits being 0.03 % (4.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59763392 BTC (455,670.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,361,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.75 % (955,758.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,032.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00840600 BTC (19,852.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.96 CZK over 4955 transactions" + } + ] + }, + { + "id": 6664, + "type": "message", + "date": "2025-02-09T01:00:04", + "date_unixtime": "1739059204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003508 BTC for 82.70 CZK @ 2,357,504 CZK\nFees are 0.29046738 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.932539681241083800768007525 CZK)\nThe limits being 0.03 % (4.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59766900 BTC (455,753.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,552 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,357,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.16 % (953,253.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,949.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00844108 BTC (19,899.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.96 CZK over 4956 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003508 BTC for 82.70 CZK @ 2,357,504 CZK\nFees are 0.29046738 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.932539681241083800768007525 CZK)\nThe limits being 0.03 % (4.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59766900 BTC (455,753.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,552 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,357,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.16 % (953,253.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,949.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00844108 BTC (19,899.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.96 CZK over 4956 transactions" + } + ] + }, + { + "id": 6665, + "type": "message", + "date": "2025-02-09T05:00:05", + "date_unixtime": "1739073605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003487 BTC for 82.70 CZK @ 2,371,739 CZK\nFees are 0.29047199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.089128818850112932810871728 CZK)\nThe limits being 0.03 % (5.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59770387 BTC (455,836.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,371,739 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.99 % (961,760.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,866.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00847595 BTC (20,102.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.96 CZK over 4957 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003487 BTC for 82.70 CZK @ 2,371,739 CZK\nFees are 0.29047199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.089128818850112932810871728 CZK)\nThe limits being 0.03 % (5.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59770387 BTC (455,836.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,371,739 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.99 % (961,760.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,866.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00847595 BTC (20,102.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.96 CZK over 4957 transactions" + } + ] + }, + { + "id": 6666, + "type": "message", + "date": "2025-02-09T09:00:04", + "date_unixtime": "1739088004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 82.70 CZK @ 2,373,827 CZK\nFees are 0.29047761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.112098902120420091104784230 CZK)\nThe limits being 0.03 % (5.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59773871 BTC (455,919.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.22 % (963,008.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,783.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00851079 BTC (20,203.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.96 CZK over 4958 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 82.70 CZK @ 2,373,827 CZK\nFees are 0.29047761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.112098902120420091104784230 CZK)\nThe limits being 0.03 % (5.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59773871 BTC (455,919.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.22 % (963,008.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,783.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00851079 BTC (20,203.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.96 CZK over 4958 transactions" + } + ] + }, + { + "id": 6667, + "type": "message", + "date": "2025-02-09T13:00:04", + "date_unixtime": "1739102404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003500 BTC for 82.70 CZK @ 2,362,963 CZK\nFees are 0.29047611 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.992594923766816143497757847 CZK)\nThe limits being 0.03 % (5.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59777371 BTC (456,002.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,362,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.76 % (956,514.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,700.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00854579 BTC (20,193.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 4959 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003500 BTC for 82.70 CZK @ 2,362,963 CZK\nFees are 0.29047611 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.992594923766816143497757847 CZK)\nThe limits being 0.03 % (5.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59777371 BTC (456,002.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,362,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.76 % (956,514.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,700.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00854579 BTC (20,193.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 4959 transactions" + } + ] + }, + { + "id": 6668, + "type": "message", + "date": "2025-02-09T17:00:04", + "date_unixtime": "1739116804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003504 BTC for 82.69 CZK @ 2,359,877 CZK\nFees are 0.29042821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.958641545685989447891284614 CZK)\nThe limits being 0.03 % (5.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59780875 BTC (456,085.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 762,929 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,359,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.32 % (954,669.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,617.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00858083 BTC (20,249.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 4960 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003504 BTC for 82.69 CZK @ 2,359,877 CZK\nFees are 0.29042821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.958641545685989447891284614 CZK)\nThe limits being 0.03 % (5.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59780875 BTC (456,085.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 762,929 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,359,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.32 % (954,669.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,617.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00858083 BTC (20,249.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 4960 transactions" + } + ] + }, + { + "id": 6669, + "type": "message", + "date": "2025-02-09T21:00:07", + "date_unixtime": "1739131207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003520 BTC for 82.71 CZK @ 2,349,611 CZK\nFees are 0.29048523 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.845720926756352765321375187 CZK)\nThe limits being 0.03 % (5.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59784395 BTC (456,168.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,349,611 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.93 % (948,531.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,534.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00861603 BTC (20,244.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 4961 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003520 BTC for 82.71 CZK @ 2,349,611 CZK\nFees are 0.29048523 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.845720926756352765321375187 CZK)\nThe limits being 0.03 % (5.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59784395 BTC (456,168.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,349,611 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.93 % (948,531.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,534.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00861603 BTC (20,244.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 4961 transactions" + } + ] + }, + { + "id": 6670, + "type": "message", + "date": "2025-02-10T01:00:04", + "date_unixtime": "1739145604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003514 BTC for 82.70 CZK @ 2,353,566 CZK\nFees are 0.29047819 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.889224037156236609544454398 CZK)\nThe limits being 0.03 % (5.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59787909 BTC (456,251.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,353,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 208.41 % (950,896.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,451.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00865117 BTC (20,361.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 4962 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003514 BTC for 82.70 CZK @ 2,353,566 CZK\nFees are 0.29047819 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (25.889224037156236609544454398 CZK)\nThe limits being 0.03 % (5.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59787909 BTC (456,251.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,353,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 208.41 % (950,896.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,451.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00865117 BTC (20,361.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 4962 transactions" + } + ] + }, + { + "id": 6671, + "type": "message", + "date": "2025-02-10T05:00:05", + "date_unixtime": "1739160005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003493 BTC for 82.69 CZK @ 2,367,294 CZK\nFees are 0.29042647 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.040233307101069531760510130 CZK)\nThe limits being 0.03 % (5.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59791402 BTC (456,334.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,367,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.18 % (959,103.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,368.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00868610 BTC (20,562.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 4963 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003493 BTC for 82.69 CZK @ 2,367,294 CZK\nFees are 0.29042647 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.040233307101069531760510130 CZK)\nThe limits being 0.03 % (5.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59791402 BTC (456,334.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,367,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.18 % (959,103.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,368.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00868610 BTC (20,562.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 4963 transactions" + } + ] + }, + { + "id": 6672, + "type": "message", + "date": "2025-02-10T09:00:04", + "date_unixtime": "1739174404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003484 BTC for 82.69 CZK @ 2,373,564 CZK\nFees are 0.29044535 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.109198694065603910995785702 CZK)\nThe limits being 0.03 % (5.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59794886 BTC (456,417.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 210.96 % (962,851.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,285.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00872094 BTC (20,699.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.95 CZK over 4964 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003484 BTC for 82.69 CZK @ 2,373,564 CZK\nFees are 0.29044535 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.109198694065603910995785702 CZK)\nThe limits being 0.03 % (5.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59794886 BTC (456,417.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 210.96 % (962,851.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,285.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00872094 BTC (20,699.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.95 CZK over 4964 transactions" + } + ] + }, + { + "id": 6673, + "type": "message", + "date": "2025-02-10T13:00:07", + "date_unixtime": "1739188807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003467 BTC for 82.69 CZK @ 2,385,128 CZK\nFees are 0.29043637 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.236410827462979657728093007 CZK)\nThe limits being 0.03 % (5.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59798353 BTC (456,500.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,385,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.43 % (969,766.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,202.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00875561 BTC (20,883.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.94 CZK over 4965 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003467 BTC for 82.69 CZK @ 2,385,128 CZK\nFees are 0.29043637 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.236410827462979657728093007 CZK)\nThe limits being 0.03 % (5.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59798353 BTC (456,500.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,385,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.43 % (969,766.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,202.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00875561 BTC (20,883.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.94 CZK over 4965 transactions" + } + ] + }, + { + "id": 6674, + "type": "message", + "date": "2025-02-10T17:00:05", + "date_unixtime": "1739203205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003473 BTC for 82.69 CZK @ 2,380,876 CZK\nFees are 0.29042027 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.189632577943796195033478418 CZK)\nThe limits being 0.03 % (5.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59801826 BTC (456,583.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.84 % (967,223.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,119.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00879034 BTC (20,928.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.94 CZK over 4966 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003473 BTC for 82.69 CZK @ 2,380,876 CZK\nFees are 0.29042027 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (26.189632577943796195033478418 CZK)\nThe limits being 0.03 % (5.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59801826 BTC (456,583.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.84 % (967,223.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,119.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00879034 BTC (20,928.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.94 CZK over 4966 transactions" + } + ] + }, + { + "id": 6675, + "type": "message", + "date": "2025-02-10T21:00:07", + "date_unixtime": "1739217607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003474 BTC for 82.71 CZK @ 2,380,816 CZK\nFees are 0.29049655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.188970933339529264155765702 CZK)\nThe limits being 0.03 % (5.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59805300 BTC (456,666.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,380,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.79 % (967,187.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,036.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00882508 BTC (21,010.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.94 CZK over 4967 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003474 BTC for 82.71 CZK @ 2,380,816 CZK\nFees are 0.29049655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.188970933339529264155765702 CZK)\nThe limits being 0.03 % (5.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59805300 BTC (456,666.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,380,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.79 % (967,187.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,036.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00882508 BTC (21,010.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.94 CZK over 4967 transactions" + } + ] + }, + { + "id": 6676, + "type": "message", + "date": "2025-02-11T01:00:04", + "date_unixtime": "1739232004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,758 CZK\nFees are 0.29045109 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.177337023152778225849813421 CZK)\nThe limits being 0.03 % (5.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59808775 BTC (456,749.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,683 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,379,758 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 211.62 % (966,554.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,953.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00885983 BTC (21,084.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.94 CZK over 4968 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003475 BTC for 82.70 CZK @ 2,379,758 CZK\nFees are 0.29045109 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.177337023152778225849813421 CZK)\nThe limits being 0.03 % (5.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59808775 BTC (456,749.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,683 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,379,758 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 211.62 % (966,554.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,953.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00885983 BTC (21,084.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.94 CZK over 4968 transactions" + } + ] + }, + { + "id": 6677, + "type": "message", + "date": "2025-02-11T05:00:04", + "date_unixtime": "1739246404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003462 BTC for 82.69 CZK @ 2,388,515 CZK\nFees are 0.29042928 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.273661399141134279588165857 CZK)\nThe limits being 0.03 % (5.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59812237 BTC (456,832.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,778 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 212.72 % (971,791.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,870.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00889445 BTC (21,244.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.94 CZK over 4969 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003462 BTC for 82.69 CZK @ 2,388,515 CZK\nFees are 0.29042928 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.273661399141134279588165857 CZK)\nThe limits being 0.03 % (5.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59812237 BTC (456,832.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,778 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 212.72 % (971,791.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,870.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00889445 BTC (21,244.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.94 CZK over 4969 transactions" + } + ] + }, + { + "id": 6678, + "type": "message", + "date": "2025-02-11T09:00:04", + "date_unixtime": "1739260804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,949 CZK\nFees are 0.29044849 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.443439312406576980568011958 CZK)\nThe limits being 0.03 % (5.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59815677 BTC (456,915.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 214.71 % (981,022.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,787.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00892885 BTC (21,464.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.93 CZK over 4970 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003440 BTC for 82.70 CZK @ 2,403,949 CZK\nFees are 0.29044849 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.443439312406576980568011958 CZK)\nThe limits being 0.03 % (5.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59815677 BTC (456,915.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 214.71 % (981,022.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,787.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00892885 BTC (21,464.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.93 CZK over 4970 transactions" + } + ] + }, + { + "id": 6679, + "type": "message", + "date": "2025-02-11T13:00:04", + "date_unixtime": "1739275204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003454 BTC for 82.69 CZK @ 2,393,984 CZK\nFees are 0.29042169 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.333826914715692528379969471 CZK)\nThe limits being 0.03 % (5.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59819131 BTC (456,998.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 763,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,393,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 213.36 % (975,061.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,705.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00896339 BTC (21,458.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.93 CZK over 4971 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003454 BTC for 82.69 CZK @ 2,393,984 CZK\nFees are 0.29042169 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.333826914715692528379969471 CZK)\nThe limits being 0.03 % (5.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59819131 BTC (456,998.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 763,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,393,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 213.36 % (975,061.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,705.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00896339 BTC (21,458.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.93 CZK over 4971 transactions" + } + ] + }, + { + "id": 6680, + "type": "message", + "date": "2025-02-11T17:00:04", + "date_unixtime": "1739289604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003497 BTC for 82.70 CZK @ 2,364,780 CZK\nFees are 0.29045024 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.012576577631706242905336043 CZK)\nThe limits being 0.03 % (5.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59822628 BTC (457,081.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,364,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.50 % (957,591.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,622.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00899836 BTC (21,279.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.93 CZK over 4972 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003497 BTC for 82.70 CZK @ 2,364,780 CZK\nFees are 0.29045024 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.012576577631706242905336043 CZK)\nThe limits being 0.03 % (5.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59822628 BTC (457,081.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,364,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.50 % (957,591.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,622.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00899836 BTC (21,279.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.93 CZK over 4972 transactions" + } + ] + }, + { + "id": 6681, + "type": "message", + "date": "2025-02-11T21:00:04", + "date_unixtime": "1739304004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.71 CZK @ 2,314,117 CZK\nFees are 0.29048602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.455284658145288357006771766 CZK)\nThe limits being 0.03 % (5.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59826202 BTC (457,164.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.83 % (927,283.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,539.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00903410 BTC (20,905.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.93 CZK over 4973 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.71 CZK @ 2,314,117 CZK\nFees are 0.29048602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.455284658145288357006771766 CZK)\nThe limits being 0.03 % (5.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59826202 BTC (457,164.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.83 % (927,283.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,539.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00903410 BTC (20,905.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.93 CZK over 4973 transactions" + } + ] + }, + { + "id": 6682, + "type": "message", + "date": "2025-02-12T01:00:03", + "date_unixtime": "1739318403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003548 BTC for 82.71 CZK @ 2,331,161 CZK\nFees are 0.29049678 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.642772584005585860985985355 CZK)\nThe limits being 0.03 % (5.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59829750 BTC (457,247.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.03 % (937,480.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,456.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00906958 BTC (21,142.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.93 CZK over 4974 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003548 BTC for 82.71 CZK @ 2,331,161 CZK\nFees are 0.29049678 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.642772584005585860985985355 CZK)\nThe limits being 0.03 % (5.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59829750 BTC (457,247.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.03 % (937,480.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,456.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00906958 BTC (21,142.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.93 CZK over 4974 transactions" + } + ] + }, + { + "id": 6683, + "type": "message", + "date": "2025-02-12T05:00:07", + "date_unixtime": "1739332807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003565 BTC for 82.70 CZK @ 2,319,870 CZK\nFees are 0.29047491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.518570931892653412914546632 CZK)\nThe limits being 0.03 % (5.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59833315 BTC (457,330.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,319,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.51 % (930,724.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,373.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00910523 BTC (21,122.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.93 CZK over 4975 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003565 BTC for 82.70 CZK @ 2,319,870 CZK\nFees are 0.29047491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.518570931892653412914546632 CZK)\nThe limits being 0.03 % (5.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59833315 BTC (457,330.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,319,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.51 % (930,724.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,373.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00910523 BTC (21,122.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.93 CZK over 4975 transactions" + } + ] + }, + { + "id": 6684, + "type": "message", + "date": "2025-02-12T09:00:04", + "date_unixtime": "1739347204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003543 BTC for 82.71 CZK @ 2,334,322 CZK\nFees are 0.29048074 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.677541987745121822421974683 CZK)\nThe limits being 0.03 % (5.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59836858 BTC (457,413.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,334,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.37 % (939,371.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,290.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00914066 BTC (21,337.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.92 CZK over 4976 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003543 BTC for 82.71 CZK @ 2,334,322 CZK\nFees are 0.29048074 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.677541987745121822421974683 CZK)\nThe limits being 0.03 % (5.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59836858 BTC (457,413.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,334,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.37 % (939,371.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,290.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00914066 BTC (21,337.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.92 CZK over 4976 transactions" + } + ] + }, + { + "id": 6685, + "type": "message", + "date": "2025-02-12T13:00:03", + "date_unixtime": "1739361603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003543 BTC for 82.70 CZK @ 2,334,116 CZK\nFees are 0.29045516 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.675281369567225970745067961 CZK)\nThe limits being 0.03 % (5.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59840401 BTC (457,496.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,334,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.30 % (939,248.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,207.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00917609 BTC (21,418.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.92 CZK over 4977 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003543 BTC for 82.70 CZK @ 2,334,116 CZK\nFees are 0.29045516 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.675281369567225970745067961 CZK)\nThe limits being 0.03 % (5.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59840401 BTC (457,496.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,334,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.30 % (939,248.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,207.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00917609 BTC (21,418.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.92 CZK over 4977 transactions" + } + ] + }, + { + "id": 6686, + "type": "message", + "date": "2025-02-12T17:00:04", + "date_unixtime": "1739376004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,373 CZK\nFees are 0.29042885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.579100350965097972618893490 CZK)\nThe limits being 0.03 % (5.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59843957 BTC (457,579.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.12 % (934,015.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,124.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00921165 BTC (21,420.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.92 CZK over 4978 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,373 CZK\nFees are 0.29042885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.579100350965097972618893490 CZK)\nThe limits being 0.03 % (5.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59843957 BTC (457,579.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.12 % (934,015.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,124.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00921165 BTC (21,420.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.92 CZK over 4978 transactions" + } + ] + }, + { + "id": 6687, + "type": "message", + "date": "2025-02-12T21:00:03", + "date_unixtime": "1739390403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003519 BTC for 82.69 CZK @ 2,349,840 CZK\nFees are 0.29043095 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.848235176880916791230692576 CZK)\nThe limits being 0.03 % (5.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59847476 BTC (457,662.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,349,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.28 % (948,657.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,041.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00924684 BTC (21,728.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.92 CZK over 4979 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003519 BTC for 82.69 CZK @ 2,349,840 CZK\nFees are 0.29043095 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.848235176880916791230692576 CZK)\nThe limits being 0.03 % (5.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59847476 BTC (457,662.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,349,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.28 % (948,657.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,041.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00924684 BTC (21,728.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.92 CZK over 4979 transactions" + } + ] + }, + { + "id": 6688, + "type": "message", + "date": "2025-02-13T01:00:03", + "date_unixtime": "1739404803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003493 BTC for 82.69 CZK @ 2,367,284 CZK\nFees are 0.29042524 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.040123034880352205585632081 CZK)\nThe limits being 0.03 % (5.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59850969 BTC (457,745.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,367,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 209.53 % (959,096.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,958.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00928177 BTC (21,972.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.92 CZK over 4980 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003493 BTC for 82.69 CZK @ 2,367,284 CZK\nFees are 0.29042524 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (26.040123034880352205585632081 CZK)\nThe limits being 0.03 % (5.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59850969 BTC (457,745.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,367,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 209.53 % (959,096.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,958.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00928177 BTC (21,972.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.92 CZK over 4980 transactions" + } + ] + }, + { + "id": 6689, + "type": "message", + "date": "2025-02-13T05:00:08", + "date_unixtime": "1739419208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003511 BTC for 82.71 CZK @ 2,355,697 CZK\nFees are 0.29049302 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.912668296961773070811544386 CZK)\nThe limits being 0.03 % (5.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59854480 BTC (457,828.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,355,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.97 % (952,161.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,875.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00931688 BTC (21,947.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.91 CZK over 4981 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003511 BTC for 82.71 CZK @ 2,355,697 CZK\nFees are 0.29049302 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.912668296961773070811544386 CZK)\nThe limits being 0.03 % (5.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59854480 BTC (457,828.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,355,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.97 % (952,161.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,875.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00931688 BTC (21,947.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.91 CZK over 4981 transactions" + } + ] + }, + { + "id": 6690, + "type": "message", + "date": "2025-02-13T09:00:08", + "date_unixtime": "1739433608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,020 CZK\nFees are 0.29044991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.509219690701166221086544820 CZK)\nThe limits being 0.03 % (5.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59858046 BTC (457,911.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 764,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,319,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.14 % (930,208.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,792.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00935254 BTC (21,688.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.91 CZK over 4982 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,020 CZK\nFees are 0.29044991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.509219690701166221086544820 CZK)\nThe limits being 0.03 % (5.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59858046 BTC (457,911.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 764,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,319,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.14 % (930,208.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,792.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00935254 BTC (21,688.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.91 CZK over 4982 transactions" + } + ] + }, + { + "id": 6691, + "type": "message", + "date": "2025-02-13T13:00:05", + "date_unixtime": "1739448005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.71 CZK @ 2,320,636 CZK\nFees are 0.29048930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.526995866319732787097012309 CZK)\nThe limits being 0.03 % (5.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59861610 BTC (457,994.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,089 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.32 % (931,175.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,709.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00938818 BTC (21,786.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.91 CZK over 4983 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.71 CZK @ 2,320,636 CZK\nFees are 0.29048930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.526995866319732787097012309 CZK)\nThe limits being 0.03 % (5.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59861610 BTC (457,994.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,089 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.32 % (931,175.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,709.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00938818 BTC (21,786.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.91 CZK over 4983 transactions" + } + ] + }, + { + "id": 6692, + "type": "message", + "date": "2025-02-13T17:00:04", + "date_unixtime": "1739462404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003572 BTC for 82.54 CZK @ 2,310,764 CZK\nFees are 0.28990281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.418401564847780807487344129 CZK)\nThe limits being 0.03 % (5.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59865182 BTC (458,077.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.99 % (925,265.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,626.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00942390 BTC (21,776.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.91 CZK over 4984 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003572 BTC for 82.54 CZK @ 2,310,764 CZK\nFees are 0.28990281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.418401564847780807487344129 CZK)\nThe limits being 0.03 % (5.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59865182 BTC (458,077.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.99 % (925,265.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,626.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00942390 BTC (21,776.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.91 CZK over 4984 transactions" + } + ] + }, + { + "id": 6693, + "type": "message", + "date": "2025-02-13T21:00:05", + "date_unixtime": "1739476805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.70 CZK @ 2,306,276 CZK\nFees are 0.29047385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.369039331664328225444074574 CZK)\nThe limits being 0.03 % (5.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59868768 BTC (458,160.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,274 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.37 % (922,578.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,543.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00945976 BTC (21,816.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.91 CZK over 4985 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.70 CZK @ 2,306,276 CZK\nFees are 0.29047385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.369039331664328225444074574 CZK)\nThe limits being 0.03 % (5.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59868768 BTC (458,160.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,274 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.37 % (922,578.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,543.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00945976 BTC (21,816.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.91 CZK over 4985 transactions" + } + ] + }, + { + "id": 6694, + "type": "message", + "date": "2025-02-14T01:00:04", + "date_unixtime": "1739491204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,799 CZK\nFees are 0.29043377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.550793004260369605258001488 CZK)\nThe limits being 0.03 % (5.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59872328 BTC (458,243.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,367 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,799 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.49 % (932,470.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,460.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00949536 BTC (22,055.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.91 CZK over 4986 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,799 CZK\nFees are 0.29043377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.550793004260369605258001488 CZK)\nThe limits being 0.03 % (5.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59872328 BTC (458,243.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,367 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,799 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.49 % (932,470.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,460.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00949536 BTC (22,055.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.91 CZK over 4986 transactions" + } + ] + }, + { + "id": 6695, + "type": "message", + "date": "2025-02-14T05:00:04", + "date_unixtime": "1739505604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003552 BTC for 82.69 CZK @ 2,328,006 CZK\nFees are 0.29043071 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.608069343446585599051966766 CZK)\nThe limits being 0.03 % (5.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59875880 BTC (458,326.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,461 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.13 % (935,588.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,377.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00953088 BTC (22,187.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.90 CZK over 4987 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003552 BTC for 82.69 CZK @ 2,328,006 CZK\nFees are 0.29043071 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (25.608069343446585599051966766 CZK)\nThe limits being 0.03 % (5.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59875880 BTC (458,326.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,461 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.13 % (935,588.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,377.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00953088 BTC (22,187.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.90 CZK over 4987 transactions" + } + ] + }, + { + "id": 6696, + "type": "message", + "date": "2025-02-14T09:00:04", + "date_unixtime": "1739520004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003549 BTC for 82.70 CZK @ 2,330,284 CZK\nFees are 0.29046932 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.633123605560307871449644475 CZK)\nThe limits being 0.03 % (5.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59879429 BTC (458,409.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,330,284 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.39 % (936,951.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,294.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00956637 BTC (22,292.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.90 CZK over 4988 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003549 BTC for 82.70 CZK @ 2,330,284 CZK\nFees are 0.29046932 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.633123605560307871449644475 CZK)\nThe limits being 0.03 % (5.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59879429 BTC (458,409.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,330,284 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.39 % (936,951.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,294.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00956637 BTC (22,292.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.90 CZK over 4988 transactions" + } + ] + }, + { + "id": 6697, + "type": "message", + "date": "2025-02-14T13:00:04", + "date_unixtime": "1739534404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003551 BTC for 82.69 CZK @ 2,328,719 CZK\nFees are 0.29043784 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.615909827010700509354965309 CZK)\nThe limits being 0.03 % (5.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59882980 BTC (458,492.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.15 % (936,014.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,211.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00960188 BTC (22,360.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.90 CZK over 4989 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003551 BTC for 82.69 CZK @ 2,328,719 CZK\nFees are 0.29043784 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.615909827010700509354965309 CZK)\nThe limits being 0.03 % (5.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59882980 BTC (458,492.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.15 % (936,014.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,211.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00960188 BTC (22,360.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.90 CZK over 4989 transactions" + } + ] + }, + { + "id": 6698, + "type": "message", + "date": "2025-02-14T17:00:04", + "date_unixtime": "1739548804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003571 BTC for 82.70 CZK @ 2,315,750 CZK\nFees are 0.29044701 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.473248298276112017348409662 CZK)\nThe limits being 0.03 % (5.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59886551 BTC (458,575.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,740 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.42 % (928,247.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,128.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00963759 BTC (22,318.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.90 CZK over 4990 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003571 BTC for 82.70 CZK @ 2,315,750 CZK\nFees are 0.29044701 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.473248298276112017348409662 CZK)\nThe limits being 0.03 % (5.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59886551 BTC (458,575.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,740 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.42 % (928,247.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,128.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00963759 BTC (22,318.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.90 CZK over 4990 transactions" + } + ] + }, + { + "id": 6699, + "type": "message", + "date": "2025-02-14T21:00:04", + "date_unixtime": "1739563204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,195 CZK\nFees are 0.29043150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.753145870258173403281041837 CZK)\nThe limits being 0.03 % (5.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59890083 BTC (458,658.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.71 % (943,485.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,045.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00967291 BTC (22,646.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.90 CZK over 4991 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,195 CZK\nFees are 0.29043150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.753145870258173403281041837 CZK)\nThe limits being 0.03 % (5.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59890083 BTC (458,658.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.71 % (943,485.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,045.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00967291 BTC (22,646.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.90 CZK over 4991 transactions" + } + ] + }, + { + "id": 6700, + "type": "message", + "date": "2025-02-15T01:00:04", + "date_unixtime": "1739577604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003545 BTC for 82.70 CZK @ 2,332,823 CZK\nFees are 0.29045811 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.661056019868401356887002683 CZK)\nThe limits being 0.03 % (5.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59893628 BTC (458,741.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 765,927 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,332,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.58 % (938,471.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,962.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00970836 BTC (22,647.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.90 CZK over 4992 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003545 BTC for 82.70 CZK @ 2,332,823 CZK\nFees are 0.29045811 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.661056019868401356887002683 CZK)\nThe limits being 0.03 % (5.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59893628 BTC (458,741.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 765,927 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,332,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.58 % (938,471.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,962.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00970836 BTC (22,647.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.90 CZK over 4992 transactions" + } + ] + }, + { + "id": 6701, + "type": "message", + "date": "2025-02-15T05:00:04", + "date_unixtime": "1739592004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003535 BTC for 82.71 CZK @ 2,339,646 CZK\nFees are 0.29048588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.736108529904880302251877975 CZK)\nThe limits being 0.03 % (5.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59897163 BTC (458,824.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,020 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,339,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.43 % (942,557.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,879.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00974371 BTC (22,796.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.89 CZK over 4993 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003535 BTC for 82.71 CZK @ 2,339,646 CZK\nFees are 0.29048588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.736108529904880302251877975 CZK)\nThe limits being 0.03 % (5.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59897163 BTC (458,824.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,020 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,339,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.43 % (942,557.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,879.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00974371 BTC (22,796.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.89 CZK over 4993 transactions" + } + ] + }, + { + "id": 6702, + "type": "message", + "date": "2025-02-15T09:00:04", + "date_unixtime": "1739606404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003544 BTC for 82.71 CZK @ 2,333,798 CZK\nFees are 0.29049746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.671774655241642962947966541 CZK)\nThe limits being 0.03 % (5.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59900707 BTC (458,907.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,798 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.63 % (939,054.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,796.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00977915 BTC (22,822.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.89 CZK over 4994 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003544 BTC for 82.71 CZK @ 2,333,798 CZK\nFees are 0.29049746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.671774655241642962947966541 CZK)\nThe limits being 0.03 % (5.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59900707 BTC (458,907.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,798 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.63 % (939,054.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,796.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00977915 BTC (22,822.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.89 CZK over 4994 transactions" + } + ] + }, + { + "id": 6703, + "type": "message", + "date": "2025-02-15T13:00:04", + "date_unixtime": "1739620804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003544 BTC for 82.71 CZK @ 2,333,786 CZK\nFees are 0.29049596 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.671642326912240566594796317 CZK)\nThe limits being 0.03 % (5.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59904251 BTC (458,990.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.59 % (939,046.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,713.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00981459 BTC (22,905.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.89 CZK over 4995 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003544 BTC for 82.71 CZK @ 2,333,786 CZK\nFees are 0.29049596 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.671642326912240566594796317 CZK)\nThe limits being 0.03 % (5.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59904251 BTC (458,990.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.59 % (939,046.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,713.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00981459 BTC (22,905.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.89 CZK over 4995 transactions" + } + ] + }, + { + "id": 6704, + "type": "message", + "date": "2025-02-15T17:00:03", + "date_unixtime": "1739635203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 82.71 CZK @ 2,338,332 CZK\nFees are 0.29048696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.721651603329539712504678634 CZK)\nThe limits being 0.03 % (5.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59907788 BTC (459,073.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,338,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.15 % (941,769.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,630.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00984996 BTC (23,032.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.89 CZK over 4996 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 82.71 CZK @ 2,338,332 CZK\nFees are 0.29048696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.721651603329539712504678634 CZK)\nThe limits being 0.03 % (5.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59907788 BTC (459,073.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,338,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.15 % (941,769.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,630.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00984996 BTC (23,032.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.89 CZK over 4996 transactions" + } + ] + }, + { + "id": 6705, + "type": "message", + "date": "2025-02-15T21:00:04", + "date_unixtime": "1739649604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 82.70 CZK @ 2,338,227 CZK\nFees are 0.29047389 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.720493723762139269694886106 CZK)\nThe limits being 0.03 % (5.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59911325 BTC (459,156.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,393 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,338,227 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.10 % (941,706.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,547.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00988533 BTC (23,114.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.89 CZK over 4997 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 82.70 CZK @ 2,338,227 CZK\nFees are 0.29047389 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.720493723762139269694886106 CZK)\nThe limits being 0.03 % (5.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59911325 BTC (459,156.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,393 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,338,227 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.10 % (941,706.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,547.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00988533 BTC (23,114.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.89 CZK over 4997 transactions" + } + ] + }, + { + "id": 6706, + "type": "message", + "date": "2025-02-16T01:00:01", + "date_unixtime": "1739664001", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 82.54 CZK @ 2,333,610 CZK\nFees are 0.28990038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.669711720034445457297536090 CZK)\nThe limits being 0.03 % (5.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59914862 BTC (459,238.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,486 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,333,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.46 % (938,940.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,464.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00992070 BTC (23,151.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.88 CZK over 4998 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 82.54 CZK @ 2,333,610 CZK\nFees are 0.28990038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.669711720034445457297536090 CZK)\nThe limits being 0.03 % (5.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59914862 BTC (459,238.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,486 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,333,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.46 % (938,940.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,464.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00992070 BTC (23,151.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.88 CZK over 4998 transactions" + } + ] + }, + { + "id": 6707, + "type": "message", + "date": "2025-02-16T05:00:08", + "date_unixtime": "1739678408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003537 BTC for 82.69 CZK @ 2,337,897 CZK\nFees are 0.29043291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.716865711034844259398015906 CZK)\nThe limits being 0.03 % (5.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59918399 BTC (459,321.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,337,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.98 % (941,508.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,381.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00995607 BTC (23,276.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.88 CZK over 4999 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003537 BTC for 82.69 CZK @ 2,337,897 CZK\nFees are 0.29043291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.716865711034844259398015906 CZK)\nThe limits being 0.03 % (5.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59918399 BTC (459,321.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,337,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.98 % (941,508.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,381.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00995607 BTC (23,276.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.88 CZK over 4999 transactions" + } + ] + }, + { + "id": 6708, + "type": "message", + "date": "2025-02-16T09:00:04", + "date_unixtime": "1739692804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003548 BTC for 82.53 CZK @ 2,326,234 CZK\nFees are 0.28988285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.588579314563627079741760658 CZK)\nThe limits being 0.03 % (5.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59921947 BTC (459,404.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,234 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.42 % (934,520.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,298.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.00999155 BTC (23,242.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.88 CZK over 5000 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003548 BTC for 82.53 CZK @ 2,326,234 CZK\nFees are 0.28988285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.588579314563627079741760658 CZK)\nThe limits being 0.03 % (5.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59921947 BTC (459,404.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,234 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.42 % (934,520.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,298.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.00999155 BTC (23,242.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.88 CZK over 5000 transactions" + } + ] + }, + { + "id": 6709, + "type": "message", + "date": "2025-02-16T13:00:04", + "date_unixtime": "1739707204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003549 BTC for 82.71 CZK @ 2,330,375 CZK\nFees are 0.29048069 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.634127097003261197811042584 CZK)\nThe limits being 0.03 % (5.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59925496 BTC (459,487.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,330,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.92 % (937,001.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,215.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01002704 BTC (23,366.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.88 CZK over 5001 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003549 BTC for 82.71 CZK @ 2,330,375 CZK\nFees are 0.29048069 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.634127097003261197811042584 CZK)\nThe limits being 0.03 % (5.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59925496 BTC (459,487.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,330,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.92 % (937,001.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,215.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01002704 BTC (23,366.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.88 CZK over 5001 transactions" + } + ] + }, + { + "id": 6710, + "type": "message", + "date": "2025-02-16T17:00:03", + "date_unixtime": "1739721603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,875 CZK\nFees are 0.29044317 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.551620059566797108994922266 CZK)\nThe limits being 0.03 % (5.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59929056 BTC (459,570.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.91 % (932,506.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,132.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01006264 BTC (23,374.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.88 CZK over 5002 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,875 CZK\nFees are 0.29044317 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.551620059566797108994922266 CZK)\nThe limits being 0.03 % (5.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59929056 BTC (459,570.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.91 % (932,506.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,132.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01006264 BTC (23,374.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.88 CZK over 5002 transactions" + } + ] + }, + { + "id": 6711, + "type": "message", + "date": "2025-02-16T21:00:04", + "date_unixtime": "1739736004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003561 BTC for 82.70 CZK @ 2,322,460 CZK\nFees are 0.29047285 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.547054714005054200217799901 CZK)\nThe limits being 0.03 % (5.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59932617 BTC (459,653.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 766,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.82 % (932,257.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,049.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01009825 BTC (23,452.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.88 CZK over 5003 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003561 BTC for 82.70 CZK @ 2,322,460 CZK\nFees are 0.29047285 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.547054714005054200217799901 CZK)\nThe limits being 0.03 % (5.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59932617 BTC (459,653.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 766,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.82 % (932,257.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,049.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01009825 BTC (23,452.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.88 CZK over 5003 transactions" + } + ] + }, + { + "id": 6712, + "type": "message", + "date": "2025-02-17T01:00:07", + "date_unixtime": "1739750407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,772 CZK\nFees are 0.29049133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.363492548313964964275440197 CZK)\nThe limits being 0.03 % (5.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59936204 BTC (459,736.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.61 % (922,255.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,966.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01013412 BTC (23,366.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.87 CZK over 5004 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,772 CZK\nFees are 0.29049133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.363492548313964964275440197 CZK)\nThe limits being 0.03 % (5.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59936204 BTC (459,736.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.61 % (922,255.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,966.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01013412 BTC (23,366.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.87 CZK over 5004 transactions" + } + ] + }, + { + "id": 6713, + "type": "message", + "date": "2025-02-17T05:00:09", + "date_unixtime": "1739764809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,269 CZK\nFees are 0.29042792 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.357956788541470895912258032 CZK)\nThe limits being 0.03 % (5.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59939791 BTC (459,819.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,136 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.50 % (921,953.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 1,883.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01016999 BTC (23,444.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.87 CZK over 5005 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,269 CZK\nFees are 0.29042792 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.357956788541470895912258032 CZK)\nThe limits being 0.03 % (5.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59939791 BTC (459,819.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,136 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.50 % (921,953.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 1,883.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01016999 BTC (23,444.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.87 CZK over 5005 transactions" + } + ] + }, + { + "id": 6714, + "type": "message", + "date": "2025-02-17T09:00:04", + "date_unixtime": "1739779204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,487 CZK\nFees are 0.29042794 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.393354758345789735924265072 CZK)\nThe limits being 0.03 % (5.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59943373 BTC (459,902.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.89 % (923,882.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,800.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01020581 BTC (23,559.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.87 CZK over 5006 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.69 CZK @ 2,308,487 CZK\nFees are 0.29042794 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.393354758345789735924265072 CZK)\nThe limits being 0.03 % (5.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59943373 BTC (459,902.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.89 % (923,882.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,800.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01020581 BTC (23,559.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.87 CZK over 5006 transactions" + } + ] + }, + { + "id": 6715, + "type": "message", + "date": "2025-02-17T13:00:04", + "date_unixtime": "1739793604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,673 CZK\nFees are 0.29044284 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.373406184629945817254671411 CZK)\nThe limits being 0.03 % (5.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59946958 BTC (459,985.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.61 % (922,794.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,717.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01024166 BTC (23,624.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.87 CZK over 5007 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,673 CZK\nFees are 0.29044284 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.373406184629945817254671411 CZK)\nThe limits being 0.03 % (5.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59946958 BTC (459,985.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.61 % (922,794.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,717.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01024166 BTC (23,624.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.87 CZK over 5007 transactions" + } + ] + }, + { + "id": 6716, + "type": "message", + "date": "2025-02-17T17:00:04", + "date_unixtime": "1739808004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.69 CZK @ 2,299,537 CZK\nFees are 0.29043264 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.294902093229868984693727680 CZK)\nThe limits being 0.03 % (5.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59950554 BTC (460,068.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.65 % (918,516.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,634.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01027762 BTC (23,633.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.87 CZK over 5008 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.69 CZK @ 2,299,537 CZK\nFees are 0.29043264 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.294902093229868984693727680 CZK)\nThe limits being 0.03 % (5.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59950554 BTC (460,068.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.65 % (918,516.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,634.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01027762 BTC (23,633.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.87 CZK over 5008 transactions" + } + ] + }, + { + "id": 6717, + "type": "message", + "date": "2025-02-17T21:00:04", + "date_unixtime": "1739822404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003603 BTC for 82.70 CZK @ 2,295,208 CZK\nFees are 0.29045021 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.247285762390611488709859650 CZK)\nThe limits being 0.03 % (5.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59954157 BTC (460,151.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.05 % (915,920.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,551.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01031365 BTC (23,671.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.86 CZK over 5009 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003603 BTC for 82.70 CZK @ 2,295,208 CZK\nFees are 0.29045021 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.247285762390611488709859650 CZK)\nThe limits being 0.03 % (5.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59954157 BTC (460,151.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.05 % (915,920.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,551.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01031365 BTC (23,671.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.86 CZK over 5009 transactions" + } + ] + }, + { + "id": 6718, + "type": "message", + "date": "2025-02-18T01:00:03", + "date_unixtime": "1739836803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,401 CZK\nFees are 0.29046099 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.304407714307295813747849147 CZK)\nThe limits being 0.03 % (5.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59957752 BTC (460,234.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,598 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.69 % (919,033.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,468.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01034960 BTC (23,808.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.86 CZK over 5010 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,401 CZK\nFees are 0.29046099 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.304407714307295813747849147 CZK)\nThe limits being 0.03 % (5.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59957752 BTC (460,234.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,598 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.69 % (919,033.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,468.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01034960 BTC (23,808.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.86 CZK over 5010 transactions" + } + ] + }, + { + "id": 6719, + "type": "message", + "date": "2025-02-18T05:00:07", + "date_unixtime": "1739851207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,459 CZK\nFees are 0.29044765 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.459045002441078391875287877 CZK)\nThe limits being 0.03 % (6.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59961325 BTC (460,317.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.48 % (927,462.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,385.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01038533 BTC (24,036.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.86 CZK over 5011 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,459 CZK\nFees are 0.29044765 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.459045002441078391875287877 CZK)\nThe limits being 0.03 % (6.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59961325 BTC (460,317.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.48 % (927,462.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,385.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01038533 BTC (24,036.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.86 CZK over 5011 transactions" + } + ] + }, + { + "id": 6720, + "type": "message", + "date": "2025-02-18T09:00:05", + "date_unixtime": "1739865605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003601 BTC for 82.70 CZK @ 2,296,707 CZK\nFees are 0.29047854 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.263771731735371631115588636 CZK)\nThe limits being 0.03 % (5.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59964926 BTC (460,400.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,296,707 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.13 % (916,817.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,302.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01042134 BTC (23,934.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.86 CZK over 5012 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003601 BTC for 82.70 CZK @ 2,296,707 CZK\nFees are 0.29047854 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.263771731735371631115588636 CZK)\nThe limits being 0.03 % (5.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59964926 BTC (460,400.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,296,707 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.13 % (916,817.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,302.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01042134 BTC (23,934.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.86 CZK over 5012 transactions" + } + ] + }, + { + "id": 6721, + "type": "message", + "date": "2025-02-18T13:00:04", + "date_unixtime": "1739880004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003589 BTC for 82.70 CZK @ 2,304,146 CZK\nFees are 0.29044832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.345606097799523900952406339 CZK)\nThe limits being 0.03 % (6.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59968515 BTC (460,483.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,146 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.07 % (921,278.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,219.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01045723 BTC (24,094.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.86 CZK over 5013 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003589 BTC for 82.70 CZK @ 2,304,146 CZK\nFees are 0.29044832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (25.345606097799523900952406339 CZK)\nThe limits being 0.03 % (6.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59968515 BTC (460,483.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,146 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.07 % (921,278.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,219.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01045723 BTC (24,094.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.86 CZK over 5013 transactions" + } + ] + }, + { + "id": 6722, + "type": "message", + "date": "2025-02-18T17:00:03", + "date_unixtime": "1739894403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003598 BTC for 82.71 CZK @ 2,298,734 CZK\nFees are 0.29049270 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.286069142935800296516389412 CZK)\nThe limits being 0.03 % (6.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59972113 BTC (460,566.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 767,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,298,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.33 % (918,032.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,136.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01049321 BTC (24,121.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.86 CZK over 5014 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003598 BTC for 82.71 CZK @ 2,298,734 CZK\nFees are 0.29049270 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.286069142935800296516389412 CZK)\nThe limits being 0.03 % (6.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59972113 BTC (460,566.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 767,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,298,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.33 % (918,032.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,136.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01049321 BTC (24,121.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.86 CZK over 5014 transactions" + } + ] + }, + { + "id": 6723, + "type": "message", + "date": "2025-02-18T21:00:04", + "date_unixtime": "1739908804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003645 BTC for 82.71 CZK @ 2,269,063 CZK\nFees are 0.29048885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (24.959691062625119352499448090 CZK)\nThe limits being 0.03 % (5.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59975758 BTC (460,649.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,269,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 195.43 % (900,238.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,053.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01052966 BTC (23,892.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.85 CZK over 5015 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003645 BTC for 82.71 CZK @ 2,269,063 CZK\nFees are 0.29048885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.10 % (24.959691062625119352499448090 CZK)\nThe limits being 0.03 % (5.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59975758 BTC (460,649.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,269,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 195.43 % (900,238.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,053.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01052966 BTC (23,892.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.85 CZK over 5015 transactions" + } + ] + }, + { + "id": 6724, + "type": "message", + "date": "2025-02-19T01:00:05", + "date_unixtime": "1739923205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,126 CZK\nFees are 0.29045085 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.268381187233571389027293364 CZK)\nThe limits being 0.03 % (6.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59979358 BTC (460,732.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,152 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.05 % (917,068.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,971.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01056566 BTC (24,270.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.85 CZK over 5016 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,126 CZK\nFees are 0.29045085 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.268381187233571389027293364 CZK)\nThe limits being 0.03 % (6.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59979358 BTC (460,732.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,152 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.05 % (917,068.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,971.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01056566 BTC (24,270.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.85 CZK over 5016 transactions" + } + ] + }, + { + "id": 6725, + "type": "message", + "date": "2025-02-19T05:00:04", + "date_unixtime": "1739937604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,286 CZK\nFees are 0.29043007 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.358144254795975446405937180 CZK)\nThe limits being 0.03 % (6.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59982945 BTC (460,815.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.07 % (921,962.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,888.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01060153 BTC (24,439.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.85 CZK over 5017 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,286 CZK\nFees are 0.29043007 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.358144254795975446405937180 CZK)\nThe limits being 0.03 % (6.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59982945 BTC (460,815.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.07 % (921,962.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,888.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01060153 BTC (24,439.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.85 CZK over 5017 transactions" + } + ] + }, + { + "id": 6726, + "type": "message", + "date": "2025-02-19T09:00:07", + "date_unixtime": "1739952007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003583 BTC for 82.70 CZK @ 2,308,213 CZK\nFees are 0.29047458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.390344275359991077836558927 CZK)\nThe limits being 0.03 % (6.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59986528 BTC (460,898.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.42 % (923,718.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,805.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01063736 BTC (24,553.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.85 CZK over 5018 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003583 BTC for 82.70 CZK @ 2,308,213 CZK\nFees are 0.29047458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.390344275359991077836558927 CZK)\nThe limits being 0.03 % (6.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59986528 BTC (460,898.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.42 % (923,718.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,805.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01063736 BTC (24,553.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.85 CZK over 5018 transactions" + } + ] + }, + { + "id": 6727, + "type": "message", + "date": "2025-02-19T13:00:03", + "date_unixtime": "1739966403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.70 CZK @ 2,325,780 CZK\nFees are 0.29047968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.583577478824115595416043845 CZK)\nThe limits being 0.03 % (6.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59990084 BTC (460,981.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,430 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.67 % (934,255.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,722.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01067292 BTC (24,822.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.85 CZK over 5019 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.70 CZK @ 2,325,780 CZK\nFees are 0.29047968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.583577478824115595416043845 CZK)\nThe limits being 0.03 % (6.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59990084 BTC (460,981.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,430 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.67 % (934,255.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,722.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01067292 BTC (24,822.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.85 CZK over 5019 transactions" + } + ] + }, + { + "id": 6728, + "type": "message", + "date": "2025-02-19T17:00:07", + "date_unixtime": "1739980807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,177 CZK\nFees are 0.29046962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.510950995687835145694499985 CZK)\nThe limits being 0.03 % (6.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59993650 BTC (461,064.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,522 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,319,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.77 % (930,294.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,639.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01070858 BTC (24,835.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.85 CZK over 5020 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,177 CZK\nFees are 0.29046962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.510950995687835145694499985 CZK)\nThe limits being 0.03 % (6.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59993650 BTC (461,064.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,522 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,319,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.77 % (930,294.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,639.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01070858 BTC (24,835.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.85 CZK over 5020 transactions" + } + ] + }, + { + "id": 6729, + "type": "message", + "date": "2025-02-19T21:00:03", + "date_unixtime": "1739995203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,091 CZK\nFees are 0.29045883 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.510002636034675047876459312 CZK)\nThe limits being 0.03 % (6.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.59997216 BTC (461,147.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,319,091 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.72 % (930,242.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,556.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01074424 BTC (24,916.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.84 CZK over 5021 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003566 BTC for 82.70 CZK @ 2,319,091 CZK\nFees are 0.29045883 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.510002636034675047876459312 CZK)\nThe limits being 0.03 % (6.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.59997216 BTC (461,147.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,319,091 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.72 % (930,242.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,556.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01074424 BTC (24,916.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.84 CZK over 5021 transactions" + } + ] + }, + { + "id": 6730, + "type": "message", + "date": "2025-02-20T01:00:08", + "date_unixtime": "1740009608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003547 BTC for 82.70 CZK @ 2,331,677 CZK\nFees are 0.29047923 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.648451697041746613101677257 CZK)\nThe limits being 0.03 % (6.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60000763 BTC (461,230.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.32 % (937,793.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,473.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01077971 BTC (25,134.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.84 CZK over 5022 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003547 BTC for 82.70 CZK @ 2,331,677 CZK\nFees are 0.29047923 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.648451697041746613101677257 CZK)\nThe limits being 0.03 % (6.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60000763 BTC (461,230.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.32 % (937,793.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,473.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01077971 BTC (25,134.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.84 CZK over 5022 transactions" + } + ] + }, + { + "id": 6731, + "type": "message", + "date": "2025-02-20T05:00:07", + "date_unixtime": "1740024007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003533 BTC for 82.70 CZK @ 2,340,817 CZK\nFees are 0.29046683 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.748988540109616342800199303 CZK)\nThe limits being 0.03 % (6.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60004296 BTC (461,313.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,340,817 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.48 % (943,277.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,390.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01081504 BTC (25,316.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.84 CZK over 5023 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003533 BTC for 82.70 CZK @ 2,340,817 CZK\nFees are 0.29046683 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.748988540109616342800199303 CZK)\nThe limits being 0.03 % (6.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60004296 BTC (461,313.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,340,817 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.48 % (943,277.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,390.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01081504 BTC (25,316.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.84 CZK over 5023 transactions" + } + ] + }, + { + "id": 6732, + "type": "message", + "date": "2025-02-20T09:00:07", + "date_unixtime": "1740038407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003530 BTC for 82.69 CZK @ 2,342,422 CZK\nFees are 0.29041918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.766643413491871932654971058 CZK)\nThe limits being 0.03 % (6.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60007826 BTC (461,396.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,342,422 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.65 % (944,240.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,307.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01085034 BTC (25,416.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.84 CZK over 5024 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003530 BTC for 82.69 CZK @ 2,342,422 CZK\nFees are 0.29041918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.766643413491871932654971058 CZK)\nThe limits being 0.03 % (6.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60007826 BTC (461,396.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,342,422 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.65 % (944,240.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,307.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01085034 BTC (25,416.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.84 CZK over 5024 transactions" + } + ] + }, + { + "id": 6733, + "type": "message", + "date": "2025-02-20T13:00:04", + "date_unixtime": "1740052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003529 BTC for 82.69 CZK @ 2,343,177 CZK\nFees are 0.29043047 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.774947047476083636430893685 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60011355 BTC (461,479.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 768,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,343,177 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 204.71 % (944,692.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,224.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01088563 BTC (25,506.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.84 CZK over 5025 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003529 BTC for 82.69 CZK @ 2,343,177 CZK\nFees are 0.29043047 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.774947047476083636430893685 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60011355 BTC (461,479.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 768,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,343,177 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 204.71 % (944,692.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,224.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01088563 BTC (25,506.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.84 CZK over 5025 transactions" + } + ] + }, + { + "id": 6734, + "type": "message", + "date": "2025-02-20T17:00:09", + "date_unixtime": "1740067209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003545 BTC for 82.69 CZK @ 2,332,540 CZK\nFees are 0.29042278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.657935262687785978974857394 CZK)\nThe limits being 0.03 % (6.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60014900 BTC (461,562.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,080 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,332,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 203.29 % (938,308.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,141.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01092108 BTC (25,473.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.83 CZK over 5026 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003545 BTC for 82.69 CZK @ 2,332,540 CZK\nFees are 0.29042278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.657935262687785978974857394 CZK)\nThe limits being 0.03 % (6.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60014900 BTC (461,562.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,080 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,332,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 203.29 % (938,308.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,141.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01092108 BTC (25,473.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.83 CZK over 5026 transactions" + } + ] + }, + { + "id": 6735, + "type": "message", + "date": "2025-02-20T21:00:07", + "date_unixtime": "1740081607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003510 BTC for 82.71 CZK @ 2,356,324 CZK\nFees are 0.29048752 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.919560426257386895154707809 CZK)\nThe limits being 0.03 % (6.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60018410 BTC (461,645.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,173 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,356,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.35 % (952,582.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,058.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01095618 BTC (25,816.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.83 CZK over 5027 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003510 BTC for 82.71 CZK @ 2,356,324 CZK\nFees are 0.29048752 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.919560426257386895154707809 CZK)\nThe limits being 0.03 % (6.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60018410 BTC (461,645.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,173 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,356,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.35 % (952,582.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,058.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01095618 BTC (25,816.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.83 CZK over 5027 transactions" + } + ] + }, + { + "id": 6736, + "type": "message", + "date": "2025-02-21T01:00:07", + "date_unixtime": "1740096007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003512 BTC for 82.70 CZK @ 2,354,668 CZK\nFees are 0.29044876 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.901343152610510139341462059 CZK)\nThe limits being 0.03 % (6.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60021922 BTC (461,728.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,266 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,354,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.09 % (951,588.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,975.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01099130 BTC (25,880.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.83 CZK over 5028 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003512 BTC for 82.70 CZK @ 2,354,668 CZK\nFees are 0.29044876 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.901343152610510139341462059 CZK)\nThe limits being 0.03 % (6.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60021922 BTC (461,728.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,266 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,354,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.09 % (951,588.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,975.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01099130 BTC (25,880.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.83 CZK over 5028 transactions" + } + ] + }, + { + "id": 6737, + "type": "message", + "date": "2025-02-21T05:00:07", + "date_unixtime": "1740110407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003515 BTC for 82.70 CZK @ 2,352,890 CZK\nFees are 0.29047743 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.881791564800580613655902777 CZK)\nThe limits being 0.03 % (6.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60025437 BTC (461,811.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,352,890 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.82 % (950,521.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,892.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01102645 BTC (25,944.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.83 CZK over 5029 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003515 BTC for 82.70 CZK @ 2,352,890 CZK\nFees are 0.29047743 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.881791564800580613655902777 CZK)\nThe limits being 0.03 % (6.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60025437 BTC (461,811.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,352,890 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.82 % (950,521.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,892.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01102645 BTC (25,944.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.83 CZK over 5029 transactions" + } + ] + }, + { + "id": 6738, + "type": "message", + "date": "2025-02-21T09:00:05", + "date_unixtime": "1740124805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003513 BTC for 82.70 CZK @ 2,354,196 CZK\nFees are 0.29047333 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.896160275074812877388576362 CZK)\nThe limits being 0.03 % (6.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60028950 BTC (461,894.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,354,196 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 205.96 % (951,304.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,809.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01106158 BTC (26,041.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.83 CZK over 5030 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003513 BTC for 82.70 CZK @ 2,354,196 CZK\nFees are 0.29047333 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.896160275074812877388576362 CZK)\nThe limits being 0.03 % (6.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60028950 BTC (461,894.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,354,196 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 205.96 % (951,304.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,809.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01106158 BTC (26,041.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.83 CZK over 5030 transactions" + } + ] + }, + { + "id": 6739, + "type": "message", + "date": "2025-02-21T13:00:08", + "date_unixtime": "1740139208", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003492 BTC for 82.69 CZK @ 2,367,908 CZK\nFees are 0.29041869 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (26.046993105459642682455620676 CZK)\nThe limits being 0.03 % (6.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60032442 BTC (461,977.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,367,908 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 207.70 % (959,535.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,726.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01109650 BTC (26,275.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.83 CZK over 5031 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003492 BTC for 82.69 CZK @ 2,367,908 CZK\nFees are 0.29041869 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (26.046993105459642682455620676 CZK)\nThe limits being 0.03 % (6.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60032442 BTC (461,977.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,367,908 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 207.70 % (959,535.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,726.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01109650 BTC (26,275.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.83 CZK over 5031 transactions" + } + ] + }, + { + "id": 6740, + "type": "message", + "date": "2025-02-21T17:00:07", + "date_unixtime": "1740153607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003503 BTC for 82.69 CZK @ 2,360,670 CZK\nFees are 0.29044301 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.967375249145831439803678845 CZK)\nThe limits being 0.03 % (6.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60035945 BTC (462,060.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,360,670 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 206.72 % (955,190.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,643.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01113153 BTC (26,277.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.82 CZK over 5032 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003503 BTC for 82.69 CZK @ 2,360,670 CZK\nFees are 0.29044301 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.967375249145831439803678845 CZK)\nThe limits being 0.03 % (6.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60035945 BTC (462,060.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,360,670 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 206.72 % (955,190.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,643.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01113153 BTC (26,277.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.82 CZK over 5032 transactions" + } + ] + }, + { + "id": 6741, + "type": "message", + "date": "2025-02-21T21:00:07", + "date_unixtime": "1740168007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003605 BTC for 82.69 CZK @ 2,293,716 CZK\nFees are 0.29042256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.230876986303831181710061941 CZK)\nThe limits being 0.03 % (6.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60039550 BTC (462,143.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,732 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 197.99 % (914,993.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,560.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01116758 BTC (25,615.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.82 CZK over 5033 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003605 BTC for 82.69 CZK @ 2,293,716 CZK\nFees are 0.29042256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.230876986303831181710061941 CZK)\nThe limits being 0.03 % (6.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60039550 BTC (462,143.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,732 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 197.99 % (914,993.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,560.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01116758 BTC (25,615.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.82 CZK over 5033 transactions" + } + ] + }, + { + "id": 6742, + "type": "message", + "date": "2025-02-22T01:00:07", + "date_unixtime": "1740182407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003571 BTC for 82.69 CZK @ 2,315,599 CZK\nFees are 0.29042805 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.471584889459281202433878514 CZK)\nThe limits being 0.03 % (6.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60043121 BTC (462,226.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,599 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.80 % (928,131.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,477.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01120329 BTC (25,942.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.82 CZK over 5034 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003571 BTC for 82.69 CZK @ 2,315,599 CZK\nFees are 0.29042805 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.471584889459281202433878514 CZK)\nThe limits being 0.03 % (6.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60043121 BTC (462,226.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,599 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.80 % (928,131.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,477.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01120329 BTC (25,942.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.82 CZK over 5034 transactions" + } + ] + }, + { + "id": 6743, + "type": "message", + "date": "2025-02-22T05:00:04", + "date_unixtime": "1740196804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003567 BTC for 82.71 CZK @ 2,318,650 CZK\nFees are 0.29048502 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.505150581040370477927757474 CZK)\nThe limits being 0.03 % (6.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60046688 BTC (462,309.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 769,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,318,650 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.16 % (929,963.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,394.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01123896 BTC (26,059.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.82 CZK over 5035 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003567 BTC for 82.71 CZK @ 2,318,650 CZK\nFees are 0.29048502 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.505150581040370477927757474 CZK)\nThe limits being 0.03 % (6.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60046688 BTC (462,309.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 769,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,318,650 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.16 % (929,963.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,394.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01123896 BTC (26,059.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.82 CZK over 5035 transactions" + } + ] + }, + { + "id": 6744, + "type": "message", + "date": "2025-02-22T09:00:06", + "date_unixtime": "1740211206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,131 CZK\nFees are 0.29042605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.521438056309091020932907663 CZK)\nThe limits being 0.03 % (6.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60050252 BTC (462,392.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.31 % (930,852.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,311.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01127460 BTC (26,158.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.82 CZK over 5036 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,131 CZK\nFees are 0.29042605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.521438056309091020932907663 CZK)\nThe limits being 0.03 % (6.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60050252 BTC (462,392.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.31 % (930,852.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,311.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01127460 BTC (26,158.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.82 CZK over 5036 transactions" + } + ] + }, + { + "id": 6745, + "type": "message", + "date": "2025-02-22T13:00:04", + "date_unixtime": "1740225604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003560 BTC for 82.70 CZK @ 2,323,106 CZK\nFees are 0.29047213 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.554167389417936100054304316 CZK)\nThe limits being 0.03 % (6.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60053812 BTC (462,475.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,323,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.66 % (932,638.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,228.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01131020 BTC (26,274.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.82 CZK over 5037 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003560 BTC for 82.70 CZK @ 2,323,106 CZK\nFees are 0.29047213 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.554167389417936100054304316 CZK)\nThe limits being 0.03 % (6.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60053812 BTC (462,475.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,323,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.66 % (932,638.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,228.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01131020 BTC (26,274.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.82 CZK over 5037 transactions" + } + ] + }, + { + "id": 6746, + "type": "message", + "date": "2025-02-22T17:00:04", + "date_unixtime": "1740240004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.54 CZK @ 2,321,156 CZK\nFees are 0.28990219 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.532715495764823119083208769 CZK)\nThe limits being 0.03 % (6.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60057368 BTC (462,558.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,321,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.37 % (931,467.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,145.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01134576 BTC (26,335.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.81 CZK over 5038 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.54 CZK @ 2,321,156 CZK\nFees are 0.28990219 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.532715495764823119083208769 CZK)\nThe limits being 0.03 % (6.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60057368 BTC (462,558.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,321,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.37 % (931,467.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,145.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01134576 BTC (26,335.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.81 CZK over 5038 transactions" + } + ] + }, + { + "id": 6747, + "type": "message", + "date": "2025-02-22T21:00:04", + "date_unixtime": "1740254404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,493 CZK\nFees are 0.29044390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.580425984308015309745474642 CZK)\nThe limits being 0.03 % (6.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60060924 BTC (462,641.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.90 % (934,071.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,062.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01138132 BTC (26,467.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.81 CZK over 5039 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,493 CZK\nFees are 0.29044390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.580425984308015309745474642 CZK)\nThe limits being 0.03 % (6.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60060924 BTC (462,641.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.90 % (934,071.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,062.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01138132 BTC (26,467.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.81 CZK over 5039 transactions" + } + ] + }, + { + "id": 6748, + "type": "message", + "date": "2025-02-23T01:00:05", + "date_unixtime": "1740268805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,491 CZK\nFees are 0.29044362 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.580401585732276738950232116 CZK)\nThe limits being 0.03 % (6.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60064480 BTC (462,724.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.86 % (934,069.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,979.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01141688 BTC (26,549.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.81 CZK over 5040 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,491 CZK\nFees are 0.29044362 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.580401585732276738950232116 CZK)\nThe limits being 0.03 % (6.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60064480 BTC (462,724.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.86 % (934,069.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,979.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01141688 BTC (26,549.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.81 CZK over 5040 transactions" + } + ] + }, + { + "id": 6749, + "type": "message", + "date": "2025-02-23T05:00:04", + "date_unixtime": "1740283204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003560 BTC for 82.70 CZK @ 2,322,941 CZK\nFees are 0.29045145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.552347868975439892958913466 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60068040 BTC (462,807.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.50 % (932,537.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,896.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01145248 BTC (26,603.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.81 CZK over 5041 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003560 BTC for 82.70 CZK @ 2,322,941 CZK\nFees are 0.29045145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.552347868975439892958913466 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60068040 BTC (462,807.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.50 % (932,537.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,896.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01145248 BTC (26,603.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.81 CZK over 5041 transactions" + } + ] + }, + { + "id": 6750, + "type": "message", + "date": "2025-02-23T09:00:04", + "date_unixtime": "1740297604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003557 BTC for 82.69 CZK @ 2,324,791 CZK\nFees are 0.29043788 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.572704455967229680655238295 CZK)\nThe limits being 0.03 % (6.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60071597 BTC (462,890.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,324,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.70 % (933,649.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,813.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01148805 BTC (26,707.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.81 CZK over 5042 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003557 BTC for 82.69 CZK @ 2,324,791 CZK\nFees are 0.29043788 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (25.572704455967229680655238295 CZK)\nThe limits being 0.03 % (6.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60071597 BTC (462,890.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,324,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.70 % (933,649.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,813.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01148805 BTC (26,707.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.81 CZK over 5042 transactions" + } + ] + }, + { + "id": 6751, + "type": "message", + "date": "2025-02-23T13:00:07", + "date_unixtime": "1740312007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.69 CZK @ 2,313,750 CZK\nFees are 0.29043997 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.902497259591429995017438966 CZK)\nThe limits being 0.03 % (6.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60075171 BTC (462,973.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,656 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.23 % (927,016.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,730.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01152379 BTC (26,663.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.81 CZK over 5043 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.69 CZK @ 2,313,750 CZK\nFees are 0.29043997 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (50.902497259591429995017438966 CZK)\nThe limits being 0.03 % (6.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60075171 BTC (462,973.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,656 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.23 % (927,016.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,730.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01152379 BTC (26,663.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.81 CZK over 5043 transactions" + } + ] + }, + { + "id": 6752, + "type": "message", + "date": "2025-02-23T17:00:04", + "date_unixtime": "1740326404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,700 CZK\nFees are 0.29045328 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.18679824174898422817136684 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60078767 BTC (463,056.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 198.37 % (918,575.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,647.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01155975 BTC (26,583.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.80 CZK over 5044 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,700 CZK\nFees are 0.29045328 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.18679824174898422817136684 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60078767 BTC (463,056.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 198.37 % (918,575.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,647.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01155975 BTC (26,583.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.80 CZK over 5044 transactions" + } + ] + }, + { + "id": 6753, + "type": "message", + "date": "2025-02-23T21:00:07", + "date_unixtime": "1740340807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003589 BTC for 82.54 CZK @ 2,299,801 CZK\nFees are 0.28990066 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.19125804626687618689837728 CZK)\nThe limits being 0.03 % (6.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60082356 BTC (463,138.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 198.35 % (918,635.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,564.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01159564 BTC (26,667.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.80 CZK over 5045 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003589 BTC for 82.54 CZK @ 2,299,801 CZK\nFees are 0.28990066 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.19125804626687618689837728 CZK)\nThe limits being 0.03 % (6.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60082356 BTC (463,138.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 198.35 % (918,635.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,564.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01159564 BTC (26,667.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.80 CZK over 5045 transactions" + } + ] + }, + { + "id": 6754, + "type": "message", + "date": "2025-02-24T01:00:04", + "date_unixtime": "1740355204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003583 BTC for 82.71 CZK @ 2,308,340 CZK\nFees are 0.29049060 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.56697901970510414220059543 CZK)\nThe limits being 0.03 % (6.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60085939 BTC (463,221.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 770,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.42 % (923,766.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,481.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01163147 BTC (26,849.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.80 CZK over 5046 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003583 BTC for 82.71 CZK @ 2,308,340 CZK\nFees are 0.29049060 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.56697901970510414220059543 CZK)\nThe limits being 0.03 % (6.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60085939 BTC (463,221.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 770,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.42 % (923,766.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,481.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01163147 BTC (26,849.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.80 CZK over 5046 transactions" + } + ] + }, + { + "id": 6755, + "type": "message", + "date": "2025-02-24T05:00:07", + "date_unixtime": "1740369607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003617 BTC for 82.71 CZK @ 2,286,600 CZK\nFees are 0.29048533 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (100.61041788410180073365008481 CZK)\nThe limits being 0.03 % (6.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60089556 BTC (463,304.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,286,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 196.57 % (910,703.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,398.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01166764 BTC (26,679.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.80 CZK over 5047 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003617 BTC for 82.71 CZK @ 2,286,600 CZK\nFees are 0.29048533 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (100.61041788410180073365008481 CZK)\nThe limits being 0.03 % (6.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60089556 BTC (463,304.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,286,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 196.57 % (910,703.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,398.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01166764 BTC (26,679.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.80 CZK over 5047 transactions" + } + ] + }, + { + "id": 6756, + "type": "message", + "date": "2025-02-24T09:00:05", + "date_unixtime": "1740384005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003592 BTC for 82.53 CZK @ 2,297,677 CZK\nFees are 0.28987501 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.09779950795822638582333770 CZK)\nThe limits being 0.03 % (6.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60093148 BTC (463,387.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,677 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 197.97 % (917,358.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,315.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01170356 BTC (26,891.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.80 CZK over 5048 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003592 BTC for 82.53 CZK @ 2,297,677 CZK\nFees are 0.28987501 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.38 % (101.09779950795822638582333770 CZK)\nThe limits being 0.03 % (6.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60093148 BTC (463,387.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,677 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 197.97 % (917,358.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,315.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01170356 BTC (26,891.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.80 CZK over 5048 transactions" + } + ] + }, + { + "id": 6757, + "type": "message", + "date": "2025-02-24T13:00:05", + "date_unixtime": "1740398405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.69 CZK @ 2,305,917 CZK\nFees are 0.29042865 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (76.095274560510605518721285318 CZK)\nThe limits being 0.03 % (6.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60096734 BTC (463,470.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.00 % (922,310.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,232.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01173942 BTC (27,070.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.79 CZK over 5049 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.69 CZK @ 2,305,917 CZK\nFees are 0.29042865 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (76.095274560510605518721285318 CZK)\nThe limits being 0.03 % (6.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60096734 BTC (463,470.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.00 % (922,310.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,232.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01173942 BTC (27,070.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.79 CZK over 5049 transactions" + } + ] + }, + { + "id": 6758, + "type": "message", + "date": "2025-02-24T17:00:07", + "date_unixtime": "1740412807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003652 BTC for 82.54 CZK @ 2,260,221 CZK\nFees are 0.28991255 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (74.587280052947214868442379381 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60100386 BTC (463,553.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,260,221 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.04 % (894,847.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,150.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01177594 BTC (26,616.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.79 CZK over 5050 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003652 BTC for 82.54 CZK @ 2,260,221 CZK\nFees are 0.28991255 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (74.587280052947214868442379381 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60100386 BTC (463,553.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,260,221 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.04 % (894,847.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,150.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01177594 BTC (26,616.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.79 CZK over 5050 transactions" + } + ] + }, + { + "id": 6759, + "type": "message", + "date": "2025-02-24T21:00:07", + "date_unixtime": "1740427207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003673 BTC for 82.70 CZK @ 2,251,501 CZK\nFees are 0.29045478 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (74.299538997662822104664710808 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60104059 BTC (463,636.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,390 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,251,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 191.88 % (889,607.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,067.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01181267 BTC (26,596.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.79 CZK over 5051 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003673 BTC for 82.70 CZK @ 2,251,501 CZK\nFees are 0.29045478 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (74.299538997662822104664710808 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60104059 BTC (463,636.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,390 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,251,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 191.88 % (889,607.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,067.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01181267 BTC (26,596.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.79 CZK over 5051 transactions" + } + ] + }, + { + "id": 6760, + "type": "message", + "date": "2025-02-25T01:00:08", + "date_unixtime": "1740441608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003763 BTC for 82.71 CZK @ 2,197,882 CZK\nFees are 0.29048519 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (72.530103790069860457836848202 CZK)\nThe limits being 0.03 % (6.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60107822 BTC (463,719.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,197,882 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.89 % (857,379.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,984.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01185030 BTC (26,045.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.79 CZK over 5052 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003763 BTC for 82.71 CZK @ 2,197,882 CZK\nFees are 0.29048519 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.28 % (72.530103790069860457836848202 CZK)\nThe limits being 0.03 % (6.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60107822 BTC (463,719.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,197,882 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.89 % (857,379.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,984.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01185030 BTC (26,045.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.79 CZK over 5052 transactions" + } + ] + }, + { + "id": 6761, + "type": "message", + "date": "2025-02-25T05:00:04", + "date_unixtime": "1740456004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003744 BTC for 82.69 CZK @ 2,208,730 CZK\nFees are 0.29044498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (48.592057605538734088808827223 CZK)\nThe limits being 0.03 % (6.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60111566 BTC (463,802.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,208,730 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.26 % (863,899.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,901.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01188774 BTC (26,256.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.79 CZK over 5053 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003744 BTC for 82.69 CZK @ 2,208,730 CZK\nFees are 0.29044498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.19 % (48.592057605538734088808827223 CZK)\nThe limits being 0.03 % (6.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60111566 BTC (463,802.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,208,730 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.26 % (863,899.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,901.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01188774 BTC (26,256.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.79 CZK over 5053 transactions" + } + ] + }, + { + "id": 6762, + "type": "message", + "date": "2025-02-25T09:00:06", + "date_unixtime": "1740470406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003858 BTC for 82.71 CZK @ 2,143,824 CZK\nFees are 0.29049368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (47.164119052987948091477650928 CZK)\nThe limits being 0.03 % (6.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60115424 BTC (463,885.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,143,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.82 % (824,883.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,818.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01192632 BTC (25,567.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.79 CZK over 5054 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003858 BTC for 82.71 CZK @ 2,143,824 CZK\nFees are 0.29049368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (47.164119052987948091477650928 CZK)\nThe limits being 0.03 % (6.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60115424 BTC (463,885.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,143,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.82 % (824,883.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,818.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01192632 BTC (25,567.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.79 CZK over 5054 transactions" + } + ] + }, + { + "id": 6763, + "type": "message", + "date": "2025-02-25T13:00:07", + "date_unixtime": "1740484807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003877 BTC for 82.69 CZK @ 2,132,896 CZK\nFees are 0.29043636 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.923721645378652148483660297 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60119301 BTC (463,968.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,746 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,132,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.37 % (818,313.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,735.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01196509 BTC (25,520.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.78 CZK over 5055 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003877 BTC for 82.69 CZK @ 2,132,896 CZK\nFees are 0.29043636 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.923721645378652148483660297 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60119301 BTC (463,968.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,746 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,132,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.37 % (818,313.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,735.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01196509 BTC (25,520.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.78 CZK over 5055 transactions" + } + ] + }, + { + "id": 6764, + "type": "message", + "date": "2025-02-25T17:00:05", + "date_unixtime": "1740499205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003980 BTC for 82.69 CZK @ 2,077,655 CZK\nFees are 0.29043032 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.708413496981669683745083163 CZK)\nThe limits being 0.03 % (6.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60123281 BTC (464,051.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,077,655 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.18 % (785,103.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,652.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01200489 BTC (24,942.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.78 CZK over 5056 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003980 BTC for 82.69 CZK @ 2,077,655 CZK\nFees are 0.29043032 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.708413496981669683745083163 CZK)\nThe limits being 0.03 % (6.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60123281 BTC (464,051.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,077,655 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.18 % (785,103.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,652.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01200489 BTC (24,942.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.78 CZK over 5056 transactions" + } + ] + }, + { + "id": 6765, + "type": "message", + "date": "2025-02-25T21:00:07", + "date_unixtime": "1740513607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003952 BTC for 82.70 CZK @ 2,092,554 CZK\nFees are 0.29045514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (69.054288083307613635675943912 CZK)\nThe limits being 0.03 % (6.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60127233 BTC (464,134.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 771,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,092,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.08 % (794,060.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,569.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01204441 BTC (25,203.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.78 CZK over 5057 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003952 BTC for 82.70 CZK @ 2,092,554 CZK\nFees are 0.29045514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (69.054288083307613635675943912 CZK)\nThe limits being 0.03 % (6.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60127233 BTC (464,134.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 771,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,092,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.08 % (794,060.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,569.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01204441 BTC (25,203.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.78 CZK over 5057 transactions" + } + ] + }, + { + "id": 6766, + "type": "message", + "date": "2025-02-26T01:00:07", + "date_unixtime": "1740528007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003918 BTC for 82.70 CZK @ 2,110,777 CZK\nFees are 0.29046399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (69.655656535967910170452421124 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60131151 BTC (464,217.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,110,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.41 % (805,017.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,486.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01208359 BTC (25,505.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.78 CZK over 5058 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003918 BTC for 82.70 CZK @ 2,110,777 CZK\nFees are 0.29046399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.27 % (69.655656535967910170452421124 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60131151 BTC (464,217.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,110,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.41 % (805,017.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,486.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01208359 BTC (25,505.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.78 CZK over 5058 transactions" + } + ] + }, + { + "id": 6767, + "type": "message", + "date": "2025-02-26T05:00:07", + "date_unixtime": "1740542407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003903 BTC for 82.69 CZK @ 2,118,664 CZK\nFees are 0.29043308 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.610609530236281648613659520 CZK)\nThe limits being 0.03 % (6.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60135054 BTC (464,300.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,118,664 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.40 % (809,759.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,403.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01212262 BTC (25,683.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.78 CZK over 5059 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003903 BTC for 82.69 CZK @ 2,118,664 CZK\nFees are 0.29043308 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.610609530236281648613659520 CZK)\nThe limits being 0.03 % (6.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60135054 BTC (464,300.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,118,664 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.40 % (809,759.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,403.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01212262 BTC (25,683.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.78 CZK over 5059 transactions" + } + ] + }, + { + "id": 6768, + "type": "message", + "date": "2025-02-26T09:00:04", + "date_unixtime": "1740556804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003909 BTC for 82.70 CZK @ 2,115,536 CZK\nFees are 0.29045013 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.541798529398830876276852966 CZK)\nThe limits being 0.03 % (6.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60138963 BTC (464,383.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,115,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.97 % (807,878.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,320.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01216171 BTC (25,728.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.78 CZK over 5060 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003909 BTC for 82.70 CZK @ 2,115,536 CZK\nFees are 0.29045013 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.541798529398830876276852966 CZK)\nThe limits being 0.03 % (6.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60138963 BTC (464,383.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,115,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.97 % (807,878.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,320.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01216171 BTC (25,728.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.78 CZK over 5060 transactions" + } + ] + }, + { + "id": 6769, + "type": "message", + "date": "2025-02-26T13:00:07", + "date_unixtime": "1740571207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003910 BTC for 82.71 CZK @ 2,115,257 CZK\nFees are 0.29048602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.535645241654210264075734926 CZK)\nThe limits being 0.03 % (6.45 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60142873 BTC (464,466.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,115,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.90 % (807,709.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,237.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01220081 BTC (25,807.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.77 CZK over 5061 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003910 BTC for 82.71 CZK @ 2,115,257 CZK\nFees are 0.29048602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (46.535645241654210264075734926 CZK)\nThe limits being 0.03 % (6.45 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60142873 BTC (464,466.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,115,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.90 % (807,709.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,237.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01220081 BTC (25,807.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.77 CZK over 5061 transactions" + } + ] + }, + { + "id": 6770, + "type": "message", + "date": "2025-02-26T17:00:07", + "date_unixtime": "1740585607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003967 BTC for 82.69 CZK @ 2,084,513 CZK\nFees are 0.29043722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.859290439097140346573732548 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60146840 BTC (464,549.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,359 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,084,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.89 % (789,219.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,154.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01224048 BTC (25,515.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.77 CZK over 5062 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003967 BTC for 82.69 CZK @ 2,084,513 CZK\nFees are 0.29043722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.859290439097140346573732548 CZK)\nThe limits being 0.03 % (6.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60146840 BTC (464,549.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,359 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,084,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.89 % (789,219.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,154.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01224048 BTC (25,515.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.77 CZK over 5062 transactions" + } + ] + }, + { + "id": 6771, + "type": "message", + "date": "2025-02-26T21:00:04", + "date_unixtime": "1740600004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004134 BTC for 82.69 CZK @ 2,000,290 CZK\nFees are 0.29043492 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.006377783225570686438780185 CZK)\nThe limits being 0.03 % (6.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60150974 BTC (464,632.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,000,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.96 % (738,561.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,071.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01228182 BTC (24,567.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.77 CZK over 5063 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004134 BTC for 82.69 CZK @ 2,000,290 CZK\nFees are 0.29043492 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.006377783225570686438780185 CZK)\nThe limits being 0.03 % (6.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60150974 BTC (464,632.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,000,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.96 % (738,561.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,071.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01228182 BTC (24,567.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.77 CZK over 5063 transactions" + } + ] + }, + { + "id": 6772, + "type": "message", + "date": "2025-02-27T01:00:05", + "date_unixtime": "1740614405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004126 BTC for 82.69 CZK @ 2,004,150 CZK\nFees are 0.29043234 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.091310849254946514151511881 CZK)\nThe limits being 0.03 % (6.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60155100 BTC (464,715.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,004,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.43 % (740,883.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,988.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01232308 BTC (24,697.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.77 CZK over 5064 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004126 BTC for 82.69 CZK @ 2,004,150 CZK\nFees are 0.29043234 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.091310849254946514151511881 CZK)\nThe limits being 0.03 % (6.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60155100 BTC (464,715.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,004,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.43 % (740,883.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,988.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01232308 BTC (24,697.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.77 CZK over 5064 transactions" + } + ] + }, + { + "id": 6773, + "type": "message", + "date": "2025-02-27T05:00:07", + "date_unixtime": "1740628807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004071 BTC for 82.70 CZK @ 2,031,540 CZK\nFees are 0.29047704 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.693870265174811275250452942 CZK)\nThe limits being 0.03 % (6.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60159171 BTC (464,798.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,031,540 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.94 % (757,359.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,905.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01236379 BTC (25,117.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.77 CZK over 5065 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004071 BTC for 82.70 CZK @ 2,031,540 CZK\nFees are 0.29047704 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.693870265174811275250452942 CZK)\nThe limits being 0.03 % (6.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60159171 BTC (464,798.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,031,540 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.94 % (757,359.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,905.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01236379 BTC (25,117.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.77 CZK over 5065 transactions" + } + ] + }, + { + "id": 6774, + "type": "message", + "date": "2025-02-27T09:00:04", + "date_unixtime": "1740643204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004008 BTC for 82.70 CZK @ 2,063,310 CZK\nFees are 0.29045410 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.392809187802770144812517464 CZK)\nThe limits being 0.03 % (6.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60163179 BTC (464,881.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,063,310 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.03 % (776,471.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,822.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01240387 BTC (25,593.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.76 CZK over 5066 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004008 BTC for 82.70 CZK @ 2,063,310 CZK\nFees are 0.29045410 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.392809187802770144812517464 CZK)\nThe limits being 0.03 % (6.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60163179 BTC (464,881.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,063,310 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.03 % (776,471.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,822.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01240387 BTC (25,593.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.76 CZK over 5066 transactions" + } + ] + }, + { + "id": 6775, + "type": "message", + "date": "2025-02-27T13:00:04", + "date_unixtime": "1740657604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003984 BTC for 82.69 CZK @ 2,075,636 CZK\nFees are 0.29043970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.663995112487818738831759527 CZK)\nThe limits being 0.03 % (6.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60167163 BTC (464,964.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,075,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.59 % (783,887.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,739.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01244371 BTC (25,828.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.76 CZK over 5067 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003984 BTC for 82.69 CZK @ 2,075,636 CZK\nFees are 0.29043970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.663995112487818738831759527 CZK)\nThe limits being 0.03 % (6.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60167163 BTC (464,964.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,075,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.59 % (783,887.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,739.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01244371 BTC (25,828.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.76 CZK over 5067 transactions" + } + ] + }, + { + "id": 6776, + "type": "message", + "date": "2025-02-27T17:00:04", + "date_unixtime": "1740672004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004013 BTC for 82.69 CZK @ 2,060,609 CZK\nFees are 0.29043579 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.333393538265212051862835916 CZK)\nThe limits being 0.03 % (6.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60171176 BTC (465,047.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,060,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.62 % (774,845.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,656.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01248384 BTC (25,724.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.76 CZK over 5068 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004013 BTC for 82.69 CZK @ 2,060,609 CZK\nFees are 0.29043579 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (45.333393538265212051862835916 CZK)\nThe limits being 0.03 % (6.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60171176 BTC (465,047.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,060,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.62 % (774,845.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,656.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01248384 BTC (25,724.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.76 CZK over 5068 transactions" + } + ] + }, + { + "id": 6777, + "type": "message", + "date": "2025-02-27T21:00:07", + "date_unixtime": "1740686407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004083 BTC for 82.71 CZK @ 2,025,684 CZK\nFees are 0.29049355 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.565048127781029926972471199 CZK)\nThe limits being 0.03 % (6.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60175259 BTC (465,130.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 772,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,025,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.07 % (753,830.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,573.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01252467 BTC (25,371.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.76 CZK over 5069 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004083 BTC for 82.71 CZK @ 2,025,684 CZK\nFees are 0.29049355 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.18 % (44.565048127781029926972471199 CZK)\nThe limits being 0.03 % (6.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60175259 BTC (465,130.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 772,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,025,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.07 % (753,830.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,573.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01252467 BTC (25,371.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.76 CZK over 5069 transactions" + } + ] + }, + { + "id": 6778, + "type": "message", + "date": "2025-02-28T01:00:08", + "date_unixtime": "1740700808", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004051 BTC for 82.70 CZK @ 2,041,487 CZK\nFees are 0.29046536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.456360061925940029447661401 CZK)\nThe limits being 0.03 % (6.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60179310 BTC (465,213.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,041,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.08 % (763,339.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,490.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01256518 BTC (25,651.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.76 CZK over 5070 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004051 BTC for 82.70 CZK @ 2,041,487 CZK\nFees are 0.29046536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.456360061925940029447661401 CZK)\nThe limits being 0.03 % (6.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60179310 BTC (465,213.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,041,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.08 % (763,339.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,490.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01256518 BTC (25,651.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.76 CZK over 5070 transactions" + } + ] + }, + { + "id": 6779, + "type": "message", + "date": "2025-02-28T05:00:09", + "date_unixtime": "1740715209", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004264 BTC for 82.69 CZK @ 1,939,314 CZK\nFees are 0.29043626 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (21.332458066560658707656410817 CZK)\nThe limits being 0.03 % (6.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60183574 BTC (465,296.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,939,314 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.84 % (701,852.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,407.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01260782 BTC (24,450.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.76 CZK over 5071 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004264 BTC for 82.69 CZK @ 1,939,314 CZK\nFees are 0.29043626 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (21.332458066560658707656410817 CZK)\nThe limits being 0.03 % (6.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60183574 BTC (465,296.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,939,314 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.84 % (701,852.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,407.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01260782 BTC (24,450.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.76 CZK over 5071 transactions" + } + ] + }, + { + "id": 6780, + "type": "message", + "date": "2025-02-28T09:00:08", + "date_unixtime": "1740729608", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004333 BTC for 82.71 CZK @ 1,908,743 CZK\nFees are 0.29048363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (20.996177379172894867962132537 CZK)\nThe limits being 0.03 % (6.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60187907 BTC (465,379.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,211 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,908,743 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.86 % (683,453.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,324.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01265115 BTC (24,147.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.75 CZK over 5072 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004333 BTC for 82.71 CZK @ 1,908,743 CZK\nFees are 0.29048363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (20.996177379172894867962132537 CZK)\nThe limits being 0.03 % (6.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60187907 BTC (465,379.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,211 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,908,743 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.86 % (683,453.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,324.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01265115 BTC (24,147.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.75 CZK over 5072 transactions" + } + ] + }, + { + "id": 6781, + "type": "message", + "date": "2025-02-28T13:00:09", + "date_unixtime": "1740744009", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004252 BTC for 82.70 CZK @ 1,945,015 CZK\nFees are 0.29047016 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (21.395159884665195803399297191 CZK)\nThe limits being 0.03 % (6.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60192159 BTC (465,462.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,945,015 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.52 % (705,284.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,241.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01269367 BTC (24,689.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.75 CZK over 5073 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004252 BTC for 82.70 CZK @ 1,945,015 CZK\nFees are 0.29047016 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (21.395159884665195803399297191 CZK)\nThe limits being 0.03 % (6.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60192159 BTC (465,462.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,945,015 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.52 % (705,284.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,241.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01269367 BTC (24,689.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.75 CZK over 5073 transactions" + } + ] + }, + { + "id": 6782, + "type": "message", + "date": "2025-02-28T17:00:04", + "date_unixtime": "1740758404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004075 BTC for 82.70 CZK @ 2,029,463 CZK\nFees are 0.29046530 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.324097379172894867962132537 CZK)\nThe limits being 0.03 % (6.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60196234 BTC (465,545.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,029,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.42 % (756,115.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,158.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01273442 BTC (25,844.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.75 CZK over 5074 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004075 BTC for 82.70 CZK @ 2,029,463 CZK\nFees are 0.29046530 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.324097379172894867962132537 CZK)\nThe limits being 0.03 % (6.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60196234 BTC (465,545.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,029,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.42 % (756,115.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,158.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01273442 BTC (25,844.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.75 CZK over 5074 transactions" + } + ] + }, + { + "id": 6783, + "type": "message", + "date": "2025-02-28T21:00:04", + "date_unixtime": "1740772804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004033 BTC for 82.71 CZK @ 2,050,836 CZK\nFees are 0.29049889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.559190606000742998315713994 CZK)\nThe limits being 0.03 % (6.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60200267 BTC (465,628.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,050,836 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.15 % (768,980.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,075.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01277475 BTC (26,198.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.75 CZK over 5075 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004033 BTC for 82.71 CZK @ 2,050,836 CZK\nFees are 0.29049889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.559190606000742998315713994 CZK)\nThe limits being 0.03 % (6.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60200267 BTC (465,628.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,050,836 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.15 % (768,980.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,075.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01277475 BTC (26,198.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.75 CZK over 5075 transactions" + } + ] + }, + { + "id": 6784, + "type": "message", + "date": "2025-03-01T01:00:05", + "date_unixtime": "1740787205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004038 BTC for 82.70 CZK @ 2,048,035 CZK\nFees are 0.29046179 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.528380038611763236794053898 CZK)\nThe limits being 0.03 % (6.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60204305 BTC (465,711.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,048,035 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.76 % (767,293.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,992.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01281513 BTC (26,245.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.75 CZK over 5076 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004038 BTC for 82.70 CZK @ 2,048,035 CZK\nFees are 0.29046179 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.528380038611763236794053898 CZK)\nThe limits being 0.03 % (6.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60204305 BTC (465,711.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,048,035 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.76 % (767,293.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,992.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01281513 BTC (26,245.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.75 CZK over 5076 transactions" + } + ] + }, + { + "id": 6785, + "type": "message", + "date": "2025-03-01T05:00:04", + "date_unixtime": "1740801604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003996 BTC for 82.70 CZK @ 2,069,582 CZK\nFees are 0.29046483 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (45.530806124011405526104081161 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60208301 BTC (465,794.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,638 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,069,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.51 % (780,266.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,909.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01285509 BTC (26,604.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.75 CZK over 5077 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003996 BTC for 82.70 CZK @ 2,069,582 CZK\nFees are 0.29046483 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.17 % (45.530806124011405526104081161 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60208301 BTC (465,794.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,638 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,069,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.51 % (780,266.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,909.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01285509 BTC (26,604.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.75 CZK over 5077 transactions" + } + ] + }, + { + "id": 6786, + "type": "message", + "date": "2025-03-01T09:00:05", + "date_unixtime": "1740816005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004018 BTC for 82.71 CZK @ 2,058,376 CZK\nFees are 0.29048259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.642138739895681193473415470 CZK)\nThe limits being 0.03 % (6.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60212319 BTC (465,877.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,058,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.03 % (773,518.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,826.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01289527 BTC (26,543.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.74 CZK over 5078 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004018 BTC for 82.71 CZK @ 2,058,376 CZK\nFees are 0.29048259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.642138739895681193473415470 CZK)\nThe limits being 0.03 % (6.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60212319 BTC (465,877.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,058,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.03 % (773,518.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,826.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01289527 BTC (26,543.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.74 CZK over 5078 transactions" + } + ] + }, + { + "id": 6787, + "type": "message", + "date": "2025-03-01T13:00:04", + "date_unixtime": "1740830404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004024 BTC for 82.71 CZK @ 2,055,345 CZK\nFees are 0.29048791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.608791870104732838643277357 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60216343 BTC (465,960.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,055,345 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.61 % (771,693.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,743.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01293551 BTC (26,586.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.74 CZK over 5079 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004024 BTC for 82.71 CZK @ 2,055,345 CZK\nFees are 0.29048791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.09 % (22.608791870104732838643277357 CZK)\nThe limits being 0.03 % (6.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60216343 BTC (465,960.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,055,345 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.61 % (771,693.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,743.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01293551 BTC (26,586.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.74 CZK over 5079 transactions" + } + ] + }, + { + "id": 6788, + "type": "message", + "date": "2025-03-01T17:00:04", + "date_unixtime": "1740844804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004015 BTC for 82.70 CZK @ 2,059,823 CZK\nFees are 0.29046970 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.658051283521373821760823419 CZK)\nThe limits being 0.03 % (6.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60220358 BTC (466,043.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,896 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,059,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.16 % (774,389.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,660.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01297566 BTC (26,727.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.74 CZK over 5080 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004015 BTC for 82.70 CZK @ 2,059,823 CZK\nFees are 0.29046970 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.658051283521373821760823419 CZK)\nThe limits being 0.03 % (6.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60220358 BTC (466,043.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,896 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,059,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.16 % (774,389.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,660.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01297566 BTC (26,727.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.74 CZK over 5080 transactions" + } + ] + }, + { + "id": 6789, + "type": "message", + "date": "2025-03-01T21:00:04", + "date_unixtime": "1740859204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003988 BTC for 82.69 CZK @ 2,073,564 CZK\nFees are 0.29044106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.809203911185474710129391662 CZK)\nThe limits being 0.03 % (6.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60224346 BTC (466,126.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 773,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,073,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 167.91 % (782,664.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,577.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01301554 BTC (26,988.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.74 CZK over 5081 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003988 BTC for 82.69 CZK @ 2,073,564 CZK\nFees are 0.29044106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.809203911185474710129391662 CZK)\nThe limits being 0.03 % (6.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60224346 BTC (466,126.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 773,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,073,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 167.91 % (782,664.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,577.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01301554 BTC (26,988.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.74 CZK over 5081 transactions" + } + ] + }, + { + "id": 6790, + "type": "message", + "date": "2025-03-02T01:00:04", + "date_unixtime": "1740873604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003955 BTC for 82.70 CZK @ 2,090,969 CZK\nFees are 0.29045547 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.000661701239089230676198414 CZK)\nThe limits being 0.03 % (6.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60228301 BTC (466,209.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,090,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.13 % (793,146.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,494.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01305509 BTC (27,297.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.74 CZK over 5082 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003955 BTC for 82.70 CZK @ 2,090,969 CZK\nFees are 0.29045547 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.000661701239089230676198414 CZK)\nThe limits being 0.03 % (6.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60228301 BTC (466,209.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,090,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.13 % (793,146.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,494.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01305509 BTC (27,297.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.74 CZK over 5082 transactions" + } + ] + }, + { + "id": 6791, + "type": "message", + "date": "2025-03-02T05:00:04", + "date_unixtime": "1740888004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003964 BTC for 82.53 CZK @ 2,081,885 CZK\nFees are 0.28985164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.900732744928572398220758125 CZK)\nThe limits being 0.03 % (6.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60232265 BTC (466,291.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,156 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,081,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.92 % (787,674.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,411.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01309473 BTC (27,261.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.74 CZK over 5083 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003964 BTC for 82.53 CZK @ 2,081,885 CZK\nFees are 0.28985164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.900732744928572398220758125 CZK)\nThe limits being 0.03 % (6.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60232265 BTC (466,291.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,156 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,081,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.92 % (787,674.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,411.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01309473 BTC (27,261.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.74 CZK over 5083 transactions" + } + ] + }, + { + "id": 6792, + "type": "message", + "date": "2025-03-02T09:00:04", + "date_unixtime": "1740902404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003947 BTC for 82.69 CZK @ 2,095,135 CZK\nFees are 0.29044538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.046480563530556656970428682 CZK)\nThe limits being 0.03 % (6.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60236212 BTC (466,374.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,243 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,095,135 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.60 % (795,654.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,328.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01313420 BTC (27,517.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.73 CZK over 5084 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003947 BTC for 82.69 CZK @ 2,095,135 CZK\nFees are 0.29044538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.046480563530556656970428682 CZK)\nThe limits being 0.03 % (6.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60236212 BTC (466,374.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,243 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,095,135 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.60 % (795,654.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,328.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01313420 BTC (27,517.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.73 CZK over 5084 transactions" + } + ] + }, + { + "id": 6793, + "type": "message", + "date": "2025-03-02T13:00:04", + "date_unixtime": "1740916804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003953 BTC for 82.71 CZK @ 2,092,220 CZK\nFees are 0.29048229 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.014423902125510372184578867 CZK)\nThe limits being 0.03 % (6.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60240165 BTC (466,457.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,092,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.20 % (793,899.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,245.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01317373 BTC (27,562.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.73 CZK over 5085 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003953 BTC for 82.71 CZK @ 2,092,220 CZK\nFees are 0.29048229 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.014423902125510372184578867 CZK)\nThe limits being 0.03 % (6.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60240165 BTC (466,457.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,092,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.20 % (793,899.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,245.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01317373 BTC (27,562.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.73 CZK over 5085 transactions" + } + ] + }, + { + "id": 6794, + "type": "message", + "date": "2025-03-02T17:00:03", + "date_unixtime": "1740931203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003896 BTC for 82.70 CZK @ 2,122,696 CZK\nFees are 0.29046392 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.349656985714271098383583535 CZK)\nThe limits being 0.03 % (7.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60244061 BTC (466,540.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,122,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.10 % (812,257.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,162.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01321269 BTC (28,046.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.73 CZK over 5086 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003896 BTC for 82.70 CZK @ 2,122,696 CZK\nFees are 0.29046392 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.349656985714271098383583535 CZK)\nThe limits being 0.03 % (7.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60244061 BTC (466,540.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,122,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.10 % (812,257.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,162.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01321269 BTC (28,046.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.73 CZK over 5086 transactions" + } + ] + }, + { + "id": 6795, + "type": "message", + "date": "2025-03-02T21:00:04", + "date_unixtime": "1740945604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003651 BTC for 82.54 CZK @ 2,260,806 CZK\nFees are 0.28990822 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.868864890713234984047207002 CZK)\nThe limits being 0.03 % (7.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60247712 BTC (466,623.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,260,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 191.90 % (895,460.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,079.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01324920 BTC (29,953.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.73 CZK over 5087 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003651 BTC for 82.54 CZK @ 2,260,806 CZK\nFees are 0.28990822 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.868864890713234984047207002 CZK)\nThe limits being 0.03 % (7.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60247712 BTC (466,623.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,260,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 191.90 % (895,460.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,079.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01324920 BTC (29,953.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.73 CZK over 5087 transactions" + } + ] + }, + { + "id": 6796, + "type": "message", + "date": "2025-03-03T01:00:05", + "date_unixtime": "1740960005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003628 BTC for 82.70 CZK @ 2,279,444 CZK\nFees are 0.29045680 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.08 % (25.073879833757153161289401097 CZK)\nThe limits being 0.03 % (7.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60251340 BTC (466,706.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,279,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.27 % (906,688.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,996.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01328548 BTC (30,283.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.73 CZK over 5088 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003628 BTC for 82.70 CZK @ 2,279,444 CZK\nFees are 0.29045680 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.08 % (25.073879833757153161289401097 CZK)\nThe limits being 0.03 % (7.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60251340 BTC (466,706.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,279,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.27 % (906,688.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,996.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01328548 BTC (30,283.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.73 CZK over 5088 transactions" + } + ] + }, + { + "id": 6797, + "type": "message", + "date": "2025-03-03T05:00:03", + "date_unixtime": "1740974403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003688 BTC for 82.70 CZK @ 2,242,286 CZK\nFees are 0.29044733 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.665149100977381766852891237 CZK)\nThe limits being 0.03 % (7.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60255028 BTC (466,789.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,242,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.44 % (884,300.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,913.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01332236 BTC (29,872.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.73 CZK over 5089 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003688 BTC for 82.70 CZK @ 2,242,286 CZK\nFees are 0.29044733 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.665149100977381766852891237 CZK)\nThe limits being 0.03 % (7.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60255028 BTC (466,789.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,242,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.44 % (884,300.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,913.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01332236 BTC (29,872.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.73 CZK over 5089 transactions" + } + ] + }, + { + "id": 6798, + "type": "message", + "date": "2025-03-03T09:00:04", + "date_unixtime": "1740988804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003702 BTC for 82.69 CZK @ 2,233,669 CZK\nFees are 0.29042943 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.570357536574447564265212221 CZK)\nThe limits being 0.03 % (7.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60258730 BTC (466,872.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,233,669 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.30 % (879,107.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,830.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01335938 BTC (29,840.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.72 CZK over 5090 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003702 BTC for 82.69 CZK @ 2,233,669 CZK\nFees are 0.29042943 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.570357536574447564265212221 CZK)\nThe limits being 0.03 % (7.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60258730 BTC (466,872.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,233,669 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.30 % (879,107.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,830.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01335938 BTC (29,840.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.72 CZK over 5090 transactions" + } + ] + }, + { + "id": 6799, + "type": "message", + "date": "2025-03-03T13:00:05", + "date_unixtime": "1741003205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003699 BTC for 82.69 CZK @ 2,235,568 CZK\nFees are 0.29044075 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.591243438988142743975431758 CZK)\nThe limits being 0.03 % (7.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60262429 BTC (466,955.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,870 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,235,568 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.51 % (880,251.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,747.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01339637 BTC (29,948.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.72 CZK over 5091 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003699 BTC for 82.69 CZK @ 2,235,568 CZK\nFees are 0.29044075 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (24.591243438988142743975431758 CZK)\nThe limits being 0.03 % (7.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60262429 BTC (466,955.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,870 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,235,568 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.51 % (880,251.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,747.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01339637 BTC (29,948.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.72 CZK over 5091 transactions" + } + ] + }, + { + "id": 6800, + "type": "message", + "date": "2025-03-03T17:00:04", + "date_unixtime": "1741017604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003828 BTC for 82.71 CZK @ 2,160,654 CZK\nFees are 0.29049767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.767198612328115961949269512 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60266257 BTC (467,038.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 774,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,160,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.81 % (835,106.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,664.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01343465 BTC (29,027.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.72 CZK over 5092 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003828 BTC for 82.71 CZK @ 2,160,654 CZK\nFees are 0.29049767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.767198612328115961949269512 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60266257 BTC (467,038.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 774,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,160,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.81 % (835,106.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,664.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01343465 BTC (29,027.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.72 CZK over 5092 transactions" + } + ] + }, + { + "id": 6801, + "type": "message", + "date": "2025-03-03T21:00:04", + "date_unixtime": "1741032004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004024 BTC for 82.70 CZK @ 2,055,276 CZK\nFees are 0.29047821 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.608036536139416614414162757 CZK)\nThe limits being 0.03 % (6.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60270281 BTC (467,121.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,045 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,055,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.18 % (771,598.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,581.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01347489 BTC (27,694.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.72 CZK over 5093 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004024 BTC for 82.70 CZK @ 2,055,276 CZK\nFees are 0.29047821 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.608036536139416614414162757 CZK)\nThe limits being 0.03 % (6.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60270281 BTC (467,121.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,045 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,055,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.18 % (771,598.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,581.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01347489 BTC (27,694.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.72 CZK over 5093 transactions" + } + ] + }, + { + "id": 6802, + "type": "message", + "date": "2025-03-04T01:00:04", + "date_unixtime": "1741046404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004002 BTC for 82.69 CZK @ 2,066,241 CZK\nFees are 0.29043131 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.728648724715868274133984329 CZK)\nThe limits being 0.03 % (6.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60274283 BTC (467,204.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,066,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.57 % (778,207.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,498.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01351491 BTC (27,925.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.72 CZK over 5094 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004002 BTC for 82.69 CZK @ 2,066,241 CZK\nFees are 0.29043131 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.728648724715868274133984329 CZK)\nThe limits being 0.03 % (6.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60274283 BTC (467,204.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,066,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.57 % (778,207.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,498.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01351491 BTC (27,925.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.72 CZK over 5094 transactions" + } + ] + }, + { + "id": 6803, + "type": "message", + "date": "2025-03-04T05:00:05", + "date_unixtime": "1741060805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004080 BTC for 82.71 CZK @ 2,027,213 CZK\nFees are 0.29049919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.299340857000498256103637270 CZK)\nThe limits being 0.03 % (6.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60278363 BTC (467,287.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,027,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.50 % (754,683.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,415.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01355571 BTC (27,480.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.71 CZK over 5095 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004080 BTC for 82.71 CZK @ 2,027,213 CZK\nFees are 0.29049919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.299340857000498256103637270 CZK)\nThe limits being 0.03 % (6.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60278363 BTC (467,287.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,027,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.50 % (754,683.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,415.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01355571 BTC (27,480.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.71 CZK over 5095 transactions" + } + ] + }, + { + "id": 6804, + "type": "message", + "date": "2025-03-04T09:00:04", + "date_unixtime": "1741075204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004136 BTC for 82.71 CZK @ 1,999,749 CZK\nFees are 0.29049679 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.997234092908861537809157311 CZK)\nThe limits being 0.03 % (6.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60282499 BTC (467,370.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,999,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.93 % (738,127.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,332.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01359707 BTC (27,190.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.71 CZK over 5096 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004136 BTC for 82.71 CZK @ 1,999,749 CZK\nFees are 0.29049679 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.997234092908861537809157311 CZK)\nThe limits being 0.03 % (6.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60282499 BTC (467,370.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,999,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.93 % (738,127.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,332.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01359707 BTC (27,190.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.71 CZK over 5096 transactions" + } + ] + }, + { + "id": 6805, + "type": "message", + "date": "2025-03-04T13:00:04", + "date_unixtime": "1741089604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004126 BTC for 82.70 CZK @ 2,004,481 CZK\nFees are 0.29048028 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.049294469357249626307922271 CZK)\nThe limits being 0.03 % (6.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60286625 BTC (467,453.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,385 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,004,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.51 % (740,980.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,249.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01363833 BTC (27,337.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.71 CZK over 5097 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004126 BTC for 82.70 CZK @ 2,004,481 CZK\nFees are 0.29048028 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.049294469357249626307922271 CZK)\nThe limits being 0.03 % (6.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60286625 BTC (467,453.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,385 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,004,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.51 % (740,980.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,249.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01363833 BTC (27,337.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.71 CZK over 5097 transactions" + } + ] + }, + { + "id": 6806, + "type": "message", + "date": "2025-03-04T17:00:05", + "date_unixtime": "1741104005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004173 BTC for 82.70 CZK @ 1,981,795 CZK\nFees are 0.29046416 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.799746095710305089626995666 CZK)\nThe limits being 0.03 % (6.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60290798 BTC (467,536.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,981,795 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.56 % (727,303.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,166.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01368006 BTC (27,111.08 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.71 CZK over 5098 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004173 BTC for 82.70 CZK @ 1,981,795 CZK\nFees are 0.29046416 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.799746095710305089626995666 CZK)\nThe limits being 0.03 % (6.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60290798 BTC (467,536.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,981,795 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.56 % (727,303.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,166.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01368006 BTC (27,111.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.71 CZK over 5098 transactions" + } + ] + }, + { + "id": 6807, + "type": "message", + "date": "2025-03-04T21:00:04", + "date_unixtime": "1741118404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003944 BTC for 82.70 CZK @ 2,096,734 CZK\nFees are 0.29044612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.064069274779650533477655792 CZK)\nThe limits being 0.03 % (7.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60294742 BTC (467,619.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,556 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,096,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.35 % (796,600.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,083.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01371950 BTC (28,766.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.71 CZK over 5099 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003944 BTC for 82.70 CZK @ 2,096,734 CZK\nFees are 0.29044612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.064069274779650533477655792 CZK)\nThe limits being 0.03 % (7.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60294742 BTC (467,619.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,556 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,096,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.35 % (796,600.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,083.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01371950 BTC (28,766.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.71 CZK over 5099 transactions" + } + ] + }, + { + "id": 6808, + "type": "message", + "date": "2025-03-05T01:00:04", + "date_unixtime": "1741132804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003999 BTC for 82.71 CZK @ 2,068,171 CZK\nFees are 0.29048465 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.749876476094609103197573185 CZK)\nThe limits being 0.03 % (7.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60298741 BTC (467,702.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,068,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.64 % (779,378.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,000.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01375949 BTC (28,456.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.71 CZK over 5100 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003999 BTC for 82.71 CZK @ 2,068,171 CZK\nFees are 0.29048465 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.749876476094609103197573185 CZK)\nThe limits being 0.03 % (7.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60298741 BTC (467,702.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,068,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.64 % (779,378.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,000.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01375949 BTC (28,456.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.71 CZK over 5100 transactions" + } + ] + }, + { + "id": 6809, + "type": "message", + "date": "2025-03-05T05:00:04", + "date_unixtime": "1741147204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004012 BTC for 82.71 CZK @ 2,061,493 CZK\nFees are 0.29048801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.676422937962395822000863379 CZK)\nThe limits being 0.03 % (7.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60302753 BTC (467,785.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,061,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.75 % (775,351.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,917.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01379961 BTC (28,447.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.70 CZK over 5101 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004012 BTC for 82.71 CZK @ 2,061,493 CZK\nFees are 0.29048801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.676422937962395822000863379 CZK)\nThe limits being 0.03 % (7.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60302753 BTC (467,785.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,061,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.75 % (775,351.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,917.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01379961 BTC (28,447.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.70 CZK over 5101 transactions" + } + ] + }, + { + "id": 6810, + "type": "message", + "date": "2025-03-05T09:00:04", + "date_unixtime": "1741161604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004004 BTC for 82.70 CZK @ 2,065,519 CZK\nFees are 0.29047495 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.720708993796437742626083434 CZK)\nThe limits being 0.03 % (7.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60306757 BTC (467,868.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,815 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,065,519 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.24 % (777,778.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,834.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01383965 BTC (28,586.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.70 CZK over 5102 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004004 BTC for 82.70 CZK @ 2,065,519 CZK\nFees are 0.29047495 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.720708993796437742626083434 CZK)\nThe limits being 0.03 % (7.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60306757 BTC (467,868.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,815 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,065,519 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.24 % (777,778.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,834.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01383965 BTC (28,586.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.70 CZK over 5102 transactions" + } + ] + }, + { + "id": 6811, + "type": "message", + "date": "2025-03-05T13:00:04", + "date_unixtime": "1741176004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003906 BTC for 82.70 CZK @ 2,117,163 CZK\nFees are 0.29045043 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.288796742634777255540069563 CZK)\nThe limits being 0.03 % (7.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60310663 BTC (467,951.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,117,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.86 % (808,923.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,752.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01387871 BTC (29,383.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.70 CZK over 5103 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003906 BTC for 82.70 CZK @ 2,117,163 CZK\nFees are 0.29045043 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.288796742634777255540069563 CZK)\nThe limits being 0.03 % (7.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60310663 BTC (467,951.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,117,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.86 % (808,923.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,752.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01387871 BTC (29,383.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.70 CZK over 5103 transactions" + } + ] + }, + { + "id": 6812, + "type": "message", + "date": "2025-03-05T17:00:04", + "date_unixtime": "1741190404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004014 BTC for 82.70 CZK @ 2,060,347 CZK\nFees are 0.29047127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.663818616655358462620489472 CZK)\nThe limits being 0.03 % (7.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60314677 BTC (468,034.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 775,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,060,347 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.51 % (774,657.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,669.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01391885 BTC (28,677.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.70 CZK over 5104 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004014 BTC for 82.70 CZK @ 2,060,347 CZK\nFees are 0.29047127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.663818616655358462620489472 CZK)\nThe limits being 0.03 % (7.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60314677 BTC (468,034.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 775,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,060,347 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.51 % (774,657.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,669.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01391885 BTC (28,677.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.70 CZK over 5104 transactions" + } + ] + }, + { + "id": 6813, + "type": "message", + "date": "2025-03-05T21:00:04", + "date_unixtime": "1741204804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003961 BTC for 82.71 CZK @ 2,088,062 CZK\nFees are 0.29049165 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.968682228207333409059204171 CZK)\nThe limits being 0.03 % (7.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60318638 BTC (468,117.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,088,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.05 % (791,372.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,586.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01395846 BTC (29,146.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.70 CZK over 5105 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003961 BTC for 82.71 CZK @ 2,088,062 CZK\nFees are 0.29049165 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.968682228207333409059204171 CZK)\nThe limits being 0.03 % (7.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60318638 BTC (468,117.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,088,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.05 % (791,372.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,586.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01395846 BTC (29,146.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.70 CZK over 5105 transactions" + } + ] + }, + { + "id": 6814, + "type": "message", + "date": "2025-03-06T01:00:05", + "date_unixtime": "1741219205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003925 BTC for 82.69 CZK @ 2,106,841 CZK\nFees are 0.29044023 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.175247561433073415021945483 CZK)\nThe limits being 0.03 % (7.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60322563 BTC (468,200.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,162 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,106,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.44 % (802,699.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,503.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01399771 BTC (29,490.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.70 CZK over 5106 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003925 BTC for 82.69 CZK @ 2,106,841 CZK\nFees are 0.29044023 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.175247561433073415021945483 CZK)\nThe limits being 0.03 % (7.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60322563 BTC (468,200.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,162 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,106,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.44 % (802,699.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,503.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01399771 BTC (29,490.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.70 CZK over 5106 transactions" + } + ] + }, + { + "id": 6815, + "type": "message", + "date": "2025-03-06T05:00:05", + "date_unixtime": "1741233605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003881 BTC for 82.70 CZK @ 2,130,952 CZK\nFees are 0.29047091 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.440467657452972827518013158 CZK)\nThe limits being 0.03 % (7.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60326444 BTC (468,283.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,130,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.52 % (817,243.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,420.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01403652 BTC (29,911.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.69 CZK over 5107 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003881 BTC for 82.70 CZK @ 2,130,952 CZK\nFees are 0.29047091 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.440467657452972827518013158 CZK)\nThe limits being 0.03 % (7.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60326444 BTC (468,283.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,130,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.52 % (817,243.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,420.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01403652 BTC (29,911.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.69 CZK over 5107 transactions" + } + ] + }, + { + "id": 6816, + "type": "message", + "date": "2025-03-06T09:00:04", + "date_unixtime": "1741248004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003893 BTC for 82.71 CZK @ 2,124,576 CZK\nFees are 0.29049726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.370333369297876133763013629 CZK)\nThe limits being 0.03 % (7.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60330337 BTC (468,366.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,124,576 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 173.67 % (813,397.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,337.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01407545 BTC (29,904.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.69 CZK over 5108 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003893 BTC for 82.71 CZK @ 2,124,576 CZK\nFees are 0.29049726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.370333369297876133763013629 CZK)\nThe limits being 0.03 % (7.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60330337 BTC (468,366.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,124,576 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 173.67 % (813,397.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,337.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01407545 BTC (29,904.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.69 CZK over 5108 transactions" + } + ] + }, + { + "id": 6817, + "type": "message", + "date": "2025-03-06T13:00:06", + "date_unixtime": "1741262406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003883 BTC for 82.70 CZK @ 2,129,751 CZK\nFees are 0.29045681 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.427256827731833765955134365 CZK)\nThe limits being 0.03 % (7.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60334220 BTC (468,449.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,129,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.30 % (816,518.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,254.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01411428 BTC (30,059.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.69 CZK over 5109 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003883 BTC for 82.70 CZK @ 2,129,751 CZK\nFees are 0.29045681 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.427256827731833765955134365 CZK)\nThe limits being 0.03 % (7.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60334220 BTC (468,449.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,129,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.30 % (816,518.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,254.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01411428 BTC (30,059.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.69 CZK over 5109 transactions" + } + ] + }, + { + "id": 6818, + "type": "message", + "date": "2025-03-06T17:00:05", + "date_unixtime": "1741276805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003918 BTC for 82.69 CZK @ 2,110,545 CZK\nFees are 0.29043199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.215993820505209815670675860 CZK)\nThe limits being 0.03 % (7.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60338138 BTC (468,532.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,511 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,110,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.80 % (804,930.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,171.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01415346 BTC (29,871.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.69 CZK over 5110 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003918 BTC for 82.69 CZK @ 2,110,545 CZK\nFees are 0.29043199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.215993820505209815670675860 CZK)\nThe limits being 0.03 % (7.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60338138 BTC (468,532.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,511 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,110,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.80 % (804,930.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,171.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01415346 BTC (29,871.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.69 CZK over 5110 transactions" + } + ] + }, + { + "id": 6819, + "type": "message", + "date": "2025-03-06T21:00:04", + "date_unixtime": "1741291204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004011 BTC for 82.70 CZK @ 2,061,742 CZK\nFees are 0.29045063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.679157733770745298461120310 CZK)\nThe limits being 0.03 % (7.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60342149 BTC (468,615.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,061,742 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.48 % (775,483.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,088.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01419357 BTC (29,263.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.69 CZK over 5111 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004011 BTC for 82.70 CZK @ 2,061,742 CZK\nFees are 0.29045063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.679157733770745298461120310 CZK)\nThe limits being 0.03 % (7.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60342149 BTC (468,615.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,061,742 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.48 % (775,483.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,088.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01419357 BTC (29,263.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.69 CZK over 5111 transactions" + } + ] + }, + { + "id": 6820, + "type": "message", + "date": "2025-03-07T01:00:04", + "date_unixtime": "1741305604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003944 BTC for 82.70 CZK @ 2,096,923 CZK\nFees are 0.29047236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.066153452773305600782656241 CZK)\nThe limits being 0.03 % (7.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60346093 BTC (468,698.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,096,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.98 % (796,712.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,005.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01423301 BTC (29,845.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.69 CZK over 5112 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003944 BTC for 82.70 CZK @ 2,096,923 CZK\nFees are 0.29047236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (23.066153452773305600782656241 CZK)\nThe limits being 0.03 % (7.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60346093 BTC (468,698.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,096,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.98 % (796,712.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,005.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01423301 BTC (29,845.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.69 CZK over 5112 transactions" + } + ] + }, + { + "id": 6821, + "type": "message", + "date": "2025-03-07T05:00:05", + "date_unixtime": "1741320005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004082 BTC for 82.69 CZK @ 2,025,819 CZK\nFees are 0.29044181 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.284012764730596269255547768 CZK)\nThe limits being 0.03 % (7.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60350175 BTC (468,781.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,769 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,025,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.80 % (753,804.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,922.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01427383 BTC (28,916.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.68 CZK over 5113 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004082 BTC for 82.69 CZK @ 2,025,819 CZK\nFees are 0.29044181 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.284012764730596269255547768 CZK)\nThe limits being 0.03 % (7.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60350175 BTC (468,781.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,769 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,025,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.80 % (753,804.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,922.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01427383 BTC (28,916.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.68 CZK over 5113 transactions" + } + ] + }, + { + "id": 6822, + "type": "message", + "date": "2025-03-07T09:00:05", + "date_unixtime": "1741334405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004033 BTC for 82.71 CZK @ 2,050,805 CZK\nFees are 0.29049463 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.558859783715092885290770672 CZK)\nThe limits being 0.03 % (7.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60354208 BTC (468,864.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,050,805 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.99 % (768,882.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,839.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01431416 BTC (29,355.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.68 CZK over 5114 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004033 BTC for 82.71 CZK @ 2,050,805 CZK\nFees are 0.29049463 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.558859783715092885290770672 CZK)\nThe limits being 0.03 % (7.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60354208 BTC (468,864.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,050,805 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.99 % (768,882.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,839.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01431416 BTC (29,355.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.68 CZK over 5114 transactions" + } + ] + }, + { + "id": 6823, + "type": "message", + "date": "2025-03-07T13:00:05", + "date_unixtime": "1741348805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004015 BTC for 82.70 CZK @ 2,059,829 CZK\nFees are 0.29047055 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.658117446471595989379637025 CZK)\nThe limits being 0.03 % (7.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60358223 BTC (468,947.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 776,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,059,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.12 % (774,328.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,756.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01435431 BTC (29,567.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.68 CZK over 5115 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004015 BTC for 82.70 CZK @ 2,059,829 CZK\nFees are 0.29047055 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.658117446471595989379637025 CZK)\nThe limits being 0.03 % (7.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60358223 BTC (468,947.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 776,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,059,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.12 % (774,328.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,756.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01435431 BTC (29,567.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.68 CZK over 5115 transactions" + } + ] + }, + { + "id": 6824, + "type": "message", + "date": "2025-03-07T17:00:05", + "date_unixtime": "1741363205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004055 BTC for 82.71 CZK @ 2,039,690 CZK\nFees are 0.29049617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.436587928440347808563984130 CZK)\nThe limits being 0.03 % (7.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60362278 BTC (469,030.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,026 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,039,690 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.50 % (762,172.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,673.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01439486 BTC (29,361.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.68 CZK over 5116 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004055 BTC for 82.71 CZK @ 2,039,690 CZK\nFees are 0.29049617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.436587928440347808563984130 CZK)\nThe limits being 0.03 % (7.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60362278 BTC (469,030.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,026 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,039,690 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.50 % (762,172.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,673.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01439486 BTC (29,361.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.68 CZK over 5116 transactions" + } + ] + }, + { + "id": 6825, + "type": "message", + "date": "2025-03-07T21:00:04", + "date_unixtime": "1741377604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004081 BTC for 82.70 CZK @ 2,026,531 CZK\nFees are 0.29047265 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.291839644801147466347567879 CZK)\nThe limits being 0.03 % (7.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60366359 BTC (469,113.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,026,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.78 % (754,229.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,590.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01443567 BTC (29,254.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.68 CZK over 5117 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004081 BTC for 82.70 CZK @ 2,026,531 CZK\nFees are 0.29047265 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.291839644801147466347567879 CZK)\nThe limits being 0.03 % (7.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60366359 BTC (469,113.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,026,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.78 % (754,229.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,590.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01443567 BTC (29,254.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.68 CZK over 5117 transactions" + } + ] + }, + { + "id": 6826, + "type": "message", + "date": "2025-03-08T01:00:04", + "date_unixtime": "1741392004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004121 BTC for 82.70 CZK @ 2,006,823 CZK\nFees are 0.29046722 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.075054485471681437221604995 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60370480 BTC (469,196.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,006,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.21 % (742,332.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,507.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01447688 BTC (29,052.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.68 CZK over 5118 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004121 BTC for 82.70 CZK @ 2,006,823 CZK\nFees are 0.29046722 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (22.075054485471681437221604995 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60370480 BTC (469,196.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,006,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.21 % (742,332.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,507.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01447688 BTC (29,052.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.68 CZK over 5118 transactions" + } + ] + }, + { + "id": 6827, + "type": "message", + "date": "2025-03-08T05:00:04", + "date_unixtime": "1741406404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004161 BTC for 82.69 CZK @ 1,987,372 CZK\nFees are 0.29044390 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.861089763094250632279930602 CZK)\nThe limits being 0.03 % (7.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60374641 BTC (469,279.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,987,372 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.68 % (730,589.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,424.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01451849 BTC (28,853.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.67 CZK over 5119 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004161 BTC for 82.69 CZK @ 1,987,372 CZK\nFees are 0.29044390 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.861089763094250632279930602 CZK)\nThe limits being 0.03 % (7.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60374641 BTC (469,279.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,987,372 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.68 % (730,589.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,424.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01451849 BTC (28,853.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.67 CZK over 5119 transactions" + } + ] + }, + { + "id": 6828, + "type": "message", + "date": "2025-03-08T09:00:04", + "date_unixtime": "1741420804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004147 BTC for 82.71 CZK @ 1,994,414 CZK\nFees are 0.29049244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.938557277644953537948744382 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60378788 BTC (469,362.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,363 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,994,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.56 % (734,840.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,341.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01455996 BTC (29,038.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.67 CZK over 5120 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004147 BTC for 82.71 CZK @ 1,994,414 CZK\nFees are 0.29049244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.938557277644953537948744382 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60378788 BTC (469,362.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,363 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,994,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.56 % (734,840.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,341.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01455996 BTC (29,038.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.67 CZK over 5120 transactions" + } + ] + }, + { + "id": 6829, + "type": "message", + "date": "2025-03-08T13:00:04", + "date_unixtime": "1741435204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004160 BTC for 82.70 CZK @ 1,987,894 CZK\nFees are 0.29045041 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.866835039141849679966271896 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60382948 BTC (469,445.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,987,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.70 % (730,903.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,258.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01460156 BTC (29,026.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.67 CZK over 5121 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004160 BTC for 82.70 CZK @ 1,987,894 CZK\nFees are 0.29045041 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.866835039141849679966271896 CZK)\nThe limits being 0.03 % (7.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60382948 BTC (469,445.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,987,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.70 % (730,903.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,258.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01460156 BTC (29,026.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.67 CZK over 5121 transactions" + } + ] + }, + { + "id": 6830, + "type": "message", + "date": "2025-03-08T17:00:03", + "date_unixtime": "1741449603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004146 BTC for 82.71 CZK @ 1,994,875 CZK\nFees are 0.29048954 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.943629882963895540716032237 CZK)\nThe limits being 0.03 % (7.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60387094 BTC (469,528.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,994,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.57 % (735,118.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,175.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01464302 BTC (29,211.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.67 CZK over 5122 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004146 BTC for 82.71 CZK @ 1,994,875 CZK\nFees are 0.29048954 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.08 % (21.943629882963895540716032237 CZK)\nThe limits being 0.03 % (7.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60387094 BTC (469,528.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,994,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.57 % (735,118.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,175.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01464302 BTC (29,211.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.67 CZK over 5122 transactions" + } + ] + }, + { + "id": 6831, + "type": "message", + "date": "2025-03-08T21:00:03", + "date_unixtime": "1741464003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004149 BTC for 82.70 CZK @ 1,993,341 CZK\nFees are 0.29047608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.926746927810988846821134467 CZK)\nThe limits being 0.03 % (7.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60391243 BTC (469,611.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,993,341 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.34 % (734,191.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,092.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01468451 BTC (29,271.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.67 CZK over 5123 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004149 BTC for 82.70 CZK @ 1,993,341 CZK\nFees are 0.29047608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.926746927810988846821134467 CZK)\nThe limits being 0.03 % (7.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60391243 BTC (469,611.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,993,341 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.34 % (734,191.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,092.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01468451 BTC (29,271.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.67 CZK over 5123 transactions" + } + ] + }, + { + "id": 6832, + "type": "message", + "date": "2025-03-09T01:00:05", + "date_unixtime": "1741478405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004152 BTC for 82.70 CZK @ 1,991,773 CZK\nFees are 0.29045747 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.909500066242140945995374572 CZK)\nThe limits being 0.03 % (7.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60395395 BTC (469,694.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,699 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,991,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.11 % (733,244.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,009.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01472603 BTC (29,330.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.67 CZK over 5124 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004152 BTC for 82.70 CZK @ 1,991,773 CZK\nFees are 0.29045747 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.909500066242140945995374572 CZK)\nThe limits being 0.03 % (7.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60395395 BTC (469,694.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,699 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,991,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.11 % (733,244.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,009.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01472603 BTC (29,330.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.67 CZK over 5124 transactions" + } + ] + }, + { + "id": 6833, + "type": "message", + "date": "2025-03-09T05:00:04", + "date_unixtime": "1741492804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004155 BTC for 82.71 CZK @ 1,990,621 CZK\nFees are 0.29049924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.896829578305053851831465924 CZK)\nThe limits being 0.03 % (7.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60399550 BTC (469,777.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,990,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.94 % (732,548.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,926.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01476758 BTC (29,396.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.66 CZK over 5125 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004155 BTC for 82.71 CZK @ 1,990,621 CZK\nFees are 0.29049924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.896829578305053851831465924 CZK)\nThe limits being 0.03 % (7.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60399550 BTC (469,777.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,990,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.94 % (732,548.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,926.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01476758 BTC (29,396.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.66 CZK over 5125 transactions" + } + ] + }, + { + "id": 6834, + "type": "message", + "date": "2025-03-09T09:00:04", + "date_unixtime": "1741507204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004159 BTC for 82.71 CZK @ 1,988,642 CZK\nFees are 0.29048983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.875061482694675392557881989 CZK)\nThe limits being 0.03 % (7.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60403709 BTC (469,860.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,988,642 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.65 % (731,353.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,843.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01480917 BTC (29,450.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.66 CZK over 5126 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004159 BTC for 82.71 CZK @ 1,988,642 CZK\nFees are 0.29048983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.875061482694675392557881989 CZK)\nThe limits being 0.03 % (7.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60403709 BTC (469,860.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,988,642 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.65 % (731,353.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,843.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01480917 BTC (29,450.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.66 CZK over 5126 transactions" + } + ] + }, + { + "id": 6835, + "type": "message", + "date": "2025-03-09T13:00:07", + "date_unixtime": "1741521607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004206 BTC for 82.70 CZK @ 1,966,133 CZK\nFees are 0.29044746 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.627463180105958200032648450 CZK)\nThe limits being 0.03 % (7.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60407915 BTC (469,943.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 777,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,966,133 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.73 % (717,756.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,760.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01485123 BTC (29,199.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.66 CZK over 5127 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004206 BTC for 82.70 CZK @ 1,966,133 CZK\nFees are 0.29044746 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.627463180105958200032648450 CZK)\nThe limits being 0.03 % (7.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60407915 BTC (469,943.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 777,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,966,133 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.73 % (717,756.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,760.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01485123 BTC (29,199.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.66 CZK over 5127 transactions" + } + ] + }, + { + "id": 6836, + "type": "message", + "date": "2025-03-09T17:00:07", + "date_unixtime": "1741536007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004310 BTC for 82.70 CZK @ 1,918,786 CZK\nFees are 0.29046199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.106649912082652710871578247 CZK)\nThe limits being 0.03 % (7.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60412225 BTC (470,026.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,032 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.62 % (689,155.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,677.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01489433 BTC (28,579.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.66 CZK over 5128 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004310 BTC for 82.70 CZK @ 1,918,786 CZK\nFees are 0.29046199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.106649912082652710871578247 CZK)\nThe limits being 0.03 % (7.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60412225 BTC (470,026.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,032 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.62 % (689,155.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,677.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01489433 BTC (28,579.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.66 CZK over 5128 transactions" + } + ] + }, + { + "id": 6837, + "type": "message", + "date": "2025-03-09T21:00:03", + "date_unixtime": "1741550403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004335 BTC for 82.71 CZK @ 1,907,956 CZK\nFees are 0.29049789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.987520866586325025042110398 CZK)\nThe limits being 0.03 % (7.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60416560 BTC (470,109.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.20 % (682,612.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,594.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01493768 BTC (28,500.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.66 CZK over 5129 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004335 BTC for 82.71 CZK @ 1,907,956 CZK\nFees are 0.29049789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.987520866586325025042110398 CZK)\nThe limits being 0.03 % (7.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60416560 BTC (470,109.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.20 % (682,612.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,594.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01493768 BTC (28,500.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.66 CZK over 5129 transactions" + } + ] + }, + { + "id": 6838, + "type": "message", + "date": "2025-03-10T01:00:05", + "date_unixtime": "1741564805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004444 BTC for 82.70 CZK @ 1,861,018 CZK\nFees are 0.29047583 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.471195752983370085887512517 CZK)\nThe limits being 0.03 % (6.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60421004 BTC (470,192.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,194 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,861,018 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.15 % (654,253.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,511.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01498212 BTC (27,881.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.66 CZK over 5130 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004444 BTC for 82.70 CZK @ 1,861,018 CZK\nFees are 0.29047583 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.471195752983370085887512517 CZK)\nThe limits being 0.03 % (6.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60421004 BTC (470,192.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,194 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,861,018 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.15 % (654,253.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,511.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01498212 BTC (27,881.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.66 CZK over 5130 transactions" + } + ] + }, + { + "id": 6839, + "type": "message", + "date": "2025-03-10T05:00:06", + "date_unixtime": "1741579206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004358 BTC for 82.71 CZK @ 1,897,788 CZK\nFees are 0.29048277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.875669905674334414222090513 CZK)\nThe limits being 0.03 % (7.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60425362 BTC (470,275.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,897,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.85 % (676,469.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,428.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01502570 BTC (28,515.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 5131 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004358 BTC for 82.71 CZK @ 1,897,788 CZK\nFees are 0.29048277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.875669905674334414222090513 CZK)\nThe limits being 0.03 % (7.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60425362 BTC (470,275.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,897,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.85 % (676,469.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,428.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01502570 BTC (28,515.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 5131 transactions" + } + ] + }, + { + "id": 6840, + "type": "message", + "date": "2025-03-10T09:00:07", + "date_unixtime": "1741593607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004335 BTC for 82.69 CZK @ 1,907,553 CZK\nFees are 0.29043653 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.983087850194446312186470765 CZK)\nThe limits being 0.03 % (7.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60429697 BTC (470,358.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,356 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.07 % (682,370.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,345.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01506905 BTC (28,745.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 5132 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004335 BTC for 82.69 CZK @ 1,907,553 CZK\nFees are 0.29043653 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.983087850194446312186470765 CZK)\nThe limits being 0.03 % (7.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60429697 BTC (470,358.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,356 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.07 % (682,370.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,345.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01506905 BTC (28,745.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 5132 transactions" + } + ] + }, + { + "id": 6841, + "type": "message", + "date": "2025-03-10T13:00:05", + "date_unixtime": "1741608005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004297 BTC for 82.71 CZK @ 1,924,829 CZK\nFees are 0.29049791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.173123105203465784578272069 CZK)\nThe limits being 0.03 % (7.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60433994 BTC (470,441.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,924,829 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.27 % (692,809.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,262.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01511202 BTC (29,088.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 5133 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004297 BTC for 82.71 CZK @ 1,924,829 CZK\nFees are 0.29049791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.173123105203465784578272069 CZK)\nThe limits being 0.03 % (7.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60433994 BTC (470,441.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,924,829 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.27 % (692,809.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,262.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01511202 BTC (29,088.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 5133 transactions" + } + ] + }, + { + "id": 6842, + "type": "message", + "date": "2025-03-10T17:00:04", + "date_unixtime": "1741622404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004462 BTC for 82.71 CZK @ 1,853,559 CZK\nFees are 0.29048350 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.389151864708392879516046146 CZK)\nThe limits being 0.03 % (7.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60438456 BTC (470,524.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,853,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.09 % (649,738.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,179.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01515664 BTC (28,093.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 5134 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004462 BTC for 82.71 CZK @ 1,853,559 CZK\nFees are 0.29048350 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.389151864708392879516046146 CZK)\nThe limits being 0.03 % (7.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60438456 BTC (470,524.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,853,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.09 % (649,738.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,179.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01515664 BTC (28,093.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 5134 transactions" + } + ] + }, + { + "id": 6843, + "type": "message", + "date": "2025-03-10T21:00:05", + "date_unixtime": "1741636805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004515 BTC for 82.69 CZK @ 1,831,542 CZK\nFees are 0.29044236 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.146956990290351433327760370 CZK)\nThe limits being 0.03 % (6.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60442971 BTC (470,607.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,831,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.24 % (636,430.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,096.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01520179 BTC (27,842.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 5135 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004515 BTC for 82.69 CZK @ 1,831,542 CZK\nFees are 0.29044236 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.146956990290351433327760370 CZK)\nThe limits being 0.03 % (6.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60442971 BTC (470,607.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,831,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.24 % (636,430.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,096.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01520179 BTC (27,842.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 5135 transactions" + } + ] + }, + { + "id": 6844, + "type": "message", + "date": "2025-03-11T01:00:04", + "date_unixtime": "1741651204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004536 BTC for 82.71 CZK @ 1,823,346 CZK\nFees are 0.29048760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.056807962035872681944762996 CZK)\nThe limits being 0.03 % (6.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60447507 BTC (470,690.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,676 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,823,346 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.16 % (631,476.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,013.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01524715 BTC (27,800.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.65 CZK over 5136 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004536 BTC for 82.71 CZK @ 1,823,346 CZK\nFees are 0.29048760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.056807962035872681944762996 CZK)\nThe limits being 0.03 % (6.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60447507 BTC (470,690.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,676 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,823,346 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.16 % (631,476.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,013.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01524715 BTC (27,800.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.65 CZK over 5136 transactions" + } + ] + }, + { + "id": 6845, + "type": "message", + "date": "2025-03-11T05:00:06", + "date_unixtime": "1741665606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004491 BTC for 82.70 CZK @ 1,841,440 CZK\nFees are 0.29045983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.255841577635701009503921756 CZK)\nThe limits being 0.03 % (7.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60451998 BTC (470,773.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,756 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,841,440 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.46 % (642,414.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,930.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01529206 BTC (28,159.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.64 CZK over 5137 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004491 BTC for 82.70 CZK @ 1,841,440 CZK\nFees are 0.29045983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.255841577635701009503921756 CZK)\nThe limits being 0.03 % (7.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60451998 BTC (470,773.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,756 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,841,440 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.46 % (642,414.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,930.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01529206 BTC (28,159.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.64 CZK over 5137 transactions" + } + ] + }, + { + "id": 6846, + "type": "message", + "date": "2025-03-11T09:00:04", + "date_unixtime": "1741680004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004463 BTC for 82.70 CZK @ 1,853,060 CZK\nFees are 0.29047034 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.383660219257246734792554984 CZK)\nThe limits being 0.03 % (7.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60456461 BTC (470,856.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,853,060 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.93 % (649,438.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,847.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01533669 BTC (28,419.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.64 CZK over 5138 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004463 BTC for 82.70 CZK @ 1,853,060 CZK\nFees are 0.29047034 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.383660219257246734792554984 CZK)\nThe limits being 0.03 % (7.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60456461 BTC (470,856.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,853,060 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.93 % (649,438.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,847.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01533669 BTC (28,419.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.64 CZK over 5138 transactions" + } + ] + }, + { + "id": 6847, + "type": "message", + "date": "2025-03-11T13:00:05", + "date_unixtime": "1741694405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004398 BTC for 82.71 CZK @ 1,880,615 CZK\nFees are 0.29049633 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.686770474100085806997020206 CZK)\nThe limits being 0.03 % (7.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60460859 BTC (470,939.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,880,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.44 % (666,096.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,764.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01538067 BTC (28,925.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.64 CZK over 5139 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004398 BTC for 82.71 CZK @ 1,880,615 CZK\nFees are 0.29049633 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.686770474100085806997020206 CZK)\nThe limits being 0.03 % (7.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60460859 BTC (470,939.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,880,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.44 % (666,096.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,764.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01538067 BTC (28,925.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.64 CZK over 5139 transactions" + } + ] + }, + { + "id": 6848, + "type": "message", + "date": "2025-03-11T17:00:04", + "date_unixtime": "1741708804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004433 BTC for 82.69 CZK @ 1,865,382 CZK\nFees are 0.29043627 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.519198042582969532195627958 CZK)\nThe limits being 0.03 % (7.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60465292 BTC (471,022.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 778,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,865,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.46 % (656,886.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,681.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01542500 BTC (28,773.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.64 CZK over 5140 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004433 BTC for 82.69 CZK @ 1,865,382 CZK\nFees are 0.29043627 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.519198042582969532195627958 CZK)\nThe limits being 0.03 % (7.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60465292 BTC (471,022.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 778,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,865,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.46 % (656,886.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,681.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01542500 BTC (28,773.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.64 CZK over 5140 transactions" + } + ] + }, + { + "id": 6849, + "type": "message", + "date": "2025-03-11T21:00:05", + "date_unixtime": "1741723205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004327 BTC for 82.69 CZK @ 1,911,083 CZK\nFees are 0.29043698 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (42.043830679057318336596122033 CZK)\nThe limits being 0.03 % (7.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60469619 BTC (471,105.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,911,083 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.30 % (684,519.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,598.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01546827 BTC (29,561.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.64 CZK over 5141 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004327 BTC for 82.69 CZK @ 1,911,083 CZK\nFees are 0.29043698 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.14 % (42.043830679057318336596122033 CZK)\nThe limits being 0.03 % (7.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60469619 BTC (471,105.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,911,083 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.30 % (684,519.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,598.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01546827 BTC (29,561.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.64 CZK over 5141 transactions" + } + ] + }, + { + "id": 6850, + "type": "message", + "date": "2025-03-12T01:00:06", + "date_unixtime": "1741737606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004336 BTC for 82.71 CZK @ 1,907,497 CZK\nFees are 0.29049498 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.982470315611227861157535342 CZK)\nThe limits being 0.03 % (7.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60473955 BTC (471,188.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.81 % (682,350.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,515.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01551163 BTC (29,588.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.64 CZK over 5142 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004336 BTC for 82.71 CZK @ 1,907,497 CZK\nFees are 0.29049498 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.982470315611227861157535342 CZK)\nThe limits being 0.03 % (7.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60473955 BTC (471,188.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.81 % (682,350.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,515.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01551163 BTC (29,588.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.64 CZK over 5142 transactions" + } + ] + }, + { + "id": 6851, + "type": "message", + "date": "2025-03-12T05:00:05", + "date_unixtime": "1741752005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004366 BTC for 82.53 CZK @ 1,890,293 CZK\nFees are 0.28986673 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.793227192001608661941564578 CZK)\nThe limits being 0.03 % (7.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60478321 BTC (471,271.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,890,293 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.58 % (671,946.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,432.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01555529 BTC (29,404.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.63 CZK over 5143 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004366 BTC for 82.53 CZK @ 1,890,293 CZK\nFees are 0.28986673 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.793227192001608661941564578 CZK)\nThe limits being 0.03 % (7.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60478321 BTC (471,271.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,890,293 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.58 % (671,946.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,432.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01555529 BTC (29,404.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.63 CZK over 5143 transactions" + } + ] + }, + { + "id": 6852, + "type": "message", + "date": "2025-03-12T09:00:03", + "date_unixtime": "1741766403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004357 BTC for 82.69 CZK @ 1,897,963 CZK\nFees are 0.29044281 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.877588675806355515621878396 CZK)\nThe limits being 0.03 % (7.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60482678 BTC (471,354.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,897,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.54 % (676,584.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,349.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01559886 BTC (29,606.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.63 CZK over 5144 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004357 BTC for 82.69 CZK @ 1,897,963 CZK\nFees are 0.29044281 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.877588675806355515621878396 CZK)\nThe limits being 0.03 % (7.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60482678 BTC (471,354.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,897,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.54 % (676,584.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,349.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01559886 BTC (29,606.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.63 CZK over 5144 transactions" + } + ] + }, + { + "id": 6853, + "type": "message", + "date": "2025-03-12T13:00:06", + "date_unixtime": "1741780806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004336 BTC for 82.70 CZK @ 1,907,300 CZK\nFees are 0.29046490 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.980297917390608883667312010 CZK)\nThe limits being 0.03 % (7.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60487014 BTC (471,437.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,300 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.71 % (682,231.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,266.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01564222 BTC (29,834.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.63 CZK over 5145 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004336 BTC for 82.70 CZK @ 1,907,300 CZK\nFees are 0.29046490 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.980297917390608883667312010 CZK)\nThe limits being 0.03 % (7.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60487014 BTC (471,437.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,300 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.71 % (682,231.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,266.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01564222 BTC (29,834.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.63 CZK over 5145 transactions" + } + ] + }, + { + "id": 6854, + "type": "message", + "date": "2025-03-12T17:00:03", + "date_unixtime": "1741795203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004400 BTC for 82.71 CZK @ 1,879,745 CZK\nFees are 0.29049396 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.677198687095166915794718486 CZK)\nThe limits being 0.03 % (7.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60491414 BTC (471,520.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,879,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.15 % (665,564.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,183.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01568622 BTC (29,486.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.63 CZK over 5146 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004400 BTC for 82.71 CZK @ 1,879,745 CZK\nFees are 0.29049396 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.677198687095166915794718486 CZK)\nThe limits being 0.03 % (7.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60491414 BTC (471,520.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,879,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.15 % (665,564.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,183.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01568622 BTC (29,486.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.63 CZK over 5146 transactions" + } + ] + }, + { + "id": 6855, + "type": "message", + "date": "2025-03-12T21:00:04", + "date_unixtime": "1741809604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004321 BTC for 82.54 CZK @ 1,910,320 CZK\nFees are 0.28991847 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.013523900322488508456920103 CZK)\nThe limits being 0.03 % (7.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60495735 BTC (471,602.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,564 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,910,320 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.05 % (684,059.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,100.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01572943 BTC (30,048.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.63 CZK over 5147 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004321 BTC for 82.54 CZK @ 1,910,320 CZK\nFees are 0.28991847 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.013523900322488508456920103 CZK)\nThe limits being 0.03 % (7.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60495735 BTC (471,602.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,564 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,910,320 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.05 % (684,059.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,100.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01572943 BTC (30,048.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.63 CZK over 5147 transactions" + } + ] + }, + { + "id": 6856, + "type": "message", + "date": "2025-03-13T01:00:04", + "date_unixtime": "1741824004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004281 BTC for 82.54 CZK @ 1,928,107 CZK\nFees are 0.28990909 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.209179339725117659320618899 CZK)\nThe limits being 0.03 % (7.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60500016 BTC (471,685.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,928,107 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.31 % (694,819.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,017.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01577224 BTC (30,410.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.63 CZK over 5148 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004281 BTC for 82.54 CZK @ 1,928,107 CZK\nFees are 0.28990909 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.209179339725117659320618899 CZK)\nThe limits being 0.03 % (7.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60500016 BTC (471,685.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,928,107 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.31 % (694,819.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,017.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01577224 BTC (30,410.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.63 CZK over 5148 transactions" + } + ] + }, + { + "id": 6857, + "type": "message", + "date": "2025-03-13T05:00:04", + "date_unixtime": "1741838404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004288 BTC for 82.70 CZK @ 1,928,724 CZK\nFees are 0.29047603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.215964568041704779540265787 CZK)\nThe limits being 0.03 % (7.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60504304 BTC (471,768.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,728 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,928,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.36 % (695,192.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,934.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01581512 BTC (30,503.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.62 CZK over 5149 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004288 BTC for 82.70 CZK @ 1,928,724 CZK\nFees are 0.29047603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.215964568041704779540265787 CZK)\nThe limits being 0.03 % (7.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60504304 BTC (471,768.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,728 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,928,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.36 % (695,192.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,934.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01581512 BTC (30,503.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.62 CZK over 5149 transactions" + } + ] + }, + { + "id": 6858, + "type": "message", + "date": "2025-03-13T09:00:03", + "date_unixtime": "1741852803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004291 BTC for 82.71 CZK @ 1,927,512 CZK\nFees are 0.29049659 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.202632436901978010545008110 CZK)\nThe limits being 0.03 % (7.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60508595 BTC (471,851.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,927,512 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.18 % (694,458.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,851.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01585803 BTC (30,566.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.62 CZK over 5150 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004291 BTC for 82.71 CZK @ 1,927,512 CZK\nFees are 0.29049659 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.202632436901978010545008110 CZK)\nThe limits being 0.03 % (7.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60508595 BTC (471,851.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,927,512 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.18 % (694,458.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,851.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01585803 BTC (30,566.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.62 CZK over 5150 transactions" + } + ] + }, + { + "id": 6859, + "type": "message", + "date": "2025-03-13T13:00:03", + "date_unixtime": "1741867203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004308 BTC for 82.71 CZK @ 1,919,807 CZK\nFees are 0.29048162 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.117875809319193408030111878 CZK)\nThe limits being 0.03 % (7.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60512903 BTC (471,934.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,891 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,919,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.16 % (689,796.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,768.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01590111 BTC (30,527.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.62 CZK over 5151 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004308 BTC for 82.71 CZK @ 1,919,807 CZK\nFees are 0.29048162 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.117875809319193408030111878 CZK)\nThe limits being 0.03 % (7.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60512903 BTC (471,934.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,891 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,919,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.16 % (689,796.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,768.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01590111 BTC (30,527.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.62 CZK over 5151 transactions" + } + ] + }, + { + "id": 6860, + "type": "message", + "date": "2025-03-13T17:00:04", + "date_unixtime": "1741881604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004404 BTC for 82.70 CZK @ 1,877,903 CZK\nFees are 0.29047304 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.656930319721121397542751144 CZK)\nThe limits being 0.03 % (7.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60517307 BTC (472,017.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 779,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,877,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.77 % (664,438.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,685.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01594515 BTC (29,943.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.62 CZK over 5152 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004404 BTC for 82.70 CZK @ 1,877,903 CZK\nFees are 0.29047304 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.656930319721121397542751144 CZK)\nThe limits being 0.03 % (7.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60517307 BTC (472,017.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 779,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,877,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.77 % (664,438.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,685.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01594515 BTC (29,943.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.62 CZK over 5152 transactions" + } + ] + }, + { + "id": 6861, + "type": "message", + "date": "2025-03-13T21:00:04", + "date_unixtime": "1741896004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004446 BTC for 82.70 CZK @ 1,860,029 CZK\nFees are 0.29045220 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.460322732111025714990784615 CZK)\nThe limits being 0.03 % (7.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60521753 BTC (472,100.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,860,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.45 % (653,621.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,602.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01598961 BTC (29,741.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.62 CZK over 5153 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004446 BTC for 82.70 CZK @ 1,860,029 CZK\nFees are 0.29045220 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.460322732111025714990784615 CZK)\nThe limits being 0.03 % (7.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60521753 BTC (472,100.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,860,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.45 % (653,621.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,602.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01598961 BTC (29,741.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.62 CZK over 5153 transactions" + } + ] + }, + { + "id": 6862, + "type": "message", + "date": "2025-03-14T01:00:05", + "date_unixtime": "1741910405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004402 BTC for 82.70 CZK @ 1,878,657 CZK\nFees are 0.29045768 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.665222927613416649179031953 CZK)\nThe limits being 0.03 % (7.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60526155 BTC (472,183.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,132 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,878,657 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.81 % (664,894.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,519.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01603363 BTC (30,121.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.61 CZK over 5154 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004402 BTC for 82.70 CZK @ 1,878,657 CZK\nFees are 0.29045768 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.665222927613416649179031953 CZK)\nThe limits being 0.03 % (7.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60526155 BTC (472,183.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,132 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,878,657 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.81 % (664,894.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,519.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01603363 BTC (30,121.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.61 CZK over 5154 transactions" + } + ] + }, + { + "id": 6863, + "type": "message", + "date": "2025-03-14T05:00:05", + "date_unixtime": "1741924805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004359 BTC for 82.69 CZK @ 1,897,103 CZK\nFees are 0.29044460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.868138190570214618187113628 CZK)\nThe limits being 0.03 % (7.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60530514 BTC (472,266.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,897,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.15 % (676,059.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,436.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01607722 BTC (30,500.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.61 CZK over 5155 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004359 BTC for 82.69 CZK @ 1,897,103 CZK\nFees are 0.29044460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.868138190570214618187113628 CZK)\nThe limits being 0.03 % (7.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60530514 BTC (472,266.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,897,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.15 % (676,059.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,436.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01607722 BTC (30,500.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.61 CZK over 5155 transactions" + } + ] + }, + { + "id": 6864, + "type": "message", + "date": "2025-03-14T09:00:06", + "date_unixtime": "1741939206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004335 BTC for 82.70 CZK @ 1,907,792 CZK\nFees are 0.29047286 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.985712371405961487734107097 CZK)\nThe limits being 0.03 % (7.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60534849 BTC (472,349.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,294 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,907,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.50 % (682,529.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,353.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01612057 BTC (30,754.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.61 CZK over 5156 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004335 BTC for 82.70 CZK @ 1,907,792 CZK\nFees are 0.29047286 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.985712371405961487734107097 CZK)\nThe limits being 0.03 % (7.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60534849 BTC (472,349.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,294 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,907,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.50 % (682,529.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,353.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01612057 BTC (30,754.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.61 CZK over 5156 transactions" + } + ] + }, + { + "id": 6865, + "type": "message", + "date": "2025-03-14T13:00:05", + "date_unixtime": "1741953605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004308 BTC for 82.70 CZK @ 1,919,771 CZK\nFees are 0.29047616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.117478824115595416043846536 CZK)\nThe limits being 0.03 % (7.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60539157 BTC (472,432.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,919,771 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.01 % (689,780.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,270.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01616365 BTC (31,030.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.61 CZK over 5157 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004308 BTC for 82.70 CZK @ 1,919,771 CZK\nFees are 0.29047616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.117478824115595416043846536 CZK)\nThe limits being 0.03 % (7.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60539157 BTC (472,432.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,919,771 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.01 % (689,780.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,270.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01616365 BTC (31,030.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.61 CZK over 5157 transactions" + } + ] + }, + { + "id": 6866, + "type": "message", + "date": "2025-03-14T17:00:05", + "date_unixtime": "1741968005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004221 BTC for 82.70 CZK @ 1,959,168 CZK\nFees are 0.29045067 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.550844776048577668281838016 CZK)\nThe limits being 0.03 % (7.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60543378 BTC (472,515.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,959,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.03 % (713,630.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,187.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01620586 BTC (31,750.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.61 CZK over 5158 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004221 BTC for 82.70 CZK @ 1,959,168 CZK\nFees are 0.29045067 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.550844776048577668281838016 CZK)\nThe limits being 0.03 % (7.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60543378 BTC (472,515.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,959,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.03 % (713,630.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,187.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01620586 BTC (31,750.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.61 CZK over 5158 transactions" + } + ] + }, + { + "id": 6867, + "type": "message", + "date": "2025-03-14T21:00:04", + "date_unixtime": "1741982404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004234 BTC for 82.70 CZK @ 1,953,327 CZK\nFees are 0.29047668 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.486599120838049349713414479 CZK)\nThe limits being 0.03 % (7.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60547612 BTC (472,598.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,953,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.25 % (710,094.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,104.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01624820 BTC (31,738.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.61 CZK over 5159 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004234 BTC for 82.70 CZK @ 1,953,327 CZK\nFees are 0.29047668 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.486599120838049349713414479 CZK)\nThe limits being 0.03 % (7.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60547612 BTC (472,598.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,953,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.25 % (710,094.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,104.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01624820 BTC (31,738.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.61 CZK over 5159 transactions" + } + ] + }, + { + "id": 6868, + "type": "message", + "date": "2025-03-15T01:00:01", + "date_unixtime": "1741996801", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004267 BTC for 82.70 CZK @ 1,938,150 CZK\nFees are 0.29046617 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.319655250448132730661807180 CZK)\nThe limits being 0.03 % (7.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60551879 BTC (472,681.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,938,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.28 % (700,904.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,021.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01629087 BTC (31,574.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.60 CZK over 5160 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004267 BTC for 82.70 CZK @ 1,938,150 CZK\nFees are 0.29046617 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.319655250448132730661807180 CZK)\nThe limits being 0.03 % (7.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60551879 BTC (472,681.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,938,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.28 % (700,904.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,021.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01629087 BTC (31,574.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.60 CZK over 5160 transactions" + } + ] + }, + { + "id": 6869, + "type": "message", + "date": "2025-03-15T05:00:04", + "date_unixtime": "1742011204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004240 BTC for 82.70 CZK @ 1,950,557 CZK\nFees are 0.29047582 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.456130402553327504677026634 CZK)\nThe limits being 0.03 % (7.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60556119 BTC (472,764.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,950,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.85 % (708,417.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,938.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01633327 BTC (31,858.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.60 CZK over 5161 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004240 BTC for 82.70 CZK @ 1,950,557 CZK\nFees are 0.29047582 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.456130402553327504677026634 CZK)\nThe limits being 0.03 % (7.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60556119 BTC (472,764.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,950,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.85 % (708,417.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,938.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01633327 BTC (31,858.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.60 CZK over 5161 transactions" + } + ] + }, + { + "id": 6870, + "type": "message", + "date": "2025-03-15T09:00:04", + "date_unixtime": "1742025604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004270 BTC for 82.70 CZK @ 1,936,783 CZK\nFees are 0.29046531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.304613870423074275165725582 CZK)\nThe limits being 0.03 % (7.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60560389 BTC (472,847.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,936,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.06 % (700,075.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,856.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01637597 BTC (31,716.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.60 CZK over 5162 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004270 BTC for 82.70 CZK @ 1,936,783 CZK\nFees are 0.29046531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.304613870423074275165725582 CZK)\nThe limits being 0.03 % (7.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60560389 BTC (472,847.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,936,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.06 % (700,075.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,856.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01637597 BTC (31,716.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.60 CZK over 5162 transactions" + } + ] + }, + { + "id": 6871, + "type": "message", + "date": "2025-03-15T13:00:05", + "date_unixtime": "1742040005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004263 BTC for 82.70 CZK @ 1,940,012 CZK\nFees are 0.29047261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.340133138986570694803701939 CZK)\nThe limits being 0.03 % (7.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60564652 BTC (472,930.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,940,012 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.44 % (702,030.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,773.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01641860 BTC (31,852.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.60 CZK over 5163 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004263 BTC for 82.70 CZK @ 1,940,012 CZK\nFees are 0.29047261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.340133138986570694803701939 CZK)\nThe limits being 0.03 % (7.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60564652 BTC (472,930.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,940,012 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.44 % (702,030.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,773.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01641860 BTC (31,852.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.60 CZK over 5163 transactions" + } + ] + }, + { + "id": 6872, + "type": "message", + "date": "2025-03-15T17:00:06", + "date_unixtime": "1742054406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,727 CZK\nFees are 0.29045238 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (42.827989380858145267458434089 CZK)\nThe limits being 0.03 % (8.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60568900 BTC (473,013.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 780,951 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.28 % (706,097.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,690.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01646108 BTC (32,045.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.60 CZK over 5164 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,727 CZK\nFees are 0.29045238 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (42.827989380858145267458434089 CZK)\nThe limits being 0.03 % (8.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60568900 BTC (473,013.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 780,951 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.28 % (706,097.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,690.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01646108 BTC (32,045.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.60 CZK over 5164 transactions" + } + ] + }, + { + "id": 6873, + "type": "message", + "date": "2025-03-15T21:00:04", + "date_unixtime": "1742068804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,709 CZK\nFees are 0.29049280 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (42.783593052344070617639578194 CZK)\nThe limits being 0.03 % (8.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60573153 BTC (473,096.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,944,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.99 % (704,874.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,607.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01650361 BTC (32,094.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.60 CZK over 5165 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,709 CZK\nFees are 0.29049280 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (42.783593052344070617639578194 CZK)\nThe limits being 0.03 % (8.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60573153 BTC (473,096.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,944,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.99 % (704,874.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,607.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01650361 BTC (32,094.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.60 CZK over 5165 transactions" + } + ] + }, + { + "id": 6874, + "type": "message", + "date": "2025-03-16T01:00:06", + "date_unixtime": "1742083206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,866 CZK\nFees are 0.29047317 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.415527500030495900881753787 CZK)\nThe limits being 0.03 % (8.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60577401 BTC (473,179.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,866 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.24 % (706,181.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,524.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01654609 BTC (32,213.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.59 CZK over 5166 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,866 CZK\nFees are 0.29047317 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.415527500030495900881753787 CZK)\nThe limits being 0.03 % (8.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60577401 BTC (473,179.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,866 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.24 % (706,181.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,524.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01654609 BTC (32,213.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.59 CZK over 5166 transactions" + } + ] + }, + { + "id": 6875, + "type": "message", + "date": "2025-03-16T05:00:04", + "date_unixtime": "1742097604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 82.69 CZK @ 1,946,654 CZK\nFees are 0.29044146 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.413189691541000096648547410 CZK)\nThe limits being 0.03 % (8.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60581649 BTC (473,262.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,198 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.19 % (706,052.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,441.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01658857 BTC (32,292.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.59 CZK over 5167 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 82.69 CZK @ 1,946,654 CZK\nFees are 0.29044146 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.413189691541000096648547410 CZK)\nThe limits being 0.03 % (8.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60581649 BTC (473,262.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,198 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.19 % (706,052.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,441.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01658857 BTC (32,292.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.59 CZK over 5167 transactions" + } + ] + }, + { + "id": 6876, + "type": "message", + "date": "2025-03-16T09:00:04", + "date_unixtime": "1742112004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,672 CZK\nFees are 0.29048726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.391388512648710936598463104 CZK)\nThe limits being 0.03 % (8.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60585902 BTC (473,345.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,944,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.91 % (704,851.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,358.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01663110 BTC (32,342.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.59 CZK over 5168 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,672 CZK\nFees are 0.29048726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.391388512648710936598463104 CZK)\nThe limits being 0.03 % (8.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60585902 BTC (473,345.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,944,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.91 % (704,851.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,358.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01663110 BTC (32,342.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.59 CZK over 5168 transactions" + } + ] + }, + { + "id": 6877, + "type": "message", + "date": "2025-03-16T13:00:04", + "date_unixtime": "1742126404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004347 BTC for 82.70 CZK @ 1,902,439 CZK\nFees are 0.29045960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.926826034116387444954850340 CZK)\nThe limits being 0.03 % (7.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60590249 BTC (473,428.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,361 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,902,439 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.48 % (679,263.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,275.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01667457 BTC (31,722.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.59 CZK over 5169 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004347 BTC for 82.70 CZK @ 1,902,439 CZK\nFees are 0.29045960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.926826034116387444954850340 CZK)\nThe limits being 0.03 % (7.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60590249 BTC (473,428.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,361 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,902,439 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.48 % (679,263.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,275.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01667457 BTC (31,722.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.59 CZK over 5169 transactions" + } + ] + }, + { + "id": 6878, + "type": "message", + "date": "2025-03-16T17:00:06", + "date_unixtime": "1742140806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004300 BTC for 82.70 CZK @ 1,923,315 CZK\nFees are 0.29047195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.156460697558545092177379172 CZK)\nThe limits being 0.03 % (8.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60594549 BTC (473,511.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,923,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.12 % (691,912.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,192.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01671757 BTC (32,153.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.59 CZK over 5170 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004300 BTC for 82.70 CZK @ 1,923,315 CZK\nFees are 0.29047195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.156460697558545092177379172 CZK)\nThe limits being 0.03 % (8.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60594549 BTC (473,511.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,923,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.12 % (691,912.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,192.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01671757 BTC (32,153.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.59 CZK over 5170 transactions" + } + ] + }, + { + "id": 6879, + "type": "message", + "date": "2025-03-16T21:00:04", + "date_unixtime": "1742155204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004312 BTC for 82.71 CZK @ 1,918,022 CZK\nFees are 0.29048109 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.098247030800361998312030341 CZK)\nThe limits being 0.03 % (8.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60598861 BTC (473,594.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,524 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.42 % (688,705.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,109.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01676069 BTC (32,147.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.59 CZK over 5171 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004312 BTC for 82.71 CZK @ 1,918,022 CZK\nFees are 0.29048109 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.098247030800361998312030341 CZK)\nThe limits being 0.03 % (8.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60598861 BTC (473,594.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,524 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.42 % (688,705.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,109.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01676069 BTC (32,147.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.59 CZK over 5171 transactions" + } + ] + }, + { + "id": 6880, + "type": "message", + "date": "2025-03-17T01:00:05", + "date_unixtime": "1742169605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004341 BTC for 82.69 CZK @ 1,904,960 CZK\nFees are 0.29044310 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.954559955153507299434701420 CZK)\nThe limits being 0.03 % (8.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60603202 BTC (473,677.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,904,960 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.72 % (680,789.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,026.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01680410 BTC (32,011.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5172 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004341 BTC for 82.69 CZK @ 1,904,960 CZK\nFees are 0.29044310 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (20.954559955153507299434701420 CZK)\nThe limits being 0.03 % (8.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60603202 BTC (473,677.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,904,960 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.72 % (680,789.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,026.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01680410 BTC (32,011.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5172 transactions" + } + ] + }, + { + "id": 6881, + "type": "message", + "date": "2025-03-17T05:00:06", + "date_unixtime": "1742184006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004293 BTC for 82.70 CZK @ 1,926,454 CZK\nFees are 0.29047252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.190998525658680525451857236 CZK)\nThe limits being 0.03 % (8.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60607495 BTC (473,760.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,686 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,926,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.45 % (693,815.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 2,943.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01684703 BTC (32,455.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5173 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004293 BTC for 82.70 CZK @ 1,926,454 CZK\nFees are 0.29047252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.190998525658680525451857236 CZK)\nThe limits being 0.03 % (8.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60607495 BTC (473,760.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,686 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,926,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.45 % (693,815.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 2,943.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01684703 BTC (32,455.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5173 transactions" + } + ] + }, + { + "id": 6882, + "type": "message", + "date": "2025-03-17T09:00:04", + "date_unixtime": "1742198404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004284 BTC for 82.70 CZK @ 1,930,364 CZK\nFees are 0.29045183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.234005402659319831569897516 CZK)\nThe limits being 0.03 % (8.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60611779 BTC (473,843.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,930,364 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.92 % (696,184.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,860.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01688987 BTC (32,603.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5174 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004284 BTC for 82.70 CZK @ 1,930,364 CZK\nFees are 0.29045183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.07 % (21.234005402659319831569897516 CZK)\nThe limits being 0.03 % (8.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60611779 BTC (473,843.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,930,364 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.92 % (696,184.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,860.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01688987 BTC (32,603.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5174 transactions" + } + ] + }, + { + "id": 6883, + "type": "message", + "date": "2025-03-17T13:00:04", + "date_unixtime": "1742212804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004299 BTC for 82.71 CZK @ 1,923,860 CZK\nFees are 0.29048675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.162459603530003675203779096 CZK)\nThe limits being 0.03 % (8.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60616078 BTC (473,926.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,923,860 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.07 % (692,241.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,777.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01693286 BTC (32,576.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5175 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004299 BTC for 82.71 CZK @ 1,923,860 CZK\nFees are 0.29048675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.162459603530003675203779096 CZK)\nThe limits being 0.03 % (8.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60616078 BTC (473,926.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,923,860 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.07 % (692,241.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,777.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01693286 BTC (32,576.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5175 transactions" + } + ] + }, + { + "id": 6884, + "type": "message", + "date": "2025-03-17T17:00:04", + "date_unixtime": "1742227204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004300 BTC for 82.70 CZK @ 1,923,264 CZK\nFees are 0.29046438 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.155909327354260089686098655 CZK)\nThe limits being 0.03 % (8.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60620378 BTC (474,009.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 781,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,923,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.96 % (691,880.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,694.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01697586 BTC (32,649.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5176 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004300 BTC for 82.70 CZK @ 1,923,264 CZK\nFees are 0.29046438 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.155909327354260089686098655 CZK)\nThe limits being 0.03 % (8.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60620378 BTC (474,009.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 781,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,923,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.96 % (691,880.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,694.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01697586 BTC (32,649.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5176 transactions" + } + ] + }, + { + "id": 6885, + "type": "message", + "date": "2025-03-17T21:00:04", + "date_unixtime": "1742241604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004250 BTC for 82.71 CZK @ 1,946,084 CZK\nFees are 0.29049320 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.406926126557050323866467363 CZK)\nThe limits being 0.03 % (8.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60624628 BTC (474,092.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,013 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,084 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.86 % (705,713.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,611.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01701836 BTC (33,119.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5177 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004250 BTC for 82.71 CZK @ 1,946,084 CZK\nFees are 0.29049320 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.406926126557050323866467363 CZK)\nThe limits being 0.03 % (8.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60624628 BTC (474,092.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,013 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,084 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.86 % (705,713.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,611.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01701836 BTC (33,119.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5177 transactions" + } + ] + }, + { + "id": 6886, + "type": "message", + "date": "2025-03-18T01:00:04", + "date_unixtime": "1742256004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004271 BTC for 82.70 CZK @ 1,936,289 CZK\nFees are 0.29045920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.299177359690626240609284036 CZK)\nThe limits being 0.03 % (8.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60628899 BTC (474,175.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,095 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,936,289 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.58 % (699,775.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,528.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01706107 BTC (33,035.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.58 CZK over 5178 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004271 BTC for 82.70 CZK @ 1,936,289 CZK\nFees are 0.29045920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.299177359690626240609284036 CZK)\nThe limits being 0.03 % (8.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60628899 BTC (474,175.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,095 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,936,289 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.58 % (699,775.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,528.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01706107 BTC (33,035.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.58 CZK over 5178 transactions" + } + ] + }, + { + "id": 6887, + "type": "message", + "date": "2025-03-18T05:00:04", + "date_unixtime": "1742270404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004309 BTC for 82.71 CZK @ 1,919,481 CZK\nFees are 0.29049974 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.114291903841312889222832640 CZK)\nThe limits being 0.03 % (8.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60633208 BTC (474,258.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,919,481 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.40 % (689,584.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,445.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01710416 BTC (32,831.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.57 CZK over 5179 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004309 BTC for 82.71 CZK @ 1,919,481 CZK\nFees are 0.29049974 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.114291903841312889222832640 CZK)\nThe limits being 0.03 % (8.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60633208 BTC (474,258.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,919,481 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.40 % (689,584.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,445.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01710416 BTC (32,831.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.57 CZK over 5179 transactions" + } + ] + }, + { + "id": 6888, + "type": "message", + "date": "2025-03-18T09:00:05", + "date_unixtime": "1742284805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004319 BTC for 82.70 CZK @ 1,914,784 CZK\nFees are 0.29046145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.062628514254289195964160169 CZK)\nThe limits being 0.03 % (8.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60637527 BTC (474,341.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,914,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.78 % (686,736.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,362.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01714735 BTC (32,833.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.57 CZK over 5180 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004319 BTC for 82.70 CZK @ 1,914,784 CZK\nFees are 0.29046145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.062628514254289195964160169 CZK)\nThe limits being 0.03 % (8.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60637527 BTC (474,341.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,914,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.78 % (686,736.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,362.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01714735 BTC (32,833.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.57 CZK over 5180 transactions" + } + ] + }, + { + "id": 6889, + "type": "message", + "date": "2025-03-18T13:00:04", + "date_unixtime": "1742299204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004346 BTC for 82.69 CZK @ 1,902,716 CZK\nFees are 0.29043517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.929880625587709468769110230 CZK)\nThe limits being 0.03 % (8.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60641873 BTC (474,424.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,902,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.21 % (679,418.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,279.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01719081 BTC (32,709.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.57 CZK over 5181 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004346 BTC for 82.69 CZK @ 1,902,716 CZK\nFees are 0.29043517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.929880625587709468769110230 CZK)\nThe limits being 0.03 % (8.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60641873 BTC (474,424.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,902,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.21 % (679,418.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,279.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01719081 BTC (32,709.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.57 CZK over 5181 transactions" + } + ] + }, + { + "id": 6890, + "type": "message", + "date": "2025-03-18T17:00:04", + "date_unixtime": "1742313604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004403 BTC for 82.69 CZK @ 1,878,147 CZK\nFees are 0.29044491 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.659621004883996179168956800 CZK)\nThe limits being 0.03 % (8.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60646276 BTC (474,507.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,878,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.04 % (664,519.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,196.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01723484 BTC (32,369.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.57 CZK over 5182 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004403 BTC for 82.69 CZK @ 1,878,147 CZK\nFees are 0.29044491 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.659621004883996179168956800 CZK)\nThe limits being 0.03 % (8.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60646276 BTC (474,507.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,878,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.04 % (664,519.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,196.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01723484 BTC (32,369.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.57 CZK over 5182 transactions" + } + ] + }, + { + "id": 6891, + "type": "message", + "date": "2025-03-18T21:00:05", + "date_unixtime": "1742328005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004374 BTC for 82.70 CZK @ 1,890,640 CZK\nFees are 0.29045117 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.797044514068159703497748736 CZK)\nThe limits being 0.03 % (8.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60650650 BTC (474,590.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,498 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,890,640 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.62 % (672,095.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,113.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01727858 BTC (32,667.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.57 CZK over 5183 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004374 BTC for 82.70 CZK @ 1,890,640 CZK\nFees are 0.29045117 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.797044514068159703497748736 CZK)\nThe limits being 0.03 % (8.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60650650 BTC (474,590.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,498 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,890,640 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.62 % (672,095.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,113.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01727858 BTC (32,667.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.57 CZK over 5183 transactions" + } + ] + }, + { + "id": 6892, + "type": "message", + "date": "2025-03-19T01:00:06", + "date_unixtime": "1742342406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004355 BTC for 82.71 CZK @ 1,899,102 CZK\nFees are 0.29048384 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.890126832092269479325231951 CZK)\nThe limits being 0.03 % (8.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60655005 BTC (474,673.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,899,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.67 % (677,227.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,030.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01732213 BTC (32,896.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.57 CZK over 5184 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004355 BTC for 82.71 CZK @ 1,899,102 CZK\nFees are 0.29048384 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.890126832092269479325231951 CZK)\nThe limits being 0.03 % (8.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60655005 BTC (474,673.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,899,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.67 % (677,227.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,030.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01732213 BTC (32,896.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.57 CZK over 5184 transactions" + } + ] + }, + { + "id": 6893, + "type": "message", + "date": "2025-03-19T05:00:04", + "date_unixtime": "1742356804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004340 BTC for 82.71 CZK @ 1,905,646 CZK\nFees are 0.29048072 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.962102699537792840266440728 CZK)\nThe limits being 0.03 % (8.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60659345 BTC (474,756.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,905,646 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.48 % (681,195.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,947.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01736553 BTC (33,092.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.56 CZK over 5185 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004340 BTC for 82.71 CZK @ 1,905,646 CZK\nFees are 0.29048072 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.962102699537792840266440728 CZK)\nThe limits being 0.03 % (8.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60659345 BTC (474,756.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,905,646 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.48 % (681,195.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,947.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01736553 BTC (33,092.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.56 CZK over 5185 transactions" + } + ] + }, + { + "id": 6894, + "type": "message", + "date": "2025-03-19T09:00:04", + "date_unixtime": "1742371204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004304 BTC for 82.71 CZK @ 1,921,635 CZK\nFees are 0.29048833 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.137989794085014716151462448 CZK)\nThe limits being 0.03 % (8.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60663649 BTC (474,839.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,921,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.50 % (690,894.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,864.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01740857 BTC (33,452.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.56 CZK over 5186 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004304 BTC for 82.71 CZK @ 1,921,635 CZK\nFees are 0.29048833 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.137989794085014716151462448 CZK)\nThe limits being 0.03 % (8.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60663649 BTC (474,839.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,921,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.50 % (690,894.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,864.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01740857 BTC (33,452.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.56 CZK over 5186 transactions" + } + ] + }, + { + "id": 6895, + "type": "message", + "date": "2025-03-19T13:00:06", + "date_unixtime": "1742385606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004285 BTC for 82.69 CZK @ 1,929,843 CZK\nFees are 0.29044118 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.228271152018111638436999092 CZK)\nThe limits being 0.03 % (8.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60667934 BTC (474,922.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,929,843 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.52 % (695,873.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,781.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01745142 BTC (33,678.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.56 CZK over 5187 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004285 BTC for 82.69 CZK @ 1,929,843 CZK\nFees are 0.29044118 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.228271152018111638436999092 CZK)\nThe limits being 0.03 % (8.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60667934 BTC (474,922.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,929,843 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.52 % (695,873.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,781.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01745142 BTC (33,678.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.56 CZK over 5187 transactions" + } + ] + }, + { + "id": 6896, + "type": "message", + "date": "2025-03-19T17:00:05", + "date_unixtime": "1742400005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004240 BTC for 82.71 CZK @ 1,950,714 CZK\nFees are 0.29049911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.457850678521401509810004606 CZK)\nThe limits being 0.03 % (8.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60672174 BTC (475,005.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,950,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.16 % (708,535.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,698.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01749382 BTC (34,125.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.56 CZK over 5188 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004240 BTC for 82.71 CZK @ 1,950,714 CZK\nFees are 0.29049911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.457850678521401509810004606 CZK)\nThe limits being 0.03 % (8.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60672174 BTC (475,005.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,950,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.16 % (708,535.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,698.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01749382 BTC (34,125.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.56 CZK over 5188 transactions" + } + ] + }, + { + "id": 6897, + "type": "message", + "date": "2025-03-19T21:00:04", + "date_unixtime": "1742414404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004212 BTC for 82.70 CZK @ 1,963,476 CZK\nFees are 0.29046879 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.598240559040509214898851173 CZK)\nThe limits being 0.03 % (8.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60676386 BTC (475,088.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 782,987 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,963,476 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.77 % (716,278.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,615.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01753594 BTC (34,431.40 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.56 CZK over 5189 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004212 BTC for 82.70 CZK @ 1,963,476 CZK\nFees are 0.29046879 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.598240559040509214898851173 CZK)\nThe limits being 0.03 % (8.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60676386 BTC (475,088.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 782,987 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,963,476 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.77 % (716,278.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,615.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01753594 BTC (34,431.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.56 CZK over 5189 transactions" + } + ] + }, + { + "id": 6898, + "type": "message", + "date": "2025-03-20T01:00:05", + "date_unixtime": "1742428805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004149 BTC for 82.71 CZK @ 1,993,490 CZK\nFees are 0.29049785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.928390010475507331954452498 CZK)\nThe limits being 0.03 % (8.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60680535 BTC (475,171.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,993,490 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.57 % (734,489.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,532.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01757743 BTC (35,040.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.56 CZK over 5190 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004149 BTC for 82.71 CZK @ 1,993,490 CZK\nFees are 0.29049785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.928390010475507331954452498 CZK)\nThe limits being 0.03 % (8.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60680535 BTC (475,171.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,993,490 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.57 % (734,489.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,532.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01757743 BTC (35,040.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.56 CZK over 5190 transactions" + } + ] + }, + { + "id": 6899, + "type": "message", + "date": "2025-03-20T05:00:06", + "date_unixtime": "1742443206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004184 BTC for 82.69 CZK @ 1,976,450 CZK\nFees are 0.29044430 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.740946196438659719661871784 CZK)\nThe limits being 0.03 % (8.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60684719 BTC (475,254.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,976,450 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.37 % (724,148.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,449.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01761927 BTC (34,823.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.55 CZK over 5191 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004184 BTC for 82.69 CZK @ 1,976,450 CZK\nFees are 0.29044430 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.740946196438659719661871784 CZK)\nThe limits being 0.03 % (8.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60684719 BTC (475,254.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,976,450 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.37 % (724,148.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,449.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01761927 BTC (34,823.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.55 CZK over 5191 transactions" + } + ] + }, + { + "id": 6900, + "type": "message", + "date": "2025-03-20T09:00:06", + "date_unixtime": "1742457606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004173 BTC for 82.69 CZK @ 1,981,569 CZK\nFees are 0.29043108 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.797263147638907246635338502 CZK)\nThe limits being 0.03 % (8.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60688892 BTC (475,337.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,981,569 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.00 % (727,255.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,366.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01766100 BTC (34,996.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.55 CZK over 5192 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004173 BTC for 82.69 CZK @ 1,981,569 CZK\nFees are 0.29043108 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.797263147638907246635338502 CZK)\nThe limits being 0.03 % (8.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60688892 BTC (475,337.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,981,569 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.00 % (727,255.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,366.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01766100 BTC (34,996.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.55 CZK over 5192 transactions" + } + ] + }, + { + "id": 6901, + "type": "message", + "date": "2025-03-20T13:00:04", + "date_unixtime": "1742472004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004181 BTC for 82.70 CZK @ 1,978,066 CZK\nFees are 0.29047335 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.758722369339457319139052541 CZK)\nThe limits being 0.03 % (8.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60693073 BTC (475,420.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,978,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.52 % (725,128.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,283.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01770281 BTC (35,017.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.55 CZK over 5193 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004181 BTC for 82.70 CZK @ 1,978,066 CZK\nFees are 0.29047335 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.758722369339457319139052541 CZK)\nThe limits being 0.03 % (8.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60693073 BTC (475,420.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,978,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.52 % (725,128.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,283.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01770281 BTC (35,017.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.55 CZK over 5193 transactions" + } + ] + }, + { + "id": 6902, + "type": "message", + "date": "2025-03-20T17:00:04", + "date_unixtime": "1742486404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004213 BTC for 82.69 CZK @ 1,962,790 CZK\nFees are 0.29043614 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.590686786846559235885887645 CZK)\nThe limits being 0.03 % (8.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60697286 BTC (475,503.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,401 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,962,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.55 % (715,856.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,200.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01774494 BTC (34,829.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.55 CZK over 5194 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004213 BTC for 82.69 CZK @ 1,962,790 CZK\nFees are 0.29043614 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.590686786846559235885887645 CZK)\nThe limits being 0.03 % (8.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60697286 BTC (475,503.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,401 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,962,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.55 % (715,856.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,200.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01774494 BTC (34,829.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.55 CZK over 5194 transactions" + } + ] + }, + { + "id": 6903, + "type": "message", + "date": "2025-03-20T21:00:05", + "date_unixtime": "1742500805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004246 BTC for 82.71 CZK @ 1,947,883 CZK\nFees are 0.29048800 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (42.853418579014898631990107167 CZK)\nThe limits being 0.03 % (8.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60701532 BTC (475,586.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,483 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,947,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.62 % (706,808.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,117.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01778740 BTC (34,647.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.55 CZK over 5195 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004246 BTC for 82.71 CZK @ 1,947,883 CZK\nFees are 0.29048800 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (42.853418579014898631990107167 CZK)\nThe limits being 0.03 % (8.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60701532 BTC (475,586.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,483 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,947,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.62 % (706,808.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,117.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01778740 BTC (34,647.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.55 CZK over 5195 transactions" + } + ] + }, + { + "id": 6904, + "type": "message", + "date": "2025-03-21T01:00:05", + "date_unixtime": "1742515205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004258 BTC for 82.70 CZK @ 1,942,327 CZK\nFees are 0.29047810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.365595416043846537120079720 CZK)\nThe limits being 0.03 % (8.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60705790 BTC (475,669.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,942,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.88 % (703,435.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,034.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01782998 BTC (34,631.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.55 CZK over 5196 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004258 BTC for 82.70 CZK @ 1,942,327 CZK\nFees are 0.29047810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.365595416043846537120079720 CZK)\nThe limits being 0.03 % (8.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60705790 BTC (475,669.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,942,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.88 % (703,435.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,034.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01782998 BTC (34,631.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.55 CZK over 5196 transactions" + } + ] + }, + { + "id": 6905, + "type": "message", + "date": "2025-03-21T05:00:05", + "date_unixtime": "1742529605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004225 BTC for 82.71 CZK @ 1,957,597 CZK\nFees are 0.29049277 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.533562112959670738215063844 CZK)\nThe limits being 0.03 % (8.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60710015 BTC (475,752.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,957,597 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.81 % (712,704.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,951.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01787223 BTC (34,986.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.54 CZK over 5197 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004225 BTC for 82.71 CZK @ 1,957,597 CZK\nFees are 0.29049277 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.533562112959670738215063844 CZK)\nThe limits being 0.03 % (8.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60710015 BTC (475,752.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,957,597 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.81 % (712,704.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,951.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01787223 BTC (34,986.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.54 CZK over 5197 transactions" + } + ] + }, + { + "id": 6906, + "type": "message", + "date": "2025-03-21T09:00:05", + "date_unixtime": "1742544005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,668 CZK\nFees are 0.29048666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.391344403217940125150967617 CZK)\nThe limits being 0.03 % (8.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60714268 BTC (475,835.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,944,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.13 % (704,855.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,868.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01791476 BTC (34,838.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.54 CZK over 5198 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,668 CZK\nFees are 0.29048666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.391344403217940125150967617 CZK)\nThe limits being 0.03 % (8.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60714268 BTC (475,835.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,944,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.13 % (704,855.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,868.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01791476 BTC (34,838.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.54 CZK over 5198 transactions" + } + ] + }, + { + "id": 6907, + "type": "message", + "date": "2025-03-21T13:00:06", + "date_unixtime": "1742558406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004254 BTC for 82.70 CZK @ 1,943,999 CZK\nFees are 0.29045506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.383989125976337168757491704 CZK)\nThe limits being 0.03 % (8.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60718522 BTC (475,918.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,811 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,943,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.02 % (704,449.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,785.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01795730 BTC (34,908.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.54 CZK over 5199 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004254 BTC for 82.70 CZK @ 1,943,999 CZK\nFees are 0.29045506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.383989125976337168757491704 CZK)\nThe limits being 0.03 % (8.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60718522 BTC (475,918.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,811 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,943,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.02 % (704,449.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,785.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01795730 BTC (34,908.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.54 CZK over 5199 transactions" + } + ] + }, + { + "id": 6908, + "type": "message", + "date": "2025-03-21T17:00:05", + "date_unixtime": "1742572805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004264 BTC for 82.70 CZK @ 1,939,391 CZK\nFees are 0.29044767 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.333296148284007848702150353 CZK)\nThe limits being 0.03 % (8.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60722786 BTC (476,001.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,939,391 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.41 % (701,650.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,702.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01799994 BTC (34,908.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.54 CZK over 5200 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004264 BTC for 82.70 CZK @ 1,939,391 CZK\nFees are 0.29044767 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.333296148284007848702150353 CZK)\nThe limits being 0.03 % (8.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60722786 BTC (476,001.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,939,391 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.41 % (701,650.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,702.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01799994 BTC (34,908.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.54 CZK over 5200 transactions" + } + ] + }, + { + "id": 6909, + "type": "message", + "date": "2025-03-21T21:00:05", + "date_unixtime": "1742587205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,791 CZK\nFees are 0.29046195 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.414700446272321826526179089 CZK)\nThe limits being 0.03 % (8.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60727034 BTC (476,084.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 783,974 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.32 % (706,144.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,619.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01804242 BTC (35,124.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.54 CZK over 5201 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,791 CZK\nFees are 0.29046195 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.414700446272321826526179089 CZK)\nThe limits being 0.03 % (8.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60727034 BTC (476,084.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 783,974 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.32 % (706,144.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,619.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01804242 BTC (35,124.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.54 CZK over 5201 transactions" + } + ] + }, + { + "id": 6910, + "type": "message", + "date": "2025-03-22T01:00:04", + "date_unixtime": "1742601604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004247 BTC for 82.71 CZK @ 1,947,447 CZK\nFees are 0.29049137 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.421912367228005489146827637 CZK)\nThe limits being 0.03 % (8.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60731281 BTC (476,167.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,947,447 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.38 % (706,542.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,536.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01808489 BTC (35,219.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.54 CZK over 5202 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004247 BTC for 82.71 CZK @ 1,947,447 CZK\nFees are 0.29049137 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.421912367228005489146827637 CZK)\nThe limits being 0.03 % (8.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60731281 BTC (476,167.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,947,447 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.38 % (706,542.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,536.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01808489 BTC (35,219.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.54 CZK over 5202 transactions" + } + ] + }, + { + "id": 6911, + "type": "message", + "date": "2025-03-22T05:00:04", + "date_unixtime": "1742616004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004235 BTC for 82.70 CZK @ 1,952,839 CZK\nFees are 0.29047267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.481228774613527976756676309 CZK)\nThe limits being 0.03 % (8.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60735516 BTC (476,250.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,952,839 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.04 % (709,816.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,453.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01812724 BTC (35,399.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.53 CZK over 5203 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004235 BTC for 82.70 CZK @ 1,952,839 CZK\nFees are 0.29047267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.481228774613527976756676309 CZK)\nThe limits being 0.03 % (8.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60735516 BTC (476,250.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,952,839 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.04 % (709,816.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,453.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01812724 BTC (35,399.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.53 CZK over 5203 transactions" + } + ] + }, + { + "id": 6912, + "type": "message", + "date": "2025-03-22T09:00:03", + "date_unixtime": "1742630403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004230 BTC for 82.71 CZK @ 1,955,273 CZK\nFees are 0.29049135 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.508003311577328051583052696 CZK)\nThe limits being 0.03 % (8.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60739746 BTC (476,333.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,955,273 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.33 % (711,294.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,370.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01816954 BTC (35,526.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.53 CZK over 5204 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004230 BTC for 82.71 CZK @ 1,955,273 CZK\nFees are 0.29049135 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.508003311577328051583052696 CZK)\nThe limits being 0.03 % (8.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60739746 BTC (476,333.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,955,273 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.33 % (711,294.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,370.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01816954 BTC (35,526.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.53 CZK over 5204 transactions" + } + ] + }, + { + "id": 6913, + "type": "message", + "date": "2025-03-22T13:00:03", + "date_unixtime": "1742644803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004231 BTC for 82.71 CZK @ 1,954,802 CZK\nFees are 0.29049000 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.502820431491434434690118502 CZK)\nThe limits being 0.03 % (8.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60743977 BTC (476,416.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,302 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,954,802 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.24 % (711,008.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,287.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01821185 BTC (35,600.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.53 CZK over 5205 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004231 BTC for 82.71 CZK @ 1,954,802 CZK\nFees are 0.29049000 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.502820431491434434690118502 CZK)\nThe limits being 0.03 % (8.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60743977 BTC (476,416.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,302 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,954,802 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.24 % (711,008.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,287.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01821185 BTC (35,600.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.53 CZK over 5205 transactions" + } + ] + }, + { + "id": 6914, + "type": "message", + "date": "2025-03-22T17:00:04", + "date_unixtime": "1742659204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004239 BTC for 82.71 CZK @ 1,951,103 CZK\nFees are 0.29048851 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.462129310799792140577100224 CZK)\nThe limits being 0.03 % (8.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60748216 BTC (476,499.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,384 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,951,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.74 % (708,760.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,204.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01825424 BTC (35,615.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.53 CZK over 5206 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004239 BTC for 82.71 CZK @ 1,951,103 CZK\nFees are 0.29048851 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.462129310799792140577100224 CZK)\nThe limits being 0.03 % (8.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60748216 BTC (476,499.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,384 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,951,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.74 % (708,760.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,204.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01825424 BTC (35,615.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.53 CZK over 5206 transactions" + } + ] + }, + { + "id": 6915, + "type": "message", + "date": "2025-03-22T21:00:04", + "date_unixtime": "1742673604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004238 BTC for 82.70 CZK @ 1,951,324 CZK\nFees are 0.29045296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (150.25196456855935796209256276 CZK)\nThe limits being 0.03 % (8.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60752454 BTC (476,582.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,951,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.75 % (708,895.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,121.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01829662 BTC (35,702.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.53 CZK over 5207 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004238 BTC for 82.70 CZK @ 1,951,324 CZK\nFees are 0.29045296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.42 % (150.25196456855935796209256276 CZK)\nThe limits being 0.03 % (8.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60752454 BTC (476,582.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,951,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.75 % (708,895.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,121.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01829662 BTC (35,702.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.53 CZK over 5207 transactions" + } + ] + }, + { + "id": 6916, + "type": "message", + "date": "2025-03-23T01:00:04", + "date_unixtime": "1742688004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004263 BTC for 82.70 CZK @ 1,940,058 CZK\nFees are 0.29047952 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (128.04384240380343673988331480 CZK)\nThe limits being 0.03 % (8.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60756717 BTC (476,665.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,940,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.28 % (702,050.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,038.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01833925 BTC (35,579.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.53 CZK over 5208 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004263 BTC for 82.70 CZK @ 1,940,058 CZK\nFees are 0.29047952 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (128.04384240380343673988331480 CZK)\nThe limits being 0.03 % (8.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60756717 BTC (476,665.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,940,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.28 % (702,050.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,038.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01833925 BTC (35,579.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.53 CZK over 5208 transactions" + } + ] + }, + { + "id": 6917, + "type": "message", + "date": "2025-03-23T05:00:04", + "date_unixtime": "1742702404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004241 BTC for 82.70 CZK @ 1,950,104 CZK\nFees are 0.29047684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (128.70687610058969508629722873 CZK)\nThe limits being 0.03 % (8.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60760958 BTC (476,748.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,629 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,950,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.54 % (708,153.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,955.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01838166 BTC (35,846.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.52 CZK over 5209 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004241 BTC for 82.70 CZK @ 1,950,104 CZK\nFees are 0.29047684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.36 % (128.70687610058969508629722873 CZK)\nThe limits being 0.03 % (8.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60760958 BTC (476,748.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,629 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,950,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.54 % (708,153.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,955.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01838166 BTC (35,846.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.52 CZK over 5209 transactions" + } + ] + }, + { + "id": 6918, + "type": "message", + "date": "2025-03-23T09:00:04", + "date_unixtime": "1742716804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004235 BTC for 82.70 CZK @ 1,952,852 CZK\nFees are 0.29047460 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.481372130012488756883375717 CZK)\nThe limits being 0.03 % (8.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60765193 BTC (476,831.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,952,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.86 % (709,823.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,872.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01842401 BTC (35,979.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.52 CZK over 5210 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004235 BTC for 82.70 CZK @ 1,952,852 CZK\nFees are 0.29047460 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.481372130012488756883375717 CZK)\nThe limits being 0.03 % (8.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60765193 BTC (476,831.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,952,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.86 % (709,823.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,872.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01842401 BTC (35,979.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.52 CZK over 5210 transactions" + } + ] + }, + { + "id": 6919, + "type": "message", + "date": "2025-03-23T13:00:04", + "date_unixtime": "1742731204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004213 BTC for 82.71 CZK @ 1,963,119 CZK\nFees are 0.29048479 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.594303774907926695209065919 CZK)\nThe limits being 0.03 % (9.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60769406 BTC (476,914.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,963,119 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.14 % (716,061.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,789.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01846614 BTC (36,251.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.52 CZK over 5211 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004213 BTC for 82.71 CZK @ 1,963,119 CZK\nFees are 0.29048479 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.594303774907926695209065919 CZK)\nThe limits being 0.03 % (9.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60769406 BTC (476,914.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,963,119 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.14 % (716,061.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,789.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01846614 BTC (36,251.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.52 CZK over 5211 transactions" + } + ] + }, + { + "id": 6920, + "type": "message", + "date": "2025-03-23T17:00:05", + "date_unixtime": "1742745605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004194 BTC for 82.71 CZK @ 1,972,044 CZK\nFees are 0.29048946 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.692480754174884803521485008 CZK)\nThe limits being 0.03 % (9.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60773600 BTC (476,997.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,972,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.26 % (721,484.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,706.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01850808 BTC (36,498.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.52 CZK over 5212 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004194 BTC for 82.71 CZK @ 1,972,044 CZK\nFees are 0.29048946 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.692480754174884803521485008 CZK)\nThe limits being 0.03 % (9.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60773600 BTC (476,997.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,972,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.26 % (721,484.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,706.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01850808 BTC (36,498.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.52 CZK over 5212 transactions" + } + ] + }, + { + "id": 6921, + "type": "message", + "date": "2025-03-23T21:00:04", + "date_unixtime": "1742760004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004200 BTC for 82.70 CZK @ 1,968,947 CZK\nFees are 0.29044823 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.658417102047595321137922034 CZK)\nThe limits being 0.03 % (9.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60777800 BTC (477,080.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 784,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,968,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.83 % (719,602.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,623.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01855008 BTC (36,524.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.52 CZK over 5213 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004200 BTC for 82.70 CZK @ 1,968,947 CZK\nFees are 0.29044823 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.658417102047595321137922034 CZK)\nThe limits being 0.03 % (9.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60777800 BTC (477,080.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 784,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,968,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.83 % (719,602.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,623.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01855008 BTC (36,524.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.52 CZK over 5213 transactions" + } + ] + }, + { + "id": 6922, + "type": "message", + "date": "2025-03-24T01:00:04", + "date_unixtime": "1742774404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004164 BTC for 82.70 CZK @ 1,986,150 CZK\nFees are 0.29047458 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.847647356729831756000970666 CZK)\nThe limits being 0.03 % (9.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60781964 BTC (477,163.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,041 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,986,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.00 % (730,057.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,540.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01859172 BTC (36,925.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.52 CZK over 5214 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004164 BTC for 82.70 CZK @ 1,986,150 CZK\nFees are 0.29047458 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.847647356729831756000970666 CZK)\nThe limits being 0.03 % (9.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60781964 BTC (477,163.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,041 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,986,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.00 % (730,057.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,540.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01859172 BTC (36,925.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.52 CZK over 5214 transactions" + } + ] + }, + { + "id": 6923, + "type": "message", + "date": "2025-03-24T05:00:04", + "date_unixtime": "1742788804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004137 BTC for 82.70 CZK @ 1,999,025 CZK\nFees are 0.29046186 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.989272306655976501871200377 CZK)\nThe limits being 0.03 % (9.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60786101 BTC (477,246.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,999,025 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 154.61 % (737,883.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,457.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01863309 BTC (37,248.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.51 CZK over 5215 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004137 BTC for 82.70 CZK @ 1,999,025 CZK\nFees are 0.29046186 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.989272306655976501871200377 CZK)\nThe limits being 0.03 % (9.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60786101 BTC (477,246.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,999,025 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 154.61 % (737,883.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,457.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01863309 BTC (37,248.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.51 CZK over 5215 transactions" + } + ] + }, + { + "id": 6924, + "type": "message", + "date": "2025-03-24T09:00:04", + "date_unixtime": "1742803204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004118 BTC for 82.70 CZK @ 2,008,332 CZK\nFees are 0.29047399 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.091650727311137584747700677 CZK)\nThe limits being 0.03 % (9.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60790219 BTC (477,329.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,008,332 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.77 % (743,540.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,374.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01867427 BTC (37,504.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.51 CZK over 5216 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004118 BTC for 82.70 CZK @ 2,008,332 CZK\nFees are 0.29047399 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.091650727311137584747700677 CZK)\nThe limits being 0.03 % (9.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60790219 BTC (477,329.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,008,332 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.77 % (743,540.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,374.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01867427 BTC (37,504.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.51 CZK over 5216 transactions" + } + ] + }, + { + "id": 6925, + "type": "message", + "date": "2025-03-24T13:00:05", + "date_unixtime": "1742817605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004088 BTC for 82.70 CZK @ 2,023,005 CZK\nFees are 0.29046469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.253058841023150870193071802 CZK)\nThe limits being 0.03 % (9.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60794307 BTC (477,412.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,023,005 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.61 % (752,459.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,291.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01871515 BTC (37,860.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.51 CZK over 5217 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004088 BTC for 82.70 CZK @ 2,023,005 CZK\nFees are 0.29046469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.253058841023150870193071802 CZK)\nThe limits being 0.03 % (9.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60794307 BTC (477,412.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,023,005 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.61 % (752,459.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,291.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01871515 BTC (37,860.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.51 CZK over 5217 transactions" + } + ] + }, + { + "id": 6926, + "type": "message", + "date": "2025-03-24T17:00:04", + "date_unixtime": "1742832004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004040 BTC for 82.69 CZK @ 2,046,813 CZK\nFees are 0.29043226 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.514937633628833735391476366 CZK)\nThe limits being 0.03 % (9.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60798347 BTC (477,495.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,046,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.62 % (766,933.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,208.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01875555 BTC (38,389.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.51 CZK over 5218 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004040 BTC for 82.69 CZK @ 2,046,813 CZK\nFees are 0.29043226 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.514937633628833735391476366 CZK)\nThe limits being 0.03 % (9.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60798347 BTC (477,495.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,046,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.62 % (766,933.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,208.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01875555 BTC (38,389.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.51 CZK over 5218 transactions" + } + ] + }, + { + "id": 6927, + "type": "message", + "date": "2025-03-24T21:00:05", + "date_unixtime": "1742846405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004052 BTC for 82.70 CZK @ 2,041,070 CZK\nFees are 0.29047771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.451772662659959637812572089 CZK)\nThe limits being 0.03 % (9.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60802399 BTC (477,578.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,041,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.86 % (763,441.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,125.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01879607 BTC (38,364.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.51 CZK over 5219 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004052 BTC for 82.70 CZK @ 2,041,070 CZK\nFees are 0.29047771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.451772662659959637812572089 CZK)\nThe limits being 0.03 % (9.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60802399 BTC (477,578.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,041,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.86 % (763,441.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,125.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01879607 BTC (38,364.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.51 CZK over 5219 transactions" + } + ] + }, + { + "id": 6928, + "type": "message", + "date": "2025-03-25T01:00:03", + "date_unixtime": "1742860803", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004084 BTC for 82.70 CZK @ 2,024,861 CZK\nFees are 0.29044664 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.273470564825266318131398090 CZK)\nThe limits being 0.03 % (9.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60806483 BTC (477,661.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,024,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.77 % (753,585.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,042.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01883691 BTC (38,142.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.51 CZK over 5220 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004084 BTC for 82.70 CZK @ 2,024,861 CZK\nFees are 0.29044664 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.273470564825266318131398090 CZK)\nThe limits being 0.03 % (9.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60806483 BTC (477,661.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,024,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.77 % (753,585.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,042.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01883691 BTC (38,142.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.51 CZK over 5220 transactions" + } + ] + }, + { + "id": 6929, + "type": "message", + "date": "2025-03-25T05:00:03", + "date_unixtime": "1742875203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004127 BTC for 82.70 CZK @ 2,003,917 CZK\nFees are 0.29046887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.043086040872936966799868983 CZK)\nThe limits being 0.03 % (9.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60810610 BTC (477,744.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,003,917 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.07 % (740,850.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,959.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01887818 BTC (37,830.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 5221 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004127 BTC for 82.70 CZK @ 2,003,917 CZK\nFees are 0.29046887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.043086040872936966799868983 CZK)\nThe limits being 0.03 % (9.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60810610 BTC (477,744.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,003,917 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.07 % (740,850.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,959.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01887818 BTC (37,830.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 5221 transactions" + } + ] + }, + { + "id": 6930, + "type": "message", + "date": "2025-03-25T09:00:05", + "date_unixtime": "1742889605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004126 BTC for 82.71 CZK @ 2,004,612 CZK\nFees are 0.29049917 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.050728031144508519744635899 CZK)\nThe limits being 0.03 % (9.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60814736 BTC (477,827.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,004,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.13 % (741,272.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,876.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01891944 BTC (37,926.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 5222 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004126 BTC for 82.71 CZK @ 2,004,612 CZK\nFees are 0.29049917 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.050728031144508519744635899 CZK)\nThe limits being 0.03 % (9.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60814736 BTC (477,827.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,004,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.13 % (741,272.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,876.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01891944 BTC (37,926.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 5222 transactions" + } + ] + }, + { + "id": 6931, + "type": "message", + "date": "2025-03-25T13:00:05", + "date_unixtime": "1742904005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004098 BTC for 82.70 CZK @ 2,017,940 CZK\nFees are 0.29044612 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (44.394674733600772114582854593 CZK)\nThe limits being 0.03 % (9.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60818834 BTC (477,910.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,017,940 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.80 % (749,377.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,793.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01896042 BTC (38,260.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 5223 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004098 BTC for 82.70 CZK @ 2,017,940 CZK\nFees are 0.29044612 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (44.394674733600772114582854593 CZK)\nThe limits being 0.03 % (9.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60818834 BTC (477,910.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,017,940 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.80 % (749,377.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,793.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01896042 BTC (38,260.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 5223 transactions" + } + ] + }, + { + "id": 6932, + "type": "message", + "date": "2025-03-25T17:00:06", + "date_unixtime": "1742918406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004068 BTC for 82.71 CZK @ 2,033,076 CZK\nFees are 0.29048256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.363840141363634359388159142 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60822902 BTC (477,993.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,033,076 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.70 % (758,582.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,710.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01900110 BTC (38,630.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 5224 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004068 BTC for 82.71 CZK @ 2,033,076 CZK\nFees are 0.29048256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.363840141363634359388159142 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60822902 BTC (477,993.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,033,076 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.70 % (758,582.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,710.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01900110 BTC (38,630.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 5224 transactions" + } + ] + }, + { + "id": 6933, + "type": "message", + "date": "2025-03-25T21:00:05", + "date_unixtime": "1742932805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004062 BTC for 82.71 CZK @ 2,036,157 CZK\nFees are 0.29049363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (44.795454712052866665341908931 CZK)\nThe limits being 0.03 % (9.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60826964 BTC (478,076.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 785,961 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,036,157 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.07 % (760,456.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,627.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01904172 BTC (38,771.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 5225 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004062 BTC for 82.71 CZK @ 2,036,157 CZK\nFees are 0.29049363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.12 % (44.795454712052866665341908931 CZK)\nThe limits being 0.03 % (9.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60826964 BTC (478,076.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 785,961 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,036,157 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.07 % (760,456.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,627.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01904172 BTC (38,771.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 5225 transactions" + } + ] + }, + { + "id": 6934, + "type": "message", + "date": "2025-03-26T01:00:05", + "date_unixtime": "1742947205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004084 BTC for 82.70 CZK @ 2,024,953 CZK\nFees are 0.29045987 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (178.19588070157973049273673386 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60831048 BTC (478,159.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,024,953 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.61 % (753,641.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,544.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01908256 BTC (38,641.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.50 CZK over 5226 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004084 BTC for 82.70 CZK @ 2,024,953 CZK\nFees are 0.29045987 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (178.19588070157973049273673386 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60831048 BTC (478,159.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,024,953 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.61 % (753,641.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,544.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01908256 BTC (38,641.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.50 CZK over 5226 transactions" + } + ] + }, + { + "id": 6935, + "type": "message", + "date": "2025-03-26T05:00:04", + "date_unixtime": "1742961604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004091 BTC for 82.70 CZK @ 2,021,497 CZK\nFees are 0.29046106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (177.89170078570030559139321347 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60835139 BTC (478,242.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,021,497 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.15 % (751,538.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,461.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01912347 BTC (38,658.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.49 CZK over 5227 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004091 BTC for 82.70 CZK @ 2,021,497 CZK\nFees are 0.29046106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.46 % (177.89170078570030559139321347 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60835139 BTC (478,242.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,021,497 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.15 % (751,538.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,461.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01912347 BTC (38,658.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.49 CZK over 5227 transactions" + } + ] + }, + { + "id": 6936, + "type": "message", + "date": "2025-03-26T09:00:05", + "date_unixtime": "1742976005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004049 BTC for 82.70 CZK @ 2,042,592 CZK\nFees are 0.29047906 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (157.27958582821325656571473785 CZK)\nThe limits being 0.03 % (9.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60839188 BTC (478,325.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,212 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,042,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.80 % (764,371.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,378.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01916396 BTC (39,144.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.49 CZK over 5228 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004049 BTC for 82.70 CZK @ 2,042,592 CZK\nFees are 0.29047906 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.40 % (157.27958582821325656571473785 CZK)\nThe limits being 0.03 % (9.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60839188 BTC (478,325.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,212 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,042,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.80 % (764,371.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,378.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01916396 BTC (39,144.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.49 CZK over 5228 transactions" + } + ] + }, + { + "id": 6937, + "type": "message", + "date": "2025-03-26T13:00:06", + "date_unixtime": "1742990406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004051 BTC for 82.69 CZK @ 2,041,307 CZK\nFees are 0.29043968 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.454375129406986679674705552 CZK)\nThe limits being 0.03 % (9.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60843239 BTC (478,408.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,296 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,041,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.61 % (763,589.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,295.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01920447 BTC (39,202.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.49 CZK over 5229 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004051 BTC for 82.69 CZK @ 2,041,307 CZK\nFees are 0.29043968 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.454375129406986679674705552 CZK)\nThe limits being 0.03 % (9.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60843239 BTC (478,408.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,296 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,041,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.61 % (763,589.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,295.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01920447 BTC (39,202.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.49 CZK over 5229 transactions" + } + ] + }, + { + "id": 6938, + "type": "message", + "date": "2025-03-26T17:00:04", + "date_unixtime": "1743004804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004120 BTC for 82.70 CZK @ 2,007,249 CZK\nFees are 0.29045839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.079741132250714731449635015 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60847359 BTC (478,491.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,007,249 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.25 % (742,867.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,212.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01924567 BTC (38,630.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.49 CZK over 5230 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004120 BTC for 82.70 CZK @ 2,007,249 CZK\nFees are 0.29045839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.079741132250714731449635015 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60847359 BTC (478,491.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,007,249 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.25 % (742,867.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,212.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01924567 BTC (38,630.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.49 CZK over 5230 transactions" + } + ] + }, + { + "id": 6939, + "type": "message", + "date": "2025-03-26T21:00:04", + "date_unixtime": "1743019204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004106 BTC for 82.70 CZK @ 2,014,219 CZK\nFees are 0.29047646 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.156403643992252153992929278 CZK)\nThe limits being 0.03 % (9.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60851465 BTC (478,574.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,014,219 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.11 % (747,107.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,129.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01928673 BTC (38,847.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.49 CZK over 5231 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004106 BTC for 82.70 CZK @ 2,014,219 CZK\nFees are 0.29047646 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.156403643992252153992929278 CZK)\nThe limits being 0.03 % (9.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60851465 BTC (478,574.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,014,219 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.11 % (747,107.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,129.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01928673 BTC (38,847.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.49 CZK over 5231 transactions" + } + ] + }, + { + "id": 6940, + "type": "message", + "date": "2025-03-27T01:00:03", + "date_unixtime": "1743033603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004086 BTC for 82.69 CZK @ 2,023,767 CZK\nFees are 0.29043192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.261439666990301443723277878 CZK)\nThe limits being 0.03 % (9.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60855551 BTC (478,656.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,546 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,023,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.30 % (752,917.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,046.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01932759 BTC (39,114.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.49 CZK over 5232 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004086 BTC for 82.69 CZK @ 2,023,767 CZK\nFees are 0.29043192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.261439666990301443723277878 CZK)\nThe limits being 0.03 % (9.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60855551 BTC (478,656.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,546 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,023,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.30 % (752,917.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,046.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01932759 BTC (39,114.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.49 CZK over 5232 transactions" + } + ] + }, + { + "id": 6941, + "type": "message", + "date": "2025-03-27T05:00:04", + "date_unixtime": "1743048004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004066 BTC for 82.54 CZK @ 2,030,010 CZK\nFees are 0.28990184 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.330109570512061694546215642 CZK)\nThe limits being 0.03 % (9.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60859617 BTC (478,739.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,630 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,030,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.06 % (756,716.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,963.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01936825 BTC (39,317.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5233 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004066 BTC for 82.54 CZK @ 2,030,010 CZK\nFees are 0.28990184 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.330109570512061694546215642 CZK)\nThe limits being 0.03 % (9.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60859617 BTC (478,739.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,630 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,030,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.06 % (756,716.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,963.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01936825 BTC (39,317.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5233 transactions" + } + ] + }, + { + "id": 6942, + "type": "message", + "date": "2025-03-27T09:00:04", + "date_unixtime": "1743062404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004072 BTC for 82.70 CZK @ 2,030,871 CZK\nFees are 0.29045276 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.339579854595360246994066934 CZK)\nThe limits being 0.03 % (9.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60863689 BTC (478,822.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,030,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.15 % (757,240.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,880.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01940897 BTC (39,417.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5234 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004072 BTC for 82.70 CZK @ 2,030,871 CZK\nFees are 0.29045276 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.339579854595360246994066934 CZK)\nThe limits being 0.03 % (9.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60863689 BTC (478,822.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,030,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.15 % (757,240.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,880.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01940897 BTC (39,417.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5234 transactions" + } + ] + }, + { + "id": 6943, + "type": "message", + "date": "2025-03-27T13:00:07", + "date_unixtime": "1743076807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004090 BTC for 82.70 CZK @ 2,021,972 CZK\nFees are 0.29045832 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.241689587422018046860438343 CZK)\nThe limits being 0.03 % (9.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60867779 BTC (478,905.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,021,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.99 % (751,823.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,797.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01944987 BTC (39,327.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5235 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004090 BTC for 82.70 CZK @ 2,021,972 CZK\nFees are 0.29045832 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.241689587422018046860438343 CZK)\nThe limits being 0.03 % (9.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60867779 BTC (478,905.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,021,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.99 % (751,823.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,797.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01944987 BTC (39,327.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5235 transactions" + } + ] + }, + { + "id": 6944, + "type": "message", + "date": "2025-03-27T17:00:04", + "date_unixtime": "1743091204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004098 BTC for 82.70 CZK @ 2,018,006 CZK\nFees are 0.29045564 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.198065175983618098003984589 CZK)\nThe limits being 0.03 % (9.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60871877 BTC (478,988.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,018,006 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.46 % (749,409.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,714.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01949085 BTC (39,332.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5236 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004098 BTC for 82.70 CZK @ 2,018,006 CZK\nFees are 0.29045564 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.198065175983618098003984589 CZK)\nThe limits being 0.03 % (9.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60871877 BTC (478,988.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,018,006 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.46 % (749,409.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,714.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01949085 BTC (39,332.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5236 transactions" + } + ] + }, + { + "id": 6945, + "type": "message", + "date": "2025-03-27T21:00:05", + "date_unixtime": "1743105605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004089 BTC for 82.71 CZK @ 2,022,682 CZK\nFees are 0.29048924 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.249496988468947580509059572 CZK)\nThe limits being 0.03 % (9.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60875966 BTC (479,071.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 786,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,022,682 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.02 % (752,255.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,631.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01953174 BTC (39,506.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5237 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004089 BTC for 82.71 CZK @ 2,022,682 CZK\nFees are 0.29048924 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.249496988468947580509059572 CZK)\nThe limits being 0.03 % (9.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60875966 BTC (479,071.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 786,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,022,682 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.02 % (752,255.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,631.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01953174 BTC (39,506.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5237 transactions" + } + ] + }, + { + "id": 6946, + "type": "message", + "date": "2025-03-28T01:00:04", + "date_unixtime": "1743120004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004089 BTC for 82.69 CZK @ 2,022,321 CZK\nFees are 0.29043740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.245527123641478352301549615 CZK)\nThe limits being 0.03 % (9.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60880055 BTC (479,154.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,022,321 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.95 % (752,035.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,548.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01957263 BTC (39,582.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5238 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004089 BTC for 82.69 CZK @ 2,022,321 CZK\nFees are 0.29043740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.245527123641478352301549615 CZK)\nThe limits being 0.03 % (9.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60880055 BTC (479,154.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,022,321 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.95 % (752,035.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,548.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01957263 BTC (39,582.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5238 transactions" + } + ] + }, + { + "id": 6947, + "type": "message", + "date": "2025-03-28T05:00:06", + "date_unixtime": "1743134406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004104 BTC for 82.70 CZK @ 2,015,096 CZK\nFees are 0.29046141 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.166052624051686543491541788 CZK)\nThe limits being 0.03 % (9.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60884159 BTC (479,237.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,130 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,015,096 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.01 % (747,636.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,465.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01961367 BTC (39,523.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.48 CZK over 5239 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004104 BTC for 82.70 CZK @ 2,015,096 CZK\nFees are 0.29046141 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (22.166052624051686543491541788 CZK)\nThe limits being 0.03 % (9.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60884159 BTC (479,237.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,130 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,015,096 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.01 % (747,636.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,465.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01961367 BTC (39,523.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.48 CZK over 5239 transactions" + } + ] + }, + { + "id": 6948, + "type": "message", + "date": "2025-03-28T09:00:04", + "date_unixtime": "1743148804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004178 BTC for 82.69 CZK @ 1,979,209 CZK\nFees are 0.29043263 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.771293610467719134298504779 CZK)\nThe limits being 0.03 % (9.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60888337 BTC (479,320.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,213 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,979,209 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.42 % (725,786.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,382.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01965545 BTC (38,902.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.47 CZK over 5240 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004178 BTC for 82.69 CZK @ 1,979,209 CZK\nFees are 0.29043263 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.771293610467719134298504779 CZK)\nThe limits being 0.03 % (9.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60888337 BTC (479,320.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,213 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,979,209 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.42 % (725,786.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,382.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01965545 BTC (38,902.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.47 CZK over 5240 transactions" + } + ] + }, + { + "id": 6949, + "type": "message", + "date": "2025-03-28T13:00:05", + "date_unixtime": "1743163205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004167 BTC for 82.70 CZK @ 1,984,578 CZK\nFees are 0.29045380 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.830356387871630957116853670 CZK)\nThe limits being 0.03 % (9.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60892504 BTC (479,403.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,984,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.08 % (729,055.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,299.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01969712 BTC (39,090.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.47 CZK over 5241 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004167 BTC for 82.70 CZK @ 1,984,578 CZK\nFees are 0.29045380 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.830356387871630957116853670 CZK)\nThe limits being 0.03 % (9.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60892504 BTC (479,403.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,984,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.08 % (729,055.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,299.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01969712 BTC (39,090.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.47 CZK over 5241 transactions" + } + ] + }, + { + "id": 6950, + "type": "message", + "date": "2025-03-28T17:00:05", + "date_unixtime": "1743177605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,859 CZK\nFees are 0.29047212 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (42.830900618550703423141415592 CZK)\nThe limits being 0.03 % (9.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60896752 BTC (479,486.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,376 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,946,859 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.26 % (706,087.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,216.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01973960 BTC (38,430.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.47 CZK over 5242 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004248 BTC for 82.70 CZK @ 1,946,859 CZK\nFees are 0.29047212 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (42.830900618550703423141415592 CZK)\nThe limits being 0.03 % (9.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60896752 BTC (479,486.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,376 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,946,859 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.26 % (706,087.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,216.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01973960 BTC (38,430.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.47 CZK over 5242 transactions" + } + ] + }, + { + "id": 6951, + "type": "message", + "date": "2025-03-28T21:00:04", + "date_unixtime": "1743192004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004271 BTC for 82.71 CZK @ 1,936,499 CZK\nFees are 0.29049078 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.301493115934547510311894787 CZK)\nThe limits being 0.03 % (9.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60901023 BTC (479,569.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,458 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,936,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.92 % (699,778.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,133.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01978231 BTC (38,308.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.47 CZK over 5243 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004271 BTC for 82.71 CZK @ 1,936,499 CZK\nFees are 0.29049078 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.301493115934547510311894787 CZK)\nThe limits being 0.03 % (9.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60901023 BTC (479,569.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,458 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,936,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.92 % (699,778.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,133.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01978231 BTC (38,308.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.47 CZK over 5243 transactions" + } + ] + }, + { + "id": 6952, + "type": "message", + "date": "2025-03-29T01:00:05", + "date_unixtime": "1743206405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004244 BTC for 82.70 CZK @ 1,948,539 CZK\nFees are 0.29044905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.433932238109125130845058318 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60905267 BTC (479,652.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,948,539 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.42 % (707,110.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,050.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01982475 BTC (38,629.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.47 CZK over 5244 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004244 BTC for 82.70 CZK @ 1,948,539 CZK\nFees are 0.29044905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.433932238109125130845058318 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60905267 BTC (479,652.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,948,539 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.42 % (707,110.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,050.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01982475 BTC (38,629.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.47 CZK over 5244 transactions" + } + ] + }, + { + "id": 6953, + "type": "message", + "date": "2025-03-29T05:00:04", + "date_unixtime": "1743220804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004254 BTC for 82.70 CZK @ 1,944,039 CZK\nFees are 0.29046105 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.384430222242836485090148750 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60909521 BTC (479,735.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,620 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,944,039 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 146.82 % (704,369.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,967.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01986729 BTC (38,622.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.47 CZK over 5245 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004254 BTC for 82.70 CZK @ 1,944,039 CZK\nFees are 0.29046105 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.384430222242836485090148750 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60909521 BTC (479,735.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,620 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,944,039 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 146.82 % (704,369.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,967.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01986729 BTC (38,622.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.47 CZK over 5245 transactions" + } + ] + }, + { + "id": 6954, + "type": "message", + "date": "2025-03-29T09:00:03", + "date_unixtime": "1743235203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004272 BTC for 82.71 CZK @ 1,936,075 CZK\nFees are 0.29049517 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.296828521989516094418598577 CZK)\nThe limits being 0.03 % (9.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60913793 BTC (479,818.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,936,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.79 % (699,518.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,884.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01991001 BTC (38,547.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.46 CZK over 5246 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004272 BTC for 82.71 CZK @ 1,936,075 CZK\nFees are 0.29049517 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (21.296828521989516094418598577 CZK)\nThe limits being 0.03 % (9.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60913793 BTC (479,818.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,936,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.79 % (699,518.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,884.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01991001 BTC (38,547.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.46 CZK over 5246 transactions" + } + ] + }, + { + "id": 6955, + "type": "message", + "date": "2025-03-29T13:00:05", + "date_unixtime": "1743249605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004350 BTC for 82.71 CZK @ 1,901,327 CZK\nFees are 0.29049020 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.914596643242902714063994409 CZK)\nThe limits being 0.03 % (9.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60918143 BTC (479,901.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,901,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.35 % (678,351.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,801.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01995351 BTC (37,938.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.46 CZK over 5247 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004350 BTC for 82.71 CZK @ 1,901,327 CZK\nFees are 0.29049020 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.914596643242902714063994409 CZK)\nThe limits being 0.03 % (9.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60918143 BTC (479,901.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,901,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.35 % (678,351.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,801.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01995351 BTC (37,938.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.46 CZK over 5247 transactions" + } + ] + }, + { + "id": 6956, + "type": "message", + "date": "2025-03-29T17:00:04", + "date_unixtime": "1743264004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004340 BTC for 82.70 CZK @ 1,905,595 CZK\nFees are 0.29047292 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.961540302030451025098790180 CZK)\nThe limits being 0.03 % (9.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60922483 BTC (479,984.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,861 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,905,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.87 % (680,950.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,718.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.01999691 BTC (38,106.00 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.46 CZK over 5248 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004340 BTC for 82.70 CZK @ 1,905,595 CZK\nFees are 0.29047292 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.06 % (20.961540302030451025098790180 CZK)\nThe limits being 0.03 % (9.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60922483 BTC (479,984.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,861 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,905,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.87 % (680,950.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,718.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.01999691 BTC (38,106.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.46 CZK over 5248 transactions" + } + ] + }, + { + "id": 6957, + "type": "message", + "date": "2025-03-29T21:00:04", + "date_unixtime": "1743278404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004331 BTC for 82.70 CZK @ 1,909,503 CZK\nFees are 0.29046514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.004536150487838858154851003 CZK)\nThe limits being 0.03 % (9.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60926814 BTC (480,067.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 787,942 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,909,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.34 % (683,331.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,635.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02004022 BTC (38,266.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.46 CZK over 5249 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004331 BTC for 82.70 CZK @ 1,909,503 CZK\nFees are 0.29046514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.004536150487838858154851003 CZK)\nThe limits being 0.03 % (9.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60926814 BTC (480,067.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 787,942 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,909,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.34 % (683,331.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,635.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02004022 BTC (38,266.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.46 CZK over 5249 transactions" + } + ] + }, + { + "id": 6958, + "type": "message", + "date": "2025-03-30T01:00:05", + "date_unixtime": "1743292805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004334 BTC for 82.71 CZK @ 1,908,328 CZK\nFees are 0.29048749 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.991612033011363780069250010 CZK)\nThe limits being 0.03 % (9.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60931148 BTC (480,150.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,022 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,908,328 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.17 % (682,615.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,552.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02008356 BTC (38,326.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.46 CZK over 5250 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004334 BTC for 82.71 CZK @ 1,908,328 CZK\nFees are 0.29048749 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.991612033011363780069250010 CZK)\nThe limits being 0.03 % (9.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60931148 BTC (480,150.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,022 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,908,328 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.17 % (682,615.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,552.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02008356 BTC (38,326.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.46 CZK over 5250 transactions" + } + ] + }, + { + "id": 6959, + "type": "message", + "date": "2025-03-30T06:00:05", + "date_unixtime": "1743307205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004315 BTC for 82.54 CZK @ 1,912,797 CZK\nFees are 0.28989119 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.040762466246468761420774680 CZK)\nThe limits being 0.03 % (9.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60935463 BTC (480,233.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,102 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,912,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.71 % (685,337.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,470.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02012671 BTC (38,498.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.46 CZK over 5251 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004315 BTC for 82.54 CZK @ 1,912,797 CZK\nFees are 0.28989119 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.040762466246468761420774680 CZK)\nThe limits being 0.03 % (9.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60935463 BTC (480,233.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,102 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,912,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.71 % (685,337.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,470.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02012671 BTC (38,498.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.46 CZK over 5251 transactions" + } + ] + }, + { + "id": 6960, + "type": "message", + "date": "2025-03-30T10:00:05", + "date_unixtime": "1743321605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004313 BTC for 82.70 CZK @ 1,917,541 CZK\nFees are 0.29047556 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.092953876595375494833697640 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60939776 BTC (480,316.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,182 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,917,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.29 % (688,228.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,387.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02016984 BTC (38,676.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.45 CZK over 5252 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004313 BTC for 82.70 CZK @ 1,917,541 CZK\nFees are 0.29047556 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.092953876595375494833697640 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60939776 BTC (480,316.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,182 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,917,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.29 % (688,228.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,387.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02016984 BTC (38,676.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.45 CZK over 5252 transactions" + } + ] + }, + { + "id": 6961, + "type": "message", + "date": "2025-03-30T14:00:05", + "date_unixtime": "1743336005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004311 BTC for 82.70 CZK @ 1,918,352 CZK\nFees are 0.29046366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.101875045783275122550081906 CZK)\nThe limits being 0.03 % (9.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60944087 BTC (480,399.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,263 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,352 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.36 % (688,722.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,304.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02021295 BTC (38,775.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.45 CZK over 5253 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004311 BTC for 82.70 CZK @ 1,918,352 CZK\nFees are 0.29046366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.101875045783275122550081906 CZK)\nThe limits being 0.03 % (9.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60944087 BTC (480,399.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,263 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,352 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.36 % (688,722.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,304.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02021295 BTC (38,775.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.45 CZK over 5253 transactions" + } + ] + }, + { + "id": 6962, + "type": "message", + "date": "2025-03-30T18:00:04", + "date_unixtime": "1743350404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004330 BTC for 82.69 CZK @ 1,909,780 CZK\nFees are 0.29044015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.007579714187411035969948139 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60948417 BTC (480,482.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,909,780 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.25 % (683,498.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,221.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02025625 BTC (38,684.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.45 CZK over 5254 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004330 BTC for 82.69 CZK @ 1,909,780 CZK\nFees are 0.29044015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.007579714187411035969948139 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60948417 BTC (480,482.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,909,780 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.25 % (683,498.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,221.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02025625 BTC (38,684.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.45 CZK over 5254 transactions" + } + ] + }, + { + "id": 6963, + "type": "message", + "date": "2025-03-30T22:00:04", + "date_unixtime": "1743364804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004339 BTC for 82.71 CZK @ 1,906,206 CZK\nFees are 0.29049919 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.968267019568408473086763740 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60952756 BTC (480,565.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,423 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,906,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.77 % (681,319.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,138.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02029964 BTC (38,695.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.45 CZK over 5255 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004339 BTC for 82.71 CZK @ 1,906,206 CZK\nFees are 0.29049919 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.968267019568408473086763740 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60952756 BTC (480,565.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,423 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,906,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.77 % (681,319.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,138.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02029964 BTC (38,695.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.45 CZK over 5255 transactions" + } + ] + }, + { + "id": 6964, + "type": "message", + "date": "2025-03-31T02:00:05", + "date_unixtime": "1743379205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004345 BTC for 82.54 CZK @ 1,899,672 CZK\nFees are 0.28990375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.896392567784904732171576696 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60957101 BTC (480,648.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,503 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,899,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.92 % (677,336.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,055.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02034309 BTC (38,645.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.45 CZK over 5256 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004345 BTC for 82.54 CZK @ 1,899,672 CZK\nFees are 0.28990375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.896392567784904732171576696 CZK)\nThe limits being 0.03 % (9.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60957101 BTC (480,648.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,503 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,899,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.92 % (677,336.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,055.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02034309 BTC (38,645.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.45 CZK over 5256 transactions" + } + ] + }, + { + "id": 6965, + "type": "message", + "date": "2025-03-31T06:00:04", + "date_unixtime": "1743393604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004394 BTC for 82.69 CZK @ 1,881,943 CZK\nFees are 0.29043697 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.701370756290171473125807511 CZK)\nThe limits being 0.03 % (9.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60961495 BTC (480,731.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,881,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.65 % (666,529.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,972.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02038703 BTC (38,367.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.45 CZK over 5257 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004394 BTC for 82.69 CZK @ 1,881,943 CZK\nFees are 0.29043697 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.701370756290171473125807511 CZK)\nThe limits being 0.03 % (9.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60961495 BTC (480,731.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,881,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.65 % (666,529.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,972.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02038703 BTC (38,367.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.45 CZK over 5257 transactions" + } + ] + }, + { + "id": 6966, + "type": "message", + "date": "2025-03-31T10:00:04", + "date_unixtime": "1743408004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004369 BTC for 82.70 CZK @ 1,892,988 CZK\nFees are 0.29047943 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.822870694615082049174878086 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60965864 BTC (480,814.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,661 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,892,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.03 % (673,262.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,889.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02043072 BTC (38,675.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.44 CZK over 5258 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004369 BTC for 82.70 CZK @ 1,892,988 CZK\nFees are 0.29047943 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.822870694615082049174878086 CZK)\nThe limits being 0.03 % (9.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60965864 BTC (480,814.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,661 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,892,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.03 % (673,262.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,889.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02043072 BTC (38,675.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.44 CZK over 5258 transactions" + } + ] + }, + { + "id": 6967, + "type": "message", + "date": "2025-03-31T14:00:06", + "date_unixtime": "1743422406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004351 BTC for 82.70 CZK @ 1,900,697 CZK\nFees are 0.29046077 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.907671433366348096532281808 CZK)\nThe limits being 0.03 % (9.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60970215 BTC (480,897.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,741 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,900,697 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.98 % (677,962.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,806.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02047423 BTC (38,915.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.44 CZK over 5259 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004351 BTC for 82.70 CZK @ 1,900,697 CZK\nFees are 0.29046077 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.907671433366348096532281808 CZK)\nThe limits being 0.03 % (9.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60970215 BTC (480,897.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,741 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,900,697 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.98 % (677,962.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,806.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02047423 BTC (38,915.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.44 CZK over 5259 transactions" + } + ] + }, + { + "id": 6968, + "type": "message", + "date": "2025-03-31T18:00:04", + "date_unixtime": "1743436804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004267 BTC for 82.71 CZK @ 1,938,299 CZK\nFees are 0.29048840 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.321287306006198833728073141 CZK)\nThe limits being 0.03 % (9.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60974482 BTC (480,980.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,822 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,938,299 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.72 % (700,887.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,723.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02051690 BTC (39,767.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.44 CZK over 5260 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004267 BTC for 82.71 CZK @ 1,938,299 CZK\nFees are 0.29048840 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.321287306006198833728073141 CZK)\nThe limits being 0.03 % (9.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60974482 BTC (480,980.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,822 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,938,299 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.72 % (700,887.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,723.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02051690 BTC (39,767.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.44 CZK over 5260 transactions" + } + ] + }, + { + "id": 6969, + "type": "message", + "date": "2025-03-31T22:00:05", + "date_unixtime": "1743451205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004328 BTC for 82.53 CZK @ 1,906,874 CZK\nFees are 0.28986420 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.975610020197331520823144872 CZK)\nThe limits being 0.03 % (9.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60978810 BTC (481,063.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,906,874 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.71 % (681,725.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,640.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02056018 BTC (39,205.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.44 CZK over 5261 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004328 BTC for 82.53 CZK @ 1,906,874 CZK\nFees are 0.28986420 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.975610020197331520823144872 CZK)\nThe limits being 0.03 % (9.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60978810 BTC (481,063.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,906,874 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.71 % (681,725.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,640.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02056018 BTC (39,205.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.44 CZK over 5261 transactions" + } + ] + }, + { + "id": 6970, + "type": "message", + "date": "2025-04-01T02:00:06", + "date_unixtime": "1743465606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004328 BTC for 82.70 CZK @ 1,910,700 CZK\nFees are 0.29044589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.017702870590640705773784360 CZK)\nThe limits being 0.03 % (9.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60983138 BTC (481,146.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 788,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,910,700 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.17 % (684,058.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,557.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02060346 BTC (39,367.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.44 CZK over 5262 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004328 BTC for 82.70 CZK @ 1,910,700 CZK\nFees are 0.29044589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.017702870590640705773784360 CZK)\nThe limits being 0.03 % (9.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60983138 BTC (481,146.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 788,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,910,700 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.17 % (684,058.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,557.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02060346 BTC (39,367.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.44 CZK over 5262 transactions" + } + ] + }, + { + "id": 6971, + "type": "message", + "date": "2025-04-01T06:00:05", + "date_unixtime": "1743480005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004310 BTC for 82.70 CZK @ 1,918,813 CZK\nFees are 0.29046609 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.106947651433440036438590225 CZK)\nThe limits being 0.03 % (9.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60987448 BTC (481,229.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,062 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,813 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.18 % (689,006.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,474.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02064656 BTC (39,616.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.44 CZK over 5263 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004310 BTC for 82.70 CZK @ 1,918,813 CZK\nFees are 0.29046609 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.106947651433440036438590225 CZK)\nThe limits being 0.03 % (9.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60987448 BTC (481,229.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,062 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,813 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.18 % (689,006.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,474.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02064656 BTC (39,616.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.44 CZK over 5263 transactions" + } + ] + }, + { + "id": 6972, + "type": "message", + "date": "2025-04-01T10:00:06", + "date_unixtime": "1743494406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004270 BTC for 82.71 CZK @ 1,936,945 CZK\nFees are 0.29048967 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.306400308755421598176872750 CZK)\nThe limits being 0.03 % (10.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60991718 BTC (481,312.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,936,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.45 % (700,064.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,391.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02068926 BTC (40,073.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5264 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004270 BTC for 82.71 CZK @ 1,936,945 CZK\nFees are 0.29048967 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.306400308755421598176872750 CZK)\nThe limits being 0.03 % (10.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60991718 BTC (481,312.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,936,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.45 % (700,064.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,391.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02068926 BTC (40,073.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5264 transactions" + } + ] + }, + { + "id": 6973, + "type": "message", + "date": "2025-04-01T14:00:05", + "date_unixtime": "1743508805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004239 BTC for 82.71 CZK @ 1,951,057 CZK\nFees are 0.29048164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.461622050118757502786014460 CZK)\nThe limits being 0.03 % (10.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.60995957 BTC (481,395.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,951,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.21 % (708,670.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,308.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02073165 BTC (40,448.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5265 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004239 BTC for 82.71 CZK @ 1,951,057 CZK\nFees are 0.29048164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.461622050118757502786014460 CZK)\nThe limits being 0.03 % (10.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.60995957 BTC (481,395.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,951,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.21 % (708,670.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,308.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02073165 BTC (40,448.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5265 transactions" + } + ] + }, + { + "id": 6974, + "type": "message", + "date": "2025-04-01T18:00:04", + "date_unixtime": "1743523204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004188 BTC for 82.70 CZK @ 1,974,577 CZK\nFees are 0.29044651 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.720347003491599839910837380 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61000145 BTC (481,478.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,974,577 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.17 % (723,016.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,225.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02077353 BTC (41,018.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5266 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004188 BTC for 82.70 CZK @ 1,974,577 CZK\nFees are 0.29044651 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.720347003491599839910837380 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61000145 BTC (481,478.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,974,577 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.17 % (723,016.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,225.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02077353 BTC (41,018.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5266 transactions" + } + ] + }, + { + "id": 6975, + "type": "message", + "date": "2025-04-01T22:00:05", + "date_unixtime": "1743537605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004199 BTC for 82.70 CZK @ 1,969,562 CZK\nFees are 0.29046971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.665176901801067067834619792 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61004344 BTC (481,561.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,969,562 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 149.50 % (719,957.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,142.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02081552 BTC (40,997.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5267 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004199 BTC for 82.70 CZK @ 1,969,562 CZK\nFees are 0.29046971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.665176901801067067834619792 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61004344 BTC (481,561.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,969,562 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 149.50 % (719,957.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,142.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02081552 BTC (40,997.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5267 transactions" + } + ] + }, + { + "id": 6976, + "type": "message", + "date": "2025-04-02T02:00:04", + "date_unixtime": "1743552004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004188 BTC for 82.70 CZK @ 1,974,662 CZK\nFees are 0.29045905 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.721284333152971286266929166 CZK)\nThe limits being 0.03 % (10.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61008532 BTC (481,643.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,470 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,974,662 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 150.13 % (723,068.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,059.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02085740 BTC (41,186.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5268 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004188 BTC for 82.70 CZK @ 1,974,662 CZK\nFees are 0.29045905 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.721284333152971286266929166 CZK)\nThe limits being 0.03 % (10.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61008532 BTC (481,643.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,470 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,974,662 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 150.13 % (723,068.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,059.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02085740 BTC (41,186.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5268 transactions" + } + ] + }, + { + "id": 6977, + "type": "message", + "date": "2025-04-02T06:00:05", + "date_unixtime": "1743566405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004216 BTC for 82.69 CZK @ 1,961,425 CZK\nFees are 0.29044092 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.575678491030917405778068979 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61012748 BTC (481,726.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,961,425 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.42 % (714,992.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,976.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02089956 BTC (40,992.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5269 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004216 BTC for 82.69 CZK @ 1,961,425 CZK\nFees are 0.29044092 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.575678491030917405778068979 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61012748 BTC (481,726.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,961,425 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.42 % (714,992.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,976.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02089956 BTC (40,992.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5269 transactions" + } + ] + }, + { + "id": 6978, + "type": "message", + "date": "2025-04-02T10:00:05", + "date_unixtime": "1743580805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004221 BTC for 82.54 CZK @ 1,955,495 CZK\nFees are 0.28990616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.510443370732641865765485336 CZK)\nThe limits being 0.03 % (10.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61016969 BTC (481,809.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,955,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 147.65 % (711,373.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,893.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02094177 BTC (40,951.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.43 CZK over 5270 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004221 BTC for 82.54 CZK @ 1,955,495 CZK\nFees are 0.28990616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.510443370732641865765485336 CZK)\nThe limits being 0.03 % (10.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61016969 BTC (481,809.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,955,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 147.65 % (711,373.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,893.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02094177 BTC (40,951.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.43 CZK over 5270 transactions" + } + ] + }, + { + "id": 6979, + "type": "message", + "date": "2025-04-02T14:00:06", + "date_unixtime": "1743595206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004218 BTC for 82.69 CZK @ 1,960,495 CZK\nFees are 0.29044088 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.565445057991671161366700663 CZK)\nThe limits being 0.03 % (10.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61021187 BTC (481,892.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,960,495 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.25 % (714,424.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,810.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02098395 BTC (41,138.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.42 CZK over 5271 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004218 BTC for 82.69 CZK @ 1,960,495 CZK\nFees are 0.29044088 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.565445057991671161366700663 CZK)\nThe limits being 0.03 % (10.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61021187 BTC (481,892.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,960,495 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.25 % (714,424.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,810.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02098395 BTC (41,138.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.42 CZK over 5271 transactions" + } + ] + }, + { + "id": 6980, + "type": "message", + "date": "2025-04-02T18:00:06", + "date_unixtime": "1743609606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004139 BTC for 82.70 CZK @ 1,998,037 CZK\nFees are 0.29045873 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.978410315767247588261091014 CZK)\nThe limits being 0.03 % (10.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61025326 BTC (481,975.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,796 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,998,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.98 % (737,333.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,727.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02102534 BTC (42,009.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.42 CZK over 5272 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004139 BTC for 82.70 CZK @ 1,998,037 CZK\nFees are 0.29045873 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.978410315767247588261091014 CZK)\nThe limits being 0.03 % (10.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61025326 BTC (481,975.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,796 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,998,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.98 % (737,333.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,727.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02102534 BTC (42,009.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.42 CZK over 5272 transactions" + } + ] + }, + { + "id": 6981, + "type": "message", + "date": "2025-04-02T22:00:04", + "date_unixtime": "1743624004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004129 BTC for 82.71 CZK @ 2,003,111 CZK\nFees are 0.29049275 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (22.034220008126075567675885672 CZK)\nThe limits being 0.03 % (10.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61029455 BTC (482,058.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,879 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,003,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.60 % (740,428.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,644.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02106663 BTC (42,198.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.42 CZK over 5273 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004129 BTC for 82.71 CZK @ 2,003,111 CZK\nFees are 0.29049275 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (22.034220008126075567675885672 CZK)\nThe limits being 0.03 % (10.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61029455 BTC (482,058.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,879 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,003,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.60 % (740,428.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,644.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02106663 BTC (42,198.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.42 CZK over 5273 transactions" + } + ] + }, + { + "id": 6982, + "type": "message", + "date": "2025-04-03T02:00:04", + "date_unixtime": "1743638404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004364 BTC for 82.70 CZK @ 1,895,010 CZK\nFees are 0.29045692 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.845112969638346447379177461 CZK)\nThe limits being 0.03 % (10.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61033819 BTC (482,141.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 789,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,895,010 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.89 % (674,455.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,561.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02111027 BTC (40,004.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.42 CZK over 5274 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004364 BTC for 82.70 CZK @ 1,895,010 CZK\nFees are 0.29045692 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.845112969638346447379177461 CZK)\nThe limits being 0.03 % (10.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61033819 BTC (482,141.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 789,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,895,010 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.89 % (674,455.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,561.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02111027 BTC (40,004.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.42 CZK over 5274 transactions" + } + ] + }, + { + "id": 6983, + "type": "message", + "date": "2025-04-03T06:00:04", + "date_unixtime": "1743652804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004319 BTC for 82.70 CZK @ 1,914,753 CZK\nFees are 0.29045674 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.062286665575325444066858839 CZK)\nThe limits being 0.03 % (10.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61038138 BTC (482,224.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,914,753 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.36 % (686,505.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,478.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02115346 BTC (40,503.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.42 CZK over 5275 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004319 BTC for 82.70 CZK @ 1,914,753 CZK\nFees are 0.29045674 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.062286665575325444066858839 CZK)\nThe limits being 0.03 % (10.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61038138 BTC (482,224.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,914,753 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.36 % (686,505.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,478.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02115346 BTC (40,503.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.42 CZK over 5275 transactions" + } + ] + }, + { + "id": 6984, + "type": "message", + "date": "2025-04-03T10:00:04", + "date_unixtime": "1743667204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004329 BTC for 82.69 CZK @ 1,910,203 CZK\nFees are 0.29043740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.012233279157045973189470948 CZK)\nThe limits being 0.03 % (10.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61042467 BTC (482,307.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,910,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.76 % (683,727.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,395.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02119675 BTC (40,490.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.42 CZK over 5276 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004329 BTC for 82.69 CZK @ 1,910,203 CZK\nFees are 0.29043740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.012233279157045973189470948 CZK)\nThe limits being 0.03 % (10.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61042467 BTC (482,307.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,910,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.76 % (683,727.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,395.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02119675 BTC (40,490.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.42 CZK over 5276 transactions" + } + ] + }, + { + "id": 6985, + "type": "message", + "date": "2025-04-03T14:00:04", + "date_unixtime": "1743681604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004395 BTC for 82.69 CZK @ 1,881,530 CZK\nFees are 0.29043931 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.696827467912363610185737858 CZK)\nThe limits being 0.03 % (9.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61046862 BTC (482,390.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,197 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,881,530 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.11 % (666,224.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,312.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02124070 BTC (39,965.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.41 CZK over 5277 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004395 BTC for 82.69 CZK @ 1,881,530 CZK\nFees are 0.29043931 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.696827467912363610185737858 CZK)\nThe limits being 0.03 % (9.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61046862 BTC (482,390.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,197 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,881,530 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.11 % (666,224.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,312.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02124070 BTC (39,965.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.41 CZK over 5277 transactions" + } + ] + }, + { + "id": 6986, + "type": "message", + "date": "2025-04-03T18:00:04", + "date_unixtime": "1743696004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004439 BTC for 82.71 CZK @ 1,863,252 CZK\nFees are 0.29049740 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.495775835712649340733878823 CZK)\nThe limits being 0.03 % (9.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61051301 BTC (482,473.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,276 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,863,252 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.77 % (655,066.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,229.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02128509 BTC (39,659.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.41 CZK over 5278 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004439 BTC for 82.71 CZK @ 1,863,252 CZK\nFees are 0.29049740 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.495775835712649340733878823 CZK)\nThe limits being 0.03 % (9.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61051301 BTC (482,473.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,276 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,863,252 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.77 % (655,066.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,229.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02128509 BTC (39,659.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.41 CZK over 5278 transactions" + } + ] + }, + { + "id": 6987, + "type": "message", + "date": "2025-04-03T22:00:05", + "date_unixtime": "1743710405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004423 BTC for 82.70 CZK @ 1,869,714 CZK\nFees are 0.29045418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.566858481861078357784831994 CZK)\nThe limits being 0.03 % (9.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61055724 BTC (482,556.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,355 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,869,714 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.57 % (659,010.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,146.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02132932 BTC (39,879.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.41 CZK over 5279 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004423 BTC for 82.70 CZK @ 1,869,714 CZK\nFees are 0.29045418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.566858481861078357784831994 CZK)\nThe limits being 0.03 % (9.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61055724 BTC (482,556.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,355 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,869,714 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.57 % (659,010.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,146.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02132932 BTC (39,879.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.41 CZK over 5279 transactions" + } + ] + }, + { + "id": 6988, + "type": "message", + "date": "2025-04-04T02:00:04", + "date_unixtime": "1743724804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004368 BTC for 82.70 CZK @ 1,893,338 CZK\nFees are 0.29046665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.826721653014814449792028268 CZK)\nThe limits being 0.03 % (10.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61060092 BTC (482,639.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,434 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,893,338 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.53 % (673,434.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,063.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02137300 BTC (40,466.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.41 CZK over 5280 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004368 BTC for 82.70 CZK @ 1,893,338 CZK\nFees are 0.29046665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.826721653014814449792028268 CZK)\nThe limits being 0.03 % (10.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61060092 BTC (482,639.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,434 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,893,338 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.53 % (673,434.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,063.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02137300 BTC (40,466.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.41 CZK over 5280 transactions" + } + ] + }, + { + "id": 6989, + "type": "message", + "date": "2025-04-04T06:00:04", + "date_unixtime": "1743739204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004395 BTC for 82.70 CZK @ 1,881,615 CZK\nFees are 0.29045246 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.697764796137296481654368981 CZK)\nThe limits being 0.03 % (10.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61064487 BTC (482,722.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,881,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.02 % (666,275.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,980.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02141695 BTC (40,298.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.41 CZK over 5281 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004395 BTC for 82.70 CZK @ 1,881,615 CZK\nFees are 0.29045246 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.697764796137296481654368981 CZK)\nThe limits being 0.03 % (10.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61064487 BTC (482,722.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,881,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.02 % (666,275.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,980.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02141695 BTC (40,298.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.41 CZK over 5281 transactions" + } + ] + }, + { + "id": 6990, + "type": "message", + "date": "2025-04-04T10:00:06", + "date_unixtime": "1743753606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004303 BTC for 82.70 CZK @ 1,921,885 CZK\nFees are 0.29045856 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.140735618919651542631234555 CZK)\nThe limits being 0.03 % (10.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61068790 BTC (482,805.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,921,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.09 % (690,866.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,897.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02145998 BTC (41,243.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.41 CZK over 5282 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004303 BTC for 82.70 CZK @ 1,921,885 CZK\nFees are 0.29045856 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.140735618919651542631234555 CZK)\nThe limits being 0.03 % (10.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61068790 BTC (482,805.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,921,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.09 % (690,866.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,897.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02145998 BTC (41,243.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.41 CZK over 5282 transactions" + } + ] + }, + { + "id": 6991, + "type": "message", + "date": "2025-04-04T14:00:05", + "date_unixtime": "1743768005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004383 BTC for 82.70 CZK @ 1,886,827 CZK\nFees are 0.29046176 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.755096270741203415242635262 CZK)\nThe limits being 0.03 % (10.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61073173 BTC (482,888.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,672 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,886,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.64 % (669,456.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,814.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02150381 BTC (40,573.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.40 CZK over 5283 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004383 BTC for 82.70 CZK @ 1,886,827 CZK\nFees are 0.29046176 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.755096270741203415242635262 CZK)\nThe limits being 0.03 % (10.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61073173 BTC (482,888.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,672 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,886,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.64 % (669,456.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,814.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02150381 BTC (40,573.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.40 CZK over 5283 transactions" + } + ] + }, + { + "id": 6992, + "type": "message", + "date": "2025-04-04T18:00:04", + "date_unixtime": "1743782404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004345 BTC for 82.70 CZK @ 1,903,323 CZK\nFees are 0.29046090 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.936552203994878684099323256 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61077518 BTC (482,971.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,903,323 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.70 % (679,530.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,731.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02154726 BTC (41,011.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.40 CZK over 5284 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004345 BTC for 82.70 CZK @ 1,903,323 CZK\nFees are 0.29046090 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.936552203994878684099323256 CZK)\nThe limits being 0.03 % (10.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61077518 BTC (482,971.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,903,323 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.70 % (679,530.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,731.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02154726 BTC (41,011.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.40 CZK over 5284 transactions" + } + ] + }, + { + "id": 6993, + "type": "message", + "date": "2025-04-04T22:00:04", + "date_unixtime": "1743796804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,733 CZK\nFees are 0.29049640 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.392061185334048910168747498 CZK)\nThe limits being 0.03 % (10.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61081771 BTC (483,054.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,944,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.91 % (704,822.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,648.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02158979 BTC (41,986.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.40 CZK over 5285 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004253 BTC for 82.71 CZK @ 1,944,733 CZK\nFees are 0.29049640 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.392061185334048910168747498 CZK)\nThe limits being 0.03 % (10.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61081771 BTC (483,054.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,944,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.91 % (704,822.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,648.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02158979 BTC (41,986.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.40 CZK over 5285 transactions" + } + ] + }, + { + "id": 6994, + "type": "message", + "date": "2025-04-05T02:00:03", + "date_unixtime": "1743811203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004264 BTC for 82.70 CZK @ 1,939,492 CZK\nFees are 0.29046283 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.334409916137795389682078952 CZK)\nThe limits being 0.03 % (10.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61086035 BTC (483,137.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,913 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,939,492 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 145.22 % (701,621.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,565.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02163243 BTC (41,955.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.40 CZK over 5286 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004264 BTC for 82.70 CZK @ 1,939,492 CZK\nFees are 0.29046283 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.334409916137795389682078952 CZK)\nThe limits being 0.03 % (10.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61086035 BTC (483,137.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,913 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,939,492 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 145.22 % (701,621.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,565.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02163243 BTC (41,955.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.40 CZK over 5286 transactions" + } + ] + }, + { + "id": 6995, + "type": "message", + "date": "2025-04-05T06:00:04", + "date_unixtime": "1743825604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004274 BTC for 82.70 CZK @ 1,934,884 CZK\nFees are 0.29045239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.283727968255233962367091876 CZK)\nThe limits being 0.03 % (10.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61090309 BTC (483,220.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 790,994 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,934,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.61 % (698,806.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,483.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02167517 BTC (41,938.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.40 CZK over 5287 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004274 BTC for 82.70 CZK @ 1,934,884 CZK\nFees are 0.29045239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.283727968255233962367091876 CZK)\nThe limits being 0.03 % (10.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61090309 BTC (483,220.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 790,994 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,934,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.61 % (698,806.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,483.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02167517 BTC (41,938.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.40 CZK over 5287 transactions" + } + ] + }, + { + "id": 6996, + "type": "message", + "date": "2025-04-05T10:00:04", + "date_unixtime": "1743840004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004277 BTC for 82.70 CZK @ 1,933,708 CZK\nFees are 0.29047962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.270792821104623413563400208 CZK)\nThe limits being 0.03 % (10.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61094586 BTC (483,303.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,074 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,933,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.44 % (698,087.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,400.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02171794 BTC (41,996.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.40 CZK over 5288 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004277 BTC for 82.70 CZK @ 1,933,708 CZK\nFees are 0.29047962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.270792821104623413563400208 CZK)\nThe limits being 0.03 % (10.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61094586 BTC (483,303.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,074 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,933,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.44 % (698,087.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,400.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02171794 BTC (41,996.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.40 CZK over 5288 transactions" + } + ] + }, + { + "id": 6997, + "type": "message", + "date": "2025-04-05T14:00:03", + "date_unixtime": "1743854403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004277 BTC for 82.69 CZK @ 1,933,469 CZK\nFees are 0.29044363 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.268157272086858958340687183 CZK)\nThe limits being 0.03 % (10.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61098863 BTC (483,386.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,155 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,933,469 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 144.39 % (697,940.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,317.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02176071 BTC (42,073.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5289 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004277 BTC for 82.69 CZK @ 1,933,469 CZK\nFees are 0.29044363 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.268157272086858958340687183 CZK)\nThe limits being 0.03 % (10.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61098863 BTC (483,386.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,155 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,933,469 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 144.39 % (697,940.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,317.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02176071 BTC (42,073.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5289 transactions" + } + ] + }, + { + "id": 6998, + "type": "message", + "date": "2025-04-05T18:00:04", + "date_unixtime": "1743868804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004322 BTC for 82.71 CZK @ 1,913,667 CZK\nFees are 0.29049353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.050332960505883272498130675 CZK)\nThe limits being 0.03 % (10.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61103185 BTC (483,469.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,235 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,913,667 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.86 % (685,841.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,234.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02180393 BTC (41,725.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5290 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004322 BTC for 82.71 CZK @ 1,913,667 CZK\nFees are 0.29049353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.050332960505883272498130675 CZK)\nThe limits being 0.03 % (10.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61103185 BTC (483,469.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,235 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,913,667 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.86 % (685,841.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,234.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02180393 BTC (41,725.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5290 transactions" + } + ] + }, + { + "id": 6999, + "type": "message", + "date": "2025-04-05T22:00:04", + "date_unixtime": "1743883204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004311 BTC for 82.70 CZK @ 1,918,240 CZK\nFees are 0.29044666 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.100639976505335015684491892 CZK)\nThe limits being 0.03 % (10.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61107496 BTC (483,552.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.41 % (688,635.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,151.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02184704 BTC (41,907.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5291 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004311 BTC for 82.70 CZK @ 1,918,240 CZK\nFees are 0.29044666 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.100639976505335015684491892 CZK)\nThe limits being 0.03 % (10.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61107496 BTC (483,552.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.41 % (688,635.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,151.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02184704 BTC (41,907.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5291 transactions" + } + ] + }, + { + "id": 7000, + "type": "message", + "date": "2025-04-06T02:00:04", + "date_unixtime": "1743897604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004286 BTC for 82.69 CZK @ 1,929,366 CZK\nFees are 0.29043713 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.223022106481723673163526351 CZK)\nThe limits being 0.03 % (10.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61111782 BTC (483,635.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,929,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.79 % (695,434.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,068.06 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02188990 BTC (42,233.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5292 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004286 BTC for 82.69 CZK @ 1,929,366 CZK\nFees are 0.29043713 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.223022106481723673163526351 CZK)\nThe limits being 0.03 % (10.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61111782 BTC (483,635.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,929,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.79 % (695,434.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,068.06 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02188990 BTC (42,233.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5292 transactions" + } + ] + }, + { + "id": 7001, + "type": "message", + "date": "2025-04-06T06:00:05", + "date_unixtime": "1743912005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004290 BTC for 82.69 CZK @ 1,927,618 CZK\nFees are 0.29044490 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.203801341458740561879575333 CZK)\nThe limits being 0.03 % (10.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61116072 BTC (483,718.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,927,618 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 143.55 % (694,366.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,985.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02193280 BTC (42,278.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5293 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004290 BTC for 82.69 CZK @ 1,927,618 CZK\nFees are 0.29044490 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.203801341458740561879575333 CZK)\nThe limits being 0.03 % (10.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61116072 BTC (483,718.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,927,618 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 143.55 % (694,366.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,985.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02193280 BTC (42,278.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5293 transactions" + } + ] + }, + { + "id": 7002, + "type": "message", + "date": "2025-04-06T10:00:04", + "date_unixtime": "1743926404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004302 BTC for 82.71 CZK @ 1,922,506 CZK\nFees are 0.29048482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.147561582114852780493748402 CZK)\nThe limits being 0.03 % (10.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61120374 BTC (483,801.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,555 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,922,506 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.88 % (691,241.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,902.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02197582 BTC (42,248.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5294 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004302 BTC for 82.71 CZK @ 1,922,506 CZK\nFees are 0.29048482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.147561582114852780493748402 CZK)\nThe limits being 0.03 % (10.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61120374 BTC (483,801.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,555 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,922,506 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.88 % (691,241.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,902.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02197582 BTC (42,248.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5294 transactions" + } + ] + }, + { + "id": 7003, + "type": "message", + "date": "2025-04-06T14:00:04", + "date_unixtime": "1743940804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004313 BTC for 82.70 CZK @ 1,917,565 CZK\nFees are 0.29047920 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.093218534110441879112880019 CZK)\nThe limits being 0.03 % (10.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61124687 BTC (483,884.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,635 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,917,565 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.23 % (688,221.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,819.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02201895 BTC (42,222.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.39 CZK over 5295 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004313 BTC for 82.70 CZK @ 1,917,565 CZK\nFees are 0.29047920 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.093218534110441879112880019 CZK)\nThe limits being 0.03 % (10.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61124687 BTC (483,884.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,635 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,917,565 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.23 % (688,221.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,819.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02201895 BTC (42,222.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.39 CZK over 5295 transactions" + } + ] + }, + { + "id": 7004, + "type": "message", + "date": "2025-04-06T18:00:04", + "date_unixtime": "1743955204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004327 BTC for 82.71 CZK @ 1,911,444 CZK\nFees are 0.29049183 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.025885204188851844981206866 CZK)\nThe limits being 0.03 % (10.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61129014 BTC (483,967.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,911,444 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.43 % (684,479.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,736.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02206222 BTC (42,170.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.38 CZK over 5296 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004327 BTC for 82.71 CZK @ 1,911,444 CZK\nFees are 0.29049183 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (21.025885204188851844981206866 CZK)\nThe limits being 0.03 % (10.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61129014 BTC (483,967.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,911,444 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.43 % (684,479.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,736.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02206222 BTC (42,170.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.38 CZK over 5296 transactions" + } + ] + }, + { + "id": 7005, + "type": "message", + "date": "2025-04-06T22:00:05", + "date_unixtime": "1743969605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004485 BTC for 82.71 CZK @ 1,844,038 CZK\nFees are 0.29048094 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.284413582339181871254400013 CZK)\nThe limits being 0.03 % (10.19 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61133499 BTC (484,050.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,844,038 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.89 % (643,274.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,653.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02210707 BTC (40,766.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.38 CZK over 5297 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004485 BTC for 82.71 CZK @ 1,844,038 CZK\nFees are 0.29048094 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.284413582339181871254400013 CZK)\nThe limits being 0.03 % (10.19 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61133499 BTC (484,050.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,844,038 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.89 % (643,274.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,653.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02210707 BTC (40,766.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.38 CZK over 5297 transactions" + } + ] + }, + { + "id": 7006, + "type": "message", + "date": "2025-04-07T02:00:04", + "date_unixtime": "1743984004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004578 BTC for 82.69 CZK @ 1,806,343 CZK\nFees are 0.29044333 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.869772159825930344710942893 CZK)\nThe limits being 0.03 % (10.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61138077 BTC (484,133.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,806,343 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.11 % (620,229.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,570.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02215285 BTC (40,015.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.38 CZK over 5298 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004578 BTC for 82.69 CZK @ 1,806,343 CZK\nFees are 0.29044333 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.869772159825930344710942893 CZK)\nThe limits being 0.03 % (10.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61138077 BTC (484,133.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,806,343 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.11 % (620,229.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,570.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02215285 BTC (40,015.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.38 CZK over 5298 transactions" + } + ] + }, + { + "id": 7007, + "type": "message", + "date": "2025-04-07T06:00:04", + "date_unixtime": "1743998404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004594 BTC for 82.70 CZK @ 1,800,215 CZK\nFees are 0.29046962 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.802361640440434968684918414 CZK)\nThe limits being 0.03 % (9.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61142671 BTC (484,216.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 791,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,800,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.32 % (616,482.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,487.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02219879 BTC (39,962.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.38 CZK over 5299 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004594 BTC for 82.70 CZK @ 1,800,215 CZK\nFees are 0.29046962 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.802361640440434968684918414 CZK)\nThe limits being 0.03 % (9.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61142671 BTC (484,216.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 791,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,800,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.32 % (616,482.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,487.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02219879 BTC (39,962.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.38 CZK over 5299 transactions" + } + ] + }, + { + "id": 7008, + "type": "message", + "date": "2025-04-07T10:00:04", + "date_unixtime": "1744012804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004782 BTC for 82.70 CZK @ 1,729,298 CZK\nFees are 0.29044570 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.022283073650420933674839860 CZK)\nThe limits being 0.03 % (9.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61147453 BTC (484,299.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,729,298 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 118.34 % (573,122.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,404.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02224661 BTC (38,471.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.38 CZK over 5300 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004782 BTC for 82.70 CZK @ 1,729,298 CZK\nFees are 0.29044570 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.022283073650420933674839860 CZK)\nThe limits being 0.03 % (9.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61147453 BTC (484,299.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,729,298 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 118.34 % (573,122.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,404.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02224661 BTC (38,471.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.38 CZK over 5300 transactions" + } + ] + }, + { + "id": 7009, + "type": "message", + "date": "2025-04-07T14:00:04", + "date_unixtime": "1744027204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004678 BTC for 82.70 CZK @ 1,767,898 CZK\nFees are 0.29047111 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.446882241355767852277609811 CZK)\nThe limits being 0.03 % (9.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61152131 BTC (484,382.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,767,898 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.19 % (596,725.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,321.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02229339 BTC (39,412.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.38 CZK over 5301 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004678 BTC for 82.70 CZK @ 1,767,898 CZK\nFees are 0.29047111 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.446882241355767852277609811 CZK)\nThe limits being 0.03 % (9.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61152131 BTC (484,382.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,767,898 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.19 % (596,725.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,321.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02229339 BTC (39,412.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.38 CZK over 5301 transactions" + } + ] + }, + { + "id": 7010, + "type": "message", + "date": "2025-04-07T18:00:04", + "date_unixtime": "1744041604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004536 BTC for 82.70 CZK @ 1,823,164 CZK\nFees are 0.29045853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.054800972829664076965189738 CZK)\nThe limits being 0.03 % (10.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61156667 BTC (484,465.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,823,164 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.15 % (630,520.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,238.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02233875 BTC (40,727.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.37 CZK over 5302 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004536 BTC for 82.70 CZK @ 1,823,164 CZK\nFees are 0.29045853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.054800972829664076965189738 CZK)\nThe limits being 0.03 % (10.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61156667 BTC (484,465.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,823,164 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.15 % (630,520.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,238.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02233875 BTC (40,727.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.37 CZK over 5302 transactions" + } + ] + }, + { + "id": 7011, + "type": "message", + "date": "2025-04-07T22:00:04", + "date_unixtime": "1744056004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004565 BTC for 82.54 CZK @ 1,808,011 CZK\nFees are 0.28988608 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.888125442877639106500741380 CZK)\nThe limits being 0.03 % (10.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61161232 BTC (484,548.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,808,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 128.21 % (621,253.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,155.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02238440 BTC (40,471.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.37 CZK over 5303 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004565 BTC for 82.54 CZK @ 1,808,011 CZK\nFees are 0.28988608 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.888125442877639106500741380 CZK)\nThe limits being 0.03 % (10.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61161232 BTC (484,548.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,808,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 128.21 % (621,253.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,155.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02238440 BTC (40,471.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.37 CZK over 5303 transactions" + } + ] + }, + { + "id": 7012, + "type": "message", + "date": "2025-04-08T02:00:05", + "date_unixtime": "1744070405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004502 BTC for 82.70 CZK @ 1,836,916 CZK\nFees are 0.29045589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.206074903320386643194842043 CZK)\nThe limits being 0.03 % (10.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61165734 BTC (484,631.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,325 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,836,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.84 % (638,931.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,072.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02242942 BTC (41,200.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.37 CZK over 5304 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004502 BTC for 82.70 CZK @ 1,836,916 CZK\nFees are 0.29045589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.206074903320386643194842043 CZK)\nThe limits being 0.03 % (10.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61165734 BTC (484,631.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,325 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,836,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.84 % (638,931.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,072.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02242942 BTC (41,200.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.37 CZK over 5304 transactions" + } + ] + }, + { + "id": 7013, + "type": "message", + "date": "2025-04-08T06:00:04", + "date_unixtime": "1744084804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004477 BTC for 82.70 CZK @ 1,847,126 CZK\nFees are 0.29044848 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.318389014371077151346209641 CZK)\nThe limits being 0.03 % (10.38 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61170211 BTC (484,714.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,847,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.10 % (645,176.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,989.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02247419 BTC (41,512.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.37 CZK over 5305 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004477 BTC for 82.70 CZK @ 1,847,126 CZK\nFees are 0.29044848 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.318389014371077151346209641 CZK)\nThe limits being 0.03 % (10.38 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61170211 BTC (484,714.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,847,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.10 % (645,176.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,989.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02247419 BTC (41,512.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.37 CZK over 5305 transactions" + } + ] + }, + { + "id": 7014, + "type": "message", + "date": "2025-04-08T10:00:05", + "date_unixtime": "1744099205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004499 BTC for 82.71 CZK @ 1,838,301 CZK\nFees are 0.29048126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.221314774816260447845742834 CZK)\nThe limits being 0.03 % (10.35 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61174710 BTC (484,797.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,838,301 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.97 % (639,778.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,906.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02251918 BTC (41,397.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.37 CZK over 5306 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004499 BTC for 82.71 CZK @ 1,838,301 CZK\nFees are 0.29048126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.221314774816260447845742834 CZK)\nThe limits being 0.03 % (10.35 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61174710 BTC (484,797.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,838,301 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.97 % (639,778.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,906.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02251918 BTC (41,397.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.37 CZK over 5306 transactions" + } + ] + }, + { + "id": 7015, + "type": "message", + "date": "2025-04-08T14:00:04", + "date_unixtime": "1744113604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004480 BTC for 82.70 CZK @ 1,846,064 CZK\nFees are 0.29047590 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.306699963965406790518898141 CZK)\nThe limits being 0.03 % (10.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61179190 BTC (484,880.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,557 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,846,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.92 % (644,526.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,823.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02256398 BTC (41,654.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.37 CZK over 5307 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004480 BTC for 82.70 CZK @ 1,846,064 CZK\nFees are 0.29047590 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (20.306699963965406790518898141 CZK)\nThe limits being 0.03 % (10.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61179190 BTC (484,880.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,557 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,846,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.92 % (644,526.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,823.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02256398 BTC (41,654.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.37 CZK over 5307 transactions" + } + ] + }, + { + "id": 7016, + "type": "message", + "date": "2025-04-08T18:00:05", + "date_unixtime": "1744128005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004553 BTC for 82.71 CZK @ 1,816,501 CZK\nFees are 0.29048168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.981512844950426636576506717 CZK)\nThe limits being 0.03 % (10.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61183743 BTC (484,963.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,634 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,816,501 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 129.17 % (626,440.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,740.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02260951 BTC (41,070.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5308 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004553 BTC for 82.71 CZK @ 1,816,501 CZK\nFees are 0.29048168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.981512844950426636576506717 CZK)\nThe limits being 0.03 % (10.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61183743 BTC (484,963.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,634 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,816,501 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 129.17 % (626,440.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,740.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02260951 BTC (41,070.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5308 transactions" + } + ] + }, + { + "id": 7017, + "type": "message", + "date": "2025-04-08T22:00:04", + "date_unixtime": "1744142404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004661 BTC for 82.70 CZK @ 1,774,307 CZK\nFees are 0.29046470 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.517380435371714981260075897 CZK)\nThe limits being 0.03 % (10.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61188404 BTC (485,046.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,774,307 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 123.83 % (600,624.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,657.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02265612 BTC (40,198.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5309 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004661 BTC for 82.70 CZK @ 1,774,307 CZK\nFees are 0.29046470 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.517380435371714981260075897 CZK)\nThe limits being 0.03 % (10.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61188404 BTC (485,046.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,774,307 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 123.83 % (600,624.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,657.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02265612 BTC (40,198.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5309 transactions" + } + ] + }, + { + "id": 7018, + "type": "message", + "date": "2025-04-09T02:00:04", + "date_unixtime": "1744156804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004702 BTC for 82.70 CZK @ 1,758,877 CZK\nFees are 0.29047149 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.347646632151146020828419120 CZK)\nThe limits being 0.03 % (9.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61193106 BTC (485,129.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,758,877 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 121.86 % (591,182.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,574.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02270314 BTC (39,932.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5310 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004702 BTC for 82.70 CZK @ 1,758,877 CZK\nFees are 0.29047149 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.347646632151146020828419120 CZK)\nThe limits being 0.03 % (9.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61193106 BTC (485,129.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,758,877 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 121.86 % (591,182.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,574.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02270314 BTC (39,932.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5310 transactions" + } + ] + }, + { + "id": 7019, + "type": "message", + "date": "2025-04-09T06:00:04", + "date_unixtime": "1744171204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004802 BTC for 82.71 CZK @ 1,722,330 CZK\nFees are 0.29048518 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (18.945631588067336998555866628 CZK)\nThe limits being 0.03 % (9.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61197908 BTC (485,212.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,858 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,722,330 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 117.23 % (568,817.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,491.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02275116 BTC (39,185.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5311 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004802 BTC for 82.71 CZK @ 1,722,330 CZK\nFees are 0.29048518 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (18.945631588067336998555866628 CZK)\nThe limits being 0.03 % (9.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61197908 BTC (485,212.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,858 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,722,330 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 117.23 % (568,817.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,491.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02275116 BTC (39,185.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5311 transactions" + } + ] + }, + { + "id": 7020, + "type": "message", + "date": "2025-04-09T10:00:05", + "date_unixtime": "1744185605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004642 BTC for 82.70 CZK @ 1,781,479 CZK\nFees are 0.29044994 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.596270484583578328929316114 CZK)\nThe limits being 0.03 % (10.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61202550 BTC (485,295.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 792,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,781,479 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 124.67 % (605,015.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,408.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02279758 BTC (40,613.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5312 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004642 BTC for 82.70 CZK @ 1,781,479 CZK\nFees are 0.29044994 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.05 % (19.596270484583578328929316114 CZK)\nThe limits being 0.03 % (10.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61202550 BTC (485,295.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 792,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,781,479 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 124.67 % (605,015.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,408.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02279758 BTC (40,613.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5312 transactions" + } + ] + }, + { + "id": 7021, + "type": "message", + "date": "2025-04-09T14:00:05", + "date_unixtime": "1744200005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004737 BTC for 82.70 CZK @ 1,745,807 CZK\nFees are 0.29045921 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.203882365909731813678513212 CZK)\nThe limits being 0.03 % (11.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61207287 BTC (485,378.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,745,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 120.15 % (583,183.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,325.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02559495 BTC (44,683.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5313 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004737 BTC for 82.70 CZK @ 1,745,807 CZK\nFees are 0.29045921 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.203882365909731813678513212 CZK)\nThe limits being 0.03 % (11.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61207287 BTC (485,378.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,745,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 120.15 % (583,183.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,325.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02559495 BTC (44,683.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5313 transactions" + } + ] + }, + { + "id": 7022, + "type": "message", + "date": "2025-04-09T18:00:05", + "date_unixtime": "1744214405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004679 BTC for 82.70 CZK @ 1,767,370 CZK\nFees are 0.29044638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.441070799327806832955781076 CZK)\nThe limits being 0.03 % (11.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61211966 BTC (485,461.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,082 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,767,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 122.85 % (596,380.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,242.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02564174 BTC (45,318.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.36 CZK over 5314 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004679 BTC for 82.70 CZK @ 1,767,370 CZK\nFees are 0.29044638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.441070799327806832955781076 CZK)\nThe limits being 0.03 % (11.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61211966 BTC (485,461.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,082 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,767,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 122.85 % (596,380.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,242.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02564174 BTC (45,318.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.36 CZK over 5314 transactions" + } + ] + }, + { + "id": 7023, + "type": "message", + "date": "2025-04-09T22:00:05", + "date_unixtime": "1744228805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004370 BTC for 82.70 CZK @ 1,892,543 CZK\nFees are 0.29047760 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.817974527141275558428794412 CZK)\nThe limits being 0.03 % (12.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61216336 BTC (485,544.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,892,543 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.61 % (673,001.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,159.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02568544 BTC (48,610.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.35 CZK over 5315 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004370 BTC for 82.70 CZK @ 1,892,543 CZK\nFees are 0.29047760 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.817974527141275558428794412 CZK)\nThe limits being 0.03 % (12.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61216336 BTC (485,544.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,892,543 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.61 % (673,001.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,159.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02568544 BTC (48,610.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.35 CZK over 5315 transactions" + } + ] + }, + { + "id": 7024, + "type": "message", + "date": "2025-04-10T02:00:04", + "date_unixtime": "1744243204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004358 BTC for 82.70 CZK @ 1,897,575 CZK\nFees are 0.29045009 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.873321069922092318921407018 CZK)\nThe limits being 0.03 % (12.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61220694 BTC (485,627.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,897,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.22 % (676,081.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,076.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02572902 BTC (48,822.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.35 CZK over 5316 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004358 BTC for 82.70 CZK @ 1,897,575 CZK\nFees are 0.29045009 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.873321069922092318921407018 CZK)\nThe limits being 0.03 % (12.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61220694 BTC (485,627.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,897,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.22 % (676,081.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,076.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02572902 BTC (48,822.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.35 CZK over 5316 transactions" + } + ] + }, + { + "id": 7025, + "type": "message", + "date": "2025-04-10T06:00:05", + "date_unixtime": "1744257605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004418 BTC for 82.70 CZK @ 1,871,984 CZK\nFees are 0.29047802 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.591824524530823872895747635 CZK)\nThe limits being 0.03 % (12.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61225112 BTC (485,710.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,319 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.97 % (660,414.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,993.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02577320 BTC (48,247.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.35 CZK over 5317 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004418 BTC for 82.70 CZK @ 1,871,984 CZK\nFees are 0.29047802 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.591824524530823872895747635 CZK)\nThe limits being 0.03 % (12.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61225112 BTC (485,710.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,319 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.97 % (660,414.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,993.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02577320 BTC (48,247.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.35 CZK over 5317 transactions" + } + ] + }, + { + "id": 7026, + "type": "message", + "date": "2025-04-10T10:00:05", + "date_unixtime": "1744272005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004423 BTC for 82.69 CZK @ 1,869,647 CZK\nFees are 0.29044375 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.566119645901339433619230724 CZK)\nThe limits being 0.03 % (12.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61229535 BTC (485,793.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,869,647 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.65 % (658,983.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,910.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02581743 BTC (48,269.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.35 CZK over 5318 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004423 BTC for 82.69 CZK @ 1,869,647 CZK\nFees are 0.29044375 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.566119645901339433619230724 CZK)\nThe limits being 0.03 % (12.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61229535 BTC (485,793.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,869,647 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.65 % (658,983.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,910.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02581743 BTC (48,269.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.35 CZK over 5318 transactions" + } + ] + }, + { + "id": 7027, + "type": "message", + "date": "2025-04-10T14:00:04", + "date_unixtime": "1744286404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004436 BTC for 82.70 CZK @ 1,864,239 CZK\nFees are 0.29045476 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.506626801460892287274071859 CZK)\nThe limits being 0.03 % (12.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61233971 BTC (485,876.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,864,239 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.95 % (655,671.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,827.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02586179 BTC (48,212.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.35 CZK over 5319 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004436 BTC for 82.70 CZK @ 1,864,239 CZK\nFees are 0.29045476 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.506626801460892287274071859 CZK)\nThe limits being 0.03 % (12.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61233971 BTC (485,876.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,864,239 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.95 % (655,671.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,827.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02586179 BTC (48,212.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.35 CZK over 5319 transactions" + } + ] + }, + { + "id": 7028, + "type": "message", + "date": "2025-04-10T18:00:04", + "date_unixtime": "1744300804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004628 BTC for 82.70 CZK @ 1,787,001 CZK\nFees are 0.29047150 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.657009426815997078505266140 CZK)\nThe limits being 0.03 % (11.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61238599 BTC (485,959.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,787,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.19 % (608,375.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,744.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02590807 BTC (46,297.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.35 CZK over 5320 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004628 BTC for 82.70 CZK @ 1,787,001 CZK\nFees are 0.29047150 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.657009426815997078505266140 CZK)\nThe limits being 0.03 % (11.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61238599 BTC (485,959.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,787,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.19 % (608,375.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,744.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02590807 BTC (46,297.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.35 CZK over 5320 transactions" + } + ] + }, + { + "id": 7029, + "type": "message", + "date": "2025-04-10T22:00:05", + "date_unixtime": "1744315205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004611 BTC for 82.71 CZK @ 1,793,681 CZK\nFees are 0.29048644 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.730496047395166580814470973 CZK)\nThe limits being 0.03 % (11.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61243210 BTC (486,042.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,793,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 126.01 % (612,465.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,661.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02595418 BTC (46,553.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 5321 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004611 BTC for 82.71 CZK @ 1,793,681 CZK\nFees are 0.29048644 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.730496047395166580814470973 CZK)\nThe limits being 0.03 % (11.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61243210 BTC (486,042.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,793,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 126.01 % (612,465.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,661.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02595418 BTC (46,553.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 5321 transactions" + } + ] + }, + { + "id": 7030, + "type": "message", + "date": "2025-04-11T02:00:07", + "date_unixtime": "1744329607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004627 BTC for 82.71 CZK @ 1,787,536 CZK\nFees are 0.29049574 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.662898059299475824241263209 CZK)\nThe limits being 0.03 % (11.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61247837 BTC (486,125.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,787,536 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.22 % (608,702.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,578.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02600045 BTC (46,476.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 5322 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004627 BTC for 82.71 CZK @ 1,787,536 CZK\nFees are 0.29049574 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.662898059299475824241263209 CZK)\nThe limits being 0.03 % (11.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61247837 BTC (486,125.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,787,536 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.22 % (608,702.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,578.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02600045 BTC (46,476.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 5322 transactions" + } + ] + }, + { + "id": 7031, + "type": "message", + "date": "2025-04-11T06:00:05", + "date_unixtime": "1744344005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004613 BTC for 82.70 CZK @ 1,792,734 CZK\nFees are 0.29045895 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.720075150586647146865442012 CZK)\nThe limits being 0.03 % (11.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61252450 BTC (486,208.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,792,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 125.85 % (611,885.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,495.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02604658 BTC (46,694.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 5323 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004613 BTC for 82.70 CZK @ 1,792,734 CZK\nFees are 0.29045895 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.720075150586647146865442012 CZK)\nThe limits being 0.03 % (11.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61252450 BTC (486,208.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,792,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 125.85 % (611,885.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,495.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02604658 BTC (46,694.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 5323 transactions" + } + ] + }, + { + "id": 7032, + "type": "message", + "date": "2025-04-11T10:00:06", + "date_unixtime": "1744358406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004579 BTC for 82.70 CZK @ 1,805,965 CZK\nFees are 0.29044599 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.865614829860067183508082053 CZK)\nThe limits being 0.03 % (11.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61257029 BTC (486,291.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,805,965 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 127.49 % (619,989.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,412.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02609237 BTC (47,121.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 5324 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004579 BTC for 82.70 CZK @ 1,805,965 CZK\nFees are 0.29044599 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (19.865614829860067183508082053 CZK)\nThe limits being 0.03 % (11.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61257029 BTC (486,291.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,805,965 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 127.49 % (619,989.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,412.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02609237 BTC (47,121.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 5324 transactions" + } + ] + }, + { + "id": 7033, + "type": "message", + "date": "2025-04-11T14:00:05", + "date_unixtime": "1744372805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004511 BTC for 82.70 CZK @ 1,833,200 CZK\nFees are 0.29044775 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.165196315666172607799105261 CZK)\nThe limits being 0.03 % (11.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61261540 BTC (486,374.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 793,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,833,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 130.90 % (636,672.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,329.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02613748 BTC (47,915.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 5325 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004511 BTC for 82.70 CZK @ 1,833,200 CZK\nFees are 0.29044775 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.165196315666172607799105261 CZK)\nThe limits being 0.03 % (11.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61261540 BTC (486,374.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 793,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,833,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 130.90 % (636,672.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,329.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02613748 BTC (47,915.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 5325 transactions" + } + ] + }, + { + "id": 7034, + "type": "message", + "date": "2025-04-11T18:00:05", + "date_unixtime": "1744387205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004505 BTC for 82.70 CZK @ 1,835,737 CZK\nFees are 0.29046290 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.193106676023484950287755343 CZK)\nThe limits being 0.03 % (12.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61266045 BTC (486,457.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,835,737 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 131.20 % (638,226.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,246.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02618253 BTC (48,064.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.34 CZK over 5326 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004505 BTC for 82.70 CZK @ 1,835,737 CZK\nFees are 0.29046290 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.193106676023484950287755343 CZK)\nThe limits being 0.03 % (12.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61266045 BTC (486,457.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,835,737 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 131.20 % (638,226.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,246.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02618253 BTC (48,064.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.34 CZK over 5326 transactions" + } + ] + }, + { + "id": 7035, + "type": "message", + "date": "2025-04-11T22:00:05", + "date_unixtime": "1744401605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004445 BTC for 82.70 CZK @ 1,860,467 CZK\nFees are 0.29045527 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.465141706838214729885221745 CZK)\nThe limits being 0.03 % (12.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61270490 BTC (486,540.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,860,467 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.29 % (653,377.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,163.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02622698 BTC (48,794.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5327 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004445 BTC for 82.70 CZK @ 1,860,467 CZK\nFees are 0.29045527 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.465141706838214729885221745 CZK)\nThe limits being 0.03 % (12.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61270490 BTC (486,540.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,860,467 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.29 % (653,377.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,163.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02622698 BTC (48,794.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5327 transactions" + } + ] + }, + { + "id": 7036, + "type": "message", + "date": "2025-04-12T02:00:05", + "date_unixtime": "1744416005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004465 BTC for 82.70 CZK @ 1,852,244 CZK\nFees are 0.29047254 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.374683911349470581966476794 CZK)\nThe limits being 0.03 % (12.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61274955 BTC (486,623.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,163 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,852,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.23 % (648,338.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,080.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02627163 BTC (48,661.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5328 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004465 BTC for 82.70 CZK @ 1,852,244 CZK\nFees are 0.29047254 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.374683911349470581966476794 CZK)\nThe limits being 0.03 % (12.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61274955 BTC (486,623.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,163 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,852,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.23 % (648,338.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,080.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02627163 BTC (48,661.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5328 transactions" + } + ] + }, + { + "id": 7037, + "type": "message", + "date": "2025-04-12T06:00:05", + "date_unixtime": "1744430405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004479 BTC for 82.70 CZK @ 1,846,487 CZK\nFees are 0.29047761 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.311353528557616994237516315 CZK)\nThe limits being 0.03 % (12.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61279434 BTC (486,706.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,846,487 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.48 % (644,810.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,997.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02631642 BTC (48,592.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5329 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004479 BTC for 82.70 CZK @ 1,846,487 CZK\nFees are 0.29047761 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.311353528557616994237516315 CZK)\nThe limits being 0.03 % (12.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61279434 BTC (486,706.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,846,487 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.48 % (644,810.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,997.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02631642 BTC (48,592.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5329 transactions" + } + ] + }, + { + "id": 7038, + "type": "message", + "date": "2025-04-12T10:00:04", + "date_unixtime": "1744444804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004437 BTC for 82.69 CZK @ 1,863,731 CZK\nFees are 0.29044103 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.501035906892924572425629072 CZK)\nThe limits being 0.03 % (12.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61283871 BTC (486,789.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,318 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,863,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.63 % (655,377.21 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,914.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02636079 BTC (49,129.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5330 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004437 BTC for 82.69 CZK @ 1,863,731 CZK\nFees are 0.29044103 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.501035906892924572425629072 CZK)\nThe limits being 0.03 % (12.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61283871 BTC (486,789.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,318 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,863,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.63 % (655,377.21 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,914.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02636079 BTC (49,129.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5330 transactions" + } + ] + }, + { + "id": 7039, + "type": "message", + "date": "2025-04-12T14:00:04", + "date_unixtime": "1744459204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004447 BTC for 82.70 CZK @ 1,859,760 CZK\nFees are 0.29047541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.457356360451484790864087230 CZK)\nThe limits being 0.03 % (12.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61288318 BTC (486,872.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,396 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.11 % (652,943.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,831.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02640526 BTC (49,107.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5331 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004447 BTC for 82.70 CZK @ 1,859,760 CZK\nFees are 0.29047541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.457356360451484790864087230 CZK)\nThe limits being 0.03 % (12.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61288318 BTC (486,872.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,396 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.11 % (652,943.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,831.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02640526 BTC (49,107.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5331 transactions" + } + ] + }, + { + "id": 7040, + "type": "message", + "date": "2025-04-12T18:00:04", + "date_unixtime": "1744473604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004380 BTC for 82.69 CZK @ 1,887,938 CZK\nFees are 0.29043382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.767314632575938552964168789 CZK)\nThe limits being 0.03 % (12.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61292698 BTC (486,954.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,475 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,887,938 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.63 % (670,212.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,748.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02644906 BTC (49,934.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5332 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004380 BTC for 82.69 CZK @ 1,887,938 CZK\nFees are 0.29043382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.767314632575938552964168789 CZK)\nThe limits being 0.03 % (12.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61292698 BTC (486,954.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,475 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,887,938 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.63 % (670,212.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,748.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02644906 BTC (49,934.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5332 transactions" + } + ] + }, + { + "id": 7041, + "type": "message", + "date": "2025-04-12T22:00:06", + "date_unixtime": "1744488006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004385 BTC for 82.70 CZK @ 1,885,963 CZK\nFees are 0.29046121 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.745590647329557495175096966 CZK)\nThe limits being 0.03 % (12.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61297083 BTC (487,037.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,885,963 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.36 % (669,002.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,665.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02649291 BTC (49,964.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.33 CZK over 5333 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004385 BTC for 82.70 CZK @ 1,885,963 CZK\nFees are 0.29046121 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.745590647329557495175096966 CZK)\nThe limits being 0.03 % (12.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61297083 BTC (487,037.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,885,963 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.36 % (669,002.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,665.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02649291 BTC (49,964.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.33 CZK over 5333 transactions" + } + ] + }, + { + "id": 7042, + "type": "message", + "date": "2025-04-13T02:00:05", + "date_unixtime": "1744502405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004372 BTC for 82.71 CZK @ 1,891,809 CZK\nFees are 0.29049786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.809902469216844429674547136 CZK)\nThe limits being 0.03 % (12.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61301455 BTC (487,120.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,632 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,891,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.07 % (672,585.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,582.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02653663 BTC (50,202.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.32 CZK over 5334 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004372 BTC for 82.71 CZK @ 1,891,809 CZK\nFees are 0.29049786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.809902469216844429674547136 CZK)\nThe limits being 0.03 % (12.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61301455 BTC (487,120.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,632 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,891,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.07 % (672,585.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,582.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02653663 BTC (50,202.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.32 CZK over 5334 transactions" + } + ] + }, + { + "id": 7043, + "type": "message", + "date": "2025-04-13T06:00:04", + "date_unixtime": "1744516804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004364 BTC for 82.70 CZK @ 1,895,112 CZK\nFees are 0.29047244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.846226738495924210268642701 CZK)\nThe limits being 0.03 % (12.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61305819 BTC (487,203.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,711 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,895,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.47 % (674,609.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,499.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02658027 BTC (50,372.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.32 CZK over 5335 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004364 BTC for 82.70 CZK @ 1,895,112 CZK\nFees are 0.29047244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.846226738495924210268642701 CZK)\nThe limits being 0.03 % (12.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61305819 BTC (487,203.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,711 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,895,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.47 % (674,609.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,499.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02658027 BTC (50,372.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.32 CZK over 5335 transactions" + } + ] + }, + { + "id": 7044, + "type": "message", + "date": "2025-04-13T10:00:04", + "date_unixtime": "1744531204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004402 BTC for 82.70 CZK @ 1,878,648 CZK\nFees are 0.29045629 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.665123680249521948056857790 CZK)\nThe limits being 0.03 % (12.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61310221 BTC (487,286.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,878,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.37 % (664,516.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,416.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02662429 BTC (50,017.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.32 CZK over 5336 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004402 BTC for 82.70 CZK @ 1,878,648 CZK\nFees are 0.29045629 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.665123680249521948056857790 CZK)\nThe limits being 0.03 % (12.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61310221 BTC (487,286.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,878,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.37 % (664,516.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,416.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02662429 BTC (50,017.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.32 CZK over 5336 transactions" + } + ] + }, + { + "id": 7045, + "type": "message", + "date": "2025-04-13T14:00:04", + "date_unixtime": "1744545604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004409 BTC for 82.70 CZK @ 1,875,821 CZK\nFees are 0.29048039 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.634026401131987239490542458 CZK)\nThe limits being 0.03 % (12.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61314630 BTC (487,369.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,875,821 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.99 % (662,782.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,333.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02666838 BTC (50,025.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.32 CZK over 5337 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004409 BTC for 82.70 CZK @ 1,875,821 CZK\nFees are 0.29048039 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.634026401131987239490542458 CZK)\nThe limits being 0.03 % (12.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61314630 BTC (487,369.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,875,821 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.99 % (662,782.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,333.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02666838 BTC (50,025.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.32 CZK over 5337 transactions" + } + ] + }, + { + "id": 7046, + "type": "message", + "date": "2025-04-13T18:00:05", + "date_unixtime": "1744560005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004448 BTC for 82.71 CZK @ 1,859,465 CZK\nFees are 0.29049469 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.454114302280148974990411258 CZK)\nThe limits being 0.03 % (12.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61319078 BTC (487,452.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 794,945 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,465 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.91 % (652,753.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,250.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02671286 BTC (49,671.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.32 CZK over 5338 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004448 BTC for 82.71 CZK @ 1,859,465 CZK\nFees are 0.29049469 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.454114302280148974990411258 CZK)\nThe limits being 0.03 % (12.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61319078 BTC (487,452.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 794,945 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,465 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.91 % (652,753.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,250.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02671286 BTC (49,671.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.32 CZK over 5338 transactions" + } + ] + }, + { + "id": 7047, + "type": "message", + "date": "2025-04-13T22:00:05", + "date_unixtime": "1744574405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004429 BTC for 82.71 CZK @ 1,867,462 CZK\nFees are 0.29049779 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.542079905699210586384097294 CZK)\nThe limits being 0.03 % (12.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61323507 BTC (487,535.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,867,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.89 % (657,657.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,167.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02675715 BTC (49,967.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.32 CZK over 5339 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004429 BTC for 82.71 CZK @ 1,867,462 CZK\nFees are 0.29049779 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.542079905699210586384097294 CZK)\nThe limits being 0.03 % (12.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61323507 BTC (487,535.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,867,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.89 % (657,657.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,167.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02675715 BTC (49,967.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.32 CZK over 5339 transactions" + } + ] + }, + { + "id": 7048, + "type": "message", + "date": "2025-04-14T02:00:05", + "date_unixtime": "1744588805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004448 BTC for 82.70 CZK @ 1,859,247 CZK\nFees are 0.29046070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.451721356323013338208357082 CZK)\nThe limits being 0.03 % (12.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61327955 BTC (487,618.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,101 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.84 % (652,619.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,084.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02680163 BTC (49,830.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5340 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004448 BTC for 82.70 CZK @ 1,859,247 CZK\nFees are 0.29046070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.451721356323013338208357082 CZK)\nThe limits being 0.03 % (12.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61327955 BTC (487,618.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,101 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.84 % (652,619.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,084.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02680163 BTC (49,830.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5340 transactions" + } + ] + }, + { + "id": 7049, + "type": "message", + "date": "2025-04-14T06:00:04", + "date_unixtime": "1744603204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004409 BTC for 82.70 CZK @ 1,875,715 CZK\nFees are 0.29046409 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.632868522882544344962737022 CZK)\nThe limits being 0.03 % (12.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61332364 BTC (487,701.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,875,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.89 % (662,718.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,001.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02684572 BTC (50,354.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5341 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004409 BTC for 82.70 CZK @ 1,875,715 CZK\nFees are 0.29046409 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.632868522882544344962737022 CZK)\nThe limits being 0.03 % (12.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61332364 BTC (487,701.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,875,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.89 % (662,718.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,001.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02684572 BTC (50,354.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5341 transactions" + } + ] + }, + { + "id": 7050, + "type": "message", + "date": "2025-04-14T10:00:05", + "date_unixtime": "1744617605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004414 BTC for 82.71 CZK @ 1,873,781 CZK\nFees are 0.29049353 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.611585634240285868513216880 CZK)\nThe limits being 0.03 % (12.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61336778 BTC (487,784.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,257 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,873,781 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.62 % (661,531.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,918.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02688986 BTC (50,385.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5342 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004414 BTC for 82.71 CZK @ 1,873,781 CZK\nFees are 0.29049353 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.611585634240285868513216880 CZK)\nThe limits being 0.03 % (12.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61336778 BTC (487,784.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,257 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,873,781 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.62 % (661,531.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,918.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02688986 BTC (50,385.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5342 transactions" + } + ] + }, + { + "id": 7051, + "type": "message", + "date": "2025-04-14T14:00:05", + "date_unixtime": "1744632005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004412 BTC for 82.71 CZK @ 1,874,659 CZK\nFees are 0.29049799 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.621245640259093173891380170 CZK)\nThe limits being 0.03 % (12.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61341190 BTC (487,867.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,335 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,874,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.71 % (662,070.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,835.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02693398 BTC (50,492.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5343 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004412 BTC for 82.71 CZK @ 1,874,659 CZK\nFees are 0.29049799 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.621245640259093173891380170 CZK)\nThe limits being 0.03 % (12.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61341190 BTC (487,867.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,335 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,874,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.71 % (662,070.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,835.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02693398 BTC (50,492.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5343 transactions" + } + ] + }, + { + "id": 7052, + "type": "message", + "date": "2025-04-14T18:00:04", + "date_unixtime": "1744646404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004418 BTC for 82.71 CZK @ 1,872,063 CZK\nFees are 0.29049031 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.592695689126084958868496252 CZK)\nThe limits being 0.03 % (12.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61345608 BTC (487,950.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,413 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,872,063 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.36 % (660,477.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,752.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02697816 BTC (50,504.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5344 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004418 BTC for 82.71 CZK @ 1,872,063 CZK\nFees are 0.29049031 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.592695689126084958868496252 CZK)\nThe limits being 0.03 % (12.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61345608 BTC (487,950.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,413 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,872,063 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.36 % (660,477.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,752.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02697816 BTC (50,504.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5344 transactions" + } + ] + }, + { + "id": 7053, + "type": "message", + "date": "2025-04-14T22:00:05", + "date_unixtime": "1744660805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004390 BTC for 82.69 CZK @ 1,883,668 CZK\nFees are 0.29043859 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.720348919329045379894741980 CZK)\nThe limits being 0.03 % (12.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61349998 BTC (488,033.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,491 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,883,668 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.79 % (667,596.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,669.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02702206 BTC (50,900.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5345 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004390 BTC for 82.69 CZK @ 1,883,668 CZK\nFees are 0.29043859 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.720348919329045379894741980 CZK)\nThe limits being 0.03 % (12.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61349998 BTC (488,033.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,491 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,883,668 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.79 % (667,596.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,669.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02702206 BTC (50,900.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5345 transactions" + } + ] + }, + { + "id": 7054, + "type": "message", + "date": "2025-04-15T02:00:04", + "date_unixtime": "1744675204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004399 BTC for 82.70 CZK @ 1,879,899 CZK\nFees are 0.29045164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.678885880323618415337181423 CZK)\nThe limits being 0.03 % (12.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61354397 BTC (488,116.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,570 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,879,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.30 % (665,283.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,586.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02706605 BTC (50,881.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.31 CZK over 5346 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004399 BTC for 82.70 CZK @ 1,879,899 CZK\nFees are 0.29045164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.678885880323618415337181423 CZK)\nThe limits being 0.03 % (12.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61354397 BTC (488,116.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,570 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,879,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.30 % (665,283.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,586.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02706605 BTC (50,881.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.31 CZK over 5346 transactions" + } + ] + }, + { + "id": 7055, + "type": "message", + "date": "2025-04-15T06:00:04", + "date_unixtime": "1744689604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004373 BTC for 82.71 CZK @ 1,891,362 CZK\nFees are 0.29049563 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.804984245741323159930410497 CZK)\nThe limits being 0.03 % (12.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61358770 BTC (488,199.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,891,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.71 % (672,316.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,503.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02710978 BTC (51,274.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.30 CZK over 5347 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004373 BTC for 82.71 CZK @ 1,891,362 CZK\nFees are 0.29049563 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.804984245741323159930410497 CZK)\nThe limits being 0.03 % (12.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61358770 BTC (488,199.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,891,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.71 % (672,316.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,503.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02710978 BTC (51,274.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.30 CZK over 5347 transactions" + } + ] + }, + { + "id": 7056, + "type": "message", + "date": "2025-04-15T10:00:04", + "date_unixtime": "1744704004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004349 BTC for 82.71 CZK @ 1,901,788 CZK\nFees are 0.29049386 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.919669247539337771925645846 CZK)\nThe limits being 0.03 % (12.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61363119 BTC (488,282.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,727 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,901,788 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 139.00 % (678,713.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,420.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02715327 BTC (51,639.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.30 CZK over 5348 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004349 BTC for 82.71 CZK @ 1,901,788 CZK\nFees are 0.29049386 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.919669247539337771925645846 CZK)\nThe limits being 0.03 % (12.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61363119 BTC (488,282.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,727 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,901,788 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 139.00 % (678,713.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,420.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02715327 BTC (51,639.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.30 CZK over 5348 transactions" + } + ] + }, + { + "id": 7057, + "type": "message", + "date": "2025-04-15T14:00:05", + "date_unixtime": "1744718405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004352 BTC for 82.70 CZK @ 1,900,206 CZK\nFees are 0.29045244 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.902268005455171605263929188 CZK)\nThe limits being 0.03 % (12.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61367471 BTC (488,365.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,900,206 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.78 % (677,742.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,337.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02719679 BTC (51,679.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.30 CZK over 5349 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004352 BTC for 82.70 CZK @ 1,900,206 CZK\nFees are 0.29045244 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.902268005455171605263929188 CZK)\nThe limits being 0.03 % (12.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61367471 BTC (488,365.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,900,206 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.78 % (677,742.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,337.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02719679 BTC (51,679.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.30 CZK over 5349 transactions" + } + ] + }, + { + "id": 7058, + "type": "message", + "date": "2025-04-15T18:00:05", + "date_unixtime": "1744732805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004364 BTC for 82.70 CZK @ 1,895,008 CZK\nFees are 0.29045661 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.845090915754529175383864996 CZK)\nThe limits being 0.03 % (12.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61371835 BTC (488,448.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,895,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.10 % (674,552.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,254.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02724043 BTC (51,620.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.30 CZK over 5350 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004364 BTC for 82.70 CZK @ 1,895,008 CZK\nFees are 0.29045661 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.845090915754529175383864996 CZK)\nThe limits being 0.03 % (12.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61371835 BTC (488,448.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,895,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.10 % (674,552.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,254.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02724043 BTC (51,620.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.30 CZK over 5350 transactions" + } + ] + }, + { + "id": 7059, + "type": "message", + "date": "2025-04-15T22:00:04", + "date_unixtime": "1744747204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004409 BTC for 82.69 CZK @ 1,875,589 CZK\nFees are 0.29044453 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.631479070474929942976854768 CZK)\nThe limits being 0.03 % (12.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61376244 BTC (488,531.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 795,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,875,589 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.64 % (662,634.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,171.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02728452 BTC (51,174.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.30 CZK over 5351 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004409 BTC for 82.69 CZK @ 1,875,589 CZK\nFees are 0.29044453 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.631479070474929942976854768 CZK)\nThe limits being 0.03 % (12.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61376244 BTC (488,531.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 795,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,875,589 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.64 % (662,634.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,171.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02728452 BTC (51,174.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.30 CZK over 5351 transactions" + } + ] + }, + { + "id": 7060, + "type": "message", + "date": "2025-04-16T02:00:06", + "date_unixtime": "1744761606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004423 BTC for 82.71 CZK @ 1,869,916 CZK\nFees are 0.29048554 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.569079123587452958281556041 CZK)\nThe limits being 0.03 % (12.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61380667 BTC (488,614.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,869,916 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.90 % (659,152.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,088.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02732875 BTC (51,102.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.30 CZK over 5352 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004423 BTC for 82.71 CZK @ 1,869,916 CZK\nFees are 0.29048554 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.569079123587452958281556041 CZK)\nThe limits being 0.03 % (12.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61380667 BTC (488,614.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,869,916 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.90 % (659,152.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,088.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02732875 BTC (51,102.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.30 CZK over 5352 transactions" + } + ] + }, + { + "id": 7061, + "type": "message", + "date": "2025-04-16T06:00:04", + "date_unixtime": "1744776004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004447 BTC for 82.71 CZK @ 1,859,881 CZK\nFees are 0.29049436 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.458690675059150405557163376 CZK)\nThe limits being 0.03 % (12.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61385114 BTC (488,697.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,881 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.62 % (652,992.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,005.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02737322 BTC (50,910.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.29 CZK over 5353 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004447 BTC for 82.71 CZK @ 1,859,881 CZK\nFees are 0.29049436 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.458690675059150405557163376 CZK)\nThe limits being 0.03 % (12.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61385114 BTC (488,697.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,881 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.62 % (652,992.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,005.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02737322 BTC (50,910.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.29 CZK over 5353 transactions" + } + ] + }, + { + "id": 7062, + "type": "message", + "date": "2025-04-16T10:00:04", + "date_unixtime": "1744790404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004471 BTC for 82.70 CZK @ 1,849,625 CZK\nFees are 0.29045168 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.345880332947856289611276657 CZK)\nThe limits being 0.03 % (12.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61389585 BTC (488,780.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,849,625 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.31 % (646,696.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,922.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02741793 BTC (50,712.90 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.29 CZK over 5354 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004471 BTC for 82.70 CZK @ 1,849,625 CZK\nFees are 0.29045168 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.345880332947856289611276657 CZK)\nThe limits being 0.03 % (12.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61389585 BTC (488,780.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,849,625 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.31 % (646,696.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,922.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02741793 BTC (50,712.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.29 CZK over 5354 transactions" + } + ] + }, + { + "id": 7063, + "type": "message", + "date": "2025-04-16T14:00:07", + "date_unixtime": "1744804807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004461 BTC for 82.69 CZK @ 1,853,695 CZK\nFees are 0.29043960 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.390640565016390179764234728 CZK)\nThe limits being 0.03 % (12.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61394046 BTC (488,863.81 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,853,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.80 % (649,194.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,839.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02746254 BTC (50,907.16 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.29 CZK over 5355 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004461 BTC for 82.69 CZK @ 1,853,695 CZK\nFees are 0.29043960 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.390640565016390179764234728 CZK)\nThe limits being 0.03 % (12.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61394046 BTC (488,863.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,853,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.80 % (649,194.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,839.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02746254 BTC (50,907.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.29 CZK over 5355 transactions" + } + ] + }, + { + "id": 7064, + "type": "message", + "date": "2025-04-16T18:00:05", + "date_unixtime": "1744819205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004409 BTC for 82.71 CZK @ 1,875,902 CZK\nFees are 0.29049296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.08 % (41.269839242849618080876605277 CZK)\nThe limits being 0.03 % (12.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61398455 BTC (488,946.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,350 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,875,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.56 % (662,827.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,756.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02750663 BTC (51,599.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.29 CZK over 5356 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004409 BTC for 82.71 CZK @ 1,875,902 CZK\nFees are 0.29049296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.08 % (41.269839242849618080876605277 CZK)\nThe limits being 0.03 % (12.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61398455 BTC (488,946.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,350 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,875,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.56 % (662,827.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,756.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02750663 BTC (51,599.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.29 CZK over 5356 transactions" + } + ] + }, + { + "id": 7065, + "type": "message", + "date": "2025-04-16T22:00:04", + "date_unixtime": "1744833604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004448 BTC for 82.70 CZK @ 1,859,247 CZK\nFees are 0.29046070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.451721356323013338208357082 CZK)\nThe limits being 0.03 % (12.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61402903 BTC (489,029.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,428 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,859,247 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.45 % (652,602.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,673.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02755111 BTC (51,224.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.29 CZK over 5357 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004448 BTC for 82.70 CZK @ 1,859,247 CZK\nFees are 0.29046070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.451721356323013338208357082 CZK)\nThe limits being 0.03 % (12.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61402903 BTC (489,029.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,428 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,859,247 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.45 % (652,602.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,673.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02755111 BTC (51,224.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.29 CZK over 5357 transactions" + } + ] + }, + { + "id": 7066, + "type": "message", + "date": "2025-04-17T02:00:05", + "date_unixtime": "1744848005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004462 BTC for 82.70 CZK @ 1,853,453 CZK\nFees are 0.29046684 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.387982959462589140607604448 CZK)\nThe limits being 0.03 % (12.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61407365 BTC (489,112.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,853,453 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.70 % (649,043.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,590.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02759573 BTC (51,147.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.29 CZK over 5358 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004462 BTC for 82.70 CZK @ 1,853,453 CZK\nFees are 0.29046684 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.387982959462589140607604448 CZK)\nThe limits being 0.03 % (12.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61407365 BTC (489,112.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,853,453 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.70 % (649,043.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,590.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02759573 BTC (51,147.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.29 CZK over 5358 transactions" + } + ] + }, + { + "id": 7067, + "type": "message", + "date": "2025-04-17T06:00:05", + "date_unixtime": "1744862405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004454 BTC for 82.70 CZK @ 1,856,665 CZK\nFees are 0.29044853 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.423314764511904785876285270 CZK)\nThe limits being 0.03 % (12.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61411819 BTC (489,195.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,856,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.08 % (651,015.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,507.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02764027 BTC (51,318.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5359 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004454 BTC for 82.70 CZK @ 1,856,665 CZK\nFees are 0.29044853 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.423314764511904785876285270 CZK)\nThe limits being 0.03 % (12.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61411819 BTC (489,195.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,856,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.08 % (651,015.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,507.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02764027 BTC (51,318.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5359 transactions" + } + ] + }, + { + "id": 7068, + "type": "message", + "date": "2025-04-17T10:00:04", + "date_unixtime": "1744876804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004428 BTC for 82.69 CZK @ 1,867,533 CZK\nFees are 0.29044327 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.542862850393991400468729817 CZK)\nThe limits being 0.03 % (12.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61416247 BTC (489,278.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,867,533 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.42 % (657,689.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,424.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02768455 BTC (51,701.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5360 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004428 BTC for 82.69 CZK @ 1,867,533 CZK\nFees are 0.29044327 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.542862850393991400468729817 CZK)\nThe limits being 0.03 % (12.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61416247 BTC (489,278.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,867,533 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.42 % (657,689.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,424.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02768455 BTC (51,701.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5360 transactions" + } + ] + }, + { + "id": 7069, + "type": "message", + "date": "2025-04-17T14:00:04", + "date_unixtime": "1744891204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004425 BTC for 82.70 CZK @ 1,868,833 CZK\nFees are 0.29044857 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.557165395240950458705266031 CZK)\nThe limits being 0.03 % (12.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61420672 BTC (489,361.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,868,833 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.56 % (658,488.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,341.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02772880 BTC (51,820.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5361 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004425 BTC for 82.70 CZK @ 1,868,833 CZK\nFees are 0.29044857 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.557165395240950458705266031 CZK)\nThe limits being 0.03 % (12.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61420672 BTC (489,361.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,868,833 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.56 % (658,488.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,341.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02772880 BTC (51,820.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5361 transactions" + } + ] + }, + { + "id": 7070, + "type": "message", + "date": "2025-04-17T18:00:05", + "date_unixtime": "1744905605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004418 BTC for 82.69 CZK @ 1,871,725 CZK\nFees are 0.29043789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.58897945443550560814424300 CZK)\nThe limits being 0.03 % (13.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61425090 BTC (489,444.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,816 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.90 % (660,264.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,258.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02777298 BTC (51,983.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5362 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004418 BTC for 82.69 CZK @ 1,871,725 CZK\nFees are 0.29043789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.58897945443550560814424300 CZK)\nThe limits being 0.03 % (13.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61425090 BTC (489,444.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,816 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.90 % (660,264.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,258.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02777298 BTC (51,983.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5362 transactions" + } + ] + }, + { + "id": 7071, + "type": "message", + "date": "2025-04-17T22:00:05", + "date_unixtime": "1744920005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004410 BTC for 82.71 CZK @ 1,875,518 CZK\nFees are 0.29049938 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.630696125013699218268938534 CZK)\nThe limits being 0.03 % (13.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61429500 BTC (489,527.72 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,875,518 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.35 % (662,593.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,175.89 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02781708 BTC (52,171.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5363 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004410 BTC for 82.71 CZK @ 1,875,518 CZK\nFees are 0.29049938 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.630696125013699218268938534 CZK)\nThe limits being 0.03 % (13.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61429500 BTC (489,527.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,875,518 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.35 % (662,593.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,175.89 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02781708 BTC (52,171.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5363 transactions" + } + ] + }, + { + "id": 7072, + "type": "message", + "date": "2025-04-18T02:00:04", + "date_unixtime": "1744934404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004401 BTC for 82.70 CZK @ 1,879,111 CZK\nFees are 0.29046190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.670218341689114230617741338 CZK)\nThe limits being 0.03 % (13.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61433901 BTC (489,610.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 796,972 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,879,111 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.78 % (664,800.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,092.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02786109 BTC (52,354.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5364 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004401 BTC for 82.70 CZK @ 1,879,111 CZK\nFees are 0.29046190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.670218341689114230617741338 CZK)\nThe limits being 0.03 % (13.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61433901 BTC (489,610.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 796,972 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,879,111 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.78 % (664,800.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,092.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02786109 BTC (52,354.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5364 transactions" + } + ] + }, + { + "id": 7073, + "type": "message", + "date": "2025-04-18T06:00:05", + "date_unixtime": "1744948805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004408 BTC for 82.71 CZK @ 1,876,261 CZK\nFees are 0.29048264 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.638867432226770730754518894 CZK)\nThe limits being 0.03 % (13.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61438309 BTC (489,693.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,876,261 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.40 % (663,049.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,009.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02790517 BTC (52,357.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.28 CZK over 5365 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004408 BTC for 82.71 CZK @ 1,876,261 CZK\nFees are 0.29048264 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.638867432226770730754518894 CZK)\nThe limits being 0.03 % (13.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61438309 BTC (489,693.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,876,261 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.40 % (663,049.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,009.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02790517 BTC (52,357.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.28 CZK over 5365 transactions" + } + ] + }, + { + "id": 7074, + "type": "message", + "date": "2025-04-18T10:00:05", + "date_unixtime": "1744963205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004420 BTC for 82.70 CZK @ 1,871,047 CZK\nFees are 0.29046401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.581513902247112481879034240 CZK)\nThe limits being 0.03 % (13.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61442729 BTC (489,776.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,127 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.72 % (659,845.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,926.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02794937 BTC (52,294.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.27 CZK over 5366 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004420 BTC for 82.70 CZK @ 1,871,047 CZK\nFees are 0.29046401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.581513902247112481879034240 CZK)\nThe limits being 0.03 % (13.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61442729 BTC (489,776.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,127 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.72 % (659,845.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,926.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02794937 BTC (52,294.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.27 CZK over 5366 transactions" + } + ] + }, + { + "id": 7075, + "type": "message", + "date": "2025-04-18T14:00:06", + "date_unixtime": "1744977606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004422 BTC for 82.70 CZK @ 1,870,305 CZK\nFees are 0.29048022 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.573353623015961547519006858 CZK)\nThe limits being 0.03 % (13.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61447151 BTC (489,859.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,870,305 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.61 % (659,389.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,843.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02799359 BTC (52,356.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.27 CZK over 5367 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004422 BTC for 82.70 CZK @ 1,870,305 CZK\nFees are 0.29048022 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.573353623015961547519006858 CZK)\nThe limits being 0.03 % (13.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61447151 BTC (489,859.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,870,305 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.61 % (659,389.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,843.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02799359 BTC (52,356.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.27 CZK over 5367 transactions" + } + ] + }, + { + "id": 7076, + "type": "message", + "date": "2025-04-18T18:00:04", + "date_unixtime": "1744992004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004435 BTC for 82.70 CZK @ 1,864,723 CZK\nFees are 0.29046471 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.511953037648950207531812276 CZK)\nThe limits being 0.03 % (13.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61451586 BTC (489,942.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,864,723 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.88 % (655,959.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,760.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02803794 BTC (52,282.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.27 CZK over 5368 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004435 BTC for 82.70 CZK @ 1,864,723 CZK\nFees are 0.29046471 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.511953037648950207531812276 CZK)\nThe limits being 0.03 % (13.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61451586 BTC (489,942.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,864,723 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.88 % (655,959.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,760.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02803794 BTC (52,282.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.27 CZK over 5368 transactions" + } + ] + }, + { + "id": 7077, + "type": "message", + "date": "2025-04-18T22:00:04", + "date_unixtime": "1745006404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004429 BTC for 82.70 CZK @ 1,867,228 CZK\nFees are 0.29046145 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.539510519908700672055122493 CZK)\nThe limits being 0.03 % (13.11 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61456015 BTC (490,025.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,867,228 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.18 % (657,498.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,677.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02808223 BTC (52,435.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.27 CZK over 5369 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004429 BTC for 82.70 CZK @ 1,867,228 CZK\nFees are 0.29046145 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.539510519908700672055122493 CZK)\nThe limits being 0.03 % (13.11 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61456015 BTC (490,025.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,867,228 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.18 % (657,498.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,677.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02808223 BTC (52,435.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.27 CZK over 5369 transactions" + } + ] + }, + { + "id": 7078, + "type": "message", + "date": "2025-04-19T02:00:06", + "date_unixtime": "1745020806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004430 BTC for 82.71 CZK @ 1,866,997 CZK\nFees are 0.29049100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.536963190683623120432886703 CZK)\nThe limits being 0.03 % (13.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61460445 BTC (490,108.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,438 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,866,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.12 % (657,355.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,594.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02812653 BTC (52,512.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.27 CZK over 5370 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004430 BTC for 82.71 CZK @ 1,866,997 CZK\nFees are 0.29049100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.536963190683623120432886703 CZK)\nThe limits being 0.03 % (13.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61460445 BTC (490,108.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,438 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,866,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.12 % (657,355.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,594.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02812653 BTC (52,512.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.27 CZK over 5370 transactions" + } + ] + }, + { + "id": 7079, + "type": "message", + "date": "2025-04-19T06:00:04", + "date_unixtime": "1745035204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004422 BTC for 82.70 CZK @ 1,870,288 CZK\nFees are 0.29047757 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.573166157255575634532866311 CZK)\nThe limits being 0.03 % (13.17 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61464867 BTC (490,191.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,515 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,870,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.51 % (659,378.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,511.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02817075 BTC (52,687.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.27 CZK over 5371 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004422 BTC for 82.70 CZK @ 1,870,288 CZK\nFees are 0.29047757 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.573166157255575634532866311 CZK)\nThe limits being 0.03 % (13.17 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61464867 BTC (490,191.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,515 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,870,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.51 % (659,378.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,511.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02817075 BTC (52,687.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.27 CZK over 5371 transactions" + } + ] + }, + { + "id": 7080, + "type": "message", + "date": "2025-04-19T10:00:05", + "date_unixtime": "1745049605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004392 BTC for 82.71 CZK @ 1,883,104 CZK\nFees are 0.29048385 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.714140491658067437919921442 CZK)\nThe limits being 0.03 % (13.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61469259 BTC (490,274.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,593 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,883,104 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.10 % (667,255.23 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,428.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02821467 BTC (53,131.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5372 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004392 BTC for 82.71 CZK @ 1,883,104 CZK\nFees are 0.29048385 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.714140491658067437919921442 CZK)\nThe limits being 0.03 % (13.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61469259 BTC (490,274.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,593 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,883,104 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.10 % (667,255.23 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,428.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02821467 BTC (53,131.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5372 transactions" + } + ] + }, + { + "id": 7081, + "type": "message", + "date": "2025-04-19T14:00:05", + "date_unixtime": "1745064005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004386 BTC for 82.71 CZK @ 1,885,715 CZK\nFees are 0.29048930 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.742866879510404873412731681 CZK)\nThe limits being 0.03 % (13.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61473645 BTC (490,357.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,671 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,885,715 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.40 % (668,860.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,345.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02825853 BTC (53,287.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5373 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004386 BTC for 82.71 CZK @ 1,885,715 CZK\nFees are 0.29048930 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.742866879510404873412731681 CZK)\nThe limits being 0.03 % (13.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61473645 BTC (490,357.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,671 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,885,715 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.40 % (668,860.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,345.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02825853 BTC (53,287.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5373 transactions" + } + ] + }, + { + "id": 7082, + "type": "message", + "date": "2025-04-19T18:00:03", + "date_unixtime": "1745078403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004386 BTC for 82.70 CZK @ 1,885,499 CZK\nFees are 0.29045595 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.740484960867697213878193309 CZK)\nThe limits being 0.03 % (13.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61478031 BTC (490,440.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,749 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,885,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 136.35 % (668,726.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,262.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02830239 BTC (53,364.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5374 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004386 BTC for 82.70 CZK @ 1,885,499 CZK\nFees are 0.29045595 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.740484960867697213878193309 CZK)\nThe limits being 0.03 % (13.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61478031 BTC (490,440.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,749 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,885,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 136.35 % (668,726.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,262.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02830239 BTC (53,364.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5374 transactions" + } + ] + }, + { + "id": 7083, + "type": "message", + "date": "2025-04-19T22:00:05", + "date_unixtime": "1745092805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004404 BTC for 82.70 CZK @ 1,877,784 CZK\nFees are 0.29045474 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.655629086118657360455481203 CZK)\nThe limits being 0.03 % (13.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61482435 BTC (490,523.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,877,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.36 % (663,983.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,179.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02834643 BTC (53,228.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5375 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004404 BTC for 82.70 CZK @ 1,877,784 CZK\nFees are 0.29045474 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.655629086118657360455481203 CZK)\nThe limits being 0.03 % (13.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61482435 BTC (490,523.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,877,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.36 % (663,983.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,179.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02834643 BTC (53,228.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5375 transactions" + } + ] + }, + { + "id": 7084, + "type": "message", + "date": "2025-04-20T02:00:05", + "date_unixtime": "1745107205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004404 BTC for 82.70 CZK @ 1,877,785 CZK\nFees are 0.29045490 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.655640112467399524009291730 CZK)\nThe limits being 0.03 % (13.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61486839 BTC (490,606.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,905 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,877,785 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.34 % (663,984.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,097.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02839047 BTC (53,311.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5376 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004404 BTC for 82.70 CZK @ 1,877,785 CZK\nFees are 0.29045490 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.655640112467399524009291730 CZK)\nThe limits being 0.03 % (13.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61486839 BTC (490,606.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,905 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,877,785 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.34 % (663,984.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,097.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02839047 BTC (53,311.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5376 transactions" + } + ] + }, + { + "id": 7085, + "type": "message", + "date": "2025-04-20T06:00:04", + "date_unixtime": "1745121604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004401 BTC for 82.70 CZK @ 1,879,176 CZK\nFees are 0.29047197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.670935121983306099635144298 CZK)\nThe limits being 0.03 % (13.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61491240 BTC (490,689.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 797,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,879,176 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 135.49 % (664,838.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,014.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02843448 BTC (53,433.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5377 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004401 BTC for 82.70 CZK @ 1,879,176 CZK\nFees are 0.29047197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.670935121983306099635144298 CZK)\nThe limits being 0.03 % (13.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61491240 BTC (490,689.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 797,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,879,176 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 135.49 % (664,838.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,014.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02843448 BTC (53,433.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5377 transactions" + } + ] + }, + { + "id": 7086, + "type": "message", + "date": "2025-04-20T10:00:04", + "date_unixtime": "1745136004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004420 BTC for 82.70 CZK @ 1,871,085 CZK\nFees are 0.29046992 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.581932944197570945130955681 CZK)\nThe limits being 0.03 % (13.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61495660 BTC (490,772.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,061 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,085 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.45 % (659,863.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,931.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02847868 BTC (53,286.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.26 CZK over 5378 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004420 BTC for 82.70 CZK @ 1,871,085 CZK\nFees are 0.29046992 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.581932944197570945130955681 CZK)\nThe limits being 0.03 % (13.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61495660 BTC (490,772.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,061 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,085 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.45 % (659,863.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,931.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02847868 BTC (53,286.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.26 CZK over 5378 transactions" + } + ] + }, + { + "id": 7087, + "type": "message", + "date": "2025-04-20T14:00:04", + "date_unixtime": "1745150404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004456 BTC for 82.71 CZK @ 1,856,151 CZK\nFees are 0.29049846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.08 % (40.835315412215235902348959968 CZK)\nThe limits being 0.03 % (13.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61500116 BTC (490,855.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,138 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,856,151 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 132.56 % (650,679.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,848.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02852324 BTC (52,943.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.25 CZK over 5379 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004456 BTC for 82.71 CZK @ 1,856,151 CZK\nFees are 0.29049846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.08 % (40.835315412215235902348959968 CZK)\nThe limits being 0.03 % (13.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61500116 BTC (490,855.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,138 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,856,151 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 132.56 % (650,679.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,848.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02852324 BTC (52,943.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.25 CZK over 5379 transactions" + } + ] + }, + { + "id": 7088, + "type": "message", + "date": "2025-04-20T18:00:04", + "date_unixtime": "1745164804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004443 BTC for 82.70 CZK @ 1,861,452 CZK\nFees are 0.29047820 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.475970617580758589590944412 CZK)\nThe limits being 0.03 % (13.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61504559 BTC (490,938.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,861,452 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.20 % (653,939.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,765.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02856767 BTC (53,177.34 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.25 CZK over 5380 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004443 BTC for 82.70 CZK @ 1,861,452 CZK\nFees are 0.29047820 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.475970617580758589590944412 CZK)\nThe limits being 0.03 % (13.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61504559 BTC (490,938.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,861,452 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.20 % (653,939.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,765.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02856767 BTC (53,177.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.25 CZK over 5380 transactions" + } + ] + }, + { + "id": 7089, + "type": "message", + "date": "2025-04-20T22:00:04", + "date_unixtime": "1745179204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004431 BTC for 82.54 CZK @ 1,862,888 CZK\nFees are 0.28991711 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.491765062183058910153888156 CZK)\nThe limits being 0.03 % (13.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61508990 BTC (491,021.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,862,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 133.36 % (654,822.01 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,682.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02861198 BTC (53,300.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.25 CZK over 5381 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004431 BTC for 82.54 CZK @ 1,862,888 CZK\nFees are 0.28991711 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.491765062183058910153888156 CZK)\nThe limits being 0.03 % (13.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61508990 BTC (491,021.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,862,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 133.36 % (654,822.01 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,682.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02861198 BTC (53,300.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.25 CZK over 5381 transactions" + } + ] + }, + { + "id": 7090, + "type": "message", + "date": "2025-04-21T02:00:04", + "date_unixtime": "1745193604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004419 BTC for 82.70 CZK @ 1,871,412 CZK\nFees are 0.29045496 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.585530083269317740927798193 CZK)\nThe limits being 0.03 % (13.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61513409 BTC (491,104.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,370 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,871,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 134.40 % (660,064.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,599.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02865617 BTC (53,627.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.25 CZK over 5382 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004419 BTC for 82.70 CZK @ 1,871,412 CZK\nFees are 0.29045496 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.585530083269317740927798193 CZK)\nThe limits being 0.03 % (13.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61513409 BTC (491,104.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,370 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,871,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 134.40 % (660,064.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,599.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02865617 BTC (53,627.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.25 CZK over 5382 transactions" + } + ] + }, + { + "id": 7091, + "type": "message", + "date": "2025-04-21T06:00:04", + "date_unixtime": "1745208004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004346 BTC for 82.70 CZK @ 1,902,971 CZK\nFees are 0.29047404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.932681585458717773572523780 CZK)\nThe limits being 0.03 % (13.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61517755 BTC (491,187.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,902,971 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.33 % (679,477.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,516.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02869963 BTC (54,614.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.25 CZK over 5383 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004346 BTC for 82.70 CZK @ 1,902,971 CZK\nFees are 0.29047404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.932681585458717773572523780 CZK)\nThe limits being 0.03 % (13.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61517755 BTC (491,187.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,902,971 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.33 % (679,477.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,516.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02869963 BTC (54,614.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.25 CZK over 5383 transactions" + } + ] + }, + { + "id": 7092, + "type": "message", + "date": "2025-04-21T10:00:04", + "date_unixtime": "1745222404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004350 BTC for 82.71 CZK @ 1,901,379 CZK\nFees are 0.29049816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.915170067751375931366653494 CZK)\nThe limits being 0.03 % (13.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61522105 BTC (491,270.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,527 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,901,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.11 % (678,498.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,433.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02874313 BTC (54,651.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.25 CZK over 5384 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004350 BTC for 82.71 CZK @ 1,901,379 CZK\nFees are 0.29049816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.915170067751375931366653494 CZK)\nThe limits being 0.03 % (13.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61522105 BTC (491,270.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,527 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,901,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.11 % (678,498.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,433.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02874313 BTC (54,651.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.25 CZK over 5384 transactions" + } + ] + }, + { + "id": 7093, + "type": "message", + "date": "2025-04-21T14:00:04", + "date_unixtime": "1745236804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004369 BTC for 82.71 CZK @ 1,893,007 CZK\nFees are 0.29048235 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.823080215127119170794186472 CZK)\nThe limits being 0.03 % (13.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61526474 BTC (491,353.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,893,007 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 137.04 % (673,347.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,350.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02878682 BTC (54,493.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5385 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004369 BTC for 82.71 CZK @ 1,893,007 CZK\nFees are 0.29048235 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.823080215127119170794186472 CZK)\nThe limits being 0.03 % (13.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61526474 BTC (491,353.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,893,007 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 137.04 % (673,347.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,350.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02878682 BTC (54,493.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5385 transactions" + } + ] + }, + { + "id": 7094, + "type": "message", + "date": "2025-04-21T18:00:03", + "date_unixtime": "1745251203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004306 BTC for 82.69 CZK @ 1,920,404 CZK\nFees are 0.29043713 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.124448142601683702952346767 CZK)\nThe limits being 0.03 % (13.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61530780 BTC (491,436.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,684 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,920,404 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.45 % (690,203.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,267.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02882988 BTC (55,365.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5386 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004306 BTC for 82.69 CZK @ 1,920,404 CZK\nFees are 0.29043713 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.124448142601683702952346767 CZK)\nThe limits being 0.03 % (13.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61530780 BTC (491,436.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,684 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,920,404 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.45 % (690,203.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,267.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02882988 BTC (55,365.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5386 transactions" + } + ] + }, + { + "id": 7095, + "type": "message", + "date": "2025-04-21T22:00:06", + "date_unixtime": "1745265606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004350 BTC for 82.69 CZK @ 1,901,030 CZK\nFees are 0.29044486 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.911332530625569128739068434 CZK)\nThe limits being 0.03 % (13.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61535130 BTC (491,519.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,762 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,901,030 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.00 % (678,282.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,184.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02887338 BTC (54,889.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5387 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004350 BTC for 82.69 CZK @ 1,901,030 CZK\nFees are 0.29044486 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.911332530625569128739068434 CZK)\nThe limits being 0.03 % (13.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61535130 BTC (491,519.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,762 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,901,030 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.00 % (678,282.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,184.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02887338 BTC (54,889.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5387 transactions" + } + ] + }, + { + "id": 7096, + "type": "message", + "date": "2025-04-22T02:00:04", + "date_unixtime": "1745280004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004344 BTC for 82.70 CZK @ 1,903,731 CZK\nFees are 0.29045630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.941040358744394618834080718 CZK)\nThe limits being 0.03 % (13.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61539474 BTC (491,602.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,903,731 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 138.31 % (679,943.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,101.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02891682 BTC (55,049.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5388 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004344 BTC for 82.70 CZK @ 1,903,731 CZK\nFees are 0.29045630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (20.941040358744394618834080718 CZK)\nThe limits being 0.03 % (13.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61539474 BTC (491,602.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,903,731 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 138.31 % (679,943.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,101.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02891682 BTC (55,049.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5388 transactions" + } + ] + }, + { + "id": 7097, + "type": "message", + "date": "2025-04-22T06:00:04", + "date_unixtime": "1745294404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004312 BTC for 82.71 CZK @ 1,918,059 CZK\nFees are 0.29048655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.098644016350934992831213201 CZK)\nThe limits being 0.03 % (13.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61543786 BTC (491,685.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,920 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,918,059 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 140.08 % (688,760.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,018.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02895994 BTC (55,546.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5389 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004312 BTC for 82.71 CZK @ 1,918,059 CZK\nFees are 0.29048655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.098644016350934992831213201 CZK)\nThe limits being 0.03 % (13.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61543786 BTC (491,685.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,920 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,918,059 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 140.08 % (688,760.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,018.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02895994 BTC (55,546.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5389 transactions" + } + ] + }, + { + "id": 7098, + "type": "message", + "date": "2025-04-22T10:00:04", + "date_unixtime": "1745308804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004282 BTC for 82.71 CZK @ 1,931,584 CZK\nFees are 0.29049972 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.247425752509840034424120901 CZK)\nThe limits being 0.03 % (14.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61548068 BTC (491,768.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 798,999 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,931,584 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 141.75 % (697,084.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,935.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02900276 BTC (56,021.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5390 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004282 BTC for 82.71 CZK @ 1,931,584 CZK\nFees are 0.29049972 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.247425752509840034424120901 CZK)\nThe limits being 0.03 % (14.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61548068 BTC (491,768.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 798,999 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,931,584 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 141.75 % (697,084.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,935.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02900276 BTC (56,021.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5390 transactions" + } + ] + }, + { + "id": 7099, + "type": "message", + "date": "2025-04-22T14:00:06", + "date_unixtime": "1745323206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004266 BTC for 82.69 CZK @ 1,938,387 CZK\nFees are 0.29043354 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.322257716136980483918100991 CZK)\nThe limits being 0.03 % (14.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61552334 BTC (491,851.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,938,387 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 142.58 % (701,271.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,852.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02904542 BTC (56,301.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.24 CZK over 5391 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004266 BTC for 82.69 CZK @ 1,938,387 CZK\nFees are 0.29043354 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.322257716136980483918100991 CZK)\nThe limits being 0.03 % (14.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61552334 BTC (491,851.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,938,387 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 142.58 % (701,271.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,852.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02904542 BTC (56,301.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.24 CZK over 5391 transactions" + } + ] + }, + { + "id": 7100, + "type": "message", + "date": "2025-04-22T18:00:06", + "date_unixtime": "1745337606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004157 BTC for 82.71 CZK @ 1,989,560 CZK\nFees are 0.29048422 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.885162586228450603306996596 CZK)\nThe limits being 0.03 % (14.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61556491 BTC (491,934.32 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 1,989,560 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 148.96 % (732,769.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,769.29 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02908699 BTC (57,870.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.23 CZK over 5392 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004157 BTC for 82.71 CZK @ 1,989,560 CZK\nFees are 0.29048422 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (21.885162586228450603306996596 CZK)\nThe limits being 0.03 % (14.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61556491 BTC (491,934.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 1,989,560 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 148.96 % (732,769.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,769.29 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02908699 BTC (57,870.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.23 CZK over 5392 transactions" + } + ] + }, + { + "id": 7101, + "type": "message", + "date": "2025-04-22T22:00:04", + "date_unixtime": "1745352004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004112 BTC for 82.69 CZK @ 2,010,997 CZK\nFees are 0.29043560 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.120961567635842644130756361 CZK)\nThe limits being 0.03 % (14.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61560603 BTC (492,017.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,010,997 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 151.61 % (745,964.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,686.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02912811 BTC (58,576.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.23 CZK over 5393 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004112 BTC for 82.69 CZK @ 2,010,997 CZK\nFees are 0.29043560 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.120961567635842644130756361 CZK)\nThe limits being 0.03 % (14.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61560603 BTC (492,017.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,010,997 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 151.61 % (745,964.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,686.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02912811 BTC (58,576.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.23 CZK over 5393 transactions" + } + ] + }, + { + "id": 7102, + "type": "message", + "date": "2025-04-23T02:00:04", + "date_unixtime": "1745366404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003994 BTC for 82.71 CZK @ 2,070,846 CZK\nFees are 0.29049679 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.779308617634972638329691848 CZK)\nThe limits being 0.03 % (15.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61564597 BTC (492,100.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,070,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.07 % (782,807.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,603.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02916805 BTC (60,402.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.23 CZK over 5394 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003994 BTC for 82.71 CZK @ 2,070,846 CZK\nFees are 0.29049679 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.779308617634972638329691848 CZK)\nThe limits being 0.03 % (15.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61564597 BTC (492,100.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,070,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.07 % (782,807.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,603.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02916805 BTC (60,402.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.23 CZK over 5394 transactions" + } + ] + }, + { + "id": 7103, + "type": "message", + "date": "2025-04-23T06:00:05", + "date_unixtime": "1745380805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004029 BTC for 82.70 CZK @ 2,052,595 CZK\nFees are 0.29045973 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.578543701166047896645681538 CZK)\nThe limits being 0.03 % (14.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61568626 BTC (492,183.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,406 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,052,595 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.77 % (771,571.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,520.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02920834 BTC (59,952.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.23 CZK over 5395 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004029 BTC for 82.70 CZK @ 2,052,595 CZK\nFees are 0.29045973 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.578543701166047896645681538 CZK)\nThe limits being 0.03 % (14.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61568626 BTC (492,183.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,406 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,052,595 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.77 % (771,571.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,520.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02920834 BTC (59,952.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.23 CZK over 5395 transactions" + } + ] + }, + { + "id": 7104, + "type": "message", + "date": "2025-04-23T10:00:06", + "date_unixtime": "1745395206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003990 BTC for 82.71 CZK @ 2,072,844 CZK\nFees are 0.29048585 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.801286235019536884063671886 CZK)\nThe limits being 0.03 % (15.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61572616 BTC (492,266.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,072,844 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.27 % (784,038.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,437.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02924824 BTC (60,627.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.23 CZK over 5396 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003990 BTC for 82.71 CZK @ 2,072,844 CZK\nFees are 0.29048585 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.801286235019536884063671886 CZK)\nThe limits being 0.03 % (15.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61572616 BTC (492,266.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,072,844 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.27 % (784,038.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,437.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02924824 BTC (60,627.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.23 CZK over 5396 transactions" + } + ] + }, + { + "id": 7105, + "type": "message", + "date": "2025-04-23T14:00:05", + "date_unixtime": "1745409605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004037 BTC for 82.71 CZK @ 2,048,708 CZK\nFees are 0.29048531 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.535784810384363175751355270 CZK)\nThe limits being 0.03 % (15.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61576653 BTC (492,349.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,571 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,048,708 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.23 % (769,176.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,354.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02928861 BTC (60,003.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.23 CZK over 5397 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004037 BTC for 82.71 CZK @ 2,048,708 CZK\nFees are 0.29048531 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.535784810384363175751355270 CZK)\nThe limits being 0.03 % (15.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61576653 BTC (492,349.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,571 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,048,708 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.23 % (769,176.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,354.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02928861 BTC (60,003.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.23 CZK over 5397 transactions" + } + ] + }, + { + "id": 7106, + "type": "message", + "date": "2025-04-23T18:00:04", + "date_unixtime": "1745424004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004045 BTC for 82.70 CZK @ 2,044,474 CZK\nFees are 0.29045944 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (67.467636076205468745669513932 CZK)\nThe limits being 0.03 % (14.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61580698 BTC (492,432.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,654 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,044,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.67 % (766,568.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,271.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02932906 BTC (59,962.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5398 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004045 BTC for 82.70 CZK @ 2,044,474 CZK\nFees are 0.29045944 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (67.467636076205468745669513932 CZK)\nThe limits being 0.03 % (14.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61580698 BTC (492,432.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,654 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,044,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.67 % (766,568.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,271.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02932906 BTC (59,962.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5398 transactions" + } + ] + }, + { + "id": 7107, + "type": "message", + "date": "2025-04-23T22:00:05", + "date_unixtime": "1745438405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004013 BTC for 82.71 CZK @ 2,061,008 CZK\nFees are 0.29049200 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (136.02650017339014421366731516 CZK)\nThe limits being 0.03 % (15.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61584711 BTC (492,515.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,736 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,061,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.71 % (776,750.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,188.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02936919 BTC (60,530.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5399 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004013 BTC for 82.71 CZK @ 2,061,008 CZK\nFees are 0.29049200 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (136.02650017339014421366731516 CZK)\nThe limits being 0.03 % (15.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61584711 BTC (492,515.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,736 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,061,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.71 % (776,750.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,188.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02936919 BTC (60,530.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5399 transactions" + } + ] + }, + { + "id": 7108, + "type": "message", + "date": "2025-04-24T02:00:05", + "date_unixtime": "1745452805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004001 BTC for 82.71 CZK @ 2,067,192 CZK\nFees are 0.29049248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (136.43470467659617233210382009 CZK)\nThe limits being 0.03 % (15.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61588712 BTC (492,598.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,067,192 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.46 % (780,558.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,105.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02940920 BTC (60,794.48 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5400 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004001 BTC for 82.71 CZK @ 2,067,192 CZK\nFees are 0.29049248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (136.43470467659617233210382009 CZK)\nThe limits being 0.03 % (15.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61588712 BTC (492,598.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,067,192 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.46 % (780,558.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,105.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02940920 BTC (60,794.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5400 transactions" + } + ] + }, + { + "id": 7109, + "type": "message", + "date": "2025-04-24T06:00:04", + "date_unixtime": "1745467204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004042 BTC for 82.70 CZK @ 2,045,964 CZK\nFees are 0.29045559 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (135.03362913030518864331100426 CZK)\nThe limits being 0.03 % (15.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61592754 BTC (492,681.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,901 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,045,964 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.78 % (767,484.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,022.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02944962 BTC (60,252.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5401 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004042 BTC for 82.70 CZK @ 2,045,964 CZK\nFees are 0.29045559 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (135.03362913030518864331100426 CZK)\nThe limits being 0.03 % (15.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61592754 BTC (492,681.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,901 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,045,964 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.78 % (767,484.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,022.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02944962 BTC (60,252.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5401 transactions" + } + ] + }, + { + "id": 7110, + "type": "message", + "date": "2025-04-24T10:00:05", + "date_unixtime": "1745481605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004087 BTC for 82.71 CZK @ 2,023,681 CZK\nFees are 0.29049065 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (66.781479132310219833713882984 CZK)\nThe limits being 0.03 % (14.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61596841 BTC (492,764.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 799,983 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,023,681 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 152.97 % (753,759.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,939.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02949049 BTC (59,679.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5402 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004087 BTC for 82.71 CZK @ 2,023,681 CZK\nFees are 0.29049065 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.11 % (66.781479132310219833713882984 CZK)\nThe limits being 0.03 % (14.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61596841 BTC (492,764.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 799,983 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,023,681 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 152.97 % (753,759.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,939.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02949049 BTC (59,679.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5402 transactions" + } + ] + }, + { + "id": 7111, + "type": "message", + "date": "2025-04-24T14:00:05", + "date_unixtime": "1745496005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004071 BTC for 82.70 CZK @ 2,031,412 CZK\nFees are 0.29045885 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.345535648810592550245107488 CZK)\nThe limits being 0.03 % (15.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61600912 BTC (492,847.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,065 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,031,412 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 153.91 % (758,521.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,856.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02953120 BTC (59,990.04 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5403 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004071 BTC for 82.70 CZK @ 2,031,412 CZK\nFees are 0.29045885 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.345535648810592550245107488 CZK)\nThe limits being 0.03 % (15.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61600912 BTC (492,847.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,065 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,031,412 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 153.91 % (758,521.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,856.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02953120 BTC (59,990.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5403 transactions" + } + ] + }, + { + "id": 7112, + "type": "message", + "date": "2025-04-24T18:00:05", + "date_unixtime": "1745510405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004036 BTC for 82.70 CZK @ 2,049,131 CZK\nFees are 0.29047343 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.540446484874791549694997142 CZK)\nThe limits being 0.03 % (15.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61604948 BTC (492,930.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,147 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,049,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.09 % (769,436.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,773.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02957156 BTC (60,596.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.22 CZK over 5404 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004036 BTC for 82.70 CZK @ 2,049,131 CZK\nFees are 0.29047343 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.540446484874791549694997142 CZK)\nThe limits being 0.03 % (15.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61604948 BTC (492,930.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,147 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,049,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.09 % (769,436.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,773.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02957156 BTC (60,596.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.22 CZK over 5404 transactions" + } + ] + }, + { + "id": 7113, + "type": "message", + "date": "2025-04-24T22:00:04", + "date_unixtime": "1745524804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004042 BTC for 82.70 CZK @ 2,046,047 CZK\nFees are 0.29046736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.506517398900976715094398700 CZK)\nThe limits being 0.03 % (15.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61608990 BTC (493,013.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,229 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,046,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.68 % (767,535.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,690.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02961198 BTC (60,587.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5405 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004042 BTC for 82.70 CZK @ 2,046,047 CZK\nFees are 0.29046736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.506517398900976715094398700 CZK)\nThe limits being 0.03 % (15.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61608990 BTC (493,013.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,229 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,046,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.68 % (767,535.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,690.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02961198 BTC (60,587.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5405 transactions" + } + ] + }, + { + "id": 7114, + "type": "message", + "date": "2025-04-25T02:00:04", + "date_unixtime": "1745539204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004018 BTC for 82.69 CZK @ 2,058,055 CZK\nFees are 0.29043727 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.638605552542209781940411151 CZK)\nThe limits being 0.03 % (15.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61613008 BTC (493,096.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,312 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,058,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.16 % (774,933.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,607.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02965216 BTC (61,025.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5406 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004018 BTC for 82.69 CZK @ 2,058,055 CZK\nFees are 0.29043727 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.638605552542209781940411151 CZK)\nThe limits being 0.03 % (15.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61613008 BTC (493,096.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,312 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,058,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.16 % (774,933.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,607.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02965216 BTC (61,025.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5406 transactions" + } + ] + }, + { + "id": 7115, + "type": "message", + "date": "2025-04-25T06:00:06", + "date_unixtime": "1745553606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004028 BTC for 82.63 CZK @ 2,051,288 CZK\nFees are 0.29020278 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.564170301660177462298044234 CZK)\nThe limits being 0.03 % (15.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61617036 BTC (493,179.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,394 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,051,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.28 % (770,763.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,524.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02969244 BTC (60,907.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5407 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004028 BTC for 82.63 CZK @ 2,051,288 CZK\nFees are 0.29020278 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.564170301660177462298044234 CZK)\nThe limits being 0.03 % (15.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61617036 BTC (493,179.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,394 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,051,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.28 % (770,763.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,524.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02969244 BTC (60,907.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5407 transactions" + } + ] + }, + { + "id": 7116, + "type": "message", + "date": "2025-04-25T10:00:05", + "date_unixtime": "1745568005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004012 BTC for 82.69 CZK @ 2,061,116 CZK\nFees are 0.29043482 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.672270770896081064231321977 CZK)\nThe limits being 0.03 % (15.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61621048 BTC (493,262.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,061,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.49 % (776,818.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,441.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02973256 BTC (61,282.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5408 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004012 BTC for 82.69 CZK @ 2,061,116 CZK\nFees are 0.29043482 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.672270770896081064231321977 CZK)\nThe limits being 0.03 % (15.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61621048 BTC (493,262.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,061,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.49 % (776,818.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,441.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02973256 BTC (61,282.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5408 transactions" + } + ] + }, + { + "id": 7117, + "type": "message", + "date": "2025-04-25T14:00:06", + "date_unixtime": "1745582406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003990 BTC for 82.69 CZK @ 2,072,535 CZK\nFees are 0.29044249 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.797883153074514887118144140 CZK)\nThe limits being 0.03 % (15.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61625038 BTC (493,345.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,559 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,072,535 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.89 % (783,855.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,358.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02977246 BTC (61,704.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5409 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003990 BTC for 82.69 CZK @ 2,072,535 CZK\nFees are 0.29044249 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.797883153074514887118144140 CZK)\nThe limits being 0.03 % (15.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61625038 BTC (493,345.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,559 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,072,535 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.89 % (783,855.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,358.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02977246 BTC (61,704.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5409 transactions" + } + ] + }, + { + "id": 7118, + "type": "message", + "date": "2025-04-25T18:00:04", + "date_unixtime": "1745596804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003966 BTC for 82.70 CZK @ 2,085,153 CZK\nFees are 0.29045306 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.936677961979265209185902796 CZK)\nThe limits being 0.03 % (15.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61629004 BTC (493,428.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,643 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,085,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.43 % (791,630.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,275.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02981212 BTC (62,162.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5410 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003966 BTC for 82.70 CZK @ 2,085,153 CZK\nFees are 0.29045306 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.936677961979265209185902796 CZK)\nThe limits being 0.03 % (15.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61629004 BTC (493,428.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,643 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,085,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.43 % (791,630.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,275.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02981212 BTC (62,162.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5410 transactions" + } + ] + }, + { + "id": 7119, + "type": "message", + "date": "2025-04-25T22:00:05", + "date_unixtime": "1745611205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003961 BTC for 82.70 CZK @ 2,087,875 CZK\nFees are 0.29046566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.966627031091759503187971109 CZK)\nThe limits being 0.03 % (15.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61632965 BTC (493,511.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,726 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,087,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.75 % (793,308.32 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,192.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02985173 BTC (62,326.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.21 CZK over 5411 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003961 BTC for 82.70 CZK @ 2,087,875 CZK\nFees are 0.29046566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.966627031091759503187971109 CZK)\nThe limits being 0.03 % (15.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61632965 BTC (493,511.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,726 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,087,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.75 % (793,308.32 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,192.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02985173 BTC (62,326.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.21 CZK over 5411 transactions" + } + ] + }, + { + "id": 7120, + "type": "message", + "date": "2025-04-26T02:12:34", + "date_unixtime": "1745626354", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003973 BTC for 82.70 CZK @ 2,081,626 CZK\nFees are 0.29047366 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.897889298855967366169075240 CZK)\nThe limits being 0.03 % (15.56 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61636938 BTC (493,594.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,809 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,081,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.94 % (789,456.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,109.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02989146 BTC (62,222.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.20 CZK over 5412 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003973 BTC for 82.70 CZK @ 2,081,626 CZK\nFees are 0.29047366 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.897889298855967366169075240 CZK)\nThe limits being 0.03 % (15.56 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61636938 BTC (493,594.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,809 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,081,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.94 % (789,456.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,109.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02989146 BTC (62,222.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.20 CZK over 5412 transactions" + } + ] + }, + { + "id": 7121, + "type": "message", + "date": "2025-04-26T06:00:04", + "date_unixtime": "1745640004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003974 BTC for 82.70 CZK @ 2,080,970 CZK\nFees are 0.29045511 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.890665899096493927017893338 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61640912 BTC (493,677.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,892 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,080,970 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.83 % (789,051.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,026.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02993120 BTC (62,285.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.20 CZK over 5413 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003974 BTC for 82.70 CZK @ 2,080,970 CZK\nFees are 0.29045511 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.890665899096493927017893338 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61640912 BTC (493,677.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,892 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,080,970 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.83 % (789,051.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,026.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02993120 BTC (62,285.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.20 CZK over 5413 transactions" + } + ] + }, + { + "id": 7122, + "type": "message", + "date": "2025-04-26T10:00:04", + "date_unixtime": "1745654404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003979 BTC for 82.69 CZK @ 2,078,271 CZK\nFees are 0.29044341 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.860980696739596884640876811 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61644891 BTC (493,760.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 800,975 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,078,271 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.47 % (787,387.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,943.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.02997099 BTC (62,287.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.20 CZK over 5414 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003979 BTC for 82.69 CZK @ 2,078,271 CZK\nFees are 0.29044341 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.860980696739596884640876811 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61644891 BTC (493,760.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 800,975 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,078,271 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.47 % (787,387.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,943.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.02997099 BTC (62,287.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.20 CZK over 5414 transactions" + } + ] + }, + { + "id": 7123, + "type": "message", + "date": "2025-04-26T14:00:04", + "date_unixtime": "1745668804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003998 BTC for 82.71 CZK @ 2,068,787 CZK\nFees are 0.29049852 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.756653705776655143715355435 CZK)\nThe limits being 0.03 % (15.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61648889 BTC (493,843.02 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,068,787 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.26 % (781,540.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,860.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03001097 BTC (62,086.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.20 CZK over 5415 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003998 BTC for 82.71 CZK @ 2,068,787 CZK\nFees are 0.29049852 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.756653705776655143715355435 CZK)\nThe limits being 0.03 % (15.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61648889 BTC (493,843.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,068,787 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.26 % (781,540.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,860.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03001097 BTC (62,086.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.20 CZK over 5415 transactions" + } + ] + }, + { + "id": 7124, + "type": "message", + "date": "2025-04-26T18:00:05", + "date_unixtime": "1745683205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003990 BTC for 82.70 CZK @ 2,072,631 CZK\nFees are 0.29045594 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.798938626586396234732321587 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61652879 BTC (493,926.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,140 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,072,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.71 % (783,910.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,777.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03005087 BTC (62,284.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.20 CZK over 5416 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003990 BTC for 82.70 CZK @ 2,072,631 CZK\nFees are 0.29045594 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.798938626586396234732321587 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61652879 BTC (493,926.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,140 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,072,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.71 % (783,910.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,777.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03005087 BTC (62,284.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.20 CZK over 5416 transactions" + } + ] + }, + { + "id": 7125, + "type": "message", + "date": "2025-04-26T22:00:05", + "date_unixtime": "1745697605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003995 BTC for 82.70 CZK @ 2,070,079 CZK\nFees are 0.29046187 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.770869618413150967857804318 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61656874 BTC (494,009.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,070,079 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.36 % (782,337.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,694.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03009082 BTC (62,290.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.20 CZK over 5417 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003995 BTC for 82.70 CZK @ 2,070,079 CZK\nFees are 0.29046187 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.770869618413150967857804318 CZK)\nThe limits being 0.03 % (15.57 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61656874 BTC (494,009.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,070,079 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.36 % (782,337.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,694.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03009082 BTC (62,290.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.20 CZK over 5417 transactions" + } + ] + }, + { + "id": 7126, + "type": "message", + "date": "2025-04-27T02:00:05", + "date_unixtime": "1745712005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003979 BTC for 82.71 CZK @ 2,078,578 CZK\nFees are 0.29048630 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.864356015068146132917798513 CZK)\nThe limits being 0.03 % (15.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61660853 BTC (494,092.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,306 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,078,578 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.40 % (787,576.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,611.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03013061 BTC (62,628.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5418 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003979 BTC for 82.71 CZK @ 2,078,578 CZK\nFees are 0.29048630 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.864356015068146132917798513 CZK)\nThe limits being 0.03 % (15.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61660853 BTC (494,092.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,306 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,078,578 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.40 % (787,576.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,611.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03013061 BTC (62,628.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5418 transactions" + } + ] + }, + { + "id": 7127, + "type": "message", + "date": "2025-04-27T06:00:04", + "date_unixtime": "1745726404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003996 BTC for 82.71 CZK @ 2,069,791 CZK\nFees are 0.29049418 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.767703197467522330501902002 CZK)\nThe limits being 0.03 % (15.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61664849 BTC (494,175.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,069,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.28 % (782,158.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,528.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03017057 BTC (62,446.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5419 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003996 BTC for 82.71 CZK @ 2,069,791 CZK\nFees are 0.29049418 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.767703197467522330501902002 CZK)\nThe limits being 0.03 % (15.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61664849 BTC (494,175.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,069,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.28 % (782,158.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,528.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03017057 BTC (62,446.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5419 transactions" + } + ] + }, + { + "id": 7128, + "type": "message", + "date": "2025-04-27T10:00:04", + "date_unixtime": "1745740804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003999 BTC for 82.70 CZK @ 2,067,948 CZK\nFees are 0.29045340 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.747429304261790410233350565 CZK)\nThe limits being 0.03 % (15.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61668848 BTC (494,257.98 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,471 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,067,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.02 % (781,021.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,445.63 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03021056 BTC (62,473.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5420 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003999 BTC for 82.70 CZK @ 2,067,948 CZK\nFees are 0.29045340 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.747429304261790410233350565 CZK)\nThe limits being 0.03 % (15.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61668848 BTC (494,257.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,471 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,067,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.02 % (781,021.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,445.63 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03021056 BTC (62,473.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5420 transactions" + } + ] + }, + { + "id": 7129, + "type": "message", + "date": "2025-04-27T14:00:04", + "date_unixtime": "1745755204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004005 BTC for 82.69 CZK @ 2,064,733 CZK\nFees are 0.29043689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.712059935046314180020365673 CZK)\nThe limits being 0.03 % (15.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61672853 BTC (494,340.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,554 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,064,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.59 % (779,038.61 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,362.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03025061 BTC (62,459.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5421 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004005 BTC for 82.69 CZK @ 2,064,733 CZK\nFees are 0.29043689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.712059935046314180020365673 CZK)\nThe limits being 0.03 % (15.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61672853 BTC (494,340.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,554 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,064,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.59 % (779,038.61 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,362.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03025061 BTC (62,459.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5421 transactions" + } + ] + }, + { + "id": 7130, + "type": "message", + "date": "2025-04-27T18:00:04", + "date_unixtime": "1745769604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004009 BTC for 82.69 CZK @ 2,062,658 CZK\nFees are 0.29043480 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.689235312972319505825395601 CZK)\nThe limits being 0.03 % (15.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61676862 BTC (494,423.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,062,658 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.31 % (777,758.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,279.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03029070 BTC (62,479.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5422 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004009 BTC for 82.69 CZK @ 2,062,658 CZK\nFees are 0.29043480 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.689235312972319505825395601 CZK)\nThe limits being 0.03 % (15.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61676862 BTC (494,423.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,062,658 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.31 % (777,758.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,279.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03029070 BTC (62,479.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5422 transactions" + } + ] + }, + { + "id": 7131, + "type": "message", + "date": "2025-04-27T22:00:04", + "date_unixtime": "1745784004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003999 BTC for 82.70 CZK @ 2,068,011 CZK\nFees are 0.29046224 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.748121956747283482554744315 CZK)\nThe limits being 0.03 % (15.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61680861 BTC (494,506.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,719 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,068,011 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.95 % (781,060.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,196.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03033069 BTC (62,724.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5423 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003999 BTC for 82.70 CZK @ 2,068,011 CZK\nFees are 0.29046224 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.748121956747283482554744315 CZK)\nThe limits being 0.03 % (15.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61680861 BTC (494,506.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,719 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,068,011 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.95 % (781,060.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,196.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03033069 BTC (62,724.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5423 transactions" + } + ] + }, + { + "id": 7132, + "type": "message", + "date": "2025-04-28T02:00:04", + "date_unixtime": "1745798404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004009 BTC for 82.71 CZK @ 2,063,000 CZK\nFees are 0.29048293 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.692995437893041603079667659 CZK)\nThe limits being 0.03 % (15.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61684870 BTC (494,589.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,063,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.30 % (777,968.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,113.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03037078 BTC (62,654.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.19 CZK over 5424 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004009 BTC for 82.71 CZK @ 2,063,000 CZK\nFees are 0.29048293 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.692995437893041603079667659 CZK)\nThe limits being 0.03 % (15.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61684870 BTC (494,589.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,063,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.30 % (777,968.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,113.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03037078 BTC (62,654.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.19 CZK over 5424 transactions" + } + ] + }, + { + "id": 7133, + "type": "message", + "date": "2025-04-28T06:00:05", + "date_unixtime": "1745812805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004010 BTC for 82.70 CZK @ 2,062,315 CZK\nFees are 0.29045896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.685464193527143774842912648 CZK)\nThe limits being 0.03 % (15.68 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61688880 BTC (494,672.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,883 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,062,315 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.18 % (777,546.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,030.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03041088 BTC (62,716.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 5425 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004010 BTC for 82.70 CZK @ 2,062,315 CZK\nFees are 0.29045896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.685464193527143774842912648 CZK)\nThe limits being 0.03 % (15.68 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61688880 BTC (494,672.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,883 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,062,315 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.18 % (777,546.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,030.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03041088 BTC (62,716.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 5425 transactions" + } + ] + }, + { + "id": 7134, + "type": "message", + "date": "2025-04-28T10:00:05", + "date_unixtime": "1745827205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003974 BTC for 82.70 CZK @ 2,080,986 CZK\nFees are 0.29045734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.890841812087487452697641797 CZK)\nThe limits being 0.03 % (15.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61692854 BTC (494,755.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 801,966 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,080,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.49 % (789,063.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,947.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03045062 BTC (63,367.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 5426 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003974 BTC for 82.70 CZK @ 2,080,986 CZK\nFees are 0.29045734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.890841812087487452697641797 CZK)\nThe limits being 0.03 % (15.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61692854 BTC (494,755.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 801,966 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,080,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.49 % (789,063.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,947.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03045062 BTC (63,367.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 5426 transactions" + } + ] + }, + { + "id": 7135, + "type": "message", + "date": "2025-04-28T14:00:06", + "date_unixtime": "1745841606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003950 BTC for 82.62 CZK @ 2,091,766 CZK\nFees are 0.29019875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.009421757015004446462697015 CZK)\nThe limits being 0.03 % (15.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61696804 BTC (494,838.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,049 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,091,766 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.80 % (795,713.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,864.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03049012 BTC (63,778.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 5427 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003950 BTC for 82.62 CZK @ 2,091,766 CZK\nFees are 0.29019875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.009421757015004446462697015 CZK)\nThe limits being 0.03 % (15.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61696804 BTC (494,838.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,049 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,091,766 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.80 % (795,713.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,864.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03049012 BTC (63,778.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 5427 transactions" + } + ] + }, + { + "id": 7136, + "type": "message", + "date": "2025-04-28T18:00:05", + "date_unixtime": "1745856005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004028 BTC for 82.69 CZK @ 2,052,973 CZK\nFees are 0.29044107 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.582698421710705678090931987 CZK)\nThe limits being 0.03 % (15.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61700832 BTC (494,921.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,131 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,052,973 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 155.94 % (771,779.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,781.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03053040 BTC (62,678.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 5428 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004028 BTC for 82.69 CZK @ 2,052,973 CZK\nFees are 0.29044107 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.582698421710705678090931987 CZK)\nThe limits being 0.03 % (15.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61700832 BTC (494,921.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,131 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,052,973 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 155.94 % (771,779.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,781.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03053040 BTC (62,678.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 5428 transactions" + } + ] + }, + { + "id": 7137, + "type": "message", + "date": "2025-04-28T22:00:04", + "date_unixtime": "1745870404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004002 BTC for 82.61 CZK @ 2,064,246 CZK\nFees are 0.29015090 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.706703927308891642868152372 CZK)\nThe limits being 0.03 % (15.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61704834 BTC (495,004.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,214 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,064,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.32 % (778,734.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,698.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03057042 BTC (63,104.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 5429 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004002 BTC for 82.61 CZK @ 2,064,246 CZK\nFees are 0.29015090 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.706703927308891642868152372 CZK)\nThe limits being 0.03 % (15.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61704834 BTC (495,004.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,214 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,064,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.32 % (778,734.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,698.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03057042 BTC (63,104.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 5429 transactions" + } + ] + }, + { + "id": 7138, + "type": "message", + "date": "2025-04-29T02:00:04", + "date_unixtime": "1745884804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003983 BTC for 82.70 CZK @ 2,076,216 CZK\nFees are 0.29044791 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.838375966567428261691661410 CZK)\nThe limits being 0.03 % (15.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61708817 BTC (495,087.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,297 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,076,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.78 % (786,120.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,615.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03061025 BTC (63,553.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.18 CZK over 5430 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003983 BTC for 82.70 CZK @ 2,076,216 CZK\nFees are 0.29044791 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.838375966567428261691661410 CZK)\nThe limits being 0.03 % (15.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61708817 BTC (495,087.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,297 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,076,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.78 % (786,120.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,615.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03061025 BTC (63,553.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.18 CZK over 5430 transactions" + } + ] + }, + { + "id": 7139, + "type": "message", + "date": "2025-04-29T06:00:04", + "date_unixtime": "1745899204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003986 BTC for 82.69 CZK @ 2,074,566 CZK\nFees are 0.29043566 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.820224013744168366062484267 CZK)\nThe limits being 0.03 % (15.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61712803 BTC (495,170.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,379 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,074,566 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.55 % (785,102.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,532.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03065011 BTC (63,585.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5431 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003986 BTC for 82.69 CZK @ 2,074,566 CZK\nFees are 0.29043566 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.820224013744168366062484267 CZK)\nThe limits being 0.03 % (15.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61712803 BTC (495,170.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,379 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,074,566 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.55 % (785,102.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,532.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03065011 BTC (63,585.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5431 transactions" + } + ] + }, + { + "id": 7140, + "type": "message", + "date": "2025-04-29T10:00:06", + "date_unixtime": "1745913606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003986 BTC for 82.70 CZK @ 2,074,750 CZK\nFees are 0.29046140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.822247007275839129029330608 CZK)\nThe limits being 0.03 % (15.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61716789 BTC (495,253.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,074,750 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.55 % (785,215.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,449.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03068997 BTC (63,674.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5432 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003986 BTC for 82.70 CZK @ 2,074,750 CZK\nFees are 0.29046140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.822247007275839129029330608 CZK)\nThe limits being 0.03 % (15.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61716789 BTC (495,253.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,074,750 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.55 % (785,215.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,449.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03068997 BTC (63,674.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5432 transactions" + } + ] + }, + { + "id": 7141, + "type": "message", + "date": "2025-04-29T14:00:06", + "date_unixtime": "1745928006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003973 BTC for 82.70 CZK @ 2,081,462 CZK\nFees are 0.29045078 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.896086196926413229508449598 CZK)\nThe limits being 0.03 % (15.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61720762 BTC (495,336.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,545 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,081,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.36 % (789,357.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,366.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03072970 BTC (63,962.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5433 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003973 BTC for 82.70 CZK @ 2,081,462 CZK\nFees are 0.29045078 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.896086196926413229508449598 CZK)\nThe limits being 0.03 % (15.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61720762 BTC (495,336.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,545 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,081,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.36 % (789,357.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,366.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03072970 BTC (63,962.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5433 transactions" + } + ] + }, + { + "id": 7142, + "type": "message", + "date": "2025-04-29T18:00:04", + "date_unixtime": "1745942404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003984 BTC for 82.70 CZK @ 2,075,722 CZK\nFees are 0.29045175 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.832944672811825278192991197 CZK)\nThe limits being 0.03 % (15.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61724746 BTC (495,419.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,627 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,075,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.62 % (785,814.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,283.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03076954 BTC (63,869.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5434 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003984 BTC for 82.70 CZK @ 2,075,722 CZK\nFees are 0.29045175 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.832944672811825278192991197 CZK)\nThe limits being 0.03 % (15.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61724746 BTC (495,419.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,627 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,075,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.62 % (785,814.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,283.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03076954 BTC (63,869.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5434 transactions" + } + ] + }, + { + "id": 7143, + "type": "message", + "date": "2025-04-29T22:00:05", + "date_unixtime": "1745956805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003968 BTC for 82.69 CZK @ 2,083,919 CZK\nFees are 0.29042764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.923110726368998826687239823 CZK)\nThe limits being 0.03 % (16.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61728714 BTC (495,502.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,710 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,083,919 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.61 % (790,873.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,201.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03080922 BTC (64,203.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5435 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003968 BTC for 82.69 CZK @ 2,083,919 CZK\nFees are 0.29042764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.923110726368998826687239823 CZK)\nThe limits being 0.03 % (16.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61728714 BTC (495,502.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,710 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,083,919 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.61 % (790,873.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,201.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03080922 BTC (64,203.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5435 transactions" + } + ] + }, + { + "id": 7144, + "type": "message", + "date": "2025-04-30T02:00:04", + "date_unixtime": "1745971204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004007 BTC for 82.69 CZK @ 2,063,701 CZK\nFees are 0.29043676 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.700713591523752217873827926 CZK)\nThe limits being 0.03 % (15.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61732721 BTC (495,585.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,792 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,063,701 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.07 % (778,393.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,118.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03084929 BTC (63,663.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5436 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004007 BTC for 82.69 CZK @ 2,063,701 CZK\nFees are 0.29043676 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.700713591523752217873827926 CZK)\nThe limits being 0.03 % (15.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61732721 BTC (495,585.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,792 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,063,701 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.07 % (778,393.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,118.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03084929 BTC (63,663.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5436 transactions" + } + ] + }, + { + "id": 7145, + "type": "message", + "date": "2025-04-30T06:00:04", + "date_unixtime": "1745985604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003980 BTC for 82.70 CZK @ 2,077,944 CZK\nFees are 0.29047072 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.857385490231426189242174999 CZK)\nThe limits being 0.03 % (16.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61736701 BTC (495,668.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,875 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,077,944 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.81 % (787,185.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,035.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03088909 BTC (64,185.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.17 CZK over 5437 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003980 BTC for 82.70 CZK @ 2,077,944 CZK\nFees are 0.29047072 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.857385490231426189242174999 CZK)\nThe limits being 0.03 % (16.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61736701 BTC (495,668.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,875 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,077,944 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.81 % (787,185.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,035.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03088909 BTC (64,185.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.17 CZK over 5437 transactions" + } + ] + }, + { + "id": 7146, + "type": "message", + "date": "2025-04-30T10:00:05", + "date_unixtime": "1746000005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003988 BTC for 82.71 CZK @ 2,073,856 CZK\nFees are 0.29048199 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.812417907434310904812094480 CZK)\nThe limits being 0.03 % (16.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61740689 BTC (495,751.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 802,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,073,856 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.28 % (784,661.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,952.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03092897 BTC (64,142.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5438 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003988 BTC for 82.71 CZK @ 2,073,856 CZK\nFees are 0.29048199 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.812417907434310904812094480 CZK)\nThe limits being 0.03 % (16.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61740689 BTC (495,751.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 802,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,073,856 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.28 % (784,661.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,952.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03092897 BTC (64,142.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5438 transactions" + } + ] + }, + { + "id": 7147, + "type": "message", + "date": "2025-04-30T14:00:05", + "date_unixtime": "1746014405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003970 BTC for 82.70 CZK @ 2,083,009 CZK\nFees are 0.29044707 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.913094717355753602943852686 CZK)\nThe limits being 0.03 % (16.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61744659 BTC (495,834.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,083,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.39 % (790,312.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,869.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03096867 BTC (64,508.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5439 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003970 BTC for 82.70 CZK @ 2,083,009 CZK\nFees are 0.29044707 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.913094717355753602943852686 CZK)\nThe limits being 0.03 % (16.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61744659 BTC (495,834.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,083,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.39 % (790,312.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,869.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03096867 BTC (64,508.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5439 transactions" + } + ] + }, + { + "id": 7148, + "type": "message", + "date": "2025-04-30T18:00:07", + "date_unixtime": "1746028807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004002 BTC for 82.69 CZK @ 2,066,231 CZK\nFees are 0.29042993 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.728540718928029756920244413 CZK)\nThe limits being 0.03 % (16.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61748661 BTC (495,917.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,123 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,066,231 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.27 % (779,952.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,786.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03100869 BTC (64,071.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5440 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004002 BTC for 82.69 CZK @ 2,066,231 CZK\nFees are 0.29042993 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.728540718928029756920244413 CZK)\nThe limits being 0.03 % (16.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61748661 BTC (495,917.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,123 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,066,231 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.27 % (779,952.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,786.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03100869 BTC (64,071.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5440 transactions" + } + ] + }, + { + "id": 7149, + "type": "message", + "date": "2025-04-30T22:00:04", + "date_unixtime": "1746043204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003999 BTC for 82.70 CZK @ 2,068,057 CZK\nFees are 0.29046870 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.748627705007965992494635867 CZK)\nThe limits being 0.03 % (16.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61752660 BTC (496,000.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,205 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,068,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.48 % (781,079.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,703.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03104868 BTC (64,210.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5441 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003999 BTC for 82.70 CZK @ 2,068,057 CZK\nFees are 0.29046870 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.748627705007965992494635867 CZK)\nThe limits being 0.03 % (16.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61752660 BTC (496,000.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,205 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,068,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.48 % (781,079.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,703.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03104868 BTC (64,210.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5441 transactions" + } + ] + }, + { + "id": 7150, + "type": "message", + "date": "2025-05-01T02:00:05", + "date_unixtime": "1746057605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003987 BTC for 82.70 CZK @ 2,074,129 CZK\nFees are 0.29044736 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.815419409293457348740156880 CZK)\nThe limits being 0.03 % (16.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61756647 BTC (496,083.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,074,129 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.21 % (784,829.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,620.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03108855 BTC (64,481.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5442 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003987 BTC for 82.70 CZK @ 2,074,129 CZK\nFees are 0.29044736 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.815419409293457348740156880 CZK)\nThe limits being 0.03 % (16.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61756647 BTC (496,083.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,074,129 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.21 % (784,829.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,620.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03108855 BTC (64,481.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5442 transactions" + } + ] + }, + { + "id": 7151, + "type": "message", + "date": "2025-05-01T06:00:05", + "date_unixtime": "1746072005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003960 BTC for 82.71 CZK @ 2,088,609 CZK\nFees are 0.29049437 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.974697010463378176382660689 CZK)\nThe limits being 0.03 % (16.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61760607 BTC (496,166.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,371 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,088,609 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.98 % (793,770.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,537.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03112815 BTC (65,014.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5443 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003960 BTC for 82.71 CZK @ 2,088,609 CZK\nFees are 0.29049437 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (22.974697010463378176382660689 CZK)\nThe limits being 0.03 % (16.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61760607 BTC (496,166.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,371 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,088,609 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.98 % (793,770.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,537.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03112815 BTC (65,014.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5443 transactions" + } + ] + }, + { + "id": 7152, + "type": "message", + "date": "2025-05-01T10:00:04", + "date_unixtime": "1746086404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003947 BTC for 82.71 CZK @ 2,095,455 CZK\nFees are 0.29048986 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.050009465477365829679728753 CZK)\nThe limits being 0.03 % (16.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61764554 BTC (496,249.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,454 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,095,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 160.81 % (797,999.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,454.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03116762 BTC (65,310.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.16 CZK over 5444 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003947 BTC for 82.71 CZK @ 2,095,455 CZK\nFees are 0.29048986 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.050009465477365829679728753 CZK)\nThe limits being 0.03 % (16.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61764554 BTC (496,249.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,454 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,095,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 160.81 % (797,999.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,454.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03116762 BTC (65,310.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.16 CZK over 5444 transactions" + } + ] + }, + { + "id": 7153, + "type": "message", + "date": "2025-05-01T14:00:04", + "date_unixtime": "1746100804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003912 BTC for 82.71 CZK @ 2,114,171 CZK\nFees are 0.29048546 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.255881836883790169987864561 CZK)\nThe limits being 0.03 % (16.49 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61768466 BTC (496,332.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,114,171 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.11 % (809,558.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,371.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03120674 BTC (65,976.39 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.15 CZK over 5445 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003912 BTC for 82.71 CZK @ 2,114,171 CZK\nFees are 0.29048546 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.255881836883790169987864561 CZK)\nThe limits being 0.03 % (16.49 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61768466 BTC (496,332.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,114,171 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.11 % (809,558.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,371.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03120674 BTC (65,976.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.15 CZK over 5445 transactions" + } + ] + }, + { + "id": 7154, + "type": "message", + "date": "2025-05-01T18:00:04", + "date_unixtime": "1746115204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003865 BTC for 82.71 CZK @ 2,139,947 CZK\nFees are 0.29049455 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.539419492835876502100346072 CZK)\nThe limits being 0.03 % (16.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61772331 BTC (496,415.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,621 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,139,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.29 % (825,479.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,288.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03124539 BTC (66,863.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.15 CZK over 5446 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003865 BTC for 82.71 CZK @ 2,139,947 CZK\nFees are 0.29049455 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.539419492835876502100346072 CZK)\nThe limits being 0.03 % (16.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61772331 BTC (496,415.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,621 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,139,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.29 % (825,479.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,288.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03124539 BTC (66,863.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.15 CZK over 5446 transactions" + } + ] + }, + { + "id": 7155, + "type": "message", + "date": "2025-05-01T22:00:04", + "date_unixtime": "1746129604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003888 BTC for 82.70 CZK @ 2,127,048 CZK\nFees are 0.29046172 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.397524227190430202111539653 CZK)\nThe limits being 0.03 % (16.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61776219 BTC (496,498.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,705 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,127,048 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.66 % (817,511.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,205.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03128427 BTC (66,543.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.15 CZK over 5447 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003888 BTC for 82.70 CZK @ 2,127,048 CZK\nFees are 0.29046172 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.397524227190430202111539653 CZK)\nThe limits being 0.03 % (16.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61776219 BTC (496,498.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,705 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,127,048 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.66 % (817,511.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,205.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03128427 BTC (66,543.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.15 CZK over 5447 transactions" + } + ] + }, + { + "id": 7156, + "type": "message", + "date": "2025-05-02T02:00:04", + "date_unixtime": "1746144004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003884 BTC for 82.70 CZK @ 2,129,125 CZK\nFees are 0.29044622 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.420370839292137662362985985 CZK)\nThe limits being 0.03 % (16.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61780103 BTC (496,581.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,789 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,129,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.89 % (818,793.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,122.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03132311 BTC (66,690.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.15 CZK over 5448 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003884 BTC for 82.70 CZK @ 2,129,125 CZK\nFees are 0.29044622 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.420370839292137662362985985 CZK)\nThe limits being 0.03 % (16.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61780103 BTC (496,581.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,789 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,129,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.89 % (818,793.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,122.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03132311 BTC (66,690.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.15 CZK over 5448 transactions" + } + ] + }, + { + "id": 7157, + "type": "message", + "date": "2025-05-02T06:00:06", + "date_unixtime": "1746158406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003865 BTC for 82.70 CZK @ 2,139,820 CZK\nFees are 0.29047731 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.538023187665937652885018862 CZK)\nThe limits being 0.03 % (16.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61783968 BTC (496,664.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,873 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,139,820 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 166.19 % (825,401.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,039.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03136176 BTC (67,108.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.15 CZK over 5449 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003865 BTC for 82.70 CZK @ 2,139,820 CZK\nFees are 0.29047731 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.538023187665937652885018862 CZK)\nThe limits being 0.03 % (16.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61783968 BTC (496,664.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,873 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,139,820 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 166.19 % (825,401.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,039.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03136176 BTC (67,108.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.15 CZK over 5449 transactions" + } + ] + }, + { + "id": 7158, + "type": "message", + "date": "2025-05-02T10:00:04", + "date_unixtime": "1746172804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003903 BTC for 82.70 CZK @ 2,118,937 CZK\nFees are 0.29047045 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.308303705924983796782999190 CZK)\nThe limits being 0.03 % (16.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61787871 BTC (496,747.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 803,956 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,118,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.56 % (812,498.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,956.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03140079 BTC (66,536.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.15 CZK over 5450 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003903 BTC for 82.70 CZK @ 2,118,937 CZK\nFees are 0.29047045 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.04 % (23.308303705924983796782999190 CZK)\nThe limits being 0.03 % (16.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61787871 BTC (496,747.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 803,956 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,118,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.56 % (812,498.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,956.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03140079 BTC (66,536.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.15 CZK over 5450 transactions" + } + ] + }, + { + "id": 7159, + "type": "message", + "date": "2025-05-02T14:00:04", + "date_unixtime": "1746187204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003885 BTC for 82.70 CZK @ 2,128,615 CZK\nFees are 0.29045144 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.414763633075740699059084710 CZK)\nThe limits being 0.03 % (16.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61791756 BTC (496,830.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,040 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,128,615 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.74 % (818,478.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,873.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03143964 BTC (66,922.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5451 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003885 BTC for 82.70 CZK @ 2,128,615 CZK\nFees are 0.29045144 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.414763633075740699059084710 CZK)\nThe limits being 0.03 % (16.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61791756 BTC (496,830.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,040 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,128,615 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.74 % (818,478.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,873.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03143964 BTC (66,922.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5451 transactions" + } + ] + }, + { + "id": 7160, + "type": "message", + "date": "2025-05-02T18:00:05", + "date_unixtime": "1746201605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003867 BTC for 82.70 CZK @ 2,138,606 CZK\nFees are 0.29046269 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.524664846556576162381754369 CZK)\nThe limits being 0.03 % (16.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61795623 BTC (496,913.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,124 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,138,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.95 % (824,651.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,790.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03147831 BTC (67,319.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5452 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003867 BTC for 82.70 CZK @ 2,138,606 CZK\nFees are 0.29046269 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.524664846556576162381754369 CZK)\nThe limits being 0.03 % (16.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61795623 BTC (496,913.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,124 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,138,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.95 % (824,651.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,790.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03147831 BTC (67,319.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5452 transactions" + } + ] + }, + { + "id": 7161, + "type": "message", + "date": "2025-05-02T22:00:04", + "date_unixtime": "1746216004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003877 BTC for 82.69 CZK @ 2,132,931 CZK\nFees are 0.29044103 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.462237968503068766667707646 CZK)\nThe limits being 0.03 % (16.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61799500 BTC (496,996.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,132,931 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 165.22 % (821,144.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,707.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03151708 BTC (67,223.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5453 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003877 BTC for 82.69 CZK @ 2,132,931 CZK\nFees are 0.29044103 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.462237968503068766667707646 CZK)\nThe limits being 0.03 % (16.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61799500 BTC (496,996.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,132,931 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 165.22 % (821,144.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,707.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03151708 BTC (67,223.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5453 transactions" + } + ] + }, + { + "id": 7162, + "type": "message", + "date": "2025-05-03T02:00:06", + "date_unixtime": "1746230406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003885 BTC for 82.71 CZK @ 2,128,884 CZK\nFees are 0.29048813 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.417721161007259661968182149 CZK)\nThe limits being 0.03 % (16.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61803385 BTC (497,079.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,128,884 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.69 % (818,642.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,624.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03155593 BTC (67,178.91 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5454 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003885 BTC for 82.71 CZK @ 2,128,884 CZK\nFees are 0.29048813 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.417721161007259661968182149 CZK)\nThe limits being 0.03 % (16.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61803385 BTC (497,079.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,128,884 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.69 % (818,642.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,624.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03155593 BTC (67,178.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5454 transactions" + } + ] + }, + { + "id": 7163, + "type": "message", + "date": "2025-05-03T06:00:04", + "date_unixtime": "1746244804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003889 BTC for 82.70 CZK @ 2,126,510 CZK\nFees are 0.29046297 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.391609177341890167647996733 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61807274 BTC (497,162.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,375 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,126,510 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.37 % (817,175.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,541.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03159482 BTC (67,186.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5455 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003889 BTC for 82.70 CZK @ 2,126,510 CZK\nFees are 0.29046297 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.391609177341890167647996733 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61807274 BTC (497,162.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,375 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,126,510 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.37 % (817,175.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,541.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03159482 BTC (67,186.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5455 transactions" + } + ] + }, + { + "id": 7164, + "type": "message", + "date": "2025-05-03T10:00:04", + "date_unixtime": "1746259204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003893 BTC for 82.70 CZK @ 2,124,322 CZK\nFees are 0.29046257 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.367542173417953678948750014 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61811167 BTC (497,245.40 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,459 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,124,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.07 % (815,822.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,458.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03163375 BTC (67,200.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5456 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003893 BTC for 82.70 CZK @ 2,124,322 CZK\nFees are 0.29046257 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.367542173417953678948750014 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61811167 BTC (497,245.40 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,459 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,124,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.07 % (815,822.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,458.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03163375 BTC (67,200.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5456 transactions" + } + ] + }, + { + "id": 7165, + "type": "message", + "date": "2025-05-03T14:00:05", + "date_unixtime": "1746273605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003905 BTC for 82.70 CZK @ 2,117,819 CZK\nFees are 0.29046603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.296011831828038485020737279 CZK)\nThe limits being 0.03 % (16.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61815072 BTC (497,328.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,117,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.23 % (811,803.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,375.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03167280 BTC (67,077.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.14 CZK over 5457 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003905 BTC for 82.70 CZK @ 2,117,819 CZK\nFees are 0.29046603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.296011831828038485020737279 CZK)\nThe limits being 0.03 % (16.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61815072 BTC (497,328.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,117,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.23 % (811,803.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,375.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03167280 BTC (67,077.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.14 CZK over 5457 transactions" + } + ] + }, + { + "id": 7166, + "type": "message", + "date": "2025-05-03T18:00:04", + "date_unixtime": "1746288004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003893 BTC for 82.70 CZK @ 2,124,250 CZK\nFees are 0.29045273 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.366750567721426074754286022 CZK)\nThe limits being 0.03 % (16.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61818965 BTC (497,411.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,626 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,124,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.00 % (815,778.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,292.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03171173 BTC (67,363.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5458 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003893 BTC for 82.70 CZK @ 2,124,250 CZK\nFees are 0.29045273 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.366750567721426074754286022 CZK)\nThe limits being 0.03 % (16.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61818965 BTC (497,411.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,626 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,124,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.00 % (815,778.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,292.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03171173 BTC (67,363.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5458 transactions" + } + ] + }, + { + "id": 7167, + "type": "message", + "date": "2025-05-03T22:00:04", + "date_unixtime": "1746302404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003898 BTC for 82.71 CZK @ 2,121,824 CZK\nFees are 0.29049367 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.340066871644472667878944984 CZK)\nThe limits being 0.03 % (16.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61822863 BTC (497,494.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,709 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,121,824 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.68 % (814,278.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,209.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03175071 BTC (67,369.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5459 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003898 BTC for 82.71 CZK @ 2,121,824 CZK\nFees are 0.29049367 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.340066871644472667878944984 CZK)\nThe limits being 0.03 % (16.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61822863 BTC (497,494.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,709 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,121,824 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.68 % (814,278.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,209.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03175071 BTC (67,369.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5459 transactions" + } + ] + }, + { + "id": 7168, + "type": "message", + "date": "2025-05-04T02:00:05", + "date_unixtime": "1746316805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003912 BTC for 82.70 CZK @ 2,113,968 CZK\nFees are 0.29045758 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.253649950632907523055807741 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61826775 BTC (497,577.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,793 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,113,968 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.67 % (809,420.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,126.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03178983 BTC (67,202.69 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5460 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003912 BTC for 82.70 CZK @ 2,113,968 CZK\nFees are 0.29045758 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.253649950632907523055807741 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61826775 BTC (497,577.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,793 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,113,968 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.67 % (809,420.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,126.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03178983 BTC (67,202.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5460 transactions" + } + ] + }, + { + "id": 7169, + "type": "message", + "date": "2025-05-04T06:00:04", + "date_unixtime": "1746331204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003913 BTC for 82.70 CZK @ 2,113,382 CZK\nFees are 0.29045133 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.247207162358273005890067104 CZK)\nThe limits being 0.03 % (16.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61830688 BTC (497,660.35 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,876 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,113,382 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.57 % (809,058.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,043.26 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03182896 BTC (67,266.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5461 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003913 BTC for 82.70 CZK @ 2,113,382 CZK\nFees are 0.29045133 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.247207162358273005890067104 CZK)\nThe limits being 0.03 % (16.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61830688 BTC (497,660.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,876 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,113,382 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.57 % (809,058.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,043.26 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03182896 BTC (67,266.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5461 transactions" + } + ] + }, + { + "id": 7170, + "type": "message", + "date": "2025-05-04T10:00:04", + "date_unixtime": "1746345604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003908 BTC for 82.69 CZK @ 2,115,934 CZK\nFees are 0.29043044 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.275276170302610260199843026 CZK)\nThe limits being 0.03 % (16.86 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61834596 BTC (497,743.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 804,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,115,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.86 % (810,636.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,960.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03186804 BTC (67,430.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5462 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003908 BTC for 82.69 CZK @ 2,115,934 CZK\nFees are 0.29043044 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.275276170302610260199843026 CZK)\nThe limits being 0.03 % (16.86 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61834596 BTC (497,743.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 804,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,115,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.86 % (810,636.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,960.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03186804 BTC (67,430.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5462 transactions" + } + ] + }, + { + "id": 7171, + "type": "message", + "date": "2025-05-04T14:00:03", + "date_unixtime": "1746360003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003928 BTC for 82.71 CZK @ 2,105,531 CZK\nFees are 0.29048159 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.160845213341898061469175605 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61838524 BTC (497,826.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,042 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,105,531 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.54 % (804,203.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,877.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03190732 BTC (67,181.86 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5463 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003928 BTC for 82.71 CZK @ 2,105,531 CZK\nFees are 0.29048159 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.160845213341898061469175605 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61838524 BTC (497,826.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,042 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,105,531 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.54 % (804,203.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,877.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03190732 BTC (67,181.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5463 transactions" + } + ] + }, + { + "id": 7172, + "type": "message", + "date": "2025-05-04T18:00:04", + "date_unixtime": "1746374404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003926 BTC for 82.70 CZK @ 2,106,431 CZK\nFees are 0.29045773 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.170740281404285205550314093 CZK)\nThe limits being 0.03 % (16.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61842450 BTC (497,909.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,125 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,106,431 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.63 % (804,759.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,794.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03194658 BTC (67,293.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.13 CZK over 5464 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003926 BTC for 82.70 CZK @ 2,106,431 CZK\nFees are 0.29045773 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.170740281404285205550314093 CZK)\nThe limits being 0.03 % (16.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61842450 BTC (497,909.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,125 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,106,431 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.63 % (804,759.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,794.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03194658 BTC (67,293.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.13 CZK over 5464 transactions" + } + ] + }, + { + "id": 7173, + "type": "message", + "date": "2025-05-04T22:00:04", + "date_unixtime": "1746388804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003931 BTC for 82.71 CZK @ 2,104,051 CZK\nFees are 0.29049907 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.144562331002011910234809052 CZK)\nThe limits being 0.03 % (16.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61846381 BTC (497,992.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,208 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,104,051 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 161.31 % (803,287.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,711.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03198589 BTC (67,299.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5465 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003931 BTC for 82.71 CZK @ 2,104,051 CZK\nFees are 0.29049907 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.144562331002011910234809052 CZK)\nThe limits being 0.03 % (16.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61846381 BTC (497,992.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,208 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,104,051 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 161.31 % (803,287.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,711.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03198589 BTC (67,299.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5465 transactions" + } + ] + }, + { + "id": 7174, + "type": "message", + "date": "2025-05-05T02:00:06", + "date_unixtime": "1746403206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003979 BTC for 82.70 CZK @ 2,078,333 CZK\nFees are 0.29045207 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.861662356669976269285197211 CZK)\nThe limits being 0.03 % (16.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61850360 BTC (498,075.30 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,078,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.08 % (787,381.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,628.31 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03202568 BTC (66,560.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5466 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003979 BTC for 82.70 CZK @ 2,078,333 CZK\nFees are 0.29045207 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.861662356669976269285197211 CZK)\nThe limits being 0.03 % (16.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61850360 BTC (498,075.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,078,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.08 % (787,381.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,628.31 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03202568 BTC (66,560.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5466 transactions" + } + ] + }, + { + "id": 7175, + "type": "message", + "date": "2025-05-05T06:00:04", + "date_unixtime": "1746417604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003998 BTC for 82.69 CZK @ 2,068,388 CZK\nFees are 0.29044252 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.752266891542432900555908249 CZK)\nThe limits being 0.03 % (16.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61854358 BTC (498,158.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,068,388 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.82 % (781,229.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,545.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03206566 BTC (66,324.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5467 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003998 BTC for 82.69 CZK @ 2,068,388 CZK\nFees are 0.29044252 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.752266891542432900555908249 CZK)\nThe limits being 0.03 % (16.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61854358 BTC (498,158.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,068,388 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.82 % (781,229.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,545.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03206566 BTC (66,324.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5467 transactions" + } + ] + }, + { + "id": 7176, + "type": "message", + "date": "2025-05-05T10:00:06", + "date_unixtime": "1746432006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003973 BTC for 82.71 CZK @ 2,081,713 CZK\nFees are 0.29048579 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.898845822154550691005844005 CZK)\nThe limits being 0.03 % (16.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61858331 BTC (498,241.28 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,081,713 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.45 % (789,471.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,462.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03210539 BTC (66,834.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5468 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003973 BTC for 82.71 CZK @ 2,081,713 CZK\nFees are 0.29048579 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.898845822154550691005844005 CZK)\nThe limits being 0.03 % (16.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61858331 BTC (498,241.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,081,713 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.45 % (789,471.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,462.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03210539 BTC (66,834.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5468 transactions" + } + ] + }, + { + "id": 7177, + "type": "message", + "date": "2025-05-05T14:00:08", + "date_unixtime": "1746446408", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004002 BTC for 82.69 CZK @ 2,066,232 CZK\nFees are 0.29043007 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.728551713430778382607400834 CZK)\nThe limits being 0.03 % (16.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61862333 BTC (498,324.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,066,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.50 % (779,895.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,379.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03214541 BTC (66,419.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5469 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004002 BTC for 82.69 CZK @ 2,066,232 CZK\nFees are 0.29043007 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.728551713430778382607400834 CZK)\nThe limits being 0.03 % (16.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61862333 BTC (498,324.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,066,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.50 % (779,895.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,379.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03214541 BTC (66,419.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5469 transactions" + } + ] + }, + { + "id": 7178, + "type": "message", + "date": "2025-05-05T18:00:04", + "date_unixtime": "1746460804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004006 BTC for 82.69 CZK @ 2,064,220 CZK\nFees are 0.29043727 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.706419746563512976673504938 CZK)\nThe limits being 0.03 % (16.61 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61866339 BTC (498,407.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,619 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,064,220 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.23 % (778,650.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,296.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03218547 BTC (66,437.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5470 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004006 BTC for 82.69 CZK @ 2,064,220 CZK\nFees are 0.29043727 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.706419746563512976673504938 CZK)\nThe limits being 0.03 % (16.61 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61866339 BTC (498,407.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,619 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,064,220 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.23 % (778,650.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,296.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03218547 BTC (66,437.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5470 transactions" + } + ] + }, + { + "id": 7179, + "type": "message", + "date": "2025-05-05T22:00:04", + "date_unixtime": "1746475204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003982 BTC for 82.70 CZK @ 2,076,745 CZK\nFees are 0.29044894 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.844192065340369480299614334 CZK)\nThe limits being 0.03 % (16.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61870321 BTC (498,490.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,702 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,076,745 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.76 % (786,398.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,213.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03222529 BTC (66,923.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.12 CZK over 5471 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003982 BTC for 82.70 CZK @ 2,076,745 CZK\nFees are 0.29044894 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.844192065340369480299614334 CZK)\nThe limits being 0.03 % (16.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61870321 BTC (498,490.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,702 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,076,745 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.76 % (786,398.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,213.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03222529 BTC (66,923.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.12 CZK over 5471 transactions" + } + ] + }, + { + "id": 7180, + "type": "message", + "date": "2025-05-06T02:00:05", + "date_unixtime": "1746489605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003960 BTC for 82.69 CZK @ 2,088,139 CZK\nFees are 0.29042903 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.969529585340198195205669048 CZK)\nThe limits being 0.03 % (16.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61874281 BTC (498,573.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,088,139 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 159.14 % (793,447.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,130.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03226489 BTC (67,373.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.11 CZK over 5472 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003960 BTC for 82.69 CZK @ 2,088,139 CZK\nFees are 0.29042903 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.969529585340198195205669048 CZK)\nThe limits being 0.03 % (16.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61874281 BTC (498,573.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,088,139 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 159.14 % (793,447.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,130.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03226489 BTC (67,373.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.11 CZK over 5472 transactions" + } + ] + }, + { + "id": 7181, + "type": "message", + "date": "2025-05-06T06:00:06", + "date_unixtime": "1746504006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003975 BTC for 82.70 CZK @ 2,080,472 CZK\nFees are 0.29045871 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.885190627520658826183828299 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61878256 BTC (498,656.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,867 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,080,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.17 % (788,703.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,047.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03230464 BTC (67,208.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.11 CZK over 5473 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003975 BTC for 82.70 CZK @ 2,080,472 CZK\nFees are 0.29045871 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.885190627520658826183828299 CZK)\nThe limits being 0.03 % (16.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61878256 BTC (498,656.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,867 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,080,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.17 % (788,703.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,047.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03230464 BTC (67,208.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.11 CZK over 5473 transactions" + } + ] + }, + { + "id": 7182, + "type": "message", + "date": "2025-05-06T10:00:04", + "date_unixtime": "1746518404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003982 BTC for 82.69 CZK @ 2,076,679 CZK\nFees are 0.29043971 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.843466428274519843531066682 CZK)\nThe limits being 0.03 % (16.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61882238 BTC (498,739.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 805,949 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,076,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.67 % (786,356.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,964.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03234446 BTC (67,169.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.11 CZK over 5474 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003982 BTC for 82.69 CZK @ 2,076,679 CZK\nFees are 0.29043971 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.843466428274519843531066682 CZK)\nThe limits being 0.03 % (16.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61882238 BTC (498,739.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 805,949 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,076,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.67 % (786,356.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,964.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03234446 BTC (67,169.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.11 CZK over 5474 transactions" + } + ] + }, + { + "id": 7183, + "type": "message", + "date": "2025-05-06T14:00:05", + "date_unixtime": "1746532805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00004007 BTC for 82.69 CZK @ 2,063,659 CZK\nFees are 0.29043086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.700251821395268792816358119 CZK)\nThe limits being 0.03 % (16.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61886245 BTC (498,822.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,063,659 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 156.03 % (778,299.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,881.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03238453 BTC (66,830.64 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.11 CZK over 5475 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00004007 BTC for 82.69 CZK @ 2,063,659 CZK\nFees are 0.29043086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.700251821395268792816358119 CZK)\nThe limits being 0.03 % (16.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61886245 BTC (498,822.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,063,659 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 156.03 % (778,299.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,881.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03238453 BTC (66,830.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.11 CZK over 5475 transactions" + } + ] + }, + { + "id": 7184, + "type": "message", + "date": "2025-05-06T18:00:06", + "date_unixtime": "1746547206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003983 BTC for 82.70 CZK @ 2,076,433 CZK\nFees are 0.29047825 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.840761777414499915622962115 CZK)\nThe limits being 0.03 % (16.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61890228 BTC (498,905.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,113 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,076,433 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 157.59 % (786,203.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,798.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03242436 BTC (67,327.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.11 CZK over 5476 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003983 BTC for 82.70 CZK @ 2,076,433 CZK\nFees are 0.29047825 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.840761777414499915622962115 CZK)\nThe limits being 0.03 % (16.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61890228 BTC (498,905.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,113 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,076,433 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 157.59 % (786,203.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,798.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03242436 BTC (67,327.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.11 CZK over 5476 transactions" + } + ] + }, + { + "id": 7185, + "type": "message", + "date": "2025-05-06T22:00:05", + "date_unixtime": "1746561605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003973 BTC for 82.71 CZK @ 2,081,716 CZK\nFees are 0.29048621 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.898878806382544055784617920 CZK)\nThe limits being 0.03 % (16.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61894201 BTC (498,988.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,081,716 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 158.21 % (789,473.49 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,715.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03246409 BTC (67,581.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.11 CZK over 5477 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003973 BTC for 82.71 CZK @ 2,081,716 CZK\nFees are 0.29048621 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (22.898878806382544055784617920 CZK)\nThe limits being 0.03 % (16.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61894201 BTC (498,988.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,081,716 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 158.21 % (789,473.49 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,715.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03246409 BTC (67,581.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.11 CZK over 5477 transactions" + } + ] + }, + { + "id": 7186, + "type": "message", + "date": "2025-05-07T02:00:04", + "date_unixtime": "1746576004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003893 BTC for 82.70 CZK @ 2,124,251 CZK\nFees are 0.29045287 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.366761563144458049536614143 CZK)\nThe limits being 0.03 % (17.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61898094 BTC (499,071.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,279 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,124,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.46 % (815,799.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,632.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03250302 BTC (69,044.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5478 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003893 BTC for 82.70 CZK @ 2,124,251 CZK\nFees are 0.29045287 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.366761563144458049536614143 CZK)\nThe limits being 0.03 % (17.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61898094 BTC (499,071.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,279 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,124,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.46 % (815,799.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,632.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03250302 BTC (69,044.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5478 transactions" + } + ] + }, + { + "id": 7187, + "type": "message", + "date": "2025-05-07T06:00:07", + "date_unixtime": "1746590407", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003900 BTC for 82.71 CZK @ 2,120,734 CZK\nFees are 0.29049334 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.328071849552208296602915436 CZK)\nThe limits being 0.03 % (17.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61901994 BTC (499,154.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,362 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,120,734 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.00 % (813,622.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,549.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03254202 BTC (69,012.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5479 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003900 BTC for 82.71 CZK @ 2,120,734 CZK\nFees are 0.29049334 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.328071849552208296602915436 CZK)\nThe limits being 0.03 % (17.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61901994 BTC (499,154.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,362 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,120,734 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.00 % (813,622.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,549.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03254202 BTC (69,012.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5479 transactions" + } + ] + }, + { + "id": 7188, + "type": "message", + "date": "2025-05-07T10:00:06", + "date_unixtime": "1746604806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003894 BTC for 82.71 CZK @ 2,123,911 CZK\nFees are 0.29048100 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.363023426481889657385591110 CZK)\nThe limits being 0.03 % (17.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61905888 BTC (499,237.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,445 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,123,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.37 % (815,588.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,466.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03258096 BTC (69,199.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5480 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003894 BTC for 82.71 CZK @ 2,123,911 CZK\nFees are 0.29048100 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.363023426481889657385591110 CZK)\nThe limits being 0.03 % (17.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61905888 BTC (499,237.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,445 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,123,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.37 % (815,588.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,466.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03258096 BTC (69,199.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5480 transactions" + } + ] + }, + { + "id": 7189, + "type": "message", + "date": "2025-05-07T14:00:05", + "date_unixtime": "1746619205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003894 BTC for 82.71 CZK @ 2,123,941 CZK\nFees are 0.29048510 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.363353263577478824115595415 CZK)\nThe limits being 0.03 % (17.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61909782 BTC (499,320.12 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,529 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,123,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.34 % (815,607.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,383.49 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03261990 BTC (69,282.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5481 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003894 BTC for 82.71 CZK @ 2,123,941 CZK\nFees are 0.29048510 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.363353263577478824115595415 CZK)\nThe limits being 0.03 % (17.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61909782 BTC (499,320.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,529 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,123,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.34 % (815,607.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,383.49 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03261990 BTC (69,282.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5481 transactions" + } + ] + }, + { + "id": 7190, + "type": "message", + "date": "2025-05-07T18:00:04", + "date_unixtime": "1746633604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003895 BTC for 82.70 CZK @ 2,123,277 CZK\nFees are 0.29046877 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.356041906984092262447288151 CZK)\nThe limits being 0.03 % (17.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61913677 BTC (499,403.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,123,277 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 163.23 % (815,195.46 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,300.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03265885 BTC (69,343.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5482 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003895 BTC for 82.70 CZK @ 2,123,277 CZK\nFees are 0.29046877 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.356041906984092262447288151 CZK)\nThe limits being 0.03 % (17.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61913677 BTC (499,403.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,123,277 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 163.23 % (815,195.46 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,300.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03265885 BTC (69,343.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5482 transactions" + } + ] + }, + { + "id": 7191, + "type": "message", + "date": "2025-05-07T22:00:05", + "date_unixtime": "1746648005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003910 BTC for 82.70 CZK @ 2,115,114 CZK\nFees are 0.29046638 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.266249668360227694119176234 CZK)\nThe limits being 0.03 % (17.29 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61917587 BTC (499,486.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,695 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,115,114 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 162.19 % (810,141.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,217.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03269795 BTC (69,159.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5483 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003910 BTC for 82.70 CZK @ 2,115,114 CZK\nFees are 0.29046638 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.266249668360227694119176234 CZK)\nThe limits being 0.03 % (17.29 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61917587 BTC (499,486.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,695 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,115,114 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 162.19 % (810,141.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,217.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03269795 BTC (69,159.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5483 transactions" + } + ] + }, + { + "id": 7192, + "type": "message", + "date": "2025-05-08T02:00:05", + "date_unixtime": "1746662405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003877 BTC for 82.69 CZK @ 2,132,869 CZK\nFees are 0.29043259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.461556308658668094735230921 CZK)\nThe limits being 0.03 % (17.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61921464 BTC (499,569.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,132,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 164.37 % (821,134.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,134.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03273672 BTC (69,823.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.10 CZK over 5484 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003877 BTC for 82.69 CZK @ 2,132,869 CZK\nFees are 0.29043259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.461556308658668094735230921 CZK)\nThe limits being 0.03 % (17.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61921464 BTC (499,569.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,132,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 164.37 % (821,134.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,134.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03273672 BTC (69,823.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.10 CZK over 5484 transactions" + } + ] + }, + { + "id": 7193, + "type": "message", + "date": "2025-05-08T06:00:09", + "date_unixtime": "1746676809", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003809 BTC for 82.70 CZK @ 2,171,077 CZK\nFees are 0.29045012 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.881843791152075637604953941 CZK)\nThe limits being 0.03 % (17.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61925273 BTC (499,652.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,171,077 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.08 % (844,793.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,051.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03277481 BTC (71,156.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5485 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003809 BTC for 82.70 CZK @ 2,171,077 CZK\nFees are 0.29045012 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (23.881843791152075637604953941 CZK)\nThe limits being 0.03 % (17.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61925273 BTC (499,652.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,171,077 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.08 % (844,793.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,051.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03277481 BTC (71,156.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5485 transactions" + } + ] + }, + { + "id": 7194, + "type": "message", + "date": "2025-05-08T10:00:04", + "date_unixtime": "1746691204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003785 BTC for 82.70 CZK @ 2,184,911 CZK\nFees are 0.29045912 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.034018933731938216243148979 CZK)\nThe limits being 0.03 % (17.92 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61929058 BTC (499,735.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 806,948 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,184,911 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.76 % (853,359.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,968.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03281266 BTC (71,692.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5486 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003785 BTC for 82.70 CZK @ 2,184,911 CZK\nFees are 0.29045912 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.034018933731938216243148979 CZK)\nThe limits being 0.03 % (17.92 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61929058 BTC (499,735.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 806,948 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,184,911 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.76 % (853,359.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,968.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03281266 BTC (71,692.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5486 transactions" + } + ] + }, + { + "id": 7195, + "type": "message", + "date": "2025-05-08T14:00:05", + "date_unixtime": "1746705605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003770 BTC for 82.71 CZK @ 2,193,823 CZK\nFees are 0.29048816 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.132057060500450016454346130 CZK)\nThe limits being 0.03 % (18.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61932828 BTC (499,818.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,033 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,193,823 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 171.84 % (858,878.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,885.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03285036 BTC (72,067.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5487 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003770 BTC for 82.71 CZK @ 2,193,823 CZK\nFees are 0.29048816 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.132057060500450016454346130 CZK)\nThe limits being 0.03 % (18.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61932828 BTC (499,818.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,033 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,193,823 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 171.84 % (858,878.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,885.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03285036 BTC (72,067.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5487 transactions" + } + ] + }, + { + "id": 7196, + "type": "message", + "date": "2025-05-08T18:00:04", + "date_unixtime": "1746720004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003707 BTC for 82.70 CZK @ 2,231,023 CZK\nFees are 0.29047718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.541251075242585668261973300 CZK)\nThe limits being 0.03 % (18.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61936535 BTC (499,901.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,231,023 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.42 % (881,917.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,802.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03288743 BTC (73,372.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5488 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003707 BTC for 82.70 CZK @ 2,231,023 CZK\nFees are 0.29047718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.541251075242585668261973300 CZK)\nThe limits being 0.03 % (18.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61936535 BTC (499,901.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,231,023 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.42 % (881,917.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,802.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03288743 BTC (73,372.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5488 transactions" + } + ] + }, + { + "id": 7197, + "type": "message", + "date": "2025-05-08T22:00:04", + "date_unixtime": "1746734404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003687 BTC for 82.70 CZK @ 2,243,117 CZK\nFees are 0.29047613 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.674284757349818083142416243 CZK)\nThe limits being 0.03 % (18.46 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61940222 BTC (499,984.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,243,117 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.89 % (889,407.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,719.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03292430 BTC (73,853.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5489 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003687 BTC for 82.70 CZK @ 2,243,117 CZK\nFees are 0.29047613 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.674284757349818083142416243 CZK)\nThe limits being 0.03 % (18.46 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61940222 BTC (499,984.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,243,117 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.89 % (889,407.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,719.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03292430 BTC (73,853.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5489 transactions" + } + ] + }, + { + "id": 7198, + "type": "message", + "date": "2025-05-09T02:00:04", + "date_unixtime": "1746748804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003645 BTC for 82.70 CZK @ 2,268,869 CZK\nFees are 0.29046404 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.957558545092177379172894869 CZK)\nThe limits being 0.03 % (18.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61943867 BTC (500,067.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,268,869 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.05 % (905,358.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,636.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03296075 BTC (74,783.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5490 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003645 BTC for 82.70 CZK @ 2,268,869 CZK\nFees are 0.29046404 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.957558545092177379172894869 CZK)\nThe limits being 0.03 % (18.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61943867 BTC (500,067.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,268,869 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.05 % (905,358.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,636.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03296075 BTC (74,783.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5490 transactions" + } + ] + }, + { + "id": 7199, + "type": "message", + "date": "2025-05-09T06:00:04", + "date_unixtime": "1746763204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003649 BTC for 82.69 CZK @ 2,266,168 CZK\nFees are 0.29043667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.927851353641263525045186462 CZK)\nThe limits being 0.03 % (18.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61947516 BTC (500,150.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,266,168 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.68 % (903,684.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,553.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03299724 BTC (74,777.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.09 CZK over 5491 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003649 BTC for 82.69 CZK @ 2,266,168 CZK\nFees are 0.29043667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.927851353641263525045186462 CZK)\nThe limits being 0.03 % (18.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61947516 BTC (500,150.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,266,168 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.68 % (903,684.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,553.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03299724 BTC (74,777.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.09 CZK over 5491 transactions" + } + ] + }, + { + "id": 7200, + "type": "message", + "date": "2025-05-09T10:00:05", + "date_unixtime": "1746777605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003608 BTC for 82.71 CZK @ 2,292,269 CZK\nFees are 0.29048090 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.07 % (50.429924453437359485702480341 CZK)\nThe limits being 0.03 % (18.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61951124 BTC (500,233.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,292,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.89 % (919,853.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,470.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03303332 BTC (75,721.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5492 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003608 BTC for 82.71 CZK @ 2,292,269 CZK\nFees are 0.29048090 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.07 % (50.429924453437359485702480341 CZK)\nThe limits being 0.03 % (18.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61951124 BTC (500,233.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,292,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.89 % (919,853.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,470.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03303332 BTC (75,721.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5492 transactions" + } + ] + }, + { + "id": 7201, + "type": "message", + "date": "2025-05-09T14:00:04", + "date_unixtime": "1746792004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003627 BTC for 82.69 CZK @ 2,279,790 CZK\nFees are 0.29042081 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.077684659248186901400653267 CZK)\nThe limits being 0.03 % (18.85 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61954751 BTC (500,315.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,551 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,279,790 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.31 % (912,121.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,387.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03306959 BTC (75,391.70 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5493 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003627 BTC for 82.69 CZK @ 2,279,790 CZK\nFees are 0.29042081 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.077684659248186901400653267 CZK)\nThe limits being 0.03 % (18.85 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61954751 BTC (500,315.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,551 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,279,790 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.31 % (912,121.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,387.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03306959 BTC (75,391.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5493 transactions" + } + ] + }, + { + "id": 7202, + "type": "message", + "date": "2025-05-09T18:00:05", + "date_unixtime": "1746806405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,070 CZK\nFees are 0.29045882 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.07 % (50.051537080465961980386391782 CZK)\nThe limits being 0.03 % (18.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61958386 BTC (500,398.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,275,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.69 % (909,197.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,304.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03310594 BTC (75,318.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5494 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,070 CZK\nFees are 0.29045882 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.07 % (50.051537080465961980386391782 CZK)\nThe limits being 0.03 % (18.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61958386 BTC (500,398.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,275,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.69 % (909,197.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,304.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03310594 BTC (75,318.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5494 transactions" + } + ] + }, + { + "id": 7203, + "type": "message", + "date": "2025-05-09T22:00:05", + "date_unixtime": "1746820805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003625 BTC for 82.69 CZK @ 2,281,161 CZK\nFees are 0.29043526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.07 % (50.185538279470130405649193338 CZK)\nThe limits being 0.03 % (18.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61962011 BTC (500,481.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,724 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,281,161 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.42 % (912,971.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,221.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03314219 BTC (75,602.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5495 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003625 BTC for 82.69 CZK @ 2,281,161 CZK\nFees are 0.29043526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.07 % (50.185538279470130405649193338 CZK)\nThe limits being 0.03 % (18.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61962011 BTC (500,481.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,724 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,281,161 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.42 % (912,971.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,221.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03314219 BTC (75,602.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5495 transactions" + } + ] + }, + { + "id": 7204, + "type": "message", + "date": "2025-05-10T02:00:04", + "date_unixtime": "1746835204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003631 BTC for 82.70 CZK @ 2,277,689 CZK\nFees are 0.29047316 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.054574179850007211059830938 CZK)\nThe limits being 0.03 % (18.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61965642 BTC (500,564.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,810 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,277,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.96 % (910,819.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,138.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03317850 BTC (75,570.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5496 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003631 BTC for 82.70 CZK @ 2,277,689 CZK\nFees are 0.29047316 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.054574179850007211059830938 CZK)\nThe limits being 0.03 % (18.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61965642 BTC (500,564.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,810 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,277,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.96 % (910,819.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,138.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03317850 BTC (75,570.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5496 transactions" + } + ] + }, + { + "id": 7205, + "type": "message", + "date": "2025-05-10T06:00:03", + "date_unixtime": "1746849603", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003623 BTC for 82.71 CZK @ 2,282,786 CZK\nFees are 0.29048182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.110646230327444889615575405 CZK)\nThe limits being 0.03 % (18.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61969265 BTC (500,647.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,897 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,282,786 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.56 % (913,977.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,055.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03321473 BTC (75,822.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5497 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003623 BTC for 82.71 CZK @ 2,282,786 CZK\nFees are 0.29048182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.110646230327444889615575405 CZK)\nThe limits being 0.03 % (18.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61969265 BTC (500,647.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,897 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,282,786 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.56 % (913,977.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,055.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03321473 BTC (75,822.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5497 transactions" + } + ] + }, + { + "id": 7206, + "type": "message", + "date": "2025-05-10T10:00:04", + "date_unixtime": "1746864004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003605 BTC for 82.71 CZK @ 2,294,295 CZK\nFees are 0.29049590 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.237248116198022593599240385 CZK)\nThe limits being 0.03 % (19.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61972870 BTC (500,730.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 807,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.95 % (921,109.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,972.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03325078 BTC (76,287.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.08 CZK over 5498 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003605 BTC for 82.71 CZK @ 2,294,295 CZK\nFees are 0.29049590 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.237248116198022593599240385 CZK)\nThe limits being 0.03 % (19.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61972870 BTC (500,730.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 807,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.95 % (921,109.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,972.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03325078 BTC (76,287.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.08 CZK over 5498 transactions" + } + ] + }, + { + "id": 7207, + "type": "message", + "date": "2025-05-10T14:00:04", + "date_unixtime": "1746878404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003612 BTC for 82.71 CZK @ 2,289,863 CZK\nFees are 0.29049774 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.188498419981890625336240104 CZK)\nThe limits being 0.03 % (19.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61976482 BTC (500,813.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,071 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.37 % (918,362.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,889.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03328690 BTC (76,222.46 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.07 CZK over 5499 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003612 BTC for 82.71 CZK @ 2,289,863 CZK\nFees are 0.29049774 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.188498419981890625336240104 CZK)\nThe limits being 0.03 % (19.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61976482 BTC (500,813.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,071 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.37 % (918,362.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,889.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03328690 BTC (76,222.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.07 CZK over 5499 transactions" + } + ] + }, + { + "id": 7208, + "type": "message", + "date": "2025-05-10T18:00:04", + "date_unixtime": "1746892804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003619 BTC for 82.69 CZK @ 2,284,933 CZK\nFees are 0.29043401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.134262455266748750194986240 CZK)\nThe limits being 0.03 % (19.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61980101 BTC (500,896.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,158 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,284,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.73 % (915,306.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,806.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03332309 BTC (76,141.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.07 CZK over 5500 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003619 BTC for 82.69 CZK @ 2,284,933 CZK\nFees are 0.29043401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.134262455266748750194986240 CZK)\nThe limits being 0.03 % (19.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61980101 BTC (500,896.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,158 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,284,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.73 % (915,306.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,806.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03332309 BTC (76,141.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.07 CZK over 5500 transactions" + } + ] + }, + { + "id": 7209, + "type": "message", + "date": "2025-05-10T22:00:04", + "date_unixtime": "1746907204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003622 BTC for 82.70 CZK @ 2,283,275 CZK\nFees are 0.29046382 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.116022548083364766662897419 CZK)\nThe limits being 0.03 % (19.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61983723 BTC (500,979.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,244 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,275 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.50 % (914,278.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,723.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03335931 BTC (76,168.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.07 CZK over 5501 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003622 BTC for 82.70 CZK @ 2,283,275 CZK\nFees are 0.29046382 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.116022548083364766662897419 CZK)\nThe limits being 0.03 % (19.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61983723 BTC (500,979.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,244 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,275 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.50 % (914,278.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,723.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03335931 BTC (76,168.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.07 CZK over 5501 transactions" + } + ] + }, + { + "id": 7210, + "type": "message", + "date": "2025-05-11T02:00:04", + "date_unixtime": "1746921604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003582 BTC for 82.70 CZK @ 2,308,849 CZK\nFees are 0.29047351 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.397339312406576980568011956 CZK)\nThe limits being 0.03 % (19.28 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61987305 BTC (501,062.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.63 % (930,130.38 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,640.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03339513 BTC (77,104.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.07 CZK over 5502 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003582 BTC for 82.70 CZK @ 2,308,849 CZK\nFees are 0.29047351 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.397339312406576980568011956 CZK)\nThe limits being 0.03 % (19.28 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61987305 BTC (501,062.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.63 % (930,130.38 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,640.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03339513 BTC (77,104.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.07 CZK over 5502 transactions" + } + ] + }, + { + "id": 7211, + "type": "message", + "date": "2025-05-11T06:00:04", + "date_unixtime": "1746936004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003597 BTC for 82.71 CZK @ 2,299,418 CZK\nFees are 0.29049839 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.293595029019227809699690229 CZK)\nThe limits being 0.03 % (19.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61990902 BTC (501,145.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,418 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.43 % (924,283.89 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,557.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03343110 BTC (76,872.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.07 CZK over 5503 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003597 BTC for 82.71 CZK @ 2,299,418 CZK\nFees are 0.29049839 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.293595029019227809699690229 CZK)\nThe limits being 0.03 % (19.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61990902 BTC (501,145.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,418 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.43 % (924,283.89 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,557.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03343110 BTC (76,872.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.07 CZK over 5503 transactions" + } + ] + }, + { + "id": 7212, + "type": "message", + "date": "2025-05-11T10:00:03", + "date_unixtime": "1746950403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,880 CZK\nFees are 0.29048724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166685292210320586109060888 CZK)\nThe limits being 0.03 % (19.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61994517 BTC (501,228.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,505 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,880 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.98 % (917,131.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,474.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03346725 BTC (76,569.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.07 CZK over 5504 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,880 CZK\nFees are 0.29048724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166685292210320586109060888 CZK)\nThe limits being 0.03 % (19.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61994517 BTC (501,228.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,505 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,880 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.98 % (917,131.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,474.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03346725 BTC (76,569.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.07 CZK over 5504 transactions" + } + ] + }, + { + "id": 7213, + "type": "message", + "date": "2025-05-11T14:00:04", + "date_unixtime": "1746964804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003577 BTC for 82.70 CZK @ 2,311,863 CZK\nFees are 0.29044665 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.430487787850156546022385448 CZK)\nThe limits being 0.03 % (19.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.61998094 BTC (501,311.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,863 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.91 % (931,998.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,391.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03350302 BTC (77,454.38 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5505 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003577 BTC for 82.70 CZK @ 2,311,863 CZK\nFees are 0.29044665 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.430487787850156546022385448 CZK)\nThe limits being 0.03 % (19.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.61998094 BTC (501,311.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,863 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.91 % (931,998.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,391.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03350302 BTC (77,454.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5505 transactions" + } + ] + }, + { + "id": 7214, + "type": "message", + "date": "2025-05-11T18:00:04", + "date_unixtime": "1746979204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,752 CZK\nFees are 0.29048875 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.363267295438921677668722616 CZK)\nThe limits being 0.03 % (19.33 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62001681 BTC (501,394.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,752 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.13 % (928,209.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,308.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03353889 BTC (77,332.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5506 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,752 CZK\nFees are 0.29048875 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.363267295438921677668722616 CZK)\nThe limits being 0.03 % (19.33 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62001681 BTC (501,394.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,752 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.13 % (928,209.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,308.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03353889 BTC (77,332.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5506 transactions" + } + ] + }, + { + "id": 7215, + "type": "message", + "date": "2025-05-11T22:00:04", + "date_unixtime": "1746993604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003579 BTC for 82.71 CZK @ 2,310,849 CZK\nFees are 0.29048164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.419339343034222356426995595 CZK)\nThe limits being 0.03 % (19.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62005260 BTC (501,477.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,849 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.73 % (931,370.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,225.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03357468 BTC (77,586.02 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5507 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003579 BTC for 82.71 CZK @ 2,310,849 CZK\nFees are 0.29048164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.419339343034222356426995595 CZK)\nThe limits being 0.03 % (19.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62005260 BTC (501,477.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,849 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.73 % (931,370.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,225.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03357468 BTC (77,586.02 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5507 transactions" + } + ] + }, + { + "id": 7216, + "type": "message", + "date": "2025-05-12T02:00:04", + "date_unixtime": "1747008004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003583 BTC for 82.71 CZK @ 2,308,270 CZK\nFees are 0.29048178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.390973484793176436199230686 CZK)\nThe limits being 0.03 % (19.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62008843 BTC (501,560.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,308,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.38 % (929,770.85 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,142.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03361051 BTC (77,582.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5508 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003583 BTC for 82.71 CZK @ 2,308,270 CZK\nFees are 0.29048178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.390973484793176436199230686 CZK)\nThe limits being 0.03 % (19.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62008843 BTC (501,560.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,308,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.38 % (929,770.85 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,142.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03361051 BTC (77,582.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5508 transactions" + } + ] + }, + { + "id": 7217, + "type": "message", + "date": "2025-05-12T06:00:03", + "date_unixtime": "1747022403", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,691 CZK\nFees are 0.29044508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.373602145628375997815178257 CZK)\nThe limits being 0.03 % (19.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62012428 BTC (501,643.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 808,941 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,691 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.15 % (928,791.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,059.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03364636 BTC (77,611.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5509 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,691 CZK\nFees are 0.29044508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.373602145628375997815178257 CZK)\nThe limits being 0.03 % (19.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62012428 BTC (501,643.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 808,941 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,691 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.15 % (928,791.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,059.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03364636 BTC (77,611.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5509 transactions" + } + ] + }, + { + "id": 7218, + "type": "message", + "date": "2025-05-12T10:00:06", + "date_unixtime": "1747036806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003533 BTC for 82.71 CZK @ 2,340,990 CZK\nFees are 0.29048828 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.750890065636392072975268700 CZK)\nThe limits being 0.03 % (19.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62015961 BTC (501,726.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,029 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,340,990 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.36 % (950,060.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,976.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03368169 BTC (78,848.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5510 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003533 BTC for 82.71 CZK @ 2,340,990 CZK\nFees are 0.29048828 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.750890065636392072975268700 CZK)\nThe limits being 0.03 % (19.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62015961 BTC (501,726.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,029 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,340,990 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.36 % (950,060.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,976.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03368169 BTC (78,848.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5510 transactions" + } + ] + }, + { + "id": 7219, + "type": "message", + "date": "2025-05-12T14:00:04", + "date_unixtime": "1747051204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003551 BTC for 82.71 CZK @ 2,329,186 CZK\nFees are 0.29049606 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.621044792395862580096668140 CZK)\nThe limits being 0.03 % (19.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62019512 BTC (501,809.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,116 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,186 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.87 % (942,739.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,893.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03371720 BTC (78,533.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.06 CZK over 5511 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003551 BTC for 82.71 CZK @ 2,329,186 CZK\nFees are 0.29049606 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.621044792395862580096668140 CZK)\nThe limits being 0.03 % (19.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62019512 BTC (501,809.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,116 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,186 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.87 % (942,739.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,893.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03371720 BTC (78,533.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.06 CZK over 5511 transactions" + } + ] + }, + { + "id": 7220, + "type": "message", + "date": "2025-05-12T18:00:04", + "date_unixtime": "1747065604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,301,154 CZK\nFees are 0.29047526 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (202.50154006442115922041358306 CZK)\nThe limits being 0.03 % (19.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62023106 BTC (501,892.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,203 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.37 % (925,354.26 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,810.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03375314 BTC (77,671.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5512 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,301,154 CZK\nFees are 0.29047526 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.26 % (202.50154006442115922041358306 CZK)\nThe limits being 0.03 % (19.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62023106 BTC (501,892.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,203 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.37 % (925,354.26 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,810.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03375314 BTC (77,671.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5512 transactions" + } + ] + }, + { + "id": 7221, + "type": "message", + "date": "2025-05-12T22:00:04", + "date_unixtime": "1747080004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003616 BTC for 82.70 CZK @ 2,286,988 CZK\nFees are 0.29045424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (100.62746874875987142346918529 CZK)\nThe limits being 0.03 % (19.32 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62026722 BTC (501,975.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,290 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,286,988 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.59 % (916,567.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,727.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03378930 BTC (77,275.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5513 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003616 BTC for 82.70 CZK @ 2,286,988 CZK\nFees are 0.29045424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.13 % (100.62746874875987142346918529 CZK)\nThe limits being 0.03 % (19.32 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62026722 BTC (501,975.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,290 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,286,988 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.59 % (916,567.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,727.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03378930 BTC (77,275.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5513 transactions" + } + ] + }, + { + "id": 7222, + "type": "message", + "date": "2025-05-13T02:00:04", + "date_unixtime": "1747094404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003581 BTC for 82.69 CZK @ 2,309,251 CZK\nFees are 0.29044296 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (76.205277321054611011696426373 CZK)\nThe limits being 0.03 % (19.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62030303 BTC (502,058.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,251 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.31 % (930,376.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,644.80 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03382511 BTC (78,110.66 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5514 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003581 BTC for 82.69 CZK @ 2,309,251 CZK\nFees are 0.29044296 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.10 % (76.205277321054611011696426373 CZK)\nThe limits being 0.03 % (19.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62030303 BTC (502,058.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,251 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.31 % (930,376.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,644.80 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03382511 BTC (78,110.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5514 transactions" + } + ] + }, + { + "id": 7223, + "type": "message", + "date": "2025-05-13T06:00:05", + "date_unixtime": "1747108805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003619 BTC for 82.69 CZK @ 2,284,906 CZK\nFees are 0.29043058 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (50.267931207339660731512654036 CZK)\nThe limits being 0.03 % (19.34 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62033922 BTC (502,141.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,284,906 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.27 % (915,274.99 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,561.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03386130 BTC (77,369.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5515 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003619 BTC for 82.69 CZK @ 2,284,906 CZK\nFees are 0.29043058 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (50.267931207339660731512654036 CZK)\nThe limits being 0.03 % (19.34 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62033922 BTC (502,141.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,284,906 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.27 % (915,274.99 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,561.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03386130 BTC (77,369.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5515 transactions" + } + ] + }, + { + "id": 7224, + "type": "message", + "date": "2025-05-13T10:00:06", + "date_unixtime": "1747123206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003590 BTC for 82.71 CZK @ 2,303,837 CZK\nFees are 0.29049023 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.342201797330513120512745778 CZK)\nThe limits being 0.03 % (19.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62037512 BTC (502,224.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.58 % (927,018.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,478.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03389720 BTC (78,093.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5516 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003590 BTC for 82.71 CZK @ 2,303,837 CZK\nFees are 0.29049023 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.342201797330513120512745778 CZK)\nThe limits being 0.03 % (19.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62037512 BTC (502,224.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.58 % (927,018.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,478.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03389720 BTC (78,093.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5516 transactions" + } + ] + }, + { + "id": 7225, + "type": "message", + "date": "2025-05-13T14:00:05", + "date_unixtime": "1747137605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003561 BTC for 82.70 CZK @ 2,322,472 CZK\nFees are 0.29047444 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.547194607976267282427818278 CZK)\nThe limits being 0.03 % (19.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62041073 BTC (502,307.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,637 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,472 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.85 % (938,578.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,395.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03393281 BTC (78,808.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5517 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003561 BTC for 82.70 CZK @ 2,322,472 CZK\nFees are 0.29047444 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.547194607976267282427818278 CZK)\nThe limits being 0.03 % (19.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62041073 BTC (502,307.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,637 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,472 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.85 % (938,578.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,395.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03393281 BTC (78,808.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5517 transactions" + } + ] + }, + { + "id": 7226, + "type": "message", + "date": "2025-05-13T18:00:04", + "date_unixtime": "1747152004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003577 BTC for 82.70 CZK @ 2,311,984 CZK\nFees are 0.29046197 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.431829118632730648210714554 CZK)\nThe limits being 0.03 % (19.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62044650 BTC (502,390.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,725 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,984 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.53 % (932,071.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,312.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03396858 BTC (78,534.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.05 CZK over 5518 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003577 BTC for 82.70 CZK @ 2,311,984 CZK\nFees are 0.29046197 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.431829118632730648210714554 CZK)\nThe limits being 0.03 % (19.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62044650 BTC (502,390.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,725 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,984 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.53 % (932,071.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,312.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03396858 BTC (78,534.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.05 CZK over 5518 transactions" + } + ] + }, + { + "id": 7227, + "type": "message", + "date": "2025-05-13T22:00:04", + "date_unixtime": "1747166404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003551 BTC for 82.61 CZK @ 2,326,424 CZK\nFees are 0.29015164 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.590667615752638224676038822 CZK)\nThe limits being 0.03 % (19.78 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62048201 BTC (502,473.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,812 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,326,424 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.28 % (941,030.77 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,229.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03400409 BTC (79,107.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5519 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003551 BTC for 82.61 CZK @ 2,326,424 CZK\nFees are 0.29015164 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.590667615752638224676038822 CZK)\nThe limits being 0.03 % (19.78 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62048201 BTC (502,473.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,812 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,326,424 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.28 % (941,030.77 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,229.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03400409 BTC (79,107.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5519 transactions" + } + ] + }, + { + "id": 7228, + "type": "message", + "date": "2025-05-14T02:00:05", + "date_unixtime": "1747180805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.70 CZK @ 2,313,958 CZK\nFees are 0.29046615 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.453543291819426634646671734 CZK)\nThe limits being 0.03 % (19.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62051775 BTC (502,556.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,958 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.71 % (933,295.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,146.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03403983 BTC (78,766.75 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5520 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.70 CZK @ 2,313,958 CZK\nFees are 0.29046615 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.453543291819426634646671734 CZK)\nThe limits being 0.03 % (19.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62051775 BTC (502,556.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,958 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.71 % (933,295.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,146.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03403983 BTC (78,766.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5520 transactions" + } + ] + }, + { + "id": 7229, + "type": "message", + "date": "2025-05-14T06:00:04", + "date_unixtime": "1747195204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003590 BTC for 82.71 CZK @ 2,303,797 CZK\nFees are 0.29048519 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.341762015952522716453415832 CZK)\nThe limits being 0.03 % (19.63 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62055365 BTC (502,639.66 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 809,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,797 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.42 % (926,989.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 4,063.95 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03407573 BTC (78,503.55 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5521 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003590 BTC for 82.71 CZK @ 2,303,797 CZK\nFees are 0.29048519 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.341762015952522716453415832 CZK)\nThe limits being 0.03 % (19.63 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62055365 BTC (502,639.66 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 809,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,797 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.42 % (926,989.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 4,063.95 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03407573 BTC (78,503.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5521 transactions" + } + ] + }, + { + "id": 7230, + "type": "message", + "date": "2025-05-14T10:00:07", + "date_unixtime": "1747209607", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003588 BTC for 82.70 CZK @ 2,304,926 CZK\nFees are 0.29046569 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.354185823697326914328279117 CZK)\nThe limits being 0.03 % (19.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62058953 BTC (502,722.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,073 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,926 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.53 % (927,690.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,980.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03411161 BTC (78,624.74 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5522 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003588 BTC for 82.70 CZK @ 2,304,926 CZK\nFees are 0.29046569 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.354185823697326914328279117 CZK)\nThe limits being 0.03 % (19.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62058953 BTC (502,722.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,073 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,926 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.53 % (927,690.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,980.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03411161 BTC (78,624.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5522 transactions" + } + ] + }, + { + "id": 7231, + "type": "message", + "date": "2025-05-14T14:00:04", + "date_unixtime": "1747224004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003592 BTC for 82.70 CZK @ 2,302,474 CZK\nFees are 0.29048019 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.327216267007567056504905437 CZK)\nThe limits being 0.03 % (19.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62062545 BTC (502,805.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,474 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.20 % (926,168.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,897.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03414753 BTC (78,623.81 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5523 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003592 BTC for 82.70 CZK @ 2,302,474 CZK\nFees are 0.29048019 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.327216267007567056504905437 CZK)\nThe limits being 0.03 % (19.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62062545 BTC (502,805.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,474 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.20 % (926,168.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,897.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03414753 BTC (78,623.81 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5523 transactions" + } + ] + }, + { + "id": 7232, + "type": "message", + "date": "2025-05-14T18:00:04", + "date_unixtime": "1747238404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,807 CZK\nFees are 0.29046674 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.297871897468980924938466203 CZK)\nThe limits being 0.03 % (19.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62066141 BTC (502,888.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,807 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.84 % (924,512.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,814.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03418349 BTC (78,615.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5524 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,807 CZK\nFees are 0.29046674 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.297871897468980924938466203 CZK)\nThe limits being 0.03 % (19.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62066141 BTC (502,888.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,807 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.84 % (924,512.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,814.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03418349 BTC (78,615.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5524 transactions" + } + ] + }, + { + "id": 7233, + "type": "message", + "date": "2025-05-14T22:00:04", + "date_unixtime": "1747252804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003589 BTC for 82.69 CZK @ 2,304,044 CZK\nFees are 0.29043552 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.344488658599887854198796827 CZK)\nThe limits being 0.03 % (19.71 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62069730 BTC (502,971.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,333 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,044 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.33 % (927,142.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,731.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03421938 BTC (78,842.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.04 CZK over 5525 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003589 BTC for 82.69 CZK @ 2,304,044 CZK\nFees are 0.29043552 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.344488658599887854198796827 CZK)\nThe limits being 0.03 % (19.71 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62069730 BTC (502,971.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,333 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,044 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.33 % (927,142.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,731.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03421938 BTC (78,842.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.04 CZK over 5525 transactions" + } + ] + }, + { + "id": 7234, + "type": "message", + "date": "2025-05-15T02:00:04", + "date_unixtime": "1747267204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003589 BTC for 82.71 CZK @ 2,304,530 CZK\nFees are 0.29049675 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.349831992595433952745218984 CZK)\nThe limits being 0.03 % (19.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62073319 BTC (503,054.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,420 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,530 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.36 % (927,443.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,648.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03425527 BTC (78,942.30 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5526 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003589 BTC for 82.71 CZK @ 2,304,530 CZK\nFees are 0.29049675 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.349831992595433952745218984 CZK)\nThe limits being 0.03 % (19.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62073319 BTC (503,054.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,420 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,530 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.36 % (927,443.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,648.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03425527 BTC (78,942.30 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5526 transactions" + } + ] + }, + { + "id": 7235, + "type": "message", + "date": "2025-05-15T06:00:04", + "date_unixtime": "1747281604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003618 BTC for 82.71 CZK @ 2,285,952 CZK\nFees are 0.29048330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.145476865244722520377132220 CZK)\nThe limits being 0.03 % (19.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62076937 BTC (503,137.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,952 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.04 % (915,911.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 3,566.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03429145 BTC (78,388.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5527 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003618 BTC for 82.71 CZK @ 2,285,952 CZK\nFees are 0.29048330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.145476865244722520377132220 CZK)\nThe limits being 0.03 % (19.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62076937 BTC (503,137.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,952 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.04 % (915,911.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 3,566.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03429145 BTC (78,388.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5527 transactions" + } + ] + }, + { + "id": 7236, + "type": "message", + "date": "2025-05-15T10:00:06", + "date_unixtime": "1747296006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003654 BTC for 82.69 CZK @ 2,263,000 CZK\nFees are 0.29042801 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.892998728042437129597585245 CZK)\nThe limits being 0.03 % (19.42 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62080591 BTC (503,220.59 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,263,000 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.18 % (901,663.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,483.02 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03432799 BTC (77,684.24 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5528 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003654 BTC for 82.69 CZK @ 2,263,000 CZK\nFees are 0.29042801 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.892998728042437129597585245 CZK)\nThe limits being 0.03 % (19.42 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62080591 BTC (503,220.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,263,000 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.18 % (901,663.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,483.02 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03432799 BTC (77,684.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5528 transactions" + } + ] + }, + { + "id": 7237, + "type": "message", + "date": "2025-05-15T14:00:06", + "date_unixtime": "1747310406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,204 CZK\nFees are 0.29047592 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.027241804989277556064092048 CZK)\nThe limits being 0.03 % (19.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62084226 BTC (503,303.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,275,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.65 % (909,239.09 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,400.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03436434 BTC (78,185.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5529 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,204 CZK\nFees are 0.29047592 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.027241804989277556064092048 CZK)\nThe limits being 0.03 % (19.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62084226 BTC (503,303.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,275,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.65 % (909,239.09 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,400.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03436434 BTC (78,185.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5529 transactions" + } + ] + }, + { + "id": 7238, + "type": "message", + "date": "2025-05-15T18:00:06", + "date_unixtime": "1747324806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,269 CZK\nFees are 0.29046896 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.269956812544981453800586835 CZK)\nThe limits being 0.03 % (19.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62087826 BTC (503,386.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,765 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.35 % (922,937.68 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,317.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03440034 BTC (79,026.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5530 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,269 CZK\nFees are 0.29046896 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.269956812544981453800586835 CZK)\nThe limits being 0.03 % (19.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62087826 BTC (503,386.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,765 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.35 % (922,937.68 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,317.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03440034 BTC (79,026.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5530 transactions" + } + ] + }, + { + "id": 7239, + "type": "message", + "date": "2025-05-15T22:00:04", + "date_unixtime": "1747339204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003602 BTC for 82.70 CZK @ 2,295,932 CZK\nFees are 0.29046127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.255257140817798449457990868 CZK)\nThe limits being 0.03 % (19.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62091428 BTC (503,469.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,852 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,932 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.15 % (922,107.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,234.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03443636 BTC (79,063.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5531 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003602 BTC for 82.70 CZK @ 2,295,932 CZK\nFees are 0.29046127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.255257140817798449457990868 CZK)\nThe limits being 0.03 % (19.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62091428 BTC (503,469.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,852 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,932 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.15 % (922,107.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,234.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03443636 BTC (79,063.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5531 transactions" + } + ] + }, + { + "id": 7240, + "type": "message", + "date": "2025-05-16T02:00:04", + "date_unixtime": "1747353604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003584 BTC for 82.70 CZK @ 2,307,612 CZK\nFees are 0.29047994 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.383728097584792511922556764 CZK)\nThe limits being 0.03 % (19.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62095012 BTC (503,552.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 810,939 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,307,612 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.56 % (929,359.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,151.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03447220 BTC (79,548.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.03 CZK over 5532 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003584 BTC for 82.70 CZK @ 2,307,612 CZK\nFees are 0.29047994 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.383728097584792511922556764 CZK)\nThe limits being 0.03 % (19.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62095012 BTC (503,552.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 810,939 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,307,612 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.56 % (929,359.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,151.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03447220 BTC (79,548.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.03 CZK over 5532 transactions" + } + ] + }, + { + "id": 7241, + "type": "message", + "date": "2025-05-16T06:00:05", + "date_unixtime": "1747368005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003578 BTC for 82.70 CZK @ 2,311,215 CZK\nFees are 0.29044645 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.423363338154358014138887287 CZK)\nThe limits being 0.03 % (19.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62098590 BTC (503,635.54 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,026 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,215 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.97 % (931,596.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 18,068.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03450798 BTC (79,755.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5533 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003578 BTC for 82.70 CZK @ 2,311,215 CZK\nFees are 0.29044645 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.423363338154358014138887287 CZK)\nThe limits being 0.03 % (19.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62098590 BTC (503,635.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,026 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,215 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.97 % (931,596.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 18,068.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03450798 BTC (79,755.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5533 transactions" + } + ] + }, + { + "id": 7242, + "type": "message", + "date": "2025-05-16T10:00:05", + "date_unixtime": "1747382405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.70 CZK @ 2,302,853 CZK\nFees are 0.29044710 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.331383189468994414841843579 CZK)\nThe limits being 0.03 % (19.89 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62102181 BTC (503,718.53 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,112 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.91 % (926,403.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,985.08 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03454389 BTC (79,549.50 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5534 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.70 CZK @ 2,302,853 CZK\nFees are 0.29044710 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.331383189468994414841843579 CZK)\nThe limits being 0.03 % (19.89 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62102181 BTC (503,718.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,112 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.91 % (926,403.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,985.08 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03454389 BTC (79,549.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5534 transactions" + } + ] + }, + { + "id": 7243, + "type": "message", + "date": "2025-05-16T14:00:05", + "date_unixtime": "1747396805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.71 CZK @ 2,301,853 CZK\nFees are 0.29048261 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.320377678126557050323866466 CZK)\nThe limits being 0.03 % (19.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62105774 BTC (503,801.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,853 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.76 % (925,781.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,902.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03457982 BTC (79,597.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5535 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.71 CZK @ 2,301,853 CZK\nFees are 0.29048261 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.320377678126557050323866466 CZK)\nThe limits being 0.03 % (19.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62105774 BTC (503,801.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,853 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.76 % (925,781.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,902.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03457982 BTC (79,597.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5535 transactions" + } + ] + }, + { + "id": 7244, + "type": "message", + "date": "2025-05-16T18:00:04", + "date_unixtime": "1747411204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,250 CZK\nFees are 0.29044103 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.522753790744739092189681793 CZK)\nThe limits being 0.03 % (20.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62109338 BTC (503,884.51 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,320,250 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.00 % (937,207.62 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,819.10 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03461546 BTC (80,316.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5536 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003564 BTC for 82.69 CZK @ 2,320,250 CZK\nFees are 0.29044103 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.522753790744739092189681793 CZK)\nThe limits being 0.03 % (20.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62109338 BTC (503,884.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,320,250 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.00 % (937,207.62 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,819.10 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03461546 BTC (80,316.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5536 transactions" + } + ] + }, + { + "id": 7245, + "type": "message", + "date": "2025-05-16T22:00:04", + "date_unixtime": "1747425604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,523 CZK\nFees are 0.29045575 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (203.67804156373487643513585461 CZK)\nThe limits being 0.03 % (20.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62112911 BTC (503,967.49 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,373 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,523 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.26 % (933,650.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,736.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03465119 BTC (80,200.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5537 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003573 BTC for 82.70 CZK @ 2,314,523 CZK\nFees are 0.29045575 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (203.67804156373487643513585461 CZK)\nThe limits being 0.03 % (20.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62112911 BTC (503,967.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,373 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,523 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.26 % (933,650.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,736.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03465119 BTC (80,200.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5537 transactions" + } + ] + }, + { + "id": 7246, + "type": "message", + "date": "2025-05-17T02:00:06", + "date_unixtime": "1747440006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003588 BTC for 82.70 CZK @ 2,304,801 CZK\nFees are 0.29044994 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (202.82249205817542725322019531 CZK)\nThe limits being 0.03 % (19.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62116499 BTC (504,050.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,460 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.03 % (927,611.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,653.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03468707 BTC (79,946.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5538 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003588 BTC for 82.70 CZK @ 2,304,801 CZK\nFees are 0.29044994 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.25 % (202.82249205817542725322019531 CZK)\nThe limits being 0.03 % (19.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62116499 BTC (504,050.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,460 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.03 % (927,611.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,653.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03468707 BTC (79,946.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5538 transactions" + } + ] + }, + { + "id": 7247, + "type": "message", + "date": "2025-05-17T06:00:04", + "date_unixtime": "1747454404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,553 CZK\nFees are 0.29042771 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (177.60459429653117853204162001 CZK)\nThe limits being 0.03 % (20.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62120084 BTC (504,133.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,547 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,553 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.22 % (928,699.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,570.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03472292 BTC (80,090.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.02 CZK over 5539 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003585 BTC for 82.69 CZK @ 2,306,553 CZK\nFees are 0.29042771 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.22 % (177.60459429653117853204162001 CZK)\nThe limits being 0.03 % (20.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62120084 BTC (504,133.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,547 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,553 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.22 % (928,699.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,570.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03472292 BTC (80,090.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.02 CZK over 5539 transactions" + } + ] + }, + { + "id": 7248, + "type": "message", + "date": "2025-05-17T10:00:05", + "date_unixtime": "1747468805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,772 CZK\nFees are 0.29049126 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.363487185150273457451470731 CZK)\nThe limits being 0.03 % (20.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62123671 BTC (504,216.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.09 % (928,213.48 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,487.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03475879 BTC (80,145.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5540 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,772 CZK\nFees are 0.29049126 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.363487185150273457451470731 CZK)\nThe limits being 0.03 % (20.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62123671 BTC (504,216.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.09 % (928,213.48 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,487.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03475879 BTC (80,145.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5540 transactions" + } + ] + }, + { + "id": 7249, + "type": "message", + "date": "2025-05-17T14:00:04", + "date_unixtime": "1747483204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,294,093 CZK\nFees are 0.29047033 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.235027225238710283771017804 CZK)\nThe limits being 0.03 % (19.96 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62127276 BTC (504,299.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,093 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.62 % (920,958.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,404.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03479484 BTC (79,822.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5541 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,294,093 CZK\nFees are 0.29047033 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.235027225238710283771017804 CZK)\nThe limits being 0.03 % (19.96 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62127276 BTC (504,299.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,093 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.62 % (920,958.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,404.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03479484 BTC (79,822.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5541 transactions" + } + ] + }, + { + "id": 7250, + "type": "message", + "date": "2025-05-17T18:00:04", + "date_unixtime": "1747497604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,294,092 CZK\nFees are 0.29047021 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.235016230157002502337519098 CZK)\nThe limits being 0.03 % (19.98 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62130881 BTC (504,382.44 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,294,092 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.59 % (920,957.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,321.17 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03483089 BTC (79,905.28 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5542 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,294,092 CZK\nFees are 0.29047021 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.235016230157002502337519098 CZK)\nThe limits being 0.03 % (19.98 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62130881 BTC (504,382.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,294,092 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.59 % (920,957.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,321.17 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03483089 BTC (79,905.28 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5542 transactions" + } + ] + }, + { + "id": 7251, + "type": "message", + "date": "2025-05-17T22:00:06", + "date_unixtime": "1747512006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003602 BTC for 82.69 CZK @ 2,295,689 CZK\nFees are 0.29043042 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.252574477114662811199115146 CZK)\nThe limits being 0.03 % (20.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62134483 BTC (504,465.42 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,689 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.76 % (921,948.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,238.19 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03486691 BTC (80,043.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5543 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003602 BTC for 82.69 CZK @ 2,295,689 CZK\nFees are 0.29043042 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.252574477114662811199115146 CZK)\nThe limits being 0.03 % (20.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62134483 BTC (504,465.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,689 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.76 % (921,948.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,238.19 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03486691 BTC (80,043.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5543 transactions" + } + ] + }, + { + "id": 7252, + "type": "message", + "date": "2025-05-18T02:00:04", + "date_unixtime": "1747526404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003602 BTC for 82.70 CZK @ 2,295,841 CZK\nFees are 0.29044964 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.254245645515542906877566497 CZK)\nThe limits being 0.03 % (20.03 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62138085 BTC (504,548.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 811,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,295,841 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.75 % (922,042.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,155.21 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03490293 BTC (80,131.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5544 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003602 BTC for 82.70 CZK @ 2,295,841 CZK\nFees are 0.29044964 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.254245645515542906877566497 CZK)\nThe limits being 0.03 % (20.03 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62138085 BTC (504,548.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 811,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,295,841 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.75 % (922,042.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,155.21 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03490293 BTC (80,131.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5544 transactions" + } + ] + }, + { + "id": 7253, + "type": "message", + "date": "2025-05-18T06:00:06", + "date_unixtime": "1747540806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003597 BTC for 82.69 CZK @ 2,298,854 CZK\nFees are 0.29042718 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.287394120577977080219232685 CZK)\nThe limits being 0.03 % (20.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62141682 BTC (504,631.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,066 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,298,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.09 % (923,915.16 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 17,072.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03493890 BTC (80,319.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5545 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003597 BTC for 82.69 CZK @ 2,298,854 CZK\nFees are 0.29042718 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.287394120577977080219232685 CZK)\nThe limits being 0.03 % (20.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62141682 BTC (504,631.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,066 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,298,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.09 % (923,915.16 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 17,072.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03493890 BTC (80,319.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5545 transactions" + } + ] + }, + { + "id": 7254, + "type": "message", + "date": "2025-05-18T10:00:06", + "date_unixtime": "1747555206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003578 BTC for 82.71 CZK @ 2,311,614 CZK\nFees are 0.29049657 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.427750151718844302069642778 CZK)\nThe limits being 0.03 % (20.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62145260 BTC (504,714.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,311,614 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.63 % (931,843.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,989.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03497468 BTC (80,847.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.01 CZK over 5546 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003578 BTC for 82.71 CZK @ 2,311,614 CZK\nFees are 0.29049657 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.427750151718844302069642778 CZK)\nThe limits being 0.03 % (20.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62145260 BTC (504,714.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,311,614 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.63 % (931,843.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,989.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03497468 BTC (80,847.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.01 CZK over 5546 transactions" + } + ] + }, + { + "id": 7255, + "type": "message", + "date": "2025-05-18T14:00:05", + "date_unixtime": "1747569605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.71 CZK @ 2,314,126 CZK\nFees are 0.29048723 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.455390373201349836289271822 CZK)\nThe limits being 0.03 % (20.25 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62148834 BTC (504,797.38 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,240 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,126 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.91 % (933,405.19 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,906.23 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03501042 BTC (81,018.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.00 CZK over 5547 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.71 CZK @ 2,314,126 CZK\nFees are 0.29048723 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.455390373201349836289271822 CZK)\nThe limits being 0.03 % (20.25 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62148834 BTC (504,797.38 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,240 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,126 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.91 % (933,405.19 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,906.23 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03501042 BTC (81,018.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.00 CZK over 5547 transactions" + } + ] + }, + { + "id": 7256, + "type": "message", + "date": "2025-05-18T18:00:04", + "date_unixtime": "1747584004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003521 BTC for 82.70 CZK @ 2,348,772 CZK\nFees are 0.29046401 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.836493392410856237760284334 CZK)\nThe limits being 0.03 % (20.58 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62152355 BTC (504,880.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,327 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,348,772 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.14 % (954,936.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,823.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03504563 BTC (82,314.20 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.00 CZK over 5548 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003521 BTC for 82.70 CZK @ 2,348,772 CZK\nFees are 0.29046401 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.836493392410856237760284334 CZK)\nThe limits being 0.03 % (20.58 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62152355 BTC (504,880.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,327 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,348,772 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.14 % (954,936.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,823.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03504563 BTC (82,314.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.00 CZK over 5548 transactions" + } + ] + }, + { + "id": 7257, + "type": "message", + "date": "2025-05-18T22:00:04", + "date_unixtime": "1747598404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003571 BTC for 82.70 CZK @ 2,315,837 CZK\nFees are 0.29045789 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.474201994224359239999681876 CZK)\nThe limits being 0.03 % (20.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62155926 BTC (504,963.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,414 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.06 % (934,466.29 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,740.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03508134 BTC (81,242.65 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.00 CZK over 5549 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003571 BTC for 82.70 CZK @ 2,315,837 CZK\nFees are 0.29045789 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.474201994224359239999681876 CZK)\nThe limits being 0.03 % (20.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62155926 BTC (504,963.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,414 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.06 % (934,466.29 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,740.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03508134 BTC (81,242.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.00 CZK over 5549 transactions" + } + ] + }, + { + "id": 7258, + "type": "message", + "date": "2025-05-19T02:00:05", + "date_unixtime": "1747612805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003496 BTC for 82.61 CZK @ 2,362,950 CZK\nFees are 0.29014248 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.992446152140277906047369676 CZK)\nThe limits being 0.03 % (20.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62159422 BTC (505,046.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,362,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 190.82 % (963,749.59 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,657.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03511630 BTC (82,978.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.00 CZK over 5550 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003496 BTC for 82.61 CZK @ 2,362,950 CZK\nFees are 0.29014248 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.992446152140277906047369676 CZK)\nThe limits being 0.03 % (20.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62159422 BTC (505,046.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,362,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 190.82 % (963,749.59 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,657.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03511630 BTC (82,978.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.00 CZK over 5550 transactions" + } + ] + }, + { + "id": 7259, + "type": "message", + "date": "2025-05-19T06:00:04", + "date_unixtime": "1747627204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003590 BTC for 82.69 CZK @ 2,303,451 CZK\nFees are 0.29044158 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.337957913597672769263011217 CZK)\nThe limits being 0.03 % (20.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62163012 BTC (505,129.24 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,588 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,303,451 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.47 % (926,765.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,574.37 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03515220 BTC (80,971.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.00 CZK over 5551 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003590 BTC for 82.69 CZK @ 2,303,451 CZK\nFees are 0.29044158 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.337957913597672769263011217 CZK)\nThe limits being 0.03 % (20.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62163012 BTC (505,129.24 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,588 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,303,451 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.47 % (926,765.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,574.37 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03515220 BTC (80,971.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.00 CZK over 5551 transactions" + } + ] + }, + { + "id": 7260, + "type": "message", + "date": "2025-05-19T10:00:05", + "date_unixtime": "1747641605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,078 CZK\nFees are 0.29043200 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.168862208060388529466182142 CZK)\nThe limits being 0.03 % (20.13 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62166626 BTC (505,212.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,674 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,288,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.55 % (917,208.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,491.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03518834 BTC (80,513.68 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 91.00 CZK over 5552 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003614 BTC for 82.69 CZK @ 2,288,078 CZK\nFees are 0.29043200 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.168862208060388529466182142 CZK)\nThe limits being 0.03 % (20.13 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62166626 BTC (505,212.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,674 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,288,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.55 % (917,208.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,491.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03518834 BTC (80,513.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 91.00 CZK over 5552 transactions" + } + ] + }, + { + "id": 7261, + "type": "message", + "date": "2025-05-19T14:00:07", + "date_unixtime": "1747656007", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003637 BTC for 82.70 CZK @ 2,273,729 CZK\nFees are 0.29044729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.011013896509316649357164690 CZK)\nThe limits being 0.03 % (20.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62170263 BTC (505,295.20 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,273,729 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.75 % (908,287.81 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,408.41 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03522471 BTC (80,091.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5553 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003637 BTC for 82.70 CZK @ 2,273,729 CZK\nFees are 0.29044729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.011013896509316649357164690 CZK)\nThe limits being 0.03 % (20.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62170263 BTC (505,295.20 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,273,729 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.75 % (908,287.81 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,408.41 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03522471 BTC (80,091.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5553 transactions" + } + ] + }, + { + "id": 7262, + "type": "message", + "date": "2025-05-19T18:00:05", + "date_unixtime": "1747670405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003574 BTC for 82.70 CZK @ 2,313,862 CZK\nFees are 0.29045398 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.452476823562968892591653890 CZK)\nThe limits being 0.03 % (20.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62173837 BTC (505,378.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,847 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,313,862 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.66 % (933,238.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,325.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03526045 BTC (81,587.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5554 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003574 BTC for 82.70 CZK @ 2,313,862 CZK\nFees are 0.29045398 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.452476823562968892591653890 CZK)\nThe limits being 0.03 % (20.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62173837 BTC (505,378.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,847 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,313,862 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.66 % (933,238.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,325.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03526045 BTC (81,587.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5554 transactions" + } + ] + }, + { + "id": 7263, + "type": "message", + "date": "2025-05-19T22:00:05", + "date_unixtime": "1747684805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003552 BTC for 82.71 CZK @ 2,328,480 CZK\nFees are 0.29048983 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.613282662146451384119545554 CZK)\nThe limits being 0.03 % (20.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62177389 BTC (505,461.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 812,934 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,328,480 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.43 % (942,327.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,242.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03529597 BTC (82,185.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5555 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003552 BTC for 82.71 CZK @ 2,328,480 CZK\nFees are 0.29048983 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.613282662146451384119545554 CZK)\nThe limits being 0.03 % (20.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62177389 BTC (505,461.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 812,934 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,328,480 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.43 % (942,327.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,242.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03529597 BTC (82,185.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5555 transactions" + } + ] + }, + { + "id": 7264, + "type": "message", + "date": "2025-05-20T02:00:04", + "date_unixtime": "1747699204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003546 BTC for 82.70 CZK @ 2,332,201 CZK\nFees are 0.29046259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.654215257877743745733699676 CZK)\nThe limits being 0.03 % (20.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62180935 BTC (505,544.18 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,021 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,332,201 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.86 % (944,640.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,159.43 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03533143 BTC (82,400.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5556 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003546 BTC for 82.70 CZK @ 2,332,201 CZK\nFees are 0.29046259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.654215257877743745733699676 CZK)\nThe limits being 0.03 % (20.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62180935 BTC (505,544.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,021 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,332,201 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.86 % (944,640.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,159.43 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03533143 BTC (82,400.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5556 transactions" + } + ] + }, + { + "id": 7265, + "type": "message", + "date": "2025-05-20T06:00:06", + "date_unixtime": "1747713606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003540 BTC for 82.70 CZK @ 2,336,046 CZK\nFees are 0.29044918 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.696511171352244545221667667 CZK)\nThe limits being 0.03 % (20.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62184475 BTC (505,627.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,108 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.30 % (947,031.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 16,076.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03536683 BTC (82,618.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5557 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003540 BTC for 82.70 CZK @ 2,336,046 CZK\nFees are 0.29044918 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.696511171352244545221667667 CZK)\nThe limits being 0.03 % (20.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62184475 BTC (505,627.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,108 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.30 % (947,031.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 16,076.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03536683 BTC (82,618.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5557 transactions" + } + ] + }, + { + "id": 7266, + "type": "message", + "date": "2025-05-20T10:00:05", + "date_unixtime": "1747728005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003569 BTC for 82.71 CZK @ 2,317,340 CZK\nFees are 0.29048365 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (50.981475505944939419792005649 CZK)\nThe limits being 0.03 % (20.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62188044 BTC (505,710.16 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,317,340 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.97 % (935,398.13 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,993.45 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03540252 BTC (82,039.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5558 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003569 BTC for 82.71 CZK @ 2,317,340 CZK\nFees are 0.29048365 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (50.981475505944939419792005649 CZK)\nThe limits being 0.03 % (20.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62188044 BTC (505,710.16 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,317,340 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.97 % (935,398.13 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,993.45 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03540252 BTC (82,039.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5558 transactions" + } + ] + }, + { + "id": 7267, + "type": "message", + "date": "2025-05-20T14:00:05", + "date_unixtime": "1747742405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,324 CZK\nFees are 0.29042274 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (51.157123940224960669154023905 CZK)\nThe limits being 0.03 % (20.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62191600 BTC (505,793.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,282 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,324 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.92 % (940,362.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,910.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03543808 BTC (82,405.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.99 CZK over 5559 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,324 CZK\nFees are 0.29042274 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (51.157123940224960669154023905 CZK)\nThe limits being 0.03 % (20.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62191600 BTC (505,793.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,282 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,324 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.92 % (940,362.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,910.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03543808 BTC (82,405.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.99 CZK over 5559 transactions" + } + ] + }, + { + "id": 7268, + "type": "message", + "date": "2025-05-20T18:00:04", + "date_unixtime": "1747756804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,322 CZK\nFees are 0.29042249 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.578539982109859585937408049 CZK)\nThe limits being 0.03 % (20.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62195156 BTC (505,876.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,369 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,325,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 185.89 % (940,361.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,827.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03547364 BTC (82,487.63 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5560 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003556 BTC for 82.69 CZK @ 2,325,322 CZK\nFees are 0.29042249 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.578539982109859585937408049 CZK)\nThe limits being 0.03 % (20.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62195156 BTC (505,876.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,369 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,325,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 185.89 % (940,361.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,827.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03547364 BTC (82,487.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5560 transactions" + } + ] + }, + { + "id": 7269, + "type": "message", + "date": "2025-05-20T22:00:05", + "date_unixtime": "1747771205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003507 BTC for 82.69 CZK @ 2,357,826 CZK\nFees are 0.29042424 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.936081745257438713575766822 CZK)\nThe limits being 0.03 % (20.93 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62198663 BTC (505,959.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,457 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,357,826 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.85 % (960,576.92 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,744.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03550871 BTC (83,723.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5561 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003507 BTC for 82.69 CZK @ 2,357,826 CZK\nFees are 0.29042424 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.936081745257438713575766822 CZK)\nThe limits being 0.03 % (20.93 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62198663 BTC (505,959.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,457 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,357,826 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.85 % (960,576.92 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,744.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03550871 BTC (83,723.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5561 transactions" + } + ] + }, + { + "id": 7270, + "type": "message", + "date": "2025-05-21T02:00:05", + "date_unixtime": "1747785605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003516 BTC for 82.69 CZK @ 2,351,814 CZK\nFees are 0.29042713 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.869949712978409469019977291 CZK)\nThe limits being 0.03 % (20.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62202179 BTC (506,042.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,544 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,351,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.08 % (956,837.24 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,661.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03554387 BTC (83,592.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5562 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003516 BTC for 82.69 CZK @ 2,351,814 CZK\nFees are 0.29042713 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.869949712978409469019977291 CZK)\nThe limits being 0.03 % (20.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62202179 BTC (506,042.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,544 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,351,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.08 % (956,837.24 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,661.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03554387 BTC (83,592.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5562 transactions" + } + ] + }, + { + "id": 7271, + "type": "message", + "date": "2025-05-21T06:00:04", + "date_unixtime": "1747800004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003525 BTC for 82.71 CZK @ 2,346,286 CZK\nFees are 0.29048624 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.809150022297844070575680153 CZK)\nThe limits being 0.03 % (20.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62205704 BTC (506,125.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,631 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,346,286 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.37 % (953,398.88 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,578.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03557912 BTC (83,478.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5563 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003525 BTC for 82.71 CZK @ 2,346,286 CZK\nFees are 0.29048624 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.809150022297844070575680153 CZK)\nThe limits being 0.03 % (20.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62205704 BTC (506,125.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,631 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,346,286 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.37 % (953,398.88 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,578.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03557912 BTC (83,478.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5563 transactions" + } + ] + }, + { + "id": 7272, + "type": "message", + "date": "2025-05-21T10:00:05", + "date_unixtime": "1747814405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003540 BTC for 82.70 CZK @ 2,336,037 CZK\nFees are 0.29044807 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.696412222475572783393715217 CZK)\nThe limits being 0.03 % (20.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62209244 BTC (506,208.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,037 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.08 % (947,023.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,495.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03561452 BTC (83,196.85 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5564 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003540 BTC for 82.70 CZK @ 2,336,037 CZK\nFees are 0.29044807 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.696412222475572783393715217 CZK)\nThe limits being 0.03 % (20.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62209244 BTC (506,208.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,037 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.08 % (947,023.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,495.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03561452 BTC (83,196.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5564 transactions" + } + ] + }, + { + "id": 7273, + "type": "message", + "date": "2025-05-21T14:00:04", + "date_unixtime": "1747828804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003536 BTC for 82.70 CZK @ 2,338,678 CZK\nFees are 0.29044783 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.725459742428649049593391457 CZK)\nThe limits being 0.03 % (20.84 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62212780 BTC (506,291.04 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,806 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,338,678 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.38 % (948,665.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,412.57 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03564988 BTC (83,373.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5565 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003536 BTC for 82.70 CZK @ 2,338,678 CZK\nFees are 0.29044783 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.725459742428649049593391457 CZK)\nThe limits being 0.03 % (20.84 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62212780 BTC (506,291.04 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,806 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,338,678 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.38 % (948,665.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,412.57 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03564988 BTC (83,373.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5565 transactions" + } + ] + }, + { + "id": 7274, + "type": "message", + "date": "2025-05-21T18:00:04", + "date_unixtime": "1747843204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,055 CZK\nFees are 0.29045721 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.268599984086882742627198109 CZK)\nThe limits being 0.03 % (21.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62216243 BTC (506,374.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,894 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,055 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.41 % (979,383.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,329.59 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03568451 BTC (85,216.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.98 CZK over 5566 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.70 CZK @ 2,388,055 CZK\nFees are 0.29045721 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.268599984086882742627198109 CZK)\nThe limits being 0.03 % (21.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62216243 BTC (506,374.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,894 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,055 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.41 % (979,383.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,329.59 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03568451 BTC (85,216.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.98 CZK over 5566 transactions" + } + ] + }, + { + "id": 7275, + "type": "message", + "date": "2025-05-21T22:00:04", + "date_unixtime": "1747857604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003467 BTC for 82.69 CZK @ 2,385,180 CZK\nFees are 0.29044267 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.236979747980424441768491558 CZK)\nThe limits being 0.03 % (21.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62219710 BTC (506,457.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 813,982 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,385,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.03 % (977,595.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,246.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03571918 BTC (85,196.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5567 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003467 BTC for 82.69 CZK @ 2,385,180 CZK\nFees are 0.29044267 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.236979747980424441768491558 CZK)\nThe limits being 0.03 % (21.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62219710 BTC (506,457.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 813,982 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,385,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.03 % (977,595.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,246.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03571918 BTC (85,196.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5567 transactions" + } + ] + }, + { + "id": 7276, + "type": "message", + "date": "2025-05-22T02:00:04", + "date_unixtime": "1747872004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003435 BTC for 82.70 CZK @ 2,407,499 CZK\nFees are 0.29045459 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.482487360613398955185235955 CZK)\nThe limits being 0.03 % (21.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62223145 BTC (506,540.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,070 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,407,499 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 195.74 % (991,481.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,163.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03575353 BTC (86,076.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5568 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003435 BTC for 82.70 CZK @ 2,407,499 CZK\nFees are 0.29045459 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.482487360613398955185235955 CZK)\nThe limits being 0.03 % (21.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62223145 BTC (506,540.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,070 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,407,499 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 195.74 % (991,481.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,163.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03575353 BTC (86,076.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5568 transactions" + } + ] + }, + { + "id": 7277, + "type": "message", + "date": "2025-05-22T06:00:04", + "date_unixtime": "1747886404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003403 BTC for 82.70 CZK @ 2,430,288 CZK\nFees are 0.29047262 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.733173391513481832100724163 CZK)\nThe limits being 0.03 % (21.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62226548 BTC (506,622.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,159 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,430,288 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 198.50 % (1,005,661.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 15,080.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03578756 BTC (86,974.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5569 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003403 BTC for 82.70 CZK @ 2,430,288 CZK\nFees are 0.29047262 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.733173391513481832100724163 CZK)\nThe limits being 0.03 % (21.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62226548 BTC (506,622.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,159 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,430,288 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 198.50 % (1,005,661.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 15,080.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03578756 BTC (86,974.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5569 transactions" + } + ] + }, + { + "id": 7278, + "type": "message", + "date": "2025-05-22T10:00:05", + "date_unixtime": "1747900805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003393 BTC for 82.70 CZK @ 2,437,272 CZK\nFees are 0.29045127 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.809992098095804090340454444 CZK)\nThe limits being 0.03 % (21.83 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62229941 BTC (506,705.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,248 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,437,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 199.33 % (1,010,006.96 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,997.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03582149 BTC (87,306.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5570 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003393 BTC for 82.70 CZK @ 2,437,272 CZK\nFees are 0.29045127 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.809992098095804090340454444 CZK)\nThe limits being 0.03 % (21.83 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62229941 BTC (506,705.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,248 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,437,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 199.33 % (1,010,006.96 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,997.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03582149 BTC (87,306.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5570 transactions" + } + ] + }, + { + "id": 7279, + "type": "message", + "date": "2025-05-22T14:00:04", + "date_unixtime": "1747915204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003378 BTC for 82.70 CZK @ 2,448,295 CZK\nFees are 0.29047506 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.931247557763340445799087444 CZK)\nThe limits being 0.03 % (21.95 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62233319 BTC (506,788.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,337 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,448,295 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.65 % (1,016,866.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,914.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03585527 BTC (87,784.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5571 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003378 BTC for 82.70 CZK @ 2,448,295 CZK\nFees are 0.29047506 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.931247557763340445799087444 CZK)\nThe limits being 0.03 % (21.95 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62233319 BTC (506,788.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,337 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,448,295 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.65 % (1,016,866.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,914.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03585527 BTC (87,784.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5571 transactions" + } + ] + }, + { + "id": 7280, + "type": "message", + "date": "2025-05-22T18:00:04", + "date_unixtime": "1747929604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003364 BTC for 82.70 CZK @ 2,458,507 CZK\nFees are 0.29047769 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (27.043572697402136517432742831 CZK)\nThe limits being 0.03 % (22.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62236683 BTC (506,871.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,426 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,458,507 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 201.87 % (1,023,221.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,831.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03588891 BTC (88,233.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5572 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003364 BTC for 82.70 CZK @ 2,458,507 CZK\nFees are 0.29047769 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (27.043572697402136517432742831 CZK)\nThe limits being 0.03 % (22.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62236683 BTC (506,871.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,426 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,458,507 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 201.87 % (1,023,221.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,831.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03588891 BTC (88,233.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5572 transactions" + } + ] + }, + { + "id": 7281, + "type": "message", + "date": "2025-05-22T22:00:04", + "date_unixtime": "1747944004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003374 BTC for 82.70 CZK @ 2,451,200 CZK\nFees are 0.29047538 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.963204974645645988890690526 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62240057 BTC (506,954.95 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,516 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,451,200 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.94 % (1,018,673.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,748.66 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03592265 BTC (88,053.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.97 CZK over 5573 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003374 BTC for 82.70 CZK @ 2,451,200 CZK\nFees are 0.29047538 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.963204974645645988890690526 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62240057 BTC (506,954.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,516 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,451,200 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.94 % (1,018,673.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,748.66 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03592265 BTC (88,053.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.97 CZK over 5573 transactions" + } + ] + }, + { + "id": 7282, + "type": "message", + "date": "2025-05-23T02:00:05", + "date_unixtime": "1747958405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003356 BTC for 82.69 CZK @ 2,463,981 CZK\nFees are 0.29043220 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (27.103793349023352711279294818 CZK)\nThe limits being 0.03 % (22.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62243413 BTC (507,037.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,605 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,463,981 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 202.48 % (1,026,628.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,665.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03595621 BTC (88,595.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5574 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003356 BTC for 82.69 CZK @ 2,463,981 CZK\nFees are 0.29043220 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (27.103793349023352711279294818 CZK)\nThe limits being 0.03 % (22.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62243413 BTC (507,037.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,605 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,463,981 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 202.48 % (1,026,628.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,665.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03595621 BTC (88,595.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5574 transactions" + } + ] + }, + { + "id": 7283, + "type": "message", + "date": "2025-05-23T06:00:04", + "date_unixtime": "1747972804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003380 BTC for 82.69 CZK @ 2,446,405 CZK\nFees are 0.29042259 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.910449875435974090682610864 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62246793 BTC (507,120.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,694 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,446,405 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 200.29 % (1,015,687.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,582.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03599001 BTC (88,046.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5575 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003380 BTC for 82.69 CZK @ 2,446,405 CZK\nFees are 0.29042259 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.910449875435974090682610864 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62246793 BTC (507,120.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,694 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,446,405 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 200.29 % (1,015,687.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,582.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03599001 BTC (88,046.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5575 transactions" + } + ] + }, + { + "id": 7284, + "type": "message", + "date": "2025-05-23T10:00:05", + "date_unixtime": "1747987205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003401 BTC for 82.70 CZK @ 2,431,509 CZK\nFees are 0.29044764 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.746593677494836874233332409 CZK)\nThe limits being 0.03 % (21.90 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62250194 BTC (507,203.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,783 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,431,509 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 198.42 % (1,006,414.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,499.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03602402 BTC (87,592.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5576 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003401 BTC for 82.70 CZK @ 2,431,509 CZK\nFees are 0.29044764 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.746593677494836874233332409 CZK)\nThe limits being 0.03 % (21.90 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62250194 BTC (507,203.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,783 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,431,509 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 198.42 % (1,006,414.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,499.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03602402 BTC (87,592.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5576 transactions" + } + ] + }, + { + "id": 7285, + "type": "message", + "date": "2025-05-23T14:00:05", + "date_unixtime": "1748001605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003443 BTC for 82.71 CZK @ 2,402,256 CZK\nFees are 0.29049703 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.424814026307285523033599655 CZK)\nThe limits being 0.03 % (21.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62253637 BTC (507,286.90 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,871 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,256 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.80 % (988,204.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,416.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03605845 BTC (86,621.62 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5577 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003443 BTC for 82.71 CZK @ 2,402,256 CZK\nFees are 0.29049703 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.424814026307285523033599655 CZK)\nThe limits being 0.03 % (21.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62253637 BTC (507,286.90 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,871 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,256 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.80 % (988,204.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,416.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03605845 BTC (86,621.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5577 transactions" + } + ] + }, + { + "id": 7286, + "type": "message", + "date": "2025-05-23T18:00:05", + "date_unixtime": "1748016005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003456 BTC for 82.69 CZK @ 2,392,574 CZK\nFees are 0.29041864 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.318311357586410526121537580 CZK)\nThe limits being 0.03 % (21.59 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62257093 BTC (507,369.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 814,959 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,392,574 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.58 % (982,177.00 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,333.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03609301 BTC (86,355.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5578 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003456 BTC for 82.69 CZK @ 2,392,574 CZK\nFees are 0.29041864 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.318311357586410526121537580 CZK)\nThe limits being 0.03 % (21.59 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62257093 BTC (507,369.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 814,959 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,392,574 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.58 % (982,177.00 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,333.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03609301 BTC (86,355.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5578 transactions" + } + ] + }, + { + "id": 7287, + "type": "message", + "date": "2025-05-23T22:00:05", + "date_unixtime": "1748030405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003470 BTC for 82.69 CZK @ 2,382,947 CZK\nFees are 0.29042182 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.212415195231674729225807657 CZK)\nThe limits being 0.03 % (21.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62260563 BTC (507,452.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,047 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,382,947 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.37 % (976,183.27 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,250.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03612771 BTC (86,090.41 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5579 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003470 BTC for 82.69 CZK @ 2,382,947 CZK\nFees are 0.29042182 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.212415195231674729225807657 CZK)\nThe limits being 0.03 % (21.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62260563 BTC (507,452.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,047 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,382,947 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.37 % (976,183.27 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,250.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03612771 BTC (86,090.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5579 transactions" + } + ] + }, + { + "id": 7288, + "type": "message", + "date": "2025-05-24T02:00:07", + "date_unixtime": "1748044807", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003516 BTC for 82.69 CZK @ 2,351,893 CZK\nFees are 0.29043689 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.870819298552903291267820874 CZK)\nThe limits being 0.03 % (21.26 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62264079 BTC (507,535.83 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,134 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,351,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.53 % (956,848.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,167.78 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03616287 BTC (85,051.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.96 CZK over 5580 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003516 BTC for 82.69 CZK @ 2,351,893 CZK\nFees are 0.29043689 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.870819298552903291267820874 CZK)\nThe limits being 0.03 % (21.26 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62264079 BTC (507,535.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,134 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,351,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.53 % (956,848.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,167.78 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03616287 BTC (85,051.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.96 CZK over 5580 transactions" + } + ] + }, + { + "id": 7289, + "type": "message", + "date": "2025-05-24T06:00:05", + "date_unixtime": "1748059205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003490 BTC for 82.69 CZK @ 2,369,449 CZK\nFees are 0.29044123 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.063942227133399862658346220 CZK)\nThe limits being 0.03 % (21.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62267569 BTC (507,618.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,222 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,449 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 190.65 % (967,779.66 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,084.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03619777 BTC (85,768.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5581 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003490 BTC for 82.69 CZK @ 2,369,449 CZK\nFees are 0.29044123 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.063942227133399862658346220 CZK)\nThe limits being 0.03 % (21.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62267569 BTC (507,618.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,222 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,449 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 190.65 % (967,779.66 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,084.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03619777 BTC (85,768.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5581 transactions" + } + ] + }, + { + "id": 7290, + "type": "message", + "date": "2025-05-24T10:00:04", + "date_unixtime": "1748073604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003507 BTC for 82.69 CZK @ 2,357,986 CZK\nFees are 0.29044398 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.937843861568627283833642416 CZK)\nThe limits being 0.03 % (21.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62271076 BTC (507,701.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,309 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,357,986 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.21 % (960,641.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 14,001.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03623284 BTC (85,436.52 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5582 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003507 BTC for 82.69 CZK @ 2,357,986 CZK\nFees are 0.29044398 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.937843861568627283833642416 CZK)\nThe limits being 0.03 % (21.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62271076 BTC (507,701.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,309 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,357,986 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.21 % (960,641.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 14,001.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03623284 BTC (85,436.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5582 transactions" + } + ] + }, + { + "id": 7291, + "type": "message", + "date": "2025-05-24T14:00:04", + "date_unixtime": "1748088004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003457 BTC for 82.70 CZK @ 2,392,278 CZK\nFees are 0.29046677 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.315058273768163755464494459 CZK)\nThe limits being 0.03 % (21.69 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62274533 BTC (507,784.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,397 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,392,278 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.39 % (981,995.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,918.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03626741 BTC (86,761.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5583 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003457 BTC for 82.70 CZK @ 2,392,278 CZK\nFees are 0.29046677 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.315058273768163755464494459 CZK)\nThe limits being 0.03 % (21.69 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62274533 BTC (507,784.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,397 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,392,278 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.39 % (981,995.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,918.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03626741 BTC (86,761.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5583 transactions" + } + ] + }, + { + "id": 7292, + "type": "message", + "date": "2025-05-24T18:00:05", + "date_unixtime": "1748102405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003465 BTC for 82.70 CZK @ 2,386,784 CZK\nFees are 0.29047038 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.254628096898948916886136616 CZK)\nThe limits being 0.03 % (21.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62277998 BTC (507,867.78 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,485 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,386,784 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.68 % (978,573.74 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,835.83 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03630206 BTC (86,645.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5584 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003465 BTC for 82.70 CZK @ 2,386,784 CZK\nFees are 0.29047038 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.254628096898948916886136616 CZK)\nThe limits being 0.03 % (21.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62277998 BTC (507,867.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,485 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,386,784 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.68 % (978,573.74 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,835.83 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03630206 BTC (86,645.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5584 transactions" + } + ] + }, + { + "id": 7293, + "type": "message", + "date": "2025-05-24T22:00:04", + "date_unixtime": "1748116804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003462 BTC for 82.69 CZK @ 2,388,567 CZK\nFees are 0.29043562 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.274234823697647488556084899 CZK)\nThe limits being 0.03 % (21.70 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62281460 BTC (507,950.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,388,567 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.87 % (979,683.51 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,752.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03633668 BTC (86,792.59 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5585 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003462 BTC for 82.69 CZK @ 2,388,567 CZK\nFees are 0.29043562 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.274234823697647488556084899 CZK)\nThe limits being 0.03 % (21.70 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62281460 BTC (507,950.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,388,567 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.87 % (979,683.51 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,752.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03633668 BTC (86,792.59 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5585 transactions" + } + ] + }, + { + "id": 7294, + "type": "message", + "date": "2025-05-25T02:00:04", + "date_unixtime": "1748131204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003501 BTC for 82.69 CZK @ 2,361,996 CZK\nFees are 0.29044015 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.981953476457078887134105183 CZK)\nThe limits being 0.03 % (21.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62284961 BTC (508,033.75 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,660 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,361,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.58 % (963,134.40 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,669.86 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03637169 BTC (85,909.78 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5586 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003501 BTC for 82.69 CZK @ 2,361,996 CZK\nFees are 0.29044015 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.981953476457078887134105183 CZK)\nThe limits being 0.03 % (21.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62284961 BTC (508,033.75 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,660 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,361,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.58 % (963,134.40 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,669.86 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03637169 BTC (85,909.78 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5586 transactions" + } + ] + }, + { + "id": 7295, + "type": "message", + "date": "2025-05-25T06:00:04", + "date_unixtime": "1748145604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003496 BTC for 82.69 CZK @ 2,365,304 CZK\nFees are 0.29043156 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.018343909873794123314395041 CZK)\nThe limits being 0.03 % (21.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62288457 BTC (508,116.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,748 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,365,304 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.96 % (965,194.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,586.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03640665 BTC (86,112.79 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.95 CZK over 5587 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003496 BTC for 82.69 CZK @ 2,365,304 CZK\nFees are 0.29043156 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.018343909873794123314395041 CZK)\nThe limits being 0.03 % (21.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62288457 BTC (508,116.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,748 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,365,304 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.96 % (965,194.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,586.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03640665 BTC (86,112.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.95 CZK over 5587 transactions" + } + ] + }, + { + "id": 7296, + "type": "message", + "date": "2025-05-25T10:00:03", + "date_unixtime": "1748160003", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003504 BTC for 82.70 CZK @ 2,360,056 CZK\nFees are 0.29045029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.960615450091346952333499419 CZK)\nThe limits being 0.03 % (21.50 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62291961 BTC (508,199.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,835 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,360,056 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.28 % (961,925.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,503.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03644169 BTC (86,004.43 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5588 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003504 BTC for 82.70 CZK @ 2,360,056 CZK\nFees are 0.29045029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.960615450091346952333499419 CZK)\nThe limits being 0.03 % (21.50 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62291961 BTC (508,199.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,835 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,360,056 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.28 % (961,925.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,503.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03644169 BTC (86,004.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5588 transactions" + } + ] + }, + { + "id": 7297, + "type": "message", + "date": "2025-05-25T14:00:04", + "date_unixtime": "1748174404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003523 BTC for 82.70 CZK @ 2,347,466 CZK\nFees are 0.29046734 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.822122283333906122779751428 CZK)\nThe limits being 0.03 % (21.41 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62295484 BTC (508,282.70 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 815,922 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,347,466 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.71 % (954,082.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,420.91 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03647692 BTC (85,628.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5589 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003523 BTC for 82.70 CZK @ 2,347,466 CZK\nFees are 0.29046734 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.822122283333906122779751428 CZK)\nThe limits being 0.03 % (21.41 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62295484 BTC (508,282.70 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 815,922 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,347,466 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.71 % (954,082.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,420.91 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03647692 BTC (85,628.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5589 transactions" + } + ] + }, + { + "id": 7298, + "type": "message", + "date": "2025-05-25T18:00:05", + "date_unixtime": "1748188805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003527 BTC for 82.69 CZK @ 2,344,462 CZK\nFees are 0.29042508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.789084181265768279973876519 CZK)\nThe limits being 0.03 % (21.40 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62299011 BTC (508,365.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,009 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,344,462 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.31 % (952,211.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,337.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03651219 BTC (85,601.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5590 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003527 BTC for 82.69 CZK @ 2,344,462 CZK\nFees are 0.29042508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.789084181265768279973876519 CZK)\nThe limits being 0.03 % (21.40 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62299011 BTC (508,365.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,009 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,344,462 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.31 % (952,211.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,337.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03651219 BTC (85,601.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5590 transactions" + } + ] + }, + { + "id": 7299, + "type": "message", + "date": "2025-05-25T22:00:04", + "date_unixtime": "1748203204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003507 BTC for 82.71 CZK @ 2,358,429 CZK\nFees are 0.29049855 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.942717972411643365699379232 CZK)\nThe limits being 0.03 % (21.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62302518 BTC (508,448.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,097 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,358,429 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.99 % (960,911.91 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,254.93 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03654726 BTC (86,194.11 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5591 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003507 BTC for 82.71 CZK @ 2,358,429 CZK\nFees are 0.29049855 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.942717972411643365699379232 CZK)\nThe limits being 0.03 % (21.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62302518 BTC (508,448.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,097 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,358,429 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.99 % (960,911.91 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,254.93 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03654726 BTC (86,194.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5591 transactions" + } + ] + }, + { + "id": 7300, + "type": "message", + "date": "2025-05-26T02:00:05", + "date_unixtime": "1748217605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003466 BTC for 82.70 CZK @ 2,386,150 CZK\nFees are 0.29047696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.247647752485458425803973458 CZK)\nThe limits being 0.03 % (21.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62305984 BTC (508,531.68 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,184 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,386,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.35 % (978,182.43 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,171.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03658192 BTC (87,289.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5592 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003466 BTC for 82.70 CZK @ 2,386,150 CZK\nFees are 0.29047696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.247647752485458425803973458 CZK)\nThe limits being 0.03 % (21.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62305984 BTC (508,531.68 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,184 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,386,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.35 % (978,182.43 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,171.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03658192 BTC (87,289.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5592 transactions" + } + ] + }, + { + "id": 7301, + "type": "message", + "date": "2025-05-26T06:00:04", + "date_unixtime": "1748232004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003455 BTC for 82.69 CZK @ 2,393,270 CZK\nFees are 0.29041916 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.325975401579277160906436734 CZK)\nThe limits being 0.03 % (21.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62309439 BTC (508,614.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,272 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,393,270 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.20 % (982,618.76 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,088.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03661647 BTC (87,633.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5593 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003455 BTC for 82.69 CZK @ 2,393,270 CZK\nFees are 0.29041916 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.325975401579277160906436734 CZK)\nThe limits being 0.03 % (21.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62309439 BTC (508,614.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,272 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,393,270 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.20 % (982,618.76 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,088.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03661647 BTC (87,633.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5593 transactions" + } + ] + }, + { + "id": 7302, + "type": "message", + "date": "2025-05-26T10:00:04", + "date_unixtime": "1748246404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003444 BTC for 82.71 CZK @ 2,401,528 CZK\nFees are 0.29049337 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.416808128866042023648936040 CZK)\nThe limits being 0.03 % (22.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62312883 BTC (508,697.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,360 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,401,528 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.18 % (987,763.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 13,005.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03665091 BTC (88,018.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.94 CZK over 5594 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003444 BTC for 82.71 CZK @ 2,401,528 CZK\nFees are 0.29049337 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.416808128866042023648936040 CZK)\nThe limits being 0.03 % (22.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62312883 BTC (508,697.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,360 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,401,528 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.18 % (987,763.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 13,005.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03665091 BTC (88,018.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.94 CZK over 5594 transactions" + } + ] + }, + { + "id": 7303, + "type": "message", + "date": "2025-05-26T14:00:04", + "date_unixtime": "1748260804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003441 BTC for 82.70 CZK @ 2,403,446 CZK\nFees are 0.29047210 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.437903553777993239876647947 CZK)\nThe limits being 0.03 % (22.04 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62316324 BTC (508,780.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,448 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.38 % (988,958.42 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,922.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03668532 BTC (88,171.18 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5595 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003441 BTC for 82.70 CZK @ 2,403,446 CZK\nFees are 0.29047210 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.437903553777993239876647947 CZK)\nThe limits being 0.03 % (22.04 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62316324 BTC (508,780.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,448 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.38 % (988,958.42 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,922.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03668532 BTC (88,171.18 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5595 transactions" + } + ] + }, + { + "id": 7304, + "type": "message", + "date": "2025-05-26T18:00:04", + "date_unixtime": "1748275204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003432 BTC for 82.71 CZK @ 2,409,888 CZK\nFees are 0.29048889 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.508765653545922604218568343 CZK)\nThe limits being 0.03 % (22.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62319756 BTC (508,863.64 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,409,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 195.14 % (992,972.55 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,839.97 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03671964 BTC (88,490.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5596 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003432 BTC for 82.71 CZK @ 2,409,888 CZK\nFees are 0.29048889 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.508765653545922604218568343 CZK)\nThe limits being 0.03 % (22.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62319756 BTC (508,863.64 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,409,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 195.14 % (992,972.55 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,839.97 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03671964 BTC (88,490.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5596 transactions" + } + ] + }, + { + "id": 7305, + "type": "message", + "date": "2025-05-26T22:00:04", + "date_unixtime": "1748289604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.69 CZK @ 2,387,902 CZK\nFees are 0.29043867 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.266923654877579065243924635 CZK)\nThe limits being 0.03 % (21.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62323219 BTC (508,946.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,624 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,902 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.41 % (979,270.87 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,756.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03675427 BTC (87,765.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5597 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.69 CZK @ 2,387,902 CZK\nFees are 0.29043867 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.266923654877579065243924635 CZK)\nThe limits being 0.03 % (21.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62323219 BTC (508,946.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,624 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,902 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.41 % (979,270.87 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,756.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03675427 BTC (87,765.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5597 transactions" + } + ] + }, + { + "id": 7306, + "type": "message", + "date": "2025-05-27T02:00:06", + "date_unixtime": "1748304006", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003459 BTC for 82.70 CZK @ 2,390,967 CZK\nFees are 0.29047551 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.300634426803095785162454683 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62326678 BTC (509,029.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,712 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,390,967 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.76 % (981,180.54 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,674.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03678886 BTC (87,960.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5598 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003459 BTC for 82.70 CZK @ 2,390,967 CZK\nFees are 0.29047551 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.300634426803095785162454683 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62326678 BTC (509,029.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,712 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,390,967 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.76 % (981,180.54 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,674.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03678886 BTC (87,960.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5598 transactions" + } + ] + }, + { + "id": 7307, + "type": "message", + "date": "2025-05-27T06:00:04", + "date_unixtime": "1748318404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003470 BTC for 82.71 CZK @ 2,383,582 CZK\nFees are 0.29049929 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.219406569801085250614204751 CZK)\nThe limits being 0.03 % (21.94 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62330148 BTC (509,112.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,383,582 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 191.82 % (976,577.83 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,591.00 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03682356 BTC (87,771.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5599 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003470 BTC for 82.71 CZK @ 2,383,582 CZK\nFees are 0.29049929 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.219406569801085250614204751 CZK)\nThe limits being 0.03 % (21.94 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62330148 BTC (509,112.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,383,582 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 191.82 % (976,577.83 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,591.00 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03682356 BTC (87,771.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5599 transactions" + } + ] + }, + { + "id": 7308, + "type": "message", + "date": "2025-05-27T10:00:05", + "date_unixtime": "1748332805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003441 BTC for 82.69 CZK @ 2,403,216 CZK\nFees are 0.29044435 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.435378278032118622311013457 CZK)\nThe limits being 0.03 % (22.14 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62333589 BTC (509,195.60 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,888 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,403,216 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.19 % (988,815.31 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,508.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03685797 BTC (88,577.67 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5600 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003441 BTC for 82.69 CZK @ 2,403,216 CZK\nFees are 0.29044435 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.435378278032118622311013457 CZK)\nThe limits being 0.03 % (22.14 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62333589 BTC (509,195.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,888 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,403,216 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.19 % (988,815.31 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,508.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03685797 BTC (88,577.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5600 transactions" + } + ] + }, + { + "id": 7309, + "type": "message", + "date": "2025-05-27T14:00:07", + "date_unixtime": "1748347207", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003434 BTC for 82.70 CZK @ 2,408,128 CZK\nFees are 0.29044597 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.489412560116470628861883815 CZK)\nThe limits being 0.03 % (22.21 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62337023 BTC (509,278.58 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 816,976 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,408,128 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.76 % (991,876.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,425.03 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03689231 BTC (88,841.42 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.93 CZK over 5601 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003434 BTC for 82.70 CZK @ 2,408,128 CZK\nFees are 0.29044597 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.489412560116470628861883815 CZK)\nThe limits being 0.03 % (22.21 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62337023 BTC (509,278.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 816,976 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,408,128 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.76 % (991,876.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,425.03 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03689231 BTC (88,841.42 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.93 CZK over 5601 transactions" + } + ] + }, + { + "id": 7310, + "type": "message", + "date": "2025-05-27T18:00:05", + "date_unixtime": "1748361605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003413 BTC for 82.70 CZK @ 2,423,003 CZK\nFees are 0.29045291 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (53.306074361183265543933472811 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62340436 BTC (509,361.57 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,423,003 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 196.55 % (1,001,149.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,342.04 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03692644 BTC (89,472.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5602 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003413 BTC for 82.70 CZK @ 2,423,003 CZK\nFees are 0.29045291 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (53.306074361183265543933472811 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62340436 BTC (509,361.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,423,003 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 196.55 % (1,001,149.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,342.04 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03692644 BTC (89,472.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5602 transactions" + } + ] + }, + { + "id": 7311, + "type": "message", + "date": "2025-05-27T22:00:05", + "date_unixtime": "1748376005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003417 BTC for 82.70 CZK @ 2,420,224 CZK\nFees are 0.29045981 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.622469216390569792381624803 CZK)\nThe limits being 0.03 % (22.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62343853 BTC (509,444.56 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,153 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,420,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 196.18 % (999,416.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,259.05 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03696061 BTC (89,452.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5603 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003417 BTC for 82.70 CZK @ 2,420,224 CZK\nFees are 0.29045981 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.622469216390569792381624803 CZK)\nThe limits being 0.03 % (22.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62343853 BTC (509,444.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,153 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,420,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 196.18 % (999,416.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,259.05 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03696061 BTC (89,452.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5603 transactions" + } + ] + }, + { + "id": 7312, + "type": "message", + "date": "2025-05-28T02:00:04", + "date_unixtime": "1748390404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003446 BTC for 82.70 CZK @ 2,399,827 CZK\nFees are 0.29045616 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (52.796189251143921405666354643 CZK)\nThe limits being 0.03 % (22.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62347299 BTC (509,527.55 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,241 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,399,827 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.65 % (986,699.64 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,176.07 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03699507 BTC (88,781.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5604 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003446 BTC for 82.70 CZK @ 2,399,827 CZK\nFees are 0.29045616 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (52.796189251143921405666354643 CZK)\nThe limits being 0.03 % (22.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62347299 BTC (509,527.55 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,241 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,399,827 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.65 % (986,699.64 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,176.07 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03699507 BTC (88,781.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5604 transactions" + } + ] + }, + { + "id": 7313, + "type": "message", + "date": "2025-05-28T06:00:06", + "date_unixtime": "1748404806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003442 BTC for 82.69 CZK @ 2,402,368 CZK\nFees are 0.29042623 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.426049094583831661815835163 CZK)\nThe limits being 0.03 % (22.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62350741 BTC (509,610.52 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,329 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,402,368 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.93 % (988,283.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,093.09 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03702949 BTC (88,958.47 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5605 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003442 BTC for 82.69 CZK @ 2,402,368 CZK\nFees are 0.29042623 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.426049094583831661815835163 CZK)\nThe limits being 0.03 % (22.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62350741 BTC (509,610.52 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,329 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,402,368 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.93 % (988,283.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,093.09 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03702949 BTC (88,958.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5605 transactions" + } + ] + }, + { + "id": 7314, + "type": "message", + "date": "2025-05-28T10:00:05", + "date_unixtime": "1748419205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003446 BTC for 82.69 CZK @ 2,399,542 CZK\nFees are 0.29042170 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.394962842760726314544480275 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62354187 BTC (509,693.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,399,542 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.55 % (986,521.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 12,010.11 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03706395 BTC (88,936.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5606 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003446 BTC for 82.69 CZK @ 2,399,542 CZK\nFees are 0.29042170 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.394962842760726314544480275 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62354187 BTC (509,693.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,399,542 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.55 % (986,521.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 12,010.11 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03706395 BTC (88,936.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5606 transactions" + } + ] + }, + { + "id": 7315, + "type": "message", + "date": "2025-05-28T14:00:05", + "date_unixtime": "1748433605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003451 BTC for 82.70 CZK @ 2,396,513 CZK\nFees are 0.29047589 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.361638028130173774576579769 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62357638 BTC (509,776.50 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,504 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,396,513 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.15 % (984,632.12 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,927.12 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03709846 BTC (88,906.92 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5607 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003451 BTC for 82.70 CZK @ 2,396,513 CZK\nFees are 0.29047589 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.361638028130173774576579769 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62357638 BTC (509,776.50 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,504 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,396,513 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.15 % (984,632.12 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,927.12 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03709846 BTC (88,906.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5607 transactions" + } + ] + }, + { + "id": 7316, + "type": "message", + "date": "2025-05-28T18:00:04", + "date_unixtime": "1748448004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003480 BTC for 82.69 CZK @ 2,376,258 CZK\nFees are 0.29044125 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.138840354735437463131911871 CZK)\nThe limits being 0.03 % (22.06 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62361118 BTC (509,859.48 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,592 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,376,258 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 190.64 % (972,001.71 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,844.13 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03713326 BTC (88,238.21 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5608 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003480 BTC for 82.69 CZK @ 2,376,258 CZK\nFees are 0.29044125 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.138840354735437463131911871 CZK)\nThe limits being 0.03 % (22.06 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62361118 BTC (509,859.48 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,592 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,376,258 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 190.64 % (972,001.71 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,844.13 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03713326 BTC (88,238.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5608 transactions" + } + ] + }, + { + "id": 7317, + "type": "message", + "date": "2025-05-28T22:00:05", + "date_unixtime": "1748462405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003485 BTC for 82.70 CZK @ 2,373,103 CZK\nFees are 0.29047239 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.09 % (78.312411343940397990104934027 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62364603 BTC (509,942.47 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,679 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,373,103 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 190.22 % (970,034.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,761.14 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03716811 BTC (88,203.77 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.92 CZK over 5609 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003485 BTC for 82.70 CZK @ 2,373,103 CZK\nFees are 0.29047239 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.09 % (78.312411343940397990104934027 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62364603 BTC (509,942.47 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,679 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,373,103 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 190.22 % (970,034.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,761.14 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03716811 BTC (88,203.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.92 CZK over 5609 transactions" + } + ] + }, + { + "id": 7318, + "type": "message", + "date": "2025-05-29T02:00:04", + "date_unixtime": "1748476804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003447 BTC for 82.70 CZK @ 2,399,224 CZK\nFees are 0.29046750 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (52.782934309551036125518908362 CZK)\nThe limits being 0.03 % (22.31 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62368050 BTC (510,025.46 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,767 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,399,224 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.39 % (986,323.94 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,678.15 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03720258 BTC (89,257.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5610 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003447 BTC for 82.70 CZK @ 2,399,224 CZK\nFees are 0.29046750 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (52.782934309551036125518908362 CZK)\nThe limits being 0.03 % (22.31 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62368050 BTC (510,025.46 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,767 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,399,224 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.39 % (986,323.94 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,678.15 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03720258 BTC (89,257.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5610 transactions" + } + ] + }, + { + "id": 7319, + "type": "message", + "date": "2025-05-29T06:00:05", + "date_unixtime": "1748491205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003444 BTC for 82.70 CZK @ 2,401,400 CZK\nFees are 0.29047785 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (52.830793242235219704321749604 CZK)\nThe limits being 0.03 % (22.36 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62371494 BTC (510,108.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,855 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,401,400 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 193.62 % (987,680.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,595.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03723702 BTC (89,420.97 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5611 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003444 BTC for 82.70 CZK @ 2,401,400 CZK\nFees are 0.29047785 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.06 % (52.830793242235219704321749604 CZK)\nThe limits being 0.03 % (22.36 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62371494 BTC (510,108.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,855 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,401,400 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 193.62 % (987,680.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,595.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03723702 BTC (89,420.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5611 transactions" + } + ] + }, + { + "id": 7320, + "type": "message", + "date": "2025-05-29T10:00:04", + "date_unixtime": "1748505604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003456 BTC for 82.70 CZK @ 2,393,057 CZK\nFees are 0.29047729 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.323626567142316706342615658 CZK)\nThe limits being 0.03 % (22.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62374950 BTC (510,191.45 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 817,943 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,393,057 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 192.57 % (982,476.63 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,512.16 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03727158 BTC (89,193.01 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5612 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003456 BTC for 82.70 CZK @ 2,393,057 CZK\nFees are 0.29047729 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.323626567142316706342615658 CZK)\nThe limits being 0.03 % (22.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62374950 BTC (510,191.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 817,943 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,393,057 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 192.57 % (982,476.63 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,512.16 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03727158 BTC (89,193.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5612 transactions" + } + ] + }, + { + "id": 7321, + "type": "message", + "date": "2025-05-29T14:00:04", + "date_unixtime": "1748520004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003430 BTC for 82.69 CZK @ 2,410,868 CZK\nFees are 0.29043772 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.519550453296842973789985780 CZK)\nThe limits being 0.03 % (22.48 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62378380 BTC (510,274.43 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,031 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,410,868 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 194.72 % (993,586.11 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,429.18 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03730588 BTC (89,939.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5613 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003430 BTC for 82.69 CZK @ 2,410,868 CZK\nFees are 0.29043772 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.519550453296842973789985780 CZK)\nThe limits being 0.03 % (22.48 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62378380 BTC (510,274.43 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,031 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,410,868 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 194.72 % (993,586.11 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,429.18 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03730588 BTC (89,939.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5613 transactions" + } + ] + }, + { + "id": 7322, + "type": "message", + "date": "2025-05-29T18:00:04", + "date_unixtime": "1748534404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003510 BTC for 82.69 CZK @ 2,355,925 CZK\nFees are 0.29043834 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.915171519056521547802065988 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62381890 BTC (510,357.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,118 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,355,925 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.97 % (959,312.93 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,346.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03734098 BTC (87,972.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5614 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003510 BTC for 82.69 CZK @ 2,355,925 CZK\nFees are 0.29043834 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.915171519056521547802065988 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62381890 BTC (510,357.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,118 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,355,925 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.97 % (959,312.93 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,346.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03734098 BTC (87,972.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5614 transactions" + } + ] + }, + { + "id": 7323, + "type": "message", + "date": "2025-05-29T22:00:04", + "date_unixtime": "1748548804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003554 BTC for 82.71 CZK @ 2,327,185 CZK\nFees are 0.29049175 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.599037898587358426710789111 CZK)\nThe limits being 0.03 % (21.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62385444 BTC (510,440.41 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,204 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,327,185 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.43 % (941,384.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,263.20 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03737652 BTC (86,982.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5615 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003554 BTC for 82.71 CZK @ 2,327,185 CZK\nFees are 0.29049175 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.599037898587358426710789111 CZK)\nThe limits being 0.03 % (21.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62385444 BTC (510,440.41 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,204 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,327,185 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.43 % (941,384.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,263.20 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03737652 BTC (86,982.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5615 transactions" + } + ] + }, + { + "id": 7324, + "type": "message", + "date": "2025-05-30T02:00:04", + "date_unixtime": "1748563204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003561 BTC for 82.69 CZK @ 2,322,078 CZK\nFees are 0.29042508 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.542853274421300231554065125 CZK)\nThe limits being 0.03 % (21.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62389005 BTC (510,523.39 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,291 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,078 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.77 % (938,197.70 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,180.22 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03741213 BTC (86,873.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.91 CZK over 5616 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003561 BTC for 82.69 CZK @ 2,322,078 CZK\nFees are 0.29042508 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.542853274421300231554065125 CZK)\nThe limits being 0.03 % (21.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62389005 BTC (510,523.39 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,291 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,078 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.77 % (938,197.70 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,180.22 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03741213 BTC (86,873.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.91 CZK over 5616 transactions" + } + ] + }, + { + "id": 7325, + "type": "message", + "date": "2025-05-30T06:00:04", + "date_unixtime": "1748577604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003550 BTC for 82.69 CZK @ 2,329,395 CZK\nFees are 0.29044029 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.623342295486922531702421805 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62392555 BTC (510,606.37 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,395 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.64 % (942,762.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,097.24 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03744763 BTC (87,230.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5617 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003550 BTC for 82.69 CZK @ 2,329,395 CZK\nFees are 0.29044029 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.623342295486922531702421805 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62392555 BTC (510,606.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,395 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.64 % (942,762.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,097.24 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03744763 BTC (87,230.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5617 transactions" + } + ] + }, + { + "id": 7326, + "type": "message", + "date": "2025-05-30T10:00:05", + "date_unixtime": "1748592005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003567 BTC for 82.70 CZK @ 2,318,446 CZK\nFees are 0.29045940 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.502900990631472213387151138 CZK)\nThe limits being 0.03 % (21.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62396122 BTC (510,689.36 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,318,446 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.27 % (935,930.75 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 11,014.25 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03748330 BTC (86,902.99 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5618 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003567 BTC for 82.70 CZK @ 2,318,446 CZK\nFees are 0.29045940 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.502900990631472213387151138 CZK)\nThe limits being 0.03 % (21.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62396122 BTC (510,689.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,318,446 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.27 % (935,930.75 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 11,014.25 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03748330 BTC (86,902.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5618 transactions" + } + ] + }, + { + "id": 7327, + "type": "message", + "date": "2025-05-30T14:00:05", + "date_unixtime": "1748606405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003547 BTC for 82.69 CZK @ 2,331,313 CZK\nFees are 0.29043377 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.644437720866732435910456622 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62399669 BTC (510,772.34 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,550 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,331,313 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.81 % (943,958.95 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,931.27 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03751877 BTC (87,467.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5619 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003547 BTC for 82.69 CZK @ 2,331,313 CZK\nFees are 0.29043377 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.644437720866732435910456622 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62399669 BTC (510,772.34 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,550 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,331,313 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.81 % (943,958.95 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,931.27 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03751877 BTC (87,467.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5619 transactions" + } + ] + }, + { + "id": 7328, + "type": "message", + "date": "2025-05-30T18:00:05", + "date_unixtime": "1748620805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003550 BTC for 82.70 CZK @ 2,329,464 CZK\nFees are 0.29044892 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.624103187295171126409678801 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62403219 BTC (510,855.33 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,636 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,464 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.55 % (942,805.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,848.28 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03755427 BTC (87,481.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5620 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003550 BTC for 82.70 CZK @ 2,329,464 CZK\nFees are 0.29044892 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.624103187295171126409678801 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62403219 BTC (510,855.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,636 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,464 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.55 % (942,805.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,848.28 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03755427 BTC (87,481.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5620 transactions" + } + ] + }, + { + "id": 7329, + "type": "message", + "date": "2025-05-30T22:00:04", + "date_unixtime": "1748635204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.69 CZK @ 2,300,773 CZK\nFees are 0.29042714 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.308498883845328218236727934 CZK)\nThe limits being 0.03 % (21.62 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62406813 BTC (510,938.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,722 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,773 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.02 % (924,900.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,765.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03759021 BTC (86,486.53 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5621 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.69 CZK @ 2,300,773 CZK\nFees are 0.29042714 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.308498883845328218236727934 CZK)\nThe limits being 0.03 % (21.62 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62406813 BTC (510,938.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,722 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,773 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.02 % (924,900.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,765.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03759021 BTC (86,486.53 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5621 transactions" + } + ] + }, + { + "id": 7330, + "type": "message", + "date": "2025-05-31T02:00:04", + "date_unixtime": "1748649604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003613 BTC for 82.71 CZK @ 2,289,246 CZK\nFees are 0.29049980 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.181705789769021819700795350 CZK)\nThe limits being 0.03 % (21.53 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62410426 BTC (511,021.31 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,808 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.58 % (917,706.86 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,682.30 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03762634 BTC (86,135.95 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5622 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003613 BTC for 82.71 CZK @ 2,289,246 CZK\nFees are 0.29049980 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.181705789769021819700795350 CZK)\nThe limits being 0.03 % (21.53 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62410426 BTC (511,021.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,808 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.58 % (917,706.86 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,682.30 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03762634 BTC (86,135.95 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5622 transactions" + } + ] + }, + { + "id": 7331, + "type": "message", + "date": "2025-05-31T06:00:05", + "date_unixtime": "1748664005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,777 CZK\nFees are 0.29046106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.143550971544315735170132837 CZK)\nThe limits being 0.03 % (21.52 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62414044 BTC (511,104.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,777 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.13 % (915,541.79 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,599.32 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03766252 BTC (86,088.14 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.90 CZK over 5623 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003618 BTC for 82.70 CZK @ 2,285,777 CZK\nFees are 0.29046106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.143550971544315735170132837 CZK)\nThe limits being 0.03 % (21.52 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62414044 BTC (511,104.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,777 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.13 % (915,541.79 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,599.32 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03766252 BTC (86,088.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.90 CZK over 5623 transactions" + } + ] + }, + { + "id": 7332, + "type": "message", + "date": "2025-05-31T10:00:05", + "date_unixtime": "1748678405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003619 BTC for 82.70 CZK @ 2,285,187 CZK\nFees are 0.29046628 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.137055830429363489186025203 CZK)\nThe limits being 0.03 % (21.54 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62417663 BTC (511,187.29 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 818,979 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,285,187 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.03 % (915,172.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,516.33 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03769871 BTC (86,148.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5624 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003619 BTC for 82.70 CZK @ 2,285,187 CZK\nFees are 0.29046628 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.137055830429363489186025203 CZK)\nThe limits being 0.03 % (21.54 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62417663 BTC (511,187.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 818,979 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,285,187 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.03 % (915,172.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,516.33 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03769871 BTC (86,148.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5624 transactions" + } + ] + }, + { + "id": 7333, + "type": "message", + "date": "2025-05-31T14:00:04", + "date_unixtime": "1748692804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003627 BTC for 82.69 CZK @ 2,279,937 CZK\nFees are 0.29043958 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.079305315871977716811122473 CZK)\nThe limits being 0.03 % (21.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62421290 BTC (511,270.27 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,064 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,279,937 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.36 % (911,895.72 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,433.34 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03773498 BTC (86,033.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5625 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003627 BTC for 82.69 CZK @ 2,279,937 CZK\nFees are 0.29043958 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.079305315871977716811122473 CZK)\nThe limits being 0.03 % (21.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62421290 BTC (511,270.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,064 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,279,937 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.36 % (911,895.72 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,433.34 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03773498 BTC (86,033.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5625 transactions" + } + ] + }, + { + "id": 7334, + "type": "message", + "date": "2025-05-31T18:00:04", + "date_unixtime": "1748707204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003584 BTC for 82.70 CZK @ 2,307,541 CZK\nFees are 0.29047110 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.382955914066392625809666169 CZK)\nThe limits being 0.03 % (21.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62424874 BTC (511,353.26 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,150 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,307,541 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.70 % (929,126.58 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,350.35 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03777082 BTC (87,157.73 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5626 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003584 BTC for 82.70 CZK @ 2,307,541 CZK\nFees are 0.29047110 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.382955914066392625809666169 CZK)\nThe limits being 0.03 % (21.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62424874 BTC (511,353.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,150 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,307,541 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.70 % (929,126.58 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,350.35 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03777082 BTC (87,157.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5626 transactions" + } + ] + }, + { + "id": 7335, + "type": "message", + "date": "2025-05-31T22:00:04", + "date_unixtime": "1748721604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.70 CZK @ 2,305,521 CZK\nFees are 0.29045975 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.360735695764573088141879780 CZK)\nThe limits being 0.03 % (21.79 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62428461 BTC (511,436.25 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,236 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.42 % (927,865.30 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,267.36 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03780669 BTC (87,164.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5627 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.70 CZK @ 2,305,521 CZK\nFees are 0.29045975 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.360735695764573088141879780 CZK)\nThe limits being 0.03 % (21.79 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62428461 BTC (511,436.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,236 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.42 % (927,865.30 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,267.36 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03780669 BTC (87,164.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5627 transactions" + } + ] + }, + { + "id": 7336, + "type": "message", + "date": "2025-06-01T02:00:05", + "date_unixtime": "1748736005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,402 CZK\nFees are 0.29044472 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.359423435038974962040441394 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62432048 BTC (511,519.23 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,322 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,402 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.38 % (927,790.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,184.38 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03784256 BTC (87,242.32 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5628 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.69 CZK @ 2,305,402 CZK\nFees are 0.29044472 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.359423435038974962040441394 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62432048 BTC (511,519.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,322 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,402 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.38 % (927,790.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,184.38 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03784256 BTC (87,242.32 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5628 transactions" + } + ] + }, + { + "id": 7337, + "type": "message", + "date": "2025-06-01T06:00:04", + "date_unixtime": "1748750404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.70 CZK @ 2,302,998 CZK\nFees are 0.29046541 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.332979720518702502810755506 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62435639 BTC (511,602.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,407 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.06 % (926,289.39 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,101.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03787847 BTC (87,234.05 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5629 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.70 CZK @ 2,302,998 CZK\nFees are 0.29046541 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.332979720518702502810755506 CZK)\nThe limits being 0.03 % (21.81 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62435639 BTC (511,602.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,407 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.06 % (926,289.39 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,101.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03787847 BTC (87,234.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5629 transactions" + } + ] + }, + { + "id": 7338, + "type": "message", + "date": "2025-06-01T10:00:05", + "date_unixtime": "1748764805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,299,996 CZK\nFees are 0.29049063 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.299952644886390403332496439 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62439235 BTC (511,685.22 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,493 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.66 % (924,414.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 10,018.39 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03791443 BTC (87,203.03 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.89 CZK over 5630 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,299,996 CZK\nFees are 0.29049063 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.299952644886390403332496439 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62439235 BTC (511,685.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,493 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.66 % (924,414.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 10,018.39 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03791443 BTC (87,203.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.89 CZK over 5630 transactions" + } + ] + }, + { + "id": 7339, + "type": "message", + "date": "2025-06-01T14:00:03", + "date_unixtime": "1748779203", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,768 CZK\nFees are 0.29045140 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.275449752484808311227458549 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62442834 BTC (511,768.21 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,579 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,768 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.36 % (923,023.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,935.40 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03795042 BTC (87,201.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5631 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003599 BTC for 82.70 CZK @ 2,297,768 CZK\nFees are 0.29045140 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.275449752484808311227458549 CZK)\nThe limits being 0.03 % (21.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62442834 BTC (511,768.21 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,579 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,768 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.36 % (923,023.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,935.40 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03795042 BTC (87,201.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5631 transactions" + } + ] + }, + { + "id": 7340, + "type": "message", + "date": "2025-06-01T18:00:05", + "date_unixtime": "1748793605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003589 BTC for 82.70 CZK @ 2,304,143 CZK\nFees are 0.29044795 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.345573014371682949187456608 CZK)\nThe limits being 0.03 % (21.88 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62446423 BTC (511,851.19 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,665 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,143 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.11 % (927,003.69 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,852.42 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03798631 BTC (87,525.89 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5632 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003589 BTC for 82.70 CZK @ 2,304,143 CZK\nFees are 0.29044795 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.345573014371682949187456608 CZK)\nThe limits being 0.03 % (21.88 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62446423 BTC (511,851.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,665 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,143 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.11 % (927,003.69 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,852.42 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03798631 BTC (87,525.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5632 transactions" + } + ] + }, + { + "id": 7341, + "type": "message", + "date": "2025-06-01T22:00:05", + "date_unixtime": "1748808005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003572 BTC for 82.69 CZK @ 2,314,899 CZK\nFees are 0.29042157 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.463886034656976059714850209 CZK)\nThe limits being 0.03 % (22.00 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62449995 BTC (511,934.17 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,751 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,314,899 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.39 % (933,719.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,769.44 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03802203 BTC (88,017.15 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5633 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003572 BTC for 82.69 CZK @ 2,314,899 CZK\nFees are 0.29042157 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.463886034656976059714850209 CZK)\nThe limits being 0.03 % (22.00 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62449995 BTC (511,934.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,751 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,314,899 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.39 % (933,719.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,769.44 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03802203 BTC (88,017.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5633 transactions" + } + ] + }, + { + "id": 7342, + "type": "message", + "date": "2025-06-02T02:00:05", + "date_unixtime": "1748822405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,747 CZK\nFees are 0.29042726 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.550219581464872944693572496 CZK)\nThe limits being 0.03 % (22.10 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62453555 BTC (512,017.15 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,837 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,322,747 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.32 % (938,621.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,686.46 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03805763 BTC (88,398.25 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5634 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003560 BTC for 82.69 CZK @ 2,322,747 CZK\nFees are 0.29042726 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.550219581464872944693572496 CZK)\nThe limits being 0.03 % (22.10 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62453555 BTC (512,017.15 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,837 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,322,747 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.32 % (938,621.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,686.46 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03805763 BTC (88,398.25 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5634 transactions" + } + ] + }, + { + "id": 7343, + "type": "message", + "date": "2025-06-02T06:00:04", + "date_unixtime": "1748836804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003585 BTC for 82.71 CZK @ 2,307,024 CZK\nFees are 0.29048702 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.377265774531121548777326776 CZK)\nThe limits being 0.03 % (21.97 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62457140 BTC (512,100.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 819,923 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,307,024 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.37 % (928,801.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,603.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03809348 BTC (87,882.58 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5635 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003585 BTC for 82.71 CZK @ 2,307,024 CZK\nFees are 0.29048702 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.377265774531121548777326776 CZK)\nThe limits being 0.03 % (21.97 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62457140 BTC (512,100.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 819,923 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,307,024 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.37 % (928,801.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,603.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03809348 BTC (87,882.58 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5635 transactions" + } + ] + }, + { + "id": 7344, + "type": "message", + "date": "2025-06-02T10:00:04", + "date_unixtime": "1748851204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003586 BTC for 82.71 CZK @ 2,306,442 CZK\nFees are 0.29049468 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.370858852910518706001387782 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62460726 BTC (512,183.14 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,008 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,306,442 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.27 % (928,437.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,520.47 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03812934 BTC (87,943.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5636 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003586 BTC for 82.71 CZK @ 2,306,442 CZK\nFees are 0.29049468 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.370858852910518706001387782 CZK)\nThe limits being 0.03 % (21.99 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62460726 BTC (512,183.14 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,008 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,306,442 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.27 % (928,437.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,520.47 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03812934 BTC (87,943.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5636 transactions" + } + ] + }, + { + "id": 7345, + "type": "message", + "date": "2025-06-02T14:00:05", + "date_unixtime": "1748865605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003630 BTC for 82.70 CZK @ 2,278,154 CZK\nFees are 0.29045256 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.059698591294106989174253748 CZK)\nThe limits being 0.03 % (21.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62464356 BTC (512,266.13 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,094 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,278,154 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.79 % (910,768.36 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,437.48 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03816564 BTC (86,947.22 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.88 CZK over 5637 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003630 BTC for 82.70 CZK @ 2,278,154 CZK\nFees are 0.29045256 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.059698591294106989174253748 CZK)\nThe limits being 0.03 % (21.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62464356 BTC (512,266.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,094 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,278,154 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.79 % (910,768.36 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,437.48 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03816564 BTC (86,947.22 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.88 CZK over 5637 transactions" + } + ] + }, + { + "id": 7346, + "type": "message", + "date": "2025-06-02T18:00:05", + "date_unixtime": "1748880005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003628 BTC for 82.69 CZK @ 2,279,262 CZK\nFees are 0.29043368 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.071883873641812641422056980 CZK)\nThe limits being 0.03 % (21.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62467984 BTC (512,349.11 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,179 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,279,262 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.90 % (911,460.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,354.50 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03820192 BTC (87,072.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5638 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003628 BTC for 82.69 CZK @ 2,279,262 CZK\nFees are 0.29043368 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.071883873641812641422056980 CZK)\nThe limits being 0.03 % (21.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62467984 BTC (512,349.11 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,179 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,279,262 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.90 % (911,460.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,354.50 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03820192 BTC (87,072.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5638 transactions" + } + ] + }, + { + "id": 7347, + "type": "message", + "date": "2025-06-02T22:00:05", + "date_unixtime": "1748894405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003640 BTC for 82.70 CZK @ 2,272,001 CZK\nFees are 0.29046603 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.992012386044448824717883013 CZK)\nThe limits being 0.03 % (21.72 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62471624 BTC (512,432.10 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,264 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,272,001 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.98 % (906,923.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,271.51 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03823832 BTC (86,877.51 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5639 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003640 BTC for 82.70 CZK @ 2,272,001 CZK\nFees are 0.29046603 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.992012386044448824717883013 CZK)\nThe limits being 0.03 % (21.72 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62471624 BTC (512,432.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,264 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,272,001 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.98 % (906,923.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,271.51 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03823832 BTC (86,877.51 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5639 transactions" + } + ] + }, + { + "id": 7348, + "type": "message", + "date": "2025-06-03T02:00:05", + "date_unixtime": "1748908805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,764 CZK\nFees are 0.29046138 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.297405314713297673936550215 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62475220 BTC (512,515.09 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,349 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,299,764 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.34 % (924,267.60 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,188.52 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03827428 BTC (88,021.82 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5640 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.70 CZK @ 2,299,764 CZK\nFees are 0.29046138 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.297405314713297673936550215 CZK)\nThe limits being 0.03 % (22.01 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62475220 BTC (512,515.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,349 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,299,764 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.34 % (924,267.60 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,188.52 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03827428 BTC (88,021.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5640 transactions" + } + ] + }, + { + "id": 7349, + "type": "message", + "date": "2025-06-03T06:00:06", + "date_unixtime": "1748923206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,800 CZK\nFees are 0.29047600 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.319801971141638831304461661 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62478813 BTC (512,598.08 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,435 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,800 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.56 % (925,539.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,105.53 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03831021 BTC (88,182.45 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5641 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,800 CZK\nFees are 0.29047600 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.319801971141638831304461661 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62478813 BTC (512,598.08 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,435 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,800 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.56 % (925,539.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,105.53 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03831021 BTC (88,182.45 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5641 transactions" + } + ] + }, + { + "id": 7350, + "type": "message", + "date": "2025-06-03T10:00:04", + "date_unixtime": "1748937604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,232 CZK\nFees are 0.29046429 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.269550090239716547638819686 CZK)\nThe limits being 0.03 % (22.02 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62482413 BTC (512,681.07 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,521 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,297,232 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.97 % (922,684.80 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 9,022.54 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03834621 BTC (88,090.13 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5642 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003600 BTC for 82.70 CZK @ 2,297,232 CZK\nFees are 0.29046429 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.269550090239716547638819686 CZK)\nThe limits being 0.03 % (22.02 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62482413 BTC (512,681.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,521 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,297,232 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.97 % (922,684.80 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 9,022.54 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03834621 BTC (88,090.13 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5642 transactions" + } + ] + }, + { + "id": 7351, + "type": "message", + "date": "2025-06-03T14:00:04", + "date_unixtime": "1748952004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,720 CZK\nFees are 0.29046588 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.318919780767314399601395116 CZK)\nThe limits being 0.03 % (22.09 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62486006 BTC (512,764.06 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,606 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,301,720 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.49 % (925,488.82 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,939.55 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03838214 BTC (88,344.94 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5643 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003593 BTC for 82.70 CZK @ 2,301,720 CZK\nFees are 0.29046588 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.318919780767314399601395116 CZK)\nThe limits being 0.03 % (22.09 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62486006 BTC (512,764.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,606 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,301,720 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.49 % (925,488.82 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,939.55 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03838214 BTC (88,344.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5643 transactions" + } + ] + }, + { + "id": 7352, + "type": "message", + "date": "2025-06-03T18:00:04", + "date_unixtime": "1748966404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003539 BTC for 82.70 CZK @ 2,336,842 CZK\nFees are 0.29046605 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.705264882321313098419448291 CZK)\nThe limits being 0.03 % (22.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62489545 BTC (512,847.05 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,693 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,336,842 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.74 % (947,435.04 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,856.56 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03841753 BTC (89,775.71 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.87 CZK over 5644 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003539 BTC for 82.70 CZK @ 2,336,842 CZK\nFees are 0.29046605 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.705264882321313098419448291 CZK)\nThe limits being 0.03 % (22.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62489545 BTC (512,847.05 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,693 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,336,842 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.74 % (947,435.04 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,856.56 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03841753 BTC (89,775.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.87 CZK over 5644 transactions" + } + ] + }, + { + "id": 7353, + "type": "message", + "date": "2025-06-03T22:00:05", + "date_unixtime": "1748980805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003550 BTC for 82.69 CZK @ 2,329,366 CZK\nFees are 0.29043667 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.623022502929886243219155492 CZK)\nThe limits being 0.03 % (22.39 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62493095 BTC (512,930.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,779 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,329,366 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 183.80 % (942,762.67 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,773.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03845303 BTC (89,571.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5645 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003550 BTC for 82.69 CZK @ 2,329,366 CZK\nFees are 0.29043667 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.623022502929886243219155492 CZK)\nThe limits being 0.03 % (22.39 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62493095 BTC (512,930.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,779 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,329,366 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 183.80 % (942,762.67 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,773.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03845303 BTC (89,571.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5645 transactions" + } + ] + }, + { + "id": 7354, + "type": "message", + "date": "2025-06-04T02:00:04", + "date_unixtime": "1748995204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003581 BTC for 82.71 CZK @ 2,309,613 CZK\nFees are 0.29048846 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.405738532283057887174281247 CZK)\nThe limits being 0.03 % (22.22 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62496676 BTC (513,013.03 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,865 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,309,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.36 % (930,418.07 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,690.58 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03848884 BTC (88,894.31 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5646 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003581 BTC for 82.71 CZK @ 2,309,613 CZK\nFees are 0.29048846 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.405738532283057887174281247 CZK)\nThe limits being 0.03 % (22.22 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62496676 BTC (513,013.03 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,865 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,309,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.36 % (930,418.07 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,690.58 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03848884 BTC (88,894.31 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5646 transactions" + } + ] + }, + { + "id": 7355, + "type": "message", + "date": "2025-06-04T06:00:04", + "date_unixtime": "1749009604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003571 BTC for 82.69 CZK @ 2,315,613 CZK\nFees are 0.29042979 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.471737545027575705696542079 CZK)\nThe limits being 0.03 % (22.30 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62500247 BTC (513,096.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 820,950 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,315,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 182.06 % (934,167.52 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,607.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03852455 BTC (89,207.93 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5647 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003571 BTC for 82.69 CZK @ 2,315,613 CZK\nFees are 0.29042979 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.471737545027575705696542079 CZK)\nThe limits being 0.03 % (22.30 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62500247 BTC (513,096.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 820,950 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,315,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 182.06 % (934,167.52 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,607.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03852455 BTC (89,207.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5647 transactions" + } + ] + }, + { + "id": 7356, + "type": "message", + "date": "2025-06-04T10:00:04", + "date_unixtime": "1749024004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,840 CZK\nFees are 0.29049991 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.364242410276049438895841137 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62503834 BTC (513,179.01 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,036 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,305,840 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.85 % (928,059.53 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,524.60 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03856042 BTC (88,914.17 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5648 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003587 BTC for 82.71 CZK @ 2,305,840 CZK\nFees are 0.29049991 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.364242410276049438895841137 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62503834 BTC (513,179.01 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,036 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,305,840 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.85 % (928,059.53 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,524.60 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03856042 BTC (88,914.17 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5648 transactions" + } + ] + }, + { + "id": 7357, + "type": "message", + "date": "2025-06-04T14:00:06", + "date_unixtime": "1749038406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,365 CZK\nFees are 0.29045643 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.304010729345759937575925151 CZK)\nThe limits being 0.03 % (22.20 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62507429 BTC (513,262.00 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,122 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,365 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.15 % (924,636.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,441.61 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03859637 BTC (88,785.72 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5649 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003595 BTC for 82.70 CZK @ 2,300,365 CZK\nFees are 0.29045643 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.304010729345759937575925151 CZK)\nThe limits being 0.03 % (22.20 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62507429 BTC (513,262.00 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,122 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,365 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.15 % (924,636.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,441.61 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03859637 BTC (88,785.72 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5649 transactions" + } + ] + }, + { + "id": 7358, + "type": "message", + "date": "2025-06-04T18:00:04", + "date_unixtime": "1749052804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003607 BTC for 82.71 CZK @ 2,292,903 CZK\nFees are 0.29048068 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.221933759979799009538144080 CZK)\nThe limits being 0.03 % (22.15 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62511036 BTC (513,344.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,292,903 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.21 % (919,972.47 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,358.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03863244 BTC (88,580.44 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5650 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003607 BTC for 82.71 CZK @ 2,292,903 CZK\nFees are 0.29048068 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.221933759979799009538144080 CZK)\nThe limits being 0.03 % (22.15 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62511036 BTC (513,344.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,292,903 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.21 % (919,972.47 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,358.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03863244 BTC (88,580.44 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5650 transactions" + } + ] + }, + { + "id": 7359, + "type": "message", + "date": "2025-06-04T22:00:04", + "date_unixtime": "1749067204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,838 CZK\nFees are 0.29048190 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166223314664235342277133766 CZK)\nThe limits being 0.03 % (22.12 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62514651 BTC (513,427.99 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,292 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,838 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.57 % (916,806.25 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,275.62 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03866859 BTC (88,467.49 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.86 CZK over 5651 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,838 CZK\nFees are 0.29048190 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166223314664235342277133766 CZK)\nThe limits being 0.03 % (22.12 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62514651 BTC (513,427.99 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,292 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,838 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.57 % (916,806.25 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,275.62 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03866859 BTC (88,467.49 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.86 CZK over 5651 transactions" + } + ] + }, + { + "id": 7360, + "type": "message", + "date": "2025-06-05T02:00:05", + "date_unixtime": "1749081605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003624 BTC for 82.70 CZK @ 2,281,893 CZK\nFees are 0.29044829 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.100819782252183582626370616 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62518275 BTC (513,510.97 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,377 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,281,893 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.81 % (913,088.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,192.64 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03870483 BTC (88,320.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5652 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003624 BTC for 82.70 CZK @ 2,281,893 CZK\nFees are 0.29044829 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.100819782252183582626370616 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62518275 BTC (513,510.97 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,377 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,281,893 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.81 % (913,088.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,192.64 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03870483 BTC (88,320.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5652 transactions" + } + ] + }, + { + "id": 7361, + "type": "message", + "date": "2025-06-05T06:00:05", + "date_unixtime": "1749096005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,573 CZK\nFees are 0.29046086 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.185300724319808687313119475 CZK)\nThe limits being 0.03 % (22.18 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62521887 BTC (513,593.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,463 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,289,573 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.72 % (917,890.15 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,109.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03874095 BTC (88,700.23 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5653 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003612 BTC for 82.70 CZK @ 2,289,573 CZK\nFees are 0.29046086 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.185300724319808687313119475 CZK)\nThe limits being 0.03 % (22.18 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62521887 BTC (513,593.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,463 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,289,573 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.72 % (917,890.15 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,109.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03874095 BTC (88,700.23 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5653 transactions" + } + ] + }, + { + "id": 7362, + "type": "message", + "date": "2025-06-05T10:00:04", + "date_unixtime": "1749110404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003632 BTC for 82.71 CZK @ 2,277,207 CZK\nFees are 0.29049174 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.049277696015487643468125878 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62525519 BTC (513,676.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,548 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,277,207 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.19 % (910,158.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 8,026.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03877727 BTC (88,303.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5654 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003632 BTC for 82.71 CZK @ 2,277,207 CZK\nFees are 0.29049174 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.049277696015487643468125878 CZK)\nThe limits being 0.03 % (22.08 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62525519 BTC (513,676.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,548 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,277,207 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.19 % (910,158.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 8,026.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03877727 BTC (88,303.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5654 transactions" + } + ] + }, + { + "id": 7363, + "type": "message", + "date": "2025-06-05T14:00:04", + "date_unixtime": "1749124804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003622 BTC for 82.71 CZK @ 2,283,468 CZK\nFees are 0.29048835 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.118143833138405420894346320 CZK)\nThe limits being 0.03 % (22.16 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62529141 BTC (513,759.96 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,633 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,468 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.92 % (914,072.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,943.65 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03881349 BTC (88,629.35 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5655 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003622 BTC for 82.71 CZK @ 2,283,468 CZK\nFees are 0.29048835 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.118143833138405420894346320 CZK)\nThe limits being 0.03 % (22.16 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62529141 BTC (513,759.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,633 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,468 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.92 % (914,072.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,943.65 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03881349 BTC (88,629.35 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5655 transactions" + } + ] + }, + { + "id": 7364, + "type": "message", + "date": "2025-06-05T18:00:05", + "date_unixtime": "1749139205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003639 BTC for 82.69 CZK @ 2,272,455 CZK\nFees are 0.29044427 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.997007798070862999014304564 CZK)\nThe limits being 0.03 % (22.07 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62532780 BTC (513,842.94 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,718 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,272,455 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.55 % (907,186.50 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,860.67 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03884988 BTC (88,284.61 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5656 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003639 BTC for 82.69 CZK @ 2,272,455 CZK\nFees are 0.29044427 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.997007798070862999014304564 CZK)\nThe limits being 0.03 % (22.07 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62532780 BTC (513,842.94 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,718 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,272,455 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.55 % (907,186.50 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,860.67 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03884988 BTC (88,284.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5656 transactions" + } + ] + }, + { + "id": 7365, + "type": "message", + "date": "2025-06-05T22:00:04", + "date_unixtime": "1749153604", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003731 BTC for 82.70 CZK @ 2,216,600 CZK\nFees are 0.29046786 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.382604953154444568641221818 CZK)\nThe limits being 0.03 % (21.55 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62536511 BTC (513,925.93 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,801 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,216,600 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 169.72 % (872,258.65 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,777.68 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03888719 BTC (86,197.36 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5657 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003731 BTC for 82.70 CZK @ 2,216,600 CZK\nFees are 0.29046786 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.382604953154444568641221818 CZK)\nThe limits being 0.03 % (21.55 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62536511 BTC (513,925.93 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,801 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,216,600 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 169.72 % (872,258.65 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,777.68 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03888719 BTC (86,197.36 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5657 transactions" + } + ] + }, + { + "id": 7366, + "type": "message", + "date": "2025-06-06T02:00:05", + "date_unixtime": "1749168005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003748 BTC for 82.70 CZK @ 2,206,489 CZK\nFees are 0.29046033 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.271382557260899551675858081 CZK)\nThe limits being 0.03 % (21.47 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62540259 BTC (514,008.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,885 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,206,489 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 168.47 % (865,935.22 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,694.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03892467 BTC (85,886.87 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5658 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003748 BTC for 82.70 CZK @ 2,206,489 CZK\nFees are 0.29046033 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.271382557260899551675858081 CZK)\nThe limits being 0.03 % (21.47 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62540259 BTC (514,008.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,885 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,206,489 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 168.47 % (865,935.22 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,694.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03892467 BTC (85,886.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5658 transactions" + } + ] + }, + { + "id": 7367, + "type": "message", + "date": "2025-06-06T06:00:04", + "date_unixtime": "1749182404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003722 BTC for 82.71 CZK @ 2,222,199 CZK\nFees are 0.29049911 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.444193004227278678306743163 CZK)\nThe limits being 0.03 % (21.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62543981 BTC (514,091.92 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 821,969 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,222,199 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 170.35 % (875,760.03 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,611.69 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03896189 BTC (86,581.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.85 CZK over 5659 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003722 BTC for 82.71 CZK @ 2,222,199 CZK\nFees are 0.29049911 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.444193004227278678306743163 CZK)\nThe limits being 0.03 % (21.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62543981 BTC (514,091.92 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 821,969 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,222,199 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 170.35 % (875,760.03 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,611.69 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03896189 BTC (86,581.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.85 CZK over 5659 transactions" + } + ] + }, + { + "id": 7368, + "type": "message", + "date": "2025-06-06T10:00:05", + "date_unixtime": "1749196805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003686 BTC for 82.70 CZK @ 2,243,613 CZK\nFees are 0.29046153 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.679738356879516375269302963 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62547667 BTC (514,174.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,053 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,243,613 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 172.93 % (889,152.41 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,528.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03899875 BTC (87,498.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5660 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003686 BTC for 82.70 CZK @ 2,243,613 CZK\nFees are 0.29046153 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.679738356879516375269302963 CZK)\nThe limits being 0.03 % (21.87 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62547667 BTC (514,174.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,053 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,243,613 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 172.93 % (889,152.41 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,528.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03899875 BTC (87,498.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5660 transactions" + } + ] + }, + { + "id": 7369, + "type": "message", + "date": "2025-06-06T14:00:06", + "date_unixtime": "1749211206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003660 BTC for 82.71 CZK @ 2,259,775 CZK\nFees are 0.29049031 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.857522164500750106866404743 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62551327 BTC (514,257.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,137 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,259,775 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 174.87 % (899,261.18 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,445.70 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03903535 BTC (88,211.10 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5661 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003660 BTC for 82.71 CZK @ 2,259,775 CZK\nFees are 0.29049031 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded]\nFees would have been 0.03 % (24.857522164500750106866404743 CZK)\nThe limits being 0.03 % (22.05 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62551327 BTC (514,257.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,137 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,259,775 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 174.87 % (899,261.18 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,445.70 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03903535 BTC (88,211.10 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5661 transactions" + } + ] + }, + { + "id": 7370, + "type": "message", + "date": "2025-06-06T18:00:05", + "date_unixtime": "1749225605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003611 BTC for 82.71 CZK @ 2,290,484 CZK\nFees are 0.29049602 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.195324634341974233908818444 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62554938 BTC (514,340.91 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,223 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,290,484 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.57 % (918,469.98 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,362.71 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03907146 BTC (89,492.56 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5662 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003611 BTC for 82.71 CZK @ 2,290,484 CZK\nFees are 0.29049602 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.195324634341974233908818444 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62554938 BTC (514,340.91 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,223 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,290,484 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.57 % (918,469.98 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,362.71 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03907146 BTC (89,492.56 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5662 transactions" + } + ] + }, + { + "id": 7371, + "type": "message", + "date": "2025-06-06T22:00:04", + "date_unixtime": "1749240004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003637 BTC for 82.69 CZK @ 2,273,696 CZK\nFees are 0.29044318 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.010659724508350550362704960 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62558575 BTC (514,423.89 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,308 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,273,696 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.50 % (907,968.14 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,279.72 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03910783 BTC (88,919.33 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5663 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003637 BTC for 82.69 CZK @ 2,273,696 CZK\nFees are 0.29044318 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.010659724508350550362704960 CZK)\nThe limits being 0.03 % (22.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62558575 BTC (514,423.89 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,308 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,273,696 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.50 % (907,968.14 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,279.72 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03910783 BTC (88,919.33 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5663 transactions" + } + ] + }, + { + "id": 7372, + "type": "message", + "date": "2025-06-07T02:00:05", + "date_unixtime": "1749254405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,180 CZK\nFees are 0.29047289 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.026980284821556464341791352 CZK)\nThe limits being 0.03 % (22.27 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62562210 BTC (514,506.88 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,392 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,275,180 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 176.65 % (908,896.02 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,196.73 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03914418 BTC (89,060.06 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5664 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003635 BTC for 82.70 CZK @ 2,275,180 CZK\nFees are 0.29047289 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.026980284821556464341791352 CZK)\nThe limits being 0.03 % (22.27 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62562210 BTC (514,506.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,392 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,275,180 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 176.65 % (908,896.02 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,196.73 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03914418 BTC (89,060.06 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5664 transactions" + } + ] + }, + { + "id": 7373, + "type": "message", + "date": "2025-06-07T06:00:05", + "date_unixtime": "1749268805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003621 BTC for 82.70 CZK @ 2,283,854 CZK\nFees are 0.29045724 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.122389384461757502428327697 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62565831 BTC (514,589.87 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,477 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,283,854 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 177.68 % (914,322.10 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,113.74 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03918039 BTC (89,482.27 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5665 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003621 BTC for 82.70 CZK @ 2,283,854 CZK\nFees are 0.29045724 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.122389384461757502428327697 CZK)\nThe limits being 0.03 % (22.37 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62565831 BTC (514,589.87 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,477 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,283,854 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 177.68 % (914,322.10 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,113.74 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03918039 BTC (89,482.27 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5665 transactions" + } + ] + }, + { + "id": 7374, + "type": "message", + "date": "2025-06-07T10:00:05", + "date_unixtime": "1749283205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,850 CZK\nFees are 0.29048330 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166344617352406273754170224 CZK)\nThe limits being 0.03 % (22.43 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62569446 BTC (514,672.86 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,563 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,287,850 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.14 % (916,821.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 7,030.75 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03921654 BTC (89,721.54 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.84 CZK over 5666 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003615 BTC for 82.71 CZK @ 2,287,850 CZK\nFees are 0.29048330 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.166344617352406273754170224 CZK)\nThe limits being 0.03 % (22.43 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62569446 BTC (514,672.86 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,563 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,287,850 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.14 % (916,821.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 7,030.75 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03921654 BTC (89,721.54 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.84 CZK over 5666 transactions" + } + ] + }, + { + "id": 7375, + "type": "message", + "date": "2025-06-07T14:00:05", + "date_unixtime": "1749297605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,293,933 CZK\nFees are 0.29044998 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.233258905343088372388733744 CZK)\nThe limits being 0.03 % (22.51 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62573051 BTC (514,755.85 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,648 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,293,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.85 % (920,627.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,947.76 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03925259 BTC (90,042.80 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5667 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003605 BTC for 82.70 CZK @ 2,293,933 CZK\nFees are 0.29044998 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.233258905343088372388733744 CZK)\nThe limits being 0.03 % (22.51 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62573051 BTC (514,755.85 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,648 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,293,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.85 % (920,627.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,947.76 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03925259 BTC (90,042.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5667 transactions" + } + ] + }, + { + "id": 7376, + "type": "message", + "date": "2025-06-07T18:00:05", + "date_unixtime": "1749312005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,996 CZK\nFees are 0.29045536 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310957992601853446160475066 CZK)\nThe limits being 0.03 % (22.60 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62576645 BTC (514,838.84 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,733 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,996 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.68 % (925,047.37 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,864.77 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03928853 BTC (90,402.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5668 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,996 CZK\nFees are 0.29045536 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310957992601853446160475066 CZK)\nThe limits being 0.03 % (22.60 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62576645 BTC (514,838.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,733 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,996 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.68 % (925,047.37 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,864.77 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03928853 BTC (90,402.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5668 transactions" + } + ] + }, + { + "id": 7377, + "type": "message", + "date": "2025-06-07T22:00:05", + "date_unixtime": "1749326405", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.64 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62580236 BTC (514,921.82 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,819 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.87 % (926,164.35 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,781.79 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03932444 BTC (90,555.60 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5669 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.64 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62580236 BTC (514,921.82 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,819 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.87 % (926,164.35 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,781.79 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03932444 BTC (90,555.60 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5669 transactions" + } + ] + }, + { + "id": 7378, + "type": "message", + "date": "2025-06-08T02:00:04", + "date_unixtime": "1749340804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62583827 BTC (515,004.80 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,904 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,782 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.84 % (926,164.06 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,698.81 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03936035 BTC (90,638.29 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5670 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003591 BTC for 82.69 CZK @ 2,302,782 CZK\nFees are 0.29043810 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.330597801040829388979285396 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62583827 BTC (515,004.80 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,904 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,782 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.84 % (926,164.06 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,698.81 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03936035 BTC (90,638.29 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5670 transactions" + } + ] + }, + { + "id": 7379, + "type": "message", + "date": "2025-06-08T06:00:04", + "date_unixtime": "1749355204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,962 CZK\nFees are 0.29045106 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310583061399736426125699727 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62587421 BTC (515,087.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 822,989 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,962 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.59 % (925,025.05 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,615.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03939629 BTC (90,649.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5671 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003594 BTC for 82.70 CZK @ 2,300,962 CZK\nFees are 0.29045106 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.310583061399736426125699727 CZK)\nThe limits being 0.03 % (22.66 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62587421 BTC (515,087.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 822,989 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,962 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.59 % (925,025.05 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,615.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03939629 BTC (90,649.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5671 transactions" + } + ] + }, + { + "id": 7380, + "type": "message", + "date": "2025-06-08T10:00:06", + "date_unixtime": "1749369606", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,300,046 CZK\nFees are 0.29049696 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.300504015700332484801526138 CZK)\nThe limits being 0.03 % (22.67 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62591017 BTC (515,170.79 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,075 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,300,046 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.45 % (924,451.28 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,532.82 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03943225 BTC (90,695.98 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5672 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003596 BTC for 82.71 CZK @ 2,300,046 CZK\nFees are 0.29049696 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.300504015700332484801526138 CZK)\nThe limits being 0.03 % (22.67 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62591017 BTC (515,170.79 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,075 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,300,046 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.45 % (924,451.28 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,532.82 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03943225 BTC (90,695.98 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5672 transactions" + } + ] + }, + { + "id": 7381, + "type": "message", + "date": "2025-06-08T14:00:04", + "date_unixtime": "1749384004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,704 CZK\nFees are 0.29043776 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.351748360115293240658808997 CZK)\nThe limits being 0.03 % (22.74 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62594605 BTC (515,253.77 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,160 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,704 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.98 % (927,366.84 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,449.84 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03946813 BTC (90,962.37 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.83 CZK over 5673 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,704 CZK\nFees are 0.29043776 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.351748360115293240658808997 CZK)\nThe limits being 0.03 % (22.74 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62594605 BTC (515,253.77 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,160 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,704 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.98 % (927,366.84 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,449.84 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03946813 BTC (90,962.37 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.83 CZK over 5673 transactions" + } + ] + }, + { + "id": 7382, + "type": "message", + "date": "2025-06-08T18:00:04", + "date_unixtime": "1749398404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003579 BTC for 82.70 CZK @ 2,310,814 CZK\nFees are 0.29047719 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.418949361225651543988329198 CZK)\nThe limits being 0.03 % (22.82 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62598184 BTC (515,336.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,246 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,310,814 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 180.70 % (931,190.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,366.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03950392 BTC (91,286.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5674 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003579 BTC for 82.70 CZK @ 2,310,814 CZK\nFees are 0.29047719 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.418949361225651543988329198 CZK)\nThe limits being 0.03 % (22.82 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62598184 BTC (515,336.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,246 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,310,814 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 180.70 % (931,190.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,366.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03950392 BTC (91,286.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5674 transactions" + } + ] + }, + { + "id": 7383, + "type": "message", + "date": "2025-06-08T22:00:06", + "date_unixtime": "1749412806", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003568 BTC for 82.71 CZK @ 2,318,058 CZK\nFees are 0.29049221 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.498633384611259694209280969 CZK)\nThe limits being 0.03 % (22.91 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62601752 BTC (515,419.76 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,331 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,318,058 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 181.55 % (935,724.90 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,283.85 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03953960 BTC (91,655.07 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5675 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003568 BTC for 82.71 CZK @ 2,318,058 CZK\nFees are 0.29049221 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.498633384611259694209280969 CZK)\nThe limits being 0.03 % (22.91 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62601752 BTC (515,419.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,331 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,318,058 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 181.55 % (935,724.90 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,283.85 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03953960 BTC (91,655.07 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5675 transactions" + } + ] + }, + { + "id": 7384, + "type": "message", + "date": "2025-06-09T02:00:05", + "date_unixtime": "1749427205", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,623 CZK\nFees are 0.29042753 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.350855142730654526326197216 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62605340 BTC (515,502.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,417 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,304,623 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.89 % (927,314.45 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,200.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03957548 BTC (91,206.57 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5676 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003588 BTC for 82.69 CZK @ 2,304,623 CZK\nFees are 0.29042753 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.350855142730654526326197216 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62605340 BTC (515,502.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,417 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,304,623 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.89 % (927,314.45 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,200.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03957548 BTC (91,206.57 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5676 transactions" + } + ] + }, + { + "id": 7385, + "type": "message", + "date": "2025-06-09T06:00:05", + "date_unixtime": "1749441605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003592 BTC for 82.71 CZK @ 2,302,622 CZK\nFees are 0.29049887 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.328844442003100506800807419 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62608932 BTC (515,585.74 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,502 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,302,622 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 179.61 % (926,061.44 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,117.87 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03961140 BTC (91,210.09 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5677 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003592 BTC for 82.71 CZK @ 2,302,622 CZK\nFees are 0.29049887 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.328844442003100506800807419 CZK)\nThe limits being 0.03 % (22.80 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62608932 BTC (515,585.74 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,502 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,302,622 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 179.61 % (926,061.44 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,117.87 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03961140 BTC (91,210.09 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5677 transactions" + } + ] + }, + { + "id": 7386, + "type": "message", + "date": "2025-06-09T10:00:04", + "date_unixtime": "1749456004", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003601 BTC for 82.70 CZK @ 2,296,575 CZK\nFees are 0.29046193 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.262327142975149321169298180 CZK)\nThe limits being 0.03 % (22.76 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62612533 BTC (515,668.73 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,587 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,296,575 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 178.85 % (922,275.17 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 6,034.88 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03964741 BTC (91,053.26 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5678 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003601 BTC for 82.70 CZK @ 2,296,575 CZK\nFees are 0.29046193 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.262327142975149321169298180 CZK)\nThe limits being 0.03 % (22.76 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62612533 BTC (515,668.73 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,587 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,296,575 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 178.85 % (922,275.17 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 6,034.88 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03964741 BTC (91,053.26 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5678 transactions" + } + ] + }, + { + "id": 7387, + "type": "message", + "date": "2025-06-09T14:00:04", + "date_unixtime": "1749470404", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,269 CZK\nFees are 0.29044070 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.753961897514982950387121859 CZK)\nThe limits being 0.03 % (23.23 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62616065 BTC (515,751.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,673 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,341,269 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.25 % (950,258.97 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,851.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03968273 BTC (92,907.96 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5679 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003532 BTC for 82.69 CZK @ 2,341,269 CZK\nFees are 0.29044070 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.753961897514982950387121859 CZK)\nThe limits being 0.03 % (23.23 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62616065 BTC (515,751.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,673 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,341,269 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.25 % (950,258.97 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,851.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03968273 BTC (92,907.96 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5679 transactions" + } + ] + }, + { + "id": 7388, + "type": "message", + "date": "2025-06-09T18:00:04", + "date_unixtime": "1749484804", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003533 BTC for 82.71 CZK @ 2,340,998 CZK\nFees are 0.29048922 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.750973470859351454737177309 CZK)\nThe limits being 0.03 % (23.24 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62619598 BTC (515,834.71 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,759 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,340,998 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 184.18 % (950,088.57 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,668.90 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03971806 BTC (92,979.88 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.82 CZK over 5680 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003533 BTC for 82.71 CZK @ 2,340,998 CZK\nFees are 0.29048922 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.750973470859351454737177309 CZK)\nThe limits being 0.03 % (23.24 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62619598 BTC (515,834.71 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,759 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,340,998 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 184.18 % (950,088.57 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,668.90 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03971806 BTC (92,979.88 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.82 CZK over 5680 transactions" + } + ] + }, + { + "id": 7389, + "type": "message", + "date": "2025-06-09T22:00:04", + "date_unixtime": "1749499204", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003506 BTC for 82.69 CZK @ 2,358,610 CZK\nFees are 0.29043806 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.944713935339261813544209642 CZK)\nThe limits being 0.03 % (23.44 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62623104 BTC (515,917.69 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,846 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,358,610 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 186.29 % (961,117.33 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,585.92 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03975312 BTC (93,762.12 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5681 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003506 BTC for 82.69 CZK @ 2,358,610 CZK\nFees are 0.29043806 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (25.944713935339261813544209642 CZK)\nThe limits being 0.03 % (23.44 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62623104 BTC (515,917.69 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,846 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,358,610 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 186.29 % (961,117.33 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,585.92 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03975312 BTC (93,762.12 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5681 transactions" + } + ] + }, + { + "id": 7390, + "type": "message", + "date": "2025-06-10T02:00:05", + "date_unixtime": "1749513605", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003463 BTC for 82.69 CZK @ 2,387,791 CZK\nFees are 0.29042514 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.265699610991906611583684654 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62626567 BTC (516,000.67 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 823,933 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,791 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.80 % (979,390.78 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,502.94 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03978775 BTC (95,004.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5682 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003463 BTC for 82.69 CZK @ 2,387,791 CZK\nFees are 0.29042514 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.265699610991906611583684654 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62626567 BTC (516,000.67 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 823,933 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,791 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.80 % (979,390.78 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,502.94 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03978775 BTC (95,004.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5682 transactions" + } + ] + }, + { + "id": 7391, + "type": "message", + "date": "2025-06-10T06:00:05", + "date_unixtime": "1749528005", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003464 BTC for 82.69 CZK @ 2,387,195 CZK\nFees are 0.29043655 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.259149334718784485248512422 CZK)\nThe limits being 0.03 % (23.77 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62630031 BTC (516,083.65 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,019 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,387,195 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.70 % (979,017.56 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,419.96 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03982239 BTC (95,063.83 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5683 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003464 BTC for 82.69 CZK @ 2,387,195 CZK\nFees are 0.29043655 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.259149334718784485248512422 CZK)\nThe limits being 0.03 % (23.77 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62630031 BTC (516,083.65 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,019 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,387,195 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.70 % (979,017.56 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,419.96 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03982239 BTC (95,063.83 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5683 transactions" + } + ] + }, + { + "id": 7392, + "type": "message", + "date": "2025-06-10T10:00:06", + "date_unixtime": "1749542406", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,738 CZK\nFees are 0.29044178 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199116146195688362620230116 CZK)\nThe limits being 0.03 % (23.73 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62633503 BTC (516,166.63 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,106 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,738 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 189.01 % (975,599.20 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,336.98 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03985711 BTC (94,929.19 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5684 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,738 CZK\nFees are 0.29044178 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199116146195688362620230116 CZK)\nThe limits being 0.03 % (23.73 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62633503 BTC (516,166.63 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,106 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,738 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 189.01 % (975,599.20 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,336.98 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03985711 BTC (94,929.19 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5684 transactions" + } + ] + }, + { + "id": 7393, + "type": "message", + "date": "2025-06-10T14:00:05", + "date_unixtime": "1749556805", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,760 CZK\nFees are 0.29044447 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199358748125799333668565551 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62636975 BTC (516,249.62 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,193 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,381,760 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 188.98 % (975,612.73 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,253.99 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03989183 BTC (95,012.76 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5685 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003472 BTC for 82.69 CZK @ 2,381,760 CZK\nFees are 0.29044447 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.199358748125799333668565551 CZK)\nThe limits being 0.03 % (23.75 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62636975 BTC (516,249.62 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,193 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,381,760 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 188.98 % (975,612.73 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,253.99 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03989183 BTC (95,012.76 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5685 transactions" + } + ] + }, + { + "id": 7394, + "type": "message", + "date": "2025-06-10T18:00:06", + "date_unixtime": "1749571206", + "from": "hnizdja2_autoinvestchannel", + "from_id": "channel1448997223", + "text": [ + "✔️ ", + { + "type": "hashtag", + "text": "#AccuBot" + }, + " - ", + { + "type": "hashtag", + "text": "#BTC" + }, + " - ", + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + " - ", + { + "type": "hashtag", + "text": "#Main" + }, + "\n\n", + { + "type": "bold", + "text": "[ACTIONS]" + }, + "\n", + { + "type": "bold", + "text": "Accumulation:" + }, + "\nJust bought 0.00003490 BTC for 82.70 CZK @ 2,369,537 CZK\nFees are 0.29045192 CZK\n", + { + "type": "bold", + "text": "Withdrawal:" + }, + " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.064901611979847039659187115 CZK)\nThe limits being 0.03 % (23.65 CZK) and 25.00 CZK\n\n", + { + "type": "bold", + "text": "[SUMMARY]" + }, + "\n", + { + "type": "bold", + "text": "Total accumulation" + }, + ": 0.62640465 BTC (516,332.61 CZK)\n", + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + ": 824,280 CZK/BTC\n", + { + "type": "bold", + "text": "Current Price" + }, + ": 2,369,537 CZK/BTC\n", + { + "type": "bold", + "text": "Current Profit" + }, + ": 187.47 % (967,956.08 CZK)\n", + { + "type": "bold", + "text": "Fiat balance" + }, + ": 5,071.01 CZK\n", + { + "type": "bold", + "text": "Current balance" + }, + ": 0.03992673 BTC (94,607.84 CZK)\n", + { + "type": "bold", + "text": "Avg invested amount" + }, + ": 90.81 CZK over 5686 transactions" + ], + "text_entities": [ + { + "type": "plain", + "text": "✔️ " + }, + { + "type": "hashtag", + "text": "#AccuBot" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#BTC" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#johnstackingsats" + }, + { + "type": "plain", + "text": " - " + }, + { + "type": "hashtag", + "text": "#Main" + }, + { + "type": "plain", + "text": "\n\n" + }, + { + "type": "bold", + "text": "[ACTIONS]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Accumulation:" + }, + { + "type": "plain", + "text": "\nJust bought 0.00003490 BTC for 82.70 CZK @ 2,369,537 CZK\nFees are 0.29045192 CZK\n" + }, + { + "type": "bold", + "text": "Withdrawal:" + }, + { + "type": "plain", + "text": " Denied [Fee percentage limit exceeded, Fee absolute limit exceeded]\nFees would have been 0.03 % (26.064901611979847039659187115 CZK)\nThe limits being 0.03 % (23.65 CZK) and 25.00 CZK\n\n" + }, + { + "type": "bold", + "text": "[SUMMARY]" + }, + { + "type": "plain", + "text": "\n" + }, + { + "type": "bold", + "text": "Total accumulation" + }, + { + "type": "plain", + "text": ": 0.62640465 BTC (516,332.61 CZK)\n" + }, + { + "type": "bold", + "text": "Avg Accumulated Price" + }, + { + "type": "plain", + "text": ": 824,280 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Price" + }, + { + "type": "plain", + "text": ": 2,369,537 CZK/BTC\n" + }, + { + "type": "bold", + "text": "Current Profit" + }, + { + "type": "plain", + "text": ": 187.47 % (967,956.08 CZK)\n" + }, + { + "type": "bold", + "text": "Fiat balance" + }, + { + "type": "plain", + "text": ": 5,071.01 CZK\n" + }, + { + "type": "bold", + "text": "Current balance" + }, + { + "type": "plain", + "text": ": 0.03992673 BTC (94,607.84 CZK)\n" + }, + { + "type": "bold", + "text": "Avg invested amount" + }, + { + "type": "plain", + "text": ": 90.81 CZK over 5686 transactions" + } + ] + } + ] +} \ No newline at end of file diff --git a/archive/telegram-accbot-converter/result_accbot_import_2025-06-10T21-44-04.json b/archive/telegram-accbot-converter/result_accbot_import_2025-06-10T21-44-04.json new file mode 100644 index 0000000..cce8a65 --- /dev/null +++ b/archive/telegram-accbot-converter/result_accbot_import_2025-06-10T21-44-04.json @@ -0,0 +1,42 @@ +{ + "exportDate": "2025-06-10T21:44:04.547Z", + "version": "1.0.0", + "transactions": [ + { + "id": "8j3sre2z5493ld2scd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T18:00:06", + "amountCrypto": 0.0000349, + "pricePerUnit": 2369537, + "totalCost": 82.7, + "fee": 0.29045192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T18:00:06" + }, + { + "id": "prqvli0kh19re5xbx2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T22:00:05", + "amountCrypto": 0.0000348, + "pricePerUnit": 2376208, + "totalCost": 82.69, + "fee": 0.29043512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T22:00:05" + } + ] +} \ No newline at end of file diff --git a/archive/telegram-accbot-converter/result_accbot_import_2025-06-10T21-46-01.json b/archive/telegram-accbot-converter/result_accbot_import_2025-06-10T21-46-01.json new file mode 100644 index 0000000..8b4d409 --- /dev/null +++ b/archive/telegram-accbot-converter/result_accbot_import_2025-06-10T21-46-01.json @@ -0,0 +1,105054 @@ +{ + "exportDate": "2025-06-10T21:46:01.373Z", + "version": "1.0.0", + "transactions": [ + { + "id": "an8d1o887v4676si3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-20T12:32:10", + "amountCrypto": 0.00005304, + "pricePerUnit": 939260, + "totalCost": 49.82, + "fee": 0.1749745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-20T12:32:10" + }, + { + "id": "2lyoqlnoz89x1x0fnn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-20T19:43:04", + "amountCrypto": 0.00005386, + "pricePerUnit": 924943, + "totalCost": 49.82, + "fee": 0.17497127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-20T19:43:04" + }, + { + "id": "fwcwhymha0bpgl6xdu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-21T01:43:04", + "amountCrypto": 0.0000536, + "pricePerUnit": 929481, + "totalCost": 49.82, + "fee": 0.17498093, + "status": "completed", + "orderId": null, + "exchangeOrderId": "652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-21T01:43:04" + }, + { + "id": "6trvbbyuhzva0sj4q4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-21T07:43:04", + "amountCrypto": 0.00005406, + "pricePerUnit": 921657, + "totalCost": 49.82, + "fee": 0.17499707, + "status": "completed", + "orderId": null, + "exchangeOrderId": "653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-21T07:43:04" + }, + { + "id": "1c5zrg3dmu3ds0m2er", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-21T13:43:03", + "amountCrypto": 0.00005417, + "pricePerUnit": 919723, + "totalCost": 49.82, + "fee": 0.17498519, + "status": "completed", + "orderId": null, + "exchangeOrderId": "654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-21T13:43:03" + }, + { + "id": "o4z8ftplccm3t6vepc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-21T19:43:04", + "amountCrypto": 0.00005416, + "pricePerUnit": 919854, + "totalCost": 49.82, + "fee": 0.17497781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-21T19:43:04" + }, + { + "id": "hflkvsypo9vodb9ind", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-22T01:43:03", + "amountCrypto": 0.00005407, + "pricePerUnit": 921385, + "totalCost": 49.82, + "fee": 0.17497779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-22T01:43:03" + }, + { + "id": "ihnsl7bfbsy253bxqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-22T07:43:04", + "amountCrypto": 0.00005239, + "pricePerUnit": 951006, + "totalCost": 49.82, + "fee": 0.17499155, + "status": "completed", + "orderId": null, + "exchangeOrderId": "657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-22T07:43:04" + }, + { + "id": "afb582hnhax0prl4h6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-22T13:43:04", + "amountCrypto": 0.00005194, + "pricePerUnit": 959214, + "totalCost": 49.82, + "fee": 0.17498583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-22T13:43:04" + }, + { + "id": "w7f3ojpcnmbi0cwd3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-22T19:43:04", + "amountCrypto": 0.00005225, + "pricePerUnit": 953565, + "totalCost": 49.82, + "fee": 0.17499354, + "status": "completed", + "orderId": null, + "exchangeOrderId": "659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-22T19:43:04" + }, + { + "id": "jx2ypauc7sgc87f2xx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-23T01:43:03", + "amountCrypto": 0.00005247, + "pricePerUnit": 949457, + "totalCost": 49.82, + "fee": 0.1749733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-23T01:43:03" + }, + { + "id": "h5oau5ziw977lxg3se", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-23T07:43:04", + "amountCrypto": 0.00005274, + "pricePerUnit": 944623, + "totalCost": 49.82, + "fee": 0.17497825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-23T07:43:04" + }, + { + "id": "yjbirbswygaf0s7vtk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-23T13:43:04", + "amountCrypto": 0.00005271, + "pricePerUnit": 945270, + "totalCost": 49.83, + "fee": 0.17499849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-23T13:43:04" + }, + { + "id": "r01lev9wnk8e95fop9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-23T19:43:04", + "amountCrypto": 0.00005272, + "pricePerUnit": 945005, + "totalCost": 49.82, + "fee": 0.17498263, + "status": "completed", + "orderId": null, + "exchangeOrderId": "663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-23T19:43:04" + }, + { + "id": "kf9429ob9f4w0akjp8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-24T01:43:04", + "amountCrypto": 0.00005163, + "pricePerUnit": 965000, + "totalCost": 49.82, + "fee": 0.17499066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-24T01:43:04" + }, + { + "id": "7jqnlgcb3iln0lxxgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-24T07:43:03", + "amountCrypto": 0.0000514, + "pricePerUnit": 969276, + "totalCost": 49.82, + "fee": 0.17498306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-24T07:43:03" + }, + { + "id": "imuhlrauiggw924fs7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-24T13:43:04", + "amountCrypto": 0.0000518, + "pricePerUnit": 961726, + "totalCost": 49.82, + "fee": 0.17497119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-24T13:43:04" + }, + { + "id": "xtl0im37o4v0k18h36", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-24T19:43:04", + "amountCrypto": 0.00005041, + "pricePerUnit": 988346, + "totalCost": 49.82, + "fee": 0.17498915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-24T19:43:04" + }, + { + "id": "9dgcedcsb7spcolt3x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-25T01:43:04", + "amountCrypto": 0.00005038, + "pricePerUnit": 988986, + "totalCost": 49.83, + "fee": 0.17499826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-25T01:43:04" + }, + { + "id": "imt74octz3p8eot83g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-25T07:43:04", + "amountCrypto": 0.00005032, + "pricePerUnit": 990158, + "totalCost": 49.82, + "fee": 0.17499698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-25T07:43:04" + }, + { + "id": "4i4bngcusquchabk1h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-25T13:43:04", + "amountCrypto": 0.00004982, + "pricePerUnit": 999999, + "totalCost": 49.82, + "fee": 0.17498012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-25T13:43:04" + }, + { + "id": "81pu6x4drdzwo9m9p8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-25T19:43:04", + "amountCrypto": 0.00005002, + "pricePerUnit": 995954, + "totalCost": 49.82, + "fee": 0.17497193, + "status": "completed", + "orderId": null, + "exchangeOrderId": "671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-25T19:43:04" + }, + { + "id": "nw4qt6hqronn948bsz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-26T01:43:04", + "amountCrypto": 0.00005003, + "pricePerUnit": 995771, + "totalCost": 49.82, + "fee": 0.17497476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-26T01:43:04" + }, + { + "id": "zf0pjk0yv1z02wwfnn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-26T07:43:04", + "amountCrypto": 0.00004998, + "pricePerUnit": 996811, + "totalCost": 49.82, + "fee": 0.17498245, + "status": "completed", + "orderId": null, + "exchangeOrderId": "673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-26T07:43:04" + }, + { + "id": "mxdl03qa0uf2lwph4y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-26T13:43:04", + "amountCrypto": 0.00005017, + "pricePerUnit": 993080, + "totalCost": 49.82, + "fee": 0.17499021, + "status": "completed", + "orderId": null, + "exchangeOrderId": "674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-26T13:43:04" + }, + { + "id": "sk1a3rwdymxkfneye7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-26T19:43:04", + "amountCrypto": 0.00005001, + "pricePerUnit": 996152, + "totalCost": 49.82, + "fee": 0.17497173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-26T19:43:04" + }, + { + "id": "7qg3bwr2ajs0amsrzd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-27T01:43:04", + "amountCrypto": 0.00004986, + "pricePerUnit": 999187, + "totalCost": 49.82, + "fee": 0.17497841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-27T01:43:04" + }, + { + "id": "vvwz95rcgr45rsn1ab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-27T08:43:04", + "amountCrypto": 0.00004977, + "pricePerUnit": 1000949, + "totalCost": 49.82, + "fee": 0.17497057, + "status": "completed", + "orderId": null, + "exchangeOrderId": "677", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-27T08:43:04" + }, + { + "id": "e7uhebr0nsrd6aozpj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-27T14:43:04", + "amountCrypto": 0.00004996, + "pricePerUnit": 997245, + "totalCost": 49.82, + "fee": 0.17498858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-27T14:43:04" + }, + { + "id": "sk58f2cu557skmqet5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-27T20:43:04", + "amountCrypto": 0.00004957, + "pricePerUnit": 1004954, + "totalCost": 49.82, + "fee": 0.17496473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "679", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-27T20:43:04" + }, + { + "id": "k7y7ed8n8ttgzk45pa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-28T02:43:05", + "amountCrypto": 0.00004877, + "pricePerUnit": 1021500, + "totalCost": 49.82, + "fee": 0.17497522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "680", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-28T02:43:05" + }, + { + "id": "zqa2lll4x6s0of392q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-28T08:43:03", + "amountCrypto": 0.00004877, + "pricePerUnit": 1021500, + "totalCost": 49.82, + "fee": 0.17497522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "681", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-28T08:43:03" + }, + { + "id": "tmrby6s0czht5lolt1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-28T14:43:04", + "amountCrypto": 0.00004741, + "pricePerUnit": 1050933, + "totalCost": 49.82, + "fee": 0.17499692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "682", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-28T14:43:04" + }, + { + "id": "48edjz6ji3vhfvntdd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-28T20:43:05", + "amountCrypto": 0.0000468, + "pricePerUnit": 1064504, + "totalCost": 49.82, + "fee": 0.17497604, + "status": "completed", + "orderId": null, + "exchangeOrderId": "683", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-28T20:43:05" + }, + { + "id": "r5bwomo8fp8ihxxp4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-29T02:43:04", + "amountCrypto": 0.0000471, + "pricePerUnit": 1057867, + "totalCost": 49.83, + "fee": 0.17499974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "684", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-29T02:43:04" + }, + { + "id": "k1jp9qh3fee0d5s3sk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-29T08:43:04", + "amountCrypto": 0.00004693, + "pricePerUnit": 1061626, + "totalCost": 49.82, + "fee": 0.1749877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "685", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-29T08:43:04" + }, + { + "id": "k98s1njstxryph9k1h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-29T14:43:04", + "amountCrypto": 0.00004714, + "pricePerUnit": 1056857, + "totalCost": 49.82, + "fee": 0.17498113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "686", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-29T14:43:04" + }, + { + "id": "pkjb258c4yi6rt97oh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-29T20:43:04", + "amountCrypto": 0.00004755, + "pricePerUnit": 1047651, + "totalCost": 49.82, + "fee": 0.17496556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "687", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-29T20:43:04" + }, + { + "id": "ma6sci1tkkwgkqtlqf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-30T02:43:04", + "amountCrypto": 0.00004783, + "pricePerUnit": 1041672, + "totalCost": 49.82, + "fee": 0.17499144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "688", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-30T02:43:04" + }, + { + "id": "uyaw4loqj5t358ohjl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-30T08:43:04", + "amountCrypto": 0.00004773, + "pricePerUnit": 1043731, + "totalCost": 49.82, + "fee": 0.17497074, + "status": "completed", + "orderId": null, + "exchangeOrderId": "689", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-30T08:43:04" + }, + { + "id": "rtfd3dqd8a5hnbi1l0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-30T14:43:04", + "amountCrypto": 0.00004789, + "pricePerUnit": 1040345, + "totalCost": 49.82, + "fee": 0.17498775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "690", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-30T14:43:04" + }, + { + "id": "juovhoizse9rg0bycx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-30T20:43:04", + "amountCrypto": 0.00004797, + "pricePerUnit": 1038574, + "totalCost": 49.82, + "fee": 0.17498168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "691", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-30T20:43:04" + }, + { + "id": "lk34s6jyhmojuqgnto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-31T02:43:03", + "amountCrypto": 0.00004819, + "pricePerUnit": 1033901, + "totalCost": 49.82, + "fee": 0.17499325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "692", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-31T02:43:03" + }, + { + "id": "eaojckl4x9sigufo41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-31T08:43:04", + "amountCrypto": 0.00004828, + "pricePerUnit": 1032000, + "totalCost": 49.82, + "fee": 0.17499772, + "status": "completed", + "orderId": null, + "exchangeOrderId": "693", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-31T08:43:04" + }, + { + "id": "4lhjanljo1bkg82o01", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-31T14:43:04", + "amountCrypto": 0.00004775, + "pricePerUnit": 1043307, + "totalCost": 49.82, + "fee": 0.17497295, + "status": "completed", + "orderId": null, + "exchangeOrderId": "694", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-31T14:43:04" + }, + { + "id": "e0g1kdm9crh6n1128o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-03-31T20:43:04", + "amountCrypto": 0.00004928, + "pricePerUnit": 1010996, + "totalCost": 49.82, + "fee": 0.17498691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "695", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-03-31T20:43:04" + }, + { + "id": "0vq5p6dgvz1e6zpazg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-01T02:43:04", + "amountCrypto": 0.00004962, + "pricePerUnit": 1004037, + "totalCost": 49.82, + "fee": 0.1749814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "696", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-01T02:43:04" + }, + { + "id": "lx9f42druvqjzjptkt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-01T08:43:04", + "amountCrypto": 0.00005046, + "pricePerUnit": 987379, + "totalCost": 49.82, + "fee": 0.17499134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "697", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-01T08:43:04" + }, + { + "id": "vq0reyqz27902chd93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-01T14:43:03", + "amountCrypto": 0.00004996, + "pricePerUnit": 997254, + "totalCost": 49.82, + "fee": 0.17499016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "698", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-01T14:43:03" + }, + { + "id": "u1hdm21lm2wvy1ut4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-01T20:43:03", + "amountCrypto": 0.00004872, + "pricePerUnit": 1022620, + "totalCost": 49.82, + "fee": 0.17498748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "699", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-01T20:43:03" + }, + { + "id": "ob1pqfg3bsgsp8xbyw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-02T02:43:04", + "amountCrypto": 0.00004865, + "pricePerUnit": 1024096, + "totalCost": 49.82, + "fee": 0.17498827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "700", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-02T02:43:04" + }, + { + "id": "lt5v9neb31f4vij1cw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-02T08:43:05", + "amountCrypto": 0.0000485, + "pricePerUnit": 1027286, + "totalCost": 49.82, + "fee": 0.17499213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "701", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-02T08:43:05" + }, + { + "id": "yue7dr7w2h7qh26ykw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-02T14:43:03", + "amountCrypto": 0.00004816, + "pricePerUnit": 1034520, + "totalCost": 49.82, + "fee": 0.17498902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "702", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-02T14:43:03" + }, + { + "id": "mbu7nsiy8uvk2cweea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-02T20:43:04", + "amountCrypto": 0.00004921, + "pricePerUnit": 1012438, + "totalCost": 49.82, + "fee": 0.17498758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "703", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-02T20:43:04" + }, + { + "id": "rro4av1m895zxhpvc1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-03T02:43:04", + "amountCrypto": 0.00004903, + "pricePerUnit": 1016149, + "totalCost": 49.82, + "fee": 0.17498657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "704", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-03T02:43:04" + }, + { + "id": "zv7mwvao9qsqdcycem", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-03T08:43:04", + "amountCrypto": 0.00004862, + "pricePerUnit": 1024781, + "totalCost": 49.82, + "fee": 0.17499734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "705", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-03T08:43:04" + }, + { + "id": "6h6ay7une7hjhu6aec", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-03T14:43:04", + "amountCrypto": 0.00004871, + "pricePerUnit": 1022869, + "totalCost": 49.82, + "fee": 0.17499408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "706", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-03T14:43:04" + }, + { + "id": "6lin14rsp6ftpd0agp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-03T20:43:03", + "amountCrypto": 0.00004869, + "pricePerUnit": 1023253, + "totalCost": 49.82, + "fee": 0.17498798, + "status": "completed", + "orderId": null, + "exchangeOrderId": "707", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-03T20:43:03" + }, + { + "id": "vfxpwz6gdc0va3eo2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-04-04T02:43:05", + "amountCrypto": 0.00004908, + "pricePerUnit": 1015142, + "totalCost": 49.82, + "fee": 0.17499143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "708", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-04-04T02:43:05" + }, + { + "id": "xpaazjjemxwk587a7g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-07T06:06:04", + "amountCrypto": 0.00005803, + "pricePerUnit": 858568, + "totalCost": 49.82, + "fee": 0.17498978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-07T06:06:04" + }, + { + "id": "kfcw2zn45i6pf1al3b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-07T10:06:04", + "amountCrypto": 0.00005795, + "pricePerUnit": 859756, + "totalCost": 49.82, + "fee": 0.17499034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-07T10:06:04" + }, + { + "id": "9c816k2gatoct07jl6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-07T14:06:04", + "amountCrypto": 0.00005793, + "pricePerUnit": 860049, + "totalCost": 49.82, + "fee": 0.17498956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-07T14:06:04" + }, + { + "id": "7ck7byex6sbtb8j5c1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-07T18:06:04", + "amountCrypto": 0.00005803, + "pricePerUnit": 858603, + "totalCost": 49.82, + "fee": 0.17499692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-07T18:06:04" + }, + { + "id": "28c5n0pd8eo621s7lh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-07T22:06:04", + "amountCrypto": 0.00005828, + "pricePerUnit": 854800, + "totalCost": 49.82, + "fee": 0.17497237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-07T22:06:04" + }, + { + "id": "2mv9q4775ivrmk3xlu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-08T02:06:04", + "amountCrypto": 0.00005895, + "pricePerUnit": 845168, + "totalCost": 49.82, + "fee": 0.17498962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-08T02:06:04" + }, + { + "id": "owf0eha79m2rl9mcwp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-08T06:06:04", + "amountCrypto": 0.00006028, + "pricePerUnit": 826481, + "totalCost": 49.82, + "fee": 0.17498126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-08T06:06:04" + }, + { + "id": "tp1kv6hm02904h0g2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-08T10:06:10", + "amountCrypto": 0.00005987, + "pricePerUnit": 832116, + "totalCost": 49.82, + "fee": 0.17497603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-08T10:06:10" + }, + { + "id": "a3htqq36l4rcwamdn8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-08T14:06:03", + "amountCrypto": 0.00005995, + "pricePerUnit": 830991, + "totalCost": 49.82, + "fee": 0.17497296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-08T14:06:03" + }, + { + "id": "30tu4nq4s4zwt7o4zw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-08T18:06:04", + "amountCrypto": 0.00006037, + "pricePerUnit": 825289, + "totalCost": 49.82, + "fee": 0.17498977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-08T18:06:04" + }, + { + "id": "38w7yl47vhsvjc1l09", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-08T22:06:04", + "amountCrypto": 0.00006032, + "pricePerUnit": 825975, + "totalCost": 49.82, + "fee": 0.17499017, + "status": "completed", + "orderId": null, + "exchangeOrderId": "807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-08T22:06:04" + }, + { + "id": "6xf8pdk3rmzjani2cl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-09T02:06:04", + "amountCrypto": 0.00006118, + "pricePerUnit": 814332, + "totalCost": 49.82, + "fee": 0.17498322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-09T02:06:04" + }, + { + "id": "t1t81ufxrbigfp9ee2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-09T06:06:04", + "amountCrypto": 0.00006202, + "pricePerUnit": 803347, + "totalCost": 49.82, + "fee": 0.17499287, + "status": "completed", + "orderId": null, + "exchangeOrderId": "809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-09T06:06:04" + }, + { + "id": "vev2iw1cm8nkqn01s5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-09T10:06:04", + "amountCrypto": 0.00006177, + "pricePerUnit": 806587, + "totalCost": 49.82, + "fee": 0.17499041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-09T10:06:04" + }, + { + "id": "pl8gufc8kuux0uu296", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-09T14:06:03", + "amountCrypto": 0.00006258, + "pricePerUnit": 796150, + "totalCost": 49.82, + "fee": 0.17499107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-09T14:06:03" + }, + { + "id": "drcu38sc63dpgn5430", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-09T18:06:03", + "amountCrypto": 0.00006469, + "pricePerUnit": 770124, + "totalCost": 49.82, + "fee": 0.17497791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-09T18:06:03" + }, + { + "id": "2l55s47j2ir3xrsibs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-09T22:06:04", + "amountCrypto": 0.00006643, + "pricePerUnit": 749964, + "totalCost": 49.82, + "fee": 0.17498068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-09T22:06:04" + }, + { + "id": "dej5pxsm7m5oa8siij", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-10T02:06:03", + "amountCrypto": 0.00006806, + "pricePerUnit": 732035, + "totalCost": 49.82, + "fee": 0.17498838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-10T02:06:03" + }, + { + "id": "ekrpge0ocb0ihasfuj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-10T06:06:04", + "amountCrypto": 0.00006783, + "pricePerUnit": 734502, + "totalCost": 49.82, + "fee": 0.17498476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-10T06:06:04" + }, + { + "id": "fm0r5onzapzeowe5jm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-10T10:06:04", + "amountCrypto": 0.0000661, + "pricePerUnit": 753787, + "totalCost": 49.83, + "fee": 0.17499898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-10T10:06:04" + }, + { + "id": "qo2wfwrfeitlpb33bt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-10T14:06:04", + "amountCrypto": 0.00006594, + "pricePerUnit": 755527, + "totalCost": 49.82, + "fee": 0.17497836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-10T14:06:04" + }, + { + "id": "ck4jjvd28pz64brqq5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-10T18:06:04", + "amountCrypto": 0.00006558, + "pricePerUnit": 759691, + "totalCost": 49.82, + "fee": 0.17498218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-10T18:06:04" + }, + { + "id": "6xe34pd8fkx65bp0qi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-10T22:06:04", + "amountCrypto": 0.0000659, + "pricePerUnit": 755973, + "totalCost": 49.82, + "fee": 0.17497545, + "status": "completed", + "orderId": null, + "exchangeOrderId": "819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-10T22:06:04" + }, + { + "id": "9pzg7ron20nsv9pxlv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-12T16:53:11", + "amountCrypto": 0.00007153, + "pricePerUnit": 696503, + "totalCost": 49.82, + "fee": 0.17498331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-12T16:53:11" + }, + { + "id": "g4n25wg3yi9trka5wo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-12T18:06:04", + "amountCrypto": 0.00007095, + "pricePerUnit": 702219, + "totalCost": 49.82, + "fee": 0.17498886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-12T18:06:04" + }, + { + "id": "yzaqfqdao3dvmazilp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-12T22:06:04", + "amountCrypto": 0.00007191, + "pricePerUnit": 692870, + "totalCost": 49.82, + "fee": 0.17499533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-12T22:06:04" + }, + { + "id": "ehos49dky5woebtt7f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-13T02:06:04", + "amountCrypto": 0.00007143, + "pricePerUnit": 697468, + "totalCost": 49.82, + "fee": 0.17498078, + "status": "completed", + "orderId": null, + "exchangeOrderId": "823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-13T02:06:04" + }, + { + "id": "1fdndba9l5melteae0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-13T06:06:04", + "amountCrypto": 0.00006782, + "pricePerUnit": 734654, + "totalCost": 49.82, + "fee": 0.17499517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-13T06:06:04" + }, + { + "id": "4947uu4ls1a5ku4ixm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-13T10:06:03", + "amountCrypto": 0.00006837, + "pricePerUnit": 728706, + "totalCost": 49.82, + "fee": 0.17498602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-13T10:06:03" + }, + { + "id": "7zyf5w5bpluvshbvdq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-13T14:06:03", + "amountCrypto": 0.00006795, + "pricePerUnit": 733188, + "totalCost": 49.82, + "fee": 0.17498073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-13T14:06:03" + }, + { + "id": "ct1i38n95dsmr71f0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-13T18:06:03", + "amountCrypto": 0.00006872, + "pricePerUnit": 725005, + "totalCost": 49.82, + "fee": 0.17498853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-13T18:06:03" + }, + { + "id": "9yej2s9t62nyjw50ej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-13T22:06:04", + "amountCrypto": 0.0000697, + "pricePerUnit": 714848, + "totalCost": 49.82, + "fee": 0.17499752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-13T22:06:04" + }, + { + "id": "lsrtkour3ywvy77qli", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-14T02:06:04", + "amountCrypto": 0.00007106, + "pricePerUnit": 701089, + "totalCost": 49.82, + "fee": 0.17497813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-14T02:06:04" + }, + { + "id": "6rvaa0rjfq7er7718w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-14T06:06:04", + "amountCrypto": 0.00007084, + "pricePerUnit": 703348, + "totalCost": 49.83, + "fee": 0.17499846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-14T06:06:04" + }, + { + "id": "p5q4jyybn5r3zv95xf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-14T10:06:04", + "amountCrypto": 0.00007118, + "pricePerUnit": 699969, + "totalCost": 49.82, + "fee": 0.17499362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-14T10:06:04" + }, + { + "id": "tvxirielyzk9cc023x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-14T14:06:03", + "amountCrypto": 0.00007207, + "pricePerUnit": 691291, + "totalCost": 49.82, + "fee": 0.17498501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-14T14:06:03" + }, + { + "id": "nzfif37na5fxd9gwoy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-14T18:06:06", + "amountCrypto": 0.00007237, + "pricePerUnit": 688477, + "totalCost": 49.83, + "fee": 0.17499814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-14T18:06:06" + }, + { + "id": "vamkpz5j4fkdmyi3z1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-14T22:06:04", + "amountCrypto": 0.00007083, + "pricePerUnit": 703412, + "totalCost": 49.82, + "fee": 0.17498968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-14T22:06:04" + }, + { + "id": "fvxsvxl9bsd7b4n4s8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-15T02:06:03", + "amountCrypto": 0.0000693, + "pricePerUnit": 718956, + "totalCost": 49.82, + "fee": 0.17499312, + "status": "completed", + "orderId": null, + "exchangeOrderId": "835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-15T02:06:03" + }, + { + "id": "3omtv7q7g8evrxe88k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-15T06:06:04", + "amountCrypto": 0.00007027, + "pricePerUnit": 708963, + "totalCost": 49.82, + "fee": 0.17497619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-15T06:06:04" + }, + { + "id": "6h098vu47caoid58na", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-15T10:06:05", + "amountCrypto": 0.00006991, + "pricePerUnit": 712676, + "totalCost": 49.82, + "fee": 0.17499146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-15T10:06:05" + }, + { + "id": "o4hciu3twwqr54kgqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-15T14:06:04", + "amountCrypto": 0.00006878, + "pricePerUnit": 724413, + "totalCost": 49.83, + "fee": 0.17499833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-15T14:06:04" + }, + { + "id": "wcri29z7s7m2lp63j7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-15T18:06:04", + "amountCrypto": 0.00006958, + "pricePerUnit": 716046, + "totalCost": 49.82, + "fee": 0.17498901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-15T18:06:04" + }, + { + "id": "vlqb0wyo84pnle70li", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-15T22:06:04", + "amountCrypto": 0.0000689, + "pricePerUnit": 723060, + "totalCost": 49.82, + "fee": 0.1749762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-15T22:06:04" + }, + { + "id": "7bjmwfsgknxo0re1t0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-16T02:06:04", + "amountCrypto": 0.0000669, + "pricePerUnit": 744717, + "totalCost": 49.82, + "fee": 0.1749858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-16T02:06:04" + }, + { + "id": "y3vscf8197lv04iohk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-16T06:06:04", + "amountCrypto": 0.00006892, + "pricePerUnit": 722877, + "totalCost": 49.82, + "fee": 0.17498269, + "status": "completed", + "orderId": null, + "exchangeOrderId": "842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-16T06:06:04" + }, + { + "id": "0mtnif0rs54cyxzo6u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-16T10:06:04", + "amountCrypto": 0.00007026, + "pricePerUnit": 709064, + "totalCost": 49.82, + "fee": 0.17497621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-16T10:06:04" + }, + { + "id": "r6dxeiigtkn3746j84", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-16T14:06:04", + "amountCrypto": 0.00007027, + "pricePerUnit": 708979, + "totalCost": 49.82, + "fee": 0.17498013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-16T14:06:04" + }, + { + "id": "9duk03udkvxqianzqz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-16T18:06:04", + "amountCrypto": 0.00007051, + "pricePerUnit": 706569, + "totalCost": 49.82, + "fee": 0.17498093, + "status": "completed", + "orderId": null, + "exchangeOrderId": "845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-16T18:06:04" + }, + { + "id": "x55i3coregp0kwjh3l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-16T22:06:04", + "amountCrypto": 0.00007074, + "pricePerUnit": 704342, + "totalCost": 49.83, + "fee": 0.17499839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-16T22:06:04" + }, + { + "id": "wmcwy3ymrjpstur9ou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-17T02:06:04", + "amountCrypto": 0.0000702, + "pricePerUnit": 709707, + "totalCost": 49.82, + "fee": 0.17498532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-17T02:06:04" + }, + { + "id": "rbld2roay524fj8f0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-17T06:06:04", + "amountCrypto": 0.00006936, + "pricePerUnit": 718271, + "totalCost": 49.82, + "fee": 0.17497775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-17T06:06:04" + }, + { + "id": "e2jkwcvkapd7wgdk94", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-17T10:06:25", + "amountCrypto": 0.00006903, + "pricePerUnit": 721706, + "totalCost": 49.82, + "fee": 0.17497807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-17T10:06:25" + }, + { + "id": "pxfqpjd5rlnl52pwy7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-17T14:06:04", + "amountCrypto": 0.00006981, + "pricePerUnit": 713630, + "totalCost": 49.82, + "fee": 0.17497506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-17T14:06:04" + }, + { + "id": "w9t9uesimd0fzt64r4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-17T18:06:05", + "amountCrypto": 0.00007032, + "pricePerUnit": 708471, + "totalCost": 49.82, + "fee": 0.17497917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-17T18:06:05" + }, + { + "id": "idtp9bl3of2rm55cn1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-17T22:06:04", + "amountCrypto": 0.00007049, + "pricePerUnit": 706754, + "totalCost": 49.82, + "fee": 0.1749771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-17T22:06:04" + }, + { + "id": "qcn8xtg58so6aj5n01", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-18T02:06:04", + "amountCrypto": 0.00006965, + "pricePerUnit": 715350, + "totalCost": 49.82, + "fee": 0.17499479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-18T02:06:04" + }, + { + "id": "lwze82uqvxmx0evi4i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-18T06:06:04", + "amountCrypto": 0.00007102, + "pricePerUnit": 701512, + "totalCost": 49.82, + "fee": 0.17498515, + "status": "completed", + "orderId": null, + "exchangeOrderId": "854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-18T06:06:04" + }, + { + "id": "s93lmt34rvhdb1t54s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-18T10:06:05", + "amountCrypto": 0.0000707, + "pricePerUnit": 704672, + "totalCost": 49.82, + "fee": 0.17498139, + "status": "completed", + "orderId": null, + "exchangeOrderId": "855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-18T10:06:05" + }, + { + "id": "ns3rqhw1mig76q0qll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-18T14:06:04", + "amountCrypto": 0.00007099, + "pricePerUnit": 701827, + "totalCost": 49.82, + "fee": 0.17498977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-18T14:06:04" + }, + { + "id": "eh3gy4tkwgrs4c3t22", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-18T18:06:04", + "amountCrypto": 0.00007322, + "pricePerUnit": 680444, + "totalCost": 49.82, + "fee": 0.1749877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-18T18:06:04" + }, + { + "id": "gxoeiun1rm0ow1pxpj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-18T22:06:03", + "amountCrypto": 0.00007229, + "pricePerUnit": 689199, + "totalCost": 49.82, + "fee": 0.17498801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-18T22:06:03" + }, + { + "id": "3k0orhjjes2cfk9d4v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-19T02:06:04", + "amountCrypto": 0.0000735, + "pricePerUnit": 677822, + "totalCost": 49.82, + "fee": 0.17498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-19T02:06:04" + }, + { + "id": "3u3517mdmvafs84q4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-19T06:06:04", + "amountCrypto": 0.00007243, + "pricePerUnit": 687876, + "totalCost": 49.82, + "fee": 0.17499034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "860", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-19T06:06:04" + }, + { + "id": "mw65vsvk8rjixxdglx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-19T10:06:04", + "amountCrypto": 0.00007256, + "pricePerUnit": 686649, + "totalCost": 49.82, + "fee": 0.17499171, + "status": "completed", + "orderId": null, + "exchangeOrderId": "861", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-19T10:06:04" + }, + { + "id": "psx8l6tn635pig64ie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-19T14:06:04", + "amountCrypto": 0.00007204, + "pricePerUnit": 691584, + "totalCost": 49.82, + "fee": 0.17498631, + "status": "completed", + "orderId": null, + "exchangeOrderId": "862", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-19T14:06:04" + }, + { + "id": "6pmzclmvfh07lt6q2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-19T18:06:04", + "amountCrypto": 0.00007007, + "pricePerUnit": 711010, + "totalCost": 49.82, + "fee": 0.17498195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "863", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-19T18:06:04" + }, + { + "id": "czzc02hz53bovy2e32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-19T22:06:04", + "amountCrypto": 0.00007096, + "pricePerUnit": 702099, + "totalCost": 49.82, + "fee": 0.17498361, + "status": "completed", + "orderId": null, + "exchangeOrderId": "864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-19T22:06:04" + }, + { + "id": "bnqg2sfas6v8u89419", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-20T02:06:04", + "amountCrypto": 0.0000703, + "pricePerUnit": 708664, + "totalCost": 49.82, + "fee": 0.17497706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-20T02:06:04" + }, + { + "id": "xgpd6i664kjpprvs45", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-20T06:06:04", + "amountCrypto": 0.00007032, + "pricePerUnit": 708479, + "totalCost": 49.82, + "fee": 0.17498115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-20T06:06:04" + }, + { + "id": "p9s4s2y4isa6mhofyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-20T10:06:04", + "amountCrypto": 0.00007041, + "pricePerUnit": 707559, + "totalCost": 49.82, + "fee": 0.17497759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-20T10:06:04" + }, + { + "id": "xrv8ocd8zqx2mdmgm6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-20T14:06:03", + "amountCrypto": 0.00007005, + "pricePerUnit": 711219, + "totalCost": 49.82, + "fee": 0.17498342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-20T14:06:03" + }, + { + "id": "mew68u5lg8zhcq18o1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-20T18:06:04", + "amountCrypto": 0.00007314, + "pricePerUnit": 681211, + "totalCost": 49.82, + "fee": 0.17499355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-20T18:06:04" + }, + { + "id": "m4j5fm8l8hh9tvqlh4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-20T22:06:05", + "amountCrypto": 0.00007238, + "pricePerUnit": 688383, + "totalCost": 49.83, + "fee": 0.17499842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-20T22:06:05" + }, + { + "id": "wmx10skwdyhls9brt5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-21T02:06:04", + "amountCrypto": 0.00007256, + "pricePerUnit": 686652, + "totalCost": 49.82, + "fee": 0.17499248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-21T02:06:04" + }, + { + "id": "xwp4zeovbsuxaoku5f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-21T06:06:03", + "amountCrypto": 0.00007285, + "pricePerUnit": 683886, + "totalCost": 49.82, + "fee": 0.17498414, + "status": "completed", + "orderId": null, + "exchangeOrderId": "872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-21T06:06:03" + }, + { + "id": "006ev80gf0c94fu8xu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-21T10:06:03", + "amountCrypto": 0.00007218, + "pricePerUnit": 690228, + "totalCost": 49.82, + "fee": 0.1749826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-21T10:06:03" + }, + { + "id": "yaf7y60kui6ivtly4t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-21T14:06:04", + "amountCrypto": 0.00007265, + "pricePerUnit": 685817, + "totalCost": 49.82, + "fee": 0.17499647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-21T14:06:04" + }, + { + "id": "6me8md36cy7zlukjzp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-21T18:06:04", + "amountCrypto": 0.0000719, + "pricePerUnit": 692957, + "totalCost": 49.82, + "fee": 0.17499297, + "status": "completed", + "orderId": null, + "exchangeOrderId": "875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-21T18:06:04" + }, + { + "id": "dmtpdc7f72kztcan9x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-21T22:06:04", + "amountCrypto": 0.00007224, + "pricePerUnit": 689718, + "totalCost": 49.83, + "fee": 0.17499866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-21T22:06:04" + }, + { + "id": "gxceeexwesge1c6rr7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-22T02:06:04", + "amountCrypto": 0.00007227, + "pricePerUnit": 689351, + "totalCost": 49.82, + "fee": 0.17497818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-22T02:06:04" + }, + { + "id": "chtm89j24dne81mri9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-22T06:06:03", + "amountCrypto": 0.00007258, + "pricePerUnit": 686470, + "totalCost": 49.82, + "fee": 0.17499432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-22T06:06:03" + }, + { + "id": "hg7pmt4b94fvbem9hp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-22T10:06:04", + "amountCrypto": 0.00007241, + "pricePerUnit": 688097, + "totalCost": 49.83, + "fee": 0.17499822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-22T10:06:04" + }, + { + "id": "gw2bbhb98bmdwe1j60", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-22T14:06:04", + "amountCrypto": 0.00007118, + "pricePerUnit": 699968, + "totalCost": 49.82, + "fee": 0.17499337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-22T14:06:04" + }, + { + "id": "u3qi42wifj64tpyl1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-22T18:06:04", + "amountCrypto": 0.00007139, + "pricePerUnit": 697913, + "totalCost": 49.82, + "fee": 0.17499438, + "status": "completed", + "orderId": null, + "exchangeOrderId": "881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-22T18:06:04" + }, + { + "id": "3u65szutrlc6pol6tc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-22T22:06:04", + "amountCrypto": 0.0000713, + "pricePerUnit": 698719, + "totalCost": 49.82, + "fee": 0.17497561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-22T22:06:04" + }, + { + "id": "cbxots0kic6bz8m5wm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-23T02:06:05", + "amountCrypto": 0.00007054, + "pricePerUnit": 706341, + "totalCost": 49.83, + "fee": 0.17499889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-23T02:06:05" + }, + { + "id": "a8wefhere0mp3pp2xw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-05-23T06:06:04", + "amountCrypto": 0.00007085, + "pricePerUnit": 703205, + "totalCost": 49.82, + "fee": 0.17498758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-05-23T06:06:04" + }, + { + "id": "r5zqepsevyr8ogbmea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-22T13:43:52", + "amountCrypto": 0.00010168, + "pricePerUnit": 490000, + "totalCost": 49.82, + "fee": 0.17499153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-22T13:43:52" + }, + { + "id": "h20g3h0ffrc7cnc39l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-22T14:00:03", + "amountCrypto": 0.00010168, + "pricePerUnit": 489998, + "totalCost": 49.82, + "fee": 0.17499082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-22T14:00:03" + }, + { + "id": "mddtf5ei3hzszacmc7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-22T18:00:03", + "amountCrypto": 0.00010472, + "pricePerUnit": 475753, + "totalCost": 49.82, + "fee": 0.17498329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-22T18:00:03" + }, + { + "id": "jmbfia7kun91kq46az", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-22T22:00:07", + "amountCrypto": 0.00010434, + "pricePerUnit": 477494, + "totalCost": 49.82, + "fee": 0.17498635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-22T22:00:07" + }, + { + "id": "4zsvzfeuv1nylz2svr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-23T02:00:04", + "amountCrypto": 0.00010498, + "pricePerUnit": 474603, + "totalCost": 49.82, + "fee": 0.17499372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-23T02:00:04" + }, + { + "id": "ymza0fg8zwk07rs7ua", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-23T06:00:04", + "amountCrypto": 0.00010392, + "pricePerUnit": 479451, + "totalCost": 49.82, + "fee": 0.17499627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-23T06:00:04" + }, + { + "id": "3f839vtwd5m2lpmww3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-23T10:00:07", + "amountCrypto": 0.00010213, + "pricePerUnit": 487819, + "totalCost": 49.82, + "fee": 0.17498365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-23T10:00:07" + }, + { + "id": "wfil30fmb0ok2r34cp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-23T14:00:05", + "amountCrypto": 0.00010156, + "pricePerUnit": 490558, + "totalCost": 49.82, + "fee": 0.17498405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-23T14:00:05" + }, + { + "id": "gru13xs6s4036e7sgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-23T18:00:04", + "amountCrypto": 0.00010362, + "pricePerUnit": 480805, + "totalCost": 49.82, + "fee": 0.17498386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-23T18:00:04" + }, + { + "id": "1sdwnrhdkm93w31mpu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-23T22:00:03", + "amountCrypto": 0.00010088, + "pricePerUnit": 493881, + "totalCost": 49.82, + "fee": 0.17498983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-23T22:00:03" + }, + { + "id": "uwg46ymu3l8hiw6k2g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-24T02:00:04", + "amountCrypto": 0.00009985, + "pricePerUnit": 498972, + "totalCost": 49.82, + "fee": 0.17498856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-24T02:00:04" + }, + { + "id": "kq1dnh99idsltx3r9p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-24T06:00:04", + "amountCrypto": 0.0001002, + "pricePerUnit": 497228, + "totalCost": 49.82, + "fee": 0.17498818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-24T06:00:04" + }, + { + "id": "sn3ca9vg8ct7jpm8fm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-24T10:00:04", + "amountCrypto": 0.00010086, + "pricePerUnit": 493999, + "totalCost": 49.82, + "fee": 0.17499694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-24T10:00:04" + }, + { + "id": "ewzrkr4nfn85qny383", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-24T14:00:04", + "amountCrypto": 0.00009957, + "pricePerUnit": 500391, + "totalCost": 49.82, + "fee": 0.1749941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-24T14:00:04" + }, + { + "id": "171acp3cfg53z58zqn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-24T18:00:04", + "amountCrypto": 0.00010147, + "pricePerUnit": 491000, + "totalCost": 49.82, + "fee": 0.17498651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-24T18:00:04" + }, + { + "id": "nqsx9iusvi6mqrlcmk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-24T22:00:05", + "amountCrypto": 0.0000997, + "pricePerUnit": 499745, + "totalCost": 49.82, + "fee": 0.17499637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-24T22:00:05" + }, + { + "id": "id4wyx1ijkw3k3tgzt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-25T02:00:04", + "amountCrypto": 0.00009974, + "pricePerUnit": 499508, + "totalCost": 49.82, + "fee": 0.17498355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-25T02:00:04" + }, + { + "id": "d6c8i1jhkgsqum46am", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-25T06:00:03", + "amountCrypto": 0.00009944, + "pricePerUnit": 501046, + "totalCost": 49.82, + "fee": 0.17499439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-25T06:00:03" + }, + { + "id": "izuhu7ro5l25vugxhs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-25T10:00:03", + "amountCrypto": 0.00009842, + "pricePerUnit": 506225, + "totalCost": 49.82, + "fee": 0.17498965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-25T10:00:03" + }, + { + "id": "uieomnk5mfxastxeup", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-25T14:00:03", + "amountCrypto": 0.00009915, + "pricePerUnit": 502514, + "totalCost": 49.82, + "fee": 0.17499527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-25T14:00:03" + }, + { + "id": "d543dxpfr1rj0l7vqg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-25T18:00:04", + "amountCrypto": 0.00010082, + "pricePerUnit": 494193, + "totalCost": 49.82, + "fee": 0.17499623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-25T18:00:04" + }, + { + "id": "xp9ovag5fent1p259s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-25T22:00:03", + "amountCrypto": 0.00009968, + "pricePerUnit": 499816, + "totalCost": 49.82, + "fee": 0.17498612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-25T22:00:03" + }, + { + "id": "lefeoo37f3kcqli0wo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-26T02:00:04", + "amountCrypto": 0.00009845, + "pricePerUnit": 506088, + "totalCost": 49.82, + "fee": 0.17499562, + "status": "completed", + "orderId": null, + "exchangeOrderId": "907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-26T02:00:04" + }, + { + "id": "5sgs8zedcejjw15429", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-26T06:00:04", + "amountCrypto": 0.0000987, + "pricePerUnit": 504777, + "totalCost": 49.82, + "fee": 0.17498553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-26T06:00:04" + }, + { + "id": "ueje6ra8f8v7rnkqv3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-26T10:00:03", + "amountCrypto": 0.0000988, + "pricePerUnit": 504294, + "totalCost": 49.82, + "fee": 0.17499521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-26T10:00:03" + }, + { + "id": "6d4gtpspn74f19sre5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-26T14:00:04", + "amountCrypto": 0.0000975, + "pricePerUnit": 511000, + "totalCost": 49.82, + "fee": 0.17498908, + "status": "completed", + "orderId": null, + "exchangeOrderId": "910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-26T14:00:04" + }, + { + "id": "uf7omm0abz5oc7yadg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-26T18:00:05", + "amountCrypto": 0.00009906, + "pricePerUnit": 502951, + "totalCost": 49.82, + "fee": 0.17498846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-26T18:00:05" + }, + { + "id": "6bck4ifjiu4pdug1x9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-26T22:00:04", + "amountCrypto": 0.00009931, + "pricePerUnit": 501669, + "totalCost": 49.82, + "fee": 0.17498292, + "status": "completed", + "orderId": null, + "exchangeOrderId": "912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-26T22:00:04" + }, + { + "id": "hejnl59jxk3hmssf4j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-27T02:00:04", + "amountCrypto": 0.00010067, + "pricePerUnit": 494895, + "totalCost": 49.82, + "fee": 0.17498409, + "status": "completed", + "orderId": null, + "exchangeOrderId": "913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-27T02:00:04" + }, + { + "id": "zimala15epqzrt23kq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-27T06:00:04", + "amountCrypto": 0.00009993, + "pricePerUnit": 498557, + "totalCost": 49.82, + "fee": 0.17498311, + "status": "completed", + "orderId": null, + "exchangeOrderId": "914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-27T06:00:04" + }, + { + "id": "drh6yi0rjdj7yq6yns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-27T10:00:04", + "amountCrypto": 0.00009939, + "pricePerUnit": 501307, + "totalCost": 49.82, + "fee": 0.17499751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-27T10:00:04" + }, + { + "id": "i7azybtx9ryhtdlzwg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-27T14:00:04", + "amountCrypto": 0.00009955, + "pricePerUnit": 500470, + "totalCost": 49.82, + "fee": 0.17498658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-27T14:00:04" + }, + { + "id": "jpjhkr76syybjl70cy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-27T18:00:04", + "amountCrypto": 0.00010251, + "pricePerUnit": 486055, + "totalCost": 49.83, + "fee": 0.17499961, + "status": "completed", + "orderId": null, + "exchangeOrderId": "917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-27T18:00:04" + }, + { + "id": "lkgvaotucdxlys8plj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-27T22:00:04", + "amountCrypto": 0.00010176, + "pricePerUnit": 489594, + "totalCost": 49.82, + "fee": 0.17498411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-27T22:00:04" + }, + { + "id": "ztdj0afmrwrlfq0n8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-28T02:00:04", + "amountCrypto": 0.00010243, + "pricePerUnit": 486399, + "totalCost": 49.82, + "fee": 0.17498679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-28T02:00:04" + }, + { + "id": "9lqjxgjz6ymwkwjj20", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-28T06:00:05", + "amountCrypto": 0.00010245, + "pricePerUnit": 486315, + "totalCost": 49.82, + "fee": 0.17499073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-28T06:00:05" + }, + { + "id": "lpg57b18t2m7rf1ysw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-28T10:00:05", + "amountCrypto": 0.0001018, + "pricePerUnit": 489414, + "totalCost": 49.82, + "fee": 0.17498853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-28T10:00:05" + }, + { + "id": "crb95r46l3jxbpniwx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-28T14:00:05", + "amountCrypto": 0.00022219, + "pricePerUnit": 493332, + "totalCost": 109.61, + "fee": 0.38498979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-28T14:00:05" + }, + { + "id": "8jw5hixdx8dxbd3pcc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-28T18:00:04", + "amountCrypto": 0.00022577, + "pricePerUnit": 485506, + "totalCost": 109.61, + "fee": 0.38498717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-28T18:00:04" + }, + { + "id": "lj8gbf0ckkgc6jwvl3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-28T22:00:05", + "amountCrypto": 0.00022937, + "pricePerUnit": 477887, + "totalCost": 109.61, + "fee": 0.38498805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-28T22:00:05" + }, + { + "id": "v13hnx3sy1bilsd2rq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-29T02:00:04", + "amountCrypto": 0.00022906, + "pricePerUnit": 478546, + "totalCost": 109.62, + "fee": 0.38499791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-29T02:00:04" + }, + { + "id": "1mv6fjgbc9r3v4g9zo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-29T06:00:04", + "amountCrypto": 0.00022924, + "pricePerUnit": 478172, + "totalCost": 109.62, + "fee": 0.38499932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-29T06:00:04" + }, + { + "id": "vg1pav4jz51kl6dwpw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-29T10:00:03", + "amountCrypto": 0.00023117, + "pricePerUnit": 474165, + "totalCost": 109.61, + "fee": 0.38498729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-29T10:00:03" + }, + { + "id": "hgzu4uxswo6acd3ujv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-29T14:00:03", + "amountCrypto": 0.00023166, + "pricePerUnit": 473171, + "totalCost": 109.61, + "fee": 0.38499456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-29T14:00:03" + }, + { + "id": "aeprpchxefixhzm03f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-29T18:00:04", + "amountCrypto": 0.00023114, + "pricePerUnit": 474231, + "totalCost": 109.61, + "fee": 0.38499091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-29T18:00:04" + }, + { + "id": "u1xa98d9m0i06ne5oc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-29T22:00:04", + "amountCrypto": 0.000229, + "pricePerUnit": 478656, + "totalCost": 109.61, + "fee": 0.38498517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-29T22:00:04" + }, + { + "id": "6yp27ye5ppoyuxn88n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-30T02:00:04", + "amountCrypto": 0.00023017, + "pricePerUnit": 476225, + "totalCost": 109.61, + "fee": 0.38498723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-30T02:00:04" + }, + { + "id": "gukscsyki1hnqtcimc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-30T06:00:03", + "amountCrypto": 0.00023087, + "pricePerUnit": 474786, + "totalCost": 109.61, + "fee": 0.38499122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-30T06:00:03" + }, + { + "id": "70exegop08dy553qbl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-30T10:00:04", + "amountCrypto": 0.00023805, + "pricePerUnit": 460459, + "totalCost": 109.61, + "fee": 0.38498568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-30T10:00:04" + }, + { + "id": "hojlbzggqsx9ozvb38", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-30T14:00:04", + "amountCrypto": 0.00024013, + "pricePerUnit": 456484, + "totalCost": 109.62, + "fee": 0.38499705, + "status": "completed", + "orderId": null, + "exchangeOrderId": "934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-30T14:00:04" + }, + { + "id": "nwaxz6ar76k0f3t2r9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-30T18:00:04", + "amountCrypto": 0.00024119, + "pricePerUnit": 454475, + "totalCost": 109.61, + "fee": 0.38499467, + "status": "completed", + "orderId": null, + "exchangeOrderId": "935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-30T18:00:04" + }, + { + "id": "ss916bq1elcov2ma6a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-06-30T22:00:04", + "amountCrypto": 0.0002443, + "pricePerUnit": 448695, + "totalCost": 109.62, + "fee": 0.38499946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-06-30T22:00:04" + }, + { + "id": "vjqcbo9yf5n855seqp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-01T02:00:03", + "amountCrypto": 0.00023166, + "pricePerUnit": 473171, + "totalCost": 109.61, + "fee": 0.38499456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-01T02:00:03" + }, + { + "id": "l49sd3qd69rzhm5blr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-01T06:00:04", + "amountCrypto": 0.00023382, + "pricePerUnit": 468790, + "totalCost": 109.61, + "fee": 0.38498643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-01T06:00:04" + }, + { + "id": "puqnufdciipb8zvjxw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-01T10:00:04", + "amountCrypto": 0.00023552, + "pricePerUnit": 465406, + "totalCost": 109.61, + "fee": 0.38498623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-01T10:00:04" + }, + { + "id": "pfzbulfctaxphxxi4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-01T14:00:04", + "amountCrypto": 0.00024024, + "pricePerUnit": 456265, + "totalCost": 109.61, + "fee": 0.38498862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-01T14:00:04" + }, + { + "id": "ltpz716qb4okoodt6u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-01T18:00:04", + "amountCrypto": 0.00023777, + "pricePerUnit": 461017, + "totalCost": 109.62, + "fee": 0.38499884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-01T18:00:04" + }, + { + "id": "xnzctpu4r2ni0n6kpp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-01T22:00:04", + "amountCrypto": 0.00023723, + "pricePerUnit": 462064, + "totalCost": 109.62, + "fee": 0.38499684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-01T22:00:04" + }, + { + "id": "jcrgsmj9wzwt5x5oho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-02T02:00:03", + "amountCrypto": 0.00023837, + "pricePerUnit": 459857, + "totalCost": 109.62, + "fee": 0.38499919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-02T02:00:03" + }, + { + "id": "q8mff8vkgqfrtfcgyl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-02T06:00:05", + "amountCrypto": 0.00024024, + "pricePerUnit": 456271, + "totalCost": 109.61, + "fee": 0.38499369, + "status": "completed", + "orderId": null, + "exchangeOrderId": "944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-02T06:00:05" + }, + { + "id": "7sa199j884o41k8e8l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-02T10:00:04", + "amountCrypto": 0.00024015, + "pricePerUnit": 456432, + "totalCost": 109.61, + "fee": 0.38498526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-02T10:00:04" + }, + { + "id": "k8dnryg2oqsamoxmtu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-02T14:00:04", + "amountCrypto": 0.00023928, + "pricePerUnit": 458107, + "totalCost": 109.62, + "fee": 0.38499824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-02T14:00:04" + }, + { + "id": "d5o24fv7nyzg4hbhvv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-02T18:00:04", + "amountCrypto": 0.0002389, + "pricePerUnit": 458821, + "totalCost": 109.61, + "fee": 0.38498593, + "status": "completed", + "orderId": null, + "exchangeOrderId": "947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-02T18:00:04" + }, + { + "id": "lb11tiknrpx8vy46y2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-02T22:00:03", + "amountCrypto": 0.00023836, + "pricePerUnit": 459864, + "totalCost": 109.61, + "fee": 0.3849889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-02T22:00:03" + }, + { + "id": "nzx6hxztzhxwv8br2e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-03T02:00:04", + "amountCrypto": 0.00023818, + "pricePerUnit": 460206, + "totalCost": 109.61, + "fee": 0.38498427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-03T02:00:04" + }, + { + "id": "holyyz1irsezeukxxh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-03T06:00:04", + "amountCrypto": 0.00023834, + "pricePerUnit": 459909, + "totalCost": 109.61, + "fee": 0.38499427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-03T06:00:04" + }, + { + "id": "diwssa9uh7ttwmf6sy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-03T10:00:07", + "amountCrypto": 0.00023988, + "pricePerUnit": 456945, + "totalCost": 109.61, + "fee": 0.38498463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-03T10:00:07" + }, + { + "id": "zoi1rof194n7o59jhn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-03T14:00:03", + "amountCrypto": 0.00024021, + "pricePerUnit": 456325, + "totalCost": 109.61, + "fee": 0.38499117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-03T14:00:03" + }, + { + "id": "0ybi4p4prr272vr6fy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-03T18:00:05", + "amountCrypto": 0.00024072, + "pricePerUnit": 455359, + "totalCost": 109.61, + "fee": 0.38499184, + "status": "completed", + "orderId": null, + "exchangeOrderId": "953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-03T18:00:05" + }, + { + "id": "mw9vexeeecv798qcdd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-03T22:00:04", + "amountCrypto": 0.00023612, + "pricePerUnit": 464236, + "totalCost": 109.62, + "fee": 0.38499695, + "status": "completed", + "orderId": null, + "exchangeOrderId": "954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-03T22:00:04" + }, + { + "id": "v3m0ldrsdv73hh0ep3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-04T02:00:03", + "amountCrypto": 0.00023816, + "pricePerUnit": 460254, + "totalCost": 109.61, + "fee": 0.3849921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-04T02:00:03" + }, + { + "id": "e03fmeqb0ls5ys4ei9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-04T06:00:03", + "amountCrypto": 0.0002407, + "pricePerUnit": 455400, + "totalCost": 109.61, + "fee": 0.38499451, + "status": "completed", + "orderId": null, + "exchangeOrderId": "956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-04T06:00:03" + }, + { + "id": "v6nb633lsdx14q6w5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-04T10:00:04", + "amountCrypto": 0.00024052, + "pricePerUnit": 455737, + "totalCost": 109.61, + "fee": 0.38499129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-04T10:00:04" + }, + { + "id": "cjjmtpp2sgjb0r1n0m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-04T14:00:07", + "amountCrypto": 0.00023307, + "pricePerUnit": 470311, + "totalCost": 109.62, + "fee": 0.38499664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-04T14:00:07" + }, + { + "id": "a353d42eencki592l8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-04T18:00:04", + "amountCrypto": 0.00023223, + "pricePerUnit": 472016, + "totalCost": 109.62, + "fee": 0.38499976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-04T18:00:04" + }, + { + "id": "uokbkqr3yi2zbnyy6d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-04T22:00:05", + "amountCrypto": 0.0002317, + "pricePerUnit": 473081, + "totalCost": 109.61, + "fee": 0.38498779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-04T22:00:05" + }, + { + "id": "vk4zuz6dpp2cknqsl0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-05T02:00:04", + "amountCrypto": 0.00022727, + "pricePerUnit": 482314, + "totalCost": 109.62, + "fee": 0.38499705, + "status": "completed", + "orderId": null, + "exchangeOrderId": "961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-05T02:00:04" + }, + { + "id": "5eg60321tmdwxaxw9k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-05T06:00:05", + "amountCrypto": 0.0002267, + "pricePerUnit": 483526, + "totalCost": 109.62, + "fee": 0.38499649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-05T06:00:05" + }, + { + "id": "8elfa7v7gq4od2vgch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-05T10:00:04", + "amountCrypto": 0.00022642, + "pricePerUnit": 484124, + "totalCost": 109.62, + "fee": 0.38499653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-05T10:00:04" + }, + { + "id": "yod3oc0kfba81e54yn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-05T14:00:05", + "amountCrypto": 0.00023262, + "pricePerUnit": 471224, + "totalCost": 109.62, + "fee": 0.38499924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-05T14:00:05" + }, + { + "id": "ld5pdf3qatuf8vvij3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-05T18:00:05", + "amountCrypto": 0.00023154, + "pricePerUnit": 473405, + "totalCost": 109.61, + "fee": 0.38498543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-05T18:00:05" + }, + { + "id": "i4oozd590ocw5lbg2c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-05T22:00:04", + "amountCrypto": 0.00022174, + "pricePerUnit": 494334, + "totalCost": 109.61, + "fee": 0.38499044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-05T22:00:04" + }, + { + "id": "c6xfuwwtbc3uyy4xvp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-06T02:00:04", + "amountCrypto": 0.0002241, + "pricePerUnit": 489131, + "totalCost": 109.61, + "fee": 0.38499267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-06T02:00:04" + }, + { + "id": "4ssooz2oh5su2gti4s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-06T06:00:03", + "amountCrypto": 0.00022693, + "pricePerUnit": 483032, + "totalCost": 109.61, + "fee": 0.38499336, + "status": "completed", + "orderId": null, + "exchangeOrderId": "968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-06T06:00:03" + }, + { + "id": "j1w4czxkk15tbj8v4c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-06T10:00:03", + "amountCrypto": 0.00022395, + "pricePerUnit": 489459, + "totalCost": 109.61, + "fee": 0.38499298, + "status": "completed", + "orderId": null, + "exchangeOrderId": "969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-06T10:00:03" + }, + { + "id": "phesntib3wyuw45fyk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-06T14:00:05", + "amountCrypto": 0.00022348, + "pricePerUnit": 490478, + "totalCost": 109.61, + "fee": 0.38498483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-06T14:00:05" + }, + { + "id": "u4fbnsbmikr8mnfcdw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-06T18:00:04", + "amountCrypto": 0.00022231, + "pricePerUnit": 493075, + "totalCost": 109.62, + "fee": 0.38499705, + "status": "completed", + "orderId": null, + "exchangeOrderId": "971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-06T18:00:04" + }, + { + "id": "todurde9dchvalvcbm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-06T22:00:04", + "amountCrypto": 0.00022064, + "pricePerUnit": 496799, + "totalCost": 109.61, + "fee": 0.38499083, + "status": "completed", + "orderId": null, + "exchangeOrderId": "972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-06T22:00:04" + }, + { + "id": "6cuwf897ufno75i4o2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-07T02:00:05", + "amountCrypto": 0.00021815, + "pricePerUnit": 502463, + "totalCost": 109.61, + "fee": 0.38498581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-07T02:00:05" + }, + { + "id": "oa20ytwz57hvp1nza3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-07T06:00:04", + "amountCrypto": 0.00021939, + "pricePerUnit": 499636, + "totalCost": 109.62, + "fee": 0.38499578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-07T06:00:04" + }, + { + "id": "cycvf0naiwptzai1yh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-07T10:00:04", + "amountCrypto": 0.00021959, + "pricePerUnit": 499184, + "totalCost": 109.62, + "fee": 0.38499814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-07T10:00:04" + }, + { + "id": "mxtroa63doztjndvrf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-07T14:00:05", + "amountCrypto": 0.00021866, + "pricePerUnit": 501300, + "totalCost": 109.61, + "fee": 0.38499268, + "status": "completed", + "orderId": null, + "exchangeOrderId": "976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-07T14:00:05" + }, + { + "id": "2j1bgyndn1srt9v5d8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-07T18:00:04", + "amountCrypto": 0.00021425, + "pricePerUnit": 511610, + "totalCost": 109.61, + "fee": 0.3849863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-07T18:00:04" + }, + { + "id": "5w1o5ywv4dmgo0c62b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-07T22:00:05", + "amountCrypto": 0.00020548, + "pricePerUnit": 533464, + "totalCost": 109.62, + "fee": 0.38499944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-07T22:00:05" + }, + { + "id": "6jfmg22553k0sos2a5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-08T02:00:04", + "amountCrypto": 0.0002068, + "pricePerUnit": 530037, + "totalCost": 109.61, + "fee": 0.38498352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-08T02:00:04" + }, + { + "id": "i3uhkz1wgqfk1vmig2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-08T06:00:04", + "amountCrypto": 0.00020267, + "pricePerUnit": 540853, + "totalCost": 109.61, + "fee": 0.38499415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-08T06:00:04" + }, + { + "id": "66s9f6pmpygxurgkqp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-08T10:00:07", + "amountCrypto": 0.00020465, + "pricePerUnit": 535619, + "totalCost": 109.61, + "fee": 0.38499328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-08T10:00:07" + }, + { + "id": "x4z2qpm9f5j2wp3rcd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-08T14:00:07", + "amountCrypto": 0.000208, + "pricePerUnit": 526995, + "totalCost": 109.61, + "fee": 0.38499514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-08T14:00:07" + }, + { + "id": "2iwkujuwdf8t5fer15", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-08T18:00:04", + "amountCrypto": 0.00020563, + "pricePerUnit": 533066, + "totalCost": 109.61, + "fee": 0.38499304, + "status": "completed", + "orderId": null, + "exchangeOrderId": "983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-08T18:00:04" + }, + { + "id": "66c0rdp2uzcmeyu4d6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-08T22:00:04", + "amountCrypto": 0.00020721, + "pricePerUnit": 529003, + "totalCost": 109.61, + "fee": 0.38499427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-08T22:00:04" + }, + { + "id": "j8q9gqk6np9o4lmyuf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-09T02:00:04", + "amountCrypto": 0.00020907, + "pricePerUnit": 524289, + "totalCost": 109.61, + "fee": 0.38498861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-09T02:00:04" + }, + { + "id": "otkeyt3saw2elvm0wy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-09T06:00:03", + "amountCrypto": 0.00020902, + "pricePerUnit": 524429, + "totalCost": 109.62, + "fee": 0.38499932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-09T06:00:03" + }, + { + "id": "nvute9y9k950qppzk7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-09T10:00:04", + "amountCrypto": 0.00020862, + "pricePerUnit": 525412, + "totalCost": 109.61, + "fee": 0.38498282, + "status": "completed", + "orderId": null, + "exchangeOrderId": "987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-09T10:00:04" + }, + { + "id": "ljkm892uoeeek8sova", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-09T14:00:04", + "amountCrypto": 0.00021075, + "pricePerUnit": 520104, + "totalCost": 109.61, + "fee": 0.38498449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-09T14:00:04" + }, + { + "id": "0sze1wo90wjsenna1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-09T18:00:05", + "amountCrypto": 0.00020953, + "pricePerUnit": 523145, + "totalCost": 109.61, + "fee": 0.38499378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-09T18:00:05" + }, + { + "id": "uxkt4xu3l0x8n0sbmz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-09T22:00:04", + "amountCrypto": 0.0002089, + "pricePerUnit": 524708, + "totalCost": 109.61, + "fee": 0.384983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-09T22:00:04" + }, + { + "id": "sdam15xjhnb0z0vo4n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-10T02:00:03", + "amountCrypto": 0.00020925, + "pricePerUnit": 523845, + "totalCost": 109.61, + "fee": 0.38499376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-10T02:00:03" + }, + { + "id": "mgg1rh7h0qyrukzpgs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-10T06:00:03", + "amountCrypto": 0.00021214, + "pricePerUnit": 516697, + "totalCost": 109.61, + "fee": 0.3849851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-10T06:00:03" + }, + { + "id": "nzh6fnb3o9ee4l18fs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-10T10:00:04", + "amountCrypto": 0.0002117, + "pricePerUnit": 517784, + "totalCost": 109.61, + "fee": 0.38499484, + "status": "completed", + "orderId": null, + "exchangeOrderId": "993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-10T10:00:04" + }, + { + "id": "8np8zprfnyy26zh2d2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-10T14:00:05", + "amountCrypto": 0.00021211, + "pricePerUnit": 516773, + "totalCost": 109.61, + "fee": 0.38498728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-10T14:00:05" + }, + { + "id": "pbp2sg1o6eiumgkhhu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-10T18:00:04", + "amountCrypto": 0.00021619, + "pricePerUnit": 507028, + "totalCost": 109.61, + "fee": 0.38499312, + "status": "completed", + "orderId": null, + "exchangeOrderId": "995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-10T18:00:04" + }, + { + "id": "98kq7b5xjluxlhf123", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-10T22:00:05", + "amountCrypto": 0.00021601, + "pricePerUnit": 507453, + "totalCost": 109.61, + "fee": 0.38499501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-10T22:00:05" + }, + { + "id": "72amog6dvocc8mu3ay", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-11T02:00:05", + "amountCrypto": 0.0002168, + "pricePerUnit": 505596, + "totalCost": 109.61, + "fee": 0.38498901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-11T02:00:05" + }, + { + "id": "e1fx8wewhil4nt3z23", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-11T06:00:04", + "amountCrypto": 0.00021979, + "pricePerUnit": 498722, + "totalCost": 109.61, + "fee": 0.38499215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-11T06:00:04" + }, + { + "id": "9oocks7kdk2i9ap8lw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-11T10:00:05", + "amountCrypto": 0.00022005, + "pricePerUnit": 498128, + "totalCost": 109.61, + "fee": 0.38498849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-11T10:00:05" + }, + { + "id": "bvm4sn3srn6p3uzfov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-11T14:00:04", + "amountCrypto": 0.00022001, + "pricePerUnit": 498233, + "totalCost": 109.62, + "fee": 0.38499965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-11T14:00:04" + }, + { + "id": "hq71dm46a0kiyzxiwf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-11T18:00:04", + "amountCrypto": 0.0002194, + "pricePerUnit": 499614, + "totalCost": 109.62, + "fee": 0.38499638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-11T18:00:04" + }, + { + "id": "7c29uo41iwlevsehwv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-11T22:00:04", + "amountCrypto": 0.00021814, + "pricePerUnit": 502485, + "totalCost": 109.61, + "fee": 0.38498502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-11T22:00:04" + }, + { + "id": "o6gwjdnf7sbpj1pqfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-12T02:00:04", + "amountCrypto": 0.00022407, + "pricePerUnit": 489184, + "totalCost": 109.61, + "fee": 0.38498285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-12T02:00:04" + }, + { + "id": "clznr7zzpkrfw9uvpn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-12T06:00:04", + "amountCrypto": 0.00022407, + "pricePerUnit": 489204, + "totalCost": 109.62, + "fee": 0.38499859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-12T06:00:04" + }, + { + "id": "85tua8ediqtdt72xah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-12T10:00:04", + "amountCrypto": 0.00022585, + "pricePerUnit": 485335, + "totalCost": 109.61, + "fee": 0.38498794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-12T10:00:04" + }, + { + "id": "ro5mwcd4gnwox2ljjj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-12T14:00:04", + "amountCrypto": 0.00022563, + "pricePerUnit": 485819, + "totalCost": 109.62, + "fee": 0.38499648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-12T14:00:04" + }, + { + "id": "wpulk1v1ya7id55ayu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-12T18:00:05", + "amountCrypto": 0.00022583, + "pricePerUnit": 485386, + "totalCost": 109.61, + "fee": 0.3849943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-12T18:00:05" + }, + { + "id": "4vy06dqys8ek07w70w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-12T22:00:04", + "amountCrypto": 0.00022987, + "pricePerUnit": 476850, + "totalCost": 109.61, + "fee": 0.38499005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-12T22:00:04" + }, + { + "id": "zvdp0v8yl59219imen", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-13T02:00:04", + "amountCrypto": 0.00023118, + "pricePerUnit": 474144, + "totalCost": 109.61, + "fee": 0.38498689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-13T02:00:04" + }, + { + "id": "27vxoah7h612qtuoxl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-13T06:00:05", + "amountCrypto": 0.00022999, + "pricePerUnit": 476609, + "totalCost": 109.62, + "fee": 0.38499635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-13T06:00:05" + }, + { + "id": "iprpkc98fhm2oifh59", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-13T10:00:06", + "amountCrypto": 0.00022809, + "pricePerUnit": 480568, + "totalCost": 109.61, + "fee": 0.3849874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-13T10:00:06" + }, + { + "id": "szg507ripj1hc4n9x9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-13T14:00:04", + "amountCrypto": 0.00022671, + "pricePerUnit": 483489, + "totalCost": 109.61, + "fee": 0.38498401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-13T14:00:04" + }, + { + "id": "ux5r03qmytbkpkhr0e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-13T18:00:05", + "amountCrypto": 0.00023223, + "pricePerUnit": 472005, + "totalCost": 109.61, + "fee": 0.38499079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-13T18:00:05" + }, + { + "id": "8tti16kbp0pddqwevs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-13T22:00:04", + "amountCrypto": 0.0002296, + "pricePerUnit": 477416, + "totalCost": 109.61, + "fee": 0.38499428, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-13T22:00:04" + }, + { + "id": "o9hgvi7rwp5f0nt24q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-14T02:00:04", + "amountCrypto": 0.00022258, + "pricePerUnit": 492478, + "totalCost": 109.62, + "fee": 0.38499793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-14T02:00:04" + }, + { + "id": "jsp0o3xsl559u9pjf0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-14T06:00:03", + "amountCrypto": 0.00022292, + "pricePerUnit": 491721, + "totalCost": 109.61, + "fee": 0.38499334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-14T06:00:03" + }, + { + "id": "ywcjea7ydhpwx8qe0m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-14T10:00:03", + "amountCrypto": 0.00022538, + "pricePerUnit": 486356, + "totalCost": 109.61, + "fee": 0.38499499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-14T10:00:03" + }, + { + "id": "9ioettzk8udgahb26e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-14T14:00:03", + "amountCrypto": 0.00022792, + "pricePerUnit": 480926, + "totalCost": 109.61, + "fee": 0.38498704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-14T14:00:03" + }, + { + "id": "xtmeeqm64z7udmio03", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-14T18:00:04", + "amountCrypto": 0.00022035, + "pricePerUnit": 497464, + "totalCost": 109.62, + "fee": 0.38499947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-14T18:00:04" + }, + { + "id": "ei587f0glkd7kxosbt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-14T22:00:04", + "amountCrypto": 0.00021775, + "pricePerUnit": 503387, + "totalCost": 109.61, + "fee": 0.38498657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-14T22:00:04" + }, + { + "id": "qmyk30tth2zgwt7q1j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-15T02:00:03", + "amountCrypto": 0.00021817, + "pricePerUnit": 502426, + "totalCost": 109.61, + "fee": 0.38499276, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-15T02:00:03" + }, + { + "id": "ko4zrd8xved3auejsc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-15T06:00:04", + "amountCrypto": 0.00021788, + "pricePerUnit": 503099, + "totalCost": 109.62, + "fee": 0.38499602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-15T06:00:04" + }, + { + "id": "li750qgrv64gjqdsop", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-15T10:00:03", + "amountCrypto": 0.0002155, + "pricePerUnit": 508653, + "totalCost": 109.61, + "fee": 0.38499431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-15T10:00:03" + }, + { + "id": "hbn9fv060fu34hwtle", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-15T14:00:05", + "amountCrypto": 0.00021664, + "pricePerUnit": 505970, + "totalCost": 109.61, + "fee": 0.38498946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-15T14:00:05" + }, + { + "id": "gybsm077mq0xqmm5fb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-15T18:00:05", + "amountCrypto": 0.00021664, + "pricePerUnit": 505964, + "totalCost": 109.61, + "fee": 0.38498489, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-15T18:00:05" + }, + { + "id": "nogsja7g69mpiyjzm4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-15T22:00:04", + "amountCrypto": 0.00021369, + "pricePerUnit": 512965, + "totalCost": 109.62, + "fee": 0.38499701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-15T22:00:04" + }, + { + "id": "z3iiqvohr9tjos1si0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-16T02:00:04", + "amountCrypto": 0.00021673, + "pricePerUnit": 505757, + "totalCost": 109.61, + "fee": 0.38498726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-16T02:00:04" + }, + { + "id": "71ple65cq7y82rkacs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-16T06:00:03", + "amountCrypto": 0.00021757, + "pricePerUnit": 503815, + "totalCost": 109.62, + "fee": 0.38499539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-16T06:00:03" + }, + { + "id": "jo2suofyemnkltpcxm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-16T10:00:04", + "amountCrypto": 0.0002195, + "pricePerUnit": 499369, + "totalCost": 109.61, + "fee": 0.38498298, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-16T10:00:04" + }, + { + "id": "h4iji010h9nza4mf5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-16T14:00:04", + "amountCrypto": 0.00021867, + "pricePerUnit": 501279, + "totalCost": 109.61, + "fee": 0.38499416, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-16T14:00:04" + }, + { + "id": "4aehfmv0i224lmv2zd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-16T18:00:04", + "amountCrypto": 0.00021505, + "pricePerUnit": 509719, + "totalCost": 109.62, + "fee": 0.38499553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-16T18:00:04" + }, + { + "id": "zprlcbni6ivxhhrk9c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-16T22:00:10", + "amountCrypto": 0.00021268, + "pricePerUnit": 515383, + "totalCost": 109.61, + "fee": 0.38498354, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-16T22:00:10" + }, + { + "id": "wlxut8aqppd1c4b076", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-17T02:00:05", + "amountCrypto": 0.00021272, + "pricePerUnit": 515305, + "totalCost": 109.62, + "fee": 0.38499767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-17T02:00:05" + }, + { + "id": "1grm8vbfb1agn2edel", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-17T06:00:03", + "amountCrypto": 0.00021133, + "pricePerUnit": 518674, + "totalCost": 109.61, + "fee": 0.38498256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-17T06:00:03" + }, + { + "id": "8074oc57h2djtogmr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-17T10:00:04", + "amountCrypto": 0.00020966, + "pricePerUnit": 522821, + "totalCost": 109.61, + "fee": 0.38499406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-17T10:00:04" + }, + { + "id": "yo4eolupkyzxyvpmhe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-17T14:00:04", + "amountCrypto": 0.00020974, + "pricePerUnit": 522619, + "totalCost": 109.61, + "fee": 0.38499215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-17T14:00:04" + }, + { + "id": "ppzspobtij6j80jn8z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-17T18:00:03", + "amountCrypto": 0.00021303, + "pricePerUnit": 514537, + "totalCost": 109.61, + "fee": 0.3849841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-17T18:00:03" + }, + { + "id": "jfyjhc2algf63lkbvq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-17T22:00:05", + "amountCrypto": 0.00021449, + "pricePerUnit": 511045, + "totalCost": 109.61, + "fee": 0.38499192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-17T22:00:05" + }, + { + "id": "o17nmalijt17wbmt3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-18T02:00:05", + "amountCrypto": 0.00021679, + "pricePerUnit": 505624, + "totalCost": 109.61, + "fee": 0.38499257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-18T02:00:05" + }, + { + "id": "8p67bteiwkp4w1ukl1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-18T06:00:04", + "amountCrypto": 0.00021204, + "pricePerUnit": 516941, + "totalCost": 109.61, + "fee": 0.38498534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-18T06:00:04" + }, + { + "id": "7hezkkiiuefhz16tpq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-18T10:00:04", + "amountCrypto": 0.00020377, + "pricePerUnit": 537920, + "totalCost": 109.61, + "fee": 0.3849846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-18T10:00:04" + }, + { + "id": "w9fkoqsnfmotcgqp4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-18T14:00:04", + "amountCrypto": 0.0002049, + "pricePerUnit": 534957, + "totalCost": 109.61, + "fee": 0.38498717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-18T14:00:04" + }, + { + "id": "54evo7ejptk8fpp3g0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-18T18:00:04", + "amountCrypto": 0.00020064, + "pricePerUnit": 546316, + "totalCost": 109.61, + "fee": 0.38498771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-18T18:00:04" + }, + { + "id": "xr3k1x2z2juo3e26ks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-18T22:00:03", + "amountCrypto": 0.00021063, + "pricePerUnit": 520408, + "totalCost": 109.61, + "fee": 0.38499015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-18T22:00:03" + }, + { + "id": "jxpydgpstvr1io84f5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-19T02:00:05", + "amountCrypto": 0.00020208, + "pricePerUnit": 542435, + "totalCost": 109.62, + "fee": 0.38499621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-19T02:00:05" + }, + { + "id": "7oufh9av8ey135lhry", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-19T06:00:05", + "amountCrypto": 0.00020703, + "pricePerUnit": 529470, + "totalCost": 109.62, + "fee": 0.38499941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-19T06:00:05" + }, + { + "id": "4qtc9rwsqtsxjvll72", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-19T10:00:05", + "amountCrypto": 0.00021043, + "pricePerUnit": 520894, + "totalCost": 109.61, + "fee": 0.38498378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-19T10:00:05" + }, + { + "id": "nca9au05feoio5c445", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-19T14:00:03", + "amountCrypto": 0.00020857, + "pricePerUnit": 525552, + "totalCost": 109.61, + "fee": 0.38499311, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-19T14:00:03" + }, + { + "id": "3fxwi6wswkzdr948ko", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-19T18:00:04", + "amountCrypto": 0.00019751, + "pricePerUnit": 554987, + "totalCost": 109.62, + "fee": 0.38499698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-19T18:00:04" + }, + { + "id": "w6endatd4i8txytufs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-19T22:00:03", + "amountCrypto": 0.00019522, + "pricePerUnit": 561486, + "totalCost": 109.61, + "fee": 0.3849893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-19T22:00:03" + }, + { + "id": "pvrvp7gvwflasoldsu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-20T02:00:04", + "amountCrypto": 0.00019532, + "pricePerUnit": 561195, + "totalCost": 109.61, + "fee": 0.38498688, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-20T02:00:04" + }, + { + "id": "9d75alruqbtx2pif7v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-20T06:00:03", + "amountCrypto": 0.0001952, + "pricePerUnit": 561555, + "totalCost": 109.62, + "fee": 0.38499717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-20T06:00:03" + }, + { + "id": "xpj5tec9z12ynkkjwa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-20T10:00:03", + "amountCrypto": 0.00019538, + "pricePerUnit": 561029, + "totalCost": 109.61, + "fee": 0.38499123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-20T10:00:03" + }, + { + "id": "iuef68x0yc140ic05f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-20T14:00:04", + "amountCrypto": 0.00019214, + "pricePerUnit": 570474, + "totalCost": 109.61, + "fee": 0.38498079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-20T14:00:04" + }, + { + "id": "6301u9zklc6l1wf476", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-20T18:00:04", + "amountCrypto": 0.00018896, + "pricePerUnit": 580078, + "totalCost": 109.61, + "fee": 0.38498313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-20T18:00:04" + }, + { + "id": "s81hpuh6zqk79ruxk2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-20T22:00:04", + "amountCrypto": 0.00019246, + "pricePerUnit": 569529, + "totalCost": 109.61, + "fee": 0.38498317, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-20T22:00:04" + }, + { + "id": "2nul5bxyaf1z010or1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-21T02:00:04", + "amountCrypto": 0.00019609, + "pricePerUnit": 558991, + "totalCost": 109.61, + "fee": 0.38498666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-21T02:00:04" + }, + { + "id": "myv68hszvn6zmtcc7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-21T06:00:04", + "amountCrypto": 0.00020049, + "pricePerUnit": 546740, + "totalCost": 109.62, + "fee": 0.38499845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-21T06:00:04" + }, + { + "id": "2co3ljh9ja1eit94xc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-21T10:00:03", + "amountCrypto": 0.00019902, + "pricePerUnit": 550779, + "totalCost": 109.62, + "fee": 0.38499892, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-21T10:00:03" + }, + { + "id": "dsduuaim9kcjfqgi3q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-21T14:00:03", + "amountCrypto": 0.00020208, + "pricePerUnit": 542418, + "totalCost": 109.61, + "fee": 0.38498415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-21T14:00:03" + }, + { + "id": "av0tudzmsaucgepmtp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-21T18:00:04", + "amountCrypto": 0.00020182, + "pricePerUnit": 543129, + "totalCost": 109.61, + "fee": 0.38499281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-21T18:00:04" + }, + { + "id": "72ge9t134wb7wul43h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-21T22:00:03", + "amountCrypto": 0.00019701, + "pricePerUnit": 556377, + "totalCost": 109.61, + "fee": 0.38498416, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-21T22:00:03" + }, + { + "id": "94lesdwa24w5wraxho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-22T02:00:04", + "amountCrypto": 0.00019751, + "pricePerUnit": 554969, + "totalCost": 109.61, + "fee": 0.38498449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-22T02:00:04" + }, + { + "id": "53twoym72slvbmkifo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-22T06:00:04", + "amountCrypto": 0.00019922, + "pricePerUnit": 550227, + "totalCost": 109.62, + "fee": 0.38499958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-22T06:00:04" + }, + { + "id": "w2jyywkno8sok49tbm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-22T10:00:05", + "amountCrypto": 0.00019656, + "pricePerUnit": 557652, + "totalCost": 109.61, + "fee": 0.38498502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-22T10:00:05" + }, + { + "id": "93aofnoeka9xr011b3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-22T14:00:04", + "amountCrypto": 0.00019288, + "pricePerUnit": 568292, + "totalCost": 109.61, + "fee": 0.38498531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-22T14:00:04" + }, + { + "id": "4uxv8jiht15nl9lkuh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-22T18:00:04", + "amountCrypto": 0.00019622, + "pricePerUnit": 558619, + "totalCost": 109.61, + "fee": 0.38498552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-22T18:00:04" + }, + { + "id": "2ymk0cqq5dhvkpw3y1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-22T22:00:03", + "amountCrypto": 0.00020171, + "pricePerUnit": 543415, + "totalCost": 109.61, + "fee": 0.38498559, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-22T22:00:03" + }, + { + "id": "as6sy85iinmhswq9wf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-23T02:00:03", + "amountCrypto": 0.00020121, + "pricePerUnit": 544766, + "totalCost": 109.61, + "fee": 0.38498604, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-23T02:00:03" + }, + { + "id": "ml3q9drb9uic31fp5i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-23T06:00:04", + "amountCrypto": 0.00020007, + "pricePerUnit": 547885, + "totalCost": 109.62, + "fee": 0.38499652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-23T06:00:04" + }, + { + "id": "dw4vhauwtbs029t2ov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-23T10:00:03", + "amountCrypto": 0.00020056, + "pricePerUnit": 546532, + "totalCost": 109.61, + "fee": 0.38498636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-23T10:00:03" + }, + { + "id": "quimeqt4gzdfs75zvo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-23T14:00:03", + "amountCrypto": 0.00020519, + "pricePerUnit": 534208, + "totalCost": 109.61, + "fee": 0.38499226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-23T14:00:03" + }, + { + "id": "wbbxc684yvmizvgt00", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-23T18:00:05", + "amountCrypto": 0.00020566, + "pricePerUnit": 532978, + "totalCost": 109.61, + "fee": 0.38498564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-23T18:00:05" + }, + { + "id": "7s5z5jlnpwii8p1bxc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-23T22:00:04", + "amountCrypto": 0.00020475, + "pricePerUnit": 535365, + "totalCost": 109.62, + "fee": 0.38499874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-23T22:00:04" + }, + { + "id": "qhdus2wv6a66xsyy0n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-24T02:00:05", + "amountCrypto": 0.00020314, + "pricePerUnit": 539587, + "totalCost": 109.61, + "fee": 0.3849837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-24T02:00:05" + }, + { + "id": "de097wdv550l5iyund", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-24T06:00:03", + "amountCrypto": 0.00020422, + "pricePerUnit": 536731, + "totalCost": 109.61, + "fee": 0.38498195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-24T06:00:03" + }, + { + "id": "c60yy8cpy027su1t3i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-24T10:00:04", + "amountCrypto": 0.00020095, + "pricePerUnit": 545478, + "totalCost": 109.61, + "fee": 0.38499108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-24T10:00:04" + }, + { + "id": "pqnq0kha7a3mi8vq74", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-24T14:00:04", + "amountCrypto": 0.00020131, + "pricePerUnit": 544493, + "totalCost": 109.61, + "fee": 0.38498435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-24T14:00:04" + }, + { + "id": "uthqgr2re7vub1brzs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-24T18:00:04", + "amountCrypto": 0.00019946, + "pricePerUnit": 549547, + "totalCost": 109.61, + "fee": 0.38498701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-24T18:00:04" + }, + { + "id": "x78s4eensrihs7pc2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-24T22:00:03", + "amountCrypto": 0.00020078, + "pricePerUnit": 545939, + "totalCost": 109.61, + "fee": 0.38499048, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-24T22:00:03" + }, + { + "id": "5mvdhueqnyuazfqkdc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-25T02:00:03", + "amountCrypto": 0.00020178, + "pricePerUnit": 543228, + "totalCost": 109.61, + "fee": 0.38498666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-25T02:00:03" + }, + { + "id": "lmnl6pbuc96qsuywn3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-25T06:00:03", + "amountCrypto": 0.00020858, + "pricePerUnit": 525526, + "totalCost": 109.61, + "fee": 0.38499252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-25T06:00:03" + }, + { + "id": "opwcp5b1w1erchn50u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-25T10:00:04", + "amountCrypto": 0.00020743, + "pricePerUnit": 528437, + "totalCost": 109.61, + "fee": 0.38499067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-25T10:00:04" + }, + { + "id": "yjvp8af3lp3haxmlh2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-25T14:00:03", + "amountCrypto": 0.0002085, + "pricePerUnit": 525724, + "totalCost": 109.61, + "fee": 0.38498985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-25T14:00:03" + }, + { + "id": "8gd4dzda6is0cv1uqg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-25T18:00:04", + "amountCrypto": 0.00020855, + "pricePerUnit": 525602, + "totalCost": 109.61, + "fee": 0.38499281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-25T18:00:04" + }, + { + "id": "fuqlulpmizvp8enk55", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-25T22:00:03", + "amountCrypto": 0.0002085, + "pricePerUnit": 525717, + "totalCost": 109.61, + "fee": 0.38498473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-25T22:00:03" + }, + { + "id": "wkuiislbh25098868t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-26T02:00:04", + "amountCrypto": 0.00021444, + "pricePerUnit": 511160, + "totalCost": 109.61, + "fee": 0.38498879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-26T02:00:04" + }, + { + "id": "bsvne93u0l67du0zvk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-26T06:00:39", + "amountCrypto": 0.00021607, + "pricePerUnit": 507317, + "totalCost": 109.62, + "fee": 0.38499874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-26T06:00:39" + }, + { + "id": "hrb8wcx74jkelioqtq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-26T10:00:03", + "amountCrypto": 0.00021659, + "pricePerUnit": 506083, + "totalCost": 109.61, + "fee": 0.38498656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-26T10:00:03" + }, + { + "id": "7r01v4rx87ysfnzxi1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-26T14:00:03", + "amountCrypto": 0.0002148, + "pricePerUnit": 510312, + "totalCost": 109.62, + "fee": 0.38499535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-26T14:00:03" + }, + { + "id": "d1xgt5zeaj0idm17lp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-26T18:00:03", + "amountCrypto": 0.00021722, + "pricePerUnit": 504632, + "totalCost": 109.62, + "fee": 0.38499937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-26T18:00:03" + }, + { + "id": "pipr6kf9dz827poqq2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-26T22:00:04", + "amountCrypto": 0.00021534, + "pricePerUnit": 509017, + "totalCost": 109.61, + "fee": 0.38498377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1092", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-26T22:00:04" + }, + { + "id": "y7qkbzrfx5dvi9lepj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-27T02:00:04", + "amountCrypto": 0.00021248, + "pricePerUnit": 515890, + "totalCost": 109.62, + "fee": 0.38499967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1093", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-27T02:00:04" + }, + { + "id": "342xx9d1d87f3bqo7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-27T06:00:04", + "amountCrypto": 0.00021437, + "pricePerUnit": 511339, + "totalCost": 109.62, + "fee": 0.38499789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1094", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-27T06:00:04" + }, + { + "id": "asmbldvq4k35xouf19", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-27T10:00:05", + "amountCrypto": 0.00021146, + "pricePerUnit": 518375, + "totalCost": 109.62, + "fee": 0.38499731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1095", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-27T10:00:05" + }, + { + "id": "d6zs5ua9iv5amfzsid", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-27T14:00:06", + "amountCrypto": 0.00021325, + "pricePerUnit": 514019, + "totalCost": 109.61, + "fee": 0.38499371, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-27T14:00:06" + }, + { + "id": "6rrdhqvr8j13zoycxh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-27T18:00:03", + "amountCrypto": 0.00020969, + "pricePerUnit": 522753, + "totalCost": 109.62, + "fee": 0.38499906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-27T18:00:03" + }, + { + "id": "pyfi5jqk438h621ytk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-27T22:00:04", + "amountCrypto": 0.00020004, + "pricePerUnit": 547945, + "totalCost": 109.61, + "fee": 0.38498095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-27T22:00:04" + }, + { + "id": "4rom4ef1g52uxpzga7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-28T02:00:05", + "amountCrypto": 0.00019847, + "pricePerUnit": 552295, + "totalCost": 109.61, + "fee": 0.38499152, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-28T02:00:05" + }, + { + "id": "dru1bfcldbi3asebro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-28T06:00:04", + "amountCrypto": 0.00019688, + "pricePerUnit": 556759, + "totalCost": 109.61, + "fee": 0.38499427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-28T06:00:04" + }, + { + "id": "avauz2dx27zps28rck", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-28T10:00:03", + "amountCrypto": 0.00019856, + "pricePerUnit": 552049, + "totalCost": 109.61, + "fee": 0.38499475, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-28T10:00:03" + }, + { + "id": "jqqx832x31m7s4g0co", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-28T14:00:03", + "amountCrypto": 0.00019553, + "pricePerUnit": 560585, + "totalCost": 109.61, + "fee": 0.3849818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-28T14:00:03" + }, + { + "id": "rux2hrlqv3hrr0ca2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-28T18:00:03", + "amountCrypto": 0.00019069, + "pricePerUnit": 574823, + "totalCost": 109.61, + "fee": 0.38498825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-28T18:00:03" + }, + { + "id": "wgoew6y5uq4etzvejz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-28T22:00:04", + "amountCrypto": 0.00019071, + "pricePerUnit": 574780, + "totalCost": 109.62, + "fee": 0.38499983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-28T22:00:04" + }, + { + "id": "zee2xwxrn417fneqk3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-29T02:00:03", + "amountCrypto": 0.00019059, + "pricePerUnit": 575141, + "totalCost": 109.62, + "fee": 0.38499923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-29T02:00:03" + }, + { + "id": "d488895hkkc5el1tyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-29T06:00:03", + "amountCrypto": 0.00019021, + "pricePerUnit": 576261, + "totalCost": 109.61, + "fee": 0.38497985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-29T06:00:03" + }, + { + "id": "gjf5skybbzw7aqd080", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-29T10:00:03", + "amountCrypto": 0.0001904, + "pricePerUnit": 575713, + "totalCost": 109.62, + "fee": 0.38499794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-29T10:00:03" + }, + { + "id": "xutahsjy58xp3n1kfi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-29T14:00:04", + "amountCrypto": 0.00019166, + "pricePerUnit": 571928, + "totalCost": 109.62, + "fee": 0.38499781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-29T14:00:04" + }, + { + "id": "5j9zaxgzduj1v0whtn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-29T18:00:03", + "amountCrypto": 0.00018955, + "pricePerUnit": 578277, + "totalCost": 109.61, + "fee": 0.38498617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-29T18:00:03" + }, + { + "id": "33muc0ekcy8kakpri6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-29T22:00:03", + "amountCrypto": 0.00019044, + "pricePerUnit": 575581, + "totalCost": 109.61, + "fee": 0.38499053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-29T22:00:03" + }, + { + "id": "eyd41y4k8bb4lhqi6p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-30T02:00:04", + "amountCrypto": 0.00019154, + "pricePerUnit": 572264, + "totalCost": 109.61, + "fee": 0.3849828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-30T02:00:04" + }, + { + "id": "k9fdi9d3s62ce8i9oe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-30T06:00:04", + "amountCrypto": 0.00019126, + "pricePerUnit": 573110, + "totalCost": 109.61, + "fee": 0.38498832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-30T06:00:04" + }, + { + "id": "5lcquv3857hi02555x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-30T10:00:04", + "amountCrypto": 0.00019062, + "pricePerUnit": 575051, + "totalCost": 109.62, + "fee": 0.38499957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-30T10:00:04" + }, + { + "id": "nwsqqrzzuwr0v22t9j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-30T14:00:04", + "amountCrypto": 0.00019002, + "pricePerUnit": 576854, + "totalCost": 109.61, + "fee": 0.38499106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-30T14:00:04" + }, + { + "id": "dlkalzhlzktu4bs6vb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-30T18:00:05", + "amountCrypto": 0.00018565, + "pricePerUnit": 590441, + "totalCost": 109.62, + "fee": 0.38499659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-30T18:00:05" + }, + { + "id": "u18j90sc6evpwyk6p2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-30T22:00:03", + "amountCrypto": 0.00019026, + "pricePerUnit": 576112, + "totalCost": 109.61, + "fee": 0.38498148, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-30T22:00:03" + }, + { + "id": "0abn8znxuq9ye089nl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-31T02:00:04", + "amountCrypto": 0.0001924, + "pricePerUnit": 569708, + "totalCost": 109.61, + "fee": 0.38498411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-31T02:00:04" + }, + { + "id": "zq1fqwwlzui65693lt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-31T06:00:04", + "amountCrypto": 0.0001916, + "pricePerUnit": 572084, + "totalCost": 109.61, + "fee": 0.38498227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-31T06:00:04" + }, + { + "id": "m9737gbufgzsbfffja", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-31T10:00:03", + "amountCrypto": 0.0001918, + "pricePerUnit": 571512, + "totalCost": 109.62, + "fee": 0.3849988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-31T10:00:03" + }, + { + "id": "n1m9cs3yozr4p3xxk4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-31T14:00:04", + "amountCrypto": 0.00019103, + "pricePerUnit": 573812, + "totalCost": 109.62, + "fee": 0.38499636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-31T14:00:04" + }, + { + "id": "g9n6837ax25kndy12w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-31T18:00:04", + "amountCrypto": 0.00019126, + "pricePerUnit": 573112, + "totalCost": 109.61, + "fee": 0.38498967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-31T18:00:04" + }, + { + "id": "nf6xc7uxflv0rq4q8k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-07-31T22:00:03", + "amountCrypto": 0.00019071, + "pricePerUnit": 574760, + "totalCost": 109.61, + "fee": 0.38498643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-07-31T22:00:03" + }, + { + "id": "i6wnxnbodbibrhh8qo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-01T02:00:04", + "amountCrypto": 0.00019507, + "pricePerUnit": 561926, + "totalCost": 109.61, + "fee": 0.38499495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-01T02:00:04" + }, + { + "id": "7futhle4cwdmqx5zkn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-01T06:00:04", + "amountCrypto": 0.00019469, + "pricePerUnit": 563027, + "totalCost": 109.62, + "fee": 0.38499784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-01T06:00:04" + }, + { + "id": "rhhy59ir46j6qcfkwn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-01T10:00:03", + "amountCrypto": 0.00019527, + "pricePerUnit": 561340, + "totalCost": 109.61, + "fee": 0.38498777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-01T10:00:03" + }, + { + "id": "85w9kpcs3d1basmoxv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-01T14:00:04", + "amountCrypto": 0.00019607, + "pricePerUnit": 559056, + "totalCost": 109.61, + "fee": 0.38499216, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-01T14:00:04" + }, + { + "id": "oz3tnr37nneiubu116", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-01T18:00:04", + "amountCrypto": 0.00019575, + "pricePerUnit": 559969, + "totalCost": 109.61, + "fee": 0.38499153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-01T18:00:04" + }, + { + "id": "48t1aldx0mx4wjf0w6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-01T22:00:04", + "amountCrypto": 0.00019883, + "pricePerUnit": 551300, + "totalCost": 109.61, + "fee": 0.38499521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-01T22:00:04" + }, + { + "id": "yk5bi6o3odw7uk47c8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-02T02:00:04", + "amountCrypto": 0.00019625, + "pricePerUnit": 558553, + "totalCost": 109.62, + "fee": 0.38499889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-02T02:00:04" + }, + { + "id": "vw4qhprgoiqzhuljq6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-02T06:00:03", + "amountCrypto": 0.00019993, + "pricePerUnit": 548260, + "totalCost": 109.61, + "fee": 0.38499044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-02T06:00:03" + }, + { + "id": "i0e89ubtp2rsg16jq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-02T10:00:04", + "amountCrypto": 0.00019877, + "pricePerUnit": 551468, + "totalCost": 109.62, + "fee": 0.38499632, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-02T10:00:04" + }, + { + "id": "8cw2srpmclcs4gvo7p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-02T14:00:04", + "amountCrypto": 0.0001989, + "pricePerUnit": 551093, + "totalCost": 109.61, + "fee": 0.38498614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-02T14:00:04" + }, + { + "id": "1upin1bijwo9lw112j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-02T18:00:04", + "amountCrypto": 0.00019721, + "pricePerUnit": 555809, + "totalCost": 109.61, + "fee": 0.38498156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-02T18:00:04" + }, + { + "id": "poe2ptzfgy9oycjpjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-02T22:00:04", + "amountCrypto": 0.00019719, + "pricePerUnit": 555886, + "totalCost": 109.62, + "fee": 0.38499585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-02T22:00:04" + }, + { + "id": "jgsplun7s9kgnzy46n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-03T02:00:03", + "amountCrypto": 0.00019653, + "pricePerUnit": 557746, + "totalCost": 109.61, + "fee": 0.38499114, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-03T02:00:03" + }, + { + "id": "wzjcokkibbfl89haoh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-03T06:00:03", + "amountCrypto": 0.0001982, + "pricePerUnit": 553035, + "totalCost": 109.61, + "fee": 0.38498312, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-03T06:00:03" + }, + { + "id": "vxjc66bubp28x156cw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-03T10:00:04", + "amountCrypto": 0.00019689, + "pricePerUnit": 556731, + "totalCost": 109.61, + "fee": 0.38499446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-03T10:00:04" + }, + { + "id": "u0wrnm4a4hx82o6rly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-03T14:00:04", + "amountCrypto": 0.00019358, + "pricePerUnit": 566236, + "totalCost": 109.61, + "fee": 0.38498462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-03T14:00:04" + }, + { + "id": "kga63vsavvq40ortih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-03T18:00:04", + "amountCrypto": 0.00019301, + "pricePerUnit": 567902, + "totalCost": 109.61, + "fee": 0.38498041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-03T18:00:04" + }, + { + "id": "vwkvuu19cbz4jzh7sz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-03T22:00:05", + "amountCrypto": 0.00019271, + "pricePerUnit": 568803, + "totalCost": 109.61, + "fee": 0.38499186, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-03T22:00:05" + }, + { + "id": "yvqculuott0djl490f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-04T02:00:07", + "amountCrypto": 0.00019799, + "pricePerUnit": 553639, + "totalCost": 109.61, + "fee": 0.38499523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-04T02:00:07" + }, + { + "id": "x9fh15b8svmzn9kpzp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-04T06:00:03", + "amountCrypto": 0.00019567, + "pricePerUnit": 560189, + "totalCost": 109.61, + "fee": 0.38498538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-04T06:00:03" + }, + { + "id": "pcev0y2heo1y60seza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-04T10:00:03", + "amountCrypto": 0.00019708, + "pricePerUnit": 556183, + "totalCost": 109.61, + "fee": 0.38498666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-04T10:00:03" + }, + { + "id": "85856ezvwzzjvd2jhc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-04T14:00:04", + "amountCrypto": 0.00019778, + "pricePerUnit": 554228, + "totalCost": 109.62, + "fee": 0.38499603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-04T14:00:04" + }, + { + "id": "7gird0d91rvn23jimp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-04T18:00:04", + "amountCrypto": 0.00019787, + "pricePerUnit": 553974, + "totalCost": 109.61, + "fee": 0.38499471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-04T18:00:04" + }, + { + "id": "1jml6d4cadbdnbcylv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-04T22:00:04", + "amountCrypto": 0.00020235, + "pricePerUnit": 541696, + "totalCost": 109.61, + "fee": 0.3849854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-04T22:00:04" + }, + { + "id": "snslh17yzxphksko1w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-05T02:00:03", + "amountCrypto": 0.000201, + "pricePerUnit": 545335, + "totalCost": 109.61, + "fee": 0.38498592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-05T02:00:03" + }, + { + "id": "8swk8mozto1urvkn1m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-05T06:00:04", + "amountCrypto": 0.00019611, + "pricePerUnit": 558929, + "totalCost": 109.61, + "fee": 0.38498322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-05T06:00:04" + }, + { + "id": "sto8bsh6kw41awsrk8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-05T10:00:04", + "amountCrypto": 0.00019576, + "pricePerUnit": 559927, + "totalCost": 109.61, + "fee": 0.38498232, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-05T10:00:04" + }, + { + "id": "fkayr5i6buujbpgt9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-05T14:00:04", + "amountCrypto": 0.00019416, + "pricePerUnit": 564559, + "totalCost": 109.61, + "fee": 0.3849945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-05T14:00:04" + }, + { + "id": "9mqu83d9igopikz3ui", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-05T18:00:04", + "amountCrypto": 0.00019707, + "pricePerUnit": 556223, + "totalCost": 109.61, + "fee": 0.38499482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-05T18:00:04" + }, + { + "id": "oppcbe1qpegevdy3cs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-05T22:00:04", + "amountCrypto": 0.00019761, + "pricePerUnit": 554692, + "totalCost": 109.61, + "fee": 0.38498716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-05T22:00:04" + }, + { + "id": "0jzfjtjyjfbuyu6whd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-06T02:00:04", + "amountCrypto": 0.00019491, + "pricePerUnit": 562388, + "totalCost": 109.62, + "fee": 0.38499544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-06T02:00:04" + }, + { + "id": "vxq6mrek51wri8bdcw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-06T06:00:03", + "amountCrypto": 0.00019576, + "pricePerUnit": 559935, + "totalCost": 109.61, + "fee": 0.38498782, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-06T06:00:03" + }, + { + "id": "4aau5i397yjfv4ti07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-06T10:00:04", + "amountCrypto": 0.00019548, + "pricePerUnit": 560750, + "totalCost": 109.62, + "fee": 0.38499672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-06T10:00:04" + }, + { + "id": "c7vzpxwfgp5msrwxie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-06T14:00:04", + "amountCrypto": 0.0001962, + "pricePerUnit": 558688, + "totalCost": 109.61, + "fee": 0.38499383, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-06T14:00:04" + }, + { + "id": "zmtjaalr71kbk1py6d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-06T18:00:03", + "amountCrypto": 0.00019547, + "pricePerUnit": 560763, + "totalCost": 109.61, + "fee": 0.38498595, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-06T18:00:03" + }, + { + "id": "p6lvn2boopj63wm62c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-06T22:00:04", + "amountCrypto": 0.00019554, + "pricePerUnit": 560561, + "totalCost": 109.61, + "fee": 0.38498509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-06T22:00:04" + }, + { + "id": "m21899bvyymne0ketv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-07T02:00:04", + "amountCrypto": 0.0001975, + "pricePerUnit": 555016, + "totalCost": 109.62, + "fee": 0.3849976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-07T02:00:04" + }, + { + "id": "ohw9kdf394ey0ht1x7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-07T06:00:03", + "amountCrypto": 0.00019717, + "pricePerUnit": 555947, + "totalCost": 109.62, + "fee": 0.38499904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-07T06:00:03" + }, + { + "id": "ixsy0ok16tlq4asqnf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-07T10:00:03", + "amountCrypto": 0.00019709, + "pricePerUnit": 556147, + "totalCost": 109.61, + "fee": 0.38498128, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-07T10:00:03" + }, + { + "id": "aa030tc4t2yl02d99l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-07T14:00:04", + "amountCrypto": 0.000197, + "pricePerUnit": 556403, + "totalCost": 109.61, + "fee": 0.38498261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-07T14:00:04" + }, + { + "id": "te4d6ypzx9lfzc7038", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-07T18:00:06", + "amountCrypto": 0.00019692, + "pricePerUnit": 556626, + "totalCost": 109.61, + "fee": 0.3849805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-07T18:00:06" + }, + { + "id": "uo3yo6cxrirc9db0ny", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-07T22:00:04", + "amountCrypto": 0.00019583, + "pricePerUnit": 559734, + "totalCost": 109.61, + "fee": 0.38498724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-07T22:00:04" + }, + { + "id": "jxzkevtjuwxj8e7bx4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-08T02:00:04", + "amountCrypto": 0.0001956, + "pricePerUnit": 560397, + "totalCost": 109.61, + "fee": 0.38499055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-08T02:00:04" + }, + { + "id": "lzvymwmj53cc5lcc5l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-08T06:00:04", + "amountCrypto": 0.00019493, + "pricePerUnit": 562328, + "totalCost": 109.61, + "fee": 0.38499387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-08T06:00:04" + }, + { + "id": "ihybuk9nbtybailowo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-08T10:00:04", + "amountCrypto": 0.00019097, + "pricePerUnit": 573980, + "totalCost": 109.61, + "fee": 0.38498812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-08T10:00:04" + }, + { + "id": "itj2ogg9iqpetq42h3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-08T14:00:04", + "amountCrypto": 0.00018843, + "pricePerUnit": 581730, + "totalCost": 109.62, + "fee": 0.38499663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-08T14:00:04" + }, + { + "id": "wzwreh2x2jn6s5mb55", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-08T18:00:04", + "amountCrypto": 0.00019019, + "pricePerUnit": 576337, + "totalCost": 109.61, + "fee": 0.38499013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-08T18:00:04" + }, + { + "id": "swee44vb648mgf0qib", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-08T22:00:03", + "amountCrypto": 0.00019039, + "pricePerUnit": 575719, + "totalCost": 109.61, + "fee": 0.38498173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-08T22:00:03" + }, + { + "id": "itfnzulrb4sdpnrowg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-09T02:00:04", + "amountCrypto": 0.00019143, + "pricePerUnit": 572589, + "totalCost": 109.61, + "fee": 0.38498022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-09T02:00:04" + }, + { + "id": "beif6cuk9m5mre77kd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-09T06:00:03", + "amountCrypto": 0.00019127, + "pricePerUnit": 573090, + "totalCost": 109.61, + "fee": 0.38499502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-09T06:00:03" + }, + { + "id": "o5xsnc35dg5hmt3h85", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-09T10:00:04", + "amountCrypto": 0.00019115, + "pricePerUnit": 573433, + "totalCost": 109.61, + "fee": 0.38498376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-09T10:00:04" + }, + { + "id": "bbvltjeumsqlfmsmcu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-09T14:00:04", + "amountCrypto": 0.00019612, + "pricePerUnit": 558913, + "totalCost": 109.61, + "fee": 0.38499183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-09T14:00:04" + }, + { + "id": "f5qad1rddcu5cbagwq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-09T18:00:04", + "amountCrypto": 0.0001976, + "pricePerUnit": 554735, + "totalCost": 109.62, + "fee": 0.38499752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-09T18:00:04" + }, + { + "id": "7riam791qzrx1g204d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-09T22:00:04", + "amountCrypto": 0.00019732, + "pricePerUnit": 555514, + "totalCost": 109.61, + "fee": 0.38499185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-09T22:00:04" + }, + { + "id": "jzak8l0gigzq9uibl1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-10T02:00:04", + "amountCrypto": 0.00019666, + "pricePerUnit": 557390, + "totalCost": 109.62, + "fee": 0.38499991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-10T02:00:04" + }, + { + "id": "s00j4464uuz9wmvyoi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-10T06:00:04", + "amountCrypto": 0.00019923, + "pricePerUnit": 550187, + "totalCost": 109.61, + "fee": 0.38499091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-10T06:00:04" + }, + { + "id": "arhh002118u9y0he45", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-10T10:00:04", + "amountCrypto": 0.00019828, + "pricePerUnit": 552811, + "totalCost": 109.61, + "fee": 0.38498252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-10T10:00:04" + }, + { + "id": "lquncg24yfc1hzdicn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-10T14:00:04", + "amountCrypto": 0.00019797, + "pricePerUnit": 553681, + "totalCost": 109.61, + "fee": 0.38498555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-10T14:00:04" + }, + { + "id": "kx0aeu9p3q4myuy7hg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-10T18:00:06", + "amountCrypto": 0.00019313, + "pricePerUnit": 567552, + "totalCost": 109.61, + "fee": 0.38498235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-10T18:00:06" + }, + { + "id": "xjq5ongjs2i0wyoykm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-08-10T22:00:04", + "amountCrypto": 0.00019564, + "pricePerUnit": 560276, + "totalCost": 109.61, + "fee": 0.38498614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-08-10T22:00:04" + }, + { + "id": "dzbt3l2txxxq6mo2lm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-19T14:00:04", + "amountCrypto": 0.00023753, + "pricePerUnit": 461482, + "totalCost": 109.62, + "fee": 0.38499816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-19T14:00:04" + }, + { + "id": "8zzoqz85aouq3g4iw5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-19T18:00:05", + "amountCrypto": 0.00023173, + "pricePerUnit": 473033, + "totalCost": 109.62, + "fee": 0.38499858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-19T18:00:05" + }, + { + "id": "75sa19172cb942vfvs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-19T22:00:04", + "amountCrypto": 0.00022844, + "pricePerUnit": 479839, + "totalCost": 109.61, + "fee": 0.38499325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-19T22:00:04" + }, + { + "id": "t8le7sdcw0kqnzd2mx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-20T02:00:04", + "amountCrypto": 0.00022873, + "pricePerUnit": 479238, + "totalCost": 109.62, + "fee": 0.38499917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-20T02:00:04" + }, + { + "id": "5m3l4o4ljxf2ufu651", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-20T06:00:03", + "amountCrypto": 0.00023043, + "pricePerUnit": 475689, + "totalCost": 109.61, + "fee": 0.38498832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-20T06:00:03" + }, + { + "id": "vfu4dijxer53pfxism", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-20T10:00:03", + "amountCrypto": 0.00023015, + "pricePerUnit": 476263, + "totalCost": 109.61, + "fee": 0.3849845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-20T10:00:03" + }, + { + "id": "6gnbi2qb2i2384nk9k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-20T14:00:05", + "amountCrypto": 0.00023126, + "pricePerUnit": 473994, + "totalCost": 109.62, + "fee": 0.38499828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-20T14:00:05" + }, + { + "id": "h6qn3lx6jm1ljvmu4k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-20T18:00:03", + "amountCrypto": 0.00023102, + "pricePerUnit": 474475, + "totalCost": 109.61, + "fee": 0.38498901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-20T18:00:03" + }, + { + "id": "0row8hxg3i8o6lw3a5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-20T22:00:04", + "amountCrypto": 0.00023322, + "pricePerUnit": 470002, + "totalCost": 109.61, + "fee": 0.3849913, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-20T22:00:04" + }, + { + "id": "7eakr3zzyrrynody4q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-21T02:00:05", + "amountCrypto": 0.00023417, + "pricePerUnit": 468087, + "totalCost": 109.61, + "fee": 0.38498451, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-21T02:00:05" + }, + { + "id": "6leadb24flj7o26cq4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-21T06:00:03", + "amountCrypto": 0.00023272, + "pricePerUnit": 471009, + "totalCost": 109.61, + "fee": 0.38498901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-21T06:00:03" + }, + { + "id": "3x60nf492gp7t08u4k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-21T10:00:04", + "amountCrypto": 0.00023174, + "pricePerUnit": 473006, + "totalCost": 109.61, + "fee": 0.38499321, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-21T10:00:04" + }, + { + "id": "4kyb8e5k781xbxqhul", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-21T14:00:03", + "amountCrypto": 0.00022962, + "pricePerUnit": 477375, + "totalCost": 109.61, + "fee": 0.38499505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-21T14:00:03" + }, + { + "id": "gad8kw7phcemdv1zfe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-21T18:00:03", + "amountCrypto": 0.00022786, + "pricePerUnit": 481054, + "totalCost": 109.61, + "fee": 0.38498813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-21T18:00:03" + }, + { + "id": "ci446tppsz7f707v7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-21T22:00:03", + "amountCrypto": 0.00023041, + "pricePerUnit": 475725, + "totalCost": 109.61, + "fee": 0.38498403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-21T22:00:03" + }, + { + "id": "c15shzd7x93v9pn5aw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-22T02:00:04", + "amountCrypto": 0.00023636, + "pricePerUnit": 463756, + "totalCost": 109.61, + "fee": 0.38498955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-22T02:00:04" + }, + { + "id": "5coyhysx6itgu06yfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-22T06:00:03", + "amountCrypto": 0.00023262, + "pricePerUnit": 471224, + "totalCost": 109.62, + "fee": 0.38499923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-22T06:00:03" + }, + { + "id": "8qfm3xwki8vnh66u78", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-22T10:00:04", + "amountCrypto": 0.00023029, + "pricePerUnit": 475983, + "totalCost": 109.61, + "fee": 0.38499221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-22T10:00:04" + }, + { + "id": "hmad0cd014fp0xag90", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-22T14:00:04", + "amountCrypto": 0.00022766, + "pricePerUnit": 481490, + "totalCost": 109.62, + "fee": 0.38499884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-22T14:00:04" + }, + { + "id": "qp1ld0xett0b8jycpw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-22T18:00:03", + "amountCrypto": 0.00022975, + "pricePerUnit": 477110, + "totalCost": 109.62, + "fee": 0.38499887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-22T18:00:03" + }, + { + "id": "f646rug615xddfb7ns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-22T22:00:03", + "amountCrypto": 0.00022597, + "pricePerUnit": 485072, + "totalCost": 109.61, + "fee": 0.38498376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-22T22:00:03" + }, + { + "id": "j2c5v59yhyd1zjv1aq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-23T02:00:03", + "amountCrypto": 0.00022488, + "pricePerUnit": 487443, + "totalCost": 109.62, + "fee": 0.38499943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-23T02:00:03" + }, + { + "id": "szmkbbd724egois350", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-23T06:00:03", + "amountCrypto": 0.00022471, + "pricePerUnit": 487812, + "totalCost": 109.62, + "fee": 0.38499962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-23T06:00:03" + }, + { + "id": "pk30700l3fslky9rsj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-23T10:00:05", + "amountCrypto": 0.00022559, + "pricePerUnit": 485901, + "totalCost": 109.61, + "fee": 0.3849932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-23T10:00:05" + }, + { + "id": "ons754lvrdy820q06j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-23T14:00:06", + "amountCrypto": 0.00022948, + "pricePerUnit": 477661, + "totalCost": 109.61, + "fee": 0.38499053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-23T14:00:06" + }, + { + "id": "mf60mhn1yotz3ok9j7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-23T18:00:04", + "amountCrypto": 0.00023083, + "pricePerUnit": 474874, + "totalCost": 109.62, + "fee": 0.38499586, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-23T18:00:04" + }, + { + "id": "06p3s7o3d9rn7dlr1x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-23T22:00:04", + "amountCrypto": 0.00022862, + "pricePerUnit": 479463, + "totalCost": 109.61, + "fee": 0.38499469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-23T22:00:04" + }, + { + "id": "qsa1nlucfrmkf7bv4h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-24T02:00:03", + "amountCrypto": 0.00022311, + "pricePerUnit": 491296, + "totalCost": 109.61, + "fee": 0.38498844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-24T02:00:03" + }, + { + "id": "hgbmzw3zg04aqra3ur", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-24T06:00:03", + "amountCrypto": 0.00022504, + "pricePerUnit": 487096, + "totalCost": 109.62, + "fee": 0.38499909, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-24T06:00:03" + }, + { + "id": "q3l3iar78g7uf3zoom", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-24T10:00:03", + "amountCrypto": 0.00022658, + "pricePerUnit": 483777, + "totalCost": 109.61, + "fee": 0.38499245, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-24T10:00:03" + }, + { + "id": "3g4hgzcr3dwlvypqo3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-24T14:00:04", + "amountCrypto": 0.00022597, + "pricePerUnit": 485089, + "totalCost": 109.62, + "fee": 0.38499726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-24T14:00:04" + }, + { + "id": "1y20mn4l8jh5cq36rs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-24T18:00:03", + "amountCrypto": 0.00022548, + "pricePerUnit": 486130, + "totalCost": 109.61, + "fee": 0.38498683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-24T18:00:03" + }, + { + "id": "qvaxy0q6pozm2j4rjy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-24T22:00:05", + "amountCrypto": 0.00022532, + "pricePerUnit": 486486, + "totalCost": 109.62, + "fee": 0.38499537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-24T22:00:05" + }, + { + "id": "u9d8vmqigjwtkjnkwt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-25T02:00:03", + "amountCrypto": 0.00022743, + "pricePerUnit": 481977, + "totalCost": 109.62, + "fee": 0.3849989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-25T02:00:03" + }, + { + "id": "j37f96j1e21pgn30tb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-25T06:00:03", + "amountCrypto": 0.00022625, + "pricePerUnit": 484483, + "totalCost": 109.61, + "fee": 0.38499275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-25T06:00:03" + }, + { + "id": "2qf1hoeofhx3mm6cz3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-25T10:00:04", + "amountCrypto": 0.00022553, + "pricePerUnit": 486037, + "totalCost": 109.62, + "fee": 0.38499853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-25T10:00:04" + }, + { + "id": "na9tq61i9g26ma8piu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-25T14:00:03", + "amountCrypto": 0.00022516, + "pricePerUnit": 486824, + "totalCost": 109.61, + "fee": 0.38498928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-25T14:00:03" + }, + { + "id": "ffxbef7dnhcxn6tio4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-25T18:00:04", + "amountCrypto": 0.00022674, + "pricePerUnit": 483439, + "totalCost": 109.61, + "fee": 0.38499514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-25T18:00:04" + }, + { + "id": "x87cdnx4g5u6u5ac51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-25T22:00:03", + "amountCrypto": 0.00022748, + "pricePerUnit": 481871, + "totalCost": 109.62, + "fee": 0.38499885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1458", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-25T22:00:03" + }, + { + "id": "da3jg2zwipkb6xckq3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-26T02:00:04", + "amountCrypto": 0.0002287, + "pricePerUnit": 479289, + "totalCost": 109.61, + "fee": 0.38498964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1459", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-26T02:00:04" + }, + { + "id": "q0fmqwxxopnf6nej47", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-26T06:00:03", + "amountCrypto": 0.0002267, + "pricePerUnit": 483513, + "totalCost": 109.61, + "fee": 0.38498614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1460", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-26T06:00:03" + }, + { + "id": "6rpj8eq7kkrtwt1dpq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-26T10:00:03", + "amountCrypto": 0.00022707, + "pricePerUnit": 482724, + "totalCost": 109.61, + "fee": 0.38498523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-26T10:00:03" + }, + { + "id": "c2ljbpy50wu9g1a1wm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-26T14:00:03", + "amountCrypto": 0.00022648, + "pricePerUnit": 483982, + "totalCost": 109.61, + "fee": 0.3849856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-26T14:00:03" + }, + { + "id": "4f655a591f6jq07afu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-26T18:00:03", + "amountCrypto": 0.00022386, + "pricePerUnit": 489656, + "totalCost": 109.61, + "fee": 0.38499315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-26T18:00:03" + }, + { + "id": "xl2ulz07uvz48zfxf0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-26T22:00:04", + "amountCrypto": 0.00022234, + "pricePerUnit": 493000, + "totalCost": 109.61, + "fee": 0.38499044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-26T22:00:04" + }, + { + "id": "2cju81v0x1xeqdq7um", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-27T02:00:04", + "amountCrypto": 0.00022234, + "pricePerUnit": 492999, + "totalCost": 109.61, + "fee": 0.38498966, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-27T02:00:04" + }, + { + "id": "sveo1atl86lnd8ytp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-27T06:00:04", + "amountCrypto": 0.00021301, + "pricePerUnit": 514601, + "totalCost": 109.62, + "fee": 0.38499584, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-27T06:00:04" + }, + { + "id": "vbyy9szc4ssokd39by", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-27T10:00:04", + "amountCrypto": 0.00021273, + "pricePerUnit": 515262, + "totalCost": 109.61, + "fee": 0.38498364, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-27T10:00:04" + }, + { + "id": "h486nfy4ugtbx3kebf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-27T14:00:03", + "amountCrypto": 0.00021181, + "pricePerUnit": 517514, + "totalCost": 109.61, + "fee": 0.38499402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-27T14:00:03" + }, + { + "id": "p285jeytamsfsfzi1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-27T18:00:03", + "amountCrypto": 0.00021484, + "pricePerUnit": 510220, + "totalCost": 109.62, + "fee": 0.38499762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-27T18:00:03" + }, + { + "id": "2gm0jst2peotbn8pcv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-27T22:00:03", + "amountCrypto": 0.00022319, + "pricePerUnit": 491121, + "totalCost": 109.61, + "fee": 0.3849893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-27T22:00:03" + }, + { + "id": "eix7ipsvmwytmaro8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-28T02:00:03", + "amountCrypto": 0.0002233, + "pricePerUnit": 490875, + "totalCost": 109.61, + "fee": 0.38498611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-28T02:00:03" + }, + { + "id": "2ax6mevyuf0djbmjse", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-28T06:00:03", + "amountCrypto": 0.00022639, + "pricePerUnit": 484182, + "totalCost": 109.61, + "fee": 0.38499164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-28T06:00:03" + }, + { + "id": "23cgpon74abgmaj496", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-28T10:00:03", + "amountCrypto": 0.0002264, + "pricePerUnit": 484157, + "totalCost": 109.61, + "fee": 0.38498877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-28T10:00:03" + }, + { + "id": "3e0trsq6renfqid21l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-28T14:00:03", + "amountCrypto": 0.00022422, + "pricePerUnit": 488875, + "totalCost": 109.62, + "fee": 0.38499722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-28T14:00:03" + }, + { + "id": "icax0imfx6fdu64fz1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-28T18:00:04", + "amountCrypto": 0.00021998, + "pricePerUnit": 498289, + "totalCost": 109.61, + "fee": 0.38499042, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-28T18:00:04" + }, + { + "id": "wq667cyy5ij0o6fzrh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-28T22:00:03", + "amountCrypto": 0.00022097, + "pricePerUnit": 496064, + "totalCost": 109.62, + "fee": 0.3849962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-28T22:00:03" + }, + { + "id": "kxf8symj1enx4ogemx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-29T02:00:04", + "amountCrypto": 0.00022186, + "pricePerUnit": 494061, + "totalCost": 109.61, + "fee": 0.38498606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-29T02:00:04" + }, + { + "id": "647ox3o205dv0uk0c7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-29T06:00:03", + "amountCrypto": 0.00022036, + "pricePerUnit": 497421, + "totalCost": 109.61, + "fee": 0.38498366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-29T06:00:03" + }, + { + "id": "o5qk6wmrugjbvdwb2e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-29T10:00:04", + "amountCrypto": 0.00022135, + "pricePerUnit": 495206, + "totalCost": 109.61, + "fee": 0.38499124, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-29T10:00:04" + }, + { + "id": "a4sr5gtxolz7ukaice", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-29T14:00:04", + "amountCrypto": 0.00022167, + "pricePerUnit": 494486, + "totalCost": 109.61, + "fee": 0.38498725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-29T14:00:04" + }, + { + "id": "pfxv8mymqwma6p41yd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-29T18:00:05", + "amountCrypto": 0.00022532, + "pricePerUnit": 486475, + "totalCost": 109.61, + "fee": 0.38498667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-29T18:00:05" + }, + { + "id": "2l5e58ooc2lfl2msyd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-29T22:00:04", + "amountCrypto": 0.00022508, + "pricePerUnit": 487009, + "totalCost": 109.62, + "fee": 0.38499875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-29T22:00:04" + }, + { + "id": "ul6aw0p4vjv008i0hy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-30T02:00:04", + "amountCrypto": 0.00022357, + "pricePerUnit": 490291, + "totalCost": 109.61, + "fee": 0.38499303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-30T02:00:04" + }, + { + "id": "3j1pi7562q0qrsv54t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-30T06:00:03", + "amountCrypto": 0.0002251, + "pricePerUnit": 486961, + "totalCost": 109.61, + "fee": 0.38499501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-30T06:00:03" + }, + { + "id": "rh7y17sngk5gxj89oz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-30T10:00:03", + "amountCrypto": 0.0002236, + "pricePerUnit": 490218, + "totalCost": 109.61, + "fee": 0.38498736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-30T10:00:03" + }, + { + "id": "gousl3zxvoj7qgm6re", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-30T14:00:04", + "amountCrypto": 0.00022326, + "pricePerUnit": 490970, + "totalCost": 109.61, + "fee": 0.38499164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-30T14:00:04" + }, + { + "id": "jiim9jsoowqk2nu6oq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-30T18:00:03", + "amountCrypto": 0.00021996, + "pricePerUnit": 498325, + "totalCost": 109.61, + "fee": 0.38498323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-30T18:00:03" + }, + { + "id": "d9t6pudles7lnahzbg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-09-30T22:00:05", + "amountCrypto": 0.00022325, + "pricePerUnit": 490998, + "totalCost": 109.62, + "fee": 0.38499635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-09-30T22:00:05" + }, + { + "id": "pdxmxc607l5opczhg3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-01T02:00:05", + "amountCrypto": 0.00022409, + "pricePerUnit": 489142, + "totalCost": 109.61, + "fee": 0.38498415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-01T02:00:05" + }, + { + "id": "l8cju4h8t0x7biar5b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-01T06:00:04", + "amountCrypto": 0.00022458, + "pricePerUnit": 488077, + "totalCost": 109.61, + "fee": 0.38498592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-01T06:00:04" + }, + { + "id": "66vg3rbwyhhojagr19", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-01T10:00:04", + "amountCrypto": 0.00022537, + "pricePerUnit": 486366, + "totalCost": 109.61, + "fee": 0.38498582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-01T10:00:04" + }, + { + "id": "7hf2zbnrq0ion3bwa4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-01T14:00:04", + "amountCrypto": 0.00022536, + "pricePerUnit": 486397, + "totalCost": 109.61, + "fee": 0.38499327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-01T14:00:04" + }, + { + "id": "7f1ywm5fiv37wqfqe4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-01T18:00:05", + "amountCrypto": 0.00022544, + "pricePerUnit": 486217, + "totalCost": 109.61, + "fee": 0.38498742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-01T18:00:05" + }, + { + "id": "h5nqy3wcgzu1dqeddw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-01T22:00:04", + "amountCrypto": 0.00022613, + "pricePerUnit": 484738, + "totalCost": 109.61, + "fee": 0.38499108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-01T22:00:04" + }, + { + "id": "1susg4frf2wz6v82xq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-02T02:00:04", + "amountCrypto": 0.00022575, + "pricePerUnit": 485559, + "totalCost": 109.61, + "fee": 0.38499509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1495", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-02T02:00:04" + }, + { + "id": "nhnmljoyrcaaifwyx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-02T06:00:03", + "amountCrypto": 0.00022573, + "pricePerUnit": 485602, + "totalCost": 109.61, + "fee": 0.38499507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-02T06:00:03" + }, + { + "id": "bu387j2fmur281wo51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-02T10:00:04", + "amountCrypto": 0.00022599, + "pricePerUnit": 485046, + "totalCost": 109.62, + "fee": 0.3849972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-02T10:00:04" + }, + { + "id": "ca8mwcm2hkly84fq2i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-02T14:00:03", + "amountCrypto": 0.00022702, + "pricePerUnit": 482844, + "totalCost": 109.62, + "fee": 0.38499614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-02T14:00:03" + }, + { + "id": "0gpsrap7dz78sboe3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-02T18:00:04", + "amountCrypto": 0.00022778, + "pricePerUnit": 481223, + "totalCost": 109.61, + "fee": 0.38498817, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-02T18:00:04" + }, + { + "id": "vg1z4cb73x8j0aep7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-02T22:00:04", + "amountCrypto": 0.00022609, + "pricePerUnit": 484824, + "totalCost": 109.61, + "fee": 0.38499127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-02T22:00:04" + }, + { + "id": "v0uq9dza4uydbpvhze", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-03T02:00:03", + "amountCrypto": 0.00022855, + "pricePerUnit": 479616, + "totalCost": 109.62, + "fee": 0.38499963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-03T02:00:03" + }, + { + "id": "zllffk40wqk74gow1r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-03T06:00:04", + "amountCrypto": 0.00022749, + "pricePerUnit": 481837, + "totalCost": 109.61, + "fee": 0.38498861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-03T06:00:04" + }, + { + "id": "ogxn9sz2bfqm40j6vk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-03T10:00:05", + "amountCrypto": 0.00022744, + "pricePerUnit": 481940, + "totalCost": 109.61, + "fee": 0.38498627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-03T10:00:05" + }, + { + "id": "vb8n2ywqpjptr4s4t1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-03T14:00:04", + "amountCrypto": 0.00022653, + "pricePerUnit": 483876, + "totalCost": 109.61, + "fee": 0.38498626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-03T14:00:04" + }, + { + "id": "14kqvzuytb4aqcspe6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-03T18:00:07", + "amountCrypto": 0.00022606, + "pricePerUnit": 484896, + "totalCost": 109.62, + "fee": 0.38499736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-03T18:00:07" + }, + { + "id": "rk2o7qzgty8xagh2sm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-03T22:00:04", + "amountCrypto": 0.00022408, + "pricePerUnit": 489180, + "totalCost": 109.62, + "fee": 0.38499688, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-03T22:00:04" + }, + { + "id": "99rbw44kk6kng9qqmp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-04T02:00:04", + "amountCrypto": 0.00022312, + "pricePerUnit": 491270, + "totalCost": 109.61, + "fee": 0.38498532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-04T02:00:04" + }, + { + "id": "twfyjg4wmt8aeslyp7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-04T06:00:04", + "amountCrypto": 0.0002239, + "pricePerUnit": 489572, + "totalCost": 109.62, + "fee": 0.38499588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-04T06:00:04" + }, + { + "id": "kmmdutghsnrhzimuds", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-04T10:00:04", + "amountCrypto": 0.00022079, + "pricePerUnit": 496456, + "totalCost": 109.61, + "fee": 0.38498657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1509", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-04T10:00:04" + }, + { + "id": "b5ow9i1japgwttza0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-04T14:00:04", + "amountCrypto": 0.00022075, + "pricePerUnit": 496547, + "totalCost": 109.61, + "fee": 0.38498738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1510", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-04T14:00:04" + }, + { + "id": "zuwc1gvfto85fi8ov3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-10T14:00:03", + "amountCrypto": 0.00022387, + "pricePerUnit": 489640, + "totalCost": 109.62, + "fee": 0.38499777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-10T14:00:03" + }, + { + "id": "vtj7njzfjnjnn8yxkx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-10T18:00:04", + "amountCrypto": 0.00022377, + "pricePerUnit": 489851, + "totalCost": 109.61, + "fee": 0.38499162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-10T18:00:04" + }, + { + "id": "jczv3rr9wg2dcuifan", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-10T22:00:04", + "amountCrypto": 0.00022496, + "pricePerUnit": 487250, + "totalCost": 109.61, + "fee": 0.3849839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-10T22:00:04" + }, + { + "id": "yi91jo25en6atyp43x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-11T02:00:03", + "amountCrypto": 0.00022613, + "pricePerUnit": 484734, + "totalCost": 109.61, + "fee": 0.38498791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-11T02:00:03" + }, + { + "id": "pgaf8ktn4asol1v08z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-11T06:00:03", + "amountCrypto": 0.00022676, + "pricePerUnit": 483393, + "totalCost": 109.61, + "fee": 0.38499246, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-11T06:00:03" + }, + { + "id": "bifdsz1r8p8hyt26kl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-11T10:00:03", + "amountCrypto": 0.00022651, + "pricePerUnit": 483916, + "totalCost": 109.61, + "fee": 0.38498409, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-11T10:00:03" + }, + { + "id": "6ezzpw8ij29fgep5db", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-11T14:00:04", + "amountCrypto": 0.00022666, + "pricePerUnit": 483611, + "totalCost": 109.62, + "fee": 0.38499623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-11T14:00:04" + }, + { + "id": "3ycu06x9j9hlok1vo6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-11T18:00:04", + "amountCrypto": 0.00022681, + "pricePerUnit": 483281, + "totalCost": 109.61, + "fee": 0.38498813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-11T18:00:04" + }, + { + "id": "ht3zbdesgys1o9nrz1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-11T22:00:04", + "amountCrypto": 0.00022765, + "pricePerUnit": 481508, + "totalCost": 109.62, + "fee": 0.38499632, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1554", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-11T22:00:04" + }, + { + "id": "5bjqi882ydfe2md5tz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-12T02:00:03", + "amountCrypto": 0.00022707, + "pricePerUnit": 482726, + "totalCost": 109.61, + "fee": 0.38498683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1555", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-12T02:00:03" + }, + { + "id": "dn5g1vd3on40nhskna", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-12T06:00:04", + "amountCrypto": 0.00022675, + "pricePerUnit": 483404, + "totalCost": 109.61, + "fee": 0.38498424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1556", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-12T06:00:04" + }, + { + "id": "6gyqggszq5pp44ax3d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-12T10:00:04", + "amountCrypto": 0.00022601, + "pricePerUnit": 485000, + "totalCost": 109.61, + "fee": 0.38499476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1557", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-12T10:00:04" + }, + { + "id": "qvn956eayfz6p677k9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-12T14:00:03", + "amountCrypto": 0.00022462, + "pricePerUnit": 487990, + "totalCost": 109.61, + "fee": 0.38498585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1558", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-12T14:00:03" + }, + { + "id": "1c9dnll5jq2ksn1l5r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-12T18:00:04", + "amountCrypto": 0.0002257, + "pricePerUnit": 485667, + "totalCost": 109.62, + "fee": 0.38499543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1559", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-12T18:00:04" + }, + { + "id": "5ihbnr48k6ptbmg1ld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-12T22:00:03", + "amountCrypto": 0.00022549, + "pricePerUnit": 486121, + "totalCost": 109.62, + "fee": 0.38499677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1560", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-12T22:00:03" + }, + { + "id": "f339d89a5lfmi13sdh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-13T02:00:04", + "amountCrypto": 0.00022534, + "pricePerUnit": 486438, + "totalCost": 109.61, + "fee": 0.38499156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1561", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-13T02:00:04" + }, + { + "id": "fnqwyymd8iihuef9o5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-13T06:00:05", + "amountCrypto": 0.00022589, + "pricePerUnit": 485253, + "totalCost": 109.61, + "fee": 0.38499107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1562", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-13T06:00:05" + }, + { + "id": "8tck4rdvnv6aja6hhu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-13T10:00:04", + "amountCrypto": 0.00022662, + "pricePerUnit": 483701, + "totalCost": 109.62, + "fee": 0.38499992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1563", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-13T10:00:04" + }, + { + "id": "ikkl89k97j0umn7r59", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-13T14:00:03", + "amountCrypto": 0.0002307, + "pricePerUnit": 475134, + "totalCost": 109.61, + "fee": 0.38498971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1564", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-13T14:00:03" + }, + { + "id": "n0jmeajz9xvt5wa3r0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-13T18:00:03", + "amountCrypto": 0.00022934, + "pricePerUnit": 477945, + "totalCost": 109.61, + "fee": 0.38498442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1565", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-13T18:00:03" + }, + { + "id": "ingg3rc60bj2arfebr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-13T22:00:03", + "amountCrypto": 0.00022439, + "pricePerUnit": 488500, + "totalCost": 109.61, + "fee": 0.38499358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1566", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-13T22:00:03" + }, + { + "id": "kvi8ih2h82gzb0un2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-14T02:00:04", + "amountCrypto": 0.00022408, + "pricePerUnit": 489178, + "totalCost": 109.62, + "fee": 0.38499531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1567", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-14T02:00:04" + }, + { + "id": "dmy0de5dok9so6x5nw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-14T06:00:04", + "amountCrypto": 0.00021963, + "pricePerUnit": 499093, + "totalCost": 109.62, + "fee": 0.38499808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1568", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-14T06:00:04" + }, + { + "id": "jurs80iaqbd2418pzf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-14T10:00:05", + "amountCrypto": 0.00022139, + "pricePerUnit": 495115, + "totalCost": 109.61, + "fee": 0.38499005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1569", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-14T10:00:05" + }, + { + "id": "8yg5qqbc1o9xftjjgq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-14T14:00:03", + "amountCrypto": 0.00022105, + "pricePerUnit": 495886, + "totalCost": 109.62, + "fee": 0.38499739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1570", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-14T14:00:03" + }, + { + "id": "ijgbmxyid7f2g1aewa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-14T18:00:04", + "amountCrypto": 0.00022351, + "pricePerUnit": 490416, + "totalCost": 109.61, + "fee": 0.38498784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1571", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-14T18:00:04" + }, + { + "id": "jmjxbh7opwim49i7zc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-14T22:00:04", + "amountCrypto": 0.00022541, + "pricePerUnit": 486294, + "totalCost": 109.62, + "fee": 0.38499715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1572", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-14T22:00:04" + }, + { + "id": "4wtudys9xxja3bflcg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-15T02:00:03", + "amountCrypto": 0.00022511, + "pricePerUnit": 486936, + "totalCost": 109.61, + "fee": 0.38499234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1573", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-15T02:00:03" + }, + { + "id": "6s48sbh28oyfgsn377", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-15T06:00:03", + "amountCrypto": 0.00022482, + "pricePerUnit": 487553, + "totalCost": 109.61, + "fee": 0.38498357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1574", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-15T06:00:03" + }, + { + "id": "g0kfujgc3vqhvqmry0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-15T10:00:04", + "amountCrypto": 0.0002248, + "pricePerUnit": 487607, + "totalCost": 109.61, + "fee": 0.38499196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1575", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-15T10:00:04" + }, + { + "id": "gois5ctjdya3fz68kd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-15T14:00:03", + "amountCrypto": 0.0002248, + "pricePerUnit": 487607, + "totalCost": 109.61, + "fee": 0.38499196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1576", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-15T14:00:03" + }, + { + "id": "aeebnfe65edfdmrik4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-15T18:00:03", + "amountCrypto": 0.00022517, + "pricePerUnit": 486807, + "totalCost": 109.61, + "fee": 0.38499294, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1577", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-15T18:00:03" + }, + { + "id": "ymmv50b0zs2zo3as7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-15T22:00:04", + "amountCrypto": 0.00022598, + "pricePerUnit": 485067, + "totalCost": 109.62, + "fee": 0.38499683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1578", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-15T22:00:04" + }, + { + "id": "1tu7ik3xmdqfmh3hxh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-16T02:00:04", + "amountCrypto": 0.00022613, + "pricePerUnit": 484746, + "totalCost": 109.62, + "fee": 0.38499744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1579", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-16T02:00:04" + }, + { + "id": "15avewospp6tqtrzqc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-16T06:00:03", + "amountCrypto": 0.00022577, + "pricePerUnit": 485522, + "totalCost": 109.62, + "fee": 0.38499986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1580", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-16T06:00:03" + }, + { + "id": "p2kae9f58c4qec44eq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-16T10:00:04", + "amountCrypto": 0.00022509, + "pricePerUnit": 486980, + "totalCost": 109.61, + "fee": 0.38499292, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1581", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-16T10:00:04" + }, + { + "id": "ks2mvrt7klqfg3u23b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-16T14:00:04", + "amountCrypto": 0.00022554, + "pricePerUnit": 486000, + "totalCost": 109.61, + "fee": 0.38498629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1582", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-16T14:00:04" + }, + { + "id": "z4n28maoxvmhtt2cjr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-16T18:00:04", + "amountCrypto": 0.00022554, + "pricePerUnit": 485996, + "totalCost": 109.61, + "fee": 0.38498312, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1583", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-16T18:00:04" + }, + { + "id": "x0xmusbviuo3bmqpgp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-16T22:00:04", + "amountCrypto": 0.00022307, + "pricePerUnit": 491383, + "totalCost": 109.61, + "fee": 0.38498758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1584", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-16T22:00:04" + }, + { + "id": "2j8wmvb660gbjhy3vu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-17T02:00:03", + "amountCrypto": 0.00022471, + "pricePerUnit": 487804, + "totalCost": 109.61, + "fee": 0.38499331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1585", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-17T02:00:03" + }, + { + "id": "h9q91rzmfkgaisg83c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-17T06:00:04", + "amountCrypto": 0.00022579, + "pricePerUnit": 485462, + "totalCost": 109.61, + "fee": 0.38498638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1586", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-17T06:00:04" + }, + { + "id": "7nl7lc28kxe03ppiwh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-17T10:00:04", + "amountCrypto": 0.00022512, + "pricePerUnit": 486914, + "totalCost": 109.61, + "fee": 0.38499205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1587", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-17T10:00:04" + }, + { + "id": "tzdt6m4zb7x3y1icr9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-17T14:00:05", + "amountCrypto": 0.00022279, + "pricePerUnit": 492000, + "totalCost": 109.61, + "fee": 0.38498714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1588", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-17T14:00:05" + }, + { + "id": "vglbroj25ydv0pjql3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-17T18:00:04", + "amountCrypto": 0.00022383, + "pricePerUnit": 489723, + "totalCost": 109.61, + "fee": 0.38499423, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1589", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-17T18:00:04" + }, + { + "id": "w503bx9njn0cbb9x5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-17T22:00:04", + "amountCrypto": 0.00022424, + "pricePerUnit": 488832, + "totalCost": 109.62, + "fee": 0.38499731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1590", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-17T22:00:04" + }, + { + "id": "smqqr4v2ilnoxboevt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-18T02:00:03", + "amountCrypto": 0.00022413, + "pricePerUnit": 489054, + "totalCost": 109.61, + "fee": 0.3849836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1591", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-18T02:00:03" + }, + { + "id": "6bzltkcnwbk1q4o1cq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-18T06:00:03", + "amountCrypto": 0.00022419, + "pricePerUnit": 488931, + "totalCost": 109.61, + "fee": 0.38498981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1592", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-18T06:00:03" + }, + { + "id": "y8jj4cu7q7r3z08fax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-18T10:00:03", + "amountCrypto": 0.00022295, + "pricePerUnit": 491645, + "totalCost": 109.61, + "fee": 0.38498563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1593", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-18T10:00:03" + }, + { + "id": "xd0moxryvix3kihlbo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-18T14:00:04", + "amountCrypto": 0.00022325, + "pricePerUnit": 491001, + "totalCost": 109.62, + "fee": 0.3849987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1594", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-18T14:00:04" + }, + { + "id": "q39i6iwjvxaj7d07l3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-18T18:00:04", + "amountCrypto": 0.00022567, + "pricePerUnit": 485723, + "totalCost": 109.61, + "fee": 0.38498864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1595", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-18T18:00:04" + }, + { + "id": "xc9f3gjuzzwmzrbmlp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-18T22:00:03", + "amountCrypto": 0.00022757, + "pricePerUnit": 481677, + "totalCost": 109.62, + "fee": 0.38499611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1596", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-18T22:00:03" + }, + { + "id": "embys81z2vyluu7jre", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-19T02:00:04", + "amountCrypto": 0.00022672, + "pricePerUnit": 483474, + "totalCost": 109.61, + "fee": 0.38498905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-19T02:00:04" + }, + { + "id": "0nqnztpjosbiksoxud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-19T06:00:04", + "amountCrypto": 0.0002272, + "pricePerUnit": 482459, + "totalCost": 109.61, + "fee": 0.38499418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1598", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-19T06:00:04" + }, + { + "id": "jp3s8bputkljzgdt0o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-19T10:00:04", + "amountCrypto": 0.00022777, + "pricePerUnit": 481246, + "totalCost": 109.61, + "fee": 0.38498967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-19T10:00:04" + }, + { + "id": "y9pjdm2m9b1hqpihcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-19T14:00:03", + "amountCrypto": 0.00022713, + "pricePerUnit": 482601, + "totalCost": 109.61, + "fee": 0.38498884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-19T14:00:03" + }, + { + "id": "wpaqwar891yenjsttm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-19T18:00:05", + "amountCrypto": 0.00022674, + "pricePerUnit": 483442, + "totalCost": 109.62, + "fee": 0.38499753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-19T18:00:05" + }, + { + "id": "j1mc6p0sd2kdglbios", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-19T22:00:03", + "amountCrypto": 0.00022686, + "pricePerUnit": 483187, + "totalCost": 109.62, + "fee": 0.3849981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-19T22:00:03" + }, + { + "id": "ugcn70hd8ohwox4cgl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-20T02:00:03", + "amountCrypto": 0.00022756, + "pricePerUnit": 481691, + "totalCost": 109.61, + "fee": 0.38499038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-20T02:00:03" + }, + { + "id": "oi7i1lt4ube3us7gim", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-20T06:00:03", + "amountCrypto": 0.00022838, + "pricePerUnit": 479969, + "totalCost": 109.62, + "fee": 0.38499641, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-20T06:00:03" + }, + { + "id": "c6qkeshd3kjavcfmts", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-20T10:00:03", + "amountCrypto": 0.00022779, + "pricePerUnit": 481209, + "totalCost": 109.61, + "fee": 0.38499387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-20T10:00:03" + }, + { + "id": "qut0govbqvuu6og79j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-20T14:00:03", + "amountCrypto": 0.00022779, + "pricePerUnit": 481199, + "totalCost": 109.61, + "fee": 0.38498587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-20T14:00:03" + }, + { + "id": "22h6j6b3z7hmlj3k5e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-20T18:00:03", + "amountCrypto": 0.00022744, + "pricePerUnit": 481937, + "totalCost": 109.61, + "fee": 0.38498387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-20T18:00:03" + }, + { + "id": "d7qoyrgutlkb4rzdmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-20T22:00:05", + "amountCrypto": 0.00022896, + "pricePerUnit": 478741, + "totalCost": 109.61, + "fee": 0.38498664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-20T22:00:05" + }, + { + "id": "3z72gjahhy4vgm91qb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-21T02:00:04", + "amountCrypto": 0.00022899, + "pricePerUnit": 478692, + "totalCost": 109.62, + "fee": 0.38499768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-21T02:00:04" + }, + { + "id": "2nwri11atzai5swuj0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-21T06:00:04", + "amountCrypto": 0.00022876, + "pricePerUnit": 479159, + "totalCost": 109.61, + "fee": 0.3849862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-21T06:00:04" + }, + { + "id": "t49qag3pe3an2h476c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-21T10:00:04", + "amountCrypto": 0.00022972, + "pricePerUnit": 477170, + "totalCost": 109.62, + "fee": 0.38499701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-21T10:00:04" + }, + { + "id": "fxc3knhgvml7f4cci9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-21T14:00:04", + "amountCrypto": 0.00022944, + "pricePerUnit": 477740, + "totalCost": 109.61, + "fee": 0.38498708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-21T14:00:04" + }, + { + "id": "60ba8c1briycjtn94i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-21T18:00:03", + "amountCrypto": 0.00022937, + "pricePerUnit": 477882, + "totalCost": 109.61, + "fee": 0.38498402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-21T18:00:03" + }, + { + "id": "bytrp2g2zsjsf7nm0l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-21T22:00:04", + "amountCrypto": 0.00022943, + "pricePerUnit": 477761, + "totalCost": 109.61, + "fee": 0.38498723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-21T22:00:04" + }, + { + "id": "4p7h50m4ytc8fvhcrj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-22T02:00:03", + "amountCrypto": 0.0002297, + "pricePerUnit": 477196, + "totalCost": 109.61, + "fee": 0.38498447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-22T02:00:03" + }, + { + "id": "7zrmrii19z521o9rrq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-22T06:00:05", + "amountCrypto": 0.00022983, + "pricePerUnit": 476926, + "totalCost": 109.61, + "fee": 0.3849844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-22T06:00:05" + }, + { + "id": "ma7l6tknar1gv28681", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-22T10:00:03", + "amountCrypto": 0.00022907, + "pricePerUnit": 478508, + "totalCost": 109.61, + "fee": 0.38498414, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-22T10:00:03" + }, + { + "id": "32k59l6cnoq8l3dv26", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-22T14:00:03", + "amountCrypto": 0.00022908, + "pricePerUnit": 478496, + "totalCost": 109.61, + "fee": 0.38499129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-22T14:00:03" + }, + { + "id": "evzmf4xinn8sy66w8r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-22T18:00:03", + "amountCrypto": 0.00022856, + "pricePerUnit": 479594, + "totalCost": 109.62, + "fee": 0.38499881, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-22T18:00:03" + }, + { + "id": "ge16v8j6jt25tpk2bp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-22T22:00:03", + "amountCrypto": 0.00022898, + "pricePerUnit": 478707, + "totalCost": 109.61, + "fee": 0.38499293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-22T22:00:03" + }, + { + "id": "y0953ugbdoh5w1g93x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-23T02:00:04", + "amountCrypto": 0.00022898, + "pricePerUnit": 478707, + "totalCost": 109.61, + "fee": 0.38499293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-23T02:00:04" + }, + { + "id": "s62bri6l1fr52a0153", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-23T06:00:03", + "amountCrypto": 0.00022898, + "pricePerUnit": 478707, + "totalCost": 109.61, + "fee": 0.38499293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-23T06:00:03" + }, + { + "id": "z70mm0sois19aefc3h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-23T10:00:03", + "amountCrypto": 0.00022903, + "pricePerUnit": 478610, + "totalCost": 109.62, + "fee": 0.38499897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-23T10:00:03" + }, + { + "id": "6mnwryygfq5xzfzl0z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-23T14:00:04", + "amountCrypto": 0.00022904, + "pricePerUnit": 478585, + "totalCost": 109.62, + "fee": 0.38499566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-23T14:00:04" + }, + { + "id": "1v688d8yvmwfxv7ms6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-23T18:00:03", + "amountCrypto": 0.00022946, + "pricePerUnit": 477699, + "totalCost": 109.61, + "fee": 0.3849876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-23T18:00:03" + }, + { + "id": "2knh3hxv79kros4g5s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-23T22:00:03", + "amountCrypto": 0.00022599, + "pricePerUnit": 485044, + "totalCost": 109.62, + "fee": 0.38499561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-23T22:00:03" + }, + { + "id": "xca0w5lyn2sp2wjagb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-24T02:00:04", + "amountCrypto": 0.00022487, + "pricePerUnit": 487461, + "totalCost": 109.62, + "fee": 0.38499653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-24T02:00:04" + }, + { + "id": "bzbm4ickwzen1tajnw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-24T06:00:03", + "amountCrypto": 0.00022658, + "pricePerUnit": 483773, + "totalCost": 109.61, + "fee": 0.38498926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-24T06:00:03" + }, + { + "id": "5r5xzffbeq87q5cqfg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-24T10:00:03", + "amountCrypto": 0.00022734, + "pricePerUnit": 482163, + "totalCost": 109.61, + "fee": 0.38499506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-24T10:00:03" + }, + { + "id": "iw4ag30ncndz2h4xw7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-24T14:00:03", + "amountCrypto": 0.00022642, + "pricePerUnit": 484120, + "totalCost": 109.61, + "fee": 0.38499335, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-24T14:00:03" + }, + { + "id": "etd8p4v4tcsvadzzya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-24T18:00:04", + "amountCrypto": 0.00022841, + "pricePerUnit": 479897, + "totalCost": 109.61, + "fee": 0.38498922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-24T18:00:04" + }, + { + "id": "925rtyomfdfhuzz1ey", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-24T22:00:04", + "amountCrypto": 0.00022788, + "pricePerUnit": 481010, + "totalCost": 109.61, + "fee": 0.38498671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-24T22:00:04" + }, + { + "id": "78chtvnrt1iuu7ba3a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-25T02:00:04", + "amountCrypto": 0.00022822, + "pricePerUnit": 480297, + "totalCost": 109.61, + "fee": 0.3849896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-25T02:00:04" + }, + { + "id": "491eladql2w2sfm00b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-25T06:00:04", + "amountCrypto": 0.00022858, + "pricePerUnit": 479545, + "totalCost": 109.61, + "fee": 0.38499316, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-25T06:00:04" + }, + { + "id": "egjkdnjlg2h0huvrx5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-25T10:00:03", + "amountCrypto": 0.00022822, + "pricePerUnit": 480296, + "totalCost": 109.61, + "fee": 0.3849888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-25T10:00:03" + }, + { + "id": "ohv9bf2q77h4jb1vc8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-10-25T14:00:03", + "amountCrypto": 0.00022862, + "pricePerUnit": 479456, + "totalCost": 109.61, + "fee": 0.38498907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-10-25T14:00:03" + }, + { + "id": "s88cgnlzbgq14wx0u7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-09T01:00:03", + "amountCrypto": 0.00024243, + "pricePerUnit": 452145, + "totalCost": 109.61, + "fee": 0.38499006, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1723", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-09T01:00:03" + }, + { + "id": "0evs7ijug1liy4f5me", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-09T05:00:04", + "amountCrypto": 0.00024645, + "pricePerUnit": 444776, + "totalCost": 109.62, + "fee": 0.38499544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1724", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-09T05:00:04" + }, + { + "id": "zwoma2i8ljrifnyy9f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-09T09:00:04", + "amountCrypto": 0.00024658, + "pricePerUnit": 444536, + "totalCost": 109.61, + "fee": 0.38499067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1725", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-09T09:00:04" + }, + { + "id": "ve3uc54fwgd7wbu8wp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-09T13:00:03", + "amountCrypto": 0.00024939, + "pricePerUnit": 439528, + "totalCost": 109.61, + "fee": 0.38499138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1726", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-09T13:00:03" + }, + { + "id": "8z1qvoj4g6cu2xkn9z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-09T17:00:04", + "amountCrypto": 0.00026241, + "pricePerUnit": 417729, + "totalCost": 109.62, + "fee": 0.38499973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1727", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-09T17:00:04" + }, + { + "id": "wnfah69mzhl2kal8f0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-09T21:00:04", + "amountCrypto": 0.00026295, + "pricePerUnit": 416871, + "totalCost": 109.62, + "fee": 0.3849996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1728", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-09T21:00:04" + }, + { + "id": "oxinrh5mgy8t3jjrvq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-10T01:00:03", + "amountCrypto": 0.00026284, + "pricePerUnit": 417031, + "totalCost": 109.61, + "fee": 0.38498625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1729", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-10T01:00:03" + }, + { + "id": "l9bpuntgfkxwtyylbz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-10T05:00:04", + "amountCrypto": 0.00026501, + "pricePerUnit": 413624, + "totalCost": 109.61, + "fee": 0.38499351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1730", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-10T05:00:04" + }, + { + "id": "le5i98z0pz3w4wnayw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-10T09:00:04", + "amountCrypto": 0.00024815, + "pricePerUnit": 441726, + "totalCost": 109.61, + "fee": 0.38499285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1731", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-10T09:00:04" + }, + { + "id": "m3oagqosm5gixjijc9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-10T13:00:03", + "amountCrypto": 0.00025509, + "pricePerUnit": 429711, + "totalCost": 109.61, + "fee": 0.38499483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1732", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-10T13:00:03" + }, + { + "id": "955dq71ozzh45zra01", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-10T17:00:06", + "amountCrypto": 0.00025525, + "pricePerUnit": 429433, + "totalCost": 109.61, + "fee": 0.38498746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1733", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-10T17:00:06" + }, + { + "id": "dh52tp5qzzl08vrfi6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-10T21:00:03", + "amountCrypto": 0.00025435, + "pricePerUnit": 430965, + "totalCost": 109.62, + "fee": 0.38499861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1734", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-10T21:00:03" + }, + { + "id": "mmx9rwna61hvs61zly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-11T01:00:03", + "amountCrypto": 0.00025784, + "pricePerUnit": 425123, + "totalCost": 109.61, + "fee": 0.38499077, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1735", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-11T01:00:03" + }, + { + "id": "qapa6xgnf5w8bj7ddy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-11T05:00:04", + "amountCrypto": 0.00026734, + "pricePerUnit": 410023, + "totalCost": 109.62, + "fee": 0.38499763, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1736", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-11T05:00:04" + }, + { + "id": "pb1dgpe5d9r6bln0um", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-11T09:00:04", + "amountCrypto": 0.00025939, + "pricePerUnit": 422586, + "totalCost": 109.61, + "fee": 0.38499382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1737", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-11T09:00:04" + }, + { + "id": "gpudzpy6961tfmpa98", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-11T13:00:03", + "amountCrypto": 0.00026251, + "pricePerUnit": 417562, + "totalCost": 109.61, + "fee": 0.38499248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1738", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-11T13:00:03" + }, + { + "id": "wda2v4n18i7b1j8hed", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-11T17:00:04", + "amountCrypto": 0.00027266, + "pricePerUnit": 402023, + "totalCost": 109.62, + "fee": 0.38499736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1739", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-11T17:00:04" + }, + { + "id": "76zlpu4an9fspv7a8m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-11T21:00:05", + "amountCrypto": 0.00027429, + "pricePerUnit": 399625, + "totalCost": 109.61, + "fee": 0.38498876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1740", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-11T21:00:05" + }, + { + "id": "ta8lup8n2gkvot5kdu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-12T01:00:04", + "amountCrypto": 0.00027253, + "pricePerUnit": 402203, + "totalCost": 109.61, + "fee": 0.38498609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1741", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-12T01:00:04" + }, + { + "id": "rxjyyb0ivdmt7l306n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-12T05:00:03", + "amountCrypto": 0.0002751, + "pricePerUnit": 398447, + "totalCost": 109.61, + "fee": 0.38498745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1742", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-12T05:00:03" + }, + { + "id": "yfzssw4c18a3u4198r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-12T09:00:04", + "amountCrypto": 0.00027574, + "pricePerUnit": 397529, + "totalCost": 109.61, + "fee": 0.38499404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1743", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-12T09:00:04" + }, + { + "id": "wsciohydsr6jfj2v7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-12T13:00:04", + "amountCrypto": 0.00027454, + "pricePerUnit": 399263, + "totalCost": 109.61, + "fee": 0.38499059, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1744", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-12T13:00:04" + }, + { + "id": "ea375u63zt41dhsfj5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-12T17:00:04", + "amountCrypto": 0.00027494, + "pricePerUnit": 398686, + "totalCost": 109.61, + "fee": 0.38499433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1745", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-12T17:00:04" + }, + { + "id": "g1yiphmtuachhyv21j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-12T21:00:03", + "amountCrypto": 0.00027563, + "pricePerUnit": 397683, + "totalCost": 109.61, + "fee": 0.38498954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1746", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-12T21:00:03" + }, + { + "id": "qqm1cciij0iowgmlg5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-13T01:00:05", + "amountCrypto": 0.00027748, + "pricePerUnit": 395037, + "totalCost": 109.61, + "fee": 0.38499482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1747", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-13T01:00:05" + }, + { + "id": "0dyx47pyjf0brstufu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-13T05:00:03", + "amountCrypto": 0.00027546, + "pricePerUnit": 397927, + "totalCost": 109.61, + "fee": 0.38498816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1748", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-13T05:00:03" + }, + { + "id": "7e1ke83j3vg3e9a5ov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-13T09:00:03", + "amountCrypto": 0.00027782, + "pricePerUnit": 394556, + "totalCost": 109.62, + "fee": 0.38499721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1749", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-13T09:00:03" + }, + { + "id": "29ef60r1xao6qyx6gc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-13T13:00:04", + "amountCrypto": 0.00027943, + "pricePerUnit": 392282, + "totalCost": 109.62, + "fee": 0.38499655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1750", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-13T13:00:04" + }, + { + "id": "qb602zntpuxjjbipzt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-13T17:00:04", + "amountCrypto": 0.00028102, + "pricePerUnit": 390056, + "totalCost": 109.61, + "fee": 0.38499015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1751", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-13T17:00:04" + }, + { + "id": "sy9umv1fzleojkpa9k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-13T21:00:04", + "amountCrypto": 0.00028185, + "pricePerUnit": 388917, + "totalCost": 109.62, + "fee": 0.3849997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1752", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-13T21:00:04" + }, + { + "id": "xjnm1tzusorbpbfwzo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-14T01:00:05", + "amountCrypto": 0.00028476, + "pricePerUnit": 384940, + "totalCost": 109.62, + "fee": 0.38499709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1753", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-14T01:00:05" + }, + { + "id": "nvztc1jfvbcxorwsox", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-14T05:00:03", + "amountCrypto": 0.00028681, + "pricePerUnit": 382187, + "totalCost": 109.62, + "fee": 0.38499547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1754", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-14T05:00:03" + }, + { + "id": "m8mye1b5csawxm5340", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-14T09:00:04", + "amountCrypto": 0.00027626, + "pricePerUnit": 396779, + "totalCost": 109.61, + "fee": 0.38499236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1755", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-14T09:00:04" + }, + { + "id": "bkyrv7jul0hqnguec5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-14T13:00:04", + "amountCrypto": 0.00027581, + "pricePerUnit": 397431, + "totalCost": 109.62, + "fee": 0.38499684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1756", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-14T13:00:04" + }, + { + "id": "rva133msd06wkeeik2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-14T17:00:05", + "amountCrypto": 0.00027999, + "pricePerUnit": 391500, + "totalCost": 109.62, + "fee": 0.38499909, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1757", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-14T17:00:05" + }, + { + "id": "2aiut9o5o8gwimaf38", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-14T21:00:04", + "amountCrypto": 0.00028637, + "pricePerUnit": 382772, + "totalCost": 109.61, + "fee": 0.38499324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1758", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-14T21:00:04" + }, + { + "id": "h8xz2wmiluiamczgas", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-15T01:00:37", + "amountCrypto": 0.00027914, + "pricePerUnit": 392692, + "totalCost": 109.62, + "fee": 0.38499895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1759", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-15T01:00:37" + }, + { + "id": "rh4j1msod1b9pv6xzn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-15T05:00:04", + "amountCrypto": 0.00027545, + "pricePerUnit": 397947, + "totalCost": 109.61, + "fee": 0.38499353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1760", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-15T05:00:04" + }, + { + "id": "yflcvmhg7lvtz9fw53", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-15T09:00:11", + "amountCrypto": 0.00027735, + "pricePerUnit": 395218, + "totalCost": 109.61, + "fee": 0.38499076, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1761", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-15T09:00:11" + }, + { + "id": "v6x43auumntwtu64y9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-15T13:00:04", + "amountCrypto": 0.0002797, + "pricePerUnit": 391903, + "totalCost": 109.62, + "fee": 0.38499623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1762", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-15T13:00:04" + }, + { + "id": "i5y5eqol0q02vric89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-15T17:00:05", + "amountCrypto": 0.00027525, + "pricePerUnit": 398234, + "totalCost": 109.61, + "fee": 0.38499145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1763", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-15T17:00:05" + }, + { + "id": "gkmv4hyvpj2wd5absw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-15T21:00:04", + "amountCrypto": 0.0002762, + "pricePerUnit": 396859, + "totalCost": 109.61, + "fee": 0.38498635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1764", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-15T21:00:04" + }, + { + "id": "u59ox4io92jt85y6yl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-16T01:00:03", + "amountCrypto": 0.00027577, + "pricePerUnit": 397490, + "totalCost": 109.62, + "fee": 0.38499815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1765", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-16T01:00:03" + }, + { + "id": "2dvhlarkl2eqxbye9n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-16T05:00:03", + "amountCrypto": 0.00027472, + "pricePerUnit": 399008, + "totalCost": 109.62, + "fee": 0.38499696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1766", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-16T05:00:03" + }, + { + "id": "jdluhnivnwdmw5tek8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-16T09:00:04", + "amountCrypto": 0.0002773, + "pricePerUnit": 395290, + "totalCost": 109.61, + "fee": 0.38499148, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1767", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-16T09:00:04" + }, + { + "id": "007imj7euh5yxpnl0s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-16T13:00:03", + "amountCrypto": 0.00027988, + "pricePerUnit": 391642, + "totalCost": 109.61, + "fee": 0.38498743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1768", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-16T13:00:03" + }, + { + "id": "c5rojhaaoglerzupsv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-16T17:00:04", + "amountCrypto": 0.00028388, + "pricePerUnit": 386128, + "totalCost": 109.61, + "fee": 0.38499183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-16T17:00:04" + }, + { + "id": "9h7drpe3b5nj93q95m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-16T21:00:04", + "amountCrypto": 0.00028119, + "pricePerUnit": 389826, + "totalCost": 109.62, + "fee": 0.38499589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-16T21:00:04" + }, + { + "id": "zjog7rmcrx3ds4cld4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-17T01:00:03", + "amountCrypto": 0.00027931, + "pricePerUnit": 392446, + "totalCost": 109.61, + "fee": 0.3849921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-17T01:00:03" + }, + { + "id": "ck9xkebdqkmcttli5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-17T05:00:03", + "amountCrypto": 0.00028098, + "pricePerUnit": 390120, + "totalCost": 109.62, + "fee": 0.38499851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-17T05:00:03" + }, + { + "id": "1hv43017fj67drcaho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-17T09:00:04", + "amountCrypto": 0.0002802, + "pricePerUnit": 391198, + "totalCost": 109.61, + "fee": 0.38499065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-17T09:00:04" + }, + { + "id": "mmlepgglvtd9axr6v0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-17T13:00:05", + "amountCrypto": 0.00027982, + "pricePerUnit": 391737, + "totalCost": 109.62, + "fee": 0.38499826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-17T13:00:05" + }, + { + "id": "9pszbc7xa1npo02l5i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-17T17:00:04", + "amountCrypto": 0.00027989, + "pricePerUnit": 391638, + "totalCost": 109.62, + "fee": 0.38499725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-17T17:00:04" + }, + { + "id": "0kiq0fvkudciqoin9u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-17T21:00:06", + "amountCrypto": 0.00027927, + "pricePerUnit": 392497, + "totalCost": 109.61, + "fee": 0.38498698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-17T21:00:06" + }, + { + "id": "v372z6ozi1gne71sa4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-18T01:00:05", + "amountCrypto": 0.0002781, + "pricePerUnit": 394160, + "totalCost": 109.62, + "fee": 0.38499843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-18T01:00:05" + }, + { + "id": "l8myb1qkkgj7yjv53v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-18T05:00:04", + "amountCrypto": 0.00027585, + "pricePerUnit": 397370, + "totalCost": 109.61, + "fee": 0.38499358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-18T05:00:04" + }, + { + "id": "wak0f3f9gopmwfhsql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-18T09:00:03", + "amountCrypto": 0.00027756, + "pricePerUnit": 394926, + "totalCost": 109.62, + "fee": 0.3849976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-18T09:00:03" + }, + { + "id": "fl36d60h7ih16yhmxy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-18T13:00:06", + "amountCrypto": 0.00027838, + "pricePerUnit": 393753, + "totalCost": 109.61, + "fee": 0.38498812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-18T13:00:06" + }, + { + "id": "b1gl84yez50tbla8nj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-18T17:00:04", + "amountCrypto": 0.00027857, + "pricePerUnit": 393494, + "totalCost": 109.62, + "fee": 0.38499747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-18T17:00:04" + }, + { + "id": "87jscac73y6d9r4htu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-18T21:00:04", + "amountCrypto": 0.00027925, + "pricePerUnit": 392532, + "totalCost": 109.61, + "fee": 0.38499374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-18T21:00:04" + }, + { + "id": "yvbj8gvpzqve3kwy4x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-19T01:00:04", + "amountCrypto": 0.00027845, + "pricePerUnit": 393666, + "totalCost": 109.62, + "fee": 0.38499984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-19T01:00:04" + }, + { + "id": "rp2ium1gt0d6qgn9bw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-19T05:00:03", + "amountCrypto": 0.00027878, + "pricePerUnit": 393188, + "totalCost": 109.61, + "fee": 0.38498809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-19T05:00:03" + }, + { + "id": "wbv0m3rzc8wv7mwgcz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-19T09:00:36", + "amountCrypto": 0.00027916, + "pricePerUnit": 392662, + "totalCost": 109.62, + "fee": 0.38499712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-19T09:00:36" + }, + { + "id": "22wqijknfo5sjtycwv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-19T13:00:07", + "amountCrypto": 0.00027838, + "pricePerUnit": 393754, + "totalCost": 109.61, + "fee": 0.3849891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-19T13:00:07" + }, + { + "id": "kwtahlj75e2tmmonci", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-19T17:00:04", + "amountCrypto": 0.00027814, + "pricePerUnit": 394104, + "totalCost": 109.62, + "fee": 0.3849991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-19T17:00:04" + }, + { + "id": "2pt6k3nnivhg94jyqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-19T21:00:03", + "amountCrypto": 0.00027955, + "pricePerUnit": 392104, + "totalCost": 109.61, + "fee": 0.38498711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-19T21:00:03" + }, + { + "id": "0q3c6sbeep5bzsinz6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-20T01:00:04", + "amountCrypto": 0.00027791, + "pricePerUnit": 394429, + "totalCost": 109.62, + "fee": 0.38499796, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-20T01:00:04" + }, + { + "id": "z3r1m9mrxkx33xkl1u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-20T05:00:03", + "amountCrypto": 0.00027825, + "pricePerUnit": 393936, + "totalCost": 109.61, + "fee": 0.38498718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-20T05:00:03" + }, + { + "id": "6h9l4af0wqlgym1hc7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-20T09:00:03", + "amountCrypto": 0.00027776, + "pricePerUnit": 394634, + "totalCost": 109.61, + "fee": 0.38499016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-20T09:00:03" + }, + { + "id": "x7xoyvxqxhmx33b0mi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-20T13:00:03", + "amountCrypto": 0.00028071, + "pricePerUnit": 390483, + "totalCost": 109.61, + "fee": 0.38498644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1792", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-20T13:00:03" + }, + { + "id": "06jdaylq7irpj8cmd3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-20T17:00:03", + "amountCrypto": 0.00027978, + "pricePerUnit": 391792, + "totalCost": 109.62, + "fee": 0.38499727, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1793", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-20T17:00:03" + }, + { + "id": "4pv4a4b9vj7upujb7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-20T21:00:04", + "amountCrypto": 0.00028001, + "pricePerUnit": 391464, + "totalCost": 109.61, + "fee": 0.38499119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1794", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-20T21:00:04" + }, + { + "id": "3tc8nuj2d3v01q3amg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-21T01:00:04", + "amountCrypto": 0.000285, + "pricePerUnit": 384615, + "totalCost": 109.62, + "fee": 0.38499625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1795", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-21T01:00:04" + }, + { + "id": "ok0sc8clxgvlz2nfmb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-21T05:00:03", + "amountCrypto": 0.00028823, + "pricePerUnit": 380307, + "totalCost": 109.62, + "fee": 0.3849984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1796", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-21T05:00:03" + }, + { + "id": "rie31mrm6g3ul6r8bb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-21T09:00:03", + "amountCrypto": 0.00028865, + "pricePerUnit": 379743, + "totalCost": 109.61, + "fee": 0.38498762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-21T09:00:03" + }, + { + "id": "lk6ro6lf9yrx2s4781", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-21T13:00:04", + "amountCrypto": 0.00028633, + "pricePerUnit": 382827, + "totalCost": 109.61, + "fee": 0.38499477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-21T13:00:04" + }, + { + "id": "v08t7yoqntjsffkb0x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-21T17:00:04", + "amountCrypto": 0.00028525, + "pricePerUnit": 384270, + "totalCost": 109.61, + "fee": 0.38498832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-21T17:00:04" + }, + { + "id": "gjm4f47vxvfg9nkrms", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-21T21:00:03", + "amountCrypto": 0.00029216, + "pricePerUnit": 375183, + "totalCost": 109.61, + "fee": 0.38498989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-21T21:00:03" + }, + { + "id": "euygfwsh81fkc4z3iu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-22T01:00:04", + "amountCrypto": 0.00029136, + "pricePerUnit": 376211, + "totalCost": 109.61, + "fee": 0.38498769, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-22T01:00:04" + }, + { + "id": "2k9f3u5wter7plfs75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-22T05:00:04", + "amountCrypto": 0.00029067, + "pricePerUnit": 377116, + "totalCost": 109.62, + "fee": 0.38499988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-22T05:00:04" + }, + { + "id": "jn5pztovu8z7da3m72", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-22T09:00:40", + "amountCrypto": 0.00029239, + "pricePerUnit": 374897, + "totalCost": 109.62, + "fee": 0.38499927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-22T09:00:40" + }, + { + "id": "fikrk89ntz8p7jjdos", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-22T13:00:05", + "amountCrypto": 0.0002931, + "pricePerUnit": 373985, + "totalCost": 109.62, + "fee": 0.3849953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-22T13:00:05" + }, + { + "id": "8gwxbhwygw1b6s72xg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-22T17:00:03", + "amountCrypto": 0.00028443, + "pricePerUnit": 385388, + "totalCost": 109.62, + "fee": 0.38499848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-22T17:00:03" + }, + { + "id": "qybr7659or62cqi9fn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-22T21:00:04", + "amountCrypto": 0.00028581, + "pricePerUnit": 383517, + "totalCost": 109.61, + "fee": 0.38498824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-22T21:00:04" + }, + { + "id": "5v869qdbcoo7tmv5si", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-23T01:00:04", + "amountCrypto": 0.00028529, + "pricePerUnit": 384220, + "totalCost": 109.61, + "fee": 0.38499221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-23T01:00:04" + }, + { + "id": "gslx75oj3ktcspdy9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-23T05:00:04", + "amountCrypto": 0.00028001, + "pricePerUnit": 391465, + "totalCost": 109.61, + "fee": 0.38499217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-23T05:00:04" + }, + { + "id": "ytdc6frm094vn7y26n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-23T09:00:03", + "amountCrypto": 0.00028018, + "pricePerUnit": 391226, + "totalCost": 109.61, + "fee": 0.38499072, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-23T09:00:03" + }, + { + "id": "65ze4y6ud4oskqo8l6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-23T13:00:05", + "amountCrypto": 0.00027945, + "pricePerUnit": 392244, + "totalCost": 109.61, + "fee": 0.3849868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-23T13:00:05" + }, + { + "id": "856wgb6xcu4dea0cu8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-23T17:00:03", + "amountCrypto": 0.00028377, + "pricePerUnit": 386279, + "totalCost": 109.61, + "fee": 0.38499315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-23T17:00:03" + }, + { + "id": "zzgdbm7sjtu4p29oyz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-23T21:00:03", + "amountCrypto": 0.00028276, + "pricePerUnit": 387658, + "totalCost": 109.61, + "fee": 0.38499239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-23T21:00:03" + }, + { + "id": "lm49n4478479g0a0th", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-24T01:00:15", + "amountCrypto": 0.00028104, + "pricePerUnit": 390035, + "totalCost": 109.62, + "fee": 0.38499682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-24T01:00:15" + }, + { + "id": "58pdilbx8jwxyo0klq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-24T05:00:04", + "amountCrypto": 0.00028001, + "pricePerUnit": 391466, + "totalCost": 109.61, + "fee": 0.38499316, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-24T05:00:04" + }, + { + "id": "otrodm46kxfd7ngjpx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-24T09:00:03", + "amountCrypto": 0.00028106, + "pricePerUnit": 390010, + "totalCost": 109.62, + "fee": 0.38499954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-24T09:00:03" + }, + { + "id": "flz38ger48mdyrigjl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-24T13:00:04", + "amountCrypto": 0.00028163, + "pricePerUnit": 389214, + "totalCost": 109.61, + "fee": 0.38499296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-24T13:00:04" + }, + { + "id": "lols3mo1ukjrk3a9ec", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-24T17:00:04", + "amountCrypto": 0.00028172, + "pricePerUnit": 389092, + "totalCost": 109.61, + "fee": 0.38499528, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-24T17:00:04" + }, + { + "id": "93f0ouuj47ishs88vy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-24T21:00:04", + "amountCrypto": 0.00028138, + "pricePerUnit": 389557, + "totalCost": 109.61, + "fee": 0.38499019, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-24T21:00:04" + }, + { + "id": "frqmkjwk74n5j02wpl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-25T01:00:03", + "amountCrypto": 0.00028062, + "pricePerUnit": 390612, + "totalCost": 109.61, + "fee": 0.38499015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-25T01:00:03" + }, + { + "id": "m62dokjdi0fzu1w1bl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-25T05:00:03", + "amountCrypto": 0.00028277, + "pricePerUnit": 387647, + "totalCost": 109.61, + "fee": 0.38499508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-25T05:00:03" + }, + { + "id": "dtgz7o21z71uep10qx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-25T09:00:04", + "amountCrypto": 0.00028315, + "pricePerUnit": 387131, + "totalCost": 109.62, + "fee": 0.3849993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-25T09:00:04" + }, + { + "id": "uvj5fu56b6t8kpb22d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-25T13:00:03", + "amountCrypto": 0.00028254, + "pricePerUnit": 387966, + "totalCost": 109.62, + "fee": 0.38499849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-25T13:00:03" + }, + { + "id": "h3xcdtobf9s8aia9so", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-25T17:00:03", + "amountCrypto": 0.00028244, + "pricePerUnit": 388100, + "totalCost": 109.61, + "fee": 0.38499516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-25T17:00:03" + }, + { + "id": "znhkzecjxxdjmgawtn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-25T21:00:03", + "amountCrypto": 0.0002831, + "pricePerUnit": 387192, + "totalCost": 109.61, + "fee": 0.38499197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-25T21:00:03" + }, + { + "id": "os09pzrjjks71fbv9n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-26T01:00:36", + "amountCrypto": 0.00028256, + "pricePerUnit": 387940, + "totalCost": 109.62, + "fee": 0.38499994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-26T01:00:36" + }, + { + "id": "cugx62kjpzoezhatt3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-26T05:00:04", + "amountCrypto": 0.00028084, + "pricePerUnit": 390310, + "totalCost": 109.61, + "fee": 0.38499409, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-26T05:00:04" + }, + { + "id": "cpuve8koobu5o4geu5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-26T09:00:04", + "amountCrypto": 0.00028122, + "pricePerUnit": 389775, + "totalCost": 109.61, + "fee": 0.38498659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-26T09:00:04" + }, + { + "id": "ju36gopcjcylfzx5c0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-26T13:00:03", + "amountCrypto": 0.00028162, + "pricePerUnit": 389230, + "totalCost": 109.61, + "fee": 0.38499512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-26T13:00:03" + }, + { + "id": "gu674fpqk4ompv5hjy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-26T17:00:03", + "amountCrypto": 0.00028234, + "pricePerUnit": 388234, + "totalCost": 109.61, + "fee": 0.38499173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-26T17:00:03" + }, + { + "id": "oz0snsgkulh2jwcz3u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-26T21:00:04", + "amountCrypto": 0.00028297, + "pricePerUnit": 387375, + "totalCost": 109.62, + "fee": 0.38499705, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-26T21:00:04" + }, + { + "id": "v0r4mzudqy9q6dpw0a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-27T01:00:03", + "amountCrypto": 0.00028318, + "pricePerUnit": 387084, + "totalCost": 109.61, + "fee": 0.38499334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-27T01:00:03" + }, + { + "id": "t0i4ow1xq4wllu8u2e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-27T05:00:03", + "amountCrypto": 0.00028225, + "pricePerUnit": 388354, + "totalCost": 109.61, + "fee": 0.38498797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-27T05:00:03" + }, + { + "id": "kkt2kk51z1srqfcv4x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-27T09:00:05", + "amountCrypto": 0.00028127, + "pricePerUnit": 389715, + "totalCost": 109.62, + "fee": 0.38499577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-27T09:00:05" + }, + { + "id": "xo6egp3g154u7o6gvj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-27T13:00:35", + "amountCrypto": 0.00028175, + "pricePerUnit": 389054, + "totalCost": 109.62, + "fee": 0.38499867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-27T13:00:35" + }, + { + "id": "q7b3sk99rjbentw83g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-27T17:00:35", + "amountCrypto": 0.00028162, + "pricePerUnit": 389225, + "totalCost": 109.61, + "fee": 0.38499017, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-27T17:00:35" + }, + { + "id": "jlqityaiobwux5gljg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-27T21:00:03", + "amountCrypto": 0.0002822, + "pricePerUnit": 388423, + "totalCost": 109.61, + "fee": 0.38498816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-27T21:00:03" + }, + { + "id": "g781sm24djo5q022u2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-28T01:00:03", + "amountCrypto": 0.00028288, + "pricePerUnit": 387497, + "totalCost": 109.62, + "fee": 0.38499582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-28T01:00:03" + }, + { + "id": "rxczp81x2otod50uvw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-28T05:00:03", + "amountCrypto": 0.00028697, + "pricePerUnit": 381970, + "totalCost": 109.61, + "fee": 0.38499153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-28T05:00:03" + }, + { + "id": "7ws2lhjihfxyekfx4w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-28T09:00:03", + "amountCrypto": 0.00028695, + "pricePerUnit": 381992, + "totalCost": 109.61, + "fee": 0.38498687, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-28T09:00:03" + }, + { + "id": "rgvd5ewtxiagiwadqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-28T13:00:05", + "amountCrypto": 0.00028986, + "pricePerUnit": 378169, + "totalCost": 109.62, + "fee": 0.38499903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-28T13:00:05" + }, + { + "id": "85pw5ut6w5cl49dysu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-28T17:00:03", + "amountCrypto": 0.00028882, + "pricePerUnit": 379523, + "totalCost": 109.61, + "fee": 0.38499118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-28T17:00:03" + }, + { + "id": "o3elnz5xnk2v4huta5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-28T21:00:03", + "amountCrypto": 0.00028705, + "pricePerUnit": 381870, + "totalCost": 109.62, + "fee": 0.38499804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-28T21:00:03" + }, + { + "id": "xb3hoc8im0dy60bjv6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-29T01:00:04", + "amountCrypto": 0.0002865, + "pricePerUnit": 382592, + "totalCost": 109.61, + "fee": 0.38498688, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-29T01:00:04" + }, + { + "id": "t59ez9zndkvy8uyiiy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-29T05:00:03", + "amountCrypto": 0.00028606, + "pricePerUnit": 383184, + "totalCost": 109.61, + "fee": 0.38499042, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-29T05:00:03" + }, + { + "id": "t3dwbwhetxea6le88g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-29T09:00:03", + "amountCrypto": 0.00028361, + "pricePerUnit": 386500, + "totalCost": 109.62, + "fee": 0.38499621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-29T09:00:03" + }, + { + "id": "3tgt7o54va4xddz5fv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-29T13:00:04", + "amountCrypto": 0.00028255, + "pricePerUnit": 387944, + "totalCost": 109.61, + "fee": 0.38499029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-29T13:00:04" + }, + { + "id": "fy7n0q1df8bodq0xl9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-29T17:00:03", + "amountCrypto": 0.00028392, + "pricePerUnit": 386078, + "totalCost": 109.62, + "fee": 0.38499622, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-29T17:00:03" + }, + { + "id": "f9m4xy7q8tit610vo0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-29T21:00:03", + "amountCrypto": 0.00028241, + "pricePerUnit": 388135, + "totalCost": 109.61, + "fee": 0.38498898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-29T21:00:03" + }, + { + "id": "7ey8sevc18w3yv54ag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-30T01:00:06", + "amountCrypto": 0.00028199, + "pricePerUnit": 388713, + "totalCost": 109.61, + "fee": 0.38498889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-30T01:00:06" + }, + { + "id": "dviayy6d10vqroviph", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-30T05:00:04", + "amountCrypto": 0.00027561, + "pricePerUnit": 397711, + "totalCost": 109.61, + "fee": 0.38498871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-30T05:00:04" + }, + { + "id": "2omqhhx7qvs80jz0pw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-30T09:00:03", + "amountCrypto": 0.00027509, + "pricePerUnit": 398469, + "totalCost": 109.61, + "fee": 0.38499471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-30T09:00:03" + }, + { + "id": "01ftyqsqisvbk8g0eq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-30T13:00:03", + "amountCrypto": 0.00027537, + "pricePerUnit": 398059, + "totalCost": 109.61, + "fee": 0.38499004, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-30T13:00:03" + }, + { + "id": "26d4t78qj04w7unlu0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-30T17:00:06", + "amountCrypto": 0.0002751, + "pricePerUnit": 398459, + "totalCost": 109.62, + "fee": 0.38499904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-30T17:00:06" + }, + { + "id": "idn1f2omagt3b512wp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-11-30T21:00:03", + "amountCrypto": 0.00027406, + "pricePerUnit": 399958, + "totalCost": 109.61, + "fee": 0.38498647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-11-30T21:00:03" + }, + { + "id": "39nkx5ihxlt7j279dg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-01T01:00:03", + "amountCrypto": 0.0002727, + "pricePerUnit": 401961, + "totalCost": 109.61, + "fee": 0.38499446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-01T01:00:03" + }, + { + "id": "o3908q4v8upyeknvrc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-01T05:00:35", + "amountCrypto": 0.00027345, + "pricePerUnit": 400860, + "totalCost": 109.62, + "fee": 0.38499587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-01T05:00:35" + }, + { + "id": "s17s5iynr6tr2i5ez2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-01T09:00:05", + "amountCrypto": 0.00027339, + "pricePerUnit": 400940, + "totalCost": 109.61, + "fee": 0.38498821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-01T09:00:05" + }, + { + "id": "p4sp4b69x5aeiqqe9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-01T13:00:38", + "amountCrypto": 0.00027404, + "pricePerUnit": 400000, + "totalCost": 109.62, + "fee": 0.3849988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-01T13:00:38" + }, + { + "id": "tgs2rueqcrrlhz2fqb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-01T21:00:03", + "amountCrypto": 0.00027824, + "pricePerUnit": 393959, + "totalCost": 109.62, + "fee": 0.38499582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1860", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-01T21:00:03" + }, + { + "id": "qplzqyynkfrpp3yznp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-02T01:00:09", + "amountCrypto": 0.00027807, + "pricePerUnit": 394194, + "totalCost": 109.61, + "fee": 0.38499011, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1861", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-02T01:00:09" + }, + { + "id": "b4yw77s3msj9bygjqv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-02T05:00:11", + "amountCrypto": 0.00027904, + "pricePerUnit": 392821, + "totalCost": 109.61, + "fee": 0.38498746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1862", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-02T05:00:11" + }, + { + "id": "zerebh7lolyqxnvb5w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-02T09:00:07", + "amountCrypto": 0.00027808, + "pricePerUnit": 394178, + "totalCost": 109.61, + "fee": 0.38498832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1863", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-02T09:00:07" + }, + { + "id": "dyxcbm6jp1cu2mvvdi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-02T13:00:09", + "amountCrypto": 0.00027861, + "pricePerUnit": 393434, + "totalCost": 109.61, + "fee": 0.38499404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-02T13:00:09" + }, + { + "id": "9kfh5s1i048kz97ml4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-02T17:00:08", + "amountCrypto": 0.00027773, + "pricePerUnit": 394675, + "totalCost": 109.61, + "fee": 0.38498857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-02T17:00:08" + }, + { + "id": "iph1rsjof3uqpz5pyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-02T21:00:17", + "amountCrypto": 0.00027811, + "pricePerUnit": 394143, + "totalCost": 109.62, + "fee": 0.38499567, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-02T21:00:17" + }, + { + "id": "7jioznt2qlyfl16i3i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-03T01:00:43", + "amountCrypto": 0.00027677, + "pricePerUnit": 396056, + "totalCost": 109.62, + "fee": 0.3849999, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-03T01:00:43" + }, + { + "id": "a1omorfwsqyljyslfe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-03T05:01:38", + "amountCrypto": 0.00027767, + "pricePerUnit": 394760, + "totalCost": 109.61, + "fee": 0.38498829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-03T05:01:38" + }, + { + "id": "y0t479zv3h4gaoib18", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-03T09:00:12", + "amountCrypto": 0.00027858, + "pricePerUnit": 393470, + "totalCost": 109.61, + "fee": 0.38498781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-03T09:00:12" + }, + { + "id": "vv1kvwh1sricjjwnxw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-03T13:00:07", + "amountCrypto": 0.00027895, + "pricePerUnit": 392957, + "totalCost": 109.62, + "fee": 0.38499653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-03T13:00:07" + }, + { + "id": "0djy1yrgwlst2swp2d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-03T17:00:46", + "amountCrypto": 0.00027857, + "pricePerUnit": 393496, + "totalCost": 109.62, + "fee": 0.38499898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-03T17:00:46" + }, + { + "id": "kxf296xsueyjpkwu8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-03T21:00:06", + "amountCrypto": 0.00027872, + "pricePerUnit": 393275, + "totalCost": 109.61, + "fee": 0.38499039, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-03T21:00:06" + }, + { + "id": "fwvsyw9k0b806k8ft3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-04T01:00:11", + "amountCrypto": 0.0002798, + "pricePerUnit": 391761, + "totalCost": 109.61, + "fee": 0.38499433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-04T01:00:11" + }, + { + "id": "jefk2s97jlso09ikk4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-04T05:01:45", + "amountCrypto": 0.00027824, + "pricePerUnit": 393955, + "totalCost": 109.61, + "fee": 0.38499191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-04T05:01:45" + }, + { + "id": "kf1nbukftt78km5osc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-04T09:00:40", + "amountCrypto": 0.000278, + "pricePerUnit": 394299, + "totalCost": 109.62, + "fee": 0.38499571, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-04T09:00:40" + }, + { + "id": "plyed8rrz7z3paipqn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-04T13:00:14", + "amountCrypto": 0.00027888, + "pricePerUnit": 393055, + "totalCost": 109.62, + "fee": 0.38499591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-04T13:00:14" + }, + { + "id": "y4775piplkryleeubt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-04T17:00:20", + "amountCrypto": 0.00027743, + "pricePerUnit": 395106, + "totalCost": 109.61, + "fee": 0.38499268, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-04T17:00:20" + }, + { + "id": "yysmrt0nozk41djj3c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-04T21:00:14", + "amountCrypto": 0.00027678, + "pricePerUnit": 396034, + "totalCost": 109.61, + "fee": 0.38499279, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-04T21:00:14" + }, + { + "id": "uqqnq3ub2ios2x90xo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-05T01:00:06", + "amountCrypto": 0.00027652, + "pricePerUnit": 396401, + "totalCost": 109.61, + "fee": 0.38498757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-05T01:00:06" + }, + { + "id": "t18qzgjoywsmyo0p7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-05T05:00:14", + "amountCrypto": 0.00027612, + "pricePerUnit": 396986, + "totalCost": 109.62, + "fee": 0.384998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-05T05:00:14" + }, + { + "id": "lxjc78dcwxq5nmmofr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-05T09:00:08", + "amountCrypto": 0.00027301, + "pricePerUnit": 401500, + "totalCost": 109.61, + "fee": 0.38499007, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-05T09:00:08" + }, + { + "id": "vmmcloag0y46u326lb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-05T13:00:05", + "amountCrypto": 0.00027405, + "pricePerUnit": 399983, + "totalCost": 109.62, + "fee": 0.38499648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-05T13:00:05" + }, + { + "id": "cqz051n26jzcx22dxu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-05T17:00:03", + "amountCrypto": 0.00027717, + "pricePerUnit": 395471, + "totalCost": 109.61, + "fee": 0.3849872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-05T17:00:03" + }, + { + "id": "sv80xhwhxctvdeopsj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-05T21:00:03", + "amountCrypto": 0.00027871, + "pricePerUnit": 393295, + "totalCost": 109.62, + "fee": 0.38499616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-05T21:00:03" + }, + { + "id": "pukgwsin5usaeyoftg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-06T01:00:04", + "amountCrypto": 0.0002781, + "pricePerUnit": 394160, + "totalCost": 109.62, + "fee": 0.38499843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-06T01:00:04" + }, + { + "id": "ddm8iao3qcz0ebxjtr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-06T05:00:04", + "amountCrypto": 0.00027748, + "pricePerUnit": 395040, + "totalCost": 109.62, + "fee": 0.3849979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-06T05:00:04" + }, + { + "id": "edb891xi6eml9uk2d8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-06T09:00:03", + "amountCrypto": 0.00027682, + "pricePerUnit": 395971, + "totalCost": 109.61, + "fee": 0.38498718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-06T09:00:03" + }, + { + "id": "w8rc8s3p45v99i2gat", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-06T13:00:03", + "amountCrypto": 0.0002783, + "pricePerUnit": 393870, + "totalCost": 109.61, + "fee": 0.38499185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-06T13:00:03" + }, + { + "id": "1ctc13g7m7lsg0f2b0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-06T17:00:04", + "amountCrypto": 0.00027815, + "pricePerUnit": 394081, + "totalCost": 109.61, + "fee": 0.38499047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-06T17:00:04" + }, + { + "id": "qbeagc3troy4bfynu2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-06T21:00:04", + "amountCrypto": 0.00027756, + "pricePerUnit": 394923, + "totalCost": 109.61, + "fee": 0.38499468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-06T21:00:04" + }, + { + "id": "1m3xlc76ewipmv49z1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-07T01:00:05", + "amountCrypto": 0.00027592, + "pricePerUnit": 397272, + "totalCost": 109.62, + "fee": 0.3849963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-07T01:00:05" + }, + { + "id": "g521t0lulxzlrb473t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-07T05:00:03", + "amountCrypto": 0.00027659, + "pricePerUnit": 396304, + "totalCost": 109.61, + "fee": 0.3849908, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-07T05:00:03" + }, + { + "id": "2zhg0wg7y3wgyr6q7k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-07T09:00:03", + "amountCrypto": 0.00027977, + "pricePerUnit": 391797, + "totalCost": 109.61, + "fee": 0.38498842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-07T09:00:03" + }, + { + "id": "6sultg2vrt7v0430jj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-07T13:00:03", + "amountCrypto": 0.00028057, + "pricePerUnit": 390687, + "totalCost": 109.62, + "fee": 0.38499546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-07T13:00:03" + }, + { + "id": "e0s12y88qz9ku4w3mp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-07T17:00:04", + "amountCrypto": 0.00028063, + "pricePerUnit": 390598, + "totalCost": 109.61, + "fee": 0.38499007, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-07T17:00:04" + }, + { + "id": "exsjxavrpzer1v5345", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-07T21:00:03", + "amountCrypto": 0.00028136, + "pricePerUnit": 389583, + "totalCost": 109.61, + "fee": 0.38498852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-07T21:00:03" + }, + { + "id": "ot98ovxkv303l3t87s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-08T01:00:04", + "amountCrypto": 0.00028136, + "pricePerUnit": 389583, + "totalCost": 109.61, + "fee": 0.38498852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-08T01:00:04" + }, + { + "id": "w18ydwrzu0xnwnx20b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-08T05:00:04", + "amountCrypto": 0.00028063, + "pricePerUnit": 390597, + "totalCost": 109.61, + "fee": 0.38498932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-08T05:00:04" + }, + { + "id": "kxzfwu029lmwj96az2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-08T09:00:38", + "amountCrypto": 0.00028124, + "pricePerUnit": 389757, + "totalCost": 109.62, + "fee": 0.38499619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-08T09:00:38" + }, + { + "id": "ysq85lmn68bwhs4ppb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-08T13:00:04", + "amountCrypto": 0.00028047, + "pricePerUnit": 390826, + "totalCost": 109.61, + "fee": 0.38499501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-08T13:00:04" + }, + { + "id": "6y1rty1t2uf6dxa6xn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-08T17:00:04", + "amountCrypto": 0.00028098, + "pricePerUnit": 390110, + "totalCost": 109.61, + "fee": 0.38498864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-08T17:00:04" + }, + { + "id": "zstb25ramntcqrs52d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-08T21:00:03", + "amountCrypto": 0.00027564, + "pricePerUnit": 397675, + "totalCost": 109.62, + "fee": 0.38499576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-08T21:00:03" + }, + { + "id": "uc3qw1zewgei3zphi1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-09T01:00:03", + "amountCrypto": 0.00027611, + "pricePerUnit": 397000, + "totalCost": 109.62, + "fee": 0.38499764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-09T01:00:03" + }, + { + "id": "69kyehenaaazfslyed", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-11T01:00:03", + "amountCrypto": 0.00027707, + "pricePerUnit": 395614, + "totalCost": 109.61, + "fee": 0.38498745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-11T01:00:03" + }, + { + "id": "ngtdzp78o3uelojyqb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-11T05:00:04", + "amountCrypto": 0.00027656, + "pricePerUnit": 396350, + "totalCost": 109.61, + "fee": 0.38499372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-11T05:00:04" + }, + { + "id": "ty1p1ez5vlanasls2c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-11T09:00:03", + "amountCrypto": 0.00027602, + "pricePerUnit": 397130, + "totalCost": 109.62, + "fee": 0.38499817, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-11T09:00:03" + }, + { + "id": "gv7mhkfy15kmpimkjc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-11T13:00:04", + "amountCrypto": 0.00027649, + "pricePerUnit": 396450, + "totalCost": 109.61, + "fee": 0.38499339, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-11T13:00:04" + }, + { + "id": "v016nmkdbw5e1opn8f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-11T17:00:04", + "amountCrypto": 0.00027649, + "pricePerUnit": 396450, + "totalCost": 109.61, + "fee": 0.38499339, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-11T17:00:04" + }, + { + "id": "lutqqyf8lctzq2dbw4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-11T21:00:35", + "amountCrypto": 0.00027612, + "pricePerUnit": 396977, + "totalCost": 109.61, + "fee": 0.38498928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-11T21:00:35" + }, + { + "id": "m8ua27untj0jqg41sn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-12T01:00:03", + "amountCrypto": 0.00027719, + "pricePerUnit": 395443, + "totalCost": 109.61, + "fee": 0.38498772, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-12T01:00:03" + }, + { + "id": "njkg3kl5p6hv4l4qct", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-12T05:00:04", + "amountCrypto": 0.00028038, + "pricePerUnit": 390955, + "totalCost": 109.62, + "fee": 0.38499867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-12T05:00:04" + }, + { + "id": "wd7vz68xz93zckikou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-12T09:00:05", + "amountCrypto": 0.00027958, + "pricePerUnit": 392069, + "totalCost": 109.61, + "fee": 0.38499406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-12T09:00:05" + }, + { + "id": "50zu53vjfee2bt0wgl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-12T13:00:04", + "amountCrypto": 0.00027989, + "pricePerUnit": 391627, + "totalCost": 109.61, + "fee": 0.38498644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-12T13:00:04" + }, + { + "id": "8f7a6qb62r6yjxbrzs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-12T17:00:05", + "amountCrypto": 0.00027876, + "pricePerUnit": 393226, + "totalCost": 109.62, + "fee": 0.38499767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-12T17:00:05" + }, + { + "id": "2ir0fc2nrwqpn0e6av", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-12T21:00:04", + "amountCrypto": 0.00027779, + "pricePerUnit": 394600, + "totalCost": 109.62, + "fee": 0.38499856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-12T21:00:04" + }, + { + "id": "ytw3apcuhpddschpkv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-13T01:00:36", + "amountCrypto": 0.00027542, + "pricePerUnit": 397986, + "totalCost": 109.61, + "fee": 0.38498933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-13T01:00:36" + }, + { + "id": "vozx2ajoravc50q575", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-13T05:00:04", + "amountCrypto": 0.00027627, + "pricePerUnit": 396766, + "totalCost": 109.61, + "fee": 0.38499368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-13T05:00:04" + }, + { + "id": "0kug8rgoqav1mgosve", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-13T09:00:03", + "amountCrypto": 0.00027644, + "pricePerUnit": 396516, + "totalCost": 109.61, + "fee": 0.38498785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-13T09:00:03" + }, + { + "id": "vfkpzffsm0v7xr2h2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-13T13:00:04", + "amountCrypto": 0.00027238, + "pricePerUnit": 402434, + "totalCost": 109.61, + "fee": 0.38499519, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-13T13:00:04" + }, + { + "id": "cilryop5gi3k2pz744", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-13T17:00:38", + "amountCrypto": 0.00026975, + "pricePerUnit": 406359, + "totalCost": 109.62, + "fee": 0.38499648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-13T17:00:38" + }, + { + "id": "9iktc1v48osbjml7o5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-13T21:00:04", + "amountCrypto": 0.00026995, + "pricePerUnit": 406050, + "totalCost": 109.61, + "fee": 0.38498895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-13T21:00:04" + }, + { + "id": "fzv306rt1zllbr5qfk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-14T01:00:04", + "amountCrypto": 0.00026928, + "pricePerUnit": 407068, + "totalCost": 109.62, + "fee": 0.38499624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-14T01:00:04" + }, + { + "id": "ti2jr1yhv05kr9vrvu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-14T05:00:36", + "amountCrypto": 0.00026928, + "pricePerUnit": 407068, + "totalCost": 109.62, + "fee": 0.38499624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-14T05:00:36" + }, + { + "id": "c54zukbagpjnye9wx4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-14T09:00:03", + "amountCrypto": 0.00026928, + "pricePerUnit": 407069, + "totalCost": 109.62, + "fee": 0.38499718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-14T09:00:03" + }, + { + "id": "jph2rkkyx4oqv15ovd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-14T13:00:04", + "amountCrypto": 0.00026921, + "pricePerUnit": 407173, + "totalCost": 109.62, + "fee": 0.38499544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-14T13:00:04" + }, + { + "id": "4pg1423ac028re23ac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-14T17:00:04", + "amountCrypto": 0.00026592, + "pricePerUnit": 412209, + "totalCost": 109.61, + "fee": 0.38499394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-14T17:00:04" + }, + { + "id": "adp7kgarvnol40ev4y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-14T21:00:03", + "amountCrypto": 0.00027015, + "pricePerUnit": 405753, + "totalCost": 109.61, + "fee": 0.38499238, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-14T21:00:03" + }, + { + "id": "0pz7nhw1fb540v7bmy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-15T01:00:03", + "amountCrypto": 0.0002703, + "pricePerUnit": 405526, + "totalCost": 109.61, + "fee": 0.38499064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-15T01:00:03" + }, + { + "id": "k5o89t9gbs238aah3d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-15T05:00:04", + "amountCrypto": 0.00027101, + "pricePerUnit": 404472, + "totalCost": 109.62, + "fee": 0.38499864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-15T05:00:04" + }, + { + "id": "x1tsr0ffxmbwgyn1gb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-15T09:00:07", + "amountCrypto": 0.00027072, + "pricePerUnit": 404896, + "totalCost": 109.61, + "fee": 0.38498982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-15T09:00:07" + }, + { + "id": "wiimm7qinkd31vl79r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-15T13:00:36", + "amountCrypto": 0.00027047, + "pricePerUnit": 405276, + "totalCost": 109.61, + "fee": 0.38499528, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-15T13:00:36" + }, + { + "id": "wecbu4lse7ptdjplfg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-15T17:00:04", + "amountCrypto": 0.00027566, + "pricePerUnit": 397648, + "totalCost": 109.62, + "fee": 0.38499756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-15T17:00:04" + }, + { + "id": "39z43oq4kje3lokdfx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-15T21:00:03", + "amountCrypto": 0.00027498, + "pricePerUnit": 398620, + "totalCost": 109.61, + "fee": 0.3849866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-15T21:00:03" + }, + { + "id": "d66mnjxsjm3x81tomz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-16T01:00:04", + "amountCrypto": 0.0002768, + "pricePerUnit": 396000, + "totalCost": 109.61, + "fee": 0.38498756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-16T01:00:04" + }, + { + "id": "mkro088vyof22b254c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-16T05:00:04", + "amountCrypto": 0.00027577, + "pricePerUnit": 397484, + "totalCost": 109.61, + "fee": 0.38499234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-16T05:00:04" + }, + { + "id": "rdlsn4ew2nic25oae2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-16T09:00:04", + "amountCrypto": 0.00027408, + "pricePerUnit": 399940, + "totalCost": 109.62, + "fee": 0.38499723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-16T09:00:04" + }, + { + "id": "qsfweiuas4qjlqxfed", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-16T13:00:03", + "amountCrypto": 0.00028147, + "pricePerUnit": 389441, + "totalCost": 109.62, + "fee": 0.38499865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-16T13:00:03" + }, + { + "id": "lj6ntwetedwqzjif8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-16T17:00:04", + "amountCrypto": 0.0002826, + "pricePerUnit": 387876, + "totalCost": 109.61, + "fee": 0.38499092, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-16T17:00:04" + }, + { + "id": "fq55bkt5349w9rzk2b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-16T21:00:04", + "amountCrypto": 0.00028361, + "pricePerUnit": 386501, + "totalCost": 109.62, + "fee": 0.38499721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-16T21:00:04" + }, + { + "id": "lgbubnu964cswuqfjz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-17T01:00:07", + "amountCrypto": 0.00028719, + "pricePerUnit": 381678, + "totalCost": 109.61, + "fee": 0.38499214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-17T01:00:07" + }, + { + "id": "gm1rdanwxei6ix2wgh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-17T05:00:03", + "amountCrypto": 0.0002865, + "pricePerUnit": 382601, + "totalCost": 109.62, + "fee": 0.38499594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-17T05:00:03" + }, + { + "id": "hr7fb9u3uytcrbw13m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-17T09:00:04", + "amountCrypto": 0.00028538, + "pricePerUnit": 384106, + "totalCost": 109.62, + "fee": 0.38499939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-17T09:00:04" + }, + { + "id": "bn0k9umi85i4ltj0y2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-17T13:00:05", + "amountCrypto": 0.00028601, + "pricePerUnit": 383257, + "totalCost": 109.62, + "fee": 0.38499646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-17T13:00:05" + }, + { + "id": "n8x41xki2v2rwks7ns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-17T17:00:04", + "amountCrypto": 0.00028612, + "pricePerUnit": 383112, + "totalCost": 109.62, + "fee": 0.38499882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-17T17:00:04" + }, + { + "id": "yybi76wmu79419yi54", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-17T21:00:03", + "amountCrypto": 0.00028622, + "pricePerUnit": 382966, + "totalCost": 109.61, + "fee": 0.3849866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-17T21:00:03" + }, + { + "id": "qqdz9ivhb60pxabtql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-18T01:00:36", + "amountCrypto": 0.00028482, + "pricePerUnit": 384860, + "totalCost": 109.62, + "fee": 0.38499818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-18T01:00:36" + }, + { + "id": "3qz8h6etyapziytwwk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-18T05:00:03", + "amountCrypto": 0.00028555, + "pricePerUnit": 383865, + "totalCost": 109.61, + "fee": 0.38498703, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-18T05:00:03" + }, + { + "id": "gzklgflq1zk8jfc3dj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-18T09:00:04", + "amountCrypto": 0.00028517, + "pricePerUnit": 384387, + "totalCost": 109.62, + "fee": 0.38499753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-18T09:00:04" + }, + { + "id": "26vlpkvpzaq43qk9vt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-18T13:00:03", + "amountCrypto": 0.0002858, + "pricePerUnit": 383542, + "totalCost": 109.62, + "fee": 0.38499986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-18T13:00:03" + }, + { + "id": "e79elcwsbabcplumc8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-18T17:00:04", + "amountCrypto": 0.00028623, + "pricePerUnit": 382964, + "totalCost": 109.62, + "fee": 0.38499804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-18T17:00:04" + }, + { + "id": "nvh5ja81ia9phpik8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-18T21:00:04", + "amountCrypto": 0.00028507, + "pricePerUnit": 384519, + "totalCost": 109.61, + "fee": 0.38499469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-18T21:00:04" + }, + { + "id": "m5qi8q625uuihrjfjf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-19T01:00:05", + "amountCrypto": 0.00028506, + "pricePerUnit": 384532, + "totalCost": 109.61, + "fee": 0.3849942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-19T01:00:05" + }, + { + "id": "r18ov7lclom0t1kxk7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-19T05:00:04", + "amountCrypto": 0.00028674, + "pricePerUnit": 382284, + "totalCost": 109.62, + "fee": 0.3849992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-19T05:00:04" + }, + { + "id": "putc0fhmlewqxaqm1l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-19T09:00:35", + "amountCrypto": 0.00028683, + "pricePerUnit": 382152, + "totalCost": 109.61, + "fee": 0.38498706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-19T09:00:35" + }, + { + "id": "swirwexyi8nfjmcnvh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-19T13:00:35", + "amountCrypto": 0.00028634, + "pricePerUnit": 382808, + "totalCost": 109.61, + "fee": 0.38498911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-19T13:00:35" + }, + { + "id": "3x89gz2g8i116kifyj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-19T17:00:04", + "amountCrypto": 0.0002874, + "pricePerUnit": 381402, + "totalCost": 109.61, + "fee": 0.38499505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-19T17:00:04" + }, + { + "id": "ceorkslpbw0u8dy4lr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-19T21:00:35", + "amountCrypto": 0.00028915, + "pricePerUnit": 379087, + "totalCost": 109.61, + "fee": 0.38498828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-19T21:00:35" + }, + { + "id": "ibo3lqytfjlc1j8k3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-20T01:00:35", + "amountCrypto": 0.00029162, + "pricePerUnit": 375885, + "totalCost": 109.62, + "fee": 0.38499733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-20T01:00:35" + }, + { + "id": "crkhloej30qwtiwosr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-20T05:00:03", + "amountCrypto": 0.00028638, + "pricePerUnit": 382754, + "totalCost": 109.61, + "fee": 0.38498858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-20T05:00:03" + }, + { + "id": "mda2z9dtoots6q63hy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-20T09:00:04", + "amountCrypto": 0.00028498, + "pricePerUnit": 384640, + "totalCost": 109.61, + "fee": 0.38499426, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-20T09:00:04" + }, + { + "id": "g663n0xehj88a56nva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-20T13:00:04", + "amountCrypto": 0.00028612, + "pricePerUnit": 383111, + "totalCost": 109.62, + "fee": 0.38499781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-20T13:00:04" + }, + { + "id": "ruhe2o9qxmh4n1m0al", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-20T17:00:04", + "amountCrypto": 0.00028437, + "pricePerUnit": 385467, + "totalCost": 109.62, + "fee": 0.38499616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-20T17:00:04" + }, + { + "id": "qkxanyt4ajkftgm2xu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-20T21:00:39", + "amountCrypto": 0.00028409, + "pricePerUnit": 385844, + "totalCost": 109.61, + "fee": 0.38499325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-20T21:00:39" + }, + { + "id": "eb2us903snkicfmbem", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-21T01:00:35", + "amountCrypto": 0.00028421, + "pricePerUnit": 385675, + "totalCost": 109.61, + "fee": 0.38498718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-21T01:00:35" + }, + { + "id": "2pliptorng78yzfyzv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-21T05:00:04", + "amountCrypto": 0.00028495, + "pricePerUnit": 384680, + "totalCost": 109.61, + "fee": 0.38499376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-21T05:00:04" + }, + { + "id": "ytswl0ftt3zla7lr2x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-21T09:00:04", + "amountCrypto": 0.00028567, + "pricePerUnit": 383710, + "totalCost": 109.61, + "fee": 0.3849933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-21T09:00:04" + }, + { + "id": "nt41hb3k7k2mwkl1ok", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-21T13:00:03", + "amountCrypto": 0.00028388, + "pricePerUnit": 386134, + "totalCost": 109.62, + "fee": 0.38499781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-21T13:00:03" + }, + { + "id": "0lihova99sqz4ou5ij", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-21T17:00:04", + "amountCrypto": 0.00028498, + "pricePerUnit": 384645, + "totalCost": 109.62, + "fee": 0.38499926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-21T17:00:04" + }, + { + "id": "x2mkwif87txn7sv9q6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-21T21:00:04", + "amountCrypto": 0.00028606, + "pricePerUnit": 383191, + "totalCost": 109.62, + "fee": 0.38499745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-21T21:00:04" + }, + { + "id": "l6ue0ytdwcstjitifx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-22T01:00:03", + "amountCrypto": 0.00028578, + "pricePerUnit": 383566, + "totalCost": 109.62, + "fee": 0.38499701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-22T01:00:03" + }, + { + "id": "qalzo4u92k8ahvj8m6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-22T05:00:04", + "amountCrypto": 0.0002854, + "pricePerUnit": 384075, + "totalCost": 109.62, + "fee": 0.3849953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-22T05:00:04" + }, + { + "id": "1wxqazs5qzsxmhlsul", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-22T09:00:04", + "amountCrypto": 0.00028532, + "pricePerUnit": 384186, + "totalCost": 109.62, + "fee": 0.38499862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-22T09:00:04" + }, + { + "id": "ps5dp67xkt2kkfjwjn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-22T13:00:04", + "amountCrypto": 0.00028498, + "pricePerUnit": 384644, + "totalCost": 109.62, + "fee": 0.38499826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-22T13:00:04" + }, + { + "id": "rd8q4o3aaubn7edj20", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-22T17:00:03", + "amountCrypto": 0.00028742, + "pricePerUnit": 381369, + "totalCost": 109.61, + "fee": 0.38498853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-22T17:00:03" + }, + { + "id": "xwvzecy0z0ompihozb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-22T21:00:04", + "amountCrypto": 0.00028684, + "pricePerUnit": 382145, + "totalCost": 109.61, + "fee": 0.38499343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-22T21:00:04" + }, + { + "id": "rb6mcgwqs9qus7a9ae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-23T01:00:04", + "amountCrypto": 0.00028451, + "pricePerUnit": 385273, + "totalCost": 109.61, + "fee": 0.38499185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-23T01:00:04" + }, + { + "id": "5crsvypek96pv9sasg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-23T05:00:05", + "amountCrypto": 0.0002845, + "pricePerUnit": 385292, + "totalCost": 109.62, + "fee": 0.3849973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-23T05:00:05" + }, + { + "id": "b3smpmz2dol1teqz9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-23T09:00:04", + "amountCrypto": 0.00028466, + "pricePerUnit": 385074, + "totalCost": 109.62, + "fee": 0.38499586, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-23T09:00:04" + }, + { + "id": "acf8pf1sq665nfngci", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-23T13:00:03", + "amountCrypto": 0.00028442, + "pricePerUnit": 385390, + "totalCost": 109.61, + "fee": 0.38498694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-23T13:00:03" + }, + { + "id": "w18dn62k7jrtwwsth0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-23T17:00:04", + "amountCrypto": 0.00028482, + "pricePerUnit": 384855, + "totalCost": 109.61, + "fee": 0.38499318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-23T17:00:04" + }, + { + "id": "kpsqorz2pj6baosueq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-23T21:00:04", + "amountCrypto": 0.00028479, + "pricePerUnit": 384902, + "totalCost": 109.62, + "fee": 0.38499964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-23T21:00:04" + }, + { + "id": "5v8ye0vn2w1vo70hzv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-24T01:00:03", + "amountCrypto": 0.00028603, + "pricePerUnit": 383225, + "totalCost": 109.61, + "fee": 0.38499123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-24T01:00:03" + }, + { + "id": "c8cz8r9wfoe9nipa7v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-24T05:00:04", + "amountCrypto": 0.00028491, + "pricePerUnit": 384731, + "totalCost": 109.61, + "fee": 0.38499075, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-24T05:00:04" + }, + { + "id": "a6bijlufb3wimgxust", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-24T09:00:04", + "amountCrypto": 0.00028461, + "pricePerUnit": 385134, + "totalCost": 109.61, + "fee": 0.38498822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-24T09:00:04" + }, + { + "id": "akyk7sr19fhaytskwy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-24T13:00:03", + "amountCrypto": 0.00028505, + "pricePerUnit": 384551, + "totalCost": 109.62, + "fee": 0.38499972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-24T13:00:03" + }, + { + "id": "26bz99vi7afvthu7fx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-24T17:00:05", + "amountCrypto": 0.00028493, + "pricePerUnit": 384708, + "totalCost": 109.61, + "fee": 0.38499476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-24T17:00:05" + }, + { + "id": "xe5u4et6fnhvnzu4i7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-24T21:00:03", + "amountCrypto": 0.00028481, + "pricePerUnit": 384875, + "totalCost": 109.62, + "fee": 0.38499967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-24T21:00:03" + }, + { + "id": "r0zgus41qu9d5ss3t3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-25T01:00:35", + "amountCrypto": 0.00028494, + "pricePerUnit": 384695, + "totalCost": 109.61, + "fee": 0.38499526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "1999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-25T01:00:35" + }, + { + "id": "cgtkzxzogn7lbnsu75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-25T05:00:35", + "amountCrypto": 0.00028494, + "pricePerUnit": 384698, + "totalCost": 109.62, + "fee": 0.38499826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-25T05:00:35" + }, + { + "id": "45qwwv8kvn9w3oufj2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-25T09:00:05", + "amountCrypto": 0.00028499, + "pricePerUnit": 384626, + "totalCost": 109.61, + "fee": 0.38499375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-25T09:00:05" + }, + { + "id": "r5benr1vdc8y4h2a8o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-25T13:00:05", + "amountCrypto": 0.00028503, + "pricePerUnit": 384571, + "totalCost": 109.61, + "fee": 0.38499273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-25T13:00:05" + }, + { + "id": "x8swirp6yn980zjydg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-25T17:00:35", + "amountCrypto": 0.00028547, + "pricePerUnit": 383977, + "totalCost": 109.61, + "fee": 0.38499147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-25T17:00:35" + }, + { + "id": "y4dkwuih1moy7nsnl6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-25T21:00:03", + "amountCrypto": 0.00028574, + "pricePerUnit": 383615, + "totalCost": 109.61, + "fee": 0.38499214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-25T21:00:03" + }, + { + "id": "2277uyjfr5g52vu7w8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-26T01:00:04", + "amountCrypto": 0.00028536, + "pricePerUnit": 384123, + "totalCost": 109.61, + "fee": 0.38498976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-26T01:00:04" + }, + { + "id": "s1bbbp8w9htv0bgw34", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-27T17:00:04", + "amountCrypto": 0.00028574, + "pricePerUnit": 383616, + "totalCost": 109.61, + "fee": 0.3849933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-27T17:00:04" + }, + { + "id": "xorz0p21xzkkxwh3tb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-27T21:00:04", + "amountCrypto": 0.00028768, + "pricePerUnit": 381025, + "totalCost": 109.61, + "fee": 0.38498921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-27T21:00:04" + }, + { + "id": "cud9jo778jp82x5rno", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-28T01:00:03", + "amountCrypto": 0.0002871, + "pricePerUnit": 381804, + "totalCost": 109.62, + "fee": 0.38499854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-28T01:00:03" + }, + { + "id": "07mdsgky3wh7776qeh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-28T05:00:03", + "amountCrypto": 0.00028801, + "pricePerUnit": 380588, + "totalCost": 109.61, + "fee": 0.38498879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-28T05:00:03" + }, + { + "id": "3r28nswzrw4hy1tjn5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-28T09:00:04", + "amountCrypto": 0.00028803, + "pricePerUnit": 380569, + "totalCost": 109.62, + "fee": 0.3849963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-28T09:00:04" + }, + { + "id": "w760rc26k7x4jk4hh8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-28T13:00:03", + "amountCrypto": 0.00028827, + "pricePerUnit": 380253, + "totalCost": 109.62, + "fee": 0.38499715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-28T13:00:03" + }, + { + "id": "m9ad2pjsctqp97bwn1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-28T17:00:03", + "amountCrypto": 0.00028919, + "pricePerUnit": 379033, + "totalCost": 109.61, + "fee": 0.38498669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-28T17:00:03" + }, + { + "id": "vbj8f498mzsxzua6ze", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-28T21:00:04", + "amountCrypto": 0.00028873, + "pricePerUnit": 379641, + "totalCost": 109.61, + "fee": 0.38499088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-28T21:00:04" + }, + { + "id": "5fqpgdd7uc71w4jlqm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-29T01:00:03", + "amountCrypto": 0.00029, + "pricePerUnit": 377979, + "totalCost": 109.61, + "fee": 0.38499146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-29T01:00:03" + }, + { + "id": "40vkkdl6kydg4y09p3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-29T05:00:03", + "amountCrypto": 0.00028978, + "pricePerUnit": 378271, + "totalCost": 109.62, + "fee": 0.38499658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-29T05:00:03" + }, + { + "id": "hw27r66djqe16v9rso", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-29T09:00:34", + "amountCrypto": 0.00028918, + "pricePerUnit": 379050, + "totalCost": 109.61, + "fee": 0.38499064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-29T09:00:34" + }, + { + "id": "mmfjx5kyje29q4i2n0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-29T13:00:04", + "amountCrypto": 0.00028932, + "pricePerUnit": 378863, + "totalCost": 109.61, + "fee": 0.38498701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-29T13:00:04" + }, + { + "id": "rjj4asbpkv8j94xz0y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-29T17:00:04", + "amountCrypto": 0.00029054, + "pricePerUnit": 377284, + "totalCost": 109.62, + "fee": 0.38499912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-29T17:00:04" + }, + { + "id": "o7n1t6vzbdj6rdk2bc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-29T21:00:04", + "amountCrypto": 0.00029034, + "pricePerUnit": 377539, + "totalCost": 109.61, + "fee": 0.38499414, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-29T21:00:04" + }, + { + "id": "idu62qrajta7l03j8w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-30T01:00:03", + "amountCrypto": 0.00028993, + "pricePerUnit": 378078, + "totalCost": 109.62, + "fee": 0.38499934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-30T01:00:03" + }, + { + "id": "3qwoen5vrrojt7btqo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-30T05:00:40", + "amountCrypto": 0.00029033, + "pricePerUnit": 377553, + "totalCost": 109.61, + "fee": 0.38499515, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-30T05:00:40" + }, + { + "id": "dm75dfwgllsxiaih48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-30T09:00:36", + "amountCrypto": 0.00029188, + "pricePerUnit": 375540, + "totalCost": 109.61, + "fee": 0.38498691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-30T09:00:36" + }, + { + "id": "9cnfmr7zmgn3uempz2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-30T13:00:03", + "amountCrypto": 0.00029309, + "pricePerUnit": 373991, + "totalCost": 109.61, + "fee": 0.38498834, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-30T13:00:03" + }, + { + "id": "hofkwklknijia6fhjy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-30T17:00:04", + "amountCrypto": 0.00029166, + "pricePerUnit": 375833, + "totalCost": 109.62, + "fee": 0.38499687, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-30T17:00:04" + }, + { + "id": "tnlydl2u7bn65d1skp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-30T21:00:04", + "amountCrypto": 0.00029329, + "pricePerUnit": 373742, + "totalCost": 109.61, + "fee": 0.38499455, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-30T21:00:04" + }, + { + "id": "5scq47l90mk2yfyanx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-31T01:00:07", + "amountCrypto": 0.00029187, + "pricePerUnit": 375565, + "totalCost": 109.62, + "fee": 0.38499935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-31T01:00:07" + }, + { + "id": "76u5vsx8w4nogsvims", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-31T05:00:03", + "amountCrypto": 0.0002927, + "pricePerUnit": 374500, + "totalCost": 109.62, + "fee": 0.38499932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-31T05:00:03" + }, + { + "id": "uqt1hcls3j0hny5dwi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-31T09:00:04", + "amountCrypto": 0.00029228, + "pricePerUnit": 375027, + "totalCost": 109.61, + "fee": 0.38498788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-31T09:00:04" + }, + { + "id": "sgns3f3pa02cbasuik", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-31T13:00:04", + "amountCrypto": 0.00029231, + "pricePerUnit": 374992, + "totalCost": 109.61, + "fee": 0.38499146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-31T13:00:04" + }, + { + "id": "oe53rkw3ho25dm2u3t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-31T17:00:35", + "amountCrypto": 0.00029181, + "pricePerUnit": 375641, + "totalCost": 109.62, + "fee": 0.38499809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-31T17:00:35" + }, + { + "id": "nq55ylwvrxssuf8mbb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2022-12-31T21:00:03", + "amountCrypto": 0.00029254, + "pricePerUnit": 374695, + "totalCost": 109.61, + "fee": 0.38498923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2022-12-31T21:00:03" + }, + { + "id": "rjwm6ick2hnrnaygkl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-01T01:00:06", + "amountCrypto": 0.00029303, + "pricePerUnit": 374073, + "totalCost": 109.61, + "fee": 0.38499392, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-01T01:00:06" + }, + { + "id": "t51k6iv1ij2z0ue6ed", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-01T05:00:35", + "amountCrypto": 0.0002932, + "pricePerUnit": 373860, + "totalCost": 109.62, + "fee": 0.38499792, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-01T05:00:35" + }, + { + "id": "eaaz0bojdb00e4hy1v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-01T09:00:05", + "amountCrypto": 0.00029312, + "pricePerUnit": 373959, + "totalCost": 109.61, + "fee": 0.3849948, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-01T09:00:05" + }, + { + "id": "kp7os5ujp8vtsbdo0b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-01T13:00:03", + "amountCrypto": 0.00029238, + "pricePerUnit": 374905, + "totalCost": 109.61, + "fee": 0.38499431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-01T13:00:03" + }, + { + "id": "91w8it73klbfh25kq9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-01T17:00:04", + "amountCrypto": 0.00029265, + "pricePerUnit": 374552, + "totalCost": 109.61, + "fee": 0.384987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-01T17:00:04" + }, + { + "id": "1q7fkshdgvvxv8vzt6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-01T21:00:04", + "amountCrypto": 0.00029184, + "pricePerUnit": 375594, + "totalCost": 109.61, + "fee": 0.3849895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-01T21:00:04" + }, + { + "id": "43qc2wv84nxogwv7wi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-02T01:00:04", + "amountCrypto": 0.0002917, + "pricePerUnit": 375776, + "totalCost": 109.61, + "fee": 0.38499128, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-02T01:00:04" + }, + { + "id": "dpkp47mzp78fqni7mi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-02T05:00:04", + "amountCrypto": 0.00029059, + "pricePerUnit": 377211, + "totalCost": 109.61, + "fee": 0.38499067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-02T05:00:04" + }, + { + "id": "xufl1oockspczeeo17", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-02T09:00:03", + "amountCrypto": 0.00028848, + "pricePerUnit": 379972, + "totalCost": 109.61, + "fee": 0.3849929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-02T09:00:03" + }, + { + "id": "x11od1k1og6ew4peiy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-02T13:00:04", + "amountCrypto": 0.00028902, + "pricePerUnit": 379256, + "totalCost": 109.61, + "fee": 0.38498675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-02T13:00:04" + }, + { + "id": "jpjkzzkfqpfn3e26da", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-02T17:00:05", + "amountCrypto": 0.00028859, + "pricePerUnit": 379826, + "totalCost": 109.61, + "fee": 0.38499172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-02T17:00:05" + }, + { + "id": "rpsocbmzubo1jpybuw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-02T21:00:04", + "amountCrypto": 0.00028869, + "pricePerUnit": 379698, + "totalCost": 109.62, + "fee": 0.38499534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-02T21:00:04" + }, + { + "id": "0o2g3d8ohfh2q7ided", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-03T01:00:04", + "amountCrypto": 0.00028991, + "pricePerUnit": 378097, + "totalCost": 109.61, + "fee": 0.38499213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-03T01:00:04" + }, + { + "id": "l0247ng5n5565jgfnd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-03T05:00:05", + "amountCrypto": 0.0002895, + "pricePerUnit": 378634, + "totalCost": 109.61, + "fee": 0.38499368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-03T05:00:05" + }, + { + "id": "wz9q8r1xdd6spnu6bv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-03T09:00:05", + "amountCrypto": 0.00028777, + "pricePerUnit": 380907, + "totalCost": 109.61, + "fee": 0.38499039, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-03T09:00:05" + }, + { + "id": "pyzvph7dxty91d3jpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-03T13:00:04", + "amountCrypto": 0.00028534, + "pricePerUnit": 384150, + "totalCost": 109.61, + "fee": 0.38498953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-03T13:00:04" + }, + { + "id": "gsqjcvpozt4vh1evd5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-03T17:00:35", + "amountCrypto": 0.00028785, + "pricePerUnit": 380808, + "totalCost": 109.62, + "fee": 0.38499733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-03T17:00:35" + }, + { + "id": "6pzarzacivrbml7f4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-03T21:00:04", + "amountCrypto": 0.00028826, + "pricePerUnit": 380267, + "totalCost": 109.62, + "fee": 0.38499797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-03T21:00:04" + }, + { + "id": "mvdl70ysulldnbd7hl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-04T01:00:03", + "amountCrypto": 0.00028736, + "pricePerUnit": 381448, + "totalCost": 109.61, + "fee": 0.3849879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-04T01:00:03" + }, + { + "id": "hf010cpbdl3gy96oac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-04T05:00:04", + "amountCrypto": 0.00028534, + "pricePerUnit": 384150, + "totalCost": 109.61, + "fee": 0.38498953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-04T05:00:04" + }, + { + "id": "02ac424jwzje1h052t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-04T09:00:04", + "amountCrypto": 0.00028523, + "pricePerUnit": 384297, + "totalCost": 109.61, + "fee": 0.38498838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-04T09:00:04" + }, + { + "id": "7t3x9ius8yja1zo9qv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-04T13:00:36", + "amountCrypto": 0.00028632, + "pricePerUnit": 382836, + "totalCost": 109.61, + "fee": 0.38499038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-04T13:00:36" + }, + { + "id": "njwul28duxxu3vzp7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-04T17:00:36", + "amountCrypto": 0.00028671, + "pricePerUnit": 382324, + "totalCost": 109.62, + "fee": 0.3849992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-04T17:00:36" + }, + { + "id": "n2rnvzmyr1skbbhjwv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-04T21:00:04", + "amountCrypto": 0.00028705, + "pricePerUnit": 381862, + "totalCost": 109.61, + "fee": 0.38498997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-04T21:00:04" + }, + { + "id": "allw978xvxuw0r8nke", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-05T01:00:04", + "amountCrypto": 0.00028732, + "pricePerUnit": 381503, + "totalCost": 109.61, + "fee": 0.38498981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-05T01:00:04" + }, + { + "id": "dtyld9ic6vy5znxa9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-05T05:00:04", + "amountCrypto": 0.00028732, + "pricePerUnit": 381502, + "totalCost": 109.61, + "fee": 0.3849888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-05T05:00:04" + }, + { + "id": "0kop2l0sdcvxg2d4zc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-05T09:00:05", + "amountCrypto": 0.0002876, + "pricePerUnit": 381139, + "totalCost": 109.62, + "fee": 0.38499731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-05T09:00:05" + }, + { + "id": "0qlojysnfntxtkvuqx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-05T13:00:05", + "amountCrypto": 0.00028699, + "pricePerUnit": 381945, + "totalCost": 109.61, + "fee": 0.38499316, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-05T13:00:05" + }, + { + "id": "na4nff8r6k1kppglyh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-05T17:00:04", + "amountCrypto": 0.00028381, + "pricePerUnit": 386231, + "totalCost": 109.62, + "fee": 0.38499957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-05T17:00:04" + }, + { + "id": "eblynahztoz7gj2e34", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-05T21:00:04", + "amountCrypto": 0.00028435, + "pricePerUnit": 385487, + "totalCost": 109.61, + "fee": 0.38498906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-05T21:00:04" + }, + { + "id": "vyvrhl2ksdlac7kgx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-06T01:00:04", + "amountCrypto": 0.00028423, + "pricePerUnit": 385653, + "totalCost": 109.61, + "fee": 0.38499231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-06T01:00:04" + }, + { + "id": "jgnawy1zr0t9myqg3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-06T05:00:03", + "amountCrypto": 0.00028491, + "pricePerUnit": 384734, + "totalCost": 109.61, + "fee": 0.38499375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-06T05:00:03" + }, + { + "id": "8cpvdssn4mhalp00e5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-06T09:00:03", + "amountCrypto": 0.00028423, + "pricePerUnit": 385656, + "totalCost": 109.62, + "fee": 0.3849953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-06T09:00:03" + }, + { + "id": "ayccsqk7kklw82lcds", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-06T13:00:04", + "amountCrypto": 0.00028527, + "pricePerUnit": 384247, + "totalCost": 109.61, + "fee": 0.38499227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-06T13:00:04" + }, + { + "id": "z6kumcu7pwcnxiy35e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-06T17:00:04", + "amountCrypto": 0.00028659, + "pricePerUnit": 382473, + "totalCost": 109.61, + "fee": 0.38498775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-06T17:00:04" + }, + { + "id": "xkogesu8fgb8qpb8mx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-06T21:00:04", + "amountCrypto": 0.00028664, + "pricePerUnit": 382408, + "totalCost": 109.61, + "fee": 0.38498977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-06T21:00:04" + }, + { + "id": "ytgmzg99jo1btrh18a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-07T01:00:05", + "amountCrypto": 0.00028638, + "pricePerUnit": 382765, + "totalCost": 109.62, + "fee": 0.38499964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-07T01:00:05" + }, + { + "id": "ohg6lgiojymhwmsofu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-07T05:00:36", + "amountCrypto": 0.00028638, + "pricePerUnit": 382764, + "totalCost": 109.62, + "fee": 0.38499864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-07T05:00:36" + }, + { + "id": "inw8nv6dx56bemy43j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-07T09:00:05", + "amountCrypto": 0.00028648, + "pricePerUnit": 382620, + "totalCost": 109.61, + "fee": 0.38498818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-07T09:00:05" + }, + { + "id": "8pa6dhcxxdjy2xtdfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-07T13:00:04", + "amountCrypto": 0.00028684, + "pricePerUnit": 382139, + "totalCost": 109.61, + "fee": 0.38498738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-07T13:00:04" + }, + { + "id": "zr3nda6ig518xiq4z7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-07T17:00:04", + "amountCrypto": 0.00028652, + "pricePerUnit": 382572, + "totalCost": 109.61, + "fee": 0.38499363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-07T17:00:04" + }, + { + "id": "4d5nb0l7lzd4ul5q5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-07T21:00:04", + "amountCrypto": 0.00028661, + "pricePerUnit": 382450, + "totalCost": 109.61, + "fee": 0.38499175, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-07T21:00:04" + }, + { + "id": "13eyot4773m6v8lj5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-08T01:00:05", + "amountCrypto": 0.00028656, + "pricePerUnit": 382524, + "totalCost": 109.62, + "fee": 0.38499907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-08T01:00:05" + }, + { + "id": "ycft9ar4pgn16i9kk2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-08T05:00:04", + "amountCrypto": 0.00028656, + "pricePerUnit": 382523, + "totalCost": 109.62, + "fee": 0.38499806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-08T05:00:04" + }, + { + "id": "w2lxoohsqbqgukk3ic", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-08T09:00:04", + "amountCrypto": 0.00028636, + "pricePerUnit": 382789, + "totalCost": 109.62, + "fee": 0.38499689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-08T09:00:04" + }, + { + "id": "lpm5h1r2a9kjdjm776", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-08T13:00:04", + "amountCrypto": 0.00028675, + "pricePerUnit": 382259, + "totalCost": 109.61, + "fee": 0.38498745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-08T13:00:04" + }, + { + "id": "ddb7mc2t8jdcnr77ug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-08T17:00:35", + "amountCrypto": 0.00028566, + "pricePerUnit": 383726, + "totalCost": 109.62, + "fee": 0.38499588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-08T17:00:35" + }, + { + "id": "5ivolo355uup072eaa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-08T21:00:03", + "amountCrypto": 0.00028688, + "pricePerUnit": 382092, + "totalCost": 109.61, + "fee": 0.38499371, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-08T21:00:03" + }, + { + "id": "ptuwrlk3u9dg40vtwl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-09T01:00:05", + "amountCrypto": 0.00028394, + "pricePerUnit": 386053, + "totalCost": 109.62, + "fee": 0.38499841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-09T01:00:05" + }, + { + "id": "x4bsasol1ldazedewo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-09T05:00:04", + "amountCrypto": 0.00028284, + "pricePerUnit": 387549, + "totalCost": 109.61, + "fee": 0.38499303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-09T05:00:04" + }, + { + "id": "bx66a60r0hb3f0a231", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-09T09:00:04", + "amountCrypto": 0.00028316, + "pricePerUnit": 387118, + "totalCost": 109.62, + "fee": 0.38499997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-09T09:00:04" + }, + { + "id": "zh0fnbb1m4zzgfo8or", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-09T13:00:05", + "amountCrypto": 0.00028215, + "pricePerUnit": 388499, + "totalCost": 109.61, + "fee": 0.38499526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2092", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-09T13:00:05" + }, + { + "id": "hvyrimy1inpmgzmc2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-09T17:00:03", + "amountCrypto": 0.00028331, + "pricePerUnit": 386905, + "totalCost": 109.61, + "fee": 0.38499197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2093", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-09T17:00:03" + }, + { + "id": "w41qmu03hyy2auhdza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-09T21:00:05", + "amountCrypto": 0.00028289, + "pricePerUnit": 387483, + "totalCost": 109.62, + "fee": 0.38499552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2094", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-09T21:00:05" + }, + { + "id": "j7uj56wobsp88idlpi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-10T01:00:04", + "amountCrypto": 0.00028455, + "pricePerUnit": 385218, + "totalCost": 109.61, + "fee": 0.38499101, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2095", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-10T01:00:04" + }, + { + "id": "l362kascx7ru1jywzx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-10T05:00:03", + "amountCrypto": 0.00028412, + "pricePerUnit": 385801, + "totalCost": 109.61, + "fee": 0.384991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-10T05:00:03" + }, + { + "id": "cuhadxthvvlt9brxva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-10T09:00:04", + "amountCrypto": 0.00028351, + "pricePerUnit": 386629, + "totalCost": 109.61, + "fee": 0.38498892, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-10T09:00:04" + }, + { + "id": "hq0vzlscp2fnqvn7sx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-10T13:00:35", + "amountCrypto": 0.00028324, + "pricePerUnit": 386999, + "totalCost": 109.61, + "fee": 0.38499036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-10T13:00:35" + }, + { + "id": "hoyoccisf47v73fr4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-10T17:00:07", + "amountCrypto": 0.00028237, + "pricePerUnit": 388198, + "totalCost": 109.62, + "fee": 0.38499693, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-10T17:00:07" + }, + { + "id": "b8nungnbhsxlamdghs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-10T21:00:03", + "amountCrypto": 0.00028078, + "pricePerUnit": 390397, + "totalCost": 109.62, + "fee": 0.38499764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-10T21:00:03" + }, + { + "id": "qx6hurkmnqdfkbdbcg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-11T01:00:05", + "amountCrypto": 0.00028077, + "pricePerUnit": 390410, + "totalCost": 109.62, + "fee": 0.38499674, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-11T01:00:05" + }, + { + "id": "j6wbgd17kmdyojtxdv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-11T05:00:37", + "amountCrypto": 0.00028096, + "pricePerUnit": 390145, + "totalCost": 109.62, + "fee": 0.38499577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-11T05:00:37" + }, + { + "id": "dgfn3k1oo5xfh3rl5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-11T09:00:04", + "amountCrypto": 0.00028089, + "pricePerUnit": 390241, + "totalCost": 109.61, + "fee": 0.38499456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-11T09:00:04" + }, + { + "id": "gizpwvalc4wr92r2cu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-11T13:00:04", + "amountCrypto": 0.00028089, + "pricePerUnit": 390235, + "totalCost": 109.61, + "fee": 0.38498864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-11T13:00:04" + }, + { + "id": "26tttfln8hgnodcu37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-11T17:00:35", + "amountCrypto": 0.00028278, + "pricePerUnit": 387633, + "totalCost": 109.61, + "fee": 0.38499479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-11T17:00:35" + }, + { + "id": "ubtzy7wzg430w5o926", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-11T21:00:04", + "amountCrypto": 0.00027932, + "pricePerUnit": 392426, + "totalCost": 109.61, + "fee": 0.38498626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-11T21:00:04" + }, + { + "id": "ljyzuyrzfg1fw1dt4f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-12T01:00:04", + "amountCrypto": 0.00027322, + "pricePerUnit": 401199, + "totalCost": 109.62, + "fee": 0.38499736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-12T01:00:04" + }, + { + "id": "m7ikx574hdtjixzb5b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-12T05:00:05", + "amountCrypto": 0.0002691, + "pricePerUnit": 407339, + "totalCost": 109.61, + "fee": 0.38499502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-12T05:00:05" + }, + { + "id": "x6z0j363qz92ohhz9j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-12T09:00:04", + "amountCrypto": 0.00027025, + "pricePerUnit": 405602, + "totalCost": 109.61, + "fee": 0.38499156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-12T09:00:04" + }, + { + "id": "v7dhfsf4vrmp1mc4cb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-12T13:00:04", + "amountCrypto": 0.00026956, + "pricePerUnit": 406640, + "totalCost": 109.61, + "fee": 0.38499134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-12T13:00:04" + }, + { + "id": "153kfjcgl72yy3qos9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-12T17:00:05", + "amountCrypto": 0.00027193, + "pricePerUnit": 403092, + "totalCost": 109.61, + "fee": 0.38498758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-12T17:00:05" + }, + { + "id": "cr6taj7b24lmn6qu5h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-12T21:00:05", + "amountCrypto": 0.00026133, + "pricePerUnit": 419443, + "totalCost": 109.61, + "fee": 0.3849884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-12T21:00:05" + }, + { + "id": "tdgipg8cukzrolefaa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-13T01:00:04", + "amountCrypto": 0.00026218, + "pricePerUnit": 418083, + "totalCost": 109.61, + "fee": 0.38498826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-13T01:00:04" + }, + { + "id": "g9yotipcyz8ixs2a2o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-13T05:00:03", + "amountCrypto": 0.00026158, + "pricePerUnit": 419041, + "totalCost": 109.61, + "fee": 0.38498736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-13T05:00:03" + }, + { + "id": "nsdbbh8vvaqxyf1vmt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-13T09:00:04", + "amountCrypto": 0.00026228, + "pricePerUnit": 417933, + "totalCost": 109.62, + "fee": 0.38499692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-13T09:00:04" + }, + { + "id": "87yvps1z0n84c275m9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-13T13:00:04", + "amountCrypto": 0.00026019, + "pricePerUnit": 421285, + "totalCost": 109.61, + "fee": 0.38499228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-13T13:00:04" + }, + { + "id": "no0j7w5jxqj7yz4kdb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-13T17:00:04", + "amountCrypto": 0.00025621, + "pricePerUnit": 427824, + "totalCost": 109.61, + "fee": 0.38498751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-13T17:00:04" + }, + { + "id": "jy7c2u7cy9ww185f21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-13T21:00:03", + "amountCrypto": 0.00025481, + "pricePerUnit": 430175, + "totalCost": 109.61, + "fee": 0.38498788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-13T21:00:03" + }, + { + "id": "cq1ysfha73s7qqtjfy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-14T01:00:03", + "amountCrypto": 0.00024856, + "pricePerUnit": 440780, + "totalCost": 109.56, + "fee": 0.38480332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-14T01:00:03" + }, + { + "id": "iy6zuizehrgk6v4z8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-14T05:00:38", + "amountCrypto": 0.00023566, + "pricePerUnit": 465143, + "totalCost": 109.62, + "fee": 0.38499739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-14T05:00:38" + }, + { + "id": "q2hqbs6yn5serqwwcc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-14T09:00:04", + "amountCrypto": 0.00023665, + "pricePerUnit": 463200, + "totalCost": 109.62, + "fee": 0.38499978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-14T09:00:04" + }, + { + "id": "61hr5jejbhg1ji4obi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-14T13:00:04", + "amountCrypto": 0.00023839, + "pricePerUnit": 459803, + "totalCost": 109.61, + "fee": 0.38498628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-14T13:00:04" + }, + { + "id": "0xmyg54g6whq2tgrer", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-14T17:00:05", + "amountCrypto": 0.0002379, + "pricePerUnit": 460761, + "totalCost": 109.62, + "fee": 0.38499543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-14T17:00:05" + }, + { + "id": "n2c4zza0zknpkkk7vr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-14T21:00:04", + "amountCrypto": 0.00023793, + "pricePerUnit": 460691, + "totalCost": 109.61, + "fee": 0.38498548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-14T21:00:04" + }, + { + "id": "gsvtz2dd0uvofu26eg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-15T01:00:03", + "amountCrypto": 0.00023633, + "pricePerUnit": 463827, + "totalCost": 109.62, + "fee": 0.38499962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-15T01:00:03" + }, + { + "id": "wd7s1lfg1oqc2yyr0e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-15T05:00:03", + "amountCrypto": 0.00023882, + "pricePerUnit": 458983, + "totalCost": 109.61, + "fee": 0.3849929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-15T05:00:03" + }, + { + "id": "jz275fhp7h37xhuv8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-15T09:00:04", + "amountCrypto": 0.00023875, + "pricePerUnit": 459110, + "totalCost": 109.61, + "fee": 0.38498646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-15T09:00:04" + }, + { + "id": "2m9exlq54ilvy6v03u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-15T13:00:04", + "amountCrypto": 0.00023911, + "pricePerUnit": 458434, + "totalCost": 109.62, + "fee": 0.38499934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-15T13:00:04" + }, + { + "id": "cziiebhbf8nyirkm8p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-15T17:00:03", + "amountCrypto": 0.00023675, + "pricePerUnit": 462996, + "totalCost": 109.61, + "fee": 0.38499284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-15T17:00:03" + }, + { + "id": "2swigacd6aqs231ggd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-15T21:00:03", + "amountCrypto": 0.00023723, + "pricePerUnit": 462059, + "totalCost": 109.61, + "fee": 0.38499267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-15T21:00:03" + }, + { + "id": "95ni6ocwfcpcuf74e2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-16T01:00:03", + "amountCrypto": 0.00023673, + "pricePerUnit": 463025, + "totalCost": 109.61, + "fee": 0.38498442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-16T01:00:03" + }, + { + "id": "kun07wchosjou0wjlo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-16T05:00:03", + "amountCrypto": 0.00023519, + "pricePerUnit": 466057, + "totalCost": 109.61, + "fee": 0.38498456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-16T05:00:03" + }, + { + "id": "mogz4jnmvcohrfczn4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-16T09:00:05", + "amountCrypto": 0.00023406, + "pricePerUnit": 468319, + "totalCost": 109.61, + "fee": 0.38499439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-16T09:00:05" + }, + { + "id": "jzroneldu18b7dqg2i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-16T13:00:04", + "amountCrypto": 0.00023728, + "pricePerUnit": 461951, + "totalCost": 109.61, + "fee": 0.38498381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-16T13:00:04" + }, + { + "id": "a9k63fqqp0wiasrfd0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-16T17:00:04", + "amountCrypto": 0.00023537, + "pricePerUnit": 465715, + "totalCost": 109.62, + "fee": 0.38499668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-16T17:00:04" + }, + { + "id": "mp98ieh04pr4vegphi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-16T21:00:03", + "amountCrypto": 0.00023157, + "pricePerUnit": 473342, + "totalCost": 109.61, + "fee": 0.38498407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-16T21:00:03" + }, + { + "id": "alqc9xqy8lam2xn7bg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-17T01:00:04", + "amountCrypto": 0.00023314, + "pricePerUnit": 470170, + "totalCost": 109.62, + "fee": 0.38499681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-17T01:00:04" + }, + { + "id": "xb6bin7au5ype6dvm1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-17T05:00:04", + "amountCrypto": 0.00023372, + "pricePerUnit": 468992, + "totalCost": 109.61, + "fee": 0.38498759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-17T05:00:04" + }, + { + "id": "6f6h61h8dxzzf175xp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-17T09:00:05", + "amountCrypto": 0.00023351, + "pricePerUnit": 469427, + "totalCost": 109.62, + "fee": 0.38499844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-17T09:00:05" + }, + { + "id": "tupvy2yu3dwq2g4sxo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-17T13:00:03", + "amountCrypto": 0.000233, + "pricePerUnit": 470455, + "totalCost": 109.62, + "fee": 0.38499885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-17T13:00:03" + }, + { + "id": "2bbtco6sf9i504xn0e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-17T17:00:04", + "amountCrypto": 0.0002332, + "pricePerUnit": 470033, + "totalCost": 109.61, + "fee": 0.38498368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-17T17:00:04" + }, + { + "id": "qbfcaj1gdoxbq97ntg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-17T21:00:05", + "amountCrypto": 0.00023127, + "pricePerUnit": 473966, + "totalCost": 109.61, + "fee": 0.38499218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-17T21:00:05" + }, + { + "id": "ezqitg5kv4x6pv8egm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-18T01:00:04", + "amountCrypto": 0.00023336, + "pricePerUnit": 469723, + "totalCost": 109.61, + "fee": 0.38499374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-18T01:00:04" + }, + { + "id": "4wmrwdi5xjcd2751z6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-18T05:00:38", + "amountCrypto": 0.00023162, + "pricePerUnit": 473247, + "totalCost": 109.61, + "fee": 0.38498991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-18T05:00:38" + }, + { + "id": "v1bjhcpnw3dtndecm2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-18T09:00:04", + "amountCrypto": 0.00023233, + "pricePerUnit": 471809, + "totalCost": 109.62, + "fee": 0.38499664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-18T09:00:04" + }, + { + "id": "69esa9cqdo9nmi7pm6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-18T13:00:04", + "amountCrypto": 0.00023315, + "pricePerUnit": 470138, + "totalCost": 109.61, + "fee": 0.38498712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-18T13:00:04" + }, + { + "id": "1rv8382a9trl10o084", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-18T17:00:04", + "amountCrypto": 0.00023551, + "pricePerUnit": 465433, + "totalCost": 109.61, + "fee": 0.38499221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-18T17:00:04" + }, + { + "id": "cft09x7pc7xlcu3315", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-18T21:00:03", + "amountCrypto": 0.00023613, + "pricePerUnit": 464210, + "totalCost": 109.61, + "fee": 0.38499145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-18T21:00:03" + }, + { + "id": "hl2f31vw4p4tsqgq7i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-19T01:00:04", + "amountCrypto": 0.00023876, + "pricePerUnit": 459102, + "totalCost": 109.62, + "fee": 0.38499596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-19T01:00:04" + }, + { + "id": "8fvhvwzl4ucvalk6x2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-19T05:00:03", + "amountCrypto": 0.00023817, + "pricePerUnit": 460229, + "totalCost": 109.61, + "fee": 0.38498735, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-19T05:00:03" + }, + { + "id": "rwu20x0cmhxrmknyx9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-19T09:00:03", + "amountCrypto": 0.00023749, + "pricePerUnit": 461545, + "totalCost": 109.61, + "fee": 0.38498588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-19T09:00:03" + }, + { + "id": "wdsf272cqrw0oot9fp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-19T13:00:05", + "amountCrypto": 0.00023875, + "pricePerUnit": 459124, + "totalCost": 109.62, + "fee": 0.38499829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-19T13:00:05" + }, + { + "id": "1kihtr1p1up7vuzo90", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-19T17:00:04", + "amountCrypto": 0.00023702, + "pricePerUnit": 462471, + "totalCost": 109.61, + "fee": 0.38499485, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-19T17:00:04" + }, + { + "id": "uzbr2fuj7u7gygd8cv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-19T21:00:04", + "amountCrypto": 0.00023522, + "pricePerUnit": 466010, + "totalCost": 109.61, + "fee": 0.38499483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-19T21:00:04" + }, + { + "id": "55397zwzyfm82rgtlq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-20T01:00:36", + "amountCrypto": 0.00023539, + "pricePerUnit": 465660, + "totalCost": 109.61, + "fee": 0.38498372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-20T01:00:36" + }, + { + "id": "wq1p39v7ssttlncas6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-20T05:00:03", + "amountCrypto": 0.00023538, + "pricePerUnit": 465684, + "totalCost": 109.61, + "fee": 0.38498721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-20T05:00:03" + }, + { + "id": "0ijgfywdaukbc50vb3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-20T09:00:04", + "amountCrypto": 0.00023681, + "pricePerUnit": 462873, + "totalCost": 109.61, + "fee": 0.3849881, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-20T09:00:04" + }, + { + "id": "kt8a8al8gcqrxo0xkm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-20T13:00:04", + "amountCrypto": 0.0002364, + "pricePerUnit": 463674, + "totalCost": 109.61, + "fee": 0.38498662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-20T13:00:04" + }, + { + "id": "do59pc9upifge1q6g9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-20T17:00:03", + "amountCrypto": 0.00023473, + "pricePerUnit": 466983, + "totalCost": 109.61, + "fee": 0.384995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-20T17:00:03" + }, + { + "id": "s2rp529m5n5qpjqroo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-20T21:00:03", + "amountCrypto": 0.00023151, + "pricePerUnit": 473464, + "totalCost": 109.61, + "fee": 0.38498352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-20T21:00:03" + }, + { + "id": "ls4mq19j4d3lsscmqn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-21T01:00:06", + "amountCrypto": 0.00021926, + "pricePerUnit": 499930, + "totalCost": 109.61, + "fee": 0.38499406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-21T01:00:06" + }, + { + "id": "5ogvofjok4cycg2p2h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-21T05:00:04", + "amountCrypto": 0.00022058, + "pricePerUnit": 496933, + "totalCost": 109.61, + "fee": 0.38498995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-21T05:00:04" + }, + { + "id": "1tfqtqynh1a757u5g3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-21T09:00:04", + "amountCrypto": 0.00021956, + "pricePerUnit": 499234, + "totalCost": 109.61, + "fee": 0.3849841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-21T09:00:04" + }, + { + "id": "1mvvg7jz9upx0oxvt6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-21T13:00:03", + "amountCrypto": 0.000217, + "pricePerUnit": 505124, + "totalCost": 109.61, + "fee": 0.38498442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-21T13:00:03" + }, + { + "id": "9usz10s3trkg1jh2wc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-21T17:00:05", + "amountCrypto": 0.00021586, + "pricePerUnit": 507808, + "totalCost": 109.62, + "fee": 0.38499681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-21T17:00:05" + }, + { + "id": "ir7zohggb1bvvguh7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-21T21:00:03", + "amountCrypto": 0.00021341, + "pricePerUnit": 513624, + "totalCost": 109.61, + "fee": 0.3849865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-21T21:00:03" + }, + { + "id": "m12omw6gar9j06gig6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-22T01:00:04", + "amountCrypto": 0.00021818, + "pricePerUnit": 502396, + "totalCost": 109.61, + "fee": 0.38498741, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-22T01:00:04" + }, + { + "id": "9b1pjxeqs3g6fsrusi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-22T05:00:04", + "amountCrypto": 0.00021831, + "pricePerUnit": 502106, + "totalCost": 109.61, + "fee": 0.38499444, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-22T05:00:04" + }, + { + "id": "3yxp00waq6gphu6295", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-22T09:00:04", + "amountCrypto": 0.00021689, + "pricePerUnit": 505386, + "totalCost": 109.61, + "fee": 0.38498885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-22T09:00:04" + }, + { + "id": "hx40r1r0921mea0n1u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-22T13:00:04", + "amountCrypto": 0.00021812, + "pricePerUnit": 502544, + "totalCost": 109.61, + "fee": 0.38499492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-22T13:00:04" + }, + { + "id": "wq3cu6wpeupxn9l0y5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-22T17:00:04", + "amountCrypto": 0.0002181, + "pricePerUnit": 502591, + "totalCost": 109.62, + "fee": 0.38499562, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-22T17:00:04" + }, + { + "id": "31pqzzh852vg03vrf9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-22T21:00:03", + "amountCrypto": 0.00021877, + "pricePerUnit": 501036, + "totalCost": 109.61, + "fee": 0.3849835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-22T21:00:03" + }, + { + "id": "24xvwt3a4ktn22nujc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-23T01:00:04", + "amountCrypto": 0.00021903, + "pricePerUnit": 500461, + "totalCost": 109.62, + "fee": 0.3849987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-23T01:00:04" + }, + { + "id": "h9ghxo2lm1upjxcupo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-23T05:00:03", + "amountCrypto": 0.00022025, + "pricePerUnit": 497685, + "totalCost": 109.62, + "fee": 0.38499571, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-23T05:00:03" + }, + { + "id": "82wvfnwsbj50z9apvz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-23T09:00:05", + "amountCrypto": 0.00022012, + "pricePerUnit": 497964, + "totalCost": 109.61, + "fee": 0.38498417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-23T09:00:05" + }, + { + "id": "5m3pw1eo02nan0qke0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-23T13:00:05", + "amountCrypto": 0.00021803, + "pricePerUnit": 502748, + "totalCost": 109.61, + "fee": 0.38499258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-23T13:00:05" + }, + { + "id": "kwunuyq68lspv1tbgg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-23T17:00:04", + "amountCrypto": 0.00021804, + "pricePerUnit": 502719, + "totalCost": 109.61, + "fee": 0.38498774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-23T17:00:04" + }, + { + "id": "8ngusp2o6y0e5rttql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-23T21:00:04", + "amountCrypto": 0.00021851, + "pricePerUnit": 501633, + "totalCost": 109.61, + "fee": 0.38498414, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-23T21:00:04" + }, + { + "id": "get2di0gs9jus5ry4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-24T01:00:04", + "amountCrypto": 0.00021783, + "pricePerUnit": 503202, + "totalCost": 109.61, + "fee": 0.38498647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-24T01:00:04" + }, + { + "id": "iyzvjy6oou8ju9a496", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-24T05:00:03", + "amountCrypto": 0.0002161, + "pricePerUnit": 507248, + "totalCost": 109.62, + "fee": 0.38499982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-24T05:00:03" + }, + { + "id": "k3cd846vp6f6j4aynk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-24T09:00:05", + "amountCrypto": 0.0002164, + "pricePerUnit": 506540, + "totalCost": 109.62, + "fee": 0.38499618, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-24T09:00:05" + }, + { + "id": "jstp08om670tg1x185", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-24T13:00:04", + "amountCrypto": 0.0002177, + "pricePerUnit": 503502, + "totalCost": 109.61, + "fee": 0.3849861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-24T13:00:04" + }, + { + "id": "nial7eeackyv3zh2kz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-24T17:00:04", + "amountCrypto": 0.0002177, + "pricePerUnit": 503509, + "totalCost": 109.61, + "fee": 0.38499145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-24T17:00:04" + }, + { + "id": "4amt82zu8de1m0kc0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-24T21:00:03", + "amountCrypto": 0.0002171, + "pricePerUnit": 504911, + "totalCost": 109.62, + "fee": 0.38499942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-24T21:00:03" + }, + { + "id": "9e6ax06xx90hlcv2dw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-25T01:00:04", + "amountCrypto": 0.00022085, + "pricePerUnit": 496336, + "totalCost": 109.62, + "fee": 0.38499811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-25T01:00:04" + }, + { + "id": "yx7tw9a0uftcfosxdu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-25T05:00:03", + "amountCrypto": 0.00022081, + "pricePerUnit": 496408, + "totalCost": 109.61, + "fee": 0.38498422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-25T05:00:03" + }, + { + "id": "z1uldpisczf9nhwxbz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-25T09:00:04", + "amountCrypto": 0.00021938, + "pricePerUnit": 499656, + "totalCost": 109.61, + "fee": 0.38499364, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-25T09:00:04" + }, + { + "id": "nkucys56drbydvg1u7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-25T13:00:05", + "amountCrypto": 0.00022085, + "pricePerUnit": 496327, + "totalCost": 109.61, + "fee": 0.38499113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-25T13:00:05" + }, + { + "id": "5lbnx3kop0s9m4t6uu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-25T17:00:05", + "amountCrypto": 0.00022215, + "pricePerUnit": 493424, + "totalCost": 109.61, + "fee": 0.38499227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-25T17:00:05" + }, + { + "id": "70j43nl374y7pojife", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-25T21:00:04", + "amountCrypto": 0.00022074, + "pricePerUnit": 496575, + "totalCost": 109.61, + "fee": 0.38499165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-25T21:00:04" + }, + { + "id": "iy463w4g321s0r4wmp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-26T01:00:36", + "amountCrypto": 0.00021775, + "pricePerUnit": 503386, + "totalCost": 109.61, + "fee": 0.38498581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-26T01:00:36" + }, + { + "id": "7jsw68zmoxjgghhoob", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-26T05:00:03", + "amountCrypto": 0.00021716, + "pricePerUnit": 504766, + "totalCost": 109.61, + "fee": 0.38499523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-26T05:00:03" + }, + { + "id": "7rkj0hv3xjc8i68cmf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-26T09:00:04", + "amountCrypto": 0.00021844, + "pricePerUnit": 501797, + "totalCost": 109.61, + "fee": 0.38498663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-26T09:00:04" + }, + { + "id": "dkkwdfawtbyekss25o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-26T13:00:04", + "amountCrypto": 0.00021819, + "pricePerUnit": 502388, + "totalCost": 109.62, + "fee": 0.38499893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-26T13:00:04" + }, + { + "id": "mcvbcsk7d2yis4g5wm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-26T17:00:04", + "amountCrypto": 0.00021746, + "pricePerUnit": 504054, + "totalCost": 109.61, + "fee": 0.38498328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-26T17:00:04" + }, + { + "id": "pouaobfx5ycvqce59a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-26T21:00:05", + "amountCrypto": 0.00021706, + "pricePerUnit": 505002, + "totalCost": 109.62, + "fee": 0.38499786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-26T21:00:05" + }, + { + "id": "vwdidgun1rvxvk22wp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-27T17:00:04", + "amountCrypto": 0.00021719, + "pricePerUnit": 504689, + "totalCost": 109.61, + "fee": 0.38498968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-27T17:00:04" + }, + { + "id": "vzs26f7uqpaw2w7onr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-27T21:00:04", + "amountCrypto": 0.000215, + "pricePerUnit": 509839, + "totalCost": 109.62, + "fee": 0.38499664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-27T21:00:04" + }, + { + "id": "58tija2qwc6ik8y1np", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-28T01:00:07", + "amountCrypto": 0.00021658, + "pricePerUnit": 506101, + "totalCost": 109.61, + "fee": 0.38498248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-28T01:00:07" + }, + { + "id": "xuv04ya2h5ztgiapyc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-28T05:00:04", + "amountCrypto": 0.00021615, + "pricePerUnit": 507126, + "totalCost": 109.62, + "fee": 0.38499628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-28T05:00:04" + }, + { + "id": "6fxgc23wzic45vliz1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-28T09:00:04", + "amountCrypto": 0.00021771, + "pricePerUnit": 503474, + "totalCost": 109.61, + "fee": 0.38498237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-28T09:00:04" + }, + { + "id": "4nfe8vodkxr2f6dijw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-28T13:00:05", + "amountCrypto": 0.00021773, + "pricePerUnit": 503436, + "totalCost": 109.61, + "fee": 0.38498868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-28T13:00:05" + }, + { + "id": "418e1h4vwsdp90580h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-28T17:00:04", + "amountCrypto": 0.00021745, + "pricePerUnit": 504085, + "totalCost": 109.61, + "fee": 0.38498925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-28T17:00:04" + }, + { + "id": "g0cqbaz72urck44say", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-28T21:00:05", + "amountCrypto": 0.00021718, + "pricePerUnit": 504719, + "totalCost": 109.61, + "fee": 0.38499484, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-28T21:00:05" + }, + { + "id": "u3wz4li5vbwpf632e5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-29T01:00:04", + "amountCrypto": 0.00021728, + "pricePerUnit": 504489, + "totalCost": 109.62, + "fee": 0.38499644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-29T01:00:04" + }, + { + "id": "9rg0r9rkt6hgk1k43d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-29T05:00:03", + "amountCrypto": 0.00021578, + "pricePerUnit": 507984, + "totalCost": 109.61, + "fee": 0.38498751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-29T05:00:03" + }, + { + "id": "vho2zs9a8o3xw7tncf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-29T09:00:04", + "amountCrypto": 0.00021561, + "pricePerUnit": 508389, + "totalCost": 109.61, + "fee": 0.3849909, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-29T09:00:04" + }, + { + "id": "lxmll7h1wtahpzt7m0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-29T13:00:36", + "amountCrypto": 0.00021378, + "pricePerUnit": 512744, + "totalCost": 109.61, + "fee": 0.38499322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-29T13:00:36" + }, + { + "id": "hy78n4r2e0n3a4qqas", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-29T17:00:04", + "amountCrypto": 0.00021345, + "pricePerUnit": 513544, + "totalCost": 109.62, + "fee": 0.38499868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-29T17:00:04" + }, + { + "id": "yf1w1nv5rmq6o6cky4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-29T21:00:04", + "amountCrypto": 0.0002096, + "pricePerUnit": 522968, + "totalCost": 109.61, + "fee": 0.3849921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-29T21:00:04" + }, + { + "id": "cx32h5bmn8jxiq0lod", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-30T01:00:04", + "amountCrypto": 0.00021104, + "pricePerUnit": 519402, + "totalCost": 109.61, + "fee": 0.38499387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-30T01:00:04" + }, + { + "id": "s3xwdbgxuzy1vl7kg6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-30T05:00:36", + "amountCrypto": 0.00021148, + "pricePerUnit": 518308, + "totalCost": 109.61, + "fee": 0.38498396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-30T05:00:36" + }, + { + "id": "lde7sui0nc719gaunp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-30T09:00:35", + "amountCrypto": 0.00021154, + "pricePerUnit": 518160, + "totalCost": 109.61, + "fee": 0.38498322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-30T09:00:35" + }, + { + "id": "acrakkfia2sxkgr7oa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-30T13:00:03", + "amountCrypto": 0.0002168, + "pricePerUnit": 505610, + "totalCost": 109.62, + "fee": 0.38499967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-30T13:00:03" + }, + { + "id": "xhj082xoml6hq2xzyd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-30T17:00:03", + "amountCrypto": 0.00021528, + "pricePerUnit": 509164, + "totalCost": 109.61, + "fee": 0.38498765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-30T17:00:03" + }, + { + "id": "xy1hj5orog4vz79w2b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-30T21:00:04", + "amountCrypto": 0.00021864, + "pricePerUnit": 501333, + "totalCost": 109.61, + "fee": 0.38498281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-30T21:00:04" + }, + { + "id": "ohc7m27qa8aiyj8nbr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-31T01:00:06", + "amountCrypto": 0.00021819, + "pricePerUnit": 502385, + "totalCost": 109.62, + "fee": 0.38499663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-31T01:00:06" + }, + { + "id": "69p65pn3j60biprpqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-01-31T05:00:04", + "amountCrypto": 0.00021819, + "pricePerUnit": 502386, + "totalCost": 109.62, + "fee": 0.3849974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-01-31T05:00:04" + }, + { + "id": "zemzgo869ff9qti10v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-01T21:00:05", + "amountCrypto": 0.00021541, + "pricePerUnit": 508871, + "totalCost": 109.62, + "fee": 0.38499845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-01T21:00:05" + }, + { + "id": "ut5qpuzs4wulhe3tf3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-02T01:00:05", + "amountCrypto": 0.00021362, + "pricePerUnit": 513128, + "totalCost": 109.61, + "fee": 0.38499319, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-02T01:00:05" + }, + { + "id": "xblvutfuaz7916u5ke", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-02T05:00:05", + "amountCrypto": 0.00021271, + "pricePerUnit": 515315, + "totalCost": 109.61, + "fee": 0.38498704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-02T05:00:05" + }, + { + "id": "yowsa795rsnemvhkuy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-02T09:00:04", + "amountCrypto": 0.00021311, + "pricePerUnit": 514364, + "totalCost": 109.62, + "fee": 0.38499919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-02T09:00:04" + }, + { + "id": "hxd3ivhocd7xuqpvuz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-02T13:00:04", + "amountCrypto": 0.00021252, + "pricePerUnit": 515790, + "totalCost": 109.62, + "fee": 0.38499771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-02T13:00:04" + }, + { + "id": "kcm3o7qcojtpjrkme5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-02T17:00:04", + "amountCrypto": 0.00021152, + "pricePerUnit": 518209, + "totalCost": 109.61, + "fee": 0.38498323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-02T17:00:04" + }, + { + "id": "3eosev8fmvo6smc4vf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-02T21:00:05", + "amountCrypto": 0.00021134, + "pricePerUnit": 518660, + "totalCost": 109.61, + "fee": 0.38499038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-02T21:00:05" + }, + { + "id": "bemgzhz1eisv4kkl2a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-03T01:00:05", + "amountCrypto": 0.00021404, + "pricePerUnit": 512122, + "totalCost": 109.61, + "fee": 0.38499385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-03T01:00:05" + }, + { + "id": "2fcqnkcvn5u7157tqx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-03T05:00:05", + "amountCrypto": 0.00021348, + "pricePerUnit": 513454, + "totalCost": 109.61, + "fee": 0.38498531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-03T05:00:05" + }, + { + "id": "jg9650ydmyi5lq7qj4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-03T09:00:04", + "amountCrypto": 0.00021422, + "pricePerUnit": 511694, + "totalCost": 109.62, + "fee": 0.3849956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-03T09:00:04" + }, + { + "id": "63n83jrh5sne1phuku", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-03T13:00:03", + "amountCrypto": 0.00021373, + "pricePerUnit": 512850, + "totalCost": 109.61, + "fee": 0.38498275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-03T13:00:03" + }, + { + "id": "7js5fgwiouv9nc9s8q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-03T17:00:05", + "amountCrypto": 0.00021187, + "pricePerUnit": 517375, + "totalCost": 109.62, + "fee": 0.38499964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-03T17:00:05" + }, + { + "id": "9oi2gyfkl0pgbsob6p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-03T21:00:03", + "amountCrypto": 0.00021326, + "pricePerUnit": 513991, + "totalCost": 109.61, + "fee": 0.38499079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-03T21:00:03" + }, + { + "id": "8ww3167e4a8f3npoyg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-04T01:00:04", + "amountCrypto": 0.00021197, + "pricePerUnit": 517109, + "totalCost": 109.61, + "fee": 0.38498332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-04T01:00:04" + }, + { + "id": "sksvkxvhe10sy0a4bt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-04T05:00:04", + "amountCrypto": 0.00021284, + "pricePerUnit": 514999, + "totalCost": 109.61, + "fee": 0.38498611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-04T05:00:04" + }, + { + "id": "197z76r4nxv6wf1oi9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-04T09:00:03", + "amountCrypto": 0.00021284, + "pricePerUnit": 515011, + "totalCost": 109.61, + "fee": 0.38499508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-04T09:00:03" + }, + { + "id": "sd9n5mqi7lvnlfpwag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-04T13:00:04", + "amountCrypto": 0.00021257, + "pricePerUnit": 515662, + "totalCost": 109.61, + "fee": 0.38499272, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-04T13:00:04" + }, + { + "id": "1ld610ey1meedel6cp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-04T17:00:03", + "amountCrypto": 0.0002122, + "pricePerUnit": 516569, + "totalCost": 109.62, + "fee": 0.38499859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-04T17:00:03" + }, + { + "id": "3yn270umm0fd13ffq3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-04T21:00:04", + "amountCrypto": 0.00021195, + "pricePerUnit": 517170, + "totalCost": 109.61, + "fee": 0.38499241, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-04T21:00:04" + }, + { + "id": "zhj3dd7vpam06hqso9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-05T01:00:04", + "amountCrypto": 0.00021289, + "pricePerUnit": 514883, + "totalCost": 109.61, + "fee": 0.38498981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-05T01:00:04" + }, + { + "id": "ke4sl13493fi02gzwy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-05T05:00:04", + "amountCrypto": 0.000213, + "pricePerUnit": 514626, + "totalCost": 109.62, + "fee": 0.38499647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-05T05:00:04" + }, + { + "id": "bya4xbtgp6y50sx3wb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-05T09:00:04", + "amountCrypto": 0.00021234, + "pricePerUnit": 516220, + "totalCost": 109.61, + "fee": 0.38499232, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-05T09:00:04" + }, + { + "id": "h7x589y97qw2msfsig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-05T13:00:04", + "amountCrypto": 0.00021254, + "pricePerUnit": 515738, + "totalCost": 109.61, + "fee": 0.38499512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-05T13:00:04" + }, + { + "id": "t3c1ptdtr4k1el3jy8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-05T17:00:04", + "amountCrypto": 0.00021496, + "pricePerUnit": 509931, + "totalCost": 109.61, + "fee": 0.38499447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-05T17:00:04" + }, + { + "id": "b30qrbg8wjxqyckgta", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-05T21:00:04", + "amountCrypto": 0.00021688, + "pricePerUnit": 505410, + "totalCost": 109.61, + "fee": 0.38498939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-05T21:00:04" + }, + { + "id": "pmoguk5se6989ofmel", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-06T01:00:04", + "amountCrypto": 0.00021642, + "pricePerUnit": 506497, + "totalCost": 109.62, + "fee": 0.38499908, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-06T01:00:04" + }, + { + "id": "j08q9eqpmb0y54xerv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-06T05:00:04", + "amountCrypto": 0.00021681, + "pricePerUnit": 505575, + "totalCost": 109.61, + "fee": 0.38499077, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-06T05:00:04" + }, + { + "id": "ag5l220mzo0nocfcua", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-06T09:00:03", + "amountCrypto": 0.00021661, + "pricePerUnit": 506042, + "totalCost": 109.61, + "fee": 0.38499092, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-06T09:00:03" + }, + { + "id": "k26b9fwxyzqdeozfqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-06T13:00:05", + "amountCrypto": 0.0002162, + "pricePerUnit": 507000, + "totalCost": 109.61, + "fee": 0.38498966, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-06T13:00:05" + }, + { + "id": "8stkwg3qahb03as33o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-06T17:00:04", + "amountCrypto": 0.00021408, + "pricePerUnit": 512031, + "totalCost": 109.62, + "fee": 0.38499738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-06T17:00:04" + }, + { + "id": "u0bz1oj7smu7t1s7nl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-06T21:00:05", + "amountCrypto": 0.00021355, + "pricePerUnit": 513297, + "totalCost": 109.61, + "fee": 0.38499379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-06T21:00:05" + }, + { + "id": "gpl8i1bkq8z2ur9zvg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-07T01:00:04", + "amountCrypto": 0.00021641, + "pricePerUnit": 506510, + "totalCost": 109.61, + "fee": 0.38499117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-07T01:00:04" + }, + { + "id": "ha661dgkl1zlusyl68", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-07T05:00:03", + "amountCrypto": 0.00021551, + "pricePerUnit": 508615, + "totalCost": 109.61, + "fee": 0.38498341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-07T05:00:03" + }, + { + "id": "ep1f6ditifx9e4bhk5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-07T09:00:05", + "amountCrypto": 0.00021474, + "pricePerUnit": 510454, + "totalCost": 109.61, + "fee": 0.3849949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-07T09:00:05" + }, + { + "id": "eoa63vkmb50alnyttu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-07T13:00:04", + "amountCrypto": 0.00021395, + "pricePerUnit": 512329, + "totalCost": 109.61, + "fee": 0.38498752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-07T13:00:04" + }, + { + "id": "vz44ehpzopl3wry4uv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-07T17:00:03", + "amountCrypto": 0.00021484, + "pricePerUnit": 510223, + "totalCost": 109.62, + "fee": 0.38499988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-07T17:00:03" + }, + { + "id": "f8vqzfsmzzh4n2ehqv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-07T21:00:03", + "amountCrypto": 0.00021356, + "pricePerUnit": 513277, + "totalCost": 109.62, + "fee": 0.38499682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-07T21:00:03" + }, + { + "id": "korzvcw4hl7a4cex31", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-08T01:00:04", + "amountCrypto": 0.00021237, + "pricePerUnit": 516152, + "totalCost": 109.62, + "fee": 0.38499599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-08T01:00:04" + }, + { + "id": "vdkkbgyq8ps1pmj1yf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-08T05:00:04", + "amountCrypto": 0.0002122, + "pricePerUnit": 516564, + "totalCost": 109.61, + "fee": 0.38499487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-08T05:00:04" + }, + { + "id": "gedez2i2aesbi0ldjz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-08T09:00:04", + "amountCrypto": 0.0002125, + "pricePerUnit": 515830, + "totalCost": 109.61, + "fee": 0.38499133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-08T09:00:04" + }, + { + "id": "42pg6wg6l2ik7ttg4p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-08T13:00:04", + "amountCrypto": 0.00021338, + "pricePerUnit": 513701, + "totalCost": 109.61, + "fee": 0.38499008, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-08T13:00:04" + }, + { + "id": "pltrmn47xw0n4y9xz6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-08T17:00:04", + "amountCrypto": 0.00021581, + "pricePerUnit": 507908, + "totalCost": 109.61, + "fee": 0.38498343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-08T17:00:04" + }, + { + "id": "pkwc7sqrel0ghe10oa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-08T21:00:05", + "amountCrypto": 0.00021568, + "pricePerUnit": 508216, + "totalCost": 109.61, + "fee": 0.38498484, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-08T21:00:05" + }, + { + "id": "v0m7ahihzan1j7rb0v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-09T01:00:04", + "amountCrypto": 0.00021545, + "pricePerUnit": 508770, + "totalCost": 109.61, + "fee": 0.38499352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-09T01:00:04" + }, + { + "id": "19cqun68uth0zylzmn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-09T05:00:04", + "amountCrypto": 0.00021924, + "pricePerUnit": 499962, + "totalCost": 109.61, + "fee": 0.38498358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-09T05:00:04" + }, + { + "id": "nr0t9nockrvjl4v31n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-09T09:00:04", + "amountCrypto": 0.00021769, + "pricePerUnit": 503540, + "totalCost": 109.62, + "fee": 0.38499747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-09T09:00:04" + }, + { + "id": "1t5yloyoy2io1qu9yq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-09T13:00:04", + "amountCrypto": 0.00021864, + "pricePerUnit": 501345, + "totalCost": 109.61, + "fee": 0.38499202, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-09T13:00:04" + }, + { + "id": "4r9rzk83us0y4hcx9v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-09T17:00:04", + "amountCrypto": 0.00021976, + "pricePerUnit": 498785, + "totalCost": 109.61, + "fee": 0.38498823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-09T17:00:04" + }, + { + "id": "zvausx0kj8btj4jz5r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-09T21:00:05", + "amountCrypto": 0.00022489, + "pricePerUnit": 487417, + "totalCost": 109.62, + "fee": 0.38499602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-09T21:00:05" + }, + { + "id": "p0y5vgvfy3uucnagdz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-10T01:00:04", + "amountCrypto": 0.00022739, + "pricePerUnit": 482042, + "totalCost": 109.61, + "fee": 0.3849831, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-10T01:00:04" + }, + { + "id": "s2ionljq9y3oiuvdw5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-10T05:00:04", + "amountCrypto": 0.00022676, + "pricePerUnit": 483394, + "totalCost": 109.61, + "fee": 0.38499326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-10T05:00:04" + }, + { + "id": "m64wt4g2zrsjp2dfzn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-10T09:00:03", + "amountCrypto": 0.00022607, + "pricePerUnit": 484858, + "totalCost": 109.61, + "fee": 0.38498421, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-10T09:00:03" + }, + { + "id": "aranuucb0cpc7155uu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-10T13:00:05", + "amountCrypto": 0.00022709, + "pricePerUnit": 482696, + "totalCost": 109.62, + "fee": 0.38499681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-10T13:00:05" + }, + { + "id": "c8u9qkvg32ymji20wq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-10T17:00:03", + "amountCrypto": 0.00022773, + "pricePerUnit": 481339, + "totalCost": 109.62, + "fee": 0.38499644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-10T17:00:03" + }, + { + "id": "yxln1oyx6vl3lsqls2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-10T21:00:03", + "amountCrypto": 0.00022584, + "pricePerUnit": 485366, + "totalCost": 109.62, + "fee": 0.38499549, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-10T21:00:03" + }, + { + "id": "97ydewpdo4mhkdnng9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-11T01:00:04", + "amountCrypto": 0.00022739, + "pricePerUnit": 482043, + "totalCost": 109.61, + "fee": 0.3849839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-11T01:00:04" + }, + { + "id": "tsig8jh8wwhcbm8x52", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-11T05:00:03", + "amountCrypto": 0.00022691, + "pricePerUnit": 483074, + "totalCost": 109.61, + "fee": 0.3849929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-11T05:00:03" + }, + { + "id": "423216p15qaeyjmxas", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-11T09:00:04", + "amountCrypto": 0.00022671, + "pricePerUnit": 483501, + "totalCost": 109.61, + "fee": 0.38499357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-11T09:00:04" + }, + { + "id": "y7d0c3qdjzas764773", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-11T13:00:04", + "amountCrypto": 0.00022691, + "pricePerUnit": 483074, + "totalCost": 109.61, + "fee": 0.3849929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-11T13:00:04" + }, + { + "id": "bmtmon009c14kjq415", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-11T17:00:04", + "amountCrypto": 0.0002263, + "pricePerUnit": 484380, + "totalCost": 109.62, + "fee": 0.38499597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-11T17:00:04" + }, + { + "id": "xqz8m3asqexxcmxl9f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-11T21:00:04", + "amountCrypto": 0.00022698, + "pricePerUnit": 482913, + "totalCost": 109.61, + "fee": 0.38498332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-11T21:00:04" + }, + { + "id": "w268qscjkm2sa6kncv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-12T01:00:04", + "amountCrypto": 0.00022517, + "pricePerUnit": 486806, + "totalCost": 109.61, + "fee": 0.38499215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-12T01:00:04" + }, + { + "id": "5lxvg2e6lffvmkpeou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-12T05:00:04", + "amountCrypto": 0.00022568, + "pricePerUnit": 485709, + "totalCost": 109.61, + "fee": 0.38499461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-12T05:00:04" + }, + { + "id": "mdfrj0tpo6bbbl4z84", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-12T09:00:04", + "amountCrypto": 0.00022568, + "pricePerUnit": 485710, + "totalCost": 109.62, + "fee": 0.3849954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-12T09:00:04" + }, + { + "id": "gx1543tf6yzgwnpura", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-12T13:00:04", + "amountCrypto": 0.00022461, + "pricePerUnit": 488011, + "totalCost": 109.61, + "fee": 0.38498528, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-12T13:00:04" + }, + { + "id": "ba11ijbfff8r8b2zld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-12T17:00:03", + "amountCrypto": 0.0002242, + "pricePerUnit": 488915, + "totalCost": 109.61, + "fee": 0.38499438, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-12T17:00:03" + }, + { + "id": "4lpgc93vku46u9m4zk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-12T21:00:04", + "amountCrypto": 0.00022343, + "pricePerUnit": 490587, + "totalCost": 109.61, + "fee": 0.38498423, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-12T21:00:04" + }, + { + "id": "e23laogy9npqflpuyw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-13T01:00:04", + "amountCrypto": 0.000226, + "pricePerUnit": 485012, + "totalCost": 109.61, + "fee": 0.38498725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-13T01:00:04" + }, + { + "id": "gwf2cqgshc7tj08wrd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-13T05:00:05", + "amountCrypto": 0.00022532, + "pricePerUnit": 486476, + "totalCost": 109.61, + "fee": 0.38498746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-13T05:00:05" + }, + { + "id": "lv1uleqvj389ei33db", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-13T09:00:03", + "amountCrypto": 0.00022468, + "pricePerUnit": 487875, + "totalCost": 109.62, + "fee": 0.38499794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-13T09:00:03" + }, + { + "id": "u7iqhszt0xbuo8lhq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-13T13:00:04", + "amountCrypto": 0.00022737, + "pricePerUnit": 482104, + "totalCost": 109.62, + "fee": 0.38499875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-13T13:00:04" + }, + { + "id": "196kwj1c61f28v9fo5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-13T17:00:03", + "amountCrypto": 0.00022844, + "pricePerUnit": 479828, + "totalCost": 109.61, + "fee": 0.38498442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-13T17:00:03" + }, + { + "id": "p9q0ukojmbzc5mw8vc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-13T21:00:03", + "amountCrypto": 0.00022809, + "pricePerUnit": 480566, + "totalCost": 109.61, + "fee": 0.3849858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-13T21:00:03" + }, + { + "id": "52ed9zd80ow0iegqxl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-14T01:00:04", + "amountCrypto": 0.00022656, + "pricePerUnit": 483810, + "totalCost": 109.61, + "fee": 0.38498472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-14T01:00:04" + }, + { + "id": "cxqeodc46dskckjafo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-14T05:00:04", + "amountCrypto": 0.00022745, + "pricePerUnit": 481922, + "totalCost": 109.61, + "fee": 0.38498882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-14T05:00:04" + }, + { + "id": "eqrptkc6qa8thc6snr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-14T09:00:04", + "amountCrypto": 0.00022676, + "pricePerUnit": 483385, + "totalCost": 109.61, + "fee": 0.38498609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-14T09:00:04" + }, + { + "id": "bjyaoxyzx0uc7er1f2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-14T13:00:04", + "amountCrypto": 0.00022719, + "pricePerUnit": 482481, + "totalCost": 109.61, + "fee": 0.38499479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-14T13:00:04" + }, + { + "id": "b37a86565qjydutuq7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-14T17:00:04", + "amountCrypto": 0.00022475, + "pricePerUnit": 487709, + "totalCost": 109.61, + "fee": 0.38498685, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-14T17:00:04" + }, + { + "id": "fr2ftqfyd2v55tu1t7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-14T21:00:04", + "amountCrypto": 0.00022316, + "pricePerUnit": 491185, + "totalCost": 109.61, + "fee": 0.38498771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-14T21:00:04" + }, + { + "id": "hk1v0hq5z9gip50g04", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-15T01:00:05", + "amountCrypto": 0.0002232, + "pricePerUnit": 491106, + "totalCost": 109.61, + "fee": 0.38499479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-15T01:00:05" + }, + { + "id": "7bqpkgotldg18osxyy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-15T05:00:03", + "amountCrypto": 0.00022403, + "pricePerUnit": 489291, + "totalCost": 109.62, + "fee": 0.38499831, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2312", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-15T05:00:03" + }, + { + "id": "c6c3bhexb7ric1zx7i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-15T09:00:06", + "amountCrypto": 0.0002235, + "pricePerUnit": 490442, + "totalCost": 109.61, + "fee": 0.38499102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2313", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-15T09:00:06" + }, + { + "id": "r5anf11d99t88zr4vm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-15T13:00:04", + "amountCrypto": 0.00022035, + "pricePerUnit": 497450, + "totalCost": 109.61, + "fee": 0.38498864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-15T13:00:04" + }, + { + "id": "qhs9df4isbqkvd923c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-15T17:00:05", + "amountCrypto": 0.00021645, + "pricePerUnit": 506422, + "totalCost": 109.62, + "fee": 0.38499543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-15T17:00:05" + }, + { + "id": "454iv4ec0cye9eiy28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-15T21:00:04", + "amountCrypto": 0.00021252, + "pricePerUnit": 515792, + "totalCost": 109.62, + "fee": 0.3849992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-15T21:00:04" + }, + { + "id": "bfmyr23gg4n0grvtg9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-16T01:00:06", + "amountCrypto": 0.00020393, + "pricePerUnit": 537506, + "totalCost": 109.61, + "fee": 0.38499036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-16T01:00:06" + }, + { + "id": "13kuxzhks8rr7ebt31", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-16T05:00:03", + "amountCrypto": 0.00020094, + "pricePerUnit": 545499, + "totalCost": 109.61, + "fee": 0.38498675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-16T05:00:03" + }, + { + "id": "czfvxgxsfijw7mg5fd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-16T09:00:04", + "amountCrypto": 0.00020178, + "pricePerUnit": 543238, + "totalCost": 109.61, + "fee": 0.38499375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-16T09:00:04" + }, + { + "id": "m21yg0xbbwaa2dc6s5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-16T13:00:07", + "amountCrypto": 0.00020143, + "pricePerUnit": 544179, + "totalCost": 109.61, + "fee": 0.38499169, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-16T13:00:07" + }, + { + "id": "xbm0xuvk8312mpawsf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-16T17:00:03", + "amountCrypto": 0.00019776, + "pricePerUnit": 554265, + "totalCost": 109.61, + "fee": 0.3849828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-16T17:00:03" + }, + { + "id": "b18igd2y6lh83wzoiz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-16T21:00:03", + "amountCrypto": 0.00019866, + "pricePerUnit": 551774, + "totalCost": 109.62, + "fee": 0.38499677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-16T21:00:03" + }, + { + "id": "rxii9pkativ3rblok9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-17T01:00:04", + "amountCrypto": 0.00020967, + "pricePerUnit": 522796, + "totalCost": 109.61, + "fee": 0.38499401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-17T01:00:04" + }, + { + "id": "bao1k7awcfbl4zyxke", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-17T05:00:03", + "amountCrypto": 0.00020675, + "pricePerUnit": 530184, + "totalCost": 109.62, + "fee": 0.38499719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-17T05:00:03" + }, + { + "id": "36stvsnl37r3lmi950", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-17T09:00:04", + "amountCrypto": 0.00020812, + "pricePerUnit": 526676, + "totalCost": 109.61, + "fee": 0.38498408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-17T09:00:04" + }, + { + "id": "wb4z7jgcnwmh9sspge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-17T13:00:04", + "amountCrypto": 0.00020634, + "pricePerUnit": 531219, + "totalCost": 109.61, + "fee": 0.38498379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-17T13:00:04" + }, + { + "id": "43wfuqikvpa80qlw0h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-17T17:00:04", + "amountCrypto": 0.00020386, + "pricePerUnit": 537700, + "totalCost": 109.62, + "fee": 0.38499712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-17T17:00:04" + }, + { + "id": "euhd9k24ureh99u2s4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-17T21:00:04", + "amountCrypto": 0.00020151, + "pricePerUnit": 543971, + "totalCost": 109.62, + "fee": 0.38499738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-17T21:00:04" + }, + { + "id": "w5lzty94ydzwn6q5dq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-18T01:00:04", + "amountCrypto": 0.00020101, + "pricePerUnit": 545301, + "totalCost": 109.61, + "fee": 0.38498107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-18T01:00:04" + }, + { + "id": "nupqns8hl8hjychhj9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-18T05:00:04", + "amountCrypto": 0.0002007, + "pricePerUnit": 546162, + "totalCost": 109.61, + "fee": 0.38499428, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-18T05:00:04" + }, + { + "id": "6hmnma4xopv97zny5z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-18T09:00:04", + "amountCrypto": 0.00020136, + "pricePerUnit": 544375, + "totalCost": 109.62, + "fee": 0.38499651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-18T09:00:04" + }, + { + "id": "6wwx6olspkab2jzuhw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-18T13:00:04", + "amountCrypto": 0.00020228, + "pricePerUnit": 541879, + "totalCost": 109.61, + "fee": 0.38498223, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-18T13:00:04" + }, + { + "id": "l4dhxdpciptawlb42p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-18T17:00:05", + "amountCrypto": 0.00020117, + "pricePerUnit": 544867, + "totalCost": 109.61, + "fee": 0.38498086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-18T17:00:05" + }, + { + "id": "3ojui451gcrj7gcdm9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-18T21:00:03", + "amountCrypto": 0.00020151, + "pricePerUnit": 543960, + "totalCost": 109.61, + "fee": 0.38498959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-18T21:00:03" + }, + { + "id": "dptjnoqb6kyjkvhbg1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-19T01:00:04", + "amountCrypto": 0.00020137, + "pricePerUnit": 544338, + "totalCost": 109.61, + "fee": 0.38498946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-19T01:00:04" + }, + { + "id": "kyvnl6le6x33ab7xyw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-19T05:00:04", + "amountCrypto": 0.00020098, + "pricePerUnit": 545402, + "totalCost": 109.61, + "fee": 0.38499491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-19T05:00:04" + }, + { + "id": "2dyc9vin95lhn0u7g7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-19T09:00:06", + "amountCrypto": 0.00020176, + "pricePerUnit": 543288, + "totalCost": 109.61, + "fee": 0.38499102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-19T09:00:06" + }, + { + "id": "937gwserguvwlb5vzh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-19T13:00:04", + "amountCrypto": 0.0002011, + "pricePerUnit": 545078, + "totalCost": 109.62, + "fee": 0.38499594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-19T13:00:04" + }, + { + "id": "12w8nzqemr7u2hhey3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-19T17:00:04", + "amountCrypto": 0.00019914, + "pricePerUnit": 550445, + "totalCost": 109.62, + "fee": 0.38499745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-19T17:00:04" + }, + { + "id": "ub3onkjoyfwtlbbwr5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-19T21:00:04", + "amountCrypto": 0.00020214, + "pricePerUnit": 542257, + "totalCost": 109.61, + "fee": 0.38498415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-19T21:00:04" + }, + { + "id": "0wbbzkij1rl3b4pe6q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-20T01:00:04", + "amountCrypto": 0.00020406, + "pricePerUnit": 537174, + "totalCost": 109.62, + "fee": 0.38499784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-20T01:00:04" + }, + { + "id": "tckhv1gmybkmif1qfm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-20T05:00:05", + "amountCrypto": 0.00020289, + "pricePerUnit": 540271, + "totalCost": 109.62, + "fee": 0.38499733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-20T05:00:05" + }, + { + "id": "41rlta1d7z1p34sro5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-20T09:00:04", + "amountCrypto": 0.0002017, + "pricePerUnit": 543458, + "totalCost": 109.62, + "fee": 0.38499696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-20T09:00:04" + }, + { + "id": "rjgxyplxm4mz4w323q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-20T13:00:04", + "amountCrypto": 0.00019831, + "pricePerUnit": 552733, + "totalCost": 109.61, + "fee": 0.38498644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-20T13:00:04" + }, + { + "id": "rrv8ydj0wqn4t2hoqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-20T17:00:04", + "amountCrypto": 0.00019791, + "pricePerUnit": 553858, + "totalCost": 109.61, + "fee": 0.3849919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-20T17:00:04" + }, + { + "id": "5lq5c46yulsj881wvb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-20T21:00:03", + "amountCrypto": 0.00019867, + "pricePerUnit": 551750, + "totalCost": 109.62, + "fee": 0.3849994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-20T21:00:03" + }, + { + "id": "2v128oindc1681poza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-21T01:00:06", + "amountCrypto": 0.00019874, + "pricePerUnit": 551547, + "totalCost": 109.61, + "fee": 0.38499335, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-21T01:00:06" + }, + { + "id": "3uqasn6k0k4pcig47y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-21T05:00:03", + "amountCrypto": 0.00019782, + "pricePerUnit": 554109, + "totalCost": 109.61, + "fee": 0.38499122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-21T05:00:03" + }, + { + "id": "h9p94v7dbexp5wcmyq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-21T09:00:03", + "amountCrypto": 0.00019721, + "pricePerUnit": 555809, + "totalCost": 109.61, + "fee": 0.38498156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-21T09:00:03" + }, + { + "id": "22e71vi6nun1zzauhk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-21T13:00:04", + "amountCrypto": 0.00020038, + "pricePerUnit": 547040, + "totalCost": 109.62, + "fee": 0.38499836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-21T13:00:04" + }, + { + "id": "7pwifokucq46tbmjl4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-21T17:00:04", + "amountCrypto": 0.00020091, + "pricePerUnit": 545593, + "totalCost": 109.62, + "fee": 0.3849956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-21T17:00:04" + }, + { + "id": "hga54npf86gyzhm0e9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-21T21:00:03", + "amountCrypto": 0.00019986, + "pricePerUnit": 548451, + "totalCost": 109.61, + "fee": 0.38498972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-21T21:00:03" + }, + { + "id": "xelg3p36nodmbyix9n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-22T01:00:04", + "amountCrypto": 0.00020147, + "pricePerUnit": 544062, + "totalCost": 109.61, + "fee": 0.38498535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-22T01:00:04" + }, + { + "id": "q38ittf561qxs1tkb4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-22T05:00:04", + "amountCrypto": 0.00020336, + "pricePerUnit": 539017, + "totalCost": 109.61, + "fee": 0.38499352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-22T05:00:04" + }, + { + "id": "ukdllxh1eouke9dmhe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-22T09:00:03", + "amountCrypto": 0.00020441, + "pricePerUnit": 536237, + "totalCost": 109.61, + "fee": 0.38498547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-22T09:00:03" + }, + { + "id": "jaubymaqem67dgjmop", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-22T13:00:04", + "amountCrypto": 0.00020326, + "pricePerUnit": 539265, + "totalCost": 109.61, + "fee": 0.38498125, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-22T13:00:04" + }, + { + "id": "aw44tc5l7qvgt5i8xl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-22T17:00:06", + "amountCrypto": 0.00020713, + "pricePerUnit": 529192, + "totalCost": 109.61, + "fee": 0.38498313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-22T17:00:06" + }, + { + "id": "qery6lrovlwn09mi70", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-22T21:00:03", + "amountCrypto": 0.00020572, + "pricePerUnit": 532836, + "totalCost": 109.62, + "fee": 0.38499536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-22T21:00:03" + }, + { + "id": "jdivone5xc7omc42vn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-23T01:00:03", + "amountCrypto": 0.00020268, + "pricePerUnit": 540817, + "totalCost": 109.61, + "fee": 0.38498752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-23T01:00:03" + }, + { + "id": "w1cn13mfztyy7vsbgt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-23T05:00:04", + "amountCrypto": 0.00020076, + "pricePerUnit": 545982, + "totalCost": 109.61, + "fee": 0.38498245, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-23T05:00:04" + }, + { + "id": "30caqq3ypji5897q3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-23T09:00:04", + "amountCrypto": 0.0002012, + "pricePerUnit": 544810, + "totalCost": 109.62, + "fee": 0.384998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-23T09:00:04" + }, + { + "id": "rm4vr6qdyd2m8l8ek2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-23T13:00:05", + "amountCrypto": 0.00020593, + "pricePerUnit": 532299, + "totalCost": 109.62, + "fee": 0.38499997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-23T13:00:05" + }, + { + "id": "0kacrmbknideqze588", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-23T17:00:04", + "amountCrypto": 0.00020442, + "pricePerUnit": 536215, + "totalCost": 109.61, + "fee": 0.38498851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-23T17:00:04" + }, + { + "id": "1iga1xo2dgkzdjdysn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-23T21:00:04", + "amountCrypto": 0.0002043, + "pricePerUnit": 536537, + "totalCost": 109.61, + "fee": 0.38499356, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-23T21:00:04" + }, + { + "id": "wrkhtco0qubjqlc9rs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-24T01:00:05", + "amountCrypto": 0.00020472, + "pricePerUnit": 535443, + "totalCost": 109.62, + "fee": 0.38499841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-24T01:00:05" + }, + { + "id": "px2ynctbf0ov19vprw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-24T05:00:04", + "amountCrypto": 0.00020456, + "pricePerUnit": 535858, + "totalCost": 109.62, + "fee": 0.38499568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-24T05:00:04" + }, + { + "id": "8tr7yzvy9oq6eq1jh9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-24T09:00:04", + "amountCrypto": 0.00020546, + "pricePerUnit": 533513, + "totalCost": 109.62, + "fee": 0.38499732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-24T09:00:04" + }, + { + "id": "pqsiff2pgt6m9cf3ms", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-24T13:00:05", + "amountCrypto": 0.00020493, + "pricePerUnit": 534886, + "totalCost": 109.61, + "fee": 0.38499243, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-24T13:00:05" + }, + { + "id": "l70vsci4ajckp6lq5l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-27T17:00:04", + "amountCrypto": 0.00020827, + "pricePerUnit": 526297, + "totalCost": 109.61, + "fee": 0.38498431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-27T17:00:04" + }, + { + "id": "hhnujdbq16ubptyt8b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-27T21:00:04", + "amountCrypto": 0.0002109, + "pricePerUnit": 519752, + "totalCost": 109.62, + "fee": 0.38499773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-27T21:00:04" + }, + { + "id": "2vsfetuy37wkrxzrpn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-28T01:00:04", + "amountCrypto": 0.00020905, + "pricePerUnit": 524347, + "totalCost": 109.61, + "fee": 0.38499437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-28T01:00:04" + }, + { + "id": "63cyvarl0c0rwdxs7o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-28T05:00:04", + "amountCrypto": 0.000209, + "pricePerUnit": 524470, + "totalCost": 109.61, + "fee": 0.38499258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-28T05:00:04" + }, + { + "id": "gxzrbaeoz6oqueicnb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-28T09:00:03", + "amountCrypto": 0.00021107, + "pricePerUnit": 519326, + "totalCost": 109.61, + "fee": 0.38499226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-28T09:00:03" + }, + { + "id": "3fnxl5885qbhyguvtc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-28T13:00:03", + "amountCrypto": 0.00021066, + "pricePerUnit": 520331, + "totalCost": 109.61, + "fee": 0.38498801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-28T13:00:03" + }, + { + "id": "6kv8dl5thcsvpoug4t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-28T17:00:03", + "amountCrypto": 0.00021019, + "pricePerUnit": 521498, + "totalCost": 109.61, + "fee": 0.38499059, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-28T17:00:03" + }, + { + "id": "99g7tnapbraikd6a3p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-02-28T21:00:04", + "amountCrypto": 0.00021164, + "pricePerUnit": 517919, + "totalCost": 109.61, + "fee": 0.38498607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-02-28T21:00:04" + }, + { + "id": "6f58cfqrqoqrusduy0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-01T01:00:04", + "amountCrypto": 0.00021266, + "pricePerUnit": 515446, + "totalCost": 109.61, + "fee": 0.38499439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-01T01:00:04" + }, + { + "id": "5bx1gfrce5d3i6ylrx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-01T05:00:04", + "amountCrypto": 0.00021041, + "pricePerUnit": 520941, + "totalCost": 109.61, + "fee": 0.38498192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-01T05:00:04" + }, + { + "id": "e4vxguxzaalqe849c0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-01T09:00:05", + "amountCrypto": 0.00020882, + "pricePerUnit": 524929, + "totalCost": 109.62, + "fee": 0.38499765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-01T09:00:05" + }, + { + "id": "l9aa68podqwb3gfq5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-01T13:00:04", + "amountCrypto": 0.0002099, + "pricePerUnit": 522209, + "totalCost": 109.61, + "fee": 0.38498358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-01T13:00:04" + }, + { + "id": "j162fiu7cmoo6h8op8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-01T17:00:04", + "amountCrypto": 0.00021054, + "pricePerUnit": 520639, + "totalCost": 109.62, + "fee": 0.38499646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-01T17:00:04" + }, + { + "id": "3e09ffh1id6ad2ei2d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-01T21:00:04", + "amountCrypto": 0.00021339, + "pricePerUnit": 513679, + "totalCost": 109.61, + "fee": 0.38499164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-01T21:00:04" + }, + { + "id": "2k8xp7d16e6cod33sb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-02T01:00:04", + "amountCrypto": 0.00021135, + "pricePerUnit": 518638, + "totalCost": 109.61, + "fee": 0.38499227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-02T01:00:04" + }, + { + "id": "ly1ku79apu8rpf2b9p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-02T05:00:04", + "amountCrypto": 0.0002121, + "pricePerUnit": 516812, + "totalCost": 109.62, + "fee": 0.38499818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-02T05:00:04" + }, + { + "id": "e72jo05we491piakvi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-02T13:00:04", + "amountCrypto": 0.00021144, + "pricePerUnit": 518404, + "totalCost": 109.61, + "fee": 0.38498244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-02T13:00:04" + }, + { + "id": "wvzsrw0kzeobifqjxf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-02T17:00:04", + "amountCrypto": 0.00021196, + "pricePerUnit": 517138, + "totalCost": 109.61, + "fee": 0.38498675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-02T17:00:04" + }, + { + "id": "hperwrpp54rgrudpnc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-02T21:00:04", + "amountCrypto": 0.00021088, + "pricePerUnit": 519780, + "totalCost": 109.61, + "fee": 0.38498196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-02T21:00:04" + }, + { + "id": "ywhal9xqayelyjerw6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-03T01:00:04", + "amountCrypto": 0.000211, + "pricePerUnit": 519499, + "totalCost": 109.61, + "fee": 0.38499279, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-03T01:00:04" + }, + { + "id": "qq65mwmmegimpqd8bx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-03T05:00:04", + "amountCrypto": 0.00022182, + "pricePerUnit": 494161, + "totalCost": 109.61, + "fee": 0.38499456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-03T05:00:04" + }, + { + "id": "3bowg0n2znluvyxdiy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-03T09:00:03", + "amountCrypto": 0.00022157, + "pricePerUnit": 494725, + "totalCost": 109.62, + "fee": 0.38499956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-03T09:00:03" + }, + { + "id": "mepq2rn7gq7s61fs84", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-03T13:00:04", + "amountCrypto": 0.00022106, + "pricePerUnit": 495846, + "totalCost": 109.61, + "fee": 0.38498375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-03T13:00:04" + }, + { + "id": "z0mi6b6uul4dvysjre", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-03T17:00:04", + "amountCrypto": 0.00022124, + "pricePerUnit": 495451, + "totalCost": 109.61, + "fee": 0.38499029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2411", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-03T17:00:04" + }, + { + "id": "tho5uo29b092vm1q5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-03T21:00:04", + "amountCrypto": 0.00022166, + "pricePerUnit": 494510, + "totalCost": 109.61, + "fee": 0.38498856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-03T21:00:04" + }, + { + "id": "ejh3l9rtxf0ju472kp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-04T01:00:04", + "amountCrypto": 0.00022199, + "pricePerUnit": 493787, + "totalCost": 109.62, + "fee": 0.38499801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-04T01:00:04" + }, + { + "id": "mzl3n0c564469d9k76", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-04T05:00:04", + "amountCrypto": 0.00022153, + "pricePerUnit": 494808, + "totalCost": 109.61, + "fee": 0.38499464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-04T05:00:04" + }, + { + "id": "phi0as5akn497od1n7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-04T09:00:04", + "amountCrypto": 0.00022135, + "pricePerUnit": 495212, + "totalCost": 109.62, + "fee": 0.3849959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-04T09:00:04" + }, + { + "id": "4gj4zmkxnp6gucmw0e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-04T13:00:04", + "amountCrypto": 0.0002215, + "pricePerUnit": 494863, + "totalCost": 109.61, + "fee": 0.38498529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-04T13:00:04" + }, + { + "id": "bnutvvha5v2rrdtfbs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-04T17:00:04", + "amountCrypto": 0.00022169, + "pricePerUnit": 494440, + "totalCost": 109.61, + "fee": 0.38498616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-04T17:00:04" + }, + { + "id": "pff4y0g0ycuuegogfj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-04T21:00:03", + "amountCrypto": 0.00022243, + "pricePerUnit": 492796, + "totalCost": 109.61, + "fee": 0.3849869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-04T21:00:03" + }, + { + "id": "ahl86pv315voxcqkgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-05T01:00:05", + "amountCrypto": 0.00022144, + "pricePerUnit": 495008, + "totalCost": 109.61, + "fee": 0.38499378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-05T01:00:05" + }, + { + "id": "i5rj7jqhtwa6viptgf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-05T05:00:04", + "amountCrypto": 0.00022112, + "pricePerUnit": 495724, + "totalCost": 109.61, + "fee": 0.3849935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-05T05:00:04" + }, + { + "id": "n2r1uc4ccdoiu39ox6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-05T09:00:04", + "amountCrypto": 0.00022117, + "pricePerUnit": 495619, + "totalCost": 109.62, + "fee": 0.38499899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-05T09:00:04" + }, + { + "id": "1j3gv35ppavqsl1fg8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-05T13:00:04", + "amountCrypto": 0.00022099, + "pricePerUnit": 496013, + "totalCost": 109.61, + "fee": 0.38499147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-05T13:00:04" + }, + { + "id": "jr6kvvcoopukzktndc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-05T17:00:03", + "amountCrypto": 0.00022062, + "pricePerUnit": 496843, + "totalCost": 109.61, + "fee": 0.38499002, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-05T17:00:03" + }, + { + "id": "zb2t493e9kgzz06v7e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-05T21:00:03", + "amountCrypto": 0.00022086, + "pricePerUnit": 496311, + "totalCost": 109.62, + "fee": 0.38499615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-05T21:00:03" + }, + { + "id": "ppqu3eeq3mxhjiy6d4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-06T01:00:04", + "amountCrypto": 0.00022063, + "pricePerUnit": 496833, + "totalCost": 109.62, + "fee": 0.38499973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-06T01:00:04" + }, + { + "id": "9epy5v9sriwhhflrux", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-06T05:00:04", + "amountCrypto": 0.00022124, + "pricePerUnit": 495457, + "totalCost": 109.61, + "fee": 0.38499496, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-06T05:00:04" + }, + { + "id": "86q0bbxeocaz0cmjdz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-06T09:00:04", + "amountCrypto": 0.00022124, + "pricePerUnit": 495451, + "totalCost": 109.61, + "fee": 0.38499029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-06T09:00:04" + }, + { + "id": "r4fs2z7nh337syl949", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-06T13:00:04", + "amountCrypto": 0.00022104, + "pricePerUnit": 495895, + "totalCost": 109.61, + "fee": 0.38498696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-06T13:00:04" + }, + { + "id": "um425ifu0szltz1frd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-06T17:00:04", + "amountCrypto": 0.00022007, + "pricePerUnit": 498075, + "totalCost": 109.61, + "fee": 0.38498252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-06T17:00:04" + }, + { + "id": "g47jupsmi930dezbm2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-06T21:00:04", + "amountCrypto": 0.00022131, + "pricePerUnit": 495286, + "totalCost": 109.61, + "fee": 0.38498385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-06T21:00:04" + }, + { + "id": "qzj04wztvwx9sss0w9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-07T01:00:04", + "amountCrypto": 0.00022136, + "pricePerUnit": 495176, + "totalCost": 109.61, + "fee": 0.38498531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-07T01:00:04" + }, + { + "id": "gs3bzetaavwq5zmra3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-03-07T05:00:04", + "amountCrypto": 0.00022091, + "pricePerUnit": 496183, + "totalCost": 109.61, + "fee": 0.384984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-03-07T05:00:04" + }, + { + "id": "c3u6kgje88qa5d9uug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-03T18:00:04", + "amountCrypto": 0.00018098, + "pricePerUnit": 605661, + "totalCost": 109.61, + "fee": 0.3849866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-03T18:00:04" + }, + { + "id": "4u67a36bcn0mjuelkt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-04T02:00:04", + "amountCrypto": 0.00018288, + "pricePerUnit": 599372, + "totalCost": 109.61, + "fee": 0.38498879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-04T02:00:04" + }, + { + "id": "lf2r6bilw4r0s2t0tx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-04T06:00:04", + "amountCrypto": 0.00018227, + "pricePerUnit": 601366, + "totalCost": 109.61, + "fee": 0.38498117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-04T06:00:04" + }, + { + "id": "ij862r6ujpzh465qf2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-04T10:00:04", + "amountCrypto": 0.00018196, + "pricePerUnit": 602418, + "totalCost": 109.62, + "fee": 0.38499872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-04T10:00:04" + }, + { + "id": "jywwixtbkth308sg75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-04T14:00:04", + "amountCrypto": 0.00018, + "pricePerUnit": 608950, + "totalCost": 109.61, + "fee": 0.38498123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-04T14:00:04" + }, + { + "id": "1y2oysf82avx03s0pb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-04T18:00:04", + "amountCrypto": 0.00018207, + "pricePerUnit": 602050, + "totalCost": 109.62, + "fee": 0.38499614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-04T18:00:04" + }, + { + "id": "qi19hnm5t5n0bbth1l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-04T22:00:03", + "amountCrypto": 0.00018112, + "pricePerUnit": 605194, + "totalCost": 109.61, + "fee": 0.38498734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-04T22:00:03" + }, + { + "id": "15bpvsm9huc75rgaev", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-05T02:00:04", + "amountCrypto": 0.0001813, + "pricePerUnit": 604610, + "totalCost": 109.62, + "fee": 0.38499807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-05T02:00:04" + }, + { + "id": "sq1ikzsu7d8os8wc3c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-05T06:00:04", + "amountCrypto": 0.0001789, + "pricePerUnit": 612708, + "totalCost": 109.61, + "fee": 0.38498988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-05T06:00:04" + }, + { + "id": "rhfsisfiq1qzc3m0mq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-05T10:00:05", + "amountCrypto": 0.00017921, + "pricePerUnit": 611636, + "totalCost": 109.61, + "fee": 0.38498224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-05T10:00:05" + }, + { + "id": "22nqfr4smasb4esk1y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-05T14:00:03", + "amountCrypto": 0.00017905, + "pricePerUnit": 612178, + "totalCost": 109.61, + "fee": 0.38497938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-05T14:00:03" + }, + { + "id": "ic8fyvqrayl6hzm79a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-05T18:00:06", + "amountCrypto": 0.00018176, + "pricePerUnit": 603076, + "totalCost": 109.62, + "fee": 0.38499561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-05T18:00:06" + }, + { + "id": "q62ki3ob0t673nxd38", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-05T22:00:03", + "amountCrypto": 0.00018024, + "pricePerUnit": 608168, + "totalCost": 109.62, + "fee": 0.3849995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-05T22:00:03" + }, + { + "id": "2ch5gd363pcgfov60o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-06T02:00:04", + "amountCrypto": 0.00018074, + "pricePerUnit": 606486, + "totalCost": 109.62, + "fee": 0.38499978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-06T02:00:04" + }, + { + "id": "hq0ofgw4lxn9zwsre1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-06T06:00:03", + "amountCrypto": 0.00018085, + "pricePerUnit": 606095, + "totalCost": 109.61, + "fee": 0.38498573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-06T06:00:03" + }, + { + "id": "5sdwkj0337yru0o3x7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-06T10:00:04", + "amountCrypto": 0.00018261, + "pricePerUnit": 600254, + "totalCost": 109.61, + "fee": 0.38498609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-06T10:00:04" + }, + { + "id": "nnj2l8divqblxivr8d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-06T14:00:04", + "amountCrypto": 0.00018247, + "pricePerUnit": 600717, + "totalCost": 109.61, + "fee": 0.38498767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-06T14:00:04" + }, + { + "id": "vdab6ldfvcwn3v0w5b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-06T18:00:04", + "amountCrypto": 0.00018169, + "pricePerUnit": 603292, + "totalCost": 109.61, + "fee": 0.38498518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-06T18:00:04" + }, + { + "id": "6r88zw1xf455c52vsa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-06T22:00:04", + "amountCrypto": 0.00018225, + "pricePerUnit": 601459, + "totalCost": 109.62, + "fee": 0.38499845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-06T22:00:04" + }, + { + "id": "joww792bqt9asqxdq2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-07T02:00:03", + "amountCrypto": 0.00018168, + "pricePerUnit": 603336, + "totalCost": 109.61, + "fee": 0.38499207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-07T02:00:03" + }, + { + "id": "a00fln4wrtn7kj869e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-07T06:00:04", + "amountCrypto": 0.00018202, + "pricePerUnit": 602219, + "totalCost": 109.62, + "fee": 0.38499845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-07T06:00:04" + }, + { + "id": "u1driby9gy10svj42e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-07T10:00:07", + "amountCrypto": 0.00018291, + "pricePerUnit": 599261, + "totalCost": 109.61, + "fee": 0.38498064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-07T10:00:07" + }, + { + "id": "h0sahcrq0hi50iggxj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-07T14:00:04", + "amountCrypto": 0.00018281, + "pricePerUnit": 599617, + "totalCost": 109.62, + "fee": 0.38499874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-07T14:00:04" + }, + { + "id": "zjh2ypg6x1fu29xyx2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-07T18:00:03", + "amountCrypto": 0.00018241, + "pricePerUnit": 600921, + "totalCost": 109.61, + "fee": 0.38499177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-07T18:00:03" + }, + { + "id": "f78r3zwt5di3xvv3s6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-07T22:00:04", + "amountCrypto": 0.00018247, + "pricePerUnit": 600732, + "totalCost": 109.62, + "fee": 0.38499728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-07T22:00:04" + }, + { + "id": "oba5k7h4q90ctzfbl2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-08T02:00:05", + "amountCrypto": 0.00018229, + "pricePerUnit": 601311, + "totalCost": 109.61, + "fee": 0.3849882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-08T02:00:05" + }, + { + "id": "se6z3s8ecwr8jba5if", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-08T06:00:04", + "amountCrypto": 0.00018155, + "pricePerUnit": 603776, + "totalCost": 109.62, + "fee": 0.38499716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-08T06:00:04" + }, + { + "id": "b19sv2qun7wls8p8pz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-08T10:00:03", + "amountCrypto": 0.00018105, + "pricePerUnit": 605445, + "totalCost": 109.62, + "fee": 0.38499815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-08T10:00:03" + }, + { + "id": "7a710f3ppq1w0p7tlh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-08T14:00:03", + "amountCrypto": 0.00018147, + "pricePerUnit": 604021, + "totalCost": 109.61, + "fee": 0.38498366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-08T14:00:03" + }, + { + "id": "nyhz9e6uo4h19nzh0o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-08T18:00:05", + "amountCrypto": 0.00018143, + "pricePerUnit": 604173, + "totalCost": 109.62, + "fee": 0.38499566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-08T18:00:05" + }, + { + "id": "4y56lq1j3mwur1ly8e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-08T22:00:04", + "amountCrypto": 0.00018207, + "pricePerUnit": 602041, + "totalCost": 109.61, + "fee": 0.38499038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-08T22:00:04" + }, + { + "id": "yge0243k3c9b9reah8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-09T02:00:05", + "amountCrypto": 0.00018187, + "pricePerUnit": 602697, + "totalCost": 109.61, + "fee": 0.38498652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-09T02:00:05" + }, + { + "id": "0p0cs61noqlrzalqbe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-09T06:00:04", + "amountCrypto": 0.00018131, + "pricePerUnit": 604550, + "totalCost": 109.61, + "fee": 0.3849811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-09T06:00:04" + }, + { + "id": "yctca24p2j9pwnoxnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-09T10:00:03", + "amountCrypto": 0.00018242, + "pricePerUnit": 600880, + "totalCost": 109.61, + "fee": 0.38498661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-09T10:00:03" + }, + { + "id": "di6zpit21dij33eh7x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-09T14:00:04", + "amountCrypto": 0.00018242, + "pricePerUnit": 600880, + "totalCost": 109.61, + "fee": 0.38498661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-09T14:00:04" + }, + { + "id": "qxl78rc8jw850rgofg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-09T18:00:04", + "amountCrypto": 0.00018254, + "pricePerUnit": 600484, + "totalCost": 109.61, + "fee": 0.38498597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-09T18:00:04" + }, + { + "id": "1ouy4dl3glomxl52a0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-09T22:00:05", + "amountCrypto": 0.00018101, + "pricePerUnit": 605556, + "totalCost": 109.61, + "fee": 0.38498362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-09T22:00:05" + }, + { + "id": "o2gqo5klckg1wj3glh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-10T02:00:04", + "amountCrypto": 0.00017993, + "pricePerUnit": 609185, + "totalCost": 109.61, + "fee": 0.38498003, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-10T02:00:04" + }, + { + "id": "v5v8jhg2nyifb00fta", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-10T06:00:04", + "amountCrypto": 0.00018019, + "pricePerUnit": 608328, + "totalCost": 109.61, + "fee": 0.38499396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-10T06:00:04" + }, + { + "id": "n5wefjomp30smnkgcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-10T10:00:03", + "amountCrypto": 0.00018067, + "pricePerUnit": 606704, + "totalCost": 109.61, + "fee": 0.384989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2637", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-10T10:00:03" + }, + { + "id": "7qsbefxbnm4b2qztnd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-10T14:00:03", + "amountCrypto": 0.0001803, + "pricePerUnit": 607954, + "totalCost": 109.61, + "fee": 0.38499214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2638", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-10T14:00:03" + }, + { + "id": "nvoba3av5kv4fpbxsb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-10T18:00:04", + "amountCrypto": 0.00017856, + "pricePerUnit": 613885, + "totalCost": 109.62, + "fee": 0.38499636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2639", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-10T18:00:04" + }, + { + "id": "kblxqy8szyclifqnhv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-10T22:00:03", + "amountCrypto": 0.00017454, + "pricePerUnit": 627999, + "totalCost": 109.61, + "fee": 0.38498104, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2640", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-10T22:00:03" + }, + { + "id": "d6flo1mkh89sk1lned", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-11T02:00:03", + "amountCrypto": 0.00017185, + "pricePerUnit": 637857, + "totalCost": 109.62, + "fee": 0.38499783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2641", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-11T02:00:03" + }, + { + "id": "jip4xf22rmg0amhdx6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-11T06:00:03", + "amountCrypto": 0.00016938, + "pricePerUnit": 647125, + "totalCost": 109.61, + "fee": 0.38497784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2642", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-11T06:00:03" + }, + { + "id": "yqj60762hkvp6hr2iw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-11T10:00:03", + "amountCrypto": 0.00016946, + "pricePerUnit": 646855, + "totalCost": 109.62, + "fee": 0.38499897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2643", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-11T10:00:03" + }, + { + "id": "gaf9f26nuraf49blsv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-11T14:00:04", + "amountCrypto": 0.00016936, + "pricePerUnit": 647218, + "totalCost": 109.61, + "fee": 0.3849877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2644", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-11T14:00:04" + }, + { + "id": "67jd35wno0wdfguz9c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-11T18:00:05", + "amountCrypto": 0.00016865, + "pricePerUnit": 649937, + "totalCost": 109.61, + "fee": 0.38498431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2645", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-11T18:00:05" + }, + { + "id": "4vt5c1g6rxua9hqlsf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-11T22:00:04", + "amountCrypto": 0.00016898, + "pricePerUnit": 648670, + "totalCost": 109.61, + "fee": 0.38498565, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2646", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-11T22:00:04" + }, + { + "id": "5x5cmzcry7v2quqntk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-12T02:00:04", + "amountCrypto": 0.00016866, + "pricePerUnit": 649898, + "totalCost": 109.61, + "fee": 0.38498403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2647", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-12T02:00:04" + }, + { + "id": "e11mbytjnbla6sge8b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-12T06:00:04", + "amountCrypto": 0.00017033, + "pricePerUnit": 643552, + "totalCost": 109.62, + "fee": 0.38499954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2648", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-12T06:00:04" + }, + { + "id": "355rnd3f1y5x0sg7hv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-12T14:00:03", + "amountCrypto": 0.00016981, + "pricePerUnit": 645500, + "totalCost": 109.61, + "fee": 0.38498599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-12T14:00:03" + }, + { + "id": "f5saytvmz0b7t3hled", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-12T18:00:04", + "amountCrypto": 0.00017153, + "pricePerUnit": 639016, + "totalCost": 109.61, + "fee": 0.38497918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-12T18:00:04" + }, + { + "id": "n5s9y62glun23rvufv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-12T22:00:03", + "amountCrypto": 0.00017291, + "pricePerUnit": 633942, + "totalCost": 109.61, + "fee": 0.38499497, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-12T22:00:03" + }, + { + "id": "9dklni92fbp5024qpy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-13T02:00:03", + "amountCrypto": 0.00017246, + "pricePerUnit": 635578, + "totalCost": 109.61, + "fee": 0.38498398, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-13T02:00:03" + }, + { + "id": "xu0c1u316sjzrjfonu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-13T06:00:04", + "amountCrypto": 0.0001712, + "pricePerUnit": 640268, + "totalCost": 109.61, + "fee": 0.38499136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-13T06:00:04" + }, + { + "id": "8yxsy0254l1ci19u21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-13T10:00:03", + "amountCrypto": 0.00017111, + "pricePerUnit": 640609, + "totalCost": 109.61, + "fee": 0.3849939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-13T10:00:03" + }, + { + "id": "ttrhydfiievsik237i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-13T14:00:04", + "amountCrypto": 0.00017128, + "pricePerUnit": 639978, + "totalCost": 109.62, + "fee": 0.3849968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-13T14:00:04" + }, + { + "id": "tc5j37rmesshidgon6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-13T18:00:04", + "amountCrypto": 0.00017077, + "pricePerUnit": 641891, + "totalCost": 109.62, + "fee": 0.38499783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-13T18:00:04" + }, + { + "id": "fzgnygk20pkzhldyig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-13T22:00:04", + "amountCrypto": 0.00017142, + "pricePerUnit": 639451, + "totalCost": 109.61, + "fee": 0.3849942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-13T22:00:04" + }, + { + "id": "koa3w4vhy01dr2bj0y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-14T02:00:04", + "amountCrypto": 0.00017115, + "pricePerUnit": 640449, + "totalCost": 109.61, + "fee": 0.38498772, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-14T02:00:04" + }, + { + "id": "t0ugcz847hp8ukm0qj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-14T06:00:05", + "amountCrypto": 0.00016968, + "pricePerUnit": 646017, + "totalCost": 109.62, + "fee": 0.38499937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-14T06:00:05" + }, + { + "id": "zsurmul733anvquer6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-14T10:00:05", + "amountCrypto": 0.00016918, + "pricePerUnit": 647918, + "totalCost": 109.61, + "fee": 0.38499447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-14T10:00:05" + }, + { + "id": "t5ezraekk930if0pk6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-14T14:00:04", + "amountCrypto": 0.00016795, + "pricePerUnit": 652636, + "totalCost": 109.61, + "fee": 0.38497848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-14T14:00:04" + }, + { + "id": "cp26h3gk6llkb4a29o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-14T18:00:04", + "amountCrypto": 0.00017039, + "pricePerUnit": 643290, + "totalCost": 109.61, + "fee": 0.38497837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-14T18:00:04" + }, + { + "id": "tr4q8vrsmcrscwpp72", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-14T22:00:04", + "amountCrypto": 0.00016982, + "pricePerUnit": 645450, + "totalCost": 109.61, + "fee": 0.38497884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-14T22:00:04" + }, + { + "id": "1mp2qg90tlpbi6uae7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-15T02:00:04", + "amountCrypto": 0.00016912, + "pricePerUnit": 648130, + "totalCost": 109.61, + "fee": 0.38498385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-15T02:00:04" + }, + { + "id": "zbmioey7fn48g0fr3q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-15T06:00:04", + "amountCrypto": 0.00016953, + "pricePerUnit": 646580, + "totalCost": 109.61, + "fee": 0.38499426, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-15T06:00:04" + }, + { + "id": "yrncmknxuaipjo1yc6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-15T10:00:05", + "amountCrypto": 0.00016922, + "pricePerUnit": 647760, + "totalCost": 109.61, + "fee": 0.38499159, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-15T10:00:05" + }, + { + "id": "q0jk1wetx7dw7jza0l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-15T14:00:03", + "amountCrypto": 0.00016904, + "pricePerUnit": 648426, + "totalCost": 109.61, + "fee": 0.38497748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-15T14:00:03" + }, + { + "id": "rs6blkmiyczlic2pjn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-15T18:00:05", + "amountCrypto": 0.00016934, + "pricePerUnit": 647285, + "totalCost": 109.61, + "fee": 0.38498208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-15T18:00:05" + }, + { + "id": "fx0yg6lld50u0ar9m1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-15T22:00:03", + "amountCrypto": 0.00016935, + "pricePerUnit": 647246, + "totalCost": 109.61, + "fee": 0.38498162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-15T22:00:03" + }, + { + "id": "mvwr02hzvjupxu61k9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-16T02:00:04", + "amountCrypto": 0.00016924, + "pricePerUnit": 647690, + "totalCost": 109.62, + "fee": 0.38499548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-16T02:00:04" + }, + { + "id": "p1kpygmglfwib4fls5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-16T06:00:03", + "amountCrypto": 0.00016941, + "pricePerUnit": 647010, + "totalCost": 109.61, + "fee": 0.3849776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-16T06:00:03" + }, + { + "id": "u0ugfajj0nq4rqjt5w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-16T10:00:04", + "amountCrypto": 0.0001689, + "pricePerUnit": 649000, + "totalCost": 109.62, + "fee": 0.38499915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-16T10:00:04" + }, + { + "id": "1o3lpgpt8a70em2lpi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-16T14:00:04", + "amountCrypto": 0.00016922, + "pricePerUnit": 647746, + "totalCost": 109.61, + "fee": 0.38498327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-16T14:00:04" + }, + { + "id": "d68x68oo8jmq9457y9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-16T18:00:03", + "amountCrypto": 0.00016824, + "pricePerUnit": 651510, + "totalCost": 109.61, + "fee": 0.38497787, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-16T18:00:03" + }, + { + "id": "oy63t3ij1j5ecugm48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-16T22:00:04", + "amountCrypto": 0.00016867, + "pricePerUnit": 649859, + "totalCost": 109.61, + "fee": 0.38498375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-16T22:00:04" + }, + { + "id": "fm2o9cysc4f6yk9s24", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-17T02:00:05", + "amountCrypto": 0.00016895, + "pricePerUnit": 648782, + "totalCost": 109.61, + "fee": 0.38498376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2677", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-17T02:00:05" + }, + { + "id": "7t8c4mrxa8px8z8woz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-17T06:04:45", + "amountCrypto": 0.00017068, + "pricePerUnit": 642202, + "totalCost": 109.61, + "fee": 0.38498137, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-17T06:04:45" + }, + { + "id": "yy6hlmsb7jepa3m42v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-17T10:00:04", + "amountCrypto": 0.00017008, + "pricePerUnit": 644493, + "totalCost": 109.62, + "fee": 0.38499658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2679", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-17T10:00:04" + }, + { + "id": "pd7x4x5rcl5ol5sxy0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-17T14:00:03", + "amountCrypto": 0.00017316, + "pricePerUnit": 633007, + "totalCost": 109.61, + "fee": 0.38498296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2680", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-17T14:00:03" + }, + { + "id": "4zx8rv18b7s6oxcewc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-17T18:00:03", + "amountCrypto": 0.00017242, + "pricePerUnit": 635715, + "totalCost": 109.61, + "fee": 0.38497771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2681", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-17T18:00:03" + }, + { + "id": "7t8zbao3vq3x39oi90", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-17T22:00:04", + "amountCrypto": 0.00017103, + "pricePerUnit": 640892, + "totalCost": 109.61, + "fee": 0.3849839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2682", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-17T22:00:04" + }, + { + "id": "i8k808d7hsypxtzsiu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-18T02:00:05", + "amountCrypto": 0.00017198, + "pricePerUnit": 637347, + "totalCost": 109.61, + "fee": 0.38498101, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2683", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-18T02:00:05" + }, + { + "id": "9x5jnkqv6b6uzhm2t7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-18T06:00:04", + "amountCrypto": 0.00017263, + "pricePerUnit": 634965, + "totalCost": 109.61, + "fee": 0.3849918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2684", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-18T06:00:04" + }, + { + "id": "vg1srneylj0fmawlze", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-18T10:00:03", + "amountCrypto": 0.00017127, + "pricePerUnit": 639999, + "totalCost": 109.61, + "fee": 0.38498696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2685", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-18T10:00:03" + }, + { + "id": "6ofimfweol34a7x503", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-18T14:00:04", + "amountCrypto": 0.0001689, + "pricePerUnit": 649000, + "totalCost": 109.62, + "fee": 0.38499915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2686", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-18T14:00:04" + }, + { + "id": "qar2ltc3nusm4in3r7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-18T18:00:04", + "amountCrypto": 0.00016947, + "pricePerUnit": 646799, + "totalCost": 109.61, + "fee": 0.38498835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2687", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-18T18:00:04" + }, + { + "id": "fwh7nmi4bhof7yvzyd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-18T22:00:03", + "amountCrypto": 0.0001696, + "pricePerUnit": 646309, + "totalCost": 109.61, + "fee": 0.38499179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2688", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-18T22:00:03" + }, + { + "id": "h26abcfr6rac0xm7fq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-19T02:00:05", + "amountCrypto": 0.00016864, + "pricePerUnit": 650000, + "totalCost": 109.62, + "fee": 0.3849988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2689", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-19T02:00:05" + }, + { + "id": "jg19zmouwlzdfyew7n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-20T18:00:04", + "amountCrypto": 0.00017886, + "pricePerUnit": 612828, + "totalCost": 109.61, + "fee": 0.38497918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2699", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-20T18:00:04" + }, + { + "id": "wbpsnb85gru70w5huf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-20T22:00:04", + "amountCrypto": 0.00018163, + "pricePerUnit": 603486, + "totalCost": 109.61, + "fee": 0.3849818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2700", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-20T22:00:04" + }, + { + "id": "lic40vbzk6zswxm1hk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-21T02:00:04", + "amountCrypto": 0.00018073, + "pricePerUnit": 606507, + "totalCost": 109.61, + "fee": 0.38499181, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2701", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-21T02:00:04" + }, + { + "id": "h9an7hppzywah880tn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-21T06:00:03", + "amountCrypto": 0.00018035, + "pricePerUnit": 607777, + "totalCost": 109.61, + "fee": 0.38498679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2702", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-21T06:00:03" + }, + { + "id": "9nde572kimjsuw2e94", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-21T10:00:06", + "amountCrypto": 0.00018082, + "pricePerUnit": 606208, + "totalCost": 109.61, + "fee": 0.38499363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2703", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-21T10:00:06" + }, + { + "id": "u7ajqpeaptmud9g5mv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-21T14:00:04", + "amountCrypto": 0.00018035, + "pricePerUnit": 607777, + "totalCost": 109.61, + "fee": 0.38498679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2704", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-21T14:00:04" + }, + { + "id": "6jg8g2m29mii7342ro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-21T18:00:04", + "amountCrypto": 0.00018214, + "pricePerUnit": 601815, + "totalCost": 109.61, + "fee": 0.38499382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2705", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-21T18:00:04" + }, + { + "id": "80bcpnl1nd7lkdzhba", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-21T22:00:03", + "amountCrypto": 0.00018739, + "pricePerUnit": 584951, + "totalCost": 109.61, + "fee": 0.38499166, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2706", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-21T22:00:03" + }, + { + "id": "gw64u91xqcyb9qkyap", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-22T02:00:04", + "amountCrypto": 0.00018761, + "pricePerUnit": 584263, + "totalCost": 109.61, + "fee": 0.3849903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2707", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-22T02:00:04" + }, + { + "id": "9zvv9fg24a7ef1l00n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-22T06:00:05", + "amountCrypto": 0.00018723, + "pricePerUnit": 585442, + "totalCost": 109.61, + "fee": 0.38498582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2708", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-22T06:00:05" + }, + { + "id": "znkmt2ez2lpkjh3xk8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-22T10:00:04", + "amountCrypto": 0.00018684, + "pricePerUnit": 586677, + "totalCost": 109.61, + "fee": 0.38499434, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2709", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-22T10:00:04" + }, + { + "id": "dqpixl1zkeethucpny", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-22T14:00:04", + "amountCrypto": 0.00018685, + "pricePerUnit": 586633, + "totalCost": 109.61, + "fee": 0.38498607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2710", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-22T14:00:04" + }, + { + "id": "n1o8713n1lr1kctkir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-22T18:00:07", + "amountCrypto": 0.00018541, + "pricePerUnit": 591202, + "totalCost": 109.61, + "fee": 0.38499445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2711", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-22T18:00:07" + }, + { + "id": "c7vkxqei6vzp9a2dfv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-22T22:00:07", + "amountCrypto": 0.00018448, + "pricePerUnit": 594165, + "totalCost": 109.61, + "fee": 0.3849832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2712", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-22T22:00:07" + }, + { + "id": "hahnatjcexvb2bnpng", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-23T02:00:04", + "amountCrypto": 0.00018317, + "pricePerUnit": 598431, + "totalCost": 109.61, + "fee": 0.3849939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2713", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-23T02:00:04" + }, + { + "id": "x5rzbwbgsf6dpay9ph", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-23T06:00:03", + "amountCrypto": 0.0001851, + "pricePerUnit": 592184, + "totalCost": 109.61, + "fee": 0.38498917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2714", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-23T06:00:03" + }, + { + "id": "pxp9b7u3oie6lxrqee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-23T10:00:04", + "amountCrypto": 0.00018324, + "pricePerUnit": 598195, + "totalCost": 109.61, + "fee": 0.38498914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2715", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-23T10:00:04" + }, + { + "id": "xswbv3hwwurgdnft2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-23T14:00:05", + "amountCrypto": 0.00018392, + "pricePerUnit": 595998, + "totalCost": 109.62, + "fee": 0.38499863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2716", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-23T14:00:05" + }, + { + "id": "80b8z3crz1o6gywzfx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-23T18:00:06", + "amountCrypto": 0.00018489, + "pricePerUnit": 592855, + "totalCost": 109.61, + "fee": 0.38498812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2717", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-23T18:00:06" + }, + { + "id": "s29myd4v54w05ej5f3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-23T22:00:04", + "amountCrypto": 0.00018495, + "pricePerUnit": 592656, + "totalCost": 109.61, + "fee": 0.38498379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2718", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-23T22:00:04" + }, + { + "id": "ko316entugj71if4it", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-24T02:00:04", + "amountCrypto": 0.00018448, + "pricePerUnit": 594159, + "totalCost": 109.61, + "fee": 0.38497931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2719", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-24T02:00:04" + }, + { + "id": "krrbeo7ry8gstia8a3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-24T06:00:03", + "amountCrypto": 0.00018307, + "pricePerUnit": 598749, + "totalCost": 109.61, + "fee": 0.38498819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2720", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-24T06:00:03" + }, + { + "id": "7ga8b97wh9dwyqkl24", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-24T10:00:04", + "amountCrypto": 0.00018624, + "pricePerUnit": 588574, + "totalCost": 109.62, + "fee": 0.38499887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2721", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-24T10:00:04" + }, + { + "id": "ahrt55hent4n2d43i4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-24T14:00:05", + "amountCrypto": 0.00018624, + "pricePerUnit": 588575, + "totalCost": 109.62, + "fee": 0.38499953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2722", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-24T14:00:05" + }, + { + "id": "pipxgr22wwgbriknqy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-24T18:00:04", + "amountCrypto": 0.00018823, + "pricePerUnit": 582328, + "totalCost": 109.61, + "fee": 0.38498334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2723", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-24T18:00:04" + }, + { + "id": "8fis24w76dwfvlv8t9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-24T22:00:05", + "amountCrypto": 0.00018785, + "pricePerUnit": 583501, + "totalCost": 109.61, + "fee": 0.38498005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2724", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-24T22:00:05" + }, + { + "id": "vn0upl07bw2fv78pdj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-25T02:00:04", + "amountCrypto": 0.00018727, + "pricePerUnit": 585322, + "totalCost": 109.61, + "fee": 0.38498914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2725", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-25T02:00:04" + }, + { + "id": "j2nt4yczd5n15t8hwu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-25T06:00:04", + "amountCrypto": 0.00018824, + "pricePerUnit": 582306, + "totalCost": 109.61, + "fee": 0.38498925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2726", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-25T06:00:04" + }, + { + "id": "3ud4kdt0uy7hebcgrm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-25T10:00:04", + "amountCrypto": 0.0001886, + "pricePerUnit": 581195, + "totalCost": 109.61, + "fee": 0.38498958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2727", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-25T10:00:04" + }, + { + "id": "xd47kecgye24wlhr7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-25T14:00:04", + "amountCrypto": 0.00018712, + "pricePerUnit": 585796, + "totalCost": 109.61, + "fee": 0.38499229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2728", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-25T14:00:04" + }, + { + "id": "ard5ssbv01hicp8duh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-25T18:00:04", + "amountCrypto": 0.00018676, + "pricePerUnit": 586923, + "totalCost": 109.61, + "fee": 0.38499086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2729", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-25T18:00:04" + }, + { + "id": "cmith68te3tkbgsesq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-25T22:00:05", + "amountCrypto": 0.00018463, + "pricePerUnit": 593688, + "totalCost": 109.61, + "fee": 0.38498691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2730", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-25T22:00:05" + }, + { + "id": "zsff2c2m4x8zg0gnwu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-26T02:00:04", + "amountCrypto": 0.00018034, + "pricePerUnit": 607805, + "totalCost": 109.61, + "fee": 0.38498318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2731", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-26T02:00:04" + }, + { + "id": "4pk18o5lh2xqtj6o2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-26T06:00:03", + "amountCrypto": 0.00018009, + "pricePerUnit": 608643, + "totalCost": 109.61, + "fee": 0.38497954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2732", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-26T06:00:03" + }, + { + "id": "np1qucsr1yt47f6688", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-26T10:00:03", + "amountCrypto": 0.00018108, + "pricePerUnit": 605325, + "totalCost": 109.61, + "fee": 0.38498563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2733", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-26T10:00:03" + }, + { + "id": "h8gbt2m8ywfpms9dnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-26T14:00:03", + "amountCrypto": 0.00017755, + "pricePerUnit": 617349, + "totalCost": 109.61, + "fee": 0.38497883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2734", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-26T14:00:03" + }, + { + "id": "ih4xrwnyroqu47pv5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-26T18:00:05", + "amountCrypto": 0.00017233, + "pricePerUnit": 636050, + "totalCost": 109.61, + "fee": 0.38497947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2735", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-26T18:00:05" + }, + { + "id": "f1dp568jdx76bypnfh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-26T22:00:03", + "amountCrypto": 0.00018386, + "pricePerUnit": 596189, + "totalCost": 109.62, + "fee": 0.38499637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2736", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-26T22:00:03" + }, + { + "id": "928jb4afsl5vwixr1o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-27T02:00:05", + "amountCrypto": 0.00018064, + "pricePerUnit": 606792, + "totalCost": 109.61, + "fee": 0.38498091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2737", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-27T02:00:05" + }, + { + "id": "wr235vc0pvp5uar931", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-27T06:00:03", + "amountCrypto": 0.00017772, + "pricePerUnit": 616787, + "totalCost": 109.62, + "fee": 0.38499664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2738", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-27T06:00:03" + }, + { + "id": "vu5tni1rxoqq2kb28u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-27T10:00:04", + "amountCrypto": 0.00017779, + "pricePerUnit": 616534, + "totalCost": 109.61, + "fee": 0.3849903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2739", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-27T10:00:04" + }, + { + "id": "599ei0jp8w8313nki6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-27T14:00:04", + "amountCrypto": 0.00017751, + "pricePerUnit": 617504, + "totalCost": 109.61, + "fee": 0.38498873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2740", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-27T14:00:04" + }, + { + "id": "o0s37bfmi0zpbpsuz7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-27T18:00:04", + "amountCrypto": 0.00017593, + "pricePerUnit": 623066, + "totalCost": 109.62, + "fee": 0.3849988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2741", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-27T18:00:04" + }, + { + "id": "x75cg9f5q89s4grzfq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-27T22:00:04", + "amountCrypto": 0.00017305, + "pricePerUnit": 633427, + "totalCost": 109.61, + "fee": 0.38499368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2742", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-27T22:00:04" + }, + { + "id": "j4mou4j0xpfbln5ohf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-28T02:00:03", + "amountCrypto": 0.00017428, + "pricePerUnit": 628942, + "totalCost": 109.61, + "fee": 0.38498479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2743", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-28T02:00:03" + }, + { + "id": "ru329qxf18e54luhav", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-04-28T06:00:04", + "amountCrypto": 0.00017451, + "pricePerUnit": 628126, + "totalCost": 109.61, + "fee": 0.38499271, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2744", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-04-28T06:00:04" + }, + { + "id": "ftg7dmmy38dn0pfhx9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-02T10:00:05", + "amountCrypto": 0.00018097, + "pricePerUnit": 605707, + "totalCost": 109.61, + "fee": 0.38499457, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-02T10:00:05" + }, + { + "id": "a34hiocfg4p6c1krnh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-02T14:00:05", + "amountCrypto": 0.00018104, + "pricePerUnit": 605471, + "totalCost": 109.61, + "fee": 0.38499342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-02T14:00:05" + }, + { + "id": "9v32mhqe2gyj1ay4zt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-02T18:00:03", + "amountCrypto": 0.00017874, + "pricePerUnit": 613264, + "totalCost": 109.61, + "fee": 0.38499461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-02T18:00:03" + }, + { + "id": "y7pe5zademkygzkgdz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-02T22:00:07", + "amountCrypto": 0.00017776, + "pricePerUnit": 616621, + "totalCost": 109.61, + "fee": 0.38497965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-02T22:00:07" + }, + { + "id": "fx2jho5nbtrrm1th3q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T02:00:07", + "amountCrypto": 0.000178, + "pricePerUnit": 615802, + "totalCost": 109.61, + "fee": 0.3849874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T02:00:07" + }, + { + "id": "gvsprfps2yp6zvv5xv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T06:00:04", + "amountCrypto": 0.00017912, + "pricePerUnit": 611956, + "totalCost": 109.61, + "fee": 0.38499022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T06:00:04" + }, + { + "id": "bq21wlhifwc5tegy2f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T10:00:04", + "amountCrypto": 0.0001784, + "pricePerUnit": 614431, + "totalCost": 109.61, + "fee": 0.38499349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T10:00:04" + }, + { + "id": "xtlqr4fdrjqtj4dnr3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T14:00:04", + "amountCrypto": 0.00017915, + "pricePerUnit": 611868, + "totalCost": 109.62, + "fee": 0.38499933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T14:00:04" + }, + { + "id": "8920u8ainoqrkyohk7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T18:00:04", + "amountCrypto": 0.00018102, + "pricePerUnit": 605521, + "totalCost": 109.61, + "fee": 0.38498268, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T18:00:04" + }, + { + "id": "7u27i7kfzs83dxbqrf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-03T22:00:05", + "amountCrypto": 0.00018139, + "pricePerUnit": 604288, + "totalCost": 109.61, + "fee": 0.38498405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-03T22:00:05" + }, + { + "id": "m7l7is923dxrjxipo6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T02:00:05", + "amountCrypto": 0.00017731, + "pricePerUnit": 618209, + "totalCost": 109.61, + "fee": 0.38499401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T02:00:05" + }, + { + "id": "yuuymyj8rccjej7u1r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T06:00:04", + "amountCrypto": 0.00017702, + "pricePerUnit": 619218, + "totalCost": 109.61, + "fee": 0.38499167, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T06:00:04" + }, + { + "id": "oy4bwfvqur6yr7wing", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T10:00:04", + "amountCrypto": 0.00017706, + "pricePerUnit": 619069, + "totalCost": 109.61, + "fee": 0.384986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T10:00:04" + }, + { + "id": "9ureqseuolw43pj4vr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T14:00:04", + "amountCrypto": 0.00017693, + "pricePerUnit": 619514, + "totalCost": 109.61, + "fee": 0.38497987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T14:00:04" + }, + { + "id": "9yjnpwcmi1aukygyma", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T18:00:03", + "amountCrypto": 0.00017776, + "pricePerUnit": 616644, + "totalCost": 109.61, + "fee": 0.38499401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T18:00:03" + }, + { + "id": "ewo1fkiyw7rqfsdkab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-04T22:00:05", + "amountCrypto": 0.00017794, + "pricePerUnit": 616018, + "totalCost": 109.61, + "fee": 0.38499262, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-04T22:00:05" + }, + { + "id": "pyltlc6g1vp8zq2l6l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T02:00:04", + "amountCrypto": 0.00017812, + "pricePerUnit": 615401, + "totalCost": 109.62, + "fee": 0.38499608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T02:00:04" + }, + { + "id": "k6zc9twbeuk3mujzse", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T06:00:06", + "amountCrypto": 0.00017629, + "pricePerUnit": 621774, + "totalCost": 109.61, + "fee": 0.38498664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T06:00:06" + }, + { + "id": "d5z3oys46xa9ldll2l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T10:00:05", + "amountCrypto": 0.00017687, + "pricePerUnit": 619733, + "totalCost": 109.61, + "fee": 0.38498536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T10:00:05" + }, + { + "id": "1jfdnejs77t75nsn2y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T14:00:04", + "amountCrypto": 0.00017632, + "pricePerUnit": 621659, + "totalCost": 109.61, + "fee": 0.38498094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T14:00:04" + }, + { + "id": "k3gp4g3xb8jjtnfq3p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T18:00:04", + "amountCrypto": 0.00017559, + "pricePerUnit": 624265, + "totalCost": 109.61, + "fee": 0.38499417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T18:00:04" + }, + { + "id": "bxqi94haugl8sg3klq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-05T22:00:04", + "amountCrypto": 0.00017426, + "pricePerUnit": 629003, + "totalCost": 109.61, + "fee": 0.38497794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-05T22:00:04" + }, + { + "id": "bncn2o65mxxqwzvp0q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T02:00:07", + "amountCrypto": 0.00017457, + "pricePerUnit": 627903, + "totalCost": 109.61, + "fee": 0.38498835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T02:00:07" + }, + { + "id": "09oo5kky4c5652gxu9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T06:00:04", + "amountCrypto": 0.00017539, + "pricePerUnit": 624968, + "totalCost": 109.61, + "fee": 0.38498874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2792", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T06:00:04" + }, + { + "id": "y2g1umlpw4g938cze7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T10:00:03", + "amountCrypto": 0.00017494, + "pricePerUnit": 626574, + "totalCost": 109.61, + "fee": 0.38498775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2793", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T10:00:03" + }, + { + "id": "m88yu5kagk4bv3uq7i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T14:00:05", + "amountCrypto": 0.00017572, + "pricePerUnit": 623801, + "totalCost": 109.61, + "fee": 0.38499287, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2794", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T14:00:05" + }, + { + "id": "w3y03bmcs2xi68i7yc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T18:00:05", + "amountCrypto": 0.00017952, + "pricePerUnit": 610587, + "totalCost": 109.61, + "fee": 0.38498678, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2795", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T18:00:05" + }, + { + "id": "mu1y471w090dldz9zn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-06T22:00:04", + "amountCrypto": 0.00017778, + "pricePerUnit": 616558, + "totalCost": 109.61, + "fee": 0.38498363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2796", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-06T22:00:04" + }, + { + "id": "cp8mp0mg0y2y657i8i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T02:00:03", + "amountCrypto": 0.00017775, + "pricePerUnit": 616666, + "totalCost": 109.61, + "fee": 0.38498609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T02:00:03" + }, + { + "id": "9s260bvppc7qrf5oqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T06:00:03", + "amountCrypto": 0.00017813, + "pricePerUnit": 615362, + "totalCost": 109.61, + "fee": 0.38499329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T06:00:03" + }, + { + "id": "ohqljme2aog05d6g1d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T10:00:04", + "amountCrypto": 0.00017686, + "pricePerUnit": 619791, + "totalCost": 109.62, + "fee": 0.38499963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T10:00:04" + }, + { + "id": "gutufvv0aku6p2m6uo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T14:00:04", + "amountCrypto": 0.00017774, + "pricePerUnit": 616708, + "totalCost": 109.61, + "fee": 0.38499065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T14:00:04" + }, + { + "id": "et5k5m8k94ubt1615h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T18:00:04", + "amountCrypto": 0.00017678, + "pricePerUnit": 620045, + "totalCost": 109.61, + "fee": 0.38498318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T18:00:04" + }, + { + "id": "bpxo15fev8lfmj8t8l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-07T22:00:03", + "amountCrypto": 0.00017774, + "pricePerUnit": 616708, + "totalCost": 109.61, + "fee": 0.38499065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-07T22:00:03" + }, + { + "id": "ix4su4a1vvk6ozkwju", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T02:00:04", + "amountCrypto": 0.00018006, + "pricePerUnit": 608768, + "totalCost": 109.61, + "fee": 0.38499446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T02:00:04" + }, + { + "id": "ne0ogh52nn6rykh4gr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T06:00:03", + "amountCrypto": 0.00018152, + "pricePerUnit": 603875, + "totalCost": 109.62, + "fee": 0.38499665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T06:00:03" + }, + { + "id": "lxlnh4bo60i935iqqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T10:00:03", + "amountCrypto": 0.00018352, + "pricePerUnit": 597297, + "totalCost": 109.62, + "fee": 0.3849986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T10:00:03" + }, + { + "id": "rntey0rrszjio4vi2g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T14:00:06", + "amountCrypto": 0.00018391, + "pricePerUnit": 596016, + "totalCost": 109.61, + "fee": 0.38498932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T14:00:06" + }, + { + "id": "1c0vymxu4ddmsfe4o4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T18:00:04", + "amountCrypto": 0.00018392, + "pricePerUnit": 595984, + "totalCost": 109.61, + "fee": 0.38498958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T18:00:04" + }, + { + "id": "qdzqdj91p76xtccch4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-08T22:00:03", + "amountCrypto": 0.00018735, + "pricePerUnit": 585080, + "totalCost": 109.61, + "fee": 0.38499436, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-08T22:00:03" + }, + { + "id": "hmoe5djdnml6pwysju", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T02:00:04", + "amountCrypto": 0.00018504, + "pricePerUnit": 592385, + "totalCost": 109.61, + "fee": 0.384995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T02:00:04" + }, + { + "id": "lv4mbnkd4h02zbcaay", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T06:00:03", + "amountCrypto": 0.00018513, + "pricePerUnit": 592081, + "totalCost": 109.61, + "fee": 0.38498459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T06:00:03" + }, + { + "id": "1m632vf7u0mc8okknp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T10:00:04", + "amountCrypto": 0.00018533, + "pricePerUnit": 591463, + "totalCost": 109.62, + "fee": 0.38499823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T10:00:04" + }, + { + "id": "gvzg1ls1hayriabldg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T14:00:04", + "amountCrypto": 0.00018527, + "pricePerUnit": 591635, + "totalCost": 109.61, + "fee": 0.38498551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T14:00:04" + }, + { + "id": "kptsrglvn1bkihlaez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T18:00:07", + "amountCrypto": 0.00018694, + "pricePerUnit": 586342, + "totalCost": 109.61, + "fee": 0.38498044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T18:00:07" + }, + { + "id": "z14zkcnv5qk5my9c51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-09T22:00:03", + "amountCrypto": 0.00018494, + "pricePerUnit": 592702, + "totalCost": 109.61, + "fee": 0.38499285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-09T22:00:03" + }, + { + "id": "nnzcj6u01fq3zw1zb7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T02:00:04", + "amountCrypto": 0.00018553, + "pricePerUnit": 590819, + "totalCost": 109.61, + "fee": 0.3849943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T02:00:04" + }, + { + "id": "w8sl0410pbkvyq7cou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T06:00:04", + "amountCrypto": 0.00018536, + "pricePerUnit": 591362, + "totalCost": 109.61, + "fee": 0.38499479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T06:00:04" + }, + { + "id": "68jlolxx01657gkkk8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T10:00:03", + "amountCrypto": 0.00018566, + "pricePerUnit": 590387, + "totalCost": 109.61, + "fee": 0.38498211, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T10:00:03" + }, + { + "id": "428eu88zhbtc9xjeie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T14:00:04", + "amountCrypto": 0.00018496, + "pricePerUnit": 592648, + "totalCost": 109.62, + "fee": 0.38499941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T14:00:04" + }, + { + "id": "zpokj6vndz6anwueu5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T18:00:04", + "amountCrypto": 0.00018147, + "pricePerUnit": 604028, + "totalCost": 109.61, + "fee": 0.38498812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T18:00:04" + }, + { + "id": "enzmhytz29if319b56", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-10T22:00:03", + "amountCrypto": 0.00018489, + "pricePerUnit": 592861, + "totalCost": 109.61, + "fee": 0.38499202, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-10T22:00:03" + }, + { + "id": "8wn7zxdiqacagx5ouw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T02:00:04", + "amountCrypto": 0.0001855, + "pricePerUnit": 590905, + "totalCost": 109.61, + "fee": 0.38498783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T02:00:04" + }, + { + "id": "soew3moidta5fayvqh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T06:00:04", + "amountCrypto": 0.00018639, + "pricePerUnit": 588074, + "totalCost": 109.61, + "fee": 0.38498163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T06:00:04" + }, + { + "id": "74ajqhn4fcud7dhv56", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T10:00:04", + "amountCrypto": 0.00018518, + "pricePerUnit": 591939, + "totalCost": 109.62, + "fee": 0.38499621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T10:00:04" + }, + { + "id": "gho60tm4j4wdotmviw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T14:00:04", + "amountCrypto": 0.0001857, + "pricePerUnit": 590286, + "totalCost": 109.62, + "fee": 0.38499918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T14:00:04" + }, + { + "id": "gabn2w1mbgwockpp0b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T18:00:04", + "amountCrypto": 0.0001869, + "pricePerUnit": 586476, + "totalCost": 109.61, + "fee": 0.38498603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T18:00:04" + }, + { + "id": "npyysur1x5m99bohnn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-11T22:00:04", + "amountCrypto": 0.00018897, + "pricePerUnit": 580058, + "totalCost": 109.61, + "fee": 0.38499023, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-11T22:00:04" + }, + { + "id": "dd8g8nk0zlp07n1286", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T02:00:05", + "amountCrypto": 0.00018798, + "pricePerUnit": 583099, + "totalCost": 109.61, + "fee": 0.38498106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T02:00:05" + }, + { + "id": "bkto5ult7ycz9553ro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T06:00:04", + "amountCrypto": 0.00019084, + "pricePerUnit": 574385, + "totalCost": 109.62, + "fee": 0.38499751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T06:00:04" + }, + { + "id": "5hd5p3frdkfofpf7n0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T10:00:03", + "amountCrypto": 0.00019255, + "pricePerUnit": 569278, + "totalCost": 109.61, + "fee": 0.38499345, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T10:00:03" + }, + { + "id": "5kq9uonhjz2d7t1h9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T14:00:04", + "amountCrypto": 0.00019156, + "pricePerUnit": 572212, + "totalCost": 109.61, + "fee": 0.38498802, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T14:00:04" + }, + { + "id": "qbs03ux669yxncu1hu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T18:00:04", + "amountCrypto": 0.00019125, + "pricePerUnit": 573150, + "totalCost": 109.61, + "fee": 0.38499506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T18:00:04" + }, + { + "id": "ackvs74insw5p71ugb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-12T22:00:04", + "amountCrypto": 0.00019049, + "pricePerUnit": 575434, + "totalCost": 109.61, + "fee": 0.38499326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-12T22:00:04" + }, + { + "id": "ia65pmra8miczbr4vn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T02:00:06", + "amountCrypto": 0.00018825, + "pricePerUnit": 582272, + "totalCost": 109.61, + "fee": 0.38498722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T02:00:06" + }, + { + "id": "pmnes0o84u8nrg2dda", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T06:00:07", + "amountCrypto": 0.00018761, + "pricePerUnit": 584258, + "totalCost": 109.61, + "fee": 0.38498701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T06:00:07" + }, + { + "id": "nkd7jqzxs3v5xwixfx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T10:00:04", + "amountCrypto": 0.0001878, + "pricePerUnit": 583662, + "totalCost": 109.61, + "fee": 0.38498378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T10:00:04" + }, + { + "id": "u9f6bjykow7asy6o37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T14:00:04", + "amountCrypto": 0.000187, + "pricePerUnit": 586159, + "totalCost": 109.61, + "fee": 0.38498381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T14:00:04" + }, + { + "id": "wsy0hqzruwmb1opvll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T18:00:04", + "amountCrypto": 0.00018739, + "pricePerUnit": 584934, + "totalCost": 109.61, + "fee": 0.38498047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T18:00:04" + }, + { + "id": "5oyieaebuklhk8v3m6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-13T22:00:04", + "amountCrypto": 0.00018662, + "pricePerUnit": 587350, + "totalCost": 109.61, + "fee": 0.38498214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-13T22:00:04" + }, + { + "id": "1ot9j3t5e5ufqlo5ku", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T02:00:05", + "amountCrypto": 0.00018698, + "pricePerUnit": 586240, + "totalCost": 109.62, + "fee": 0.38499583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T02:00:05" + }, + { + "id": "qimcxnxt6m5kr0jn0k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T06:00:04", + "amountCrypto": 0.00018716, + "pricePerUnit": 585661, + "totalCost": 109.61, + "fee": 0.38498585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T06:00:04" + }, + { + "id": "xtpsefkz0u3aivj08u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T10:00:04", + "amountCrypto": 0.00018685, + "pricePerUnit": 586644, + "totalCost": 109.61, + "fee": 0.38499329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T10:00:04" + }, + { + "id": "tl8gnbegoq2uywipwq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T14:00:04", + "amountCrypto": 0.00018723, + "pricePerUnit": 585448, + "totalCost": 109.61, + "fee": 0.38498977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T14:00:04" + }, + { + "id": "bplfiv1ywmb438wzbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T18:00:04", + "amountCrypto": 0.00018552, + "pricePerUnit": 590856, + "totalCost": 109.62, + "fee": 0.38499741, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T18:00:04" + }, + { + "id": "j9uohbvzdd96as7y9u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-14T22:00:05", + "amountCrypto": 0.00018684, + "pricePerUnit": 586678, + "totalCost": 109.61, + "fee": 0.38499499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-14T22:00:05" + }, + { + "id": "6dtxuut2bbgfnx9js1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T02:00:04", + "amountCrypto": 0.00018659, + "pricePerUnit": 587447, + "totalCost": 109.61, + "fee": 0.38498382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T02:00:04" + }, + { + "id": "w3hv0z5brragcmthrk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T06:00:04", + "amountCrypto": 0.00018453, + "pricePerUnit": 593999, + "totalCost": 109.61, + "fee": 0.38497995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T06:00:04" + }, + { + "id": "3217s3x4sypagxtnkr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T10:00:04", + "amountCrypto": 0.00018393, + "pricePerUnit": 595952, + "totalCost": 109.61, + "fee": 0.38498984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T10:00:04" + }, + { + "id": "2yb8hb7mo0aur14j1o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T14:00:04", + "amountCrypto": 0.00018442, + "pricePerUnit": 594356, + "totalCost": 109.61, + "fee": 0.3849817, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T14:00:04" + }, + { + "id": "ws3o29mlrrdntl5tzy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T18:00:03", + "amountCrypto": 0.00018304, + "pricePerUnit": 598855, + "totalCost": 109.61, + "fee": 0.38499324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T18:00:03" + }, + { + "id": "jdv455176xzjtufrop", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-15T22:00:04", + "amountCrypto": 0.00018392, + "pricePerUnit": 595975, + "totalCost": 109.61, + "fee": 0.38498377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-15T22:00:04" + }, + { + "id": "tllcinsupiujor0d74", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T02:00:03", + "amountCrypto": 0.00018513, + "pricePerUnit": 592093, + "totalCost": 109.61, + "fee": 0.38499239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T02:00:03" + }, + { + "id": "bzhez9wth9pzl36mw2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T06:00:04", + "amountCrypto": 0.0001857, + "pricePerUnit": 590287, + "totalCost": 109.62, + "fee": 0.38499984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T06:00:04" + }, + { + "id": "v9sx7bpsn807i3ws3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T10:00:03", + "amountCrypto": 0.00018439, + "pricePerUnit": 594457, + "totalCost": 109.61, + "fee": 0.38498449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T10:00:03" + }, + { + "id": "6t0b7w9h698ivl4qoi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T14:00:03", + "amountCrypto": 0.00018566, + "pricePerUnit": 590388, + "totalCost": 109.61, + "fee": 0.38498277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T14:00:03" + }, + { + "id": "m2l498b5pblwv12uok", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T18:00:03", + "amountCrypto": 0.00018535, + "pricePerUnit": 591390, + "totalCost": 109.61, + "fee": 0.38499225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T18:00:03" + }, + { + "id": "m87vpo0yojqpe6mn8k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-16T22:00:04", + "amountCrypto": 0.00018625, + "pricePerUnit": 588516, + "totalCost": 109.61, + "fee": 0.3849816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-16T22:00:04" + }, + { + "id": "t91ius36lkg118wcs8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-17T02:00:05", + "amountCrypto": 0.00018561, + "pricePerUnit": 590553, + "totalCost": 109.61, + "fee": 0.38498665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-17T02:00:05" + }, + { + "id": "2dkyoueiwflh6pjlfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-17T06:00:04", + "amountCrypto": 0.00018542, + "pricePerUnit": 591159, + "totalCost": 109.61, + "fee": 0.38498721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-17T06:00:04" + }, + { + "id": "9rn9295bst41orb1uo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-17T10:00:03", + "amountCrypto": 0.00018649, + "pricePerUnit": 587777, + "totalCost": 109.61, + "fee": 0.38499364, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-17T10:00:03" + }, + { + "id": "9gy6zc20sp136w9mcg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-22T22:00:04", + "amountCrypto": 0.0001857, + "pricePerUnit": 590264, + "totalCost": 109.61, + "fee": 0.38498483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-22T22:00:04" + }, + { + "id": "noob0jgleedae8fv7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T02:00:04", + "amountCrypto": 0.00018567, + "pricePerUnit": 590382, + "totalCost": 109.62, + "fee": 0.38499959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T02:00:04" + }, + { + "id": "dhw43j1gjljttydqup", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T06:00:04", + "amountCrypto": 0.00018212, + "pricePerUnit": 601890, + "totalCost": 109.62, + "fee": 0.38499952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T06:00:04" + }, + { + "id": "h15mgbtbh4k00d8uxv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T10:00:04", + "amountCrypto": 0.00018258, + "pricePerUnit": 600367, + "totalCost": 109.62, + "fee": 0.38499531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T10:00:04" + }, + { + "id": "9dh543sq245r9igsoa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T14:00:05", + "amountCrypto": 0.00018239, + "pricePerUnit": 600988, + "totalCost": 109.61, + "fee": 0.38499248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T14:00:05" + }, + { + "id": "po4z3me7rcn8c1zxvs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T18:00:04", + "amountCrypto": 0.00018202, + "pricePerUnit": 602197, + "totalCost": 109.61, + "fee": 0.38498439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T18:00:04" + }, + { + "id": "9mo0r4qmxvx4rfz7c3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-23T22:00:04", + "amountCrypto": 0.00018273, + "pricePerUnit": 599880, + "totalCost": 109.62, + "fee": 0.38499905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-23T22:00:04" + }, + { + "id": "szde1ql7jv8g3qlw7x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T02:00:05", + "amountCrypto": 0.00018272, + "pricePerUnit": 599890, + "totalCost": 109.61, + "fee": 0.3849844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T02:00:05" + }, + { + "id": "ahxvfpwwi6fhzbd2jo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T06:00:04", + "amountCrypto": 0.00018565, + "pricePerUnit": 590434, + "totalCost": 109.61, + "fee": 0.38499202, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T06:00:04" + }, + { + "id": "xkzr6f2j88o5xb2g75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T10:00:05", + "amountCrypto": 0.00018554, + "pricePerUnit": 590786, + "totalCost": 109.61, + "fee": 0.3849933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T10:00:05" + }, + { + "id": "dncc7wo2a74mx52bqb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T14:00:05", + "amountCrypto": 0.00018581, + "pricePerUnit": 589919, + "totalCost": 109.61, + "fee": 0.38498773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T14:00:05" + }, + { + "id": "c6i9te0lubvg13yait", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T18:00:03", + "amountCrypto": 0.00018852, + "pricePerUnit": 581449, + "totalCost": 109.61, + "fee": 0.38499446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T18:00:03" + }, + { + "id": "b9nyiu6kzik1z98t7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-24T22:00:04", + "amountCrypto": 0.00018882, + "pricePerUnit": 580528, + "totalCost": 109.62, + "fee": 0.38499633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-24T22:00:04" + }, + { + "id": "aeqxxa0ctyd4k66heg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T02:00:05", + "amountCrypto": 0.00018829, + "pricePerUnit": 582154, + "totalCost": 109.61, + "fee": 0.38499099, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T02:00:05" + }, + { + "id": "dd2onu5b9f03f53ntn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T06:00:03", + "amountCrypto": 0.00018918, + "pricePerUnit": 579413, + "totalCost": 109.61, + "fee": 0.38498949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T06:00:03" + }, + { + "id": "5fmo65p2dw4qv86hpa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T10:00:06", + "amountCrypto": 0.00018944, + "pricePerUnit": 578631, + "totalCost": 109.62, + "fee": 0.38499829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T10:00:06" + }, + { + "id": "ynraz0if5kq0rryism", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T14:00:04", + "amountCrypto": 0.00018857, + "pricePerUnit": 581280, + "totalCost": 109.61, + "fee": 0.38498464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T14:00:04" + }, + { + "id": "ab1kltkzajbyv4l9v5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T18:00:04", + "amountCrypto": 0.00018916, + "pricePerUnit": 579487, + "totalCost": 109.62, + "fee": 0.38499796, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T18:00:04" + }, + { + "id": "je8njymguyatxiscx4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-25T22:00:06", + "amountCrypto": 0.00018745, + "pricePerUnit": 584763, + "totalCost": 109.61, + "fee": 0.38499115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-25T22:00:06" + }, + { + "id": "sl0yelsmqng2vxbirl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T02:00:05", + "amountCrypto": 0.00018745, + "pricePerUnit": 584763, + "totalCost": 109.61, + "fee": 0.38499115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T02:00:05" + }, + { + "id": "2staepukwdkx2hsmn8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T06:00:03", + "amountCrypto": 0.00018786, + "pricePerUnit": 583474, + "totalCost": 109.61, + "fee": 0.38498273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T06:00:03" + }, + { + "id": "qe27qgkc60fq2e5ejt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T10:00:04", + "amountCrypto": 0.00018756, + "pricePerUnit": 584406, + "totalCost": 109.61, + "fee": 0.3849819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T10:00:04" + }, + { + "id": "sq3jd9zidl4tyfaemx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T14:00:05", + "amountCrypto": 0.00018779, + "pricePerUnit": 583689, + "totalCost": 109.61, + "fee": 0.38498108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T14:00:05" + }, + { + "id": "1guub7ymmpau2syla9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T18:00:04", + "amountCrypto": 0.00018544, + "pricePerUnit": 591102, + "totalCost": 109.61, + "fee": 0.38499161, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T18:00:04" + }, + { + "id": "c47s0w92qxqhi4hnve", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-26T22:00:04", + "amountCrypto": 0.00018543, + "pricePerUnit": 591123, + "totalCost": 109.61, + "fee": 0.38498453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-26T22:00:04" + }, + { + "id": "9rwr80o02yylj29lqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T02:00:05", + "amountCrypto": 0.0001858, + "pricePerUnit": 589944, + "totalCost": 109.61, + "fee": 0.38498333, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T02:00:05" + }, + { + "id": "zuvpleanbxr2jwdbc4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T06:00:05", + "amountCrypto": 0.00018557, + "pricePerUnit": 590700, + "totalCost": 109.62, + "fee": 0.38499949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T06:00:05" + }, + { + "id": "o7d0gv8grimu5mnovt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T10:00:05", + "amountCrypto": 0.00018562, + "pricePerUnit": 590541, + "totalCost": 109.62, + "fee": 0.38499957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T10:00:05" + }, + { + "id": "daq1mhslwodeu2vo0v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T14:00:05", + "amountCrypto": 0.00018574, + "pricePerUnit": 590140, + "totalCost": 109.61, + "fee": 0.38498687, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T14:00:05" + }, + { + "id": "636x4bls1ld1b6qw8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T18:00:04", + "amountCrypto": 0.00018585, + "pricePerUnit": 589783, + "totalCost": 109.61, + "fee": 0.38498183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T18:00:04" + }, + { + "id": "h0fq4ze8h4i7am72kz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-27T22:00:04", + "amountCrypto": 0.00018553, + "pricePerUnit": 590824, + "totalCost": 109.62, + "fee": 0.38499731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-27T22:00:04" + }, + { + "id": "qkw7gw6yb1d3xqb851", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T02:00:04", + "amountCrypto": 0.00018465, + "pricePerUnit": 593613, + "totalCost": 109.61, + "fee": 0.38497997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T02:00:04" + }, + { + "id": "1tv6udd3ax2y6v41fv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T06:00:05", + "amountCrypto": 0.00018251, + "pricePerUnit": 600574, + "totalCost": 109.61, + "fee": 0.38498039, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T06:00:05" + }, + { + "id": "4c5yxsnd59cdqh7bas", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T10:00:04", + "amountCrypto": 0.00018272, + "pricePerUnit": 599900, + "totalCost": 109.61, + "fee": 0.38499082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T10:00:04" + }, + { + "id": "fsie9u4is5op0qzom7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T14:00:04", + "amountCrypto": 0.00018276, + "pricePerUnit": 599758, + "totalCost": 109.61, + "fee": 0.38498395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T14:00:04" + }, + { + "id": "51hxtb7m8yv7e0wvxp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T18:00:04", + "amountCrypto": 0.00018269, + "pricePerUnit": 600000, + "totalCost": 109.61, + "fee": 0.38499177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T18:00:04" + }, + { + "id": "lacv3fwzn7ekha60ye", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-28T22:05:58", + "amountCrypto": 0.0001802, + "pricePerUnit": 608275, + "totalCost": 109.61, + "fee": 0.38498178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-28T22:05:58" + }, + { + "id": "vznrpr2hrnyowyeiok", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T02:00:05", + "amountCrypto": 0.00017725, + "pricePerUnit": 618413, + "totalCost": 109.61, + "fee": 0.38499073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T02:00:05" + }, + { + "id": "iplmpc96hff0gvkwso", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T06:00:03", + "amountCrypto": 0.00017759, + "pricePerUnit": 617240, + "totalCost": 109.62, + "fee": 0.38499757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T06:00:03" + }, + { + "id": "j8gdg3njq6wva8az9q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T10:00:04", + "amountCrypto": 0.0001778, + "pricePerUnit": 616486, + "totalCost": 109.61, + "fee": 0.38498198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T10:00:04" + }, + { + "id": "qvlvl2e3us75tsfdwo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T14:00:04", + "amountCrypto": 0.00017852, + "pricePerUnit": 614000, + "totalCost": 109.61, + "fee": 0.38498222, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T14:00:04" + }, + { + "id": "wbtg149o3yxyfqels7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T18:00:04", + "amountCrypto": 0.00017974, + "pricePerUnit": 609827, + "totalCost": 109.61, + "fee": 0.38497879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T18:00:04" + }, + { + "id": "4u44etzjlg0n5iyvb8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-29T22:00:03", + "amountCrypto": 0.00017992, + "pricePerUnit": 609228, + "totalCost": 109.61, + "fee": 0.38498581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-29T22:00:03" + }, + { + "id": "a9avjuy5cl3jkmh5kv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T02:00:04", + "amountCrypto": 0.00017969, + "pricePerUnit": 610000, + "totalCost": 109.61, + "fee": 0.38498088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T02:00:04" + }, + { + "id": "a9pgq8yela23nqw4la", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T06:00:05", + "amountCrypto": 0.00017969, + "pricePerUnit": 610000, + "totalCost": 109.61, + "fee": 0.38498088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T06:00:05" + }, + { + "id": "38kblh55l966utm77y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T10:00:04", + "amountCrypto": 0.00017916, + "pricePerUnit": 611815, + "totalCost": 109.61, + "fee": 0.38498747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T10:00:04" + }, + { + "id": "37mdkqmoks99pvwinn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T14:00:04", + "amountCrypto": 0.00017867, + "pricePerUnit": 613510, + "totalCost": 109.62, + "fee": 0.3849982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T14:00:04" + }, + { + "id": "328r6gqppf2kqmcqer", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T18:00:04", + "amountCrypto": 0.00017943, + "pricePerUnit": 610900, + "totalCost": 109.61, + "fee": 0.38499102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T18:00:04" + }, + { + "id": "njy36v8qpom87q2xol", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-30T22:00:04", + "amountCrypto": 0.00017908, + "pricePerUnit": 612100, + "totalCost": 109.61, + "fee": 0.38499482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-30T22:00:04" + }, + { + "id": "buvmask6hvyfxalmpy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T02:00:05", + "amountCrypto": 0.00017975, + "pricePerUnit": 609803, + "totalCost": 109.61, + "fee": 0.38498506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T02:00:05" + }, + { + "id": "1677vp462bxhdxsds9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T06:00:04", + "amountCrypto": 0.00017932, + "pricePerUnit": 611265, + "totalCost": 109.61, + "fee": 0.38498489, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T06:00:04" + }, + { + "id": "vc52w6j40uptlfeot0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T10:00:06", + "amountCrypto": 0.00018194, + "pricePerUnit": 602476, + "totalCost": 109.61, + "fee": 0.38499347, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T10:00:06" + }, + { + "id": "nqkw1g9bc1zqfgr1ax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T14:00:04", + "amountCrypto": 0.0001821, + "pricePerUnit": 601953, + "totalCost": 109.62, + "fee": 0.38499754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T14:00:04" + }, + { + "id": "51s77vtk0sfkvzj91w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T18:00:04", + "amountCrypto": 0.00018294, + "pricePerUnit": 599186, + "totalCost": 109.62, + "fee": 0.38499559, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T18:00:04" + }, + { + "id": "9fj0q0j7d4zf5ts63k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-05-31T22:00:04", + "amountCrypto": 0.00018291, + "pricePerUnit": 599264, + "totalCost": 109.61, + "fee": 0.38498256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-05-31T22:00:04" + }, + { + "id": "vtwx9jrxcrvz52dj96", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T02:00:06", + "amountCrypto": 0.00018165, + "pricePerUnit": 603436, + "totalCost": 109.61, + "fee": 0.3849923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T02:00:06" + }, + { + "id": "cqfhiavqirokrddviu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T06:00:05", + "amountCrypto": 0.0001845, + "pricePerUnit": 594120, + "totalCost": 109.62, + "fee": 0.38499578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T06:00:05" + }, + { + "id": "biud5wij2qct7209ty", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T10:00:04", + "amountCrypto": 0.00018371, + "pricePerUnit": 596657, + "totalCost": 109.61, + "fee": 0.38498425, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T10:00:04" + }, + { + "id": "xjl6hx1atojqf9bx7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T14:00:04", + "amountCrypto": 0.00018393, + "pricePerUnit": 595958, + "totalCost": 109.61, + "fee": 0.38499372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T14:00:04" + }, + { + "id": "apbngy4baba1djf427", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T18:00:07", + "amountCrypto": 0.00018487, + "pricePerUnit": 592923, + "totalCost": 109.61, + "fee": 0.38499063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T18:00:07" + }, + { + "id": "jfq4hr36juhijcm5ba", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-01T22:00:04", + "amountCrypto": 0.00018536, + "pricePerUnit": 591345, + "totalCost": 109.61, + "fee": 0.38498373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-01T22:00:04" + }, + { + "id": "ygobx28i8jeb6t68pi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T02:00:04", + "amountCrypto": 0.00018562, + "pricePerUnit": 590541, + "totalCost": 109.62, + "fee": 0.38499957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T02:00:04" + }, + { + "id": "ch3qyorgewsy2z00t5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T06:00:05", + "amountCrypto": 0.00018474, + "pricePerUnit": 593350, + "totalCost": 109.62, + "fee": 0.38499697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T06:00:05" + }, + { + "id": "4xbxotijse6n0bkgql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T10:00:04", + "amountCrypto": 0.0001838, + "pricePerUnit": 596372, + "totalCost": 109.61, + "fee": 0.38498887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T10:00:04" + }, + { + "id": "zgc8fhhi8f7aa82yeb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T14:00:04", + "amountCrypto": 0.00018321, + "pricePerUnit": 598280, + "totalCost": 109.61, + "fee": 0.38498081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T14:00:04" + }, + { + "id": "kduz8brn0zccgz58cf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T18:00:03", + "amountCrypto": 0.00018305, + "pricePerUnit": 598827, + "totalCost": 109.62, + "fee": 0.38499628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T18:00:03" + }, + { + "id": "0jbe2qnbn2aji8uems", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-02T22:00:04", + "amountCrypto": 0.00018199, + "pricePerUnit": 602299, + "totalCost": 109.61, + "fee": 0.38498613, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-02T22:00:04" + }, + { + "id": "nywcko9ey37xbvt6dr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T02:00:04", + "amountCrypto": 0.000182, + "pricePerUnit": 602258, + "totalCost": 109.61, + "fee": 0.38498108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T02:00:04" + }, + { + "id": "i4ic0swqgtolzphoj5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T06:00:03", + "amountCrypto": 0.00018257, + "pricePerUnit": 600380, + "totalCost": 109.61, + "fee": 0.38498256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T06:00:03" + }, + { + "id": "fvymppjctohkenhuqr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T10:00:04", + "amountCrypto": 0.00018238, + "pricePerUnit": 601023, + "totalCost": 109.61, + "fee": 0.38499379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T10:00:04" + }, + { + "id": "2tw7fnth61mi1pxwqf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T14:00:05", + "amountCrypto": 0.00018269, + "pricePerUnit": 600003, + "totalCost": 109.61, + "fee": 0.3849937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T14:00:05" + }, + { + "id": "qqu2yxyrz317aeisl1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T18:00:04", + "amountCrypto": 0.00018193, + "pricePerUnit": 602509, + "totalCost": 109.61, + "fee": 0.3849934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T18:00:04" + }, + { + "id": "6jbek9k3rru77rrzw6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-03T22:00:04", + "amountCrypto": 0.00018296, + "pricePerUnit": 599121, + "totalCost": 109.62, + "fee": 0.38499591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-03T22:00:04" + }, + { + "id": "he4n40lbpva7fbr4uv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T02:00:06", + "amountCrypto": 0.00018362, + "pricePerUnit": 596973, + "totalCost": 109.62, + "fee": 0.38499944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T02:00:06" + }, + { + "id": "flkwp372fzyrq69pq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T06:00:04", + "amountCrypto": 0.00018339, + "pricePerUnit": 597696, + "totalCost": 109.61, + "fee": 0.3849829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T06:00:04" + }, + { + "id": "2m9zt5g7emdvpiw7a2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T10:00:04", + "amountCrypto": 0.00018301, + "pricePerUnit": 598938, + "totalCost": 109.61, + "fee": 0.38498349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T10:00:04" + }, + { + "id": "lnm1u085ugo862lglp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T14:00:04", + "amountCrypto": 0.00018229, + "pricePerUnit": 601308, + "totalCost": 109.61, + "fee": 0.38498628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T14:00:04" + }, + { + "id": "y848zwcehor6umqpxz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T18:00:04", + "amountCrypto": 0.00018235, + "pricePerUnit": 601100, + "totalCost": 109.61, + "fee": 0.38497978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T18:00:04" + }, + { + "id": "wgo1f5woz3fdojkjx6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-04T22:00:03", + "amountCrypto": 0.00018248, + "pricePerUnit": 600672, + "totalCost": 109.61, + "fee": 0.38497992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-04T22:00:03" + }, + { + "id": "fgd4b3zkq19wdob4db", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T02:00:05", + "amountCrypto": 0.00018254, + "pricePerUnit": 600500, + "totalCost": 109.62, + "fee": 0.38499623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T02:00:05" + }, + { + "id": "bals18x5bmyal84t6v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T06:00:03", + "amountCrypto": 0.00018454, + "pricePerUnit": 593974, + "totalCost": 109.61, + "fee": 0.38498461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T06:00:03" + }, + { + "id": "3akvnfjlyyjz4p73jq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T10:00:03", + "amountCrypto": 0.00018464, + "pricePerUnit": 593661, + "totalCost": 109.61, + "fee": 0.38499025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T10:00:03" + }, + { + "id": "39iw4lanxp5bq2qa3t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T14:00:05", + "amountCrypto": 0.00018538, + "pricePerUnit": 591277, + "totalCost": 109.61, + "fee": 0.38498099, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T14:00:05" + }, + { + "id": "a1gkfhibl8bgiexzx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T18:00:05", + "amountCrypto": 0.00019127, + "pricePerUnit": 573071, + "totalCost": 109.61, + "fee": 0.38498225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T18:00:05" + }, + { + "id": "z0j3spcfy0wvun8dxa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-05T22:00:05", + "amountCrypto": 0.00019437, + "pricePerUnit": 563938, + "totalCost": 109.61, + "fee": 0.38498696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-05T22:00:05" + }, + { + "id": "aw804mae8jeway7kjj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T02:00:05", + "amountCrypto": 0.00019331, + "pricePerUnit": 567022, + "totalCost": 109.61, + "fee": 0.38498131, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T02:00:05" + }, + { + "id": "vr0nto3wqa47g9jgnz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T06:00:04", + "amountCrypto": 0.0001934, + "pricePerUnit": 566763, + "totalCost": 109.61, + "fee": 0.38498462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T06:00:04" + }, + { + "id": "krne99wrfofnspvur5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T10:00:04", + "amountCrypto": 0.0001937, + "pricePerUnit": 565890, + "totalCost": 109.61, + "fee": 0.38498788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T10:00:04" + }, + { + "id": "pancqwxfzbny1zkgrx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T14:00:04", + "amountCrypto": 0.00019359, + "pricePerUnit": 566211, + "totalCost": 109.61, + "fee": 0.38498751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T14:00:04" + }, + { + "id": "bjfqvq2jufb664iw9y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-06T18:00:06", + "amountCrypto": 0.00019043, + "pricePerUnit": 575604, + "totalCost": 109.61, + "fee": 0.38498569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-06T18:00:06" + }, + { + "id": "w7g2e8q9i7mo1stfs3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-07T18:00:03", + "amountCrypto": 0.00018811, + "pricePerUnit": 582715, + "totalCost": 109.61, + "fee": 0.38499359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-07T18:00:03" + }, + { + "id": "i3jv9xrtoiyuuoxzbp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-07T22:00:04", + "amountCrypto": 0.00018717, + "pricePerUnit": 585626, + "totalCost": 109.61, + "fee": 0.38498341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-07T22:00:04" + }, + { + "id": "y2dg4e0gso2zagfo99", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T02:00:03", + "amountCrypto": 0.00018831, + "pricePerUnit": 582089, + "totalCost": 109.61, + "fee": 0.38498889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T02:00:03" + }, + { + "id": "83ydsolanyso17v5iy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T06:00:05", + "amountCrypto": 0.00018827, + "pricePerUnit": 582223, + "totalCost": 109.62, + "fee": 0.38499572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T06:00:05" + }, + { + "id": "jucjtvms8cdsro759v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T10:00:04", + "amountCrypto": 0.00018748, + "pricePerUnit": 584678, + "totalCost": 109.62, + "fee": 0.3849968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T10:00:04" + }, + { + "id": "aatz2he1vkgzir5gk6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T14:00:03", + "amountCrypto": 0.00018831, + "pricePerUnit": 582090, + "totalCost": 109.61, + "fee": 0.38498955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T14:00:03" + }, + { + "id": "gd2f8yu4297122krjc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T18:00:03", + "amountCrypto": 0.00018719, + "pricePerUnit": 585587, + "totalCost": 109.62, + "fee": 0.3849989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T18:00:03" + }, + { + "id": "ague33symgrzc5iy14", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-08T22:00:04", + "amountCrypto": 0.0001884, + "pricePerUnit": 581803, + "totalCost": 109.61, + "fee": 0.38498364, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-08T22:00:04" + }, + { + "id": "nb6hqsjehyz6fxhl1v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T02:00:04", + "amountCrypto": 0.00018877, + "pricePerUnit": 580681, + "totalCost": 109.62, + "fee": 0.38499582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T02:00:04" + }, + { + "id": "78iilk9ca7wdt8ya8q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T06:00:04", + "amountCrypto": 0.00018882, + "pricePerUnit": 580516, + "totalCost": 109.61, + "fee": 0.38498837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T06:00:04" + }, + { + "id": "ayjdrh1d36jvaqiu7b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T10:00:04", + "amountCrypto": 0.00018831, + "pricePerUnit": 582075, + "totalCost": 109.61, + "fee": 0.38497963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T10:00:04" + }, + { + "id": "4oebwn917n273ph9y9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T14:00:04", + "amountCrypto": 0.00018783, + "pricePerUnit": 583586, + "totalCost": 109.61, + "fee": 0.38499514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T14:00:04" + }, + { + "id": "fysgfvcd10vrrgao9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T18:00:07", + "amountCrypto": 0.00018799, + "pricePerUnit": 583066, + "totalCost": 109.61, + "fee": 0.38497975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "2999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T18:00:07" + }, + { + "id": "3q5wsxhu7icz1jtfjn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-09T22:00:04", + "amountCrypto": 0.00018856, + "pricePerUnit": 581334, + "totalCost": 109.62, + "fee": 0.38499999, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-09T22:00:04" + }, + { + "id": "zqg7wjtg9nuweusd94", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T02:00:06", + "amountCrypto": 0.00018806, + "pricePerUnit": 582849, + "totalCost": 109.61, + "fee": 0.38497977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T02:00:06" + }, + { + "id": "jafuj7yiwd2wjsz5bg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T06:00:04", + "amountCrypto": 0.00018913, + "pricePerUnit": 579570, + "totalCost": 109.61, + "fee": 0.38499203, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T06:00:04" + }, + { + "id": "6ixfi1rf93ymx5dzdd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T10:00:04", + "amountCrypto": 0.00019359, + "pricePerUnit": 566205, + "totalCost": 109.61, + "fee": 0.38498343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T10:00:04" + }, + { + "id": "cxg4zn7knoj076r2mt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T14:00:04", + "amountCrypto": 0.0001931, + "pricePerUnit": 567650, + "totalCost": 109.61, + "fee": 0.38498901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T14:00:04" + }, + { + "id": "wpmble40geweinkr51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T18:00:04", + "amountCrypto": 0.00019367, + "pricePerUnit": 565970, + "totalCost": 109.61, + "fee": 0.38498267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T18:00:04" + }, + { + "id": "hym8w1wkkw6trswy1d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-10T22:00:06", + "amountCrypto": 0.00019288, + "pricePerUnit": 568301, + "totalCost": 109.61, + "fee": 0.38499141, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-10T22:00:06" + }, + { + "id": "b23gxk48tsnmaj6fde", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T02:00:04", + "amountCrypto": 0.00019206, + "pricePerUnit": 570728, + "totalCost": 109.61, + "fee": 0.38499184, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T02:00:04" + }, + { + "id": "wtdwehf7zke7lj9fow", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T06:00:05", + "amountCrypto": 0.00019292, + "pricePerUnit": 568177, + "totalCost": 109.61, + "fee": 0.38498723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T06:00:05" + }, + { + "id": "ndd04922hq8jd7lgv1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T10:00:06", + "amountCrypto": 0.00019288, + "pricePerUnit": 568289, + "totalCost": 109.61, + "fee": 0.38498328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T10:00:06" + }, + { + "id": "07esa3x7pxwoumugw3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T14:00:06", + "amountCrypto": 0.00019238, + "pricePerUnit": 569774, + "totalCost": 109.61, + "fee": 0.38498869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T14:00:06" + }, + { + "id": "38iy1qskymapkjoyph", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T18:00:05", + "amountCrypto": 0.00019283, + "pricePerUnit": 568452, + "totalCost": 109.61, + "fee": 0.38499388, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T18:00:05" + }, + { + "id": "1qxm1aaeftzjgphkqs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-11T22:00:04", + "amountCrypto": 0.00019087, + "pricePerUnit": 574276, + "totalCost": 109.61, + "fee": 0.38498496, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-11T22:00:04" + }, + { + "id": "h9207cqfqnes5kmz2f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T02:00:04", + "amountCrypto": 0.00019183, + "pricePerUnit": 571414, + "totalCost": 109.61, + "fee": 0.38499299, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T02:00:04" + }, + { + "id": "5tnf6kel4lprz1nqic", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T06:00:04", + "amountCrypto": 0.0001927, + "pricePerUnit": 568839, + "totalCost": 109.62, + "fee": 0.38499625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T06:00:04" + }, + { + "id": "ft4042lmpv1atso51c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T10:00:04", + "amountCrypto": 0.0001933, + "pricePerUnit": 567070, + "totalCost": 109.61, + "fee": 0.38499399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T10:00:04" + }, + { + "id": "8ei6dnu6upiwywb3mm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T14:00:04", + "amountCrypto": 0.00019166, + "pricePerUnit": 571910, + "totalCost": 109.61, + "fee": 0.3849857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T14:00:04" + }, + { + "id": "sqpayy2v9gmtztunw4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T18:00:05", + "amountCrypto": 0.00019231, + "pricePerUnit": 569995, + "totalCost": 109.62, + "fee": 0.38499788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T18:00:05" + }, + { + "id": "zcr5fsupjt9eplsi61", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-12T22:00:04", + "amountCrypto": 0.00019264, + "pricePerUnit": 569000, + "totalCost": 109.61, + "fee": 0.38498531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-12T22:00:04" + }, + { + "id": "i27028uwi0fj18vzq5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T02:00:06", + "amountCrypto": 0.00019194, + "pricePerUnit": 571091, + "totalCost": 109.62, + "fee": 0.38499601, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T02:00:06" + }, + { + "id": "nwwkq9p9m97wdpw46o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T06:00:04", + "amountCrypto": 0.00019111, + "pricePerUnit": 573568, + "totalCost": 109.61, + "fee": 0.38499381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T06:00:04" + }, + { + "id": "35h64mzjiwjwrphrcx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T10:00:04", + "amountCrypto": 0.00019102, + "pricePerUnit": 573846, + "totalCost": 109.62, + "fee": 0.38499902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T10:00:04" + }, + { + "id": "cstjmmuwigaz8tuv5i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T14:00:05", + "amountCrypto": 0.00019025, + "pricePerUnit": 576149, + "totalCost": 109.61, + "fee": 0.38498576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T14:00:05" + }, + { + "id": "wr75j3vyjbe8upx8g0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T18:00:04", + "amountCrypto": 0.00019339, + "pricePerUnit": 566798, + "totalCost": 109.61, + "fee": 0.38498849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T18:00:04" + }, + { + "id": "9ww9hnc8aznpwo3kmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-13T22:00:04", + "amountCrypto": 0.000192, + "pricePerUnit": 570915, + "totalCost": 109.62, + "fee": 0.38499767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-13T22:00:04" + }, + { + "id": "7pqdfx3fqqrh7h7wdh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T02:00:04", + "amountCrypto": 0.00019171, + "pricePerUnit": 571768, + "totalCost": 109.61, + "fee": 0.38499084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T02:00:04" + }, + { + "id": "g457i1b2etht16nkm2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T06:00:04", + "amountCrypto": 0.0001913, + "pricePerUnit": 572982, + "totalCost": 109.61, + "fee": 0.38498284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T06:00:04" + }, + { + "id": "nun68yerbro4oqws5l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T10:00:05", + "amountCrypto": 0.00019149, + "pricePerUnit": 572435, + "totalCost": 109.62, + "fee": 0.38499731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T10:00:05" + }, + { + "id": "n4zcxvpaqtxar7gzef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T14:00:04", + "amountCrypto": 0.00019174, + "pricePerUnit": 571682, + "totalCost": 109.61, + "fee": 0.38499285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T14:00:04" + }, + { + "id": "a5gjtp5rfd9j4tsa9k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T18:00:04", + "amountCrypto": 0.00019289, + "pricePerUnit": 568276, + "totalCost": 109.61, + "fee": 0.38499443, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T18:00:04" + }, + { + "id": "ipayhegg9c72v078e6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-14T22:00:04", + "amountCrypto": 0.00019293, + "pricePerUnit": 568165, + "totalCost": 109.62, + "fee": 0.38499905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-14T22:00:04" + }, + { + "id": "f6aj4gr5r1r6ecduqy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T02:00:04", + "amountCrypto": 0.00019436, + "pricePerUnit": 563979, + "totalCost": 109.61, + "fee": 0.38499514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T02:00:04" + }, + { + "id": "rb8l63sn2zuqenqr0a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T06:00:04", + "amountCrypto": 0.00019414, + "pricePerUnit": 564598, + "totalCost": 109.61, + "fee": 0.38498143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T06:00:04" + }, + { + "id": "qy7fprjf2h7aqfbof3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T10:00:05", + "amountCrypto": 0.00019598, + "pricePerUnit": 559313, + "totalCost": 109.61, + "fee": 0.38499234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T10:00:05" + }, + { + "id": "ohg5dg4dzskbj7md9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T14:00:04", + "amountCrypto": 0.000197, + "pricePerUnit": 556400, + "totalCost": 109.61, + "fee": 0.38498053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T14:00:04" + }, + { + "id": "8amr492b5fg2kbl57m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T18:00:04", + "amountCrypto": 0.00019888, + "pricePerUnit": 551165, + "totalCost": 109.62, + "fee": 0.38499773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T18:00:04" + }, + { + "id": "gh942s88ez7doj7xqa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-15T22:00:04", + "amountCrypto": 0.00019772, + "pricePerUnit": 554396, + "totalCost": 109.62, + "fee": 0.38499591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-15T22:00:04" + }, + { + "id": "ccb647d53v6yuguk4u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T02:00:05", + "amountCrypto": 0.00019663, + "pricePerUnit": 557449, + "totalCost": 109.61, + "fee": 0.38498193, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T02:00:05" + }, + { + "id": "qsu5c7hotiftja6c9h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T06:00:04", + "amountCrypto": 0.00019683, + "pricePerUnit": 556891, + "totalCost": 109.61, + "fee": 0.38498775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T06:00:04" + }, + { + "id": "dseul1wacjazxrslwj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T10:00:04", + "amountCrypto": 0.00019618, + "pricePerUnit": 558752, + "totalCost": 109.62, + "fee": 0.38499868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T10:00:04" + }, + { + "id": "v1llnr2w1ot1gnjrgs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T14:00:04", + "amountCrypto": 0.00019723, + "pricePerUnit": 555763, + "totalCost": 109.61, + "fee": 0.38498874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T14:00:04" + }, + { + "id": "5mw2uwkhcmm6osgleq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T18:00:04", + "amountCrypto": 0.00019491, + "pricePerUnit": 562376, + "totalCost": 109.61, + "fee": 0.38498723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T18:00:04" + }, + { + "id": "p43ybm2pnajnezpd7k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-16T22:00:04", + "amountCrypto": 0.00019074, + "pricePerUnit": 574672, + "totalCost": 109.61, + "fee": 0.38498804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-16T22:00:04" + }, + { + "id": "53aop9lxfm729eaxr7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T02:00:05", + "amountCrypto": 0.00019109, + "pricePerUnit": 573625, + "totalCost": 109.61, + "fee": 0.38499178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T02:00:05" + }, + { + "id": "ilqbzomoofsm2lj1jf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T06:00:05", + "amountCrypto": 0.0001917, + "pricePerUnit": 571800, + "totalCost": 109.61, + "fee": 0.38499198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T06:00:05" + }, + { + "id": "g1urnltz68y0d2nb4a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T10:00:04", + "amountCrypto": 0.00018908, + "pricePerUnit": 579730, + "totalCost": 109.62, + "fee": 0.38499651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T10:00:04" + }, + { + "id": "njixizb8wnnjqpwcrx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T14:02:13", + "amountCrypto": 0.00019011, + "pricePerUnit": 576568, + "totalCost": 109.61, + "fee": 0.38498244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T14:02:13" + }, + { + "id": "7s6lso2cbddzjmfx66", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T18:00:04", + "amountCrypto": 0.0001906, + "pricePerUnit": 575100, + "totalCost": 109.61, + "fee": 0.38499198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T18:00:04" + }, + { + "id": "e5d0akq6pdb6xg5z6u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-17T22:00:06", + "amountCrypto": 0.00018986, + "pricePerUnit": 577353, + "totalCost": 109.62, + "fee": 0.38499964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-17T22:00:06" + }, + { + "id": "v1te3uje1e3fjgbc8d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T02:00:04", + "amountCrypto": 0.00018984, + "pricePerUnit": 577412, + "totalCost": 109.62, + "fee": 0.38499842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T02:00:04" + }, + { + "id": "2m8hujw1fpo3vivqji", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T06:00:04", + "amountCrypto": 0.00018962, + "pricePerUnit": 578056, + "totalCost": 109.61, + "fee": 0.38498116, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T06:00:04" + }, + { + "id": "w4xsjxjgdyxbs7cu0e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T10:00:05", + "amountCrypto": 0.00018905, + "pricePerUnit": 579809, + "totalCost": 109.61, + "fee": 0.38498788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T10:00:05" + }, + { + "id": "yaykiasprfw351v4ig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T14:00:04", + "amountCrypto": 0.00018974, + "pricePerUnit": 577702, + "totalCost": 109.61, + "fee": 0.38498888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T14:00:04" + }, + { + "id": "rh9ewkcp3sinnre39j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T18:00:05", + "amountCrypto": 0.00018977, + "pricePerUnit": 577600, + "totalCost": 109.61, + "fee": 0.38498177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T18:00:05" + }, + { + "id": "1mmx2dbh7zz8w6ftkh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-18T22:00:05", + "amountCrypto": 0.00018899, + "pricePerUnit": 579999, + "totalCost": 109.61, + "fee": 0.38499181, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-18T22:00:05" + }, + { + "id": "iutrr37iwhgpihx0rv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T02:00:04", + "amountCrypto": 0.00019106, + "pricePerUnit": 573711, + "totalCost": 109.61, + "fee": 0.38498904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T02:00:04" + }, + { + "id": "opebrevxt3476s03gj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T06:00:04", + "amountCrypto": 0.00019074, + "pricePerUnit": 574664, + "totalCost": 109.61, + "fee": 0.38498268, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T06:00:04" + }, + { + "id": "6hdbu6bome3xl6x6g0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T10:00:05", + "amountCrypto": 0.00019043, + "pricePerUnit": 575621, + "totalCost": 109.62, + "fee": 0.38499706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T10:00:05" + }, + { + "id": "m8uqpi5luzymg5pdb3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T14:00:05", + "amountCrypto": 0.00019033, + "pricePerUnit": 575907, + "totalCost": 109.61, + "fee": 0.38498608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T14:00:05" + }, + { + "id": "fd512l291tsckjkxhi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T18:00:04", + "amountCrypto": 0.00019063, + "pricePerUnit": 575001, + "totalCost": 109.61, + "fee": 0.38498629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T18:00:04" + }, + { + "id": "5n3tgqs15v5a5hj3qa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-19T22:00:04", + "amountCrypto": 0.00018906, + "pricePerUnit": 579780, + "totalCost": 109.61, + "fee": 0.38498899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-19T22:00:04" + }, + { + "id": "p6v2i2auhuik4yq63n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T02:00:04", + "amountCrypto": 0.00018767, + "pricePerUnit": 584083, + "totalCost": 109.61, + "fee": 0.38499478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T02:00:04" + }, + { + "id": "oyi6zvlwkw3eelm3uh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T06:00:03", + "amountCrypto": 0.0001874, + "pricePerUnit": 584914, + "totalCost": 109.61, + "fee": 0.38498785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T06:00:03" + }, + { + "id": "su07vn9c2ukx02vm6g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T10:00:04", + "amountCrypto": 0.00018799, + "pricePerUnit": 583083, + "totalCost": 109.61, + "fee": 0.38499097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T10:00:04" + }, + { + "id": "piyg7enq54v16avy14", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T14:00:04", + "amountCrypto": 0.00018727, + "pricePerUnit": 585337, + "totalCost": 109.62, + "fee": 0.38499901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T14:00:04" + }, + { + "id": "cto6zewepjcx33l6jv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T18:00:05", + "amountCrypto": 0.00018491, + "pricePerUnit": 592780, + "totalCost": 109.61, + "fee": 0.38498106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T18:00:05" + }, + { + "id": "y0rpuingnle5nxg4bl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-20T22:00:04", + "amountCrypto": 0.00017969, + "pricePerUnit": 610000, + "totalCost": 109.61, + "fee": 0.38498088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-20T22:00:04" + }, + { + "id": "woci1gl7t6zac6e3er", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T02:00:04", + "amountCrypto": 0.00017823, + "pricePerUnit": 615000, + "totalCost": 109.61, + "fee": 0.38498282, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T02:00:04" + }, + { + "id": "k55j7tzayd1jmvrrtv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T06:00:04", + "amountCrypto": 0.0001768, + "pricePerUnit": 620000, + "totalCost": 109.62, + "fee": 0.3849988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T06:00:04" + }, + { + "id": "exubbb7gv3g2r7pnrf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T10:00:04", + "amountCrypto": 0.00017587, + "pricePerUnit": 623251, + "totalCost": 109.61, + "fee": 0.38498177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T10:00:04" + }, + { + "id": "fdcctc93yhiwbnyp3q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T14:00:04", + "amountCrypto": 0.00017702, + "pricePerUnit": 619200, + "totalCost": 109.61, + "fee": 0.38498048, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T14:00:04" + }, + { + "id": "6746f5e96hlifeppos", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T18:00:05", + "amountCrypto": 0.00017127, + "pricePerUnit": 640000, + "totalCost": 109.61, + "fee": 0.38498756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T18:00:05" + }, + { + "id": "h25l1dedgsu5ti9kig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-21T22:00:04", + "amountCrypto": 0.00017131, + "pricePerUnit": 639853, + "totalCost": 109.61, + "fee": 0.38498918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-21T22:00:04" + }, + { + "id": "7swkbiere0jq8uk97r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T02:00:04", + "amountCrypto": 0.00017043, + "pricePerUnit": 643175, + "totalCost": 109.62, + "fee": 0.3849999, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T02:00:04" + }, + { + "id": "zf0y0o108la0jkeedj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T06:00:04", + "amountCrypto": 0.00016924, + "pricePerUnit": 647667, + "totalCost": 109.61, + "fee": 0.38498166, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T06:00:04" + }, + { + "id": "8d3c1elwq4732mg312", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T10:00:07", + "amountCrypto": 0.000169, + "pricePerUnit": 648585, + "totalCost": 109.61, + "fee": 0.38498076, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T10:00:07" + }, + { + "id": "vowvat32fmf6k5920o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T14:00:05", + "amountCrypto": 0.00017006, + "pricePerUnit": 644557, + "totalCost": 109.61, + "fee": 0.38498954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T14:00:05" + }, + { + "id": "zlflxfpddmkp3pdvls", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-22T18:00:05", + "amountCrypto": 0.00017023, + "pricePerUnit": 643897, + "totalCost": 109.61, + "fee": 0.38497978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-22T18:00:05" + }, + { + "id": "uvx7i7xmdy29ltd2l1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-27T18:00:05", + "amountCrypto": 0.00016648, + "pricePerUnit": 658415, + "totalCost": 109.61, + "fee": 0.38498801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-27T18:00:05" + }, + { + "id": "n9b83atmlwqfq0ldqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-27T22:00:05", + "amountCrypto": 0.00016548, + "pricePerUnit": 662400, + "totalCost": 109.61, + "fee": 0.3849916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-27T22:00:05" + }, + { + "id": "enbab4c9gclxa151uo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T02:00:05", + "amountCrypto": 0.0001656, + "pricePerUnit": 661913, + "totalCost": 109.61, + "fee": 0.38498753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T02:00:05" + }, + { + "id": "lt2vb5hhqreb77ovvv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T06:00:05", + "amountCrypto": 0.00016659, + "pricePerUnit": 657972, + "totalCost": 109.61, + "fee": 0.38498319, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T06:00:05" + }, + { + "id": "e2tpsdmwvzgyrgpra9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T10:00:05", + "amountCrypto": 0.00016782, + "pricePerUnit": 653177, + "totalCost": 109.62, + "fee": 0.38499961, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T10:00:05" + }, + { + "id": "z5algy2lhe77ko4pbh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T14:00:04", + "amountCrypto": 0.00016721, + "pricePerUnit": 655552, + "totalCost": 109.61, + "fee": 0.38499476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T14:00:04" + }, + { + "id": "pfnab1yuq1czenfqfv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T18:00:05", + "amountCrypto": 0.00016572, + "pricePerUnit": 661436, + "totalCost": 109.61, + "fee": 0.38498887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T18:00:05" + }, + { + "id": "diqnr01scxjkse0606", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-28T22:00:04", + "amountCrypto": 0.00016766, + "pricePerUnit": 653779, + "totalCost": 109.61, + "fee": 0.38498681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-28T22:00:04" + }, + { + "id": "08oc5mvhyaz1h11coo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T02:00:07", + "amountCrypto": 0.00016778, + "pricePerUnit": 653314, + "totalCost": 109.61, + "fee": 0.38498834, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T02:00:07" + }, + { + "id": "74d4u8tku1hcq4s5bg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T06:00:05", + "amountCrypto": 0.00016713, + "pricePerUnit": 655854, + "totalCost": 109.61, + "fee": 0.38498783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T06:00:05" + }, + { + "id": "lj1na56abqrei7uq37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T10:00:05", + "amountCrypto": 0.00016626, + "pricePerUnit": 659283, + "totalCost": 109.61, + "fee": 0.38498612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T10:00:05" + }, + { + "id": "yizr8ax6krcrqz56ok", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T14:00:05", + "amountCrypto": 0.00016543, + "pricePerUnit": 662606, + "totalCost": 109.61, + "fee": 0.38499497, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T14:00:05" + }, + { + "id": "csmut9wrzyaywn7ox1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T18:00:04", + "amountCrypto": 0.00016564, + "pricePerUnit": 661751, + "totalCost": 109.61, + "fee": 0.38498628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T18:00:04" + }, + { + "id": "4n87xb8q7qcd7666ln", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-29T22:00:04", + "amountCrypto": 0.00016478, + "pricePerUnit": 665201, + "totalCost": 109.61, + "fee": 0.38498412, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-29T22:00:04" + }, + { + "id": "cgn8hs5xf833g6g16u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T02:00:04", + "amountCrypto": 0.00016536, + "pricePerUnit": 662878, + "totalCost": 109.61, + "fee": 0.38499004, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T02:00:04" + }, + { + "id": "92wzcc6bc0wa02h7du", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T06:00:05", + "amountCrypto": 0.00016391, + "pricePerUnit": 668727, + "totalCost": 109.61, + "fee": 0.38498138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T06:00:05" + }, + { + "id": "rqvaea5vn29pt7gs4m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T10:00:07", + "amountCrypto": 0.00016306, + "pricePerUnit": 672216, + "totalCost": 109.61, + "fee": 0.38498313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T10:00:07" + }, + { + "id": "y3zcul7yl9gwbyyyz6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T14:00:05", + "amountCrypto": 0.00016302, + "pricePerUnit": 672400, + "totalCost": 109.61, + "fee": 0.38499405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T14:00:05" + }, + { + "id": "ob5p57jk3l8n62s2x8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T18:00:05", + "amountCrypto": 0.00016785, + "pricePerUnit": 653039, + "totalCost": 109.61, + "fee": 0.38498684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T18:00:05" + }, + { + "id": "aahqikjllh8qel85yt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-06-30T22:00:04", + "amountCrypto": 0.00016654, + "pricePerUnit": 658193, + "totalCost": 109.62, + "fee": 0.38499691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-06-30T22:00:04" + }, + { + "id": "y27ldg2jf5bwtygsv7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T02:00:05", + "amountCrypto": 0.00016572, + "pricePerUnit": 661431, + "totalCost": 109.61, + "fee": 0.38498596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T02:00:05" + }, + { + "id": "uxkxrd8chukmx3kxlw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T06:00:05", + "amountCrypto": 0.00016615, + "pricePerUnit": 659713, + "totalCost": 109.61, + "fee": 0.38498234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T06:00:05" + }, + { + "id": "hxhn6q198lo801qo7l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T10:00:05", + "amountCrypto": 0.00016569, + "pricePerUnit": 661567, + "totalCost": 109.62, + "fee": 0.38499541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T10:00:05" + }, + { + "id": "dbna7gkp3rr4p1q4e9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T14:00:04", + "amountCrypto": 0.0001653, + "pricePerUnit": 663121, + "totalCost": 109.61, + "fee": 0.38499142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T14:00:04" + }, + { + "id": "6ld6bcwwfbl2uy6ooi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T18:00:05", + "amountCrypto": 0.00016508, + "pricePerUnit": 663669, + "totalCost": 109.56, + "fee": 0.38479686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T18:00:05" + }, + { + "id": "bvsjv803q757vk5zb5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-01T22:00:04", + "amountCrypto": 0.00016482, + "pricePerUnit": 665065, + "totalCost": 109.62, + "fee": 0.38499884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-01T22:00:04" + }, + { + "id": "t12me8yuw9rna9di31", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T02:00:07", + "amountCrypto": 0.00016496, + "pricePerUnit": 664476, + "totalCost": 109.61, + "fee": 0.38498461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T02:00:07" + }, + { + "id": "2nq4htenvj8612iy8c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T06:00:04", + "amountCrypto": 0.0001654, + "pricePerUnit": 662706, + "totalCost": 109.61, + "fee": 0.38498325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T06:00:04" + }, + { + "id": "wrkd3sgwom64u3spj9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T10:00:05", + "amountCrypto": 0.00016535, + "pricePerUnit": 662927, + "totalCost": 109.61, + "fee": 0.38499521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T10:00:05" + }, + { + "id": "zgwwlkjeeg055emgut", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T14:00:05", + "amountCrypto": 0.00016517, + "pricePerUnit": 663650, + "totalCost": 109.62, + "fee": 0.38499553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T14:00:05" + }, + { + "id": "mu7kpi3uoa41f213h5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T18:00:04", + "amountCrypto": 0.00016549, + "pricePerUnit": 662368, + "totalCost": 109.62, + "fee": 0.38499628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T18:00:04" + }, + { + "id": "lresrs180jo7r2z1ra", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-02T22:00:05", + "amountCrypto": 0.00016514, + "pricePerUnit": 663757, + "totalCost": 109.61, + "fee": 0.38498767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-02T22:00:05" + }, + { + "id": "qxi370stqziv0dmcyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T02:00:04", + "amountCrypto": 0.00016473, + "pricePerUnit": 665413, + "totalCost": 109.61, + "fee": 0.38498996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T02:00:04" + }, + { + "id": "h1680vpaixgfmcgj91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T06:00:06", + "amountCrypto": 0.00016428, + "pricePerUnit": 667220, + "totalCost": 109.61, + "fee": 0.38498089, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T06:00:06" + }, + { + "id": "yreczw5mtpgt1dlcj2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T10:00:07", + "amountCrypto": 0.00016361, + "pricePerUnit": 669946, + "totalCost": 109.61, + "fee": 0.38497725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T10:00:07" + }, + { + "id": "tzizapty55gw0c6bwn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T14:00:04", + "amountCrypto": 0.00016466, + "pricePerUnit": 665713, + "totalCost": 109.62, + "fee": 0.38499986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T14:00:04" + }, + { + "id": "we7dxkqd3ee822j8w2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T18:00:04", + "amountCrypto": 0.00016238, + "pricePerUnit": 675046, + "totalCost": 109.61, + "fee": 0.38499166, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T18:00:04" + }, + { + "id": "p4usxkiwyhds3ow424", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-03T22:00:05", + "amountCrypto": 0.00016135, + "pricePerUnit": 679367, + "totalCost": 109.62, + "fee": 0.38499832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-03T22:00:05" + }, + { + "id": "fd81et2zp8al0ja44k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T02:00:05", + "amountCrypto": 0.00016183, + "pricePerUnit": 677321, + "totalCost": 109.61, + "fee": 0.38498073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T02:00:05" + }, + { + "id": "prbngd998exmsbbq3t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T06:00:05", + "amountCrypto": 0.00016149, + "pricePerUnit": 678773, + "totalCost": 109.62, + "fee": 0.38499547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T06:00:05" + }, + { + "id": "1iva7drqx2g8w8muj3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T10:00:07", + "amountCrypto": 0.00016258, + "pricePerUnit": 674206, + "totalCost": 109.61, + "fee": 0.38498619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T10:00:07" + }, + { + "id": "jyt3levrv3mfww1h4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T14:00:04", + "amountCrypto": 0.00016232, + "pricePerUnit": 675305, + "totalCost": 109.62, + "fee": 0.38499707, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T14:00:04" + }, + { + "id": "x9wra6bnkmb70vgkqh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T18:17:03", + "amountCrypto": 0.00016221, + "pricePerUnit": 675765, + "totalCost": 109.62, + "fee": 0.38499824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T18:17:03" + }, + { + "id": "uqoapd2fmc400vd851", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-04T22:00:05", + "amountCrypto": 0.00016353, + "pricePerUnit": 670312, + "totalCost": 109.62, + "fee": 0.38499922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-04T22:00:05" + }, + { + "id": "ih0nfe1vj24n1ro491", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-05T02:00:05", + "amountCrypto": 0.00016314, + "pricePerUnit": 671910, + "totalCost": 109.62, + "fee": 0.38499668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-05T02:00:05" + }, + { + "id": "97imz6o5iasvewh7ak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-05T06:00:04", + "amountCrypto": 0.00016262, + "pricePerUnit": 674032, + "totalCost": 109.61, + "fee": 0.38498153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-05T06:00:04" + }, + { + "id": "25gbrxjrvic0yjsk0y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-05T18:00:05", + "amountCrypto": 0.00016493, + "pricePerUnit": 664595, + "totalCost": 109.61, + "fee": 0.38498353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-05T18:00:05" + }, + { + "id": "maloi1iutd6i82hpzb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-05T22:00:04", + "amountCrypto": 0.00016429, + "pricePerUnit": 667184, + "totalCost": 109.61, + "fee": 0.38498355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-05T22:00:04" + }, + { + "id": "nvuncnjmg2sbewmy8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T02:00:04", + "amountCrypto": 0.00016393, + "pricePerUnit": 668641, + "totalCost": 109.61, + "fee": 0.38497884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T02:00:04" + }, + { + "id": "9r5v80bc4tf7o0mjet", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T06:00:04", + "amountCrypto": 0.00016387, + "pricePerUnit": 668909, + "totalCost": 109.61, + "fee": 0.38499219, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T06:00:04" + }, + { + "id": "f2nfg7croxw455lytg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T10:00:06", + "amountCrypto": 0.00016242, + "pricePerUnit": 674875, + "totalCost": 109.61, + "fee": 0.38498895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T10:00:06" + }, + { + "id": "s318trm6rho34gawnz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T14:00:04", + "amountCrypto": 0.00016274, + "pricePerUnit": 673563, + "totalCost": 109.62, + "fee": 0.38499754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T14:00:04" + }, + { + "id": "xgmwh0arzav7m3al6m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T18:00:06", + "amountCrypto": 0.00016467, + "pricePerUnit": 665668, + "totalCost": 109.62, + "fee": 0.38499721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T18:00:06" + }, + { + "id": "na9200m7p6iky4ilji", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-06T22:00:04", + "amountCrypto": 0.00016541, + "pricePerUnit": 662666, + "totalCost": 109.61, + "fee": 0.38498328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-06T22:00:04" + }, + { + "id": "l07oszxx4y20bk61ww", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T02:00:06", + "amountCrypto": 0.00016768, + "pricePerUnit": 653696, + "totalCost": 109.61, + "fee": 0.38498385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T02:00:06" + }, + { + "id": "goqdahjje574sy2edm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T06:00:04", + "amountCrypto": 0.00016653, + "pricePerUnit": 658215, + "totalCost": 109.61, + "fee": 0.38498666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T06:00:04" + }, + { + "id": "r71ftfharwz4sp4ia3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T10:00:05", + "amountCrypto": 0.00016616, + "pricePerUnit": 659673, + "totalCost": 109.61, + "fee": 0.38498217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T10:00:05" + }, + { + "id": "x49pv3ai99mzjlx20f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T14:00:05", + "amountCrypto": 0.00016608, + "pricePerUnit": 660000, + "totalCost": 109.61, + "fee": 0.38498756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T14:00:05" + }, + { + "id": "syg8zmj53jvhocqm4c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T18:00:06", + "amountCrypto": 0.00016592, + "pricePerUnit": 660657, + "totalCost": 109.62, + "fee": 0.38499953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T18:00:06" + }, + { + "id": "ym79sanqhl6pd339be", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-07T22:00:06", + "amountCrypto": 0.00016687, + "pricePerUnit": 656876, + "totalCost": 109.61, + "fee": 0.3849879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-07T22:00:06" + }, + { + "id": "fnrkqcz2lbticjiuef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T02:00:06", + "amountCrypto": 0.00016633, + "pricePerUnit": 659012, + "totalCost": 109.61, + "fee": 0.3849899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T02:00:06" + }, + { + "id": "eq8imnuhuoaznfcovv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T06:00:04", + "amountCrypto": 0.00016666, + "pricePerUnit": 657694, + "totalCost": 109.61, + "fee": 0.38498223, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T06:00:04" + }, + { + "id": "mw6cjjp6lioxxrnd28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T10:00:04", + "amountCrypto": 0.00016703, + "pricePerUnit": 656255, + "totalCost": 109.61, + "fee": 0.38499273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T10:00:04" + }, + { + "id": "361u8kwrhi314jis05", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T14:00:05", + "amountCrypto": 0.00016699, + "pricePerUnit": 656394, + "totalCost": 109.61, + "fee": 0.38498206, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T14:00:05" + }, + { + "id": "4wxqsyyki1dw02vkk2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T18:00:04", + "amountCrypto": 0.00016697, + "pricePerUnit": 656477, + "totalCost": 109.61, + "fee": 0.38498462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T18:00:04" + }, + { + "id": "as4vjxh778zh2k91qs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-08T22:00:06", + "amountCrypto": 0.00016749, + "pricePerUnit": 654458, + "totalCost": 109.62, + "fee": 0.38499588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-08T22:00:06" + }, + { + "id": "7oygcs3gvhkvbnthkr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T02:00:04", + "amountCrypto": 0.00016657, + "pricePerUnit": 658074, + "totalCost": 109.62, + "fee": 0.38499664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T02:00:04" + }, + { + "id": "wsxkpaktd1d4lk0ian", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T06:00:05", + "amountCrypto": 0.00016652, + "pricePerUnit": 658262, + "totalCost": 109.61, + "fee": 0.38499103, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T06:00:05" + }, + { + "id": "cfffb0u62w715u6w0m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T10:00:06", + "amountCrypto": 0.00016665, + "pricePerUnit": 657739, + "totalCost": 109.61, + "fee": 0.38498546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T10:00:06" + }, + { + "id": "p4u21q5v9cufrw885r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T14:00:04", + "amountCrypto": 0.00016658, + "pricePerUnit": 658004, + "totalCost": 109.61, + "fee": 0.3849788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T14:00:04" + }, + { + "id": "2fgyyycfmgbegn8owa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T18:00:05", + "amountCrypto": 0.00016612, + "pricePerUnit": 659848, + "totalCost": 109.61, + "fee": 0.3849916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T18:00:05" + }, + { + "id": "2ojxi0ubhnm22llz2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-09T22:00:06", + "amountCrypto": 0.00016684, + "pricePerUnit": 657001, + "totalCost": 109.61, + "fee": 0.38499194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-09T22:00:06" + }, + { + "id": "ynwnd2p2miime843wf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T02:00:06", + "amountCrypto": 0.00016716, + "pricePerUnit": 655757, + "totalCost": 109.62, + "fee": 0.38499999, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T02:00:06" + }, + { + "id": "1pa80ll85aza28tpuj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T06:00:04", + "amountCrypto": 0.00016696, + "pricePerUnit": 656534, + "totalCost": 109.61, + "fee": 0.38499499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T06:00:04" + }, + { + "id": "zvi040bb2cuxc33c10", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T10:00:04", + "amountCrypto": 0.00016692, + "pricePerUnit": 656698, + "totalCost": 109.62, + "fee": 0.3849989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T10:00:04" + }, + { + "id": "phl1u7ttjvxsrmla1o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T14:00:04", + "amountCrypto": 0.00016692, + "pricePerUnit": 656699, + "totalCost": 109.62, + "fee": 0.38499949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T14:00:04" + }, + { + "id": "fncpv0h18gh3akw0um", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T18:00:04", + "amountCrypto": 0.00016657, + "pricePerUnit": 658050, + "totalCost": 109.61, + "fee": 0.3849826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T18:00:04" + }, + { + "id": "flagxqxo6ly0jrnyn7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-10T22:00:04", + "amountCrypto": 0.00016425, + "pricePerUnit": 667342, + "totalCost": 109.61, + "fee": 0.38498097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-10T22:00:04" + }, + { + "id": "zljwitubn9wqxhload", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T02:00:05", + "amountCrypto": 0.0001666, + "pricePerUnit": 657922, + "totalCost": 109.61, + "fee": 0.38497704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T02:00:05" + }, + { + "id": "3o65e5oy28hdvz8md3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T06:00:05", + "amountCrypto": 0.00016648, + "pricePerUnit": 658398, + "totalCost": 109.61, + "fee": 0.38497807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T06:00:05" + }, + { + "id": "yeumxy3q2ty9q9s118", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T10:00:05", + "amountCrypto": 0.00016558, + "pricePerUnit": 661991, + "totalCost": 109.61, + "fee": 0.3849864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T10:00:05" + }, + { + "id": "cw6tshbefkwyv0vy4c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T14:00:04", + "amountCrypto": 0.00016614, + "pricePerUnit": 659770, + "totalCost": 109.61, + "fee": 0.38499243, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T14:00:04" + }, + { + "id": "zvp6spyrrbjpdfio8g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T18:00:05", + "amountCrypto": 0.00016503, + "pricePerUnit": 664203, + "totalCost": 109.61, + "fee": 0.38498974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T18:00:05" + }, + { + "id": "tpshwfigosrqlgvoqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-11T22:00:04", + "amountCrypto": 0.00016557, + "pricePerUnit": 662048, + "totalCost": 109.62, + "fee": 0.38499629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-11T22:00:04" + }, + { + "id": "6ymlg1jz1toh984jl3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T02:00:05", + "amountCrypto": 0.0001654, + "pricePerUnit": 662699, + "totalCost": 109.61, + "fee": 0.38497918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T02:00:05" + }, + { + "id": "l5peebx9t7fvsy0gjm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T06:00:05", + "amountCrypto": 0.00016559, + "pricePerUnit": 661946, + "totalCost": 109.61, + "fee": 0.38498348, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T06:00:05" + }, + { + "id": "8420rdjpf75xkv13sj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T10:00:05", + "amountCrypto": 0.00016463, + "pricePerUnit": 665798, + "totalCost": 109.61, + "fee": 0.38497886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T10:00:05" + }, + { + "id": "3vik93b8gi4nz4s5k9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T14:00:05", + "amountCrypto": 0.00016464, + "pricePerUnit": 665777, + "totalCost": 109.61, + "fee": 0.3849901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T14:00:05" + }, + { + "id": "zoy4utotsb90d9ilg0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T18:00:05", + "amountCrypto": 0.00016757, + "pricePerUnit": 654137, + "totalCost": 109.61, + "fee": 0.38499085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T18:00:05" + }, + { + "id": "0km8r58j863lkr36sg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-12T22:00:04", + "amountCrypto": 0.00016907, + "pricePerUnit": 648340, + "totalCost": 109.61, + "fee": 0.38499474, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-12T22:00:04" + }, + { + "id": "tfa3pqubj1bfvb8m36", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T02:00:04", + "amountCrypto": 0.00016848, + "pricePerUnit": 650589, + "totalCost": 109.61, + "fee": 0.38498206, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T02:00:04" + }, + { + "id": "dj6625efexalpph37e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T06:00:04", + "amountCrypto": 0.00016905, + "pricePerUnit": 648389, + "totalCost": 109.61, + "fee": 0.38497829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T06:00:04" + }, + { + "id": "zyegsz5xnd5vccv88h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T10:00:05", + "amountCrypto": 0.00016879, + "pricePerUnit": 649420, + "totalCost": 109.62, + "fee": 0.3849974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T10:00:05" + }, + { + "id": "g031gqm48uwmppnk1h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T14:00:04", + "amountCrypto": 0.00016824, + "pricePerUnit": 651536, + "totalCost": 109.61, + "fee": 0.38499323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T14:00:04" + }, + { + "id": "p7dbmm6yvnqcoleica", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T18:00:07", + "amountCrypto": 0.00016662, + "pricePerUnit": 657847, + "totalCost": 109.61, + "fee": 0.38497936, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T18:00:07" + }, + { + "id": "gognpi7o72zmke32yr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-13T22:00:05", + "amountCrypto": 0.00016343, + "pricePerUnit": 670716, + "totalCost": 109.62, + "fee": 0.38499569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-13T22:00:05" + }, + { + "id": "69qozpdcecck5pstfs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T02:00:04", + "amountCrypto": 0.00016441, + "pricePerUnit": 666708, + "totalCost": 109.61, + "fee": 0.38498988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T02:00:04" + }, + { + "id": "r5663yce4c961ib7rp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T06:00:04", + "amountCrypto": 0.00016442, + "pricePerUnit": 666652, + "totalCost": 109.61, + "fee": 0.38498096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T06:00:04" + }, + { + "id": "4xsqp7cvx6iqqntw5p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T10:00:04", + "amountCrypto": 0.00016614, + "pricePerUnit": 659758, + "totalCost": 109.61, + "fee": 0.38498543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T10:00:04" + }, + { + "id": "63y1o6re8gc39lskqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T14:00:04", + "amountCrypto": 0.00016554, + "pricePerUnit": 662168, + "totalCost": 109.62, + "fee": 0.3849963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T14:00:04" + }, + { + "id": "fn4jsvtz1ar15egx49", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T18:00:05", + "amountCrypto": 0.00016562, + "pricePerUnit": 661837, + "totalCost": 109.61, + "fee": 0.38498982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T18:00:05" + }, + { + "id": "h4ld7iszmva3ft0lrs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-14T22:00:06", + "amountCrypto": 0.00017174, + "pricePerUnit": 638249, + "totalCost": 109.61, + "fee": 0.38498785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-14T22:00:06" + }, + { + "id": "mnqwzbvc8ncdvyghmg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T02:00:05", + "amountCrypto": 0.00017056, + "pricePerUnit": 642656, + "totalCost": 109.61, + "fee": 0.38498267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T02:00:05" + }, + { + "id": "76zqz3sys0bvsjktpu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T06:00:05", + "amountCrypto": 0.00017065, + "pricePerUnit": 642312, + "totalCost": 109.61, + "fee": 0.38497963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T06:00:05" + }, + { + "id": "qmibzh0o3ne22e4mea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T10:00:04", + "amountCrypto": 0.00017018, + "pricePerUnit": 644099, + "totalCost": 109.61, + "fee": 0.38498744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T10:00:04" + }, + { + "id": "t8edw9927cf3tfmlf1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T14:00:04", + "amountCrypto": 0.00017031, + "pricePerUnit": 643623, + "totalCost": 109.62, + "fee": 0.3849968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T14:00:04" + }, + { + "id": "19w3t3geo2t9rp274c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T18:00:05", + "amountCrypto": 0.00017034, + "pricePerUnit": 643501, + "totalCost": 109.61, + "fee": 0.38499163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T18:00:05" + }, + { + "id": "h08uaf5zv666whh5ea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-15T22:00:04", + "amountCrypto": 0.0001702, + "pricePerUnit": 644016, + "totalCost": 109.61, + "fee": 0.38498332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-15T22:00:04" + }, + { + "id": "x1s3vsgdbr301srg1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T02:00:05", + "amountCrypto": 0.00017052, + "pricePerUnit": 642829, + "totalCost": 109.62, + "fee": 0.38499599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T02:00:05" + }, + { + "id": "bvja55ip3ri02en2t2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T06:00:05", + "amountCrypto": 0.00017107, + "pricePerUnit": 640767, + "totalCost": 109.62, + "fee": 0.38499883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T06:00:05" + }, + { + "id": "o6wt1yvv5qsa2acvqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T10:00:05", + "amountCrypto": 0.00017099, + "pricePerUnit": 641068, + "totalCost": 109.62, + "fee": 0.38499956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T10:00:05" + }, + { + "id": "4izulph1nb4wl5gh6c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T14:00:05", + "amountCrypto": 0.00017073, + "pricePerUnit": 642018, + "totalCost": 109.61, + "fee": 0.38498381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T14:00:05" + }, + { + "id": "abtvh25j9y2m45voir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T18:00:04", + "amountCrypto": 0.00017032, + "pricePerUnit": 643561, + "totalCost": 109.61, + "fee": 0.38498232, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T18:00:04" + }, + { + "id": "fc7ifyumt4scpnebw9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-16T22:00:04", + "amountCrypto": 0.00017098, + "pricePerUnit": 641092, + "totalCost": 109.61, + "fee": 0.38499146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-16T22:00:04" + }, + { + "id": "a2cezlqpri7dd7ehrt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T02:00:06", + "amountCrypto": 0.00017125, + "pricePerUnit": 640071, + "totalCost": 109.61, + "fee": 0.3849853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T02:00:06" + }, + { + "id": "gnnj8rbjodizfokiwo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T06:00:04", + "amountCrypto": 0.00017086, + "pricePerUnit": 641543, + "totalCost": 109.61, + "fee": 0.3849919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T06:00:04" + }, + { + "id": "wbr89jprn9xlxxgahe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T10:00:05", + "amountCrypto": 0.00017106, + "pricePerUnit": 640788, + "totalCost": 109.61, + "fee": 0.38498895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T10:00:05" + }, + { + "id": "9hslawddh989ltevao", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T14:00:04", + "amountCrypto": 0.00017139, + "pricePerUnit": 639541, + "totalCost": 109.61, + "fee": 0.384981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T14:00:04" + }, + { + "id": "irbjfmujw51i835s2x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T18:00:04", + "amountCrypto": 0.00017148, + "pricePerUnit": 639230, + "totalCost": 109.62, + "fee": 0.3849961, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T18:00:04" + }, + { + "id": "r74hc7lkdl4hfv6mjg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-17T22:00:04", + "amountCrypto": 0.00017313, + "pricePerUnit": 633112, + "totalCost": 109.61, + "fee": 0.38498011, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-17T22:00:04" + }, + { + "id": "9636r4qjg286z1xp96", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T02:00:04", + "amountCrypto": 0.00017173, + "pricePerUnit": 638274, + "totalCost": 109.61, + "fee": 0.38498023, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T02:00:04" + }, + { + "id": "f02d3pg4c2uxi86gw0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T06:00:05", + "amountCrypto": 0.00017222, + "pricePerUnit": 636474, + "totalCost": 109.61, + "fee": 0.3849902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T06:00:05" + }, + { + "id": "j9m6e8ddb4auojc9ae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T10:00:05", + "amountCrypto": 0.00017285, + "pricePerUnit": 634148, + "totalCost": 109.61, + "fee": 0.38498644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T10:00:05" + }, + { + "id": "mkxrzg4mj1k1fveevw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T14:00:05", + "amountCrypto": 0.00017322, + "pricePerUnit": 632813, + "totalCost": 109.62, + "fee": 0.38499833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T14:00:05" + }, + { + "id": "mjel81ov2hbh69h7ax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T18:00:04", + "amountCrypto": 0.00017238, + "pricePerUnit": 635886, + "totalCost": 109.61, + "fee": 0.38499187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T18:00:04" + }, + { + "id": "nax5lm9fiexb6k878s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-18T22:00:04", + "amountCrypto": 0.00017329, + "pricePerUnit": 632539, + "totalCost": 109.61, + "fee": 0.38498715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-18T22:00:04" + }, + { + "id": "3lgga91rlfpsmu03r3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T02:00:05", + "amountCrypto": 0.00017251, + "pricePerUnit": 635404, + "totalCost": 109.61, + "fee": 0.38499027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T02:00:05" + }, + { + "id": "5jr86elh0fz2z4d69j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T06:00:04", + "amountCrypto": 0.00017161, + "pricePerUnit": 638734, + "totalCost": 109.61, + "fee": 0.38498876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T06:00:04" + }, + { + "id": "qm674m27olulp9igps", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T10:00:05", + "amountCrypto": 0.00017147, + "pricePerUnit": 639259, + "totalCost": 109.61, + "fee": 0.38499086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T10:00:05" + }, + { + "id": "2ja2qz0zxgwnu0jln6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T14:00:05", + "amountCrypto": 0.00017081, + "pricePerUnit": 641714, + "totalCost": 109.61, + "fee": 0.38498183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T14:00:05" + }, + { + "id": "dw21i9u05t5yp2m5yo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T18:00:08", + "amountCrypto": 0.00017127, + "pricePerUnit": 639999, + "totalCost": 109.61, + "fee": 0.38498696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T18:00:08" + }, + { + "id": "hrd2uvwsoi1wqewtz9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-19T22:00:05", + "amountCrypto": 0.0001706, + "pricePerUnit": 642512, + "totalCost": 109.61, + "fee": 0.38498667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-19T22:00:05" + }, + { + "id": "8mucn74e1mko3c65q0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T02:00:05", + "amountCrypto": 0.0001713, + "pricePerUnit": 639904, + "totalCost": 109.62, + "fee": 0.38499723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T02:00:05" + }, + { + "id": "eu84ozrzki3se7506p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T06:00:05", + "amountCrypto": 0.0001713, + "pricePerUnit": 639904, + "totalCost": 109.62, + "fee": 0.38499723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T06:00:05" + }, + { + "id": "gla2ek7zbe7f5po9pn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T10:00:05", + "amountCrypto": 0.00016978, + "pricePerUnit": 645612, + "totalCost": 109.61, + "fee": 0.38498477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T10:00:05" + }, + { + "id": "gmhv5o0ht8v5e3yp07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T14:00:06", + "amountCrypto": 0.00016899, + "pricePerUnit": 648620, + "totalCost": 109.61, + "fee": 0.38497875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T14:00:06" + }, + { + "id": "oh68b645gs1akmupvs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-20T18:00:04", + "amountCrypto": 0.00017052, + "pricePerUnit": 642824, + "totalCost": 109.61, + "fee": 0.384993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-20T18:00:04" + }, + { + "id": "ju9r2mrrgakud2f733", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-24T10:00:04", + "amountCrypto": 0.00016905, + "pricePerUnit": 648393, + "totalCost": 109.61, + "fee": 0.38498066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-24T10:00:04" + }, + { + "id": "e936n8ehmq53ifco3b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-24T14:00:04", + "amountCrypto": 0.00017172, + "pricePerUnit": 638319, + "totalCost": 109.61, + "fee": 0.38498523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-24T14:00:04" + }, + { + "id": "j5r1q4b4m8upqu8wah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-24T18:00:04", + "amountCrypto": 0.00017284, + "pricePerUnit": 634199, + "totalCost": 109.61, + "fee": 0.38499513, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-24T18:00:04" + }, + { + "id": "ysg5nr0z343js74nyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-24T22:00:05", + "amountCrypto": 0.00017245, + "pricePerUnit": 635619, + "totalCost": 109.61, + "fee": 0.38498649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-24T22:00:05" + }, + { + "id": "6d7zxks4toss7b4w85", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T02:00:09", + "amountCrypto": 0.00017208, + "pricePerUnit": 637000, + "totalCost": 109.61, + "fee": 0.38499514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T02:00:09" + }, + { + "id": "th5fopc2t2ish8y5jb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T06:00:06", + "amountCrypto": 0.00017265, + "pricePerUnit": 634892, + "totalCost": 109.61, + "fee": 0.38499214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T06:00:06" + }, + { + "id": "4nmzhitb5ypm5s7s0z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T10:00:06", + "amountCrypto": 0.0001725, + "pricePerUnit": 635425, + "totalCost": 109.61, + "fee": 0.38498058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T10:00:06" + }, + { + "id": "tn4ajc1ukupisy1qb2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T14:00:06", + "amountCrypto": 0.00017275, + "pricePerUnit": 634526, + "totalCost": 109.61, + "fee": 0.38499306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T14:00:06" + }, + { + "id": "py3ot95k0bn1kzm7o2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T18:00:07", + "amountCrypto": 0.00017189, + "pricePerUnit": 637682, + "totalCost": 109.61, + "fee": 0.38498179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T18:00:07" + }, + { + "id": "uicin0ztwn5tv8e9oj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-25T22:00:08", + "amountCrypto": 0.00017175, + "pricePerUnit": 638221, + "totalCost": 109.61, + "fee": 0.38499338, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-25T22:00:08" + }, + { + "id": "uloyh999avqid9idu5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T02:00:08", + "amountCrypto": 0.0001723, + "pricePerUnit": 636194, + "totalCost": 109.62, + "fee": 0.38499959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T02:00:08" + }, + { + "id": "bt211d9gt4ikkayxst", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T06:00:06", + "amountCrypto": 0.00017198, + "pricePerUnit": 637363, + "totalCost": 109.61, + "fee": 0.38499068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T06:00:06" + }, + { + "id": "flvfc36xwdt43ycrb9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T10:00:06", + "amountCrypto": 0.00017242, + "pricePerUnit": 635734, + "totalCost": 109.61, + "fee": 0.38498916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T10:00:06" + }, + { + "id": "g5nua78fy3zhd6z4ia", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T14:00:07", + "amountCrypto": 0.00017261, + "pricePerUnit": 635025, + "totalCost": 109.61, + "fee": 0.38498357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T14:00:07" + }, + { + "id": "e037lykro72fn6tkp9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T18:00:06", + "amountCrypto": 0.00017224, + "pricePerUnit": 636382, + "totalCost": 109.61, + "fee": 0.38497925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T18:00:06" + }, + { + "id": "fnwtm2zsqmy7rxpu3d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-26T22:00:06", + "amountCrypto": 0.00017226, + "pricePerUnit": 636329, + "totalCost": 109.61, + "fee": 0.38499189, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-26T22:00:06" + }, + { + "id": "n4u6wvj55022rq7qf8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T02:00:06", + "amountCrypto": 0.00017233, + "pricePerUnit": 636061, + "totalCost": 109.61, + "fee": 0.38498612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T02:00:06" + }, + { + "id": "x1ntzx90gnicoortpk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T06:00:06", + "amountCrypto": 0.00017217, + "pricePerUnit": 636675, + "totalCost": 109.62, + "fee": 0.38499997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T06:00:06" + }, + { + "id": "3txw9yuvlcgkzmi3sz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T10:00:05", + "amountCrypto": 0.00017216, + "pricePerUnit": 636705, + "totalCost": 109.62, + "fee": 0.38499575, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T10:00:05" + }, + { + "id": "xqf2fw9bebvlmgcqdc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T14:00:07", + "amountCrypto": 0.00017173, + "pricePerUnit": 638294, + "totalCost": 109.61, + "fee": 0.38499257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T14:00:07" + }, + { + "id": "l0hy0rhgj9r4zbbm1y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T18:00:07", + "amountCrypto": 0.00017093, + "pricePerUnit": 641260, + "totalCost": 109.61, + "fee": 0.38497973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T18:00:07" + }, + { + "id": "k0swrlu2ru2b5fuzyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-27T22:00:05", + "amountCrypto": 0.0001714, + "pricePerUnit": 639504, + "totalCost": 109.61, + "fee": 0.38498118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-27T22:00:05" + }, + { + "id": "nfe9szltfk1i534fks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T02:00:07", + "amountCrypto": 0.00017118, + "pricePerUnit": 640339, + "totalCost": 109.61, + "fee": 0.38498907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T02:00:07" + }, + { + "id": "uihfjjyllvczubq5vp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T06:00:07", + "amountCrypto": 0.00017076, + "pricePerUnit": 641916, + "totalCost": 109.61, + "fee": 0.38499028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T06:00:07" + }, + { + "id": "p9xycrez70apg9ju21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T10:00:06", + "amountCrypto": 0.00017098, + "pricePerUnit": 641097, + "totalCost": 109.61, + "fee": 0.38499446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T10:00:06" + }, + { + "id": "fd1tvldfr10jdwa9b7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T14:00:07", + "amountCrypto": 0.00017149, + "pricePerUnit": 639191, + "totalCost": 109.61, + "fee": 0.38499481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T14:00:07" + }, + { + "id": "5g23sqsrvx0647vd44", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T18:00:07", + "amountCrypto": 0.00017129, + "pricePerUnit": 639943, + "totalCost": 109.62, + "fee": 0.38499822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T18:00:07" + }, + { + "id": "k7pfgm3xgwebu2uc40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-28T22:00:07", + "amountCrypto": 0.00017166, + "pricePerUnit": 638535, + "totalCost": 109.61, + "fee": 0.38498095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-28T22:00:07" + }, + { + "id": "kxb19yz25kcf9vri8t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T02:00:06", + "amountCrypto": 0.00017157, + "pricePerUnit": 638873, + "totalCost": 109.61, + "fee": 0.38498278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T02:00:06" + }, + { + "id": "bbp86djo60o55jby1s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T06:00:07", + "amountCrypto": 0.00017121, + "pricePerUnit": 640241, + "totalCost": 109.62, + "fee": 0.38499761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T06:00:07" + }, + { + "id": "tgezrggwllz3hv256e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T10:00:06", + "amountCrypto": 0.00017156, + "pricePerUnit": 638922, + "totalCost": 109.61, + "fee": 0.38498987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T10:00:06" + }, + { + "id": "9mlss548zjfpyqxue1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T14:00:05", + "amountCrypto": 0.00017173, + "pricePerUnit": 638272, + "totalCost": 109.61, + "fee": 0.3849793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T14:00:05" + }, + { + "id": "s6voh0hj38p6tap3j6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T18:00:06", + "amountCrypto": 0.00017148, + "pricePerUnit": 639210, + "totalCost": 109.61, + "fee": 0.3849838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T18:00:06" + }, + { + "id": "c4en0ydas4be04qvcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-29T22:00:06", + "amountCrypto": 0.00017149, + "pricePerUnit": 639186, + "totalCost": 109.61, + "fee": 0.3849918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-29T22:00:06" + }, + { + "id": "zrmiz2bbk8kq1htmum", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T02:00:08", + "amountCrypto": 0.00017115, + "pricePerUnit": 640437, + "totalCost": 109.61, + "fee": 0.38498051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T02:00:08" + }, + { + "id": "p6s4ab2um62ximt7zw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T06:00:07", + "amountCrypto": 0.00017139, + "pricePerUnit": 639570, + "totalCost": 109.62, + "fee": 0.38499845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T06:00:07" + }, + { + "id": "m222706fs7vmc23ubu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T10:00:06", + "amountCrypto": 0.00017156, + "pricePerUnit": 638923, + "totalCost": 109.61, + "fee": 0.38499047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T10:00:06" + }, + { + "id": "kayugds9942egcrwh3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T14:00:07", + "amountCrypto": 0.00017154, + "pricePerUnit": 638993, + "totalCost": 109.61, + "fee": 0.38498776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T14:00:07" + }, + { + "id": "m6c1dhpduu9o30k60l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T18:00:06", + "amountCrypto": 0.00017115, + "pricePerUnit": 640438, + "totalCost": 109.61, + "fee": 0.38498111, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T18:00:06" + }, + { + "id": "ki6oga3hxvr9r9331p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-30T22:00:07", + "amountCrypto": 0.00017211, + "pricePerUnit": 636876, + "totalCost": 109.61, + "fee": 0.38498724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-30T22:00:07" + }, + { + "id": "wn62hou9gi9o3ltozu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T02:00:08", + "amountCrypto": 0.00017168, + "pricePerUnit": 638466, + "totalCost": 109.61, + "fee": 0.3849842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T02:00:08" + }, + { + "id": "uz2222dkysukgpvy7r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T06:00:06", + "amountCrypto": 0.00017075, + "pricePerUnit": 641953, + "totalCost": 109.61, + "fee": 0.38498993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T06:00:06" + }, + { + "id": "bmnh2s6e8clssanen1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T10:00:06", + "amountCrypto": 0.00017142, + "pricePerUnit": 639454, + "totalCost": 109.62, + "fee": 0.384996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T10:00:06" + }, + { + "id": "1x9t3rhuibs2fsa0i6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T14:00:08", + "amountCrypto": 0.0001718, + "pricePerUnit": 638037, + "totalCost": 109.61, + "fee": 0.38499443, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T14:00:08" + }, + { + "id": "csz331e8g445vqpz7u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-07-31T18:00:08", + "amountCrypto": 0.00017247, + "pricePerUnit": 635554, + "totalCost": 109.61, + "fee": 0.38499177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-07-31T18:00:08" + }, + { + "id": "ok6x4z0lxmtxfnyw37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-01T14:00:06", + "amountCrypto": 0.0001311, + "pricePerUnit": 630870, + "totalCost": 82.71, + "fee": 0.29048786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-01T14:00:06" + }, + { + "id": "e6np86cv0hjuww20ti", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-01T18:00:06", + "amountCrypto": 0.00013089, + "pricePerUnit": 631903, + "totalCost": 82.71, + "fee": 0.29049744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-01T18:00:06" + }, + { + "id": "07op76y05zvwph7x4a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-01T22:00:07", + "amountCrypto": 0.00012953, + "pricePerUnit": 638504, + "totalCost": 82.71, + "fee": 0.29048212, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-01T22:00:07" + }, + { + "id": "i35rhuj28a7h9zy8dh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T02:00:06", + "amountCrypto": 0.00012824, + "pricePerUnit": 644934, + "totalCost": 82.71, + "fee": 0.29048533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T02:00:06" + }, + { + "id": "zsrd3cjltlwvvt3vj8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T06:00:06", + "amountCrypto": 0.000128, + "pricePerUnit": 646142, + "totalCost": 82.71, + "fee": 0.29048477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T06:00:06" + }, + { + "id": "ey8m71z60gid5fr6ks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T10:00:06", + "amountCrypto": 0.00012855, + "pricePerUnit": 643363, + "totalCost": 82.7, + "fee": 0.29047823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T10:00:06" + }, + { + "id": "pvwmr4xcbunm81cumy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T14:00:07", + "amountCrypto": 0.00012828, + "pricePerUnit": 644752, + "totalCost": 82.71, + "fee": 0.29049394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T14:00:07" + }, + { + "id": "yxvjqubxly9y3ssoi2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T18:00:06", + "amountCrypto": 0.00012861, + "pricePerUnit": 643106, + "totalCost": 82.71, + "fee": 0.29049772, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T18:00:06" + }, + { + "id": "acjloxkabpeznzjlbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-02T22:00:05", + "amountCrypto": 0.00012946, + "pricePerUnit": 638878, + "totalCost": 82.71, + "fee": 0.2904952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-02T22:00:05" + }, + { + "id": "9p6kqxzybb56ctlsfz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T02:00:08", + "amountCrypto": 0.00012946, + "pricePerUnit": 638878, + "totalCost": 82.71, + "fee": 0.2904952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T02:00:08" + }, + { + "id": "5vjwrgye3p8ommdh2v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T06:00:06", + "amountCrypto": 0.0001294, + "pricePerUnit": 639146, + "totalCost": 82.71, + "fee": 0.29048228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T06:00:06" + }, + { + "id": "3n3496m2xf5aybbrt3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T10:00:07", + "amountCrypto": 0.00012968, + "pricePerUnit": 637791, + "totalCost": 82.71, + "fee": 0.29049376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T10:00:07" + }, + { + "id": "5gyv4nahlevigi9x59", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T14:00:08", + "amountCrypto": 0.00012954, + "pricePerUnit": 638464, + "totalCost": 82.71, + "fee": 0.29048635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T14:00:08" + }, + { + "id": "gn2jihy1dxg6wwcpef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T18:00:07", + "amountCrypto": 0.00012819, + "pricePerUnit": 645168, + "totalCost": 82.7, + "fee": 0.29047743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T18:00:07" + }, + { + "id": "vh2trux895qgj8dd0f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-03T22:00:07", + "amountCrypto": 0.00012816, + "pricePerUnit": 645319, + "totalCost": 82.7, + "fee": 0.29047742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-03T22:00:07" + }, + { + "id": "2vz8t6wvp3exs3juou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T02:00:08", + "amountCrypto": 0.00012857, + "pricePerUnit": 643306, + "totalCost": 82.71, + "fee": 0.29049768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T02:00:08" + }, + { + "id": "e2slg4i9e57o65cxd4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T06:00:06", + "amountCrypto": 0.00012879, + "pricePerUnit": 642195, + "totalCost": 82.71, + "fee": 0.29049221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T06:00:06" + }, + { + "id": "ix3rqcw3xdaf06vhwv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T10:00:07", + "amountCrypto": 0.00012819, + "pricePerUnit": 645174, + "totalCost": 82.7, + "fee": 0.29048013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T10:00:07" + }, + { + "id": "aje5v3ci9sr6b1l4qy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T14:00:06", + "amountCrypto": 0.00012839, + "pricePerUnit": 643881, + "totalCost": 82.67, + "fee": 0.29035028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T14:00:06" + }, + { + "id": "tq609nqidpe53bvbtd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T18:00:07", + "amountCrypto": 0.00012852, + "pricePerUnit": 643548, + "totalCost": 82.71, + "fee": 0.29049394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T18:00:07" + }, + { + "id": "a59l1qskjpwe9s31ry", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-04T22:00:06", + "amountCrypto": 0.00012923, + "pricePerUnit": 639996, + "totalCost": 82.71, + "fee": 0.29048655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-04T22:00:06" + }, + { + "id": "7psx0zgozezsh6o2cu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T02:00:07", + "amountCrypto": 0.00012915, + "pricePerUnit": 640422, + "totalCost": 82.71, + "fee": 0.29049996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T02:00:07" + }, + { + "id": "bslttfa6zt98y687dp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T06:00:06", + "amountCrypto": 0.00012901, + "pricePerUnit": 641095, + "totalCost": 82.71, + "fee": 0.29049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T06:00:06" + }, + { + "id": "8jg1omqq9be34vg6m7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T10:00:06", + "amountCrypto": 0.00012911, + "pricePerUnit": 640604, + "totalCost": 82.71, + "fee": 0.29049252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T10:00:06" + }, + { + "id": "j94pioazxwpp1gy6t0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T14:00:07", + "amountCrypto": 0.00012903, + "pricePerUnit": 640969, + "totalCost": 82.7, + "fee": 0.29047793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T14:00:07" + }, + { + "id": "4wravp2rzzb5zv7kpb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T18:00:07", + "amountCrypto": 0.00012908, + "pricePerUnit": 640750, + "totalCost": 82.71, + "fee": 0.29049121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T18:00:07" + }, + { + "id": "lowhkbttxnwy76kpr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-05T22:00:07", + "amountCrypto": 0.00012897, + "pricePerUnit": 641280, + "totalCost": 82.71, + "fee": 0.29048373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-05T22:00:07" + }, + { + "id": "0gxt479vk5f2cuwrfj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T02:00:07", + "amountCrypto": 0.00012886, + "pricePerUnit": 641822, + "totalCost": 82.71, + "fee": 0.29048128, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T02:00:07" + }, + { + "id": "z8f2zgzy6vj611vjzk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T06:00:07", + "amountCrypto": 0.00012894, + "pricePerUnit": 641431, + "totalCost": 82.71, + "fee": 0.29048455, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T06:00:07" + }, + { + "id": "zn2bcygghzvi4yasdu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T10:00:06", + "amountCrypto": 0.00012891, + "pricePerUnit": 641614, + "totalCost": 82.71, + "fee": 0.29049982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T10:00:06" + }, + { + "id": "63bwqk4t214029kbmo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T14:00:07", + "amountCrypto": 0.00012888, + "pricePerUnit": 641749, + "totalCost": 82.71, + "fee": 0.29049332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T14:00:07" + }, + { + "id": "7ngjs1sg47yhv77jv7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T18:00:07", + "amountCrypto": 0.00012912, + "pricePerUnit": 640530, + "totalCost": 82.71, + "fee": 0.29048146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T18:00:07" + }, + { + "id": "9gr57elk5o24u8fx47", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-06T22:00:07", + "amountCrypto": 0.00012883, + "pricePerUnit": 641986, + "totalCost": 82.71, + "fee": 0.29048786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-06T22:00:07" + }, + { + "id": "nrcfp4w7qzzed4cyyr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T02:00:09", + "amountCrypto": 0.00012883, + "pricePerUnit": 641994, + "totalCost": 82.71, + "fee": 0.29049148, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T02:00:09" + }, + { + "id": "iy8pitngxnegdr0w04", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T06:00:07", + "amountCrypto": 0.00012851, + "pricePerUnit": 643571, + "totalCost": 82.71, + "fee": 0.29048172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T06:00:07" + }, + { + "id": "n3bgyr1jvxbdeg9iz0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T10:00:07", + "amountCrypto": 0.00012897, + "pricePerUnit": 641290, + "totalCost": 82.71, + "fee": 0.29048826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T10:00:07" + }, + { + "id": "ts3mlyqio09568u788", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T14:00:07", + "amountCrypto": 0.00012891, + "pricePerUnit": 641566, + "totalCost": 82.7, + "fee": 0.29047808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T14:00:07" + }, + { + "id": "q4hk0yi7fupmbd98ts", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T18:00:06", + "amountCrypto": 0.00013008, + "pricePerUnit": 635838, + "totalCost": 82.71, + "fee": 0.29049752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T18:00:06" + }, + { + "id": "t35mrmnuysw5malvje", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-07T22:00:07", + "amountCrypto": 0.00012906, + "pricePerUnit": 640865, + "totalCost": 82.71, + "fee": 0.29049833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-07T22:00:07" + }, + { + "id": "afj34pux3s9nvkdred", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T02:00:07", + "amountCrypto": 0.00012856, + "pricePerUnit": 643317, + "totalCost": 82.7, + "fee": 0.29048005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T02:00:07" + }, + { + "id": "ped4788ncg90aaxck4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T06:00:08", + "amountCrypto": 0.0001284, + "pricePerUnit": 644156, + "totalCost": 82.71, + "fee": 0.2904969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T06:00:08" + }, + { + "id": "mknfk5ht2bic5ubrqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T10:00:08", + "amountCrypto": 0.00012835, + "pricePerUnit": 644381, + "totalCost": 82.71, + "fee": 0.29048521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T10:00:08" + }, + { + "id": "6uom63gxhrbjcfd5kp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T14:00:07", + "amountCrypto": 0.00012707, + "pricePerUnit": 650863, + "totalCost": 82.71, + "fee": 0.2904812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T14:00:07" + }, + { + "id": "5r6ap135at1cyauaya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T18:00:10", + "amountCrypto": 0.00012635, + "pricePerUnit": 654569, + "totalCost": 82.7, + "fee": 0.29047991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T18:00:10" + }, + { + "id": "so626qvyaflhravi5y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-08T22:00:09", + "amountCrypto": 0.00012524, + "pricePerUnit": 660416, + "totalCost": 82.71, + "fee": 0.29049995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-08T22:00:09" + }, + { + "id": "xjuciyuggruzapp44v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T02:00:08", + "amountCrypto": 0.00012567, + "pricePerUnit": 658114, + "totalCost": 82.71, + "fee": 0.29048129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T02:00:08" + }, + { + "id": "kjki6ef9zwgjssy6yu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T06:00:10", + "amountCrypto": 0.00012598, + "pricePerUnit": 656527, + "totalCost": 82.71, + "fee": 0.29049564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T06:00:10" + }, + { + "id": "cebv5petdoa05o7v1k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T10:00:07", + "amountCrypto": 0.00012555, + "pricePerUnit": 658765, + "totalCost": 82.71, + "fee": 0.29049098, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T10:00:07" + }, + { + "id": "wvpvlppemech598teu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T14:00:10", + "amountCrypto": 0.00012531, + "pricePerUnit": 660000, + "totalCost": 82.7, + "fee": 0.29047923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T14:00:10" + }, + { + "id": "ax8ysdjm9n7743qt1y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T18:00:10", + "amountCrypto": 0.0001257, + "pricePerUnit": 657958, + "totalCost": 82.71, + "fee": 0.29048176, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T18:00:10" + }, + { + "id": "ypxy3gh9t4es4v08wa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-09T22:00:09", + "amountCrypto": 0.0001272, + "pricePerUnit": 650212, + "totalCost": 82.71, + "fee": 0.29048754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-09T22:00:09" + }, + { + "id": "st3h7xzhawbvgyn0x9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T02:00:07", + "amountCrypto": 0.0001265, + "pricePerUnit": 653830, + "totalCost": 82.71, + "fee": 0.29049642, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T02:00:07" + }, + { + "id": "93c9uxnk8b67czs4qy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T06:00:08", + "amountCrypto": 0.00012654, + "pricePerUnit": 653611, + "totalCost": 82.71, + "fee": 0.29049095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T06:00:08" + }, + { + "id": "lhgik105nt5tiqhbnr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T10:00:07", + "amountCrypto": 0.00012725, + "pricePerUnit": 649944, + "totalCost": 82.71, + "fee": 0.29048195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T10:00:07" + }, + { + "id": "krlaztsucmuibgu1hf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T14:00:06", + "amountCrypto": 0.00012731, + "pricePerUnit": 649628, + "totalCost": 82.7, + "fee": 0.29047762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T14:00:06" + }, + { + "id": "h0z56dxw52qssn3f4v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T18:00:06", + "amountCrypto": 0.00012767, + "pricePerUnit": 647805, + "totalCost": 82.71, + "fee": 0.29048156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T18:00:06" + }, + { + "id": "2lqh7ss1v0ypq92a14", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-10T22:00:06", + "amountCrypto": 0.00012735, + "pricePerUnit": 649455, + "totalCost": 82.71, + "fee": 0.2904915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-10T22:00:06" + }, + { + "id": "uobgecg1b24icbnysd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T02:00:06", + "amountCrypto": 0.0001273, + "pricePerUnit": 649697, + "totalCost": 82.71, + "fee": 0.29048565, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T02:00:06" + }, + { + "id": "mlk19q3pcoolvhab0v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T06:00:06", + "amountCrypto": 0.0001276, + "pricePerUnit": 648194, + "totalCost": 82.71, + "fee": 0.29049663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T06:00:06" + }, + { + "id": "lxz6lboqgxnijgue6z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T10:00:06", + "amountCrypto": 0.00012761, + "pricePerUnit": 648140, + "totalCost": 82.71, + "fee": 0.2904952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T10:00:06" + }, + { + "id": "vamfr8jb7rqw4vdj5y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T14:00:06", + "amountCrypto": 0.00012818, + "pricePerUnit": 645224, + "totalCost": 82.7, + "fee": 0.29047998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T14:00:06" + }, + { + "id": "1i3jxxqosqyw583u6q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T18:00:07", + "amountCrypto": 0.00012806, + "pricePerUnit": 645838, + "totalCost": 82.71, + "fee": 0.2904842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T18:00:07" + }, + { + "id": "ysazsc3cz3kbtp0hx9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-11T22:00:07", + "amountCrypto": 0.00012794, + "pricePerUnit": 646443, + "totalCost": 82.71, + "fee": 0.29048386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-11T22:00:07" + }, + { + "id": "f5ceujnzk9w8zxfrl5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T02:00:07", + "amountCrypto": 0.00012782, + "pricePerUnit": 647059, + "totalCost": 82.71, + "fee": 0.29048795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T02:00:07" + }, + { + "id": "grezt2rh76zkb9g6kc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T06:00:07", + "amountCrypto": 0.00012787, + "pricePerUnit": 646801, + "totalCost": 82.71, + "fee": 0.29048571, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T06:00:07" + }, + { + "id": "l076ufqrqixn59sl5g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T10:00:08", + "amountCrypto": 0.00012783, + "pricePerUnit": 647032, + "totalCost": 82.71, + "fee": 0.29049855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T10:00:08" + }, + { + "id": "t089t7o8df2f4hh1nl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T14:00:11", + "amountCrypto": 0.00012771, + "pricePerUnit": 647627, + "totalCost": 82.71, + "fee": 0.29049273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T14:00:11" + }, + { + "id": "mjnpobqdkyfvh78eq2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T18:00:06", + "amountCrypto": 0.00012768, + "pricePerUnit": 647752, + "totalCost": 82.7, + "fee": 0.29048055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T18:00:06" + }, + { + "id": "gz1oh3wi7gqrzd3d9j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-12T22:00:07", + "amountCrypto": 0.00012765, + "pricePerUnit": 647921, + "totalCost": 82.71, + "fee": 0.29048807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-12T22:00:07" + }, + { + "id": "34hbi7as5951ltwvnq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T02:00:08", + "amountCrypto": 0.00012763, + "pricePerUnit": 648022, + "totalCost": 82.71, + "fee": 0.29048783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T02:00:08" + }, + { + "id": "s64zc1hjlfsktxi60x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T06:00:06", + "amountCrypto": 0.00012766, + "pricePerUnit": 647891, + "totalCost": 82.71, + "fee": 0.29049737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T06:00:06" + }, + { + "id": "hucjf2ntgzet134jk8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T10:00:08", + "amountCrypto": 0.00012771, + "pricePerUnit": 647639, + "totalCost": 82.71, + "fee": 0.29049812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T10:00:08" + }, + { + "id": "pb42zgqnbfkw3r9tt4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T14:00:06", + "amountCrypto": 0.00012776, + "pricePerUnit": 647345, + "totalCost": 82.7, + "fee": 0.29047992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T14:00:06" + }, + { + "id": "0w53v512g9rc274ap1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T18:00:09", + "amountCrypto": 0.00012784, + "pricePerUnit": 646970, + "totalCost": 82.71, + "fee": 0.29049344, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T18:00:09" + }, + { + "id": "d2ab1ohh9lsn0e5req", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-13T22:00:05", + "amountCrypto": 0.0001276, + "pricePerUnit": 648192, + "totalCost": 82.71, + "fee": 0.29049574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-13T22:00:05" + }, + { + "id": "c7poxzg7xg4vh4r1jo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T02:00:08", + "amountCrypto": 0.00012816, + "pricePerUnit": 645349, + "totalCost": 82.71, + "fee": 0.29049092, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T02:00:08" + }, + { + "id": "1pc0wp7egxc09xy59l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T06:00:06", + "amountCrypto": 0.00012774, + "pricePerUnit": 647442, + "totalCost": 82.7, + "fee": 0.29047797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T06:00:06" + }, + { + "id": "ertbs1h3szqlyjywt6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T10:00:07", + "amountCrypto": 0.00012766, + "pricePerUnit": 647893, + "totalCost": 82.71, + "fee": 0.29049827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T10:00:07" + }, + { + "id": "ipls5t5ehehl9zi1rs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T14:00:06", + "amountCrypto": 0.00012803, + "pricePerUnit": 646010, + "totalCost": 82.71, + "fee": 0.29049349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T14:00:06" + }, + { + "id": "u7or2rv5l78wfpdfan", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T18:00:06", + "amountCrypto": 0.00012706, + "pricePerUnit": 650939, + "totalCost": 82.71, + "fee": 0.29049226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T18:00:06" + }, + { + "id": "52yfptf6u4h7ph9di9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-14T22:00:06", + "amountCrypto": 0.00012769, + "pricePerUnit": 647730, + "totalCost": 82.71, + "fee": 0.29049343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-14T22:00:06" + }, + { + "id": "sewk6sw6vi6p2noqpd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T02:00:08", + "amountCrypto": 0.00012728, + "pricePerUnit": 649793, + "totalCost": 82.71, + "fee": 0.29048293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T02:00:08" + }, + { + "id": "03losv5bvsr2tv7yia", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T06:00:07", + "amountCrypto": 0.00012756, + "pricePerUnit": 648400, + "totalCost": 82.71, + "fee": 0.29049786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T06:00:07" + }, + { + "id": "xu856w4j29ku4qaeqk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T10:00:07", + "amountCrypto": 0.00012759, + "pricePerUnit": 648244, + "totalCost": 82.71, + "fee": 0.29049627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T10:00:07" + }, + { + "id": "oq4qkah0c9382n8wsh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T14:00:06", + "amountCrypto": 0.00012735, + "pricePerUnit": 649433, + "totalCost": 82.71, + "fee": 0.29048166, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T14:00:06" + }, + { + "id": "nfl0b4wejy51ob4602", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T18:00:06", + "amountCrypto": 0.00012759, + "pricePerUnit": 648250, + "totalCost": 82.71, + "fee": 0.29049896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T18:00:06" + }, + { + "id": "xipea38mr4gsrmd18f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-15T22:00:11", + "amountCrypto": 0.00012786, + "pricePerUnit": 646834, + "totalCost": 82.7, + "fee": 0.29047781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-15T22:00:11" + }, + { + "id": "utia2a4dqbsq30jk3s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T02:00:08", + "amountCrypto": 0.00012772, + "pricePerUnit": 647553, + "totalCost": 82.71, + "fee": 0.29048228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3403", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T02:00:08" + }, + { + "id": "vohcswqr9jz8xxzco0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T06:00:06", + "amountCrypto": 0.00012767, + "pricePerUnit": 647828, + "totalCost": 82.71, + "fee": 0.29049188, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T06:00:06" + }, + { + "id": "ufjeptkks08z8mz9vt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T10:00:07", + "amountCrypto": 0.00012804, + "pricePerUnit": 645931, + "totalCost": 82.71, + "fee": 0.29048065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T10:00:07" + }, + { + "id": "6r4rkpufy7m4tkg9ba", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T14:00:09", + "amountCrypto": 0.00012845, + "pricePerUnit": 643874, + "totalCost": 82.71, + "fee": 0.2904828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T14:00:09" + }, + { + "id": "osmhipb7no75fxw2ft", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T18:00:06", + "amountCrypto": 0.00012834, + "pricePerUnit": 644414, + "totalCost": 82.7, + "fee": 0.29047745, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T18:00:06" + }, + { + "id": "0b2whefkdblrxsn44e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-16T22:00:08", + "amountCrypto": 0.00012801, + "pricePerUnit": 646081, + "totalCost": 82.7, + "fee": 0.29048003, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-16T22:00:08" + }, + { + "id": "khs3auyqggkont6g7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T02:00:06", + "amountCrypto": 0.00012953, + "pricePerUnit": 638507, + "totalCost": 82.71, + "fee": 0.29048349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T02:00:06" + }, + { + "id": "i1ouhpf5xvpwko8vu6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T06:00:08", + "amountCrypto": 0.00012964, + "pricePerUnit": 637961, + "totalCost": 82.71, + "fee": 0.29048156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T06:00:08" + }, + { + "id": "y6ovs2d1ajb4psx0z0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T10:00:07", + "amountCrypto": 0.00012987, + "pricePerUnit": 636862, + "totalCost": 82.71, + "fee": 0.29049563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3411", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T10:00:07" + }, + { + "id": "uq2wx9119n46r01cer", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T14:00:06", + "amountCrypto": 0.00013054, + "pricePerUnit": 633585, + "totalCost": 82.71, + "fee": 0.29049183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T14:00:06" + }, + { + "id": "bxl4nvais7h7y2kazm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T18:00:05", + "amountCrypto": 0.00013296, + "pricePerUnit": 622038, + "totalCost": 82.71, + "fee": 0.29048475, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T18:00:05" + }, + { + "id": "x3pk8er3p09xe8q5xn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-17T22:00:06", + "amountCrypto": 0.00013327, + "pricePerUnit": 620619, + "totalCost": 82.71, + "fee": 0.29049783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-17T22:00:06" + }, + { + "id": "xpftl6q4qwv5w9hj6q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T02:00:06", + "amountCrypto": 0.00013964, + "pricePerUnit": 592283, + "totalCost": 82.71, + "fee": 0.29048555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T02:00:06" + }, + { + "id": "2qlbmxhmcwk54tog4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T06:00:06", + "amountCrypto": 0.00014089, + "pricePerUnit": 587048, + "totalCost": 82.71, + "fee": 0.29049536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T06:00:06" + }, + { + "id": "9m346h2f04w5xv71uy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T10:00:05", + "amountCrypto": 0.00014074, + "pricePerUnit": 587651, + "totalCost": 82.71, + "fee": 0.29048415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T10:00:05" + }, + { + "id": "gr59q4dd65pr6j3ogi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T14:00:05", + "amountCrypto": 0.00014033, + "pricePerUnit": 589400, + "totalCost": 82.71, + "fee": 0.29049996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T14:00:05" + }, + { + "id": "qedaijzzyfnb2tmblr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T18:00:06", + "amountCrypto": 0.00014371, + "pricePerUnit": 575511, + "totalCost": 82.71, + "fee": 0.29048656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T18:00:06" + }, + { + "id": "e0w66agc7tweur3qup", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-18T22:00:07", + "amountCrypto": 0.00014305, + "pricePerUnit": 578190, + "totalCost": 82.71, + "fee": 0.29049848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-18T22:00:07" + }, + { + "id": "bbwsg37snikfc3fg21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T02:00:06", + "amountCrypto": 0.0001429, + "pricePerUnit": 578766, + "totalCost": 82.71, + "fee": 0.29048296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T02:00:06" + }, + { + "id": "3ose325k2582wh8a2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T06:00:05", + "amountCrypto": 0.00014356, + "pricePerUnit": 576107, + "totalCost": 82.71, + "fee": 0.29048387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T06:00:05" + }, + { + "id": "4mr5dyo2240mw4kwba", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T10:00:05", + "amountCrypto": 0.0001438, + "pricePerUnit": 575163, + "totalCost": 82.71, + "fee": 0.29049272, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T10:00:05" + }, + { + "id": "zkuu2r9xzrxf0sybph", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T14:00:05", + "amountCrypto": 0.00014373, + "pricePerUnit": 575423, + "totalCost": 82.71, + "fee": 0.29048256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T14:00:05" + }, + { + "id": "rbru5ef5dhsau3c6jh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T18:00:06", + "amountCrypto": 0.000142, + "pricePerUnit": 582440, + "totalCost": 82.71, + "fee": 0.29048583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T18:00:06" + }, + { + "id": "q3aqqnpz4gsgnsnrqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-19T22:00:06", + "amountCrypto": 0.00014236, + "pricePerUnit": 580963, + "totalCost": 82.71, + "fee": 0.29048377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-19T22:00:06" + }, + { + "id": "xyfbyt9d8olm3hfd83", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T02:00:06", + "amountCrypto": 0.00014259, + "pricePerUnit": 580039, + "totalCost": 82.71, + "fee": 0.29049033, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T02:00:06" + }, + { + "id": "h844g9i1qb5zrjkqa3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T06:00:05", + "amountCrypto": 0.00014259, + "pricePerUnit": 580040, + "totalCost": 82.71, + "fee": 0.29049083, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T06:00:05" + }, + { + "id": "8ufwma84a1zkjik7vh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T10:00:05", + "amountCrypto": 0.00014266, + "pricePerUnit": 579750, + "totalCost": 82.71, + "fee": 0.29048813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T10:00:05" + }, + { + "id": "c8y2ghqauia3j0sphn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T14:00:05", + "amountCrypto": 0.00014209, + "pricePerUnit": 582091, + "totalCost": 82.71, + "fee": 0.29049577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T14:00:05" + }, + { + "id": "l95asmxk27oaoh93bs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T18:00:05", + "amountCrypto": 0.00014251, + "pricePerUnit": 580350, + "totalCost": 82.71, + "fee": 0.29048302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T18:00:05" + }, + { + "id": "mjkaqut9pjpql4lb8r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-20T22:00:05", + "amountCrypto": 0.00014236, + "pricePerUnit": 580963, + "totalCost": 82.71, + "fee": 0.29048377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-20T22:00:05" + }, + { + "id": "iyt4fqljnh4cc5uy94", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T02:00:06", + "amountCrypto": 0.00014218, + "pricePerUnit": 581719, + "totalCost": 82.71, + "fee": 0.29049401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T02:00:06" + }, + { + "id": "4coyuuaj569iw62kqc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T06:00:05", + "amountCrypto": 0.00014301, + "pricePerUnit": 578342, + "totalCost": 82.71, + "fee": 0.29049359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T06:00:05" + }, + { + "id": "rq6q6kzdbeci72vy2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T10:00:04", + "amountCrypto": 0.00014382, + "pricePerUnit": 575081, + "totalCost": 82.71, + "fee": 0.2904917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T10:00:04" + }, + { + "id": "w9gdxysus4qoida8lk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T14:00:06", + "amountCrypto": 0.0001439, + "pricePerUnit": 574739, + "totalCost": 82.7, + "fee": 0.29048043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T14:00:06" + }, + { + "id": "t3kzr1dcy91r6ib83o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T18:00:05", + "amountCrypto": 0.00014404, + "pricePerUnit": 574186, + "totalCost": 82.71, + "fee": 0.29048328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T18:00:05" + }, + { + "id": "nm0xw58849jqpackmv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-21T22:00:05", + "amountCrypto": 0.00014328, + "pricePerUnit": 577252, + "totalCost": 82.71, + "fee": 0.29049351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-21T22:00:05" + }, + { + "id": "heifdewy7vrbfrkro3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T02:00:06", + "amountCrypto": 0.00014313, + "pricePerUnit": 577842, + "totalCost": 82.71, + "fee": 0.29048599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T02:00:06" + }, + { + "id": "nopmvmgubcvye0tufp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T06:00:06", + "amountCrypto": 0.00014364, + "pricePerUnit": 575802, + "totalCost": 82.71, + "fee": 0.29049187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T06:00:06" + }, + { + "id": "1lny0ebvg5aeo2g8je", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T10:00:05", + "amountCrypto": 0.00014384, + "pricePerUnit": 575000, + "totalCost": 82.71, + "fee": 0.29049117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T10:00:05" + }, + { + "id": "p4ug9lrnx1q0rlkdm9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T14:00:06", + "amountCrypto": 0.00014341, + "pricePerUnit": 576710, + "totalCost": 82.71, + "fee": 0.29048408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T14:00:06" + }, + { + "id": "22e706fa1pys1hgj07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T18:00:05", + "amountCrypto": 0.00014304, + "pricePerUnit": 578217, + "totalCost": 82.71, + "fee": 0.29049173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T18:00:05" + }, + { + "id": "ot6s5f9786e28mbq6h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-22T22:00:06", + "amountCrypto": 0.0001439, + "pricePerUnit": 574752, + "totalCost": 82.71, + "fee": 0.290487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-22T22:00:06" + }, + { + "id": "6x4lv5yg0zmr1x75ur", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T02:00:06", + "amountCrypto": 0.00014285, + "pricePerUnit": 578984, + "totalCost": 82.71, + "fee": 0.2904907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T02:00:06" + }, + { + "id": "nfmzr4x0y64axsc9lb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T06:00:05", + "amountCrypto": 0.00014303, + "pricePerUnit": 578236, + "totalCost": 82.71, + "fee": 0.29048097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T06:00:05" + }, + { + "id": "82y0kedjuitvh827ej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T10:00:06", + "amountCrypto": 0.00014218, + "pricePerUnit": 581714, + "totalCost": 82.71, + "fee": 0.29049151, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T10:00:06" + }, + { + "id": "8tmoxlmtkl15q8w6k3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T14:00:06", + "amountCrypto": 0.00014271, + "pricePerUnit": 579550, + "totalCost": 82.71, + "fee": 0.2904897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T14:00:06" + }, + { + "id": "kz31bdwpgbgo7h5kxr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T18:00:05", + "amountCrypto": 0.00014241, + "pricePerUnit": 580785, + "totalCost": 82.71, + "fee": 0.29049676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T18:00:05" + }, + { + "id": "2c61wmo2sulwhqdqha", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-23T22:00:06", + "amountCrypto": 0.00013993, + "pricePerUnit": 591081, + "totalCost": 82.71, + "fee": 0.29049807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-23T22:00:06" + }, + { + "id": "zy4f5oj1jhov1jyeou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T02:00:05", + "amountCrypto": 0.0001409, + "pricePerUnit": 586983, + "totalCost": 82.71, + "fee": 0.29048381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T02:00:05" + }, + { + "id": "akq3n7eeqsvs7wxdpj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T06:00:05", + "amountCrypto": 0.00014091, + "pricePerUnit": 586960, + "totalCost": 82.71, + "fee": 0.29049305, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T06:00:05" + }, + { + "id": "5ycldv1gobekmsggck", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T10:00:05", + "amountCrypto": 0.00014027, + "pricePerUnit": 589623, + "totalCost": 82.71, + "fee": 0.29048562, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T10:00:05" + }, + { + "id": "8f1el191r8pnb2m9ar", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T14:00:05", + "amountCrypto": 0.00014023, + "pricePerUnit": 589803, + "totalCost": 82.71, + "fee": 0.29049144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T14:00:05" + }, + { + "id": "spvcgutkp16on01iqy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T18:00:05", + "amountCrypto": 0.00014179, + "pricePerUnit": 583296, + "totalCost": 82.71, + "fee": 0.29048253, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T18:00:05" + }, + { + "id": "yjwbh2vgn3m1q8fgnc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-24T22:00:05", + "amountCrypto": 0.00014159, + "pricePerUnit": 584133, + "totalCost": 82.71, + "fee": 0.29048904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-24T22:00:05" + }, + { + "id": "j8yqvcxjopjoffjqfj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T02:00:06", + "amountCrypto": 0.00014092, + "pricePerUnit": 586917, + "totalCost": 82.71, + "fee": 0.29049238, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T02:00:06" + }, + { + "id": "amzppjq3icbtlt9md7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T06:00:05", + "amountCrypto": 0.00014082, + "pricePerUnit": 587338, + "totalCost": 82.71, + "fee": 0.29049446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3458", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T06:00:05" + }, + { + "id": "iubr52dnapyx4s69pc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T10:00:06", + "amountCrypto": 0.00014146, + "pricePerUnit": 584672, + "totalCost": 82.71, + "fee": 0.29049012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3459", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T10:00:06" + }, + { + "id": "bfylxu5oaenyzu9kgi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T14:00:05", + "amountCrypto": 0.00014154, + "pricePerUnit": 584336, + "totalCost": 82.71, + "fee": 0.29048737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3460", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T14:00:05" + }, + { + "id": "oydha1kifvnl7ksf2h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T18:00:05", + "amountCrypto": 0.00014206, + "pricePerUnit": 582222, + "totalCost": 82.71, + "fee": 0.2904998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T18:00:05" + }, + { + "id": "c5c5ns6dmtgswhom17", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-25T22:00:06", + "amountCrypto": 0.00014225, + "pricePerUnit": 581430, + "totalCost": 82.71, + "fee": 0.29049264, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-25T22:00:06" + }, + { + "id": "otkjahni702eqhb12v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T02:00:06", + "amountCrypto": 0.00014167, + "pricePerUnit": 583802, + "totalCost": 82.71, + "fee": 0.29048847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T02:00:06" + }, + { + "id": "pfzqgpq9qgj6781cbg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T06:00:05", + "amountCrypto": 0.00014149, + "pricePerUnit": 584552, + "totalCost": 82.71, + "fee": 0.29049209, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T06:00:05" + }, + { + "id": "444eogvl467g4sulto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T10:00:05", + "amountCrypto": 0.00014166, + "pricePerUnit": 583842, + "totalCost": 82.71, + "fee": 0.29048786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T10:00:05" + }, + { + "id": "qkx7nxu2b63n5mp66q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T14:00:05", + "amountCrypto": 0.00014169, + "pricePerUnit": 583734, + "totalCost": 82.71, + "fee": 0.29049564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T14:00:05" + }, + { + "id": "x9bsclexrj1m12k7pb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T18:00:05", + "amountCrypto": 0.00014165, + "pricePerUnit": 583883, + "totalCost": 82.71, + "fee": 0.29048776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T18:00:05" + }, + { + "id": "7p4wgtmlyh3lbxsxfs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-26T22:00:06", + "amountCrypto": 0.00014167, + "pricePerUnit": 583819, + "totalCost": 82.71, + "fee": 0.29049693, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-26T22:00:06" + }, + { + "id": "y7sirpdj6p4mzs90x4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T02:00:06", + "amountCrypto": 0.00014176, + "pricePerUnit": 583431, + "totalCost": 82.71, + "fee": 0.29048829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T02:00:06" + }, + { + "id": "x88mdj70l5qvdfw70i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T06:00:05", + "amountCrypto": 0.00014177, + "pricePerUnit": 583383, + "totalCost": 82.71, + "fee": 0.29048488, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T06:00:05" + }, + { + "id": "3ujljwf9hwynm6xmv0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T10:00:05", + "amountCrypto": 0.00014164, + "pricePerUnit": 583940, + "totalCost": 82.71, + "fee": 0.2904956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T10:00:05" + }, + { + "id": "698i0yz761bh91ug2j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T14:00:05", + "amountCrypto": 0.00014156, + "pricePerUnit": 584254, + "totalCost": 82.71, + "fee": 0.29048765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T14:00:05" + }, + { + "id": "skvfk7n968fr1pp8qg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T18:00:05", + "amountCrypto": 0.00014141, + "pricePerUnit": 584879, + "totalCost": 82.71, + "fee": 0.29049026, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T18:00:05" + }, + { + "id": "8onv7240dorp4d2s50", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-27T22:00:05", + "amountCrypto": 0.00014146, + "pricePerUnit": 584685, + "totalCost": 82.71, + "fee": 0.29049658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-27T22:00:05" + }, + { + "id": "4x4e1cai6duoqsh2ip", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T02:00:05", + "amountCrypto": 0.00014149, + "pricePerUnit": 584543, + "totalCost": 82.71, + "fee": 0.29048762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T02:00:05" + }, + { + "id": "z21lzjlynlfors8yqq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T06:00:06", + "amountCrypto": 0.00014214, + "pricePerUnit": 581857, + "totalCost": 82.71, + "fee": 0.29048118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T06:00:06" + }, + { + "id": "guu6779uldad0whav9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T10:00:05", + "amountCrypto": 0.00014261, + "pricePerUnit": 579972, + "totalCost": 82.71, + "fee": 0.29049752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T10:00:05" + }, + { + "id": "5o2d2rbqm0j7lm5j8i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T14:00:07", + "amountCrypto": 0.00014213, + "pricePerUnit": 581906, + "totalCost": 82.71, + "fee": 0.2904852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T14:00:07" + }, + { + "id": "bq00uj452ubx07kr7l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T18:00:05", + "amountCrypto": 0.00014174, + "pricePerUnit": 583504, + "totalCost": 82.71, + "fee": 0.29048365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T18:00:05" + }, + { + "id": "3o0ogl0eobt4c499rv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-28T22:00:06", + "amountCrypto": 0.00014242, + "pricePerUnit": 580729, + "totalCost": 82.71, + "fee": 0.29048915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-28T22:00:06" + }, + { + "id": "genc4tnbpvexc9dtte", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T02:00:06", + "amountCrypto": 0.00014181, + "pricePerUnit": 583237, + "totalCost": 82.71, + "fee": 0.29049412, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T02:00:06" + }, + { + "id": "qo2el6u43kpf0vwz7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T06:00:06", + "amountCrypto": 0.00014217, + "pricePerUnit": 581760, + "totalCost": 82.71, + "fee": 0.29049405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T06:00:06" + }, + { + "id": "ujd4ebfxpzrbplzgv1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T10:00:05", + "amountCrypto": 0.00014232, + "pricePerUnit": 581129, + "totalCost": 82.71, + "fee": 0.29048513, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T10:00:05" + }, + { + "id": "4swseesr51138sk4qa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T14:00:07", + "amountCrypto": 0.00014242, + "pricePerUnit": 580746, + "totalCost": 82.71, + "fee": 0.29049765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T14:00:07" + }, + { + "id": "k1b0dx7uayg98nf5gq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T18:00:06", + "amountCrypto": 0.00013554, + "pricePerUnit": 610220, + "totalCost": 82.71, + "fee": 0.29049545, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T18:00:06" + }, + { + "id": "zktiz2th32jehp12mf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-29T22:00:06", + "amountCrypto": 0.00013394, + "pricePerUnit": 617477, + "totalCost": 82.7, + "fee": 0.29048018, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-29T22:00:06" + }, + { + "id": "o4tyl09wig27zdtd9y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T02:00:07", + "amountCrypto": 0.00013449, + "pricePerUnit": 614962, + "totalCost": 82.71, + "fee": 0.29048499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T02:00:07" + }, + { + "id": "elajvirokqiitjsj90", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T06:00:07", + "amountCrypto": 0.0001361, + "pricePerUnit": 607712, + "totalCost": 82.71, + "fee": 0.2904968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T06:00:07" + }, + { + "id": "cwg5ucuya0ncclygwx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T10:00:07", + "amountCrypto": 0.00013562, + "pricePerUnit": 609827, + "totalCost": 82.7, + "fee": 0.29047972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T10:00:07" + }, + { + "id": "mduf1z1w09v70jqe5k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T14:00:07", + "amountCrypto": 0.00013636, + "pricePerUnit": 606551, + "totalCost": 82.71, + "fee": 0.29049572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T14:00:07" + }, + { + "id": "j0h4eao97bmvatsf92", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T18:00:06", + "amountCrypto": 0.00013755, + "pricePerUnit": 601290, + "totalCost": 82.71, + "fee": 0.2904892, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T18:00:06" + }, + { + "id": "j02zccl405q0evjpq3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-30T22:00:06", + "amountCrypto": 0.00013757, + "pricePerUnit": 601224, + "totalCost": 82.71, + "fee": 0.29049955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-30T22:00:06" + }, + { + "id": "ei3gwd64cmpbtohtjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T02:00:06", + "amountCrypto": 0.00013709, + "pricePerUnit": 603294, + "totalCost": 82.71, + "fee": 0.29048265, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T02:00:06" + }, + { + "id": "kzrh202r38woo5jfk9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T06:00:05", + "amountCrypto": 0.00013748, + "pricePerUnit": 601603, + "totalCost": 82.71, + "fee": 0.29049251, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T06:00:05" + }, + { + "id": "2hfiw8gjfbvy8iadqx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T10:00:07", + "amountCrypto": 0.00013687, + "pricePerUnit": 604294, + "totalCost": 82.71, + "fee": 0.29049721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3495", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T10:00:07" + }, + { + "id": "0fgi0bwyf4nwbtkshh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T14:00:05", + "amountCrypto": 0.00013648, + "pricePerUnit": 606007, + "totalCost": 82.71, + "fee": 0.29049059, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T14:00:05" + }, + { + "id": "rksjjl604bo6pfj53p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T18:00:06", + "amountCrypto": 0.00013724, + "pricePerUnit": 602665, + "totalCost": 82.71, + "fee": 0.2904973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T18:00:06" + }, + { + "id": "6wslgsvjrihlthasls", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-08-31T22:00:06", + "amountCrypto": 0.00014206, + "pricePerUnit": 582187, + "totalCost": 82.71, + "fee": 0.29048234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-08-31T22:00:06" + }, + { + "id": "e9q1zr427gadydoxsl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T02:00:07", + "amountCrypto": 0.00014326, + "pricePerUnit": 577336, + "totalCost": 82.71, + "fee": 0.29049523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T02:00:07" + }, + { + "id": "9vqrw2ac229y8e9fxj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T06:00:05", + "amountCrypto": 0.00014263, + "pricePerUnit": 579855, + "totalCost": 82.7, + "fee": 0.29047965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T06:00:05" + }, + { + "id": "lp3skhejfpqjzpt6mv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T10:00:05", + "amountCrypto": 0.0001428, + "pricePerUnit": 579184, + "totalCost": 82.71, + "fee": 0.29048933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T10:00:05" + }, + { + "id": "8rs0a1ot49g1bju4wn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T14:00:05", + "amountCrypto": 0.00014213, + "pricePerUnit": 581901, + "totalCost": 82.71, + "fee": 0.29048271, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T14:00:05" + }, + { + "id": "7uk384uidlitbba4so", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T18:00:06", + "amountCrypto": 0.00014304, + "pricePerUnit": 578200, + "totalCost": 82.71, + "fee": 0.29048319, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T18:00:06" + }, + { + "id": "ajbt0usitet9bilsrf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-01T22:00:05", + "amountCrypto": 0.00014356, + "pricePerUnit": 576114, + "totalCost": 82.71, + "fee": 0.2904874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-01T22:00:05" + }, + { + "id": "hzie21s3letn3mpz9b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T02:00:06", + "amountCrypto": 0.0001431, + "pricePerUnit": 577988, + "totalCost": 82.71, + "fee": 0.29049849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T02:00:06" + }, + { + "id": "2q60a44q1eerwc33pi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T06:00:06", + "amountCrypto": 0.00014314, + "pricePerUnit": 577819, + "totalCost": 82.71, + "fee": 0.29049473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T06:00:06" + }, + { + "id": "r23pd05ja7s9ucz3nt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T10:00:06", + "amountCrypto": 0.00014307, + "pricePerUnit": 578108, + "totalCost": 82.71, + "fee": 0.29049789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T10:00:06" + }, + { + "id": "h7jrjrkk71324si9ob", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T14:00:07", + "amountCrypto": 0.00014292, + "pricePerUnit": 578687, + "totalCost": 82.71, + "fee": 0.29048396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T14:00:07" + }, + { + "id": "jki904bxzz05wc3cpv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T18:00:06", + "amountCrypto": 0.00014248, + "pricePerUnit": 580498, + "totalCost": 82.71, + "fee": 0.29049593, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3509", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T18:00:06" + }, + { + "id": "25ax6rn396sf6omj7x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-02T22:00:05", + "amountCrypto": 0.00014283, + "pricePerUnit": 579073, + "totalCost": 82.71, + "fee": 0.29049467, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3510", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-02T22:00:05" + }, + { + "id": "k7g26ytrw7odaitkvb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T02:00:07", + "amountCrypto": 0.00014263, + "pricePerUnit": 579895, + "totalCost": 82.71, + "fee": 0.29049969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3511", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T02:00:07" + }, + { + "id": "vnlbk9raite1lkt9cd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T06:00:06", + "amountCrypto": 0.00014268, + "pricePerUnit": 579653, + "totalCost": 82.7, + "fee": 0.29048025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3512", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T06:00:06" + }, + { + "id": "y6t7874101tzbm1oyd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T10:00:05", + "amountCrypto": 0.0001422, + "pricePerUnit": 581614, + "totalCost": 82.71, + "fee": 0.29048243, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3513", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T10:00:05" + }, + { + "id": "3lzoxr75wn61w4bvxu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T14:00:06", + "amountCrypto": 0.00014231, + "pricePerUnit": 581197, + "totalCost": 82.71, + "fee": 0.29049871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3514", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T14:00:06" + }, + { + "id": "yko7tbqlbos45smhhh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T18:00:06", + "amountCrypto": 0.00014255, + "pricePerUnit": 580208, + "totalCost": 82.71, + "fee": 0.29049346, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3515", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T18:00:06" + }, + { + "id": "o87k33es2yhcctgjnh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-03T22:00:06", + "amountCrypto": 0.00014181, + "pricePerUnit": 583213, + "totalCost": 82.71, + "fee": 0.29048217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3516", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-03T22:00:06" + }, + { + "id": "zejmzvnlte4lv76mpo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T02:00:06", + "amountCrypto": 0.00014203, + "pricePerUnit": 582328, + "totalCost": 82.71, + "fee": 0.29049133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3517", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T02:00:06" + }, + { + "id": "6rqonw7y0gagvxfre2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T06:00:06", + "amountCrypto": 0.00014209, + "pricePerUnit": 582069, + "totalCost": 82.71, + "fee": 0.2904848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3518", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T06:00:06" + }, + { + "id": "ndlqtoyae8at23ceby", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T10:00:05", + "amountCrypto": 0.00014215, + "pricePerUnit": 581841, + "totalCost": 82.71, + "fee": 0.29049363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3519", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T10:00:05" + }, + { + "id": "3lgjs8cnhgap1htf4g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T14:00:05", + "amountCrypto": 0.0001426, + "pricePerUnit": 579983, + "totalCost": 82.71, + "fee": 0.29048266, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3520", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T14:00:05" + }, + { + "id": "t7y3tsgixcru97nt3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T18:00:06", + "amountCrypto": 0.00014301, + "pricePerUnit": 578315, + "totalCost": 82.7, + "fee": 0.29048003, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3521", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T18:00:06" + }, + { + "id": "0dd5t1pdwggh9vkovp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-04T22:00:05", + "amountCrypto": 0.0001424, + "pricePerUnit": 580803, + "totalCost": 82.71, + "fee": 0.29048537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3522", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-04T22:00:05" + }, + { + "id": "9s8vq9udoy4l5ec767", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T02:00:04", + "amountCrypto": 0.00014283, + "pricePerUnit": 579054, + "totalCost": 82.71, + "fee": 0.29048514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3523", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T02:00:04" + }, + { + "id": "9j9c24st61nehwhuq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T06:00:07", + "amountCrypto": 0.00014346, + "pricePerUnit": 576510, + "totalCost": 82.71, + "fee": 0.29048459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3524", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T06:00:07" + }, + { + "id": "n35z7z0vi7uskxbm2b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T10:00:07", + "amountCrypto": 0.0001432, + "pricePerUnit": 577573, + "totalCost": 82.71, + "fee": 0.29049277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3525", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T10:00:07" + }, + { + "id": "xu5qec35kko5pc8ljy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T14:00:05", + "amountCrypto": 0.00014204, + "pricePerUnit": 582276, + "totalCost": 82.71, + "fee": 0.29048609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3526", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T14:00:05" + }, + { + "id": "z7fxseo6k021b9wsln", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T18:00:06", + "amountCrypto": 0.00014191, + "pricePerUnit": 582809, + "totalCost": 82.71, + "fee": 0.29048564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3527", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T18:00:06" + }, + { + "id": "6avrkji9b4v1o6qzjx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-05T22:00:05", + "amountCrypto": 0.00014214, + "pricePerUnit": 581887, + "totalCost": 82.71, + "fee": 0.29049615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3528", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-05T22:00:05" + }, + { + "id": "bjj7h2skajtvn1bwyj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T02:00:06", + "amountCrypto": 0.00014154, + "pricePerUnit": 584328, + "totalCost": 82.71, + "fee": 0.29048339, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3529", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T02:00:06" + }, + { + "id": "qz1qu97m73ssgog0f9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T06:00:06", + "amountCrypto": 0.0001418, + "pricePerUnit": 583270, + "totalCost": 82.71, + "fee": 0.29049007, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3530", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T06:00:06" + }, + { + "id": "63c773cuaiz54asksz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T10:00:06", + "amountCrypto": 0.00014175, + "pricePerUnit": 583486, + "totalCost": 82.71, + "fee": 0.29049518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3531", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T10:00:06" + }, + { + "id": "553f40fdmx41w0qsdx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T14:00:07", + "amountCrypto": 0.00014199, + "pricePerUnit": 582489, + "totalCost": 82.71, + "fee": 0.29048981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3532", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T14:00:07" + }, + { + "id": "siupfwjqfzi5m7a3sm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T18:00:07", + "amountCrypto": 0.00014117, + "pricePerUnit": 585891, + "totalCost": 82.71, + "fee": 0.29049901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3533", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T18:00:07" + }, + { + "id": "57hiwic30wrid4p306", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-06T22:00:05", + "amountCrypto": 0.00014111, + "pricePerUnit": 586137, + "totalCost": 82.71, + "fee": 0.29049747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3534", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-06T22:00:05" + }, + { + "id": "tvajjmtsjppay2d5e4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T02:00:07", + "amountCrypto": 0.00014083, + "pricePerUnit": 587278, + "totalCost": 82.71, + "fee": 0.29048542, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3535", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T02:00:07" + }, + { + "id": "zm4fqg3notavfrx736", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T06:00:06", + "amountCrypto": 0.00014096, + "pricePerUnit": 586755, + "totalCost": 82.71, + "fee": 0.29049463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3536", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T06:00:06" + }, + { + "id": "7oiezmatxxz69zxqbv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T10:00:05", + "amountCrypto": 0.00014034, + "pricePerUnit": 589327, + "totalCost": 82.71, + "fee": 0.29048468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3537", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T10:00:05" + }, + { + "id": "l41402ml3jdic7auum", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T14:00:05", + "amountCrypto": 0.00014046, + "pricePerUnit": 588829, + "totalCost": 82.71, + "fee": 0.29048738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3538", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T14:00:05" + }, + { + "id": "c85yxkw7zqa7v81g40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T18:00:07", + "amountCrypto": 0.00013996, + "pricePerUnit": 590926, + "totalCost": 82.71, + "fee": 0.29048416, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3539", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T18:00:07" + }, + { + "id": "xyfcqn55qrvtg4tc12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-07T22:00:05", + "amountCrypto": 0.00014001, + "pricePerUnit": 590721, + "totalCost": 82.71, + "fee": 0.29048712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3540", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-07T22:00:05" + }, + { + "id": "nt1hg1a9fzdrkfsech", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T02:00:07", + "amountCrypto": 0.0001379, + "pricePerUnit": 599749, + "totalCost": 82.71, + "fee": 0.290482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3541", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T02:00:07" + }, + { + "id": "h199gg4xep7fy43mhr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T06:01:04", + "amountCrypto": 0.00013841, + "pricePerUnit": 597565, + "totalCost": 82.71, + "fee": 0.29049459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3542", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T06:01:04" + }, + { + "id": "vuoyahb8uodjk4fqrf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T10:00:05", + "amountCrypto": 0.00013798, + "pricePerUnit": 599397, + "totalCost": 82.7, + "fee": 0.29047993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3543", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T10:00:05" + }, + { + "id": "0fpmsl8yikwa43f7i2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T14:00:05", + "amountCrypto": 0.00013901, + "pricePerUnit": 594961, + "totalCost": 82.71, + "fee": 0.29048249, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3544", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T14:00:05" + }, + { + "id": "54pxbm0pswte3kl5gb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T18:00:07", + "amountCrypto": 0.00013923, + "pricePerUnit": 594029, + "totalCost": 82.71, + "fee": 0.29048646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3545", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T18:00:07" + }, + { + "id": "slvx755ysrka1ysgug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-08T22:00:05", + "amountCrypto": 0.00013923, + "pricePerUnit": 594031, + "totalCost": 82.71, + "fee": 0.29048744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-08T22:00:05" + }, + { + "id": "fiaeq2mld4dpft4e2a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T02:00:07", + "amountCrypto": 0.00013907, + "pricePerUnit": 594710, + "totalCost": 82.71, + "fee": 0.29048527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T02:00:07" + }, + { + "id": "lc3qcyfteuw18w8cka", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T06:00:06", + "amountCrypto": 0.00013907, + "pricePerUnit": 594710, + "totalCost": 82.71, + "fee": 0.29048527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T06:00:06" + }, + { + "id": "jaksk1q32ucccs5opk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T10:00:06", + "amountCrypto": 0.00013868, + "pricePerUnit": 596379, + "totalCost": 82.71, + "fee": 0.29048359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T10:00:06" + }, + { + "id": "t85w36qeb8iv8eqdff", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T14:00:06", + "amountCrypto": 0.00013886, + "pricePerUnit": 595623, + "totalCost": 82.71, + "fee": 0.29049191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T14:00:06" + }, + { + "id": "qvmey3qhmu30jpf3ec", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T18:00:06", + "amountCrypto": 0.00013906, + "pricePerUnit": 594747, + "totalCost": 82.71, + "fee": 0.29048245, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T18:00:06" + }, + { + "id": "aluv4h8cf61l47nvj1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-09T22:00:07", + "amountCrypto": 0.00013924, + "pricePerUnit": 594007, + "totalCost": 82.71, + "fee": 0.29049656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-09T22:00:07" + }, + { + "id": "2w5vfc7mpxh4bxcv6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T02:00:06", + "amountCrypto": 0.00013924, + "pricePerUnit": 594007, + "totalCost": 82.71, + "fee": 0.29049656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T02:00:06" + }, + { + "id": "1sn51933w25buwsvz9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T06:00:07", + "amountCrypto": 0.0001393, + "pricePerUnit": 593753, + "totalCost": 82.71, + "fee": 0.29049747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3554", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T06:00:07" + }, + { + "id": "ibxp164qmljvk2oalh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T10:00:06", + "amountCrypto": 0.00013907, + "pricePerUnit": 594740, + "totalCost": 82.71, + "fee": 0.29049992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3555", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T10:00:06" + }, + { + "id": "61cwu1ky0ro8xo1zg7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T14:00:06", + "amountCrypto": 0.0001391, + "pricePerUnit": 594589, + "totalCost": 82.71, + "fee": 0.29048882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3556", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T14:00:06" + }, + { + "id": "q33rmu498aov44seky", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T18:00:05", + "amountCrypto": 0.00013941, + "pricePerUnit": 593274, + "totalCost": 82.71, + "fee": 0.29049233, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3557", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T18:00:05" + }, + { + "id": "24dyxf6mrfykb1j891", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-10T22:00:06", + "amountCrypto": 0.00013996, + "pricePerUnit": 590942, + "totalCost": 82.71, + "fee": 0.29049202, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3558", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-10T22:00:06" + }, + { + "id": "da683ui0lh01h7hybr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T02:00:06", + "amountCrypto": 0.00014, + "pricePerUnit": 590764, + "totalCost": 82.71, + "fee": 0.29048752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3559", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T02:00:06" + }, + { + "id": "ndqeuof48im3smc1uz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T06:00:06", + "amountCrypto": 0.00014062, + "pricePerUnit": 588145, + "totalCost": 82.7, + "fee": 0.29048046, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3560", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T06:00:06" + }, + { + "id": "0vdz4lhag2429gvtju", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T10:00:05", + "amountCrypto": 0.00014016, + "pricePerUnit": 590106, + "totalCost": 82.71, + "fee": 0.29049559, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3561", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T10:00:05" + }, + { + "id": "0u042nh3373dpkrthc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T14:00:06", + "amountCrypto": 0.00014032, + "pricePerUnit": 589433, + "totalCost": 82.71, + "fee": 0.29049552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3562", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T14:00:06" + }, + { + "id": "c6gfdaq2a0g0ewq9zj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T18:00:06", + "amountCrypto": 0.00014384, + "pricePerUnit": 574999, + "totalCost": 82.71, + "fee": 0.29049067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3563", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T18:00:06" + }, + { + "id": "zb8qjmuqvfvkhmjn88", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-11T22:00:05", + "amountCrypto": 0.0001441, + "pricePerUnit": 573977, + "totalCost": 82.71, + "fee": 0.2904985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3564", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-11T22:00:05" + }, + { + "id": "7li7trwd9tuprz6042", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T02:00:06", + "amountCrypto": 0.00014361, + "pricePerUnit": 575937, + "totalCost": 82.71, + "fee": 0.2904993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3565", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T02:00:06" + }, + { + "id": "tz3ia3aa6o53mulz5q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T06:00:06", + "amountCrypto": 0.00013962, + "pricePerUnit": 592381, + "totalCost": 82.71, + "fee": 0.290492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3566", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T06:00:06" + }, + { + "id": "dsstw10igozw0nyr5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T10:00:06", + "amountCrypto": 0.00013927, + "pricePerUnit": 593886, + "totalCost": 82.71, + "fee": 0.29049996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3567", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T10:00:06" + }, + { + "id": "a5h1u9hf244rj93tic", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T14:00:06", + "amountCrypto": 0.00013766, + "pricePerUnit": 600808, + "totalCost": 82.71, + "fee": 0.29048847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3568", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T14:00:06" + }, + { + "id": "cga0qs5d333ocuyql4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T18:00:05", + "amountCrypto": 0.00013731, + "pricePerUnit": 602322, + "totalCost": 82.7, + "fee": 0.29048005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3569", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T18:00:05" + }, + { + "id": "jl4p5twdag90q50x0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-12T22:00:07", + "amountCrypto": 0.00013826, + "pricePerUnit": 598191, + "totalCost": 82.71, + "fee": 0.29048375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3570", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-12T22:00:07" + }, + { + "id": "rqt1ckxqh4pmah0l7n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T02:00:07", + "amountCrypto": 0.00013969, + "pricePerUnit": 592068, + "totalCost": 82.71, + "fee": 0.29048407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3571", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T02:00:07" + }, + { + "id": "0ja8ujzs9iy66cmvcp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T06:00:05", + "amountCrypto": 0.00013949, + "pricePerUnit": 592926, + "totalCost": 82.71, + "fee": 0.29048853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3572", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T06:00:05" + }, + { + "id": "pxxryofrp1i4jh7dkx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T10:00:05", + "amountCrypto": 0.00013922, + "pricePerUnit": 594097, + "totalCost": 82.71, + "fee": 0.29049884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3573", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T10:00:05" + }, + { + "id": "q4v98iasgz7e96oi7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T14:00:07", + "amountCrypto": 0.00013825, + "pricePerUnit": 598240, + "totalCost": 82.71, + "fee": 0.29048654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3574", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T14:00:07" + }, + { + "id": "pbkb0adnu0zipssmdj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T18:00:07", + "amountCrypto": 0.00013807, + "pricePerUnit": 599037, + "totalCost": 82.71, + "fee": 0.29049482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3575", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T18:00:07" + }, + { + "id": "bp2bxx1lcg99m3ltih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-13T22:00:07", + "amountCrypto": 0.00013847, + "pricePerUnit": 597279, + "totalCost": 82.71, + "fee": 0.29048142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3576", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-13T22:00:07" + }, + { + "id": "b51cyjebj7xrrt4own", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T02:00:05", + "amountCrypto": 0.00013814, + "pricePerUnit": 598702, + "totalCost": 82.7, + "fee": 0.29047956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3577", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T02:00:05" + }, + { + "id": "fajn4qqhjg9s4wv6kf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T06:00:05", + "amountCrypto": 0.00013802, + "pricePerUnit": 599254, + "totalCost": 82.71, + "fee": 0.29049482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3578", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T06:00:05" + }, + { + "id": "cn1jw5od0wju3pai92", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T14:00:05", + "amountCrypto": 0.00013683, + "pricePerUnit": 604466, + "totalCost": 82.71, + "fee": 0.29049498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3580", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T14:00:05" + }, + { + "id": "yxz98ylnat2lise01h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T18:00:07", + "amountCrypto": 0.00013433, + "pricePerUnit": 615687, + "totalCost": 82.71, + "fee": 0.29048146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3581", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T18:00:07" + }, + { + "id": "lo8xxxtdbm69v587yy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-14T22:00:07", + "amountCrypto": 0.0001342, + "pricePerUnit": 616300, + "totalCost": 82.71, + "fee": 0.29048928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3582", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-14T22:00:07" + }, + { + "id": "ddretsvcncxdsitfpg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T02:00:08", + "amountCrypto": 0.00013466, + "pricePerUnit": 614207, + "totalCost": 82.71, + "fee": 0.29049509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3583", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T02:00:08" + }, + { + "id": "ztz6ji7v0fs3vbzbge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T06:00:07", + "amountCrypto": 0.00013466, + "pricePerUnit": 614209, + "totalCost": 82.71, + "fee": 0.29049603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3584", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T06:00:07" + }, + { + "id": "3r3v9kctawmy28tg19", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T10:00:06", + "amountCrypto": 0.00013445, + "pricePerUnit": 615168, + "totalCost": 82.71, + "fee": 0.29049587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3585", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T10:00:06" + }, + { + "id": "lx2inp4k25gnkup6pr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T14:00:08", + "amountCrypto": 0.00013511, + "pricePerUnit": 612136, + "totalCost": 82.71, + "fee": 0.29048308, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3586", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T14:00:08" + }, + { + "id": "44bpzkj9mpbm3wu6bz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T18:00:05", + "amountCrypto": 0.00013573, + "pricePerUnit": 609344, + "totalCost": 82.71, + "fee": 0.29048507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3587", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T18:00:05" + }, + { + "id": "gi2c37ookrvjjwji5y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-15T22:00:06", + "amountCrypto": 0.00013514, + "pricePerUnit": 611998, + "totalCost": 82.71, + "fee": 0.29048208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3588", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-15T22:00:06" + }, + { + "id": "38ge88w7kkyru66ifx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T02:00:06", + "amountCrypto": 0.00013473, + "pricePerUnit": 613879, + "totalCost": 82.71, + "fee": 0.29049088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3589", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T02:00:06" + }, + { + "id": "g0y7i1vcehj5j6p0un", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T06:00:06", + "amountCrypto": 0.00013463, + "pricePerUnit": 614323, + "totalCost": 82.71, + "fee": 0.29048522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3590", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T06:00:06" + }, + { + "id": "vlj3e2hohq08ymwret", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T10:00:07", + "amountCrypto": 0.00013498, + "pricePerUnit": 612756, + "totalCost": 82.71, + "fee": 0.29049751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3591", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T10:00:07" + }, + { + "id": "x0bso078e5sg5lh0ch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T14:00:05", + "amountCrypto": 0.00013493, + "pricePerUnit": 612982, + "totalCost": 82.71, + "fee": 0.29049701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3592", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T14:00:05" + }, + { + "id": "h36o9spbto8ykwuwkp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T18:00:05", + "amountCrypto": 0.00013491, + "pricePerUnit": 613062, + "totalCost": 82.71, + "fee": 0.29049186, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3593", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T18:00:05" + }, + { + "id": "8wky244y7613zpldx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-16T22:00:06", + "amountCrypto": 0.00013497, + "pricePerUnit": 612801, + "totalCost": 82.71, + "fee": 0.29049732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3594", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-16T22:00:06" + }, + { + "id": "hpf1ztwuqba5gab0td", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T02:00:05", + "amountCrypto": 0.0001349, + "pricePerUnit": 613101, + "totalCost": 82.71, + "fee": 0.2904888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3595", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T02:00:05" + }, + { + "id": "ibg7mxm76ffhrprhg8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T06:00:06", + "amountCrypto": 0.00013504, + "pricePerUnit": 612460, + "totalCost": 82.71, + "fee": 0.29048625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3596", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T06:00:06" + }, + { + "id": "rs68u81pbobwgornam", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T10:00:05", + "amountCrypto": 0.00013507, + "pricePerUnit": 612336, + "totalCost": 82.71, + "fee": 0.29049196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T10:00:05" + }, + { + "id": "re3jqe9knfcqpd4oes", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T14:00:05", + "amountCrypto": 0.00013473, + "pricePerUnit": 613888, + "totalCost": 82.71, + "fee": 0.29049514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3598", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T14:00:05" + }, + { + "id": "0nnp3rwmuo4w135x3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T18:00:05", + "amountCrypto": 0.00013484, + "pricePerUnit": 613367, + "totalCost": 82.71, + "fee": 0.29048558, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T18:00:05" + }, + { + "id": "jf4a30blq46x5id32k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-17T22:00:07", + "amountCrypto": 0.00013511, + "pricePerUnit": 612168, + "totalCost": 82.71, + "fee": 0.29049826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-17T22:00:07" + }, + { + "id": "xxpv45mkeyu0b8zxu1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T02:00:05", + "amountCrypto": 0.00013511, + "pricePerUnit": 612168, + "totalCost": 82.71, + "fee": 0.29049826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T02:00:05" + }, + { + "id": "oqm87v0ou97qgzip1n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T06:00:06", + "amountCrypto": 0.00013432, + "pricePerUnit": 615727, + "totalCost": 82.7, + "fee": 0.29047871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T06:00:06" + }, + { + "id": "z6xhdf9opvwllsx8d8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T10:00:05", + "amountCrypto": 0.00013423, + "pricePerUnit": 616162, + "totalCost": 82.71, + "fee": 0.29048915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T10:00:05" + }, + { + "id": "z2hw4o861sozge0j2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T14:00:06", + "amountCrypto": 0.00013263, + "pricePerUnit": 623588, + "totalCost": 82.71, + "fee": 0.29048582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T14:00:06" + }, + { + "id": "v9yr09acu80qxw8z38", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T18:00:04", + "amountCrypto": 0.00013237, + "pricePerUnit": 624815, + "totalCost": 82.71, + "fee": 0.29048682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T18:00:04" + }, + { + "id": "qm22rki4cplgd35w35", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-18T22:00:06", + "amountCrypto": 0.00013471, + "pricePerUnit": 613984, + "totalCost": 82.71, + "fee": 0.29049744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-18T22:00:06" + }, + { + "id": "pft7cipo1i7rb677vf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T02:00:06", + "amountCrypto": 0.00013508, + "pricePerUnit": 612266, + "totalCost": 82.7, + "fee": 0.29048025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T02:00:06" + }, + { + "id": "g60p26zihehonfr8dq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T06:00:05", + "amountCrypto": 0.00013473, + "pricePerUnit": 613880, + "totalCost": 82.71, + "fee": 0.29049136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T06:00:05" + }, + { + "id": "3y90l4bnh3ulh5y18k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T10:00:07", + "amountCrypto": 0.00013447, + "pricePerUnit": 615056, + "totalCost": 82.71, + "fee": 0.29048619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T10:00:07" + }, + { + "id": "3hdqy9jebtbhq3jou5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T14:00:08", + "amountCrypto": 0.00013278, + "pricePerUnit": 622900, + "totalCost": 82.71, + "fee": 0.2904935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T14:00:08" + }, + { + "id": "3cx2zyd9ygvwo7r1a1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T18:00:05", + "amountCrypto": 0.00013151, + "pricePerUnit": 628897, + "totalCost": 82.71, + "fee": 0.29048501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T18:00:05" + }, + { + "id": "6abu4qinsl74dxo932", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-19T22:00:06", + "amountCrypto": 0.0001324, + "pricePerUnit": 624701, + "totalCost": 82.71, + "fee": 0.29049965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-19T22:00:06" + }, + { + "id": "zoxddzqynda4scxsyq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T02:00:08", + "amountCrypto": 0.00013243, + "pricePerUnit": 624521, + "totalCost": 82.71, + "fee": 0.29048175, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T02:00:08" + }, + { + "id": "l0a41q8tqu98z4a5f5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T06:00:05", + "amountCrypto": 0.00013281, + "pricePerUnit": 622746, + "totalCost": 82.71, + "fee": 0.2904873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T06:00:05" + }, + { + "id": "wsko3xazglr1bvcaps", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T10:00:05", + "amountCrypto": 0.00013318, + "pricePerUnit": 621038, + "totalCost": 82.71, + "fee": 0.29049764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T10:00:05" + }, + { + "id": "zi7nsipocez5betn51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T14:00:05", + "amountCrypto": 0.00013357, + "pricePerUnit": 619207, + "totalCost": 82.71, + "fee": 0.29048934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T14:00:05" + }, + { + "id": "m4cqvqekm6fw1doooc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T18:00:06", + "amountCrypto": 0.00013357, + "pricePerUnit": 619208, + "totalCost": 82.71, + "fee": 0.29048981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T18:00:06" + }, + { + "id": "su93r8y0rfa8nkbx61", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-20T22:00:06", + "amountCrypto": 0.00013389, + "pricePerUnit": 617742, + "totalCost": 82.71, + "fee": 0.29049636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-20T22:00:06" + }, + { + "id": "irp8cmbucq0ne1xu2z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T02:00:06", + "amountCrypto": 0.00013284, + "pricePerUnit": 622605, + "totalCost": 82.71, + "fee": 0.29048722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T02:00:06" + }, + { + "id": "puvthmouh51pn5408i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T06:00:06", + "amountCrypto": 0.00013331, + "pricePerUnit": 620417, + "totalCost": 82.71, + "fee": 0.29049044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T06:00:06" + }, + { + "id": "y7ivt6nl3y1xm9nt8b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T10:00:05", + "amountCrypto": 0.00013346, + "pricePerUnit": 619698, + "totalCost": 82.7, + "fee": 0.29048027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T10:00:05" + }, + { + "id": "9a55bebpsuvqsno9q3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T14:00:05", + "amountCrypto": 0.00013452, + "pricePerUnit": 614830, + "totalCost": 82.71, + "fee": 0.29048742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T14:00:05" + }, + { + "id": "c481z06mv4dl2awxpr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T18:00:07", + "amountCrypto": 0.00013547, + "pricePerUnit": 610502, + "totalCost": 82.7, + "fee": 0.2904796, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T18:00:07" + }, + { + "id": "8y1hbo7ye8zpqqw8fc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-21T22:00:05", + "amountCrypto": 0.00013556, + "pricePerUnit": 610116, + "totalCost": 82.71, + "fee": 0.2904888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-21T22:00:05" + }, + { + "id": "8cm9irwotmwy5k8bgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T02:00:07", + "amountCrypto": 0.00013552, + "pricePerUnit": 610306, + "totalCost": 82.71, + "fee": 0.29049352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T02:00:07" + }, + { + "id": "ct7koy6ctchd5seu3b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T06:00:05", + "amountCrypto": 0.00013523, + "pricePerUnit": 611628, + "totalCost": 82.71, + "fee": 0.29049979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T06:00:05" + }, + { + "id": "mg46zk2fs7hwuh6tia", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T10:00:04", + "amountCrypto": 0.00013516, + "pricePerUnit": 611917, + "totalCost": 82.71, + "fee": 0.29048661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T10:00:04" + }, + { + "id": "rjrzl8aycnxn7s49mp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T14:00:06", + "amountCrypto": 0.0001352, + "pricePerUnit": 611727, + "totalCost": 82.71, + "fee": 0.29048236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T14:00:06" + }, + { + "id": "vfg5lrp1rzf20m7u6a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T18:00:08", + "amountCrypto": 0.00013536, + "pricePerUnit": 611011, + "totalCost": 82.71, + "fee": 0.29048573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T18:00:08" + }, + { + "id": "40xflvj1vqr23iw2cu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-22T22:00:06", + "amountCrypto": 0.00013536, + "pricePerUnit": 611004, + "totalCost": 82.71, + "fee": 0.2904824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-22T22:00:06" + }, + { + "id": "xho0bfrt5efm9nv8i1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T02:00:06", + "amountCrypto": 0.00013521, + "pricePerUnit": 611710, + "totalCost": 82.71, + "fee": 0.29049577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T02:00:06" + }, + { + "id": "vz8cb2u1ndnu73t641", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T06:00:06", + "amountCrypto": 0.00013541, + "pricePerUnit": 610798, + "totalCost": 82.71, + "fee": 0.29049173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T06:00:06" + }, + { + "id": "ri1hudzha97pk85s6o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T10:00:05", + "amountCrypto": 0.00013512, + "pricePerUnit": 612115, + "totalCost": 82.71, + "fee": 0.29049461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T10:00:05" + }, + { + "id": "76iu1oh772ofr8xkl5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T14:00:05", + "amountCrypto": 0.00013518, + "pricePerUnit": 611829, + "totalCost": 82.71, + "fee": 0.29048782, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T14:00:05" + }, + { + "id": "o92kecunw8fqnao4ej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T18:00:05", + "amountCrypto": 0.00013518, + "pricePerUnit": 611825, + "totalCost": 82.71, + "fee": 0.29048592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T18:00:05" + }, + { + "id": "zqfplxsjjjdpap72nb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-23T22:00:05", + "amountCrypto": 0.00013494, + "pricePerUnit": 612918, + "totalCost": 82.71, + "fee": 0.2904882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-23T22:00:05" + }, + { + "id": "8tnxbgwg6acb027qx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T02:00:05", + "amountCrypto": 0.00013512, + "pricePerUnit": 612105, + "totalCost": 82.71, + "fee": 0.29048987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3637", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T02:00:05" + }, + { + "id": "09qdu6in7z837pzwvu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T06:00:05", + "amountCrypto": 0.00013514, + "pricePerUnit": 611996, + "totalCost": 82.71, + "fee": 0.29048113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3638", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T06:00:05" + }, + { + "id": "7o2kqfrmbjv39pjhq2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T10:00:06", + "amountCrypto": 0.00013519, + "pricePerUnit": 611801, + "totalCost": 82.71, + "fee": 0.29049601, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3639", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T10:00:06" + }, + { + "id": "5akn77dk03e4t04oxd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T14:00:05", + "amountCrypto": 0.00013496, + "pricePerUnit": 612815, + "totalCost": 82.71, + "fee": 0.29048244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3640", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T14:00:05" + }, + { + "id": "zf9emxcp7as8cc2ktq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T18:00:05", + "amountCrypto": 0.00013511, + "pricePerUnit": 612155, + "totalCost": 82.71, + "fee": 0.29049209, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3641", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T18:00:05" + }, + { + "id": "qr9jxksny21aermszv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-24T22:00:05", + "amountCrypto": 0.00013557, + "pricePerUnit": 610086, + "totalCost": 82.71, + "fee": 0.29049595, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3642", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-24T22:00:05" + }, + { + "id": "a3px2bzmzbb6qg6tjh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T02:00:06", + "amountCrypto": 0.00013671, + "pricePerUnit": 604981, + "totalCost": 82.71, + "fee": 0.29048749, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3643", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T02:00:06" + }, + { + "id": "1io6salawlxz1k3pqp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T06:00:05", + "amountCrypto": 0.00013722, + "pricePerUnit": 602720, + "totalCost": 82.71, + "fee": 0.29048147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3644", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T06:00:05" + }, + { + "id": "3t4l1sff6bclrfmf82", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T10:00:07", + "amountCrypto": 0.00013746, + "pricePerUnit": 601685, + "totalCost": 82.71, + "fee": 0.29048984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3645", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T10:00:07" + }, + { + "id": "6fjnaps9embvc1snu5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T14:00:06", + "amountCrypto": 0.00013794, + "pricePerUnit": 599574, + "totalCost": 82.71, + "fee": 0.29048147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3646", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T14:00:06" + }, + { + "id": "pehywvlgzcitt1hfd1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T18:00:05", + "amountCrypto": 0.00013642, + "pricePerUnit": 606284, + "totalCost": 82.71, + "fee": 0.29049561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3647", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T18:00:05" + }, + { + "id": "mlmoim8mno7kwa527l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-25T22:20:07", + "amountCrypto": 0.00013581, + "pricePerUnit": 608999, + "totalCost": 82.71, + "fee": 0.29049171, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3648", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-25T22:20:07" + }, + { + "id": "qodewofekgg4kqsi5f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T02:00:05", + "amountCrypto": 0.00013685, + "pricePerUnit": 604354, + "totalCost": 82.71, + "fee": 0.2904836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3649", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T02:00:05" + }, + { + "id": "vamanmj7dczt3m2ck2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T06:00:05", + "amountCrypto": 0.00013565, + "pricePerUnit": 609716, + "totalCost": 82.71, + "fee": 0.29049109, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T06:00:05" + }, + { + "id": "zv17fc1yb4hf8z4rin", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T10:00:05", + "amountCrypto": 0.00013592, + "pricePerUnit": 608504, + "totalCost": 82.71, + "fee": 0.29049069, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T10:00:05" + }, + { + "id": "mqzrvnu7t4yait5qna", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T14:00:06", + "amountCrypto": 0.00013656, + "pricePerUnit": 605649, + "totalCost": 82.71, + "fee": 0.29048916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T14:00:06" + }, + { + "id": "8mgt5gpxruyd7msraj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T18:00:06", + "amountCrypto": 0.00013707, + "pricePerUnit": 603389, + "totalCost": 82.71, + "fee": 0.29048601, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T18:00:06" + }, + { + "id": "3qojeycaor35d006e9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-26T22:00:06", + "amountCrypto": 0.00013634, + "pricePerUnit": 606625, + "totalCost": 82.71, + "fee": 0.29048855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-26T22:00:06" + }, + { + "id": "slwkuo324ez4cgz9mf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T02:00:06", + "amountCrypto": 0.00013644, + "pricePerUnit": 606190, + "totalCost": 82.71, + "fee": 0.29049315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T02:00:06" + }, + { + "id": "2rim0qaxmyppjsikm7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T06:00:06", + "amountCrypto": 0.00013623, + "pricePerUnit": 607124, + "totalCost": 82.71, + "fee": 0.29049294, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T06:00:06" + }, + { + "id": "erx6642rsw07joqmcf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T10:00:06", + "amountCrypto": 0.00013622, + "pricePerUnit": 607144, + "totalCost": 82.71, + "fee": 0.29048118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T10:00:06" + }, + { + "id": "3ptgpmgiyjv92x9vgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T14:00:05", + "amountCrypto": 0.00013304, + "pricePerUnit": 621680, + "totalCost": 82.71, + "fee": 0.29049225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T14:00:05" + }, + { + "id": "70g94wn0s4yr5dmpj5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T18:00:06", + "amountCrypto": 0.00013573, + "pricePerUnit": 609366, + "totalCost": 82.71, + "fee": 0.29049555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T18:00:06" + }, + { + "id": "tjt9hg7sebc3yxdvo2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-27T22:00:06", + "amountCrypto": 0.00013579, + "pricePerUnit": 609091, + "totalCost": 82.71, + "fee": 0.29049281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-27T22:00:06" + }, + { + "id": "aru7w9yhy4j272kcxb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T02:00:07", + "amountCrypto": 0.00013533, + "pricePerUnit": 611149, + "totalCost": 82.71, + "fee": 0.29048694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T02:00:07" + }, + { + "id": "lcwuk0wfevwl1tw04a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T06:00:06", + "amountCrypto": 0.00013495, + "pricePerUnit": 612866, + "totalCost": 82.71, + "fee": 0.29048509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T06:00:06" + }, + { + "id": "u8uttduizpsqk1f6jm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T10:00:06", + "amountCrypto": 0.00013464, + "pricePerUnit": 614287, + "totalCost": 82.71, + "fee": 0.29048977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T10:00:06" + }, + { + "id": "yz4j47t44puvehj5ns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T14:00:06", + "amountCrypto": 0.0001344, + "pricePerUnit": 615363, + "totalCost": 82.7, + "fee": 0.2904799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T14:00:06" + }, + { + "id": "s3zj5mw5dudgt1m273", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T18:00:05", + "amountCrypto": 0.00013286, + "pricePerUnit": 622522, + "totalCost": 82.71, + "fee": 0.29049213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T18:00:05" + }, + { + "id": "3wgqi2z7pq0mi1nbbh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-28T22:00:05", + "amountCrypto": 0.00013202, + "pricePerUnit": 626469, + "totalCost": 82.71, + "fee": 0.29048568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-28T22:00:05" + }, + { + "id": "pcwfry384zhxky26oc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T02:00:07", + "amountCrypto": 0.00013256, + "pricePerUnit": 623936, + "totalCost": 82.71, + "fee": 0.29049453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T02:00:07" + }, + { + "id": "5i8k9pjc26ngl8n91i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T06:00:05", + "amountCrypto": 0.00013299, + "pricePerUnit": 621902, + "totalCost": 82.71, + "fee": 0.29048677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T06:00:05" + }, + { + "id": "922q82cuz6e3xfz87y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T10:00:06", + "amountCrypto": 0.0001324, + "pricePerUnit": 624656, + "totalCost": 82.7, + "fee": 0.29047883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T10:00:06" + }, + { + "id": "ef6846d9n0z8lnj2od", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T14:00:05", + "amountCrypto": 0.00013328, + "pricePerUnit": 620561, + "totalCost": 82.71, + "fee": 0.29049247, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T14:00:05" + }, + { + "id": "mpqidxi4rjx63i557y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T18:00:06", + "amountCrypto": 0.00013326, + "pricePerUnit": 620630, + "totalCost": 82.71, + "fee": 0.29048118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T18:00:06" + }, + { + "id": "la12a49hhgd7ycc9j9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-29T22:00:05", + "amountCrypto": 0.00013303, + "pricePerUnit": 621701, + "totalCost": 82.7, + "fee": 0.29048023, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-29T22:00:05" + }, + { + "id": "0to2tfgye57hbw0w82", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T02:00:06", + "amountCrypto": 0.00013304, + "pricePerUnit": 621687, + "totalCost": 82.71, + "fee": 0.29049552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T02:00:06" + }, + { + "id": "orvt83lf5t99qc6fe9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T06:00:06", + "amountCrypto": 0.00013304, + "pricePerUnit": 621687, + "totalCost": 82.71, + "fee": 0.29049552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T06:00:06" + }, + { + "id": "eguy6yk4ngv475pll3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T10:00:06", + "amountCrypto": 0.00013265, + "pricePerUnit": 623487, + "totalCost": 82.71, + "fee": 0.29048257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T10:00:06" + }, + { + "id": "wwctyxd0zmwv4qhxbe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T14:00:06", + "amountCrypto": 0.00013264, + "pricePerUnit": 623540, + "totalCost": 82.71, + "fee": 0.29048536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T14:00:06" + }, + { + "id": "kmds8aiy2l1zbyxt9f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T18:00:07", + "amountCrypto": 0.0001325, + "pricePerUnit": 624225, + "totalCost": 82.71, + "fee": 0.29049754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3677", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T18:00:07" + }, + { + "id": "bjnfnrrzilnncp11eu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-09-30T22:00:05", + "amountCrypto": 0.00013237, + "pricePerUnit": 624825, + "totalCost": 82.71, + "fee": 0.29049147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-09-30T22:00:05" + }, + { + "id": "x1wq3b94nfgi5derie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-12T22:00:06", + "amountCrypto": 0.0001323, + "pricePerUnit": 625162, + "totalCost": 82.71, + "fee": 0.29049445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3750", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-12T22:00:06" + }, + { + "id": "0b89zfh30qta1oojp1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T02:00:06", + "amountCrypto": 0.00013219, + "pricePerUnit": 625647, + "totalCost": 82.7, + "fee": 0.2904781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3751", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T02:00:06" + }, + { + "id": "os7t9c3sd2agu8e85u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T06:00:06", + "amountCrypto": 0.00013207, + "pricePerUnit": 626253, + "totalCost": 82.71, + "fee": 0.29049551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3752", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T06:00:06" + }, + { + "id": "77i6setzhif8kkncef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T10:00:06", + "amountCrypto": 0.00013189, + "pricePerUnit": 627092, + "totalCost": 82.71, + "fee": 0.29048824, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3753", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T10:00:06" + }, + { + "id": "3a2st62ijp42p9pa9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T14:00:06", + "amountCrypto": 0.00013168, + "pricePerUnit": 628092, + "totalCost": 82.71, + "fee": 0.2904882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3754", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T14:00:06" + }, + { + "id": "tdc2bx1dpxckkpbj1u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T18:00:06", + "amountCrypto": 0.00013166, + "pricePerUnit": 628210, + "totalCost": 82.71, + "fee": 0.29049865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3755", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T18:00:06" + }, + { + "id": "ot3qpkbpoxta7plhum", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-13T22:00:06", + "amountCrypto": 0.00013165, + "pricePerUnit": 628228, + "totalCost": 82.71, + "fee": 0.29048491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3756", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-13T22:00:06" + }, + { + "id": "cim5y18iq5nctizuiw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T02:00:06", + "amountCrypto": 0.00013122, + "pricePerUnit": 630275, + "totalCost": 82.7, + "fee": 0.29047953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3757", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T02:00:06" + }, + { + "id": "ob4cmsr63e1qebfpf9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T06:00:05", + "amountCrypto": 0.0001309, + "pricePerUnit": 631814, + "totalCost": 82.7, + "fee": 0.29047871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3758", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T06:00:05" + }, + { + "id": "xqm1ks6mpxiyg3zm7p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T10:00:06", + "amountCrypto": 0.00013124, + "pricePerUnit": 630209, + "totalCost": 82.71, + "fee": 0.29049338, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3759", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T10:00:06" + }, + { + "id": "nz8eglxuzlrosd8m5s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T14:00:05", + "amountCrypto": 0.00013124, + "pricePerUnit": 630216, + "totalCost": 82.71, + "fee": 0.29049661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3760", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T14:00:05" + }, + { + "id": "53wov6i8n7ee5e05u0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T18:00:06", + "amountCrypto": 0.00013095, + "pricePerUnit": 631597, + "totalCost": 82.71, + "fee": 0.29048986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3761", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T18:00:06" + }, + { + "id": "pr50zxe9r170k7rgvc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-14T22:00:06", + "amountCrypto": 0.00013123, + "pricePerUnit": 630260, + "totalCost": 82.71, + "fee": 0.29049475, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3762", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-14T22:00:06" + }, + { + "id": "zn27tgne2i5ug29c7y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T02:00:06", + "amountCrypto": 0.00013127, + "pricePerUnit": 630049, + "totalCost": 82.71, + "fee": 0.29048602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3763", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T02:00:06" + }, + { + "id": "6niy79v3opoik5ribt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T06:00:05", + "amountCrypto": 0.00013116, + "pricePerUnit": 630560, + "totalCost": 82.7, + "fee": 0.290478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3764", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T06:00:05" + }, + { + "id": "uakzyco4q39ae8p8y3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T10:00:06", + "amountCrypto": 0.00013118, + "pricePerUnit": 630500, + "totalCost": 82.71, + "fee": 0.29049465, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3765", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T10:00:06" + }, + { + "id": "m86tu9og45hazckyo4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T14:00:05", + "amountCrypto": 0.00013102, + "pricePerUnit": 631250, + "totalCost": 82.71, + "fee": 0.29048547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3766", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T14:00:05" + }, + { + "id": "vb5zp6yqq47ax4mbk7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T18:00:06", + "amountCrypto": 0.00013093, + "pricePerUnit": 631703, + "totalCost": 82.71, + "fee": 0.29049424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3767", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T18:00:06" + }, + { + "id": "32fwon6ondbi6m2j8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-15T22:00:05", + "amountCrypto": 0.00013029, + "pricePerUnit": 634783, + "totalCost": 82.71, + "fee": 0.29048372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3768", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-15T22:00:05" + }, + { + "id": "8vlkv40vn5k0f2s98u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T02:00:06", + "amountCrypto": 0.00012995, + "pricePerUnit": 636476, + "totalCost": 82.71, + "fee": 0.29049839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T02:00:06" + }, + { + "id": "lk53i5ng7qlgxtl4ah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T06:00:05", + "amountCrypto": 0.0001295, + "pricePerUnit": 638672, + "totalCost": 82.71, + "fee": 0.29049126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T06:00:05" + }, + { + "id": "ghswtmr3iygwpjdxtr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T10:00:06", + "amountCrypto": 0.00012707, + "pricePerUnit": 650891, + "totalCost": 82.71, + "fee": 0.2904937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T10:00:06" + }, + { + "id": "lqwzbtyzd52xe1956h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T14:00:06", + "amountCrypto": 0.00012744, + "pricePerUnit": 649000, + "totalCost": 82.71, + "fee": 0.29049314, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T14:00:06" + }, + { + "id": "k2f9ivomvl6lh67q1x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T18:00:06", + "amountCrypto": 0.00012636, + "pricePerUnit": 654533, + "totalCost": 82.71, + "fee": 0.29048692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T18:00:06" + }, + { + "id": "1chfv8uahp1wrjvl0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-16T22:00:09", + "amountCrypto": 0.0001248, + "pricePerUnit": 662698, + "totalCost": 82.7, + "fee": 0.29047962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-16T22:00:09" + }, + { + "id": "id7junol1l8tk3gesg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T02:00:06", + "amountCrypto": 0.00012464, + "pricePerUnit": 663551, + "totalCost": 82.7, + "fee": 0.29048062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T02:00:06" + }, + { + "id": "kspdvvvzsqjpx7g05q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T06:00:06", + "amountCrypto": 0.00012554, + "pricePerUnit": 658815, + "totalCost": 82.71, + "fee": 0.29048989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T06:00:06" + }, + { + "id": "tz8l9lre7cjfqkxexd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T10:00:06", + "amountCrypto": 0.00012495, + "pricePerUnit": 661903, + "totalCost": 82.7, + "fee": 0.29047986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T10:00:06" + }, + { + "id": "v64jtnflcqf9l41ama", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T14:00:07", + "amountCrypto": 0.00012528, + "pricePerUnit": 660186, + "totalCost": 82.71, + "fee": 0.29049153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T14:00:07" + }, + { + "id": "sljpzpf10feyppvtnj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T18:00:06", + "amountCrypto": 0.00012506, + "pricePerUnit": 661323, + "totalCost": 82.71, + "fee": 0.29048083, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T18:00:06" + }, + { + "id": "jurn1x174rdoamcb6y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-17T22:00:06", + "amountCrypto": 0.00012467, + "pricePerUnit": 663424, + "totalCost": 82.71, + "fee": 0.29049493, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-17T22:00:06" + }, + { + "id": "dweepsbw0gdnxqtlpk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T02:00:06", + "amountCrypto": 0.00012523, + "pricePerUnit": 660438, + "totalCost": 82.71, + "fee": 0.29048643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T02:00:06" + }, + { + "id": "g7uudux92ggoryd1mo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T06:00:06", + "amountCrypto": 0.00012474, + "pricePerUnit": 663044, + "totalCost": 82.71, + "fee": 0.29049155, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T06:00:06" + }, + { + "id": "p7gosdm9rejs4np2z1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T10:00:06", + "amountCrypto": 0.00012501, + "pricePerUnit": 661621, + "totalCost": 82.71, + "fee": 0.29049553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T10:00:06" + }, + { + "id": "haowsez0h7wdzwy3fz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T14:00:05", + "amountCrypto": 0.00012523, + "pricePerUnit": 660460, + "totalCost": 82.71, + "fee": 0.29049611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T14:00:05" + }, + { + "id": "7kuisz8ctr2jpm73jk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T18:00:06", + "amountCrypto": 0.0001251, + "pricePerUnit": 661132, + "totalCost": 82.71, + "fee": 0.29048981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T18:00:06" + }, + { + "id": "4ikk0ezjejttmot12e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-18T22:00:08", + "amountCrypto": 0.00012517, + "pricePerUnit": 660762, + "totalCost": 82.71, + "fee": 0.2904897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-18T22:00:08" + }, + { + "id": "5thik4pas7p11gcbiy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T02:00:07", + "amountCrypto": 0.00012505, + "pricePerUnit": 661395, + "totalCost": 82.71, + "fee": 0.29048922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T02:00:07" + }, + { + "id": "0f2cutuf406x8f8yka", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T06:00:07", + "amountCrypto": 0.00012524, + "pricePerUnit": 660399, + "totalCost": 82.71, + "fee": 0.29049261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T06:00:07" + }, + { + "id": "9drk10iyfx8vzgj1md", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T10:00:07", + "amountCrypto": 0.00012487, + "pricePerUnit": 662346, + "totalCost": 82.71, + "fee": 0.29048817, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T10:00:07" + }, + { + "id": "z9d7tktjua9azyynm3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T14:00:06", + "amountCrypto": 0.00012457, + "pricePerUnit": 663940, + "totalCost": 82.71, + "fee": 0.29048768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T14:00:06" + }, + { + "id": "ltpujsn6q25jru9hoz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T18:00:07", + "amountCrypto": 0.00012362, + "pricePerUnit": 669038, + "totalCost": 82.71, + "fee": 0.29048583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T18:00:07" + }, + { + "id": "j2b79ddnkxg7j7sryg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-19T22:00:06", + "amountCrypto": 0.00012378, + "pricePerUnit": 668196, + "totalCost": 82.71, + "fee": 0.29049574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3792", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-19T22:00:06" + }, + { + "id": "8kfh4q83s6sybrzgjg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T02:00:06", + "amountCrypto": 0.00012384, + "pricePerUnit": 667855, + "totalCost": 82.71, + "fee": 0.29048823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3793", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T02:00:06" + }, + { + "id": "ku7g19s8k5q3cl0gge", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T06:00:06", + "amountCrypto": 0.00012158, + "pricePerUnit": 680259, + "totalCost": 82.71, + "fee": 0.29048376, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3794", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T06:00:06" + }, + { + "id": "0hqp9yywpx18ungd7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T10:00:07", + "amountCrypto": 0.00012107, + "pricePerUnit": 683109, + "totalCost": 82.7, + "fee": 0.29047715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3795", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T10:00:07" + }, + { + "id": "0wiccabrqxou0g5fk3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T14:00:05", + "amountCrypto": 0.00011915, + "pricePerUnit": 694129, + "totalCost": 82.71, + "fee": 0.29048229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3796", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T14:00:05" + }, + { + "id": "82lmzsxi07v7qxtort", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T18:00:05", + "amountCrypto": 0.00012161, + "pricePerUnit": 679761, + "totalCost": 82.67, + "fee": 0.29034279, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T18:00:05" + }, + { + "id": "wunkd836dbb2a8m7yk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-20T22:00:05", + "amountCrypto": 0.00012083, + "pricePerUnit": 684495, + "totalCost": 82.71, + "fee": 0.29048953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-20T22:00:05" + }, + { + "id": "71hvfwx9873bu5qcy0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T02:00:06", + "amountCrypto": 0.00012015, + "pricePerUnit": 688356, + "totalCost": 82.71, + "fee": 0.29048406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T02:00:06" + }, + { + "id": "pl0ys8fhpub0uok3rt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T06:00:06", + "amountCrypto": 0.00012041, + "pricePerUnit": 686881, + "totalCost": 82.71, + "fee": 0.29048886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T06:00:06" + }, + { + "id": "u7imd8hzs2ldsu3y1d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T10:00:06", + "amountCrypto": 0.00012038, + "pricePerUnit": 687035, + "totalCost": 82.71, + "fee": 0.2904816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T10:00:06" + }, + { + "id": "en7a3ox0e2izxjc7g3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T14:00:06", + "amountCrypto": 0.00011965, + "pricePerUnit": 691268, + "totalCost": 82.71, + "fee": 0.29049888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T14:00:06" + }, + { + "id": "u5124jqq8hqbhoz6au", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T18:00:05", + "amountCrypto": 0.00011948, + "pricePerUnit": 692254, + "totalCost": 82.71, + "fee": 0.29049998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T18:00:05" + }, + { + "id": "j6au0dbqczyaawfwme", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-21T22:00:05", + "amountCrypto": 0.00011849, + "pricePerUnit": 698000, + "totalCost": 82.71, + "fee": 0.29048422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-21T22:00:05" + }, + { + "id": "ltbur629j1vfa6o6mu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T02:00:05", + "amountCrypto": 0.00011914, + "pricePerUnit": 694194, + "totalCost": 82.71, + "fee": 0.29048511, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T02:00:05" + }, + { + "id": "p8f4g39thtjxbh1ako", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T06:00:06", + "amountCrypto": 0.00011913, + "pricePerUnit": 694243, + "totalCost": 82.71, + "fee": 0.29048123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T06:00:06" + }, + { + "id": "g716vyc079nxiqgjb0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T10:00:05", + "amountCrypto": 0.00011948, + "pricePerUnit": 692251, + "totalCost": 82.71, + "fee": 0.29049872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T10:00:05" + }, + { + "id": "2h09w1tyuhxmf7ubvl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T14:00:06", + "amountCrypto": 0.00011916, + "pricePerUnit": 694095, + "totalCost": 82.71, + "fee": 0.29049244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T14:00:06" + }, + { + "id": "hojsg2qdxkbip9l8h7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T18:00:05", + "amountCrypto": 0.00011948, + "pricePerUnit": 692201, + "totalCost": 82.7, + "fee": 0.29047774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T18:00:05" + }, + { + "id": "h24bi5rjqxtfxkqc40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-22T22:00:05", + "amountCrypto": 0.00011942, + "pricePerUnit": 692570, + "totalCost": 82.71, + "fee": 0.29048664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-22T22:00:05" + }, + { + "id": "4r2m8k0dmoxdyf8luz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T02:00:06", + "amountCrypto": 0.00011889, + "pricePerUnit": 695666, + "totalCost": 82.71, + "fee": 0.29049023, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T02:00:06" + }, + { + "id": "dfrbsyi6qexk42hi50", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T06:00:06", + "amountCrypto": 0.00011699, + "pricePerUnit": 706928, + "totalCost": 82.7, + "fee": 0.29047539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T06:00:06" + }, + { + "id": "imx8kn4zc6plh8hubv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T10:00:06", + "amountCrypto": 0.00011689, + "pricePerUnit": 707577, + "totalCost": 82.71, + "fee": 0.29049355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T10:00:06" + }, + { + "id": "viuvwyc3egn9szn3ix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T14:00:08", + "amountCrypto": 0.00011678, + "pricePerUnit": 708250, + "totalCost": 82.71, + "fee": 0.29049621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T14:00:08" + }, + { + "id": "pz9v1orj5gniyu9dp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T18:00:06", + "amountCrypto": 0.00011645, + "pricePerUnit": 710215, + "totalCost": 82.7, + "fee": 0.29047901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T18:00:06" + }, + { + "id": "2rptk48qrdnqtjg53a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-23T22:00:05", + "amountCrypto": 0.00011443, + "pricePerUnit": 722791, + "totalCost": 82.71, + "fee": 0.29049459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-23T22:00:05" + }, + { + "id": "0uhfribphclfej6qzq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T02:00:06", + "amountCrypto": 0.00010984, + "pricePerUnit": 753000, + "totalCost": 82.71, + "fee": 0.29049651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T02:00:06" + }, + { + "id": "uszcglnwflii64o8af", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T06:00:06", + "amountCrypto": 0.00010561, + "pricePerUnit": 783141, + "totalCost": 82.71, + "fee": 0.29048949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T06:00:06" + }, + { + "id": "i0tgc1la3iy7lv8u7l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T10:00:06", + "amountCrypto": 0.00010547, + "pricePerUnit": 784174, + "totalCost": 82.71, + "fee": 0.29048707, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T10:00:06" + }, + { + "id": "5twq19u7kmzsx33ymu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T14:00:06", + "amountCrypto": 0.00010346, + "pricePerUnit": 799433, + "totalCost": 82.71, + "fee": 0.29049587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T14:00:06" + }, + { + "id": "nra1yd5e0ago8i80hm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T18:00:06", + "amountCrypto": 0.00010581, + "pricePerUnit": 781617, + "totalCost": 82.7, + "fee": 0.29047324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T18:00:06" + }, + { + "id": "55fnm3ys1zvw7ds1oy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-24T22:00:06", + "amountCrypto": 0.00010515, + "pricePerUnit": 786533, + "totalCost": 82.7, + "fee": 0.29047693, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-24T22:00:06" + }, + { + "id": "tpneuo5srwdlx3skiq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T02:00:05", + "amountCrypto": 0.00010489, + "pricePerUnit": 788502, + "totalCost": 82.71, + "fee": 0.29048406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T02:00:05" + }, + { + "id": "hd0sudqn0derhmee68", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T06:00:06", + "amountCrypto": 0.0001047, + "pricePerUnit": 789942, + "totalCost": 82.71, + "fee": 0.29048741, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T06:00:06" + }, + { + "id": "ochc3l80zvsn00m5nt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T10:00:06", + "amountCrypto": 0.00010476, + "pricePerUnit": 789465, + "totalCost": 82.7, + "fee": 0.29047837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T10:00:06" + }, + { + "id": "djzj9sbeq135q55swd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T14:00:05", + "amountCrypto": 0.00010346, + "pricePerUnit": 799433, + "totalCost": 82.71, + "fee": 0.29049587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T14:00:05" + }, + { + "id": "s2guz7y5fta9ydkyxf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T18:00:06", + "amountCrypto": 0.0001018, + "pricePerUnit": 812455, + "totalCost": 82.71, + "fee": 0.29049089, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T18:00:06" + }, + { + "id": "9p9d8t4fumqt7fil0c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-25T22:00:06", + "amountCrypto": 0.0001018, + "pricePerUnit": 812453, + "totalCost": 82.71, + "fee": 0.29049017, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-25T22:00:06" + }, + { + "id": "7c5ptv0dm7q8u1v7t6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T02:00:06", + "amountCrypto": 0.0001025, + "pricePerUnit": 806904, + "totalCost": 82.71, + "fee": 0.29048998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T02:00:06" + }, + { + "id": "h0lgxz3vzbacoy5hcl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T06:00:09", + "amountCrypto": 0.00010156, + "pricePerUnit": 814388, + "totalCost": 82.71, + "fee": 0.29049555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T06:00:09" + }, + { + "id": "hxylwgeom9oapwvnlt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T10:00:07", + "amountCrypto": 0.00010177, + "pricePerUnit": 812690, + "totalCost": 82.71, + "fee": 0.29048929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T10:00:07" + }, + { + "id": "0jco91i3paqyixfxtx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T14:00:06", + "amountCrypto": 0.00010332, + "pricePerUnit": 800464, + "totalCost": 82.7, + "fee": 0.29047691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T14:00:06" + }, + { + "id": "giytf7ne1tuf49icdv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T18:00:08", + "amountCrypto": 0.00010356, + "pricePerUnit": 798650, + "totalCost": 82.71, + "fee": 0.29049185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T18:00:08" + }, + { + "id": "anhfwm2rbyfy5zwm5v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-26T22:00:07", + "amountCrypto": 0.00010409, + "pricePerUnit": 794575, + "totalCost": 82.71, + "fee": 0.29048876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-26T22:00:07" + }, + { + "id": "pxnxvvo91kn0px854d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T02:00:07", + "amountCrypto": 0.0001035, + "pricePerUnit": 799121, + "totalCost": 82.71, + "fee": 0.29049477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T02:00:07" + }, + { + "id": "p2c9e6loi7xsge9wkm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T06:00:06", + "amountCrypto": 0.00010365, + "pricePerUnit": 797976, + "totalCost": 82.71, + "fee": 0.29049894, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T06:00:06" + }, + { + "id": "2zpklo8rjd2hjnapdr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T10:00:06", + "amountCrypto": 0.00010417, + "pricePerUnit": 793966, + "totalCost": 82.71, + "fee": 0.2904892, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T10:00:06" + }, + { + "id": "80jw1nuap3igo8d4l0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T14:00:06", + "amountCrypto": 0.0001037, + "pricePerUnit": 797526, + "totalCost": 82.7, + "fee": 0.29047518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T14:00:06" + }, + { + "id": "6mbqizqya8qmcw79e1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T18:00:06", + "amountCrypto": 0.00010431, + "pricePerUnit": 792866, + "totalCost": 82.7, + "fee": 0.29047661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T18:00:06" + }, + { + "id": "aei8hbqoehwgwvka9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-27T22:00:05", + "amountCrypto": 0.00010491, + "pricePerUnit": 788380, + "totalCost": 82.71, + "fee": 0.29049449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-27T22:00:05" + }, + { + "id": "r54cf6dhklpine7y6s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T02:00:06", + "amountCrypto": 0.00010451, + "pricePerUnit": 791378, + "totalCost": 82.71, + "fee": 0.29048736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T02:00:06" + }, + { + "id": "dlv4i1yzhdz0elr1qr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T06:00:05", + "amountCrypto": 0.00010387, + "pricePerUnit": 796264, + "totalCost": 82.71, + "fee": 0.29049097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T06:00:05" + }, + { + "id": "0s59kcetyv518s9h7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T10:00:06", + "amountCrypto": 0.00010375, + "pricePerUnit": 797177, + "totalCost": 82.71, + "fee": 0.29048806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T10:00:06" + }, + { + "id": "ev8fjwkvqz8dnu745h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T14:00:06", + "amountCrypto": 0.00010333, + "pricePerUnit": 800408, + "totalCost": 82.71, + "fee": 0.29048471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T14:00:06" + }, + { + "id": "onjaxcvp5uv2t6tm9u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T18:00:05", + "amountCrypto": 0.00010358, + "pricePerUnit": 798469, + "totalCost": 82.71, + "fee": 0.29048211, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T18:00:05" + }, + { + "id": "uoq76jvkcvh8fkqalb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-28T22:00:06", + "amountCrypto": 0.00010356, + "pricePerUnit": 798640, + "totalCost": 82.71, + "fee": 0.29048822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-28T22:00:06" + }, + { + "id": "l6gdwuowzgwoiyoo09", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T02:00:06", + "amountCrypto": 0.00010377, + "pricePerUnit": 796998, + "totalCost": 82.7, + "fee": 0.29047882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T02:00:06" + }, + { + "id": "bm285olxej7vdz9j45", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T05:00:07", + "amountCrypto": 0.00010406, + "pricePerUnit": 794776, + "totalCost": 82.7, + "fee": 0.2904785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T05:00:07" + }, + { + "id": "px0uo5tjwpndo7wamm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T09:00:05", + "amountCrypto": 0.00010377, + "pricePerUnit": 796995, + "totalCost": 82.7, + "fee": 0.29047773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T09:00:05" + }, + { + "id": "9vvqfb0n3bu3y103le", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T13:00:07", + "amountCrypto": 0.00010344, + "pricePerUnit": 799574, + "totalCost": 82.71, + "fee": 0.29049094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T13:00:07" + }, + { + "id": "748i4ve050ugro3rq7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T17:00:08", + "amountCrypto": 0.00010274, + "pricePerUnit": 804977, + "totalCost": 82.7, + "fee": 0.2904748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T17:00:08" + }, + { + "id": "dyp3t9lpaesirluq07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-29T21:00:07", + "amountCrypto": 0.00010257, + "pricePerUnit": 806352, + "totalCost": 82.71, + "fee": 0.2904895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-29T21:00:07" + }, + { + "id": "ad4fu8otkldexq1vky", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T01:00:07", + "amountCrypto": 0.00010244, + "pricePerUnit": 807399, + "totalCost": 82.71, + "fee": 0.29049803, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T01:00:07" + }, + { + "id": "4gbqnputnlo6sdnq3o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T05:00:06", + "amountCrypto": 0.00010323, + "pricePerUnit": 801182, + "totalCost": 82.71, + "fee": 0.29048421, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T05:00:06" + }, + { + "id": "zmh7ro3ip8f99bava6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T09:00:07", + "amountCrypto": 0.00010366, + "pricePerUnit": 797896, + "totalCost": 82.71, + "fee": 0.29049784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T09:00:07" + }, + { + "id": "8pujxfdtk6ixmoc38g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T13:00:05", + "amountCrypto": 0.00010268, + "pricePerUnit": 805459, + "totalCost": 82.7, + "fee": 0.29047899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T13:00:05" + }, + { + "id": "unxjhch1gxf83gqc2z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T17:00:07", + "amountCrypto": 0.00010278, + "pricePerUnit": 804674, + "totalCost": 82.7, + "fee": 0.29047851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T17:00:07" + }, + { + "id": "etzdjfpinhygiu7tri", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-30T21:00:06", + "amountCrypto": 0.00010343, + "pricePerUnit": 799650, + "totalCost": 82.71, + "fee": 0.29049047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-30T21:00:06" + }, + { + "id": "nyxxmg2mkawtto1nc4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T01:00:06", + "amountCrypto": 0.00010341, + "pricePerUnit": 799792, + "totalCost": 82.71, + "fee": 0.29048587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T01:00:06" + }, + { + "id": "4byouo44j2r4e9im6t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T09:00:07", + "amountCrypto": 0.00010456, + "pricePerUnit": 790995, + "totalCost": 82.71, + "fee": 0.29048568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3860", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T09:00:07" + }, + { + "id": "n9gdsevztwfcja1int", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T13:00:08", + "amountCrypto": 0.00010395, + "pricePerUnit": 795623, + "totalCost": 82.71, + "fee": 0.29048067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3861", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T13:00:08" + }, + { + "id": "axk6apdpy2vrykhxmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T17:00:06", + "amountCrypto": 0.00010395, + "pricePerUnit": 795623, + "totalCost": 82.71, + "fee": 0.29048067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3862", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T17:00:06" + }, + { + "id": "djj19pihn3ruw64qxe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-10-31T21:00:06", + "amountCrypto": 0.00010318, + "pricePerUnit": 801601, + "totalCost": 82.71, + "fee": 0.29049536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3863", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-10-31T21:00:06" + }, + { + "id": "6vrvf64clgrlqx8d5e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T01:00:07", + "amountCrypto": 0.00010264, + "pricePerUnit": 805821, + "totalCost": 82.71, + "fee": 0.29049633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T01:00:07" + }, + { + "id": "invjhu57weh2jouc1x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T05:00:07", + "amountCrypto": 0.00010323, + "pricePerUnit": 801150, + "totalCost": 82.7, + "fee": 0.29047261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T05:00:07" + }, + { + "id": "k6kx8dmtrji2w2xpad", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T09:00:06", + "amountCrypto": 0.00010301, + "pricePerUnit": 802895, + "totalCost": 82.71, + "fee": 0.2904849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T09:00:06" + }, + { + "id": "9pwxibn6ar64r7jve8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T13:00:06", + "amountCrypto": 0.00010261, + "pricePerUnit": 806050, + "totalCost": 82.71, + "fee": 0.29049395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T13:00:06" + }, + { + "id": "slamak6xziw5k4iowu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T17:00:07", + "amountCrypto": 0.00010294, + "pricePerUnit": 803441, + "totalCost": 82.71, + "fee": 0.29048491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T17:00:07" + }, + { + "id": "njg1mwdrcrx53zftkr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-01T21:00:06", + "amountCrypto": 0.00010247, + "pricePerUnit": 807114, + "totalCost": 82.7, + "fee": 0.29048054, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-01T21:00:06" + }, + { + "id": "ghu4sglbehqjkplt79", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T01:00:07", + "amountCrypto": 0.0001001, + "pricePerUnit": 826238, + "totalCost": 82.71, + "fee": 0.29048564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T01:00:07" + }, + { + "id": "m4vweux8lenldssg9w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T05:00:07", + "amountCrypto": 0.00009977, + "pricePerUnit": 828999, + "totalCost": 82.71, + "fee": 0.29049549, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T05:00:07" + }, + { + "id": "7xfzsal8zwp6em22r6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T09:00:07", + "amountCrypto": 0.0001008, + "pricePerUnit": 820531, + "totalCost": 82.71, + "fee": 0.29049636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T09:00:07" + }, + { + "id": "hzsu86ma37c0iskn39", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T13:00:06", + "amountCrypto": 0.00010071, + "pricePerUnit": 821230, + "totalCost": 82.71, + "fee": 0.29048441, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T13:00:06" + }, + { + "id": "iwzvi4yywgr5yy3kxe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T17:00:07", + "amountCrypto": 0.00010335, + "pricePerUnit": 800280, + "totalCost": 82.71, + "fee": 0.29049447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T17:00:07" + }, + { + "id": "0zfx52cvjz1976yu4a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-02T21:00:07", + "amountCrypto": 0.00010247, + "pricePerUnit": 807164, + "totalCost": 82.71, + "fee": 0.29049853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-02T21:00:07" + }, + { + "id": "2hmv019vo655ymggn2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T01:00:07", + "amountCrypto": 0.00010253, + "pricePerUnit": 806637, + "totalCost": 82.7, + "fee": 0.29047885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T01:00:07" + }, + { + "id": "pmguo6oqjfyyjrii2c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T05:00:08", + "amountCrypto": 0.00010335, + "pricePerUnit": 800218, + "totalCost": 82.7, + "fee": 0.29047196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T05:00:08" + }, + { + "id": "vg6z1qi4vtt5vy9g5i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T09:00:08", + "amountCrypto": 0.00010397, + "pricePerUnit": 795447, + "totalCost": 82.7, + "fee": 0.29047229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T09:00:08" + }, + { + "id": "3waqr6px2xzw2gwtep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T13:00:07", + "amountCrypto": 0.00010491, + "pricePerUnit": 788337, + "totalCost": 82.7, + "fee": 0.29047865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T13:00:07" + }, + { + "id": "e8iq3kkxgp2ukofml7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T17:00:07", + "amountCrypto": 0.00010426, + "pricePerUnit": 793287, + "totalCost": 82.71, + "fee": 0.29049153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T17:00:07" + }, + { + "id": "m79gmbs7aqlyzv5nu3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-03T21:00:08", + "amountCrypto": 0.0001049, + "pricePerUnit": 788396, + "totalCost": 82.7, + "fee": 0.2904727, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-03T21:00:08" + }, + { + "id": "jpebbfasaia3olaoad", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T01:00:10", + "amountCrypto": 0.00010456, + "pricePerUnit": 790963, + "totalCost": 82.7, + "fee": 0.29047393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T01:00:10" + }, + { + "id": "1xhwolh7l4znccvaq6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T05:00:08", + "amountCrypto": 0.0001044, + "pricePerUnit": 792235, + "totalCost": 82.71, + "fee": 0.29049586, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T05:00:08" + }, + { + "id": "b3klhpesiwqtjn5dx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T09:00:05", + "amountCrypto": 0.00010424, + "pricePerUnit": 793434, + "totalCost": 82.71, + "fee": 0.29048963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T09:00:05" + }, + { + "id": "4exq7pb6t15inhdgrl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T13:00:07", + "amountCrypto": 0.00010431, + "pricePerUnit": 792871, + "totalCost": 82.7, + "fee": 0.29047844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T13:00:07" + }, + { + "id": "l2rwoyhmkv838jb7np", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T17:00:07", + "amountCrypto": 0.0001044, + "pricePerUnit": 792186, + "totalCost": 82.7, + "fee": 0.29047789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T17:00:07" + }, + { + "id": "ci6zsdp1xf13hqucey", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-04T21:00:06", + "amountCrypto": 0.00010426, + "pricePerUnit": 793263, + "totalCost": 82.71, + "fee": 0.29048274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-04T21:00:06" + }, + { + "id": "499mq4cnft423lmdaa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T01:00:07", + "amountCrypto": 0.00010327, + "pricePerUnit": 800869, + "totalCost": 82.71, + "fee": 0.29048324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T01:00:07" + }, + { + "id": "834i2fgcejin6kdoq7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T05:00:07", + "amountCrypto": 0.00010287, + "pricePerUnit": 804000, + "totalCost": 82.71, + "fee": 0.29048935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T05:00:07" + }, + { + "id": "pxzxnepmmp9irfiei3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T09:00:08", + "amountCrypto": 0.00010303, + "pricePerUnit": 802703, + "totalCost": 82.7, + "fee": 0.29047182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T09:00:08" + }, + { + "id": "l06s1ivcybswi2jvhv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T13:00:08", + "amountCrypto": 0.00010326, + "pricePerUnit": 800942, + "totalCost": 82.71, + "fee": 0.29048159, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T13:00:08" + }, + { + "id": "9jdg2h84aq3dn54oyx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T17:00:08", + "amountCrypto": 0.00010389, + "pricePerUnit": 796100, + "totalCost": 82.71, + "fee": 0.29048706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T17:00:08" + }, + { + "id": "pdt79kw4p5p72gf7j4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-05T21:00:08", + "amountCrypto": 0.00010354, + "pricePerUnit": 798766, + "totalCost": 82.7, + "fee": 0.29047794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-05T21:00:08" + }, + { + "id": "55lqau9n1epyyxa4u0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T01:00:07", + "amountCrypto": 0.00010346, + "pricePerUnit": 799377, + "totalCost": 82.7, + "fee": 0.29047552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T01:00:07" + }, + { + "id": "azwuzcjqxdss7lv9jk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T05:00:07", + "amountCrypto": 0.00010359, + "pricePerUnit": 798399, + "totalCost": 82.71, + "fee": 0.29048468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T05:00:07" + }, + { + "id": "gxgv85lfrg9wjrxirr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T09:00:07", + "amountCrypto": 0.00010383, + "pricePerUnit": 796582, + "totalCost": 82.71, + "fee": 0.29049507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T09:00:07" + }, + { + "id": "wk1bl6vz6yvnees65s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T13:00:07", + "amountCrypto": 0.00010325, + "pricePerUnit": 801060, + "totalCost": 82.71, + "fee": 0.29049625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T13:00:07" + }, + { + "id": "n664c5fw9b1civl9zo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T17:00:07", + "amountCrypto": 0.00010322, + "pricePerUnit": 801256, + "totalCost": 82.71, + "fee": 0.2904829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T17:00:07" + }, + { + "id": "po2jcor7r7orugec4g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-06T21:00:06", + "amountCrypto": 0.00010296, + "pricePerUnit": 803289, + "totalCost": 82.71, + "fee": 0.29048638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-06T21:00:06" + }, + { + "id": "xoxbvb6uhil64xtcf3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T01:00:06", + "amountCrypto": 0.00010297, + "pricePerUnit": 803242, + "totalCost": 82.71, + "fee": 0.2904976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T01:00:06" + }, + { + "id": "7t83qnaellrfcyz0zr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T05:00:08", + "amountCrypto": 0.00010309, + "pricePerUnit": 802258, + "totalCost": 82.7, + "fee": 0.29047985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T05:00:08" + }, + { + "id": "5vo886rrk5k9nuublr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T09:00:06", + "amountCrypto": 0.00010288, + "pricePerUnit": 803943, + "totalCost": 82.71, + "fee": 0.29049699, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T09:00:06" + }, + { + "id": "tl1w1cesz74m2pu0cg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T13:00:07", + "amountCrypto": 0.00010352, + "pricePerUnit": 798965, + "totalCost": 82.71, + "fee": 0.29049418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T13:00:07" + }, + { + "id": "41hcl0qgoyi4yaqteb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T17:00:07", + "amountCrypto": 0.00010326, + "pricePerUnit": 800916, + "totalCost": 82.7, + "fee": 0.29047216, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T17:00:07" + }, + { + "id": "8uwgokr42qoqspc0sr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-07T21:00:08", + "amountCrypto": 0.00010123, + "pricePerUnit": 817000, + "totalCost": 82.7, + "fee": 0.29048032, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-07T21:00:08" + }, + { + "id": "1gxs9kk6enq0ew9jrr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T01:00:08", + "amountCrypto": 0.00010127, + "pricePerUnit": 816696, + "totalCost": 82.71, + "fee": 0.29048697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T01:00:08" + }, + { + "id": "1iqngpmyt48v0cjpai", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T05:00:06", + "amountCrypto": 0.0001017, + "pricePerUnit": 813230, + "totalCost": 82.71, + "fee": 0.29048236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T05:00:06" + }, + { + "id": "kei810nyrb8pg1bfhm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T09:00:07", + "amountCrypto": 0.00010144, + "pricePerUnit": 815301, + "totalCost": 82.7, + "fee": 0.29047759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T09:00:07" + }, + { + "id": "ubf0eehioouyx3ycvd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T13:00:06", + "amountCrypto": 0.00010146, + "pricePerUnit": 815158, + "totalCost": 82.71, + "fee": 0.29048391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T13:00:06" + }, + { + "id": "c0hgng4dg1rdlbcede", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T17:00:05", + "amountCrypto": 0.00010192, + "pricePerUnit": 811488, + "totalCost": 82.71, + "fee": 0.29048716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T17:00:05" + }, + { + "id": "bnhvkk9uogbk0pojam", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-08T21:00:06", + "amountCrypto": 0.00010066, + "pricePerUnit": 821656, + "totalCost": 82.71, + "fee": 0.2904908, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-08T21:00:06" + }, + { + "id": "r6fjfszqfc7185dbfk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T01:00:07", + "amountCrypto": 0.00010064, + "pricePerUnit": 821841, + "totalCost": 82.71, + "fee": 0.29049847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T01:00:07" + }, + { + "id": "0fk5256hgupeeysay1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T05:00:07", + "amountCrypto": 0.0000986, + "pricePerUnit": 838772, + "totalCost": 82.7, + "fee": 0.29047333, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T05:00:07" + }, + { + "id": "658g32cvb1jdu76nn9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T09:00:07", + "amountCrypto": 0.000098, + "pricePerUnit": 843946, + "totalCost": 82.71, + "fee": 0.29048664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T09:00:07" + }, + { + "id": "aqj62g66q2fbfo7ies", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T13:00:08", + "amountCrypto": 0.00009754, + "pricePerUnit": 847927, + "totalCost": 82.71, + "fee": 0.29048696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T13:00:08" + }, + { + "id": "ak5kc2o5uwopj05nls", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T17:00:06", + "amountCrypto": 0.00009726, + "pricePerUnit": 850374, + "totalCost": 82.71, + "fee": 0.29048898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T17:00:06" + }, + { + "id": "swcckedzit6cxgaugn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-09T21:00:07", + "amountCrypto": 0.0000988, + "pricePerUnit": 837120, + "totalCost": 82.71, + "fee": 0.29048926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-09T21:00:07" + }, + { + "id": "46yeyu9qymmcs0xvs2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T01:00:07", + "amountCrypto": 0.00009774, + "pricePerUnit": 846216, + "totalCost": 82.71, + "fee": 0.29049522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T01:00:07" + }, + { + "id": "b46gax7arc2qqgwguc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T05:00:06", + "amountCrypto": 0.00009766, + "pricePerUnit": 846904, + "totalCost": 82.71, + "fee": 0.29049344, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T05:00:06" + }, + { + "id": "xyv5a5sf9tognz5wos", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T09:00:07", + "amountCrypto": 0.00009836, + "pricePerUnit": 840876, + "totalCost": 82.71, + "fee": 0.29049315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T09:00:07" + }, + { + "id": "ddir6fclnpf1fyilxa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T13:00:07", + "amountCrypto": 0.00009712, + "pricePerUnit": 851579, + "totalCost": 82.71, + "fee": 0.29048187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T13:00:07" + }, + { + "id": "oesmj2kg8n7jzywtk6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T17:00:07", + "amountCrypto": 0.0000968, + "pricePerUnit": 854389, + "totalCost": 82.7, + "fee": 0.29048013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T17:00:07" + }, + { + "id": "klprvru9odjrm05jrh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-10T21:00:05", + "amountCrypto": 0.00009622, + "pricePerUnit": 859555, + "totalCost": 82.71, + "fee": 0.29048549, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-10T21:00:05" + }, + { + "id": "yb1iwoedfmplvk1orr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T01:00:06", + "amountCrypto": 0.00009606, + "pricePerUnit": 860999, + "totalCost": 82.71, + "fee": 0.29048964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T01:00:06" + }, + { + "id": "p8o7afhhta0wujmr8d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T05:00:06", + "amountCrypto": 0.0000967, + "pricePerUnit": 855278, + "totalCost": 82.71, + "fee": 0.29048198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T05:00:06" + }, + { + "id": "ml2j1jib0wdnheow8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T09:00:07", + "amountCrypto": 0.00009702, + "pricePerUnit": 852495, + "totalCost": 82.71, + "fee": 0.29049491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T09:00:07" + }, + { + "id": "loijt05e59r1ig4g0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T13:00:06", + "amountCrypto": 0.00009703, + "pricePerUnit": 852394, + "totalCost": 82.71, + "fee": 0.29049043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T13:00:06" + }, + { + "id": "zazh5fyz08jzyc6tnd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T17:00:06", + "amountCrypto": 0.00009686, + "pricePerUnit": 853861, + "totalCost": 82.7, + "fee": 0.29048055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T17:00:06" + }, + { + "id": "w1qi7mesczbc7yxw52", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-11T21:00:05", + "amountCrypto": 0.00009666, + "pricePerUnit": 855685, + "totalCost": 82.71, + "fee": 0.2905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-11T21:00:05" + }, + { + "id": "xdfmgg18xlvmil4w11", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-13T13:00:07", + "amountCrypto": 0.00009687, + "pricePerUnit": 853776, + "totalCost": 82.71, + "fee": 0.29048162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-13T13:00:07" + }, + { + "id": "x1aeq2zluypwpovmtm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-13T17:00:08", + "amountCrypto": 0.00009685, + "pricePerUnit": 853933, + "totalCost": 82.7, + "fee": 0.29047506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-13T17:00:08" + }, + { + "id": "swix0aup1cvzrybtua", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-13T21:00:05", + "amountCrypto": 0.00009661, + "pricePerUnit": 856049, + "totalCost": 82.7, + "fee": 0.29047324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-13T21:00:05" + }, + { + "id": "ep5ouc1ardc9idd06a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T01:00:06", + "amountCrypto": 0.00009748, + "pricePerUnit": 848483, + "totalCost": 82.71, + "fee": 0.29049877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T01:00:06" + }, + { + "id": "qq7sv1o5w1k7c5z3bw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T05:00:06", + "amountCrypto": 0.00009748, + "pricePerUnit": 848473, + "totalCost": 82.71, + "fee": 0.29049521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T05:00:06" + }, + { + "id": "0krxda1jkqux5gruts", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T09:00:07", + "amountCrypto": 0.00009636, + "pricePerUnit": 858285, + "totalCost": 82.7, + "fee": 0.29047833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T09:00:07" + }, + { + "id": "5v4y1zwnff6uuo2ojj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T13:00:06", + "amountCrypto": 0.00009784, + "pricePerUnit": 845322, + "totalCost": 82.71, + "fee": 0.29048522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T13:00:06" + }, + { + "id": "kbbulpf63898jcv38y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T17:00:09", + "amountCrypto": 0.00009966, + "pricePerUnit": 829922, + "totalCost": 82.71, + "fee": 0.29049829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T17:00:09" + }, + { + "id": "ps8ah3dfi99chh565k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-14T21:00:08", + "amountCrypto": 0.00010237, + "pricePerUnit": 807895, + "totalCost": 82.7, + "fee": 0.29047787, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-14T21:00:08" + }, + { + "id": "sbs74vmkua8y5532wy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T01:00:07", + "amountCrypto": 0.00010164, + "pricePerUnit": 813682, + "totalCost": 82.7, + "fee": 0.29047234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T01:00:07" + }, + { + "id": "9f7pgembnmvkq1ydr7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T05:00:07", + "amountCrypto": 0.00010212, + "pricePerUnit": 809921, + "totalCost": 82.71, + "fee": 0.29049515, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T05:00:07" + }, + { + "id": "hr87ag7ptjxsiq4l3k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T09:00:09", + "amountCrypto": 0.00010148, + "pricePerUnit": 815002, + "totalCost": 82.71, + "fee": 0.29048556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T09:00:09" + }, + { + "id": "znoco5f2j0v513wptc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T13:00:08", + "amountCrypto": 0.00010026, + "pricePerUnit": 824885, + "totalCost": 82.7, + "fee": 0.29047351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T13:00:08" + }, + { + "id": "ibuxdsq8uc9752cook", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T17:00:07", + "amountCrypto": 0.00009941, + "pricePerUnit": 832000, + "totalCost": 82.71, + "fee": 0.29049511, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T17:00:07" + }, + { + "id": "x0mdm6qvpcwzkaa5wo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-15T21:00:08", + "amountCrypto": 0.0000973, + "pricePerUnit": 850000, + "totalCost": 82.71, + "fee": 0.29048064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-15T21:00:08" + }, + { + "id": "0idvnrllljka00bcto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T01:00:08", + "amountCrypto": 0.00009651, + "pricePerUnit": 856965, + "totalCost": 82.71, + "fee": 0.29048307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T01:00:08" + }, + { + "id": "3zqu3gwkyi52ja8p5x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T05:00:06", + "amountCrypto": 0.00009682, + "pricePerUnit": 854192, + "totalCost": 82.7, + "fee": 0.29047315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T05:00:06" + }, + { + "id": "cnsuzylka430n0648s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T09:00:07", + "amountCrypto": 0.0000967, + "pricePerUnit": 855263, + "totalCost": 82.7, + "fee": 0.29047689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T09:00:07" + }, + { + "id": "s490gpvksgvv733x7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T13:00:07", + "amountCrypto": 0.00009691, + "pricePerUnit": 853396, + "totalCost": 82.7, + "fee": 0.29047223, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T13:00:07" + }, + { + "id": "ds6vn6zkvhsvhlbdrd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T17:00:07", + "amountCrypto": 0.00010059, + "pricePerUnit": 822242, + "totalCost": 82.71, + "fee": 0.29049582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T17:00:07" + }, + { + "id": "qgl9wqks32mc38cwla", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-16T21:00:08", + "amountCrypto": 0.0001017, + "pricePerUnit": 813238, + "totalCost": 82.71, + "fee": 0.29048522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-16T21:00:08" + }, + { + "id": "1c0gudbe17w0zredk8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T01:00:09", + "amountCrypto": 0.00010093, + "pricePerUnit": 819475, + "totalCost": 82.71, + "fee": 0.29049683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T01:00:09" + }, + { + "id": "wsdqv5i89378v5rm1x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T05:00:07", + "amountCrypto": 0.00010029, + "pricePerUnit": 824667, + "totalCost": 82.71, + "fee": 0.29048363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T05:00:07" + }, + { + "id": "820nc1vn3iwzcjzcl8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T09:00:06", + "amountCrypto": 0.00010083, + "pricePerUnit": 820289, + "totalCost": 82.71, + "fee": 0.29049728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T09:00:06" + }, + { + "id": "50wcunnedjwh6eh4dm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T13:00:06", + "amountCrypto": 0.00010055, + "pricePerUnit": 822535, + "totalCost": 82.71, + "fee": 0.29048378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T13:00:06" + }, + { + "id": "szp1m290o3an6ij858", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T17:00:07", + "amountCrypto": 0.00010171, + "pricePerUnit": 813160, + "totalCost": 82.71, + "fee": 0.29048592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T17:00:07" + }, + { + "id": "ioyawcaxtgj7vsjevy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-17T21:00:05", + "amountCrypto": 0.00010096, + "pricePerUnit": 819167, + "totalCost": 82.7, + "fee": 0.29047396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-17T21:00:05" + }, + { + "id": "gh6g4vs2daqia33109", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T01:00:07", + "amountCrypto": 0.00010026, + "pricePerUnit": 824883, + "totalCost": 82.7, + "fee": 0.2904728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T01:00:07" + }, + { + "id": "fdnxxvhbd8eoe8dhnq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T05:00:06", + "amountCrypto": 0.00010085, + "pricePerUnit": 820076, + "totalCost": 82.7, + "fee": 0.29047946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T05:00:06" + }, + { + "id": "xklqltppkx7hw6hjet", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T09:00:06", + "amountCrypto": 0.0001009, + "pricePerUnit": 819651, + "totalCost": 82.7, + "fee": 0.29047286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T09:00:06" + }, + { + "id": "z4wjbbzzaeo3wxkdxs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T13:00:06", + "amountCrypto": 0.00010077, + "pricePerUnit": 820776, + "totalCost": 82.71, + "fee": 0.29049678, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T13:00:06" + }, + { + "id": "lrurvzmstv68ddimrl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T17:00:06", + "amountCrypto": 0.00010039, + "pricePerUnit": 823881, + "totalCost": 82.71, + "fee": 0.29049614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T17:00:06" + }, + { + "id": "a88s2okbxk5eauxks8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-18T21:00:06", + "amountCrypto": 0.00010001, + "pricePerUnit": 826975, + "totalCost": 82.71, + "fee": 0.29048334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-18T21:00:06" + }, + { + "id": "45lsuf89udltn2pbug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T01:00:19", + "amountCrypto": 0.00010029, + "pricePerUnit": 824657, + "totalCost": 82.7, + "fee": 0.29048011, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T01:00:19" + }, + { + "id": "m7hs6ong4ud41avvri", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T05:00:06", + "amountCrypto": 0.00010045, + "pricePerUnit": 823387, + "totalCost": 82.71, + "fee": 0.29049547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T05:00:06" + }, + { + "id": "gnwd5k0hjh41yxe88p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T09:00:07", + "amountCrypto": 0.00010024, + "pricePerUnit": 825099, + "totalCost": 82.71, + "fee": 0.29049091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T09:00:07" + }, + { + "id": "bgy1tgpzueukwc1wus", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T13:00:08", + "amountCrypto": 0.00010065, + "pricePerUnit": 821712, + "totalCost": 82.71, + "fee": 0.29048173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T13:00:08" + }, + { + "id": "97woiuhct64vr8iw51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T17:00:07", + "amountCrypto": 0.00010036, + "pricePerUnit": 824058, + "totalCost": 82.7, + "fee": 0.29047172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T17:00:07" + }, + { + "id": "uz7wfipie0lecfalor", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-19T21:00:08", + "amountCrypto": 0.00009935, + "pricePerUnit": 832498, + "totalCost": 82.71, + "fee": 0.29049355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-19T21:00:08" + }, + { + "id": "8thft3ea30p01s4w4h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T01:00:08", + "amountCrypto": 0.00009828, + "pricePerUnit": 841506, + "totalCost": 82.7, + "fee": 0.29047435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T01:00:08" + }, + { + "id": "iixhmvbgddb43opbux", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T05:00:07", + "amountCrypto": 0.00009901, + "pricePerUnit": 835310, + "totalCost": 82.7, + "fee": 0.29047728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T05:00:07" + }, + { + "id": "kymozzp9c0lyhxa3vo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T09:00:08", + "amountCrypto": 0.00009881, + "pricePerUnit": 837005, + "totalCost": 82.7, + "fee": 0.29047875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T09:00:08" + }, + { + "id": "6i7ga5qlf6687yfu7u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T13:00:08", + "amountCrypto": 0.0000989, + "pricePerUnit": 836302, + "totalCost": 82.71, + "fee": 0.29049906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T13:00:08" + }, + { + "id": "yic0w8ezy9y5zsrs70", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T17:00:08", + "amountCrypto": 0.00009843, + "pricePerUnit": 840237, + "totalCost": 82.7, + "fee": 0.29047893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T17:00:08" + }, + { + "id": "uobt2shdad4vij08g2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-20T21:00:06", + "amountCrypto": 0.00009818, + "pricePerUnit": 842401, + "totalCost": 82.71, + "fee": 0.29048731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-20T21:00:06" + }, + { + "id": "8xiqh3bmxo6yfyf7mx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T01:00:07", + "amountCrypto": 0.00009856, + "pricePerUnit": 839121, + "totalCost": 82.7, + "fee": 0.29047629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T01:00:07" + }, + { + "id": "no1ub90qms790dhxj1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T05:00:07", + "amountCrypto": 0.00009864, + "pricePerUnit": 838486, + "totalCost": 82.71, + "fee": 0.29049195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T05:00:07" + }, + { + "id": "l1qcegsibfgh18yr6g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T09:00:07", + "amountCrypto": 0.00009909, + "pricePerUnit": 834622, + "totalCost": 82.7, + "fee": 0.2904727, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T09:00:07" + }, + { + "id": "3gkx1xgbca96tae6pv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T13:00:05", + "amountCrypto": 0.00009934, + "pricePerUnit": 832523, + "totalCost": 82.7, + "fee": 0.29047288, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T13:00:05" + }, + { + "id": "bij9n01u1mxiiy7vw4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T17:00:06", + "amountCrypto": 0.00009966, + "pricePerUnit": 829913, + "totalCost": 82.71, + "fee": 0.2904952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T17:00:06" + }, + { + "id": "kn36ov3272h24l4ogl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-21T21:00:06", + "amountCrypto": 0.00009954, + "pricePerUnit": 830894, + "totalCost": 82.71, + "fee": 0.29048839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-21T21:00:06" + }, + { + "id": "mz9x04pob7i1ken588", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T01:00:07", + "amountCrypto": 0.00010272, + "pricePerUnit": 805182, + "totalCost": 82.71, + "fee": 0.29049215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T01:00:07" + }, + { + "id": "6q05urntxz8xg9ysza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T05:00:06", + "amountCrypto": 0.00010127, + "pricePerUnit": 816706, + "totalCost": 82.71, + "fee": 0.29049065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T05:00:06" + }, + { + "id": "04ql8r95tlaja1oex6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T09:00:06", + "amountCrypto": 0.00010072, + "pricePerUnit": 821148, + "totalCost": 82.71, + "fee": 0.29048421, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T09:00:06" + }, + { + "id": "ryh533ifj75emtmgkp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T13:00:06", + "amountCrypto": 0.00010079, + "pricePerUnit": 820583, + "totalCost": 82.71, + "fee": 0.29048628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T13:00:06" + }, + { + "id": "8d34zi1x425jkwguak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T17:00:06", + "amountCrypto": 0.00010042, + "pricePerUnit": 823608, + "totalCost": 82.71, + "fee": 0.29048682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T17:00:06" + }, + { + "id": "wude0sp0g6ci8shjff", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-22T21:00:06", + "amountCrypto": 0.00009854, + "pricePerUnit": 839300, + "totalCost": 82.7, + "fee": 0.29047924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-22T21:00:06" + }, + { + "id": "tzcsh927gxe7b0zw3z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T01:00:08", + "amountCrypto": 0.00009822, + "pricePerUnit": 842085, + "totalCost": 82.71, + "fee": 0.29049676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T01:00:08" + }, + { + "id": "ka6soihtuunuw6v7bn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T05:00:09", + "amountCrypto": 0.00009859, + "pricePerUnit": 838908, + "totalCost": 82.71, + "fee": 0.29049102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T05:00:09" + }, + { + "id": "bpgji72mewei599bkc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T09:00:08", + "amountCrypto": 0.0000985, + "pricePerUnit": 839641, + "totalCost": 82.7, + "fee": 0.29047952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T09:00:08" + }, + { + "id": "hki9u7mog2jt88azj3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T13:00:07", + "amountCrypto": 0.00009901, + "pricePerUnit": 835356, + "totalCost": 82.71, + "fee": 0.29049318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "3999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T13:00:07" + }, + { + "id": "bpuzh7rluf06pu6b4j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T17:00:08", + "amountCrypto": 0.00009985, + "pricePerUnit": 828328, + "totalCost": 82.71, + "fee": 0.29049302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T17:00:08" + }, + { + "id": "yi8coceybtqwkado9r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-23T21:00:06", + "amountCrypto": 0.00009887, + "pricePerUnit": 836485, + "totalCost": 82.7, + "fee": 0.29047443, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-23T21:00:06" + }, + { + "id": "byugzv66zgbosy0ddt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T01:00:08", + "amountCrypto": 0.00009884, + "pricePerUnit": 836753, + "totalCost": 82.7, + "fee": 0.29047958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T01:00:08" + }, + { + "id": "6aqrvczw8q6z20ini4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T05:00:06", + "amountCrypto": 0.00009892, + "pricePerUnit": 836108, + "totalCost": 82.71, + "fee": 0.29049047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T05:00:06" + }, + { + "id": "bmgv8to3qjpepx89zu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T09:00:05", + "amountCrypto": 0.00009857, + "pricePerUnit": 839053, + "totalCost": 82.71, + "fee": 0.29048225, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T09:00:05" + }, + { + "id": "wr83jon1mne4j1e64e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T13:00:07", + "amountCrypto": 0.00009781, + "pricePerUnit": 845548, + "totalCost": 82.7, + "fee": 0.29047364, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T13:00:07" + }, + { + "id": "uac4ld340jdhp2fxxg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T17:00:05", + "amountCrypto": 0.00009674, + "pricePerUnit": 854889, + "totalCost": 82.7, + "fee": 0.29047005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T17:00:05" + }, + { + "id": "w0vqqwis023mgcljut", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-24T21:00:05", + "amountCrypto": 0.00009815, + "pricePerUnit": 842630, + "totalCost": 82.7, + "fee": 0.29047776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-24T21:00:05" + }, + { + "id": "ewem0msvmnjo6ulkzu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T01:00:06", + "amountCrypto": 0.00009824, + "pricePerUnit": 841883, + "totalCost": 82.71, + "fee": 0.29048628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T01:00:06" + }, + { + "id": "en5m0cfk9wuttebtlg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T05:00:06", + "amountCrypto": 0.00009801, + "pricePerUnit": 843829, + "totalCost": 82.7, + "fee": 0.2904761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T05:00:06" + }, + { + "id": "hktfuv4ondrjyju10l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T09:00:09", + "amountCrypto": 0.000098, + "pricePerUnit": 843905, + "totalCost": 82.7, + "fee": 0.29047259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T09:00:09" + }, + { + "id": "3nn8fnsffb3upmyfmw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T13:00:07", + "amountCrypto": 0.00009843, + "pricePerUnit": 840218, + "totalCost": 82.7, + "fee": 0.29047237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T13:00:07" + }, + { + "id": "ysk0vjkfc6z35ojckq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T17:00:06", + "amountCrypto": 0.0000984, + "pricePerUnit": 840534, + "totalCost": 82.71, + "fee": 0.29049294, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T17:00:06" + }, + { + "id": "y6z0c4nz4dl4kg8fvg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-25T21:00:08", + "amountCrypto": 0.000098, + "pricePerUnit": 843942, + "totalCost": 82.71, + "fee": 0.29048531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-25T21:00:08" + }, + { + "id": "vmjqoibsgf8fujqdd6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T01:00:07", + "amountCrypto": 0.00009816, + "pricePerUnit": 842580, + "totalCost": 82.71, + "fee": 0.29048979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T01:00:07" + }, + { + "id": "khji80ep9x9wfihrc2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T05:00:06", + "amountCrypto": 0.00009811, + "pricePerUnit": 842993, + "totalCost": 82.71, + "fee": 0.29048434, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T05:00:06" + }, + { + "id": "phjrgy5p6wruyju6n3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T09:00:08", + "amountCrypto": 0.00009795, + "pricePerUnit": 844333, + "totalCost": 82.7, + "fee": 0.29047149, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T09:00:08" + }, + { + "id": "phq6hj1a9uctc3f0cd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T13:00:07", + "amountCrypto": 0.00009835, + "pricePerUnit": 840962, + "totalCost": 82.71, + "fee": 0.29049337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T13:00:07" + }, + { + "id": "oamr0fye6kv8b2vq1e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T17:00:06", + "amountCrypto": 0.00009886, + "pricePerUnit": 836563, + "totalCost": 82.7, + "fee": 0.29047211, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T17:00:06" + }, + { + "id": "s3cymusig3jkptbhmx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-26T21:00:07", + "amountCrypto": 0.00009907, + "pricePerUnit": 834835, + "totalCost": 82.71, + "fee": 0.29048811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-26T21:00:07" + }, + { + "id": "h1oy0o5xq6o1zgcgj9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T01:00:08", + "amountCrypto": 0.00009885, + "pricePerUnit": 836661, + "totalCost": 82.7, + "fee": 0.29047706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T01:00:08" + }, + { + "id": "sf8q7apc7lr7cbplm9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T05:00:08", + "amountCrypto": 0.00009918, + "pricePerUnit": 833867, + "totalCost": 82.7, + "fee": 0.29047344, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T05:00:08" + }, + { + "id": "ps8tkhyyo23rhy0neu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T09:00:07", + "amountCrypto": 0.00009907, + "pricePerUnit": 834836, + "totalCost": 82.71, + "fee": 0.29048846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T09:00:07" + }, + { + "id": "i7eo6o63p6yqi4z8u0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T13:00:06", + "amountCrypto": 0.00010002, + "pricePerUnit": 826857, + "totalCost": 82.7, + "fee": 0.290471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T13:00:06" + }, + { + "id": "83a8hj5c5ruiyt83fb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T17:00:06", + "amountCrypto": 0.00010071, + "pricePerUnit": 821203, + "totalCost": 82.7, + "fee": 0.2904748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T17:00:06" + }, + { + "id": "ajub3t15z3ywe018m0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-27T21:00:06", + "amountCrypto": 0.00010072, + "pricePerUnit": 821175, + "totalCost": 82.71, + "fee": 0.29049375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-27T21:00:06" + }, + { + "id": "ols77zrcs5eo7fw13w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T01:00:06", + "amountCrypto": 0.00009984, + "pricePerUnit": 828430, + "totalCost": 82.71, + "fee": 0.29049965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T01:00:06" + }, + { + "id": "uzagk4ou7ekhs0nkev", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T05:00:06", + "amountCrypto": 0.00010006, + "pricePerUnit": 826533, + "totalCost": 82.7, + "fee": 0.29047307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T05:00:06" + }, + { + "id": "hk21jinid94ed1wdwo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T09:00:07", + "amountCrypto": 0.00009987, + "pricePerUnit": 828181, + "totalCost": 82.71, + "fee": 0.29049969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T09:00:07" + }, + { + "id": "lyrjwqdovi3ddd8zxl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T13:00:06", + "amountCrypto": 0.00009984, + "pricePerUnit": 828430, + "totalCost": 82.71, + "fee": 0.29049965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T13:00:06" + }, + { + "id": "l6ncdbi7ul4utok32i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T17:00:06", + "amountCrypto": 0.00009966, + "pricePerUnit": 829866, + "totalCost": 82.7, + "fee": 0.29047876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T17:00:06" + }, + { + "id": "tb8rsongjr9wzd9j7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-28T21:00:07", + "amountCrypto": 0.00009829, + "pricePerUnit": 841474, + "totalCost": 82.71, + "fee": 0.29049273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-28T21:00:07" + }, + { + "id": "wmcvvdzss7j0yesg2b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T01:00:09", + "amountCrypto": 0.00009911, + "pricePerUnit": 834514, + "totalCost": 82.71, + "fee": 0.29049342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T01:00:09" + }, + { + "id": "oronqea8au2tjmk4le", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T05:00:06", + "amountCrypto": 0.00009872, + "pricePerUnit": 837767, + "totalCost": 82.7, + "fee": 0.29047849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T05:00:06" + }, + { + "id": "9ayz9bejcpsr4xlrtw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T09:00:07", + "amountCrypto": 0.00009806, + "pricePerUnit": 843462, + "totalCost": 82.71, + "fee": 0.29049767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T09:00:07" + }, + { + "id": "vdgnwhd87kalqcva0l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T13:00:06", + "amountCrypto": 0.00009782, + "pricePerUnit": 845488, + "totalCost": 82.71, + "fee": 0.29048274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T13:00:06" + }, + { + "id": "xh3nj082cmvkv4rdei", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T17:00:06", + "amountCrypto": 0.00009867, + "pricePerUnit": 838174, + "totalCost": 82.7, + "fee": 0.29047228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T17:00:06" + }, + { + "id": "eoidaua12hghys0v1o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-29T21:00:06", + "amountCrypto": 0.00009871, + "pricePerUnit": 837844, + "totalCost": 82.7, + "fee": 0.29047574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-29T21:00:06" + }, + { + "id": "igvo26q76zzou4mpgs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T01:00:06", + "amountCrypto": 0.00009871, + "pricePerUnit": 837843, + "totalCost": 82.7, + "fee": 0.29047539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T01:00:06" + }, + { + "id": "n0tcfiafsuyw3ma686", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T05:00:07", + "amountCrypto": 0.00009829, + "pricePerUnit": 841454, + "totalCost": 82.71, + "fee": 0.29048583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T05:00:07" + }, + { + "id": "c006wv32oto7omq9r8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T09:00:07", + "amountCrypto": 0.00009851, + "pricePerUnit": 839576, + "totalCost": 82.71, + "fee": 0.2904862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T09:00:07" + }, + { + "id": "fy2yuv0e1co7lic45d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T13:00:06", + "amountCrypto": 0.00009814, + "pricePerUnit": 842733, + "totalCost": 82.71, + "fee": 0.29048363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T13:00:06" + }, + { + "id": "90urtlt6mne8n6w3n9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T17:00:07", + "amountCrypto": 0.00009867, + "pricePerUnit": 838228, + "totalCost": 82.71, + "fee": 0.29049097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T17:00:07" + }, + { + "id": "aiukbpycb94bviskcp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-11-30T21:00:06", + "amountCrypto": 0.00009804, + "pricePerUnit": 843617, + "totalCost": 82.71, + "fee": 0.29049208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-11-30T21:00:06" + }, + { + "id": "kvnmy2nw4nx9uainp1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T01:00:06", + "amountCrypto": 0.00009814, + "pricePerUnit": 842770, + "totalCost": 82.71, + "fee": 0.29049637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T01:00:06" + }, + { + "id": "drsxdt31txp05o5mqv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T05:00:06", + "amountCrypto": 0.00009741, + "pricePerUnit": 849095, + "totalCost": 82.71, + "fee": 0.29049941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T05:00:06" + }, + { + "id": "fwihcuaqim28rrmgax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T09:00:06", + "amountCrypto": 0.00009673, + "pricePerUnit": 855044, + "totalCost": 82.71, + "fee": 0.29049263, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T09:00:06" + }, + { + "id": "2pki1aiu01snq91lvx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T13:00:06", + "amountCrypto": 0.00009593, + "pricePerUnit": 862162, + "totalCost": 82.71, + "fee": 0.29048836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T13:00:06" + }, + { + "id": "fvnagogxemq2481508", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T17:00:07", + "amountCrypto": 0.00009586, + "pricePerUnit": 862796, + "totalCost": 82.71, + "fee": 0.29048997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T17:00:07" + }, + { + "id": "571cdi5d0ukbrxnjae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-01T21:00:07", + "amountCrypto": 0.00009545, + "pricePerUnit": 866495, + "totalCost": 82.71, + "fee": 0.29048737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-01T21:00:07" + }, + { + "id": "fntd1u2rajpdcxh80x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T01:00:06", + "amountCrypto": 0.00009568, + "pricePerUnit": 864385, + "totalCost": 82.7, + "fee": 0.2904783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T01:00:06" + }, + { + "id": "qiq6mbl4020xf91poq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T05:00:08", + "amountCrypto": 0.00009741, + "pricePerUnit": 849095, + "totalCost": 82.71, + "fee": 0.29049941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T05:00:08" + }, + { + "id": "gp836k8yzjxumyvic5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T09:00:07", + "amountCrypto": 0.00009565, + "pricePerUnit": 864645, + "totalCost": 82.7, + "fee": 0.29047448, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T09:00:07" + }, + { + "id": "ovasep6fkmu7s3e1c7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T13:00:08", + "amountCrypto": 0.00009572, + "pricePerUnit": 864060, + "totalCost": 82.71, + "fee": 0.29049058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T13:00:08" + }, + { + "id": "21ymtcmpxga7cgbsal", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T17:00:07", + "amountCrypto": 0.0000955, + "pricePerUnit": 865172, + "totalCost": 82.62, + "fee": 0.29019597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T17:00:07" + }, + { + "id": "ir3fqi6q6qo4iuon48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-02T21:00:06", + "amountCrypto": 0.00009482, + "pricePerUnit": 872263, + "totalCost": 82.71, + "fee": 0.29049107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-02T21:00:06" + }, + { + "id": "0xjoi5y33y2ld9rpct", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T01:00:07", + "amountCrypto": 0.00009463, + "pricePerUnit": 874028, + "totalCost": 82.71, + "fee": 0.29049568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T01:00:07" + }, + { + "id": "r00w225zfzb2yeagqr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T05:00:06", + "amountCrypto": 0.00009474, + "pricePerUnit": 872999, + "totalCost": 82.71, + "fee": 0.29049097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T05:00:06" + }, + { + "id": "yf4ce8sgkbg7h5leos", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T09:00:05", + "amountCrypto": 0.00009416, + "pricePerUnit": 878318, + "totalCost": 82.7, + "fee": 0.29047154, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T09:00:05" + }, + { + "id": "j20fydnl2jqvdepc85", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T13:00:07", + "amountCrypto": 0.00009397, + "pricePerUnit": 880150, + "totalCost": 82.71, + "fee": 0.29049012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T13:00:07" + }, + { + "id": "w4j7iokj7zjhzzogtg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T17:00:07", + "amountCrypto": 0.00009408, + "pricePerUnit": 879123, + "totalCost": 82.71, + "fee": 0.29049082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T17:00:07" + }, + { + "id": "20cz03woe8a4a3vkqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-03T21:00:07", + "amountCrypto": 0.00009372, + "pricePerUnit": 882504, + "totalCost": 82.71, + "fee": 0.29049204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-03T21:00:07" + }, + { + "id": "ac98hf76vgv3fu1gck", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T01:00:07", + "amountCrypto": 0.00009279, + "pricePerUnit": 891306, + "totalCost": 82.7, + "fee": 0.29047809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T01:00:07" + }, + { + "id": "9qghat2taa8zhrfu3u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T05:00:08", + "amountCrypto": 0.00009106, + "pricePerUnit": 908276, + "totalCost": 82.71, + "fee": 0.29048981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T05:00:08" + }, + { + "id": "irhhhz2o67s41u9zzf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T09:00:07", + "amountCrypto": 0.00008919, + "pricePerUnit": 927290, + "totalCost": 82.7, + "fee": 0.29048063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T09:00:07" + }, + { + "id": "c3rvg0tmdn5xw7q6zr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T13:00:06", + "amountCrypto": 0.00008884, + "pricePerUnit": 930961, + "totalCost": 82.71, + "fee": 0.29048628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T13:00:06" + }, + { + "id": "r4v2xge0o5urm837ah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T17:00:06", + "amountCrypto": 0.00008893, + "pricePerUnit": 930000, + "totalCost": 82.7, + "fee": 0.29048038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T17:00:06" + }, + { + "id": "6776jvle4uh07j7hhx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-04T21:00:06", + "amountCrypto": 0.00008761, + "pricePerUnit": 943117, + "totalCost": 82.63, + "fee": 0.29020473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-04T21:00:06" + }, + { + "id": "wgsin5ygxip4wcpqx9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T01:00:07", + "amountCrypto": 0.0000876, + "pricePerUnit": 944117, + "totalCost": 82.7, + "fee": 0.29047948, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T01:00:07" + }, + { + "id": "po54cf8ypjsho2wf7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T05:00:06", + "amountCrypto": 0.00008807, + "pricePerUnit": 939063, + "totalCost": 82.7, + "fee": 0.29047468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T05:00:06" + }, + { + "id": "agjx1ae2a7gmuqcvra", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T09:00:07", + "amountCrypto": 0.00008834, + "pricePerUnit": 936208, + "totalCost": 82.7, + "fee": 0.29047932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T09:00:07" + }, + { + "id": "1yl1ujety2jldhqw10", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T13:00:07", + "amountCrypto": 0.00008821, + "pricePerUnit": 937601, + "totalCost": 82.71, + "fee": 0.29048331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T13:00:07" + }, + { + "id": "gf31a7qu8h4ajuqidx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T17:00:07", + "amountCrypto": 0.00008695, + "pricePerUnit": 951216, + "totalCost": 82.71, + "fee": 0.29049203, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T17:00:07" + }, + { + "id": "3emltn1h2sgfdja9e3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-05T21:00:07", + "amountCrypto": 0.00008365, + "pricePerUnit": 988670, + "totalCost": 82.7, + "fee": 0.2904709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-05T21:00:07" + }, + { + "id": "3ha6q88aoyi8erbyxd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T01:00:07", + "amountCrypto": 0.00008324, + "pricePerUnit": 993595, + "totalCost": 82.71, + "fee": 0.29048709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T01:00:07" + }, + { + "id": "ri3t9nwymh00kkq4rt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T05:00:07", + "amountCrypto": 0.00008389, + "pricePerUnit": 985904, + "totalCost": 82.71, + "fee": 0.29048924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T05:00:07" + }, + { + "id": "jjuk09f2eidc5do3tf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T09:00:11", + "amountCrypto": 0.00008408, + "pricePerUnit": 983617, + "totalCost": 82.7, + "fee": 0.29047187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T09:00:11" + }, + { + "id": "e3i6l10nxika474vms", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T13:00:08", + "amountCrypto": 0.0000837, + "pricePerUnit": 988079, + "totalCost": 82.7, + "fee": 0.29047096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T13:00:08" + }, + { + "id": "12byfs3gjccymemkhg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T17:00:08", + "amountCrypto": 0.00008384, + "pricePerUnit": 986520, + "totalCost": 82.71, + "fee": 0.29049761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T17:00:08" + }, + { + "id": "b9cnlmyh4rsyaatxuw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-06T21:00:07", + "amountCrypto": 0.00008336, + "pricePerUnit": 992113, + "totalCost": 82.7, + "fee": 0.2904721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-06T21:00:07" + }, + { + "id": "fqx1u4cjfkbcl2u548", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T01:00:07", + "amountCrypto": 0.00008371, + "pricePerUnit": 987981, + "totalCost": 82.7, + "fee": 0.29047688, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T01:00:07" + }, + { + "id": "tqwudhadxw4tfthe7r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T05:00:07", + "amountCrypto": 0.00008345, + "pricePerUnit": 991068, + "totalCost": 82.7, + "fee": 0.29047944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T05:00:07" + }, + { + "id": "x19d8dxz4yjsqxvyom", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T09:00:08", + "amountCrypto": 0.00008363, + "pricePerUnit": 988914, + "totalCost": 82.7, + "fee": 0.29047305, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T09:00:08" + }, + { + "id": "xqlp3sbviysmqjxshl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T13:00:08", + "amountCrypto": 0.0000846, + "pricePerUnit": 977595, + "totalCost": 82.7, + "fee": 0.29047896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T13:00:08" + }, + { + "id": "wux6srouys1rntfflo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T17:00:07", + "amountCrypto": 0.00008392, + "pricePerUnit": 985520, + "totalCost": 82.7, + "fee": 0.29048005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T17:00:07" + }, + { + "id": "0tmi534xo9h6x1k4g9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-07T21:00:07", + "amountCrypto": 0.00008497, + "pricePerUnit": 973407, + "totalCost": 82.71, + "fee": 0.29049958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-07T21:00:07" + }, + { + "id": "97wrd22552mg50lndu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T01:00:07", + "amountCrypto": 0.00008469, + "pricePerUnit": 976604, + "totalCost": 82.71, + "fee": 0.2904932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T01:00:07" + }, + { + "id": "ggnoj2y78sefsnvwqh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T05:00:07", + "amountCrypto": 0.00008454, + "pricePerUnit": 978255, + "totalCost": 82.7, + "fee": 0.29046902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T05:00:07" + }, + { + "id": "bw8mnvyb5owef5ap48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T09:00:08", + "amountCrypto": 0.00008475, + "pricePerUnit": 975836, + "totalCost": 82.7, + "fee": 0.29047033, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T09:00:08" + }, + { + "id": "6lpbjjcvkrepbcv1z8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T13:00:06", + "amountCrypto": 0.00008382, + "pricePerUnit": 986674, + "totalCost": 82.7, + "fee": 0.2904736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T13:00:06" + }, + { + "id": "3b4hzu7atwaj9tewrv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T17:00:07", + "amountCrypto": 0.00008345, + "pricePerUnit": 991074, + "totalCost": 82.71, + "fee": 0.29048119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T17:00:07" + }, + { + "id": "xkyyt7g8jdf51uu3s5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-08T21:00:07", + "amountCrypto": 0.00008314, + "pricePerUnit": 994797, + "totalCost": 82.71, + "fee": 0.29048905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-08T21:00:07" + }, + { + "id": "0f17d31ajp7lbxs4gw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T01:00:08", + "amountCrypto": 0.00008259, + "pricePerUnit": 1001444, + "totalCost": 82.71, + "fee": 0.29049561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4092", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T01:00:08" + }, + { + "id": "fxkhvuh08lle7ti1ny", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T05:00:07", + "amountCrypto": 0.00008265, + "pricePerUnit": 1000688, + "totalCost": 82.71, + "fee": 0.29048712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4093", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T05:00:07" + }, + { + "id": "onrlnn5rsmsw1iizoq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T09:00:07", + "amountCrypto": 0.00008266, + "pricePerUnit": 1000528, + "totalCost": 82.7, + "fee": 0.29047587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4094", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T09:00:07" + }, + { + "id": "b09iimr2yrqs9vu86d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T13:00:08", + "amountCrypto": 0.00008332, + "pricePerUnit": 992616, + "totalCost": 82.7, + "fee": 0.29047977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4095", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T13:00:08" + }, + { + "id": "t9de7n6wjzarrjjy2n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T17:00:09", + "amountCrypto": 0.00008297, + "pricePerUnit": 996764, + "totalCost": 82.7, + "fee": 0.29046829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T17:00:09" + }, + { + "id": "uvjwq7uwy1x2ewa52f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-09T21:00:06", + "amountCrypto": 0.00008314, + "pricePerUnit": 994831, + "totalCost": 82.71, + "fee": 0.29049897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-09T21:00:06" + }, + { + "id": "thfmt1r55hfxqd62bj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T01:00:08", + "amountCrypto": 0.00008349, + "pricePerUnit": 990579, + "totalCost": 82.7, + "fee": 0.29047513, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T01:00:08" + }, + { + "id": "9wwp0suyd571ri1d0x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T05:00:07", + "amountCrypto": 0.00008344, + "pricePerUnit": 991249, + "totalCost": 82.71, + "fee": 0.29049762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T05:00:07" + }, + { + "id": "8s81zdacpavnru5wjh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T09:00:07", + "amountCrypto": 0.0000831, + "pricePerUnit": 995196, + "totalCost": 82.7, + "fee": 0.29046592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T09:00:07" + }, + { + "id": "70vy2gftroga2jgzzq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T13:00:07", + "amountCrypto": 0.00008366, + "pricePerUnit": 988541, + "totalCost": 82.7, + "fee": 0.29046776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T13:00:07" + }, + { + "id": "av38y1ksr7ggm1pt3l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T17:00:07", + "amountCrypto": 0.00008319, + "pricePerUnit": 994207, + "totalCost": 82.71, + "fee": 0.29049153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T17:00:07" + }, + { + "id": "bco0byy8oxoz6ppi73", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-10T21:00:07", + "amountCrypto": 0.00008339, + "pricePerUnit": 991788, + "totalCost": 82.71, + "fee": 0.29048125, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-10T21:00:07" + }, + { + "id": "srrdez818ghjtyqb6e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T01:00:08", + "amountCrypto": 0.00008352, + "pricePerUnit": 990220, + "totalCost": 82.7, + "fee": 0.2904743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T01:00:08" + }, + { + "id": "agsyx9xqia93lbq1xi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T05:00:08", + "amountCrypto": 0.00008629, + "pricePerUnit": 958462, + "totalCost": 82.71, + "fee": 0.29048302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T05:00:08" + }, + { + "id": "sjb75kdrzh986ebmo9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T09:00:08", + "amountCrypto": 0.00008625, + "pricePerUnit": 958941, + "totalCost": 82.71, + "fee": 0.29049363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T09:00:08" + }, + { + "id": "zsvbbmbnmgk8c3grp1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T13:00:08", + "amountCrypto": 0.00008649, + "pricePerUnit": 956201, + "totalCost": 82.7, + "fee": 0.29046954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T13:00:08" + }, + { + "id": "ggwkxiuro0e6szic8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T17:00:07", + "amountCrypto": 0.00008725, + "pricePerUnit": 947934, + "totalCost": 82.71, + "fee": 0.29048864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T17:00:07" + }, + { + "id": "u0tsfd7xoo6654ki0v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-11T21:00:08", + "amountCrypto": 0.00008959, + "pricePerUnit": 923121, + "totalCost": 82.7, + "fee": 0.2904716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-11T21:00:08" + }, + { + "id": "mzgmwtynnvsg98kqll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T01:00:07", + "amountCrypto": 0.00008838, + "pricePerUnit": 935823, + "totalCost": 82.71, + "fee": 0.29049115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T01:00:07" + }, + { + "id": "7q63am64rucnu5bv2f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T05:00:08", + "amountCrypto": 0.00008738, + "pricePerUnit": 946501, + "totalCost": 82.71, + "fee": 0.2904815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T05:00:08" + }, + { + "id": "4ptikgqltt00sbxxkc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T09:00:06", + "amountCrypto": 0.00008692, + "pricePerUnit": 951508, + "totalCost": 82.71, + "fee": 0.29048086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T09:00:06" + }, + { + "id": "aj0y9tvpghm47y1h5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T13:00:07", + "amountCrypto": 0.00008781, + "pricePerUnit": 941836, + "totalCost": 82.7, + "fee": 0.29047212, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T13:00:07" + }, + { + "id": "hl0aai9p7l4rv82t4q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T17:00:06", + "amountCrypto": 0.00008794, + "pricePerUnit": 940523, + "totalCost": 82.71, + "fee": 0.29049671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T17:00:06" + }, + { + "id": "7kibp90at3781173ud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-12T21:00:06", + "amountCrypto": 0.00008854, + "pricePerUnit": 934148, + "totalCost": 82.71, + "fee": 0.29049637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-12T21:00:06" + }, + { + "id": "5i862oi0ujebp6tawx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-13T01:00:07", + "amountCrypto": 0.00008792, + "pricePerUnit": 940713, + "totalCost": 82.71, + "fee": 0.29048926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-13T01:00:07" + }, + { + "id": "q4qebs6yhtlr2ksfwj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-13T05:00:08", + "amountCrypto": 0.00008928, + "pricePerUnit": 926349, + "totalCost": 82.7, + "fee": 0.29047865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-13T05:00:08" + }, + { + "id": "agv5ngy49dpp6qr6oa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-13T09:00:07", + "amountCrypto": 0.0000884, + "pricePerUnit": 935633, + "totalCost": 82.71, + "fee": 0.29049795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-13T09:00:07" + }, + { + "id": "4j9kizo26x8w49a43n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T01:00:08", + "amountCrypto": 0.00008585, + "pricePerUnit": 963412, + "totalCost": 82.71, + "fee": 0.2904944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T01:00:08" + }, + { + "id": "88am3tg5mnmth4tpwo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T05:00:06", + "amountCrypto": 0.0000863, + "pricePerUnit": 958406, + "totalCost": 82.71, + "fee": 0.29049973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T05:00:06" + }, + { + "id": "30wysjh8ds6grz5rkz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T09:00:08", + "amountCrypto": 0.00008556, + "pricePerUnit": 966658, + "totalCost": 82.71, + "fee": 0.29048849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T09:00:08" + }, + { + "id": "rannpeunngg3fdmc69", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T13:00:07", + "amountCrypto": 0.00008562, + "pricePerUnit": 965963, + "totalCost": 82.71, + "fee": 0.29048341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T13:00:07" + }, + { + "id": "pflk2a50mkkinx6cyh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T17:00:06", + "amountCrypto": 0.00008753, + "pricePerUnit": 944881, + "totalCost": 82.71, + "fee": 0.29048231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T17:00:06" + }, + { + "id": "3zwftbsol1sb16put2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-14T21:00:06", + "amountCrypto": 0.00008641, + "pricePerUnit": 957081, + "totalCost": 82.7, + "fee": 0.29046798, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-14T21:00:06" + }, + { + "id": "1gvp3eezkbo7mrotpr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T01:00:07", + "amountCrypto": 0.00008642, + "pricePerUnit": 957013, + "totalCost": 82.71, + "fee": 0.29048097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T01:00:07" + }, + { + "id": "eqg65xvqrdz70zft41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T05:00:07", + "amountCrypto": 0.00008699, + "pricePerUnit": 950780, + "totalCost": 82.71, + "fee": 0.29049229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T05:00:07" + }, + { + "id": "tbmaqfvixux62vdwrl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T09:00:07", + "amountCrypto": 0.00008715, + "pricePerUnit": 949036, + "totalCost": 82.71, + "fee": 0.29049299, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T09:00:07" + }, + { + "id": "l64mlujwb29xt9pqrv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T13:00:06", + "amountCrypto": 0.00008656, + "pricePerUnit": 955516, + "totalCost": 82.71, + "fee": 0.29049628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T13:00:06" + }, + { + "id": "ew0xketmkdfegy6lol", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T17:00:06", + "amountCrypto": 0.00008743, + "pricePerUnit": 945989, + "totalCost": 82.71, + "fee": 0.29049065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T17:00:06" + }, + { + "id": "1zul4m0t81rgy6o36o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-15T21:00:07", + "amountCrypto": 0.00008703, + "pricePerUnit": 950328, + "totalCost": 82.71, + "fee": 0.29048783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-15T21:00:07" + }, + { + "id": "t83m550ag1lcfp4cfq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T01:00:06", + "amountCrypto": 0.00008725, + "pricePerUnit": 947889, + "totalCost": 82.7, + "fee": 0.29047486, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T01:00:06" + }, + { + "id": "pdhe9ozmrlq878ev80", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T05:00:06", + "amountCrypto": 0.0000869, + "pricePerUnit": 951759, + "totalCost": 82.71, + "fee": 0.29049055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T05:00:06" + }, + { + "id": "4u7ajdjh8m6grxmtcy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T09:00:06", + "amountCrypto": 0.00008714, + "pricePerUnit": 949123, + "totalCost": 82.71, + "fee": 0.29048625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T09:00:06" + }, + { + "id": "sp1ygd80h34q0yif20", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T13:00:07", + "amountCrypto": 0.00008687, + "pricePerUnit": 952050, + "totalCost": 82.7, + "fee": 0.29047927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T13:00:07" + }, + { + "id": "pr0ak4exkirafeu54j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T17:00:08", + "amountCrypto": 0.00008648, + "pricePerUnit": 956337, + "totalCost": 82.7, + "fee": 0.29047722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T17:00:08" + }, + { + "id": "hfn4pfoui39mgc8jgo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-16T21:00:08", + "amountCrypto": 0.00008664, + "pricePerUnit": 954626, + "totalCost": 82.71, + "fee": 0.2904939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-16T21:00:08" + }, + { + "id": "1jfac7ir8ptd2919r4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T01:00:07", + "amountCrypto": 0.0000866, + "pricePerUnit": 955045, + "totalCost": 82.71, + "fee": 0.2904874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T01:00:07" + }, + { + "id": "8226o26wh6lw7jhhbp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T05:00:07", + "amountCrypto": 0.00008762, + "pricePerUnit": 943907, + "totalCost": 82.71, + "fee": 0.29048123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T05:00:07" + }, + { + "id": "svr6w2zuyyn0k0shor", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T09:00:07", + "amountCrypto": 0.00008728, + "pricePerUnit": 947565, + "totalCost": 82.7, + "fee": 0.29047521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T09:00:07" + }, + { + "id": "475qeh12cnuw09obcc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T13:00:07", + "amountCrypto": 0.0000869, + "pricePerUnit": 951760, + "totalCost": 82.71, + "fee": 0.29049086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T13:00:07" + }, + { + "id": "8c1orsaqprtci9y93y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T17:00:05", + "amountCrypto": 0.00008728, + "pricePerUnit": 947564, + "totalCost": 82.7, + "fee": 0.29047491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T17:00:05" + }, + { + "id": "1etoqbln7acsq4lgcq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-17T21:00:07", + "amountCrypto": 0.00008678, + "pricePerUnit": 953053, + "totalCost": 82.71, + "fee": 0.29048403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-17T21:00:07" + }, + { + "id": "suhmc9ewzjzi9prjal", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T01:00:07", + "amountCrypto": 0.00008816, + "pricePerUnit": 938160, + "totalCost": 82.71, + "fee": 0.29049188, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T01:00:07" + }, + { + "id": "3dcjyo40td3u5n6cd1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T05:00:08", + "amountCrypto": 0.00008904, + "pricePerUnit": 928848, + "totalCost": 82.7, + "fee": 0.29047947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T05:00:08" + }, + { + "id": "vus81a6qp68m7ii9jg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T09:00:07", + "amountCrypto": 0.00008904, + "pricePerUnit": 928848, + "totalCost": 82.7, + "fee": 0.29047947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T09:00:07" + }, + { + "id": "1f6aae23z15g1jta5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T13:00:09", + "amountCrypto": 0.00008904, + "pricePerUnit": 928843, + "totalCost": 82.7, + "fee": 0.29047791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T13:00:09" + }, + { + "id": "ljgmd6knrczoldbc41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T17:00:09", + "amountCrypto": 0.0000886, + "pricePerUnit": 933493, + "totalCost": 82.71, + "fee": 0.29048929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T17:00:09" + }, + { + "id": "80j0gkwdjrvroskz30", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-18T21:00:06", + "amountCrypto": 0.00008841, + "pricePerUnit": 935442, + "totalCost": 82.7, + "fee": 0.29047157, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-18T21:00:06" + }, + { + "id": "h4vxeagiz5gkkvvvdk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T01:00:07", + "amountCrypto": 0.00008651, + "pricePerUnit": 956045, + "totalCost": 82.71, + "fee": 0.29048935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T01:00:07" + }, + { + "id": "oihsg2pt5k6cvur0oe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T05:00:09", + "amountCrypto": 0.00008579, + "pricePerUnit": 964091, + "totalCost": 82.71, + "fee": 0.29049607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T05:00:09" + }, + { + "id": "p7o87ldwide9sb2jnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T09:00:08", + "amountCrypto": 0.00008594, + "pricePerUnit": 962401, + "totalCost": 82.71, + "fee": 0.29049378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T09:00:08" + }, + { + "id": "v4q6t4e5cyvkk4t317", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T13:00:09", + "amountCrypto": 0.00008582, + "pricePerUnit": 963657, + "totalCost": 82.7, + "fee": 0.29046666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T13:00:09" + }, + { + "id": "rx432feghs9x7yy1hy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T17:00:09", + "amountCrypto": 0.00008723, + "pricePerUnit": 948100, + "totalCost": 82.7, + "fee": 0.29047286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T17:00:09" + }, + { + "id": "4dzhtrmt3ugu1x59es", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-19T21:00:08", + "amountCrypto": 0.00008758, + "pricePerUnit": 944362, + "totalCost": 82.71, + "fee": 0.29048845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-19T21:00:08" + }, + { + "id": "9agggbktm275199vej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T01:00:08", + "amountCrypto": 0.00008752, + "pricePerUnit": 945039, + "totalCost": 82.71, + "fee": 0.29049764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T01:00:08" + }, + { + "id": "4cvu3zwsp5736rgdao", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T05:00:06", + "amountCrypto": 0.00008732, + "pricePerUnit": 947184, + "totalCost": 82.71, + "fee": 0.2904916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T05:00:06" + }, + { + "id": "c5iq06au48gb9ukle0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T09:00:07", + "amountCrypto": 0.0000861, + "pricePerUnit": 960626, + "totalCost": 82.71, + "fee": 0.29049777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T09:00:07" + }, + { + "id": "hg00aggrgdfabt70b9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T13:00:05", + "amountCrypto": 0.00008602, + "pricePerUnit": 961484, + "totalCost": 82.71, + "fee": 0.29048715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T13:00:05" + }, + { + "id": "w3m3jqlg6dwtv8q0dw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T17:00:08", + "amountCrypto": 0.00008408, + "pricePerUnit": 983704, + "totalCost": 82.71, + "fee": 0.29049761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T17:00:08" + }, + { + "id": "a3q8j7c4tb7zomdbp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-20T21:00:08", + "amountCrypto": 0.00008456, + "pricePerUnit": 978078, + "totalCost": 82.71, + "fee": 0.29048512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-20T21:00:08" + }, + { + "id": "7dgnv6ufm5f5l6c8on", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T01:00:06", + "amountCrypto": 0.00008466, + "pricePerUnit": 976935, + "totalCost": 82.71, + "fee": 0.29048877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T01:00:06" + }, + { + "id": "8xuk2a9gwlbs0rg3gb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T05:00:08", + "amountCrypto": 0.00008462, + "pricePerUnit": 977322, + "totalCost": 82.7, + "fee": 0.29046654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T05:00:08" + }, + { + "id": "6f5z97g337tlcxy7kd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T09:00:08", + "amountCrypto": 0.0000845, + "pricePerUnit": 978752, + "totalCost": 82.7, + "fee": 0.29047903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T09:00:08" + }, + { + "id": "dgp944rzawjdqkhync", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T13:00:09", + "amountCrypto": 0.00008422, + "pricePerUnit": 982059, + "totalCost": 82.71, + "fee": 0.29049472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T13:00:09" + }, + { + "id": "icrpg8b98m4l8nm0j1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T17:00:08", + "amountCrypto": 0.00008439, + "pricePerUnit": 980000, + "totalCost": 82.7, + "fee": 0.2904708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T17:00:08" + }, + { + "id": "fqdl09g9pz6x2zg81m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-21T21:00:07", + "amountCrypto": 0.00008475, + "pricePerUnit": 975832, + "totalCost": 82.7, + "fee": 0.29046926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-21T21:00:07" + }, + { + "id": "kunh6ozvli9yyc6wnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T01:00:08", + "amountCrypto": 0.00008423, + "pricePerUnit": 981891, + "totalCost": 82.7, + "fee": 0.29047951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T01:00:08" + }, + { + "id": "4a4vzomlrghrbgoqxj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T05:00:08", + "amountCrypto": 0.00008391, + "pricePerUnit": 985695, + "totalCost": 82.71, + "fee": 0.29049703, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T05:00:08" + }, + { + "id": "bici3gzt8wspcg8auw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T09:00:07", + "amountCrypto": 0.00008464, + "pricePerUnit": 977129, + "totalCost": 82.7, + "fee": 0.29047782, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T09:00:07" + }, + { + "id": "ykz2k6ekc1zezhnys7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T13:00:07", + "amountCrypto": 0.00008485, + "pricePerUnit": 974765, + "totalCost": 82.71, + "fee": 0.29049402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T13:00:07" + }, + { + "id": "u9p14oermfci0xuyo9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T17:00:08", + "amountCrypto": 0.00008466, + "pricePerUnit": 976950, + "totalCost": 82.71, + "fee": 0.29049323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T17:00:08" + }, + { + "id": "tosfiegnv15pfrvm7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-22T21:00:08", + "amountCrypto": 0.0000846, + "pricePerUnit": 977617, + "totalCost": 82.71, + "fee": 0.29048555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-22T21:00:08" + }, + { + "id": "67ed82l1875um42bjy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T01:00:06", + "amountCrypto": 0.00008398, + "pricePerUnit": 984786, + "totalCost": 82.7, + "fee": 0.29047125, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T01:00:06" + }, + { + "id": "zqykf4lf7xmy5ybicy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T05:00:07", + "amountCrypto": 0.0000848, + "pricePerUnit": 975266, + "totalCost": 82.7, + "fee": 0.29047206, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T05:00:07" + }, + { + "id": "yqll6tj4nkyvxa6hee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T09:00:08", + "amountCrypto": 0.00008476, + "pricePerUnit": 975814, + "totalCost": 82.71, + "fee": 0.29049818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T09:00:08" + }, + { + "id": "uci7x0yg46m4l37hh1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T13:00:07", + "amountCrypto": 0.00008476, + "pricePerUnit": 975715, + "totalCost": 82.7, + "fee": 0.29046871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T13:00:07" + }, + { + "id": "cjqz6zbm3e4i059021", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T17:00:06", + "amountCrypto": 0.0000844, + "pricePerUnit": 979903, + "totalCost": 82.7, + "fee": 0.29047647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T17:00:06" + }, + { + "id": "658ayzezfmt1bg9me8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-23T21:00:10", + "amountCrypto": 0.0000845, + "pricePerUnit": 978758, + "totalCost": 82.71, + "fee": 0.29048082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-23T21:00:10" + }, + { + "id": "skcu2jn9ubwqlvxy8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T01:00:08", + "amountCrypto": 0.00008444, + "pricePerUnit": 979434, + "totalCost": 82.7, + "fee": 0.29047504, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T01:00:08" + }, + { + "id": "5tsd3jq2os8bz9fu9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T05:00:07", + "amountCrypto": 0.00008426, + "pricePerUnit": 981519, + "totalCost": 82.7, + "fee": 0.29047288, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T05:00:07" + }, + { + "id": "frsygnt1e388rxy0pq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T09:00:08", + "amountCrypto": 0.00008462, + "pricePerUnit": 977323, + "totalCost": 82.7, + "fee": 0.29046684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T09:00:08" + }, + { + "id": "k6nhj2fh15p4u87ptq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T13:00:07", + "amountCrypto": 0.00008458, + "pricePerUnit": 977881, + "totalCost": 82.71, + "fee": 0.2904953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T13:00:07" + }, + { + "id": "v9d8r3t00v5093p4vk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T17:00:07", + "amountCrypto": 0.00008443, + "pricePerUnit": 979606, + "totalCost": 82.71, + "fee": 0.29049165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T17:00:07" + }, + { + "id": "gkly5vrso8kkr3fo81", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-24T21:00:07", + "amountCrypto": 0.00008457, + "pricePerUnit": 977987, + "totalCost": 82.71, + "fee": 0.29049244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-24T21:00:07" + }, + { + "id": "6pdr4tr112vkk0s47w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T01:00:07", + "amountCrypto": 0.00008575, + "pricePerUnit": 964475, + "totalCost": 82.7, + "fee": 0.29047618, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T01:00:07" + }, + { + "id": "86krgqk4dvlj2ozu69", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T05:00:07", + "amountCrypto": 0.00008551, + "pricePerUnit": 967216, + "totalCost": 82.71, + "fee": 0.2904864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T05:00:07" + }, + { + "id": "sdvt381gsjsr4b4ofp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T09:00:07", + "amountCrypto": 0.00008524, + "pricePerUnit": 970313, + "totalCost": 82.71, + "fee": 0.29049637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T09:00:07" + }, + { + "id": "jhcyfme3nmryg7tvxp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T13:00:06", + "amountCrypto": 0.00008547, + "pricePerUnit": 967622, + "totalCost": 82.7, + "fee": 0.29047239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T13:00:06" + }, + { + "id": "bf1o5n8gj04qsq4zin", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T17:00:07", + "amountCrypto": 0.00008462, + "pricePerUnit": 977322, + "totalCost": 82.7, + "fee": 0.29046654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T17:00:07" + }, + { + "id": "vgm1v3baot3i587lgu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-25T21:00:07", + "amountCrypto": 0.00008495, + "pricePerUnit": 973630, + "totalCost": 82.71, + "fee": 0.29049774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-25T21:00:07" + }, + { + "id": "299z1mpoit9n60tmqn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T01:00:07", + "amountCrypto": 0.00008473, + "pricePerUnit": 976161, + "totalCost": 82.71, + "fee": 0.29049862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T01:00:07" + }, + { + "id": "4so6plhdxfvb79aj1s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T05:00:06", + "amountCrypto": 0.0000851, + "pricePerUnit": 971918, + "totalCost": 82.71, + "fee": 0.29049898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T05:00:06" + }, + { + "id": "wzixs0jjqd8q6mzzhk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T09:00:07", + "amountCrypto": 0.00008606, + "pricePerUnit": 961007, + "totalCost": 82.7, + "fee": 0.29047805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T09:00:07" + }, + { + "id": "c0x95kvm3pr7iimfbm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T13:00:06", + "amountCrypto": 0.0000865, + "pricePerUnit": 956101, + "totalCost": 82.7, + "fee": 0.29047269, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T13:00:06" + }, + { + "id": "r0qf0nnu8yxhon3qip", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T17:00:05", + "amountCrypto": 0.00008742, + "pricePerUnit": 946067, + "totalCost": 82.71, + "fee": 0.29048126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T17:00:05" + }, + { + "id": "eqr9sq60ayc9ty1cu0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-26T21:00:06", + "amountCrypto": 0.00008806, + "pricePerUnit": 939189, + "totalCost": 82.7, + "fee": 0.29048058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-26T21:00:06" + }, + { + "id": "8nimkm77n1ykhmg8vl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T01:00:06", + "amountCrypto": 0.00008727, + "pricePerUnit": 947727, + "totalCost": 82.71, + "fee": 0.29049165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T01:00:06" + }, + { + "id": "hiw41mverb40406wjy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T05:00:08", + "amountCrypto": 0.00008769, + "pricePerUnit": 943145, + "totalCost": 82.7, + "fee": 0.29047848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T05:00:08" + }, + { + "id": "dl7h1o0itlvbfniefu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T09:00:08", + "amountCrypto": 0.00008725, + "pricePerUnit": 947865, + "totalCost": 82.7, + "fee": 0.29046736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T09:00:08" + }, + { + "id": "ef3fh2kfm7av0boizr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T13:00:09", + "amountCrypto": 0.00008589, + "pricePerUnit": 962900, + "totalCost": 82.7, + "fee": 0.2904753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T13:00:09" + }, + { + "id": "nbg53nlsxo5460297u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T17:00:08", + "amountCrypto": 0.00008608, + "pricePerUnit": 960851, + "totalCost": 82.71, + "fee": 0.29049839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T17:00:08" + }, + { + "id": "24u3t3q97thqahb02g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-27T21:00:07", + "amountCrypto": 0.00008593, + "pricePerUnit": 962500, + "totalCost": 82.71, + "fee": 0.29048986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-27T21:00:07" + }, + { + "id": "opmwx6zble3oi2de4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T01:00:05", + "amountCrypto": 0.00008544, + "pricePerUnit": 968000, + "totalCost": 82.71, + "fee": 0.29048387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T01:00:05" + }, + { + "id": "fmy1k2dgfn3x886nh0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T05:00:10", + "amountCrypto": 0.00008537, + "pricePerUnit": 968738, + "totalCost": 82.7, + "fee": 0.29046716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T05:00:10" + }, + { + "id": "vmzg72gehsmzv0yhqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T09:00:06", + "amountCrypto": 0.0000861, + "pricePerUnit": 960622, + "totalCost": 82.71, + "fee": 0.29049663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T09:00:06" + }, + { + "id": "ztm8m269cxyil4tmh3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T13:00:07", + "amountCrypto": 0.0000861, + "pricePerUnit": 960557, + "totalCost": 82.7, + "fee": 0.29047698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T13:00:07" + }, + { + "id": "xgaodzlemnow7rasrj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T17:00:08", + "amountCrypto": 0.0000871, + "pricePerUnit": 949561, + "totalCost": 82.71, + "fee": 0.29048683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T17:00:08" + }, + { + "id": "1k88rwfn0svwuzwy8o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-28T21:00:08", + "amountCrypto": 0.0000865, + "pricePerUnit": 956084, + "totalCost": 82.7, + "fee": 0.29046752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-28T21:00:08" + }, + { + "id": "c9x0c15soi9mn2asgx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T01:00:10", + "amountCrypto": 0.00008658, + "pricePerUnit": 955264, + "totalCost": 82.71, + "fee": 0.29048681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T01:00:10" + }, + { + "id": "ga837h6jcxls9wy8jo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T05:00:08", + "amountCrypto": 0.0000865, + "pricePerUnit": 956101, + "totalCost": 82.7, + "fee": 0.29047269, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T05:00:08" + }, + { + "id": "547r6rxzp4e1zxqv12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T09:00:07", + "amountCrypto": 0.00008713, + "pricePerUnit": 949251, + "totalCost": 82.71, + "fee": 0.29049201, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T09:00:07" + }, + { + "id": "o8gaqerbs5p5w6syg3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T13:00:08", + "amountCrypto": 0.00008609, + "pricePerUnit": 960693, + "totalCost": 82.71, + "fee": 0.29048436, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T13:00:08" + }, + { + "id": "uafry35iqsb9dtbpns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T17:00:08", + "amountCrypto": 0.00008688, + "pricePerUnit": 951905, + "totalCost": 82.7, + "fee": 0.29046837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T17:00:08" + }, + { + "id": "hamo05qr30lh2tob0v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-29T21:00:07", + "amountCrypto": 0.00008739, + "pricePerUnit": 946414, + "totalCost": 82.71, + "fee": 0.29048808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-29T21:00:07" + }, + { + "id": "pwo4w8yq2fwha5gl36", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T01:00:08", + "amountCrypto": 0.00008763, + "pricePerUnit": 943791, + "totalCost": 82.7, + "fee": 0.29047855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T01:00:08" + }, + { + "id": "r0e1hw5ltz602tdp1y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T05:00:07", + "amountCrypto": 0.00008757, + "pricePerUnit": 944458, + "totalCost": 82.71, + "fee": 0.29048481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T05:00:07" + }, + { + "id": "ipm3ihcljnb2xnfs3r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T09:00:06", + "amountCrypto": 0.0000877, + "pricePerUnit": 943028, + "totalCost": 82.7, + "fee": 0.29047556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T09:00:06" + }, + { + "id": "oslqu5ajdslx2qcnxo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T13:00:08", + "amountCrypto": 0.00008777, + "pricePerUnit": 942286, + "totalCost": 82.7, + "fee": 0.29047868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T13:00:08" + }, + { + "id": "f71h4ynj2mgacwv346", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T17:00:06", + "amountCrypto": 0.00008698, + "pricePerUnit": 950808, + "totalCost": 82.7, + "fee": 0.29046757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T17:00:06" + }, + { + "id": "gen4lr5lj11eweaqn3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-30T21:00:07", + "amountCrypto": 0.00008633, + "pricePerUnit": 958018, + "totalCost": 82.71, + "fee": 0.29048307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-30T21:00:07" + }, + { + "id": "f8w6cwivu6r7uqvo27", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T01:00:08", + "amountCrypto": 0.00008676, + "pricePerUnit": 953252, + "totalCost": 82.7, + "fee": 0.29047763, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T01:00:08" + }, + { + "id": "87ebnsdpvkgvb1evqr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T05:00:08", + "amountCrypto": 0.00008676, + "pricePerUnit": 953251, + "totalCost": 82.7, + "fee": 0.29047732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T05:00:08" + }, + { + "id": "7qut0xuke6movqk0cx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T09:00:06", + "amountCrypto": 0.00008633, + "pricePerUnit": 957999, + "totalCost": 82.7, + "fee": 0.29047731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T09:00:06" + }, + { + "id": "pnw7jjxfvylspguiag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T13:00:08", + "amountCrypto": 0.00008624, + "pricePerUnit": 958998, + "totalCost": 82.7, + "fee": 0.29047708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T13:00:08" + }, + { + "id": "dlsosc0qh03vfpkdx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T17:00:05", + "amountCrypto": 0.00008628, + "pricePerUnit": 958606, + "totalCost": 82.71, + "fee": 0.29049302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T17:00:05" + }, + { + "id": "cd18wdrrqufcczm3qb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2023-12-31T21:00:07", + "amountCrypto": 0.00008633, + "pricePerUnit": 958018, + "totalCost": 82.71, + "fee": 0.29048307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2023-12-31T21:00:07" + }, + { + "id": "p9l57trcrukn7m75ws", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T01:00:10", + "amountCrypto": 0.00008692, + "pricePerUnit": 951500, + "totalCost": 82.7, + "fee": 0.29047846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T01:00:10" + }, + { + "id": "2j8n37lqa9z93zvh9t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T05:00:07", + "amountCrypto": 0.00008681, + "pricePerUnit": 952678, + "totalCost": 82.7, + "fee": 0.29047002, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T05:00:07" + }, + { + "id": "goqnezh7yvjxd2y23l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T09:00:08", + "amountCrypto": 0.00008646, + "pricePerUnit": 956603, + "totalCost": 82.71, + "fee": 0.29049081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T09:00:08" + }, + { + "id": "40mlguwqfz8qx5zo8k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T13:00:06", + "amountCrypto": 0.00008628, + "pricePerUnit": 958579, + "totalCost": 82.71, + "fee": 0.29048484, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T13:00:06" + }, + { + "id": "2z7ktq1t78zp88hs8s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T17:00:07", + "amountCrypto": 0.00008615, + "pricePerUnit": 960000, + "totalCost": 82.7, + "fee": 0.29047712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T17:00:07" + }, + { + "id": "h6sk1e0piqbjqlwj2h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-01T21:00:07", + "amountCrypto": 0.00008483, + "pricePerUnit": 974947, + "totalCost": 82.7, + "fee": 0.29047977, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-01T21:00:07" + }, + { + "id": "dtrtde4r07zvrsfybl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T01:00:06", + "amountCrypto": 0.00008356, + "pricePerUnit": 989811, + "totalCost": 82.71, + "fee": 0.29049331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T01:00:06" + }, + { + "id": "up6o4e5wxyvhv8alr9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T05:00:07", + "amountCrypto": 0.00008113, + "pricePerUnit": 1019357, + "totalCost": 82.7, + "fee": 0.2904646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T05:00:07" + }, + { + "id": "ohspy6vxsrm3oe3uvw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T09:00:11", + "amountCrypto": 0.00008081, + "pricePerUnit": 1023451, + "totalCost": 82.71, + "fee": 0.2904809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T09:00:11" + }, + { + "id": "k1a0eddw3a1d54rav0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T13:00:08", + "amountCrypto": 0.0000807, + "pricePerUnit": 1024887, + "totalCost": 82.71, + "fee": 0.29049258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T13:00:08" + }, + { + "id": "vq60xhecwf3vsoy7xa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T17:00:08", + "amountCrypto": 0.00008108, + "pricePerUnit": 1020065, + "totalCost": 82.71, + "fee": 0.2904872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T17:00:08" + }, + { + "id": "dibmy0dg2uk1ldy83h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-02T21:00:10", + "amountCrypto": 0.00008123, + "pricePerUnit": 1018106, + "totalCost": 82.7, + "fee": 0.29046571, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-02T21:00:10" + }, + { + "id": "sa8u3lskks9haz0nn5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T01:00:10", + "amountCrypto": 0.00008148, + "pricePerUnit": 1015048, + "totalCost": 82.71, + "fee": 0.29048454, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T01:00:10" + }, + { + "id": "476vtcnb321vphwp4f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T05:00:09", + "amountCrypto": 0.00008093, + "pricePerUnit": 1021906, + "totalCost": 82.7, + "fee": 0.29047309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T05:00:09" + }, + { + "id": "mm7dhwcp54pj11ewxm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T09:00:08", + "amountCrypto": 0.00008145, + "pricePerUnit": 1015400, + "totalCost": 82.7, + "fee": 0.29047828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T09:00:08" + }, + { + "id": "i9h284ivuz1ji0wzkr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T13:00:10", + "amountCrypto": 0.00008343, + "pricePerUnit": 991363, + "totalCost": 82.71, + "fee": 0.29049614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T13:00:10" + }, + { + "id": "96xvjmr0cmsxj6arud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T17:00:07", + "amountCrypto": 0.00008459, + "pricePerUnit": 977732, + "totalCost": 82.71, + "fee": 0.29048538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T17:00:07" + }, + { + "id": "hq6kg1p65c9oi73539", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-03T21:00:06", + "amountCrypto": 0.00008523, + "pricePerUnit": 970352, + "totalCost": 82.7, + "fee": 0.29047397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-03T21:00:06" + }, + { + "id": "og22vtyv7rk6uiw6em", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T01:00:05", + "amountCrypto": 0.00008479, + "pricePerUnit": 975462, + "totalCost": 82.71, + "fee": 0.29049617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T01:00:05" + }, + { + "id": "gk9n1w9hzoruassmtk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T05:00:05", + "amountCrypto": 0.00008459, + "pricePerUnit": 977724, + "totalCost": 82.71, + "fee": 0.290483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T05:00:05" + }, + { + "id": "hspn5zmolqnz5qzpks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T09:00:07", + "amountCrypto": 0.00008505, + "pricePerUnit": 972460, + "totalCost": 82.71, + "fee": 0.2904902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T09:00:07" + }, + { + "id": "v4m3zvbmtf0u8s0cu3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T13:00:06", + "amountCrypto": 0.00008458, + "pricePerUnit": 977826, + "totalCost": 82.7, + "fee": 0.29047896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T13:00:06" + }, + { + "id": "veb9svbo4zg3ztskz9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T17:00:06", + "amountCrypto": 0.0000829, + "pricePerUnit": 997610, + "totalCost": 82.7, + "fee": 0.29046964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T17:00:06" + }, + { + "id": "5kkxpg84ukdpay98ok", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-04T21:00:04", + "amountCrypto": 0.000083, + "pricePerUnit": 996466, + "totalCost": 82.71, + "fee": 0.29048653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-04T21:00:04" + }, + { + "id": "bpjt57huvn33wnwevz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T01:00:06", + "amountCrypto": 0.00008263, + "pricePerUnit": 1000862, + "totalCost": 82.7, + "fee": 0.29046738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T01:00:06" + }, + { + "id": "8reqyijn0r3uxz3asb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T05:00:05", + "amountCrypto": 0.00008391, + "pricePerUnit": 985623, + "totalCost": 82.7, + "fee": 0.29047581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T05:00:05" + }, + { + "id": "joubn71p09sn0swv9z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T09:00:05", + "amountCrypto": 0.00008325, + "pricePerUnit": 993508, + "totalCost": 82.71, + "fee": 0.29049659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T09:00:05" + }, + { + "id": "rd227auvs2v7h122ov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T13:00:05", + "amountCrypto": 0.00008323, + "pricePerUnit": 993702, + "totalCost": 82.71, + "fee": 0.29048351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T13:00:05" + }, + { + "id": "tncm9lsn98s3xrsf0r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T17:00:06", + "amountCrypto": 0.00008467, + "pricePerUnit": 976810, + "totalCost": 82.71, + "fee": 0.29048591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T17:00:06" + }, + { + "id": "ay7v23s61wywkzctvb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-05T21:00:04", + "amountCrypto": 0.00008392, + "pricePerUnit": 985490, + "totalCost": 82.7, + "fee": 0.29047123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-05T21:00:04" + }, + { + "id": "wft7ht8njwm8q92c5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T01:00:04", + "amountCrypto": 0.00008283, + "pricePerUnit": 998500, + "totalCost": 82.71, + "fee": 0.29048329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T01:00:04" + }, + { + "id": "67zew71fuydbc1rzgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T05:00:04", + "amountCrypto": 0.00008325, + "pricePerUnit": 993455, + "totalCost": 82.71, + "fee": 0.29048109, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T05:00:04" + }, + { + "id": "zxwp17eec3jpulcxd2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T09:00:05", + "amountCrypto": 0.00008379, + "pricePerUnit": 987045, + "totalCost": 82.7, + "fee": 0.29047888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T09:00:05" + }, + { + "id": "twh9z2qs7aojw2gbb8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T13:00:04", + "amountCrypto": 0.00008374, + "pricePerUnit": 987631, + "totalCost": 82.7, + "fee": 0.2904779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T13:00:04" + }, + { + "id": "tzpq16kc51ct3jnuau", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T17:00:04", + "amountCrypto": 0.00008337, + "pricePerUnit": 992057, + "totalCost": 82.71, + "fee": 0.29049044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T17:00:04" + }, + { + "id": "x8h56nqe7sedacixmf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-06T21:00:05", + "amountCrypto": 0.00008324, + "pricePerUnit": 993624, + "totalCost": 82.71, + "fee": 0.2904956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-06T21:00:05" + }, + { + "id": "4lbpt5c9ycig6duw58", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T01:00:04", + "amountCrypto": 0.00008342, + "pricePerUnit": 991426, + "totalCost": 82.7, + "fee": 0.29047978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T01:00:04" + }, + { + "id": "1c9tux28fkh6os51q1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T05:00:04", + "amountCrypto": 0.0000832, + "pricePerUnit": 994084, + "totalCost": 82.71, + "fee": 0.29049043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T05:00:04" + }, + { + "id": "ax77ghljdprr3dmqcv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T09:00:04", + "amountCrypto": 0.00008296, + "pricePerUnit": 996923, + "totalCost": 82.7, + "fee": 0.2904797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T09:00:04" + }, + { + "id": "pwgg0c4s4kwi49egcp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T13:00:04", + "amountCrypto": 0.00008296, + "pricePerUnit": 996887, + "totalCost": 82.7, + "fee": 0.29046921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T13:00:04" + }, + { + "id": "5vek59jtk7a0aaj5e1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T17:00:04", + "amountCrypto": 0.00008303, + "pricePerUnit": 996146, + "totalCost": 82.71, + "fee": 0.29049821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T17:00:04" + }, + { + "id": "1d6sx0yh4yn0pw62g8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-07T21:00:05", + "amountCrypto": 0.00008284, + "pricePerUnit": 998389, + "totalCost": 82.71, + "fee": 0.29048606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-07T21:00:05" + }, + { + "id": "ymqsj1ersi4eoqnt4e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T01:00:05", + "amountCrypto": 0.00008337, + "pricePerUnit": 992056, + "totalCost": 82.71, + "fee": 0.29049015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T01:00:05" + }, + { + "id": "1rp7c231e44jdrag9c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T05:00:04", + "amountCrypto": 0.00008401, + "pricePerUnit": 984461, + "totalCost": 82.7, + "fee": 0.29047912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T05:00:04" + }, + { + "id": "sgjlsktuhedvarld5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T09:00:05", + "amountCrypto": 0.00008304, + "pricePerUnit": 995986, + "totalCost": 82.71, + "fee": 0.29048653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T09:00:05" + }, + { + "id": "2sytc5gd6zjtrwxjus", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T13:00:05", + "amountCrypto": 0.0000825, + "pricePerUnit": 1002455, + "totalCost": 82.7, + "fee": 0.29047199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T13:00:05" + }, + { + "id": "2faxtnu2oju4sawt62", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T17:00:05", + "amountCrypto": 0.00008193, + "pricePerUnit": 1009522, + "totalCost": 82.71, + "fee": 0.29049868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T17:00:05" + }, + { + "id": "5wouimp8s30nlnmg7p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-08T21:00:05", + "amountCrypto": 0.00007849, + "pricePerUnit": 1053733, + "totalCost": 82.71, + "fee": 0.29048943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-08T21:00:05" + }, + { + "id": "cdn4zn3hbsyaw0aet5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T01:00:05", + "amountCrypto": 0.00007845, + "pricePerUnit": 1054295, + "totalCost": 82.71, + "fee": 0.29049624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T01:00:05" + }, + { + "id": "8v5sm59ti9mxxh5azn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T05:00:05", + "amountCrypto": 0.00007859, + "pricePerUnit": 1052352, + "totalCost": 82.7, + "fee": 0.29047833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T05:00:05" + }, + { + "id": "sbqook3o6h3i0etnon", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T09:00:06", + "amountCrypto": 0.00007858, + "pricePerUnit": 1052533, + "totalCost": 82.71, + "fee": 0.29049132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T09:00:06" + }, + { + "id": "ehmy4d55b91ov8fvix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T13:00:07", + "amountCrypto": 0.00007882, + "pricePerUnit": 1049290, + "totalCost": 82.71, + "fee": 0.29048077, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T13:00:07" + }, + { + "id": "o9cmu9bifqxispi70a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T17:00:07", + "amountCrypto": 0.00007808, + "pricePerUnit": 1059191, + "totalCost": 82.7, + "fee": 0.29046881, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T17:00:07" + }, + { + "id": "ie4nuledl9exb9rbm4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-09T21:00:05", + "amountCrypto": 0.00007817, + "pricePerUnit": 1057998, + "totalCost": 82.7, + "fee": 0.29047608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-09T21:00:05" + }, + { + "id": "n2i8qr6nwcrn5ck0lz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T01:00:05", + "amountCrypto": 0.0000794, + "pricePerUnit": 1041633, + "totalCost": 82.71, + "fee": 0.29048296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T01:00:05" + }, + { + "id": "cf2od0xl7anf6zhfkx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T05:00:04", + "amountCrypto": 0.00007943, + "pricePerUnit": 1041233, + "totalCost": 82.71, + "fee": 0.29048112, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T05:00:04" + }, + { + "id": "08e9hkuq3dl90ejj21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T09:00:05", + "amountCrypto": 0.00007993, + "pricePerUnit": 1034777, + "totalCost": 82.71, + "fee": 0.29049723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T09:00:05" + }, + { + "id": "ex207fdhnvpaki1j4m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T13:00:05", + "amountCrypto": 0.00008055, + "pricePerUnit": 1026723, + "totalCost": 82.7, + "fee": 0.29047199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T13:00:05" + }, + { + "id": "uqjcvw7qe1cg5hsogi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T17:00:05", + "amountCrypto": 0.00008084, + "pricePerUnit": 1023047, + "totalCost": 82.7, + "fee": 0.29047403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T17:00:05" + }, + { + "id": "xzesz8ebfgqkcpmhth", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-10T21:00:04", + "amountCrypto": 0.00007913, + "pricePerUnit": 1045118, + "totalCost": 82.7, + "fee": 0.29046373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-10T21:00:04" + }, + { + "id": "3iz4sbjhgx3s4j9p5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T01:00:05", + "amountCrypto": 0.0000787, + "pricePerUnit": 1050861, + "totalCost": 82.7, + "fee": 0.29047277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T01:00:05" + }, + { + "id": "qgaq9m9qgg7rq35b7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T05:00:05", + "amountCrypto": 0.00007904, + "pricePerUnit": 1046328, + "totalCost": 82.7, + "fee": 0.29046927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T05:00:05" + }, + { + "id": "290lr2i6n1ei4bexoz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T09:00:06", + "amountCrypto": 0.0000795, + "pricePerUnit": 1040318, + "totalCost": 82.71, + "fee": 0.29048162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T09:00:06" + }, + { + "id": "o8ji483gtqs3k70ir9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T13:00:06", + "amountCrypto": 0.00007799, + "pricePerUnit": 1060426, + "totalCost": 82.7, + "fee": 0.29047229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T13:00:06" + }, + { + "id": "u51n16itbtgrle4yvb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T17:00:06", + "amountCrypto": 0.00007813, + "pricePerUnit": 1058533, + "totalCost": 82.7, + "fee": 0.29047426, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T17:00:06" + }, + { + "id": "dcq6rg0coae2i6hqvk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-11T21:00:04", + "amountCrypto": 0.00007844, + "pricePerUnit": 1054391, + "totalCost": 82.71, + "fee": 0.29048566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-11T21:00:04" + }, + { + "id": "eeg4tb64vqaqgmz3ah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T01:00:05", + "amountCrypto": 0.00007901, + "pricePerUnit": 1046804, + "totalCost": 82.71, + "fee": 0.29049112, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T01:00:05" + }, + { + "id": "yyke8gah3sie4jpjt8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T05:00:04", + "amountCrypto": 0.00007955, + "pricePerUnit": 1039716, + "totalCost": 82.71, + "fee": 0.29049612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T05:00:04" + }, + { + "id": "43si6fxlmbyj2j3raz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T09:00:04", + "amountCrypto": 0.0000796, + "pricePerUnit": 1038990, + "totalCost": 82.7, + "fee": 0.29047573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T09:00:04" + }, + { + "id": "jqm2u8ebeqk7nbh572", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T13:00:05", + "amountCrypto": 0.00007922, + "pricePerUnit": 1043973, + "totalCost": 82.7, + "fee": 0.29047551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T13:00:05" + }, + { + "id": "xogiigv8ylqn6691w5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T17:00:05", + "amountCrypto": 0.00008201, + "pricePerUnit": 1008479, + "totalCost": 82.71, + "fee": 0.29048191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T17:00:05" + }, + { + "id": "4s0bsegs3yxfhyrzsi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-12T21:00:05", + "amountCrypto": 0.00008301, + "pricePerUnit": 996320, + "totalCost": 82.7, + "fee": 0.29047896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-12T21:00:05" + }, + { + "id": "8brluy0jkvny1sxjsh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-13T01:00:04", + "amountCrypto": 0.0000851, + "pricePerUnit": 971895, + "totalCost": 82.71, + "fee": 0.2904921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-13T01:00:04" + }, + { + "id": "9fhin3i34zq6vmp0py", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T01:00:04", + "amountCrypto": 0.00008732, + "pricePerUnit": 947139, + "totalCost": 82.7, + "fee": 0.29047775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T01:00:04" + }, + { + "id": "w2itv1m5i9t96yuhbb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T05:00:05", + "amountCrypto": 0.00008618, + "pricePerUnit": 959721, + "totalCost": 82.71, + "fee": 0.29049383, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T05:00:05" + }, + { + "id": "qd3kyz6kgrig8g9g8a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T09:00:05", + "amountCrypto": 0.00008562, + "pricePerUnit": 965973, + "totalCost": 82.71, + "fee": 0.29048628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T09:00:05" + }, + { + "id": "qti7744rr2c8fk98zc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T13:00:05", + "amountCrypto": 0.00008557, + "pricePerUnit": 966500, + "totalCost": 82.7, + "fee": 0.29047503, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T13:00:05" + }, + { + "id": "0dye34ar7osqyfj0jd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T17:00:05", + "amountCrypto": 0.00008622, + "pricePerUnit": 959253, + "totalCost": 82.71, + "fee": 0.29048694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T17:00:05" + }, + { + "id": "tcm6mxa92dxuz4k9us", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-15T21:00:05", + "amountCrypto": 0.00008502, + "pricePerUnit": 972824, + "totalCost": 82.71, + "fee": 0.29049643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-15T21:00:05" + }, + { + "id": "gvus0dzqans348b3uz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T01:00:05", + "amountCrypto": 0.00008596, + "pricePerUnit": 962128, + "totalCost": 82.7, + "fee": 0.29047896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T01:00:05" + }, + { + "id": "a8o6tvu6e2asvc2bz2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T05:00:04", + "amountCrypto": 0.00008509, + "pricePerUnit": 972000, + "totalCost": 82.71, + "fee": 0.29048935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T05:00:04" + }, + { + "id": "ueualcmruqzjycdtkn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T09:00:05", + "amountCrypto": 0.00008536, + "pricePerUnit": 968858, + "totalCost": 82.7, + "fee": 0.29046911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T09:00:05" + }, + { + "id": "c94i6zw8wtpz4jicsz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T13:00:06", + "amountCrypto": 0.00008475, + "pricePerUnit": 975931, + "totalCost": 82.71, + "fee": 0.29049873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T13:00:06" + }, + { + "id": "khkqjldjrqgb1f6f08", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T17:00:05", + "amountCrypto": 0.00008412, + "pricePerUnit": 983156, + "totalCost": 82.7, + "fee": 0.2904739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T17:00:05" + }, + { + "id": "dg48w62idt22zs60lt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-16T21:00:05", + "amountCrypto": 0.00008399, + "pricePerUnit": 984691, + "totalCost": 82.7, + "fee": 0.29047782, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-16T21:00:05" + }, + { + "id": "7csrqngdl841h2vei8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T01:00:06", + "amountCrypto": 0.00008417, + "pricePerUnit": 982552, + "totalCost": 82.7, + "fee": 0.290468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T01:00:06" + }, + { + "id": "sa43irdqz8xdrbjf1n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T05:00:04", + "amountCrypto": 0.00008458, + "pricePerUnit": 977834, + "totalCost": 82.71, + "fee": 0.29048134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T05:00:04" + }, + { + "id": "0arolt1v2tp9mzh2ah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T09:00:05", + "amountCrypto": 0.00008476, + "pricePerUnit": 975734, + "totalCost": 82.7, + "fee": 0.29047436, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T09:00:05" + }, + { + "id": "kjt9xdmgw4pvicribq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T13:00:05", + "amountCrypto": 0.00008486, + "pricePerUnit": 974668, + "totalCost": 82.71, + "fee": 0.29049934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T13:00:05" + }, + { + "id": "gqeu708kum3ws9hn9p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T17:00:05", + "amountCrypto": 0.00008519, + "pricePerUnit": 970830, + "totalCost": 82.71, + "fee": 0.29048066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T17:00:05" + }, + { + "id": "qaprgwudf601bv2lb0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-17T21:00:05", + "amountCrypto": 0.00008505, + "pricePerUnit": 972459, + "totalCost": 82.71, + "fee": 0.2904899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-17T21:00:05" + }, + { + "id": "nsrhcxr3j5aqjc17vk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T01:00:05", + "amountCrypto": 0.00008503, + "pricePerUnit": 972664, + "totalCost": 82.71, + "fee": 0.29048281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T01:00:05" + }, + { + "id": "88outkdfj1n25hv1cj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T05:00:04", + "amountCrypto": 0.0000852, + "pricePerUnit": 970729, + "totalCost": 82.71, + "fee": 0.29048454, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T05:00:04" + }, + { + "id": "7wrjo942j3mkt7aik8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T09:00:05", + "amountCrypto": 0.00008462, + "pricePerUnit": 977323, + "totalCost": 82.7, + "fee": 0.29046684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T09:00:05" + }, + { + "id": "ezj2hbkfpyt85rc4mp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T13:00:05", + "amountCrypto": 0.00008537, + "pricePerUnit": 968806, + "totalCost": 82.71, + "fee": 0.29048755, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T13:00:05" + }, + { + "id": "qdi6cwuk6izlngaajj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T17:00:06", + "amountCrypto": 0.00008471, + "pricePerUnit": 976360, + "totalCost": 82.71, + "fee": 0.29048926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T17:00:06" + }, + { + "id": "vheehv5g0mbcd4j6tv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-18T21:00:04", + "amountCrypto": 0.00008794, + "pricePerUnit": 940427, + "totalCost": 82.7, + "fee": 0.29046712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-18T21:00:04" + }, + { + "id": "1d6fz90jfpw7sm8ryk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T01:00:05", + "amountCrypto": 0.00008742, + "pricePerUnit": 946036, + "totalCost": 82.7, + "fee": 0.29047174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T01:00:05" + }, + { + "id": "86d05g3ukboq4cqscc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T05:00:05", + "amountCrypto": 0.00008807, + "pricePerUnit": 939095, + "totalCost": 82.71, + "fee": 0.29048449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T05:00:05" + }, + { + "id": "n5v5ke4xn0vtnashuh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T09:00:07", + "amountCrypto": 0.00008759, + "pricePerUnit": 944261, + "totalCost": 82.71, + "fee": 0.29049054, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T09:00:07" + }, + { + "id": "4krzrmgzcurjlrt42x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T13:00:07", + "amountCrypto": 0.00008738, + "pricePerUnit": 946483, + "totalCost": 82.7, + "fee": 0.29047602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T13:00:07" + }, + { + "id": "u2dyg7t6mideny89th", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T17:00:06", + "amountCrypto": 0.00008838, + "pricePerUnit": 935831, + "totalCost": 82.71, + "fee": 0.29049379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T17:00:06" + }, + { + "id": "k4xkpo2uf9xjzoo9yf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-19T21:00:04", + "amountCrypto": 0.00008664, + "pricePerUnit": 954545, + "totalCost": 82.7, + "fee": 0.29046932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-19T21:00:04" + }, + { + "id": "webqr6jm1xf1gb2xp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T01:00:05", + "amountCrypto": 0.00008701, + "pricePerUnit": 950568, + "totalCost": 82.71, + "fee": 0.29049441, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T01:00:05" + }, + { + "id": "gx73ycw4w2iejenz0b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T05:00:04", + "amountCrypto": 0.00008709, + "pricePerUnit": 949652, + "totalCost": 82.71, + "fee": 0.29048131, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T05:00:04" + }, + { + "id": "j011ogb84gbdnm2bk5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T09:00:05", + "amountCrypto": 0.00008699, + "pricePerUnit": 950705, + "totalCost": 82.7, + "fee": 0.2904695, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T09:00:05" + }, + { + "id": "93ntvpqe8spxjabl5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T13:00:04", + "amountCrypto": 0.0000872, + "pricePerUnit": 948510, + "totalCost": 82.71, + "fee": 0.29049845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T13:00:04" + }, + { + "id": "tpiqoiqxskcpwayhle", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T17:00:05", + "amountCrypto": 0.00008723, + "pricePerUnit": 948113, + "totalCost": 82.7, + "fee": 0.29047676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T17:00:05" + }, + { + "id": "pp7cn5aonktjk37jzt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-20T21:00:04", + "amountCrypto": 0.0000871, + "pricePerUnit": 949566, + "totalCost": 82.71, + "fee": 0.29048836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-20T21:00:04" + }, + { + "id": "hbrk21pagjazfcabva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T01:00:04", + "amountCrypto": 0.0000869, + "pricePerUnit": 951749, + "totalCost": 82.71, + "fee": 0.29048762, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T01:00:04" + }, + { + "id": "ztdp3jcehpw3mfc8nq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T05:00:04", + "amountCrypto": 0.00008693, + "pricePerUnit": 951376, + "totalCost": 82.7, + "fee": 0.29047402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T05:00:04" + }, + { + "id": "b2qnm8zuh18966abbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T09:00:04", + "amountCrypto": 0.00008702, + "pricePerUnit": 950431, + "totalCost": 82.71, + "fee": 0.29048592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T09:00:04" + }, + { + "id": "js8u5s1036dvtir2yu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T13:00:05", + "amountCrypto": 0.00008687, + "pricePerUnit": 952022, + "totalCost": 82.7, + "fee": 0.29047063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T13:00:05" + }, + { + "id": "52wl9vxi9hy18pu24o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T17:00:04", + "amountCrypto": 0.00008698, + "pricePerUnit": 950854, + "totalCost": 82.71, + "fee": 0.29048162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T17:00:04" + }, + { + "id": "unvqxesjr7keesj7jr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-21T21:00:05", + "amountCrypto": 0.00008693, + "pricePerUnit": 951400, + "totalCost": 82.71, + "fee": 0.29048135, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-21T21:00:05" + }, + { + "id": "lvnw7496b7nl8zbin0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T01:00:05", + "amountCrypto": 0.00008714, + "pricePerUnit": 949064, + "totalCost": 82.7, + "fee": 0.29046812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T01:00:05" + }, + { + "id": "0u1nzw45du0b0mx7cj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T05:00:04", + "amountCrypto": 0.00008807, + "pricePerUnit": 939046, + "totalCost": 82.7, + "fee": 0.29046933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T05:00:04" + }, + { + "id": "1ho0uk0k89hp43wj3i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T09:00:06", + "amountCrypto": 0.00008821, + "pricePerUnit": 937555, + "totalCost": 82.7, + "fee": 0.29046914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T09:00:06" + }, + { + "id": "v9lssehn6xavs24l6u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T13:00:06", + "amountCrypto": 0.00008884, + "pricePerUnit": 930952, + "totalCost": 82.71, + "fee": 0.29048336, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T13:00:06" + }, + { + "id": "qnvhgt7vx7g0kh00fv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T17:00:05", + "amountCrypto": 0.00008889, + "pricePerUnit": 930381, + "totalCost": 82.7, + "fee": 0.29046864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T17:00:05" + }, + { + "id": "1yyvykjxsma5s9p2rh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-22T21:00:05", + "amountCrypto": 0.00009119, + "pricePerUnit": 906935, + "totalCost": 82.7, + "fee": 0.29047503, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-22T21:00:05" + }, + { + "id": "pbtwmku8ts44nu9cfn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T01:00:06", + "amountCrypto": 0.00009153, + "pricePerUnit": 903563, + "totalCost": 82.7, + "fee": 0.29047404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T01:00:06" + }, + { + "id": "gyfzgw5byd1h3lpggu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T05:00:04", + "amountCrypto": 0.00009071, + "pricePerUnit": 911795, + "totalCost": 82.71, + "fee": 0.29049442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T05:00:04" + }, + { + "id": "s2pvisrh8yfnlyeg7x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T09:00:05", + "amountCrypto": 0.00009151, + "pricePerUnit": 903785, + "totalCost": 82.71, + "fee": 0.29048192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T09:00:05" + }, + { + "id": "pvp72m2nu87ufqn7kw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T13:00:06", + "amountCrypto": 0.00009311, + "pricePerUnit": 888226, + "totalCost": 82.7, + "fee": 0.29047264, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T13:00:06" + }, + { + "id": "16w1bt1l3wa91uh9ew", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T17:00:05", + "amountCrypto": 0.00009177, + "pricePerUnit": 901202, + "totalCost": 82.7, + "fee": 0.29047469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T17:00:05" + }, + { + "id": "ed5tfajs3m81p94bxo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-23T21:00:05", + "amountCrypto": 0.00009211, + "pricePerUnit": 897900, + "totalCost": 82.71, + "fee": 0.29048263, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-23T21:00:05" + }, + { + "id": "2uk14fshipnp4zgz6u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T01:00:04", + "amountCrypto": 0.0000905, + "pricePerUnit": 913909, + "totalCost": 82.71, + "fee": 0.29049386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T01:00:04" + }, + { + "id": "um3kmm6iaioo7720ez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T05:00:04", + "amountCrypto": 0.00009104, + "pricePerUnit": 908500, + "totalCost": 82.71, + "fee": 0.29049764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T05:00:04" + }, + { + "id": "cpf6v3ph6twk8fg1o6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T09:00:07", + "amountCrypto": 0.00009032, + "pricePerUnit": 915690, + "totalCost": 82.71, + "fee": 0.29048106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T09:00:07" + }, + { + "id": "60oanusafrenrt1kvd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T13:00:07", + "amountCrypto": 0.00009001, + "pricePerUnit": 918878, + "totalCost": 82.71, + "fee": 0.29049191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T13:00:07" + }, + { + "id": "r5qwth4tenlg9i6bie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T17:00:06", + "amountCrypto": 0.00009045, + "pricePerUnit": 914385, + "totalCost": 82.71, + "fee": 0.29048458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T17:00:06" + }, + { + "id": "iewsqlmw6astzfwdhx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-24T21:00:05", + "amountCrypto": 0.00009093, + "pricePerUnit": 909567, + "totalCost": 82.71, + "fee": 0.29048741, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-24T21:00:05" + }, + { + "id": "ushf250s0du9900bfm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T01:00:05", + "amountCrypto": 0.00009014, + "pricePerUnit": 917531, + "totalCost": 82.71, + "fee": 0.29048501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T01:00:05" + }, + { + "id": "7jaewq0y4f5x1rgtfc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T05:00:04", + "amountCrypto": 0.00009031, + "pricePerUnit": 915758, + "totalCost": 82.7, + "fee": 0.29047047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T05:00:04" + }, + { + "id": "qsc4u9vcjvip1zr9qx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T09:00:05", + "amountCrypto": 0.00009013, + "pricePerUnit": 917585, + "totalCost": 82.7, + "fee": 0.29046987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T09:00:05" + }, + { + "id": "d708hg5sgm5eoolpw7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T13:00:04", + "amountCrypto": 0.00009035, + "pricePerUnit": 915420, + "totalCost": 82.71, + "fee": 0.29049186, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T13:00:04" + }, + { + "id": "vgqap246u29mlp8n4x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T17:00:05", + "amountCrypto": 0.00009059, + "pricePerUnit": 912980, + "totalCost": 82.71, + "fee": 0.29048716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T17:00:05" + }, + { + "id": "238pq4qpllgkb2nacs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-25T21:00:04", + "amountCrypto": 0.00009031, + "pricePerUnit": 915788, + "totalCost": 82.7, + "fee": 0.29047998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-25T21:00:04" + }, + { + "id": "vdojbhq9q5altifrdw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T01:00:07", + "amountCrypto": 0.00009033, + "pricePerUnit": 915572, + "totalCost": 82.7, + "fee": 0.29047578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T01:00:07" + }, + { + "id": "fp46sj4gtlx18e4i1j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T05:00:07", + "amountCrypto": 0.00009013, + "pricePerUnit": 917645, + "totalCost": 82.71, + "fee": 0.29048887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T05:00:07" + }, + { + "id": "z16jz0ppayinexqvlq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T09:00:06", + "amountCrypto": 0.00009003, + "pricePerUnit": 918688, + "totalCost": 82.71, + "fee": 0.29049637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T09:00:06" + }, + { + "id": "ly3r961y7rg86qvguu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T13:00:06", + "amountCrypto": 0.00008781, + "pricePerUnit": 941891, + "totalCost": 82.71, + "fee": 0.29048924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T13:00:06" + }, + { + "id": "v3e5xy6v7i59ygwpeu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T17:00:06", + "amountCrypto": 0.00008736, + "pricePerUnit": 946670, + "totalCost": 82.7, + "fee": 0.29046691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T17:00:06" + }, + { + "id": "19qlzs3zgq8glam204", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-26T21:00:06", + "amountCrypto": 0.0000859, + "pricePerUnit": 962761, + "totalCost": 82.7, + "fee": 0.29046718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-26T21:00:06" + }, + { + "id": "f18sp5mty2jr7lazm9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T01:00:04", + "amountCrypto": 0.00008638, + "pricePerUnit": 957497, + "totalCost": 82.71, + "fee": 0.29049325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T01:00:04" + }, + { + "id": "b9fo6qfvn9w4qr5zg7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T05:00:05", + "amountCrypto": 0.00008638, + "pricePerUnit": 957482, + "totalCost": 82.71, + "fee": 0.2904887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T05:00:05" + }, + { + "id": "2cj2l79rp2wuh2emya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T09:00:05", + "amountCrypto": 0.00008664, + "pricePerUnit": 954635, + "totalCost": 82.71, + "fee": 0.29049671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T09:00:05" + }, + { + "id": "crrn8e1danwp4d3ubf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T13:00:04", + "amountCrypto": 0.00008655, + "pricePerUnit": 955570, + "totalCost": 82.7, + "fee": 0.29047917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T13:00:04" + }, + { + "id": "4w0ixakr3gsomyh7kq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T17:00:04", + "amountCrypto": 0.00008636, + "pricePerUnit": 957666, + "totalCost": 82.7, + "fee": 0.29047725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T17:00:04" + }, + { + "id": "6ysorns0eukqurunar", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-27T21:00:05", + "amountCrypto": 0.00008619, + "pricePerUnit": 959528, + "totalCost": 82.7, + "fee": 0.29046911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-27T21:00:05" + }, + { + "id": "6edvrzvfm2u743wdki", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T01:00:06", + "amountCrypto": 0.00008575, + "pricePerUnit": 964542, + "totalCost": 82.71, + "fee": 0.29049636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T01:00:06" + }, + { + "id": "klltbovaieee04xll8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T05:00:05", + "amountCrypto": 0.0000857, + "pricePerUnit": 965008, + "totalCost": 82.7, + "fee": 0.29046724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T05:00:05" + }, + { + "id": "uja0731d3r0ddco14l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T09:00:05", + "amountCrypto": 0.00008503, + "pricePerUnit": 972678, + "totalCost": 82.71, + "fee": 0.29048699, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T09:00:05" + }, + { + "id": "n5jtfh0ut20y1vnpco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T13:00:05", + "amountCrypto": 0.00008483, + "pricePerUnit": 974967, + "totalCost": 82.71, + "fee": 0.29048573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T13:00:05" + }, + { + "id": "gkv0pfkvbeh6esrjmo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T17:00:04", + "amountCrypto": 0.00008532, + "pricePerUnit": 969393, + "totalCost": 82.71, + "fee": 0.29049332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T17:00:04" + }, + { + "id": "omcz2l5cwuckudrysf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-28T21:00:05", + "amountCrypto": 0.00008632, + "pricePerUnit": 958169, + "totalCost": 82.71, + "fee": 0.29049521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-28T21:00:05" + }, + { + "id": "8izerevtyvvo1bf7jd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T01:00:05", + "amountCrypto": 0.00008606, + "pricePerUnit": 961006, + "totalCost": 82.7, + "fee": 0.29047774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T01:00:05" + }, + { + "id": "x68eggbk9mgi0lw023", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T05:00:05", + "amountCrypto": 0.00008525, + "pricePerUnit": 970154, + "totalCost": 82.71, + "fee": 0.29048284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T05:00:05" + }, + { + "id": "vljtg6p64ijuzwun5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T09:00:06", + "amountCrypto": 0.00008556, + "pricePerUnit": 966687, + "totalCost": 82.71, + "fee": 0.29049728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T09:00:06" + }, + { + "id": "4vt16y9yfr96zq72jn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T13:00:08", + "amountCrypto": 0.00008551, + "pricePerUnit": 967206, + "totalCost": 82.71, + "fee": 0.29048339, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T13:00:08" + }, + { + "id": "ay5ub4kap2yl8lra80", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T17:00:10", + "amountCrypto": 0.00008417, + "pricePerUnit": 982597, + "totalCost": 82.71, + "fee": 0.2904813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T17:00:10" + }, + { + "id": "d4p16bliz04ruf7rab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-29T21:00:05", + "amountCrypto": 0.00008358, + "pricePerUnit": 989554, + "totalCost": 82.71, + "fee": 0.29048739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4403", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-29T21:00:05" + }, + { + "id": "9e5a0e5yxtrr3ytmly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T01:00:05", + "amountCrypto": 0.00008329, + "pricePerUnit": 993000, + "totalCost": 82.71, + "fee": 0.29048756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T01:00:05" + }, + { + "id": "cusle58cscna2sbsli", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T05:00:06", + "amountCrypto": 0.00008271, + "pricePerUnit": 999995, + "totalCost": 82.71, + "fee": 0.29049675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T05:00:06" + }, + { + "id": "a2xlxpuu2s5wnfovbb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T09:00:06", + "amountCrypto": 0.00008297, + "pricePerUnit": 996807, + "totalCost": 82.71, + "fee": 0.29048091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T09:00:06" + }, + { + "id": "6xjw5oyngvyngpe6p9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T13:00:05", + "amountCrypto": 0.00008288, + "pricePerUnit": 997887, + "totalCost": 82.7, + "fee": 0.2904802, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T13:00:05" + }, + { + "id": "6qm0f329vdgeirytug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T17:00:06", + "amountCrypto": 0.00008325, + "pricePerUnit": 993426, + "totalCost": 82.7, + "fee": 0.29047261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T17:00:06" + }, + { + "id": "qbb0qco73lbi94vl37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-30T21:00:05", + "amountCrypto": 0.00008311, + "pricePerUnit": 995099, + "totalCost": 82.7, + "fee": 0.29047248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-30T21:00:05" + }, + { + "id": "rgimfzqc3h0uer3j9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T01:00:05", + "amountCrypto": 0.0000842, + "pricePerUnit": 982198, + "totalCost": 82.7, + "fee": 0.29046684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T01:00:05" + }, + { + "id": "17u0nlo8r72z6mxoe3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T05:00:05", + "amountCrypto": 0.00008409, + "pricePerUnit": 983576, + "totalCost": 82.71, + "fee": 0.29049435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4411", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T05:00:05" + }, + { + "id": "meb8irfgstewc2gwo4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T09:00:09", + "amountCrypto": 0.00008373, + "pricePerUnit": 987774, + "totalCost": 82.71, + "fee": 0.29048526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T09:00:09" + }, + { + "id": "52732vsjz44rp5evzn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T13:00:07", + "amountCrypto": 0.00008439, + "pricePerUnit": 980019, + "totalCost": 82.7, + "fee": 0.29047643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T13:00:07" + }, + { + "id": "ufnmrjqulltstvvd8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T17:00:06", + "amountCrypto": 0.00008307, + "pricePerUnit": 995574, + "totalCost": 82.7, + "fee": 0.29047127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T17:00:06" + }, + { + "id": "tca546rtdm1juccuw2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-01-31T21:00:05", + "amountCrypto": 0.00008326, + "pricePerUnit": 993365, + "totalCost": 82.71, + "fee": 0.29048966, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-01-31T21:00:05" + }, + { + "id": "phunyjj5d3lyibcc2i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T01:00:06", + "amountCrypto": 0.00008443, + "pricePerUnit": 979614, + "totalCost": 82.71, + "fee": 0.29049402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T01:00:06" + }, + { + "id": "ro35dlvfomoc2ckxfd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T05:00:05", + "amountCrypto": 0.00008571, + "pricePerUnit": 964979, + "totalCost": 82.71, + "fee": 0.2904924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T05:00:05" + }, + { + "id": "88bbj85msgbd4jseqo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T09:00:06", + "amountCrypto": 0.00008501, + "pricePerUnit": 972890, + "totalCost": 82.71, + "fee": 0.29048197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T09:00:06" + }, + { + "id": "urs70yjc8m37uejdip", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T13:00:06", + "amountCrypto": 0.00008526, + "pricePerUnit": 970096, + "totalCost": 82.71, + "fee": 0.29049955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T13:00:06" + }, + { + "id": "exvhzgcbsmip83zo7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T17:00:05", + "amountCrypto": 0.00008467, + "pricePerUnit": 976782, + "totalCost": 82.7, + "fee": 0.29047759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T17:00:05" + }, + { + "id": "t77ulcykya4hy1twzg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-01T21:00:05", + "amountCrypto": 0.00008366, + "pricePerUnit": 988575, + "totalCost": 82.7, + "fee": 0.29047777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-01T21:00:05" + }, + { + "id": "betxq0lhmd1me55lfk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T01:00:05", + "amountCrypto": 0.00008373, + "pricePerUnit": 987711, + "totalCost": 82.7, + "fee": 0.29046673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T01:00:05" + }, + { + "id": "9edeehu4rfj8q8hok5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T05:00:06", + "amountCrypto": 0.00008385, + "pricePerUnit": 986366, + "totalCost": 82.71, + "fee": 0.29048692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T05:00:06" + }, + { + "id": "jbr82ytptzvgmyen2x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T09:00:06", + "amountCrypto": 0.00008374, + "pricePerUnit": 987691, + "totalCost": 82.71, + "fee": 0.29049554, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T09:00:06" + }, + { + "id": "2k5xnmed5pyhm3kbmg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T13:00:06", + "amountCrypto": 0.00008358, + "pricePerUnit": 989505, + "totalCost": 82.7, + "fee": 0.29047301, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T13:00:06" + }, + { + "id": "zp5f9lk7up5p6gcdrm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T17:00:05", + "amountCrypto": 0.0000828, + "pricePerUnit": 998834, + "totalCost": 82.7, + "fee": 0.29047521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T17:00:05" + }, + { + "id": "8rnzg6umzj5o1e6l41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-02T21:00:05", + "amountCrypto": 0.00008308, + "pricePerUnit": 995527, + "totalCost": 82.71, + "fee": 0.29049252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-02T21:00:05" + }, + { + "id": "ed6pu24bkfr6dtbxx7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T01:00:04", + "amountCrypto": 0.00008277, + "pricePerUnit": 999172, + "totalCost": 82.7, + "fee": 0.29046823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T01:00:04" + }, + { + "id": "brpmr393d0m1wfegk4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T05:00:05", + "amountCrypto": 0.00008282, + "pricePerUnit": 998586, + "totalCost": 82.7, + "fee": 0.29047323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T05:00:05" + }, + { + "id": "7l1ksy4n9tcze02tyc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T09:00:05", + "amountCrypto": 0.00008322, + "pricePerUnit": 993857, + "totalCost": 82.71, + "fee": 0.29049391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T09:00:05" + }, + { + "id": "ts7b8y5ulko03o59g9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T13:00:04", + "amountCrypto": 0.00008334, + "pricePerUnit": 992396, + "totalCost": 82.71, + "fee": 0.29048514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T13:00:04" + }, + { + "id": "n6mbth7qw9etfiw1ew", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T17:00:05", + "amountCrypto": 0.00008309, + "pricePerUnit": 995424, + "totalCost": 82.71, + "fee": 0.29049743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T17:00:05" + }, + { + "id": "yf54uo0na2z22rfqcg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-03T21:00:04", + "amountCrypto": 0.00008314, + "pricePerUnit": 994768, + "totalCost": 82.71, + "fee": 0.29048068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-03T21:00:04" + }, + { + "id": "fvztxcrjey168r8abx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T01:00:05", + "amountCrypto": 0.0000833, + "pricePerUnit": 992920, + "totalCost": 82.71, + "fee": 0.29049903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T01:00:05" + }, + { + "id": "wn4ixo4k9g4wn08d7w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T05:00:06", + "amountCrypto": 0.00008323, + "pricePerUnit": 993731, + "totalCost": 82.71, + "fee": 0.29049198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T05:00:06" + }, + { + "id": "mk32h6qv1b4h1jb86y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T09:00:05", + "amountCrypto": 0.00008369, + "pricePerUnit": 988209, + "totalCost": 82.7, + "fee": 0.29047435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T09:00:05" + }, + { + "id": "vfjl0jo4isea4aaoc1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T13:00:05", + "amountCrypto": 0.00008325, + "pricePerUnit": 993477, + "totalCost": 82.71, + "fee": 0.29048752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T13:00:05" + }, + { + "id": "wn1y8m9k4etiizh8kv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T17:00:05", + "amountCrypto": 0.00008338, + "pricePerUnit": 991947, + "totalCost": 82.71, + "fee": 0.29049307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T17:00:05" + }, + { + "id": "4ktmjrgr0pb8pl08zl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-04T21:00:04", + "amountCrypto": 0.00008395, + "pricePerUnit": 985122, + "totalCost": 82.7, + "fee": 0.29046656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-04T21:00:04" + }, + { + "id": "4ft2wxs0xr5c9o4cjj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T01:00:05", + "amountCrypto": 0.00008399, + "pricePerUnit": 984744, + "totalCost": 82.71, + "fee": 0.29049345, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T01:00:05" + }, + { + "id": "xjfa850otnk4zn769p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T05:00:05", + "amountCrypto": 0.00008378, + "pricePerUnit": 987120, + "totalCost": 82.7, + "fee": 0.29046628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T05:00:05" + }, + { + "id": "52q82nw3nt5765vhr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T09:00:06", + "amountCrypto": 0.000083, + "pricePerUnit": 996442, + "totalCost": 82.7, + "fee": 0.29047953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T09:00:06" + }, + { + "id": "2hoibjtib6gdrqnitv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T13:00:05", + "amountCrypto": 0.00008245, + "pricePerUnit": 1003062, + "totalCost": 82.7, + "fee": 0.29047172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T13:00:05" + }, + { + "id": "00xyil6sc8sidvfzh2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T17:00:05", + "amountCrypto": 0.00008326, + "pricePerUnit": 993394, + "totalCost": 82.71, + "fee": 0.29049814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T17:00:05" + }, + { + "id": "0y1ohss3xrldl0mdwy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-05T21:00:05", + "amountCrypto": 0.0000832, + "pricePerUnit": 994053, + "totalCost": 82.71, + "fee": 0.29048137, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-05T21:00:05" + }, + { + "id": "aeitw4ofvfacc5fzr6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T01:00:07", + "amountCrypto": 0.00008342, + "pricePerUnit": 991394, + "totalCost": 82.7, + "fee": 0.29047041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T01:00:07" + }, + { + "id": "3yk9dzmd0a2vsw5vi0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T05:00:06", + "amountCrypto": 0.00008299, + "pricePerUnit": 996562, + "totalCost": 82.7, + "fee": 0.29047951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T05:00:06" + }, + { + "id": "ch2tlnthai3pcraycm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T09:00:06", + "amountCrypto": 0.00008293, + "pricePerUnit": 997242, + "totalCost": 82.7, + "fee": 0.29046757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T09:00:06" + }, + { + "id": "foutqs3dbk1u8vpl3y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T13:00:06", + "amountCrypto": 0.00008307, + "pricePerUnit": 995633, + "totalCost": 82.71, + "fee": 0.29048848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T13:00:06" + }, + { + "id": "idb3i6wh4dk4h5cfgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T17:00:06", + "amountCrypto": 0.00008239, + "pricePerUnit": 1003825, + "totalCost": 82.71, + "fee": 0.29048113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T17:00:06" + }, + { + "id": "hobn8rl7yktt34a10c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-06T21:00:05", + "amountCrypto": 0.00008221, + "pricePerUnit": 1005996, + "totalCost": 82.7, + "fee": 0.29047337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-06T21:00:05" + }, + { + "id": "s2jy0jghp4gbqft430", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T01:00:05", + "amountCrypto": 0.00008263, + "pricePerUnit": 1000965, + "totalCost": 82.71, + "fee": 0.29049728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T01:00:05" + }, + { + "id": "rz29t12qmia9xstlvs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T05:00:05", + "amountCrypto": 0.00008315, + "pricePerUnit": 994624, + "totalCost": 82.7, + "fee": 0.29047356, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T05:00:05" + }, + { + "id": "qxm0m7wnc4kqo9um6m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T09:00:06", + "amountCrypto": 0.00008301, + "pricePerUnit": 996300, + "totalCost": 82.7, + "fee": 0.29047313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T09:00:06" + }, + { + "id": "oqxrpgguo19jorgvwd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T13:00:06", + "amountCrypto": 0.00008298, + "pricePerUnit": 996662, + "totalCost": 82.7, + "fee": 0.29047366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T13:00:06" + }, + { + "id": "1efxd35y1nufh1hinn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T17:00:06", + "amountCrypto": 0.00008271, + "pricePerUnit": 999981, + "totalCost": 82.71, + "fee": 0.29049268, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T17:00:06" + }, + { + "id": "u4ctg2q06z6a73baog", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-07T21:00:05", + "amountCrypto": 0.00008165, + "pricePerUnit": 1012929, + "totalCost": 82.71, + "fee": 0.29048293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-07T21:00:05" + }, + { + "id": "4r6o2zp1jjlx7ywgyw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T01:00:05", + "amountCrypto": 0.00008045, + "pricePerUnit": 1028000, + "totalCost": 82.7, + "fee": 0.29047221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4458", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T01:00:05" + }, + { + "id": "ec7fwm26103gjn5w7r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T05:00:05", + "amountCrypto": 0.00007997, + "pricePerUnit": 1034200, + "totalCost": 82.7, + "fee": 0.29048054, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4459", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T05:00:05" + }, + { + "id": "gxj5mp2tt1d7zd3tfv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T09:00:06", + "amountCrypto": 0.00008, + "pricePerUnit": 1033855, + "totalCost": 82.71, + "fee": 0.29049258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4460", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T09:00:06" + }, + { + "id": "k0q1q0s9zslpoxr2mb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T13:00:07", + "amountCrypto": 0.00007966, + "pricePerUnit": 1038264, + "totalCost": 82.71, + "fee": 0.29049156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T13:00:07" + }, + { + "id": "m2pmxn8g63goutc92n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T17:00:07", + "amountCrypto": 0.00007778, + "pricePerUnit": 1063387, + "totalCost": 82.71, + "fee": 0.29049904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T17:00:07" + }, + { + "id": "h8ocpc4hdljrnl2e4k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-08T21:00:06", + "amountCrypto": 0.00007802, + "pricePerUnit": 1060070, + "totalCost": 82.71, + "fee": 0.29048647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-08T21:00:06" + }, + { + "id": "bro5gogvncolwvkmeo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T01:00:06", + "amountCrypto": 0.00007789, + "pricePerUnit": 1061768, + "totalCost": 82.7, + "fee": 0.29046697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T01:00:06" + }, + { + "id": "s2rk6v13utzhoe68xj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T05:00:04", + "amountCrypto": 0.00007663, + "pricePerUnit": 1079341, + "totalCost": 82.71, + "fee": 0.29049785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T05:00:04" + }, + { + "id": "sckrlvw1bfkpl7w2ak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T09:00:06", + "amountCrypto": 0.0000766, + "pricePerUnit": 1079760, + "totalCost": 82.71, + "fee": 0.29049685, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T09:00:06" + }, + { + "id": "6awleln28btjfr2mtz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T13:00:04", + "amountCrypto": 0.00007521, + "pricePerUnit": 1099698, + "totalCost": 82.71, + "fee": 0.29049218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T13:00:04" + }, + { + "id": "5sn8v4s9abbrnxv6mp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T17:00:04", + "amountCrypto": 0.00007512, + "pricePerUnit": 1101031, + "totalCost": 82.71, + "fee": 0.29049626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T17:00:04" + }, + { + "id": "qm9tipif95ensfg805", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-09T21:00:05", + "amountCrypto": 0.00007439, + "pricePerUnit": 1111842, + "totalCost": 82.71, + "fee": 0.29049794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-09T21:00:05" + }, + { + "id": "m65hejhptyd79sh3gp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T01:00:05", + "amountCrypto": 0.00007501, + "pricePerUnit": 1102653, + "totalCost": 82.71, + "fee": 0.2904982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T01:00:05" + }, + { + "id": "mq0p7ykwmvy9fq29q0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T05:00:05", + "amountCrypto": 0.00007465, + "pricePerUnit": 1107974, + "totalCost": 82.71, + "fee": 0.29049911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T05:00:05" + }, + { + "id": "y6kvboe0l58y5ri9tw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T09:00:08", + "amountCrypto": 0.00007497, + "pricePerUnit": 1103192, + "totalCost": 82.71, + "fee": 0.29048522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T09:00:08" + }, + { + "id": "q0wxl0y1aodyuhncyk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T13:00:04", + "amountCrypto": 0.00007514, + "pricePerUnit": 1100672, + "totalCost": 82.7, + "fee": 0.29047886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T13:00:04" + }, + { + "id": "uq3ami0yxrcobbi7na", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T17:00:05", + "amountCrypto": 0.00007497, + "pricePerUnit": 1103220, + "totalCost": 82.71, + "fee": 0.29049259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T17:00:05" + }, + { + "id": "p4bp0gynkauhmpd16z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-10T21:00:04", + "amountCrypto": 0.00007451, + "pricePerUnit": 1110000, + "totalCost": 82.71, + "fee": 0.2904845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-10T21:00:04" + }, + { + "id": "bi6hhp8u8p9qed05dl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T01:00:04", + "amountCrypto": 0.00007419, + "pricePerUnit": 1114743, + "totalCost": 82.7, + "fee": 0.29047285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T01:00:04" + }, + { + "id": "nra116q09umgddnha5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T05:00:05", + "amountCrypto": 0.00007327, + "pricePerUnit": 1128835, + "totalCost": 82.71, + "fee": 0.29049729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T05:00:05" + }, + { + "id": "rym255ghx3hknjl8b1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T09:00:05", + "amountCrypto": 0.00007353, + "pricePerUnit": 1124805, + "totalCost": 82.71, + "fee": 0.29048735, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T09:00:05" + }, + { + "id": "na4r5ts8bxo1j7gj17", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T13:00:05", + "amountCrypto": 0.00007331, + "pricePerUnit": 1128102, + "totalCost": 82.7, + "fee": 0.29046714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T13:00:05" + }, + { + "id": "e63hekprao9zj0b2tv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T17:00:04", + "amountCrypto": 0.00007369, + "pricePerUnit": 1122324, + "totalCost": 82.7, + "fee": 0.29047732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T17:00:04" + }, + { + "id": "crlxm0lujjne6py2px", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-11T21:00:05", + "amountCrypto": 0.0000735, + "pricePerUnit": 1125176, + "totalCost": 82.7, + "fee": 0.29046461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-11T21:00:05" + }, + { + "id": "dpuxh9pt95mf3solzy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T01:00:04", + "amountCrypto": 0.00007352, + "pricePerUnit": 1125000, + "totalCost": 82.71, + "fee": 0.2904982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T01:00:04" + }, + { + "id": "lx93tjfsvtdn4nx7kx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T05:00:04", + "amountCrypto": 0.00007349, + "pricePerUnit": 1125372, + "totalCost": 82.7, + "fee": 0.29047568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T05:00:04" + }, + { + "id": "4w671vlao0arqi4jkn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T09:00:06", + "amountCrypto": 0.00007334, + "pricePerUnit": 1127715, + "totalCost": 82.71, + "fee": 0.29048632, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T09:00:06" + }, + { + "id": "k7czontzg5dcddw9yr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T13:00:06", + "amountCrypto": 0.00007396, + "pricePerUnit": 1118206, + "totalCost": 82.7, + "fee": 0.29047191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T13:00:06" + }, + { + "id": "eeir8fa90pn4poozqc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T17:00:05", + "amountCrypto": 0.00007074, + "pricePerUnit": 1169191, + "totalCost": 82.71, + "fee": 0.29049318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T17:00:05" + }, + { + "id": "me4e66gwd5jzag8vpr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-12T21:00:04", + "amountCrypto": 0.00007128, + "pricePerUnit": 1160337, + "totalCost": 82.71, + "fee": 0.29049406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-12T21:00:04" + }, + { + "id": "o9mkfidlcohnmid2s0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T01:00:05", + "amountCrypto": 0.00007069, + "pricePerUnit": 1170042, + "totalCost": 82.71, + "fee": 0.29049914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T01:00:05" + }, + { + "id": "qizbh2ca5ojvr02en7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T05:00:04", + "amountCrypto": 0.00007075, + "pricePerUnit": 1168905, + "totalCost": 82.7, + "fee": 0.29046318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T05:00:04" + }, + { + "id": "ilr2y7n08nvcgtf4sd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T09:00:06", + "amountCrypto": 0.00007063, + "pricePerUnit": 1170997, + "totalCost": 82.71, + "fee": 0.29048948, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T09:00:06" + }, + { + "id": "qf2m79mwak7hvxpd1a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T13:00:09", + "amountCrypto": 0.00007063, + "pricePerUnit": 1170909, + "totalCost": 82.7, + "fee": 0.29046765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T13:00:09" + }, + { + "id": "iuxbi5nt6rwwjgc9wv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T17:00:11", + "amountCrypto": 0.00007192, + "pricePerUnit": 1150001, + "totalCost": 82.71, + "fee": 0.29049143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T17:00:11" + }, + { + "id": "qzh1lo4hkrsrgulobg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-13T21:00:06", + "amountCrypto": 0.00007099, + "pricePerUnit": 1164989, + "totalCost": 82.7, + "fee": 0.2904721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-13T21:00:06" + }, + { + "id": "qba2nemi6hgfwk5e27", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-14T01:00:49", + "amountCrypto": 0.00007051, + "pricePerUnit": 1173000, + "totalCost": 82.71, + "fee": 0.29049198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-14T01:00:49" + }, + { + "id": "dqe7b3w6sh8469y7m8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-14T09:00:06", + "amountCrypto": 0.00007015, + "pricePerUnit": 1179000, + "totalCost": 82.71, + "fee": 0.29048713, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-14T09:00:06" + }, + { + "id": "oikb12mxupkam0bx9c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-14T13:00:05", + "amountCrypto": 0.00006796, + "pricePerUnit": 1216999, + "totalCost": 82.71, + "fee": 0.29048855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-14T13:00:05" + }, + { + "id": "fu2q01ugs3f9j5ojag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-14T17:00:06", + "amountCrypto": 0.00006778, + "pricePerUnit": 1220178, + "totalCost": 82.7, + "fee": 0.29047595, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-14T17:00:06" + }, + { + "id": "uemn0nslukcsoy731i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-14T21:00:05", + "amountCrypto": 0.00006784, + "pricePerUnit": 1219062, + "totalCost": 82.7, + "fee": 0.29046717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-14T21:00:05" + }, + { + "id": "czea7h71it83hyzg60", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T01:00:04", + "amountCrypto": 0.00006767, + "pricePerUnit": 1222211, + "totalCost": 82.71, + "fee": 0.29048773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T01:00:04" + }, + { + "id": "vmijkvzvt1v5dvi74v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T05:00:05", + "amountCrypto": 0.00006691, + "pricePerUnit": 1236000, + "totalCost": 82.7, + "fee": 0.29046574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T05:00:05" + }, + { + "id": "7x3n60apapib0ii0d7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T09:00:06", + "amountCrypto": 0.00006744, + "pricePerUnit": 1226265, + "totalCost": 82.7, + "fee": 0.29046066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T09:00:06" + }, + { + "id": "rxtapuuni2kw93arae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T13:00:08", + "amountCrypto": 0.00006687, + "pricePerUnit": 1236859, + "totalCost": 82.71, + "fee": 0.29049385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T13:00:08" + }, + { + "id": "zhz7v2zlzndt4ze0rj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T17:00:09", + "amountCrypto": 0.00006758, + "pricePerUnit": 1223821, + "totalCost": 82.71, + "fee": 0.29048353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T17:00:09" + }, + { + "id": "lsfzplqgaka0loiwer", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-15T21:00:06", + "amountCrypto": 0.00006751, + "pricePerUnit": 1225073, + "totalCost": 82.7, + "fee": 0.29047951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-15T21:00:06" + }, + { + "id": "cihi20rxjqcgfr3izn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T01:00:06", + "amountCrypto": 0.00006783, + "pricePerUnit": 1219356, + "totalCost": 82.71, + "fee": 0.2904944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T01:00:06" + }, + { + "id": "nxlyzgqa9eqkrfsyhg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T05:00:06", + "amountCrypto": 0.00006736, + "pricePerUnit": 1227787, + "totalCost": 82.7, + "fee": 0.29047618, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T05:00:06" + }, + { + "id": "rbtwkjoe9da7w1jg0m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T09:00:08", + "amountCrypto": 0.00006783, + "pricePerUnit": 1219319, + "totalCost": 82.71, + "fee": 0.29048558, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T09:00:08" + }, + { + "id": "hdj6iwwmxdayfdwyuv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T13:00:07", + "amountCrypto": 0.00006733, + "pricePerUnit": 1228378, + "totalCost": 82.71, + "fee": 0.29048657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4509", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T13:00:07" + }, + { + "id": "6c63243prdv07ll2qa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T17:00:07", + "amountCrypto": 0.0000677, + "pricePerUnit": 1221683, + "totalCost": 82.71, + "fee": 0.29049096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4510", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T17:00:07" + }, + { + "id": "zmx129ilgzmliz7yu6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-16T21:00:05", + "amountCrypto": 0.00006783, + "pricePerUnit": 1219283, + "totalCost": 82.7, + "fee": 0.290477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4511", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-16T21:00:05" + }, + { + "id": "itc2wfn5xw6wcwqety", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T01:00:04", + "amountCrypto": 0.00006727, + "pricePerUnit": 1229354, + "totalCost": 82.7, + "fee": 0.29045831, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4512", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T01:00:04" + }, + { + "id": "9a894s0r4y5wu9re6r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T05:00:05", + "amountCrypto": 0.00006742, + "pricePerUnit": 1226662, + "totalCost": 82.7, + "fee": 0.29046853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4513", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T05:00:05" + }, + { + "id": "nt2n4ztotxuiweovx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T09:00:06", + "amountCrypto": 0.00006761, + "pricePerUnit": 1223170, + "totalCost": 82.7, + "fee": 0.29045789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4514", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T09:00:06" + }, + { + "id": "8b8k008mrz4nph4oco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T13:00:05", + "amountCrypto": 0.0000679, + "pricePerUnit": 1218037, + "totalCost": 82.7, + "fee": 0.29047963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4515", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T13:00:05" + }, + { + "id": "xrjort24mb614e4z7e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T17:00:07", + "amountCrypto": 0.00006887, + "pricePerUnit": 1200916, + "totalCost": 82.71, + "fee": 0.29048796, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4516", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T17:00:07" + }, + { + "id": "ntkjk0hyqey54v9hlt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-17T21:00:05", + "amountCrypto": 0.00006829, + "pricePerUnit": 1211096, + "totalCost": 82.71, + "fee": 0.29048326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4517", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-17T21:00:05" + }, + { + "id": "0nv8vlaz803lfvrysg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T01:00:06", + "amountCrypto": 0.00006805, + "pricePerUnit": 1215299, + "totalCost": 82.7, + "fee": 0.29046693, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4518", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T01:00:06" + }, + { + "id": "txnigzbl7ul5c9jzsv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T05:00:06", + "amountCrypto": 0.00006816, + "pricePerUnit": 1213458, + "totalCost": 82.71, + "fee": 0.29049573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4519", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T05:00:06" + }, + { + "id": "v8ixxp02oppj1hqp7l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T09:00:05", + "amountCrypto": 0.00006792, + "pricePerUnit": 1217600, + "totalCost": 82.7, + "fee": 0.29046094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4520", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T09:00:05" + }, + { + "id": "3h9aq10du2rvb11oin", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T13:00:05", + "amountCrypto": 0.0000677, + "pricePerUnit": 1221714, + "totalCost": 82.71, + "fee": 0.29049833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4521", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T13:00:05" + }, + { + "id": "qbb9p8kxfwllwybls8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T17:00:06", + "amountCrypto": 0.00006776, + "pricePerUnit": 1220628, + "totalCost": 82.71, + "fee": 0.29049733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4522", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T17:00:06" + }, + { + "id": "mhvqfbf9uwoswc8xup", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-18T21:00:05", + "amountCrypto": 0.00006773, + "pricePerUnit": 1221091, + "totalCost": 82.7, + "fee": 0.29047886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4523", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-18T21:00:05" + }, + { + "id": "8evkwd82ule7er8xio", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T01:00:05", + "amountCrypto": 0.00006733, + "pricePerUnit": 1228262, + "totalCost": 82.7, + "fee": 0.29045914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4524", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T01:00:05" + }, + { + "id": "ooe0sp817qbp8b30pp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T05:00:07", + "amountCrypto": 0.00006737, + "pricePerUnit": 1227539, + "totalCost": 82.7, + "fee": 0.29046062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4525", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T05:00:07" + }, + { + "id": "crb76zhnn5po0mm5hf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T09:00:06", + "amountCrypto": 0.00006691, + "pricePerUnit": 1236075, + "totalCost": 82.71, + "fee": 0.29048337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4526", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T09:00:06" + }, + { + "id": "1e31lcr1vst2ld9vzi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T13:00:05", + "amountCrypto": 0.00006698, + "pricePerUnit": 1234706, + "totalCost": 82.7, + "fee": 0.29046521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4527", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T13:00:05" + }, + { + "id": "19jl8x2ompflcjrkl1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T17:00:06", + "amountCrypto": 0.00006707, + "pricePerUnit": 1233127, + "totalCost": 82.71, + "fee": 0.29048354, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4528", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T17:00:06" + }, + { + "id": "mj69jiryl23mj9sfd9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-19T21:00:05", + "amountCrypto": 0.00006758, + "pricePerUnit": 1223760, + "totalCost": 82.7, + "fee": 0.29046905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4529", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-19T21:00:05" + }, + { + "id": "tffyflqnzezkb0n282", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T01:00:04", + "amountCrypto": 0.00006763, + "pricePerUnit": 1222889, + "totalCost": 82.7, + "fee": 0.29047706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4530", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T01:00:04" + }, + { + "id": "crz5cpbms0agd17w7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T05:00:05", + "amountCrypto": 0.00006771, + "pricePerUnit": 1221519, + "totalCost": 82.71, + "fee": 0.29049487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4531", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T05:00:05" + }, + { + "id": "hsxxbzomsxa9dd7dzq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T09:00:05", + "amountCrypto": 0.00006747, + "pricePerUnit": 1225722, + "totalCost": 82.7, + "fee": 0.29046119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4532", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T09:00:05" + }, + { + "id": "pxq2kzh8mnmskegope", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T13:00:05", + "amountCrypto": 0.00006715, + "pricePerUnit": 1231712, + "totalCost": 82.71, + "fee": 0.2904963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4533", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T13:00:05" + }, + { + "id": "jbog3lvnui3ghfyb7t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T17:00:07", + "amountCrypto": 0.00006811, + "pricePerUnit": 1214304, + "totalCost": 82.71, + "fee": 0.29048501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4534", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T17:00:07" + }, + { + "id": "d3cxh93hpj0e7cm9lt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-20T21:00:06", + "amountCrypto": 0.00006736, + "pricePerUnit": 1227765, + "totalCost": 82.7, + "fee": 0.29047098, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4535", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-20T21:00:06" + }, + { + "id": "xjbqsztqazu2skkgdd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T01:00:04", + "amountCrypto": 0.00006731, + "pricePerUnit": 1228724, + "totalCost": 82.71, + "fee": 0.29048208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4536", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T01:00:04" + }, + { + "id": "yj5hl6k7haijnxcabp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T05:00:06", + "amountCrypto": 0.00006755, + "pricePerUnit": 1224392, + "totalCost": 82.71, + "fee": 0.29049005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4537", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T05:00:06" + }, + { + "id": "b5rl5ssx5s7hn88mj8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T09:00:07", + "amountCrypto": 0.00006804, + "pricePerUnit": 1215589, + "totalCost": 82.71, + "fee": 0.29049355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4538", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T09:00:07" + }, + { + "id": "ek4zubu4ze6by5b73b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T13:00:05", + "amountCrypto": 0.00006895, + "pricePerUnit": 1199500, + "totalCost": 82.71, + "fee": 0.29048248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4539", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T13:00:05" + }, + { + "id": "gqsvzjv1dfrigy82vp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T17:00:06", + "amountCrypto": 0.00006897, + "pricePerUnit": 1199181, + "totalCost": 82.71, + "fee": 0.29048946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4540", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T17:00:06" + }, + { + "id": "406r2n20xgw9xv4lbc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-21T21:00:06", + "amountCrypto": 0.00006909, + "pricePerUnit": 1197023, + "totalCost": 82.7, + "fee": 0.29047122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4541", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-21T21:00:06" + }, + { + "id": "05xvnf4080ulirmz6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T01:00:04", + "amountCrypto": 0.00006814, + "pricePerUnit": 1213826, + "totalCost": 82.71, + "fee": 0.29049856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4542", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T01:00:04" + }, + { + "id": "twp4xths6rqtvmwgro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T05:00:07", + "amountCrypto": 0.0000685, + "pricePerUnit": 1207402, + "totalCost": 82.71, + "fee": 0.29048779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4543", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T05:00:07" + }, + { + "id": "pe64boq3u18rc48ceu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T09:00:06", + "amountCrypto": 0.0000685, + "pricePerUnit": 1207338, + "totalCost": 82.7, + "fee": 0.29047239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4544", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T09:00:06" + }, + { + "id": "3u278ruywnvwr2aps0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T13:00:05", + "amountCrypto": 0.00006869, + "pricePerUnit": 1204002, + "totalCost": 82.7, + "fee": 0.29047325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4545", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T13:00:05" + }, + { + "id": "tfwk9mvccfyk4km3v9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T17:00:06", + "amountCrypto": 0.0000683, + "pricePerUnit": 1210859, + "totalCost": 82.7, + "fee": 0.29046894, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T17:00:06" + }, + { + "id": "7ijoye495k9i2v85qi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-22T21:00:05", + "amountCrypto": 0.00006847, + "pricePerUnit": 1207964, + "totalCost": 82.71, + "fee": 0.29049572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-22T21:00:05" + }, + { + "id": "92fin72sekxlbowc93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T01:00:05", + "amountCrypto": 0.00006872, + "pricePerUnit": 1203473, + "totalCost": 82.7, + "fee": 0.29047243, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T01:00:05" + }, + { + "id": "b5xmb4hp84sven0tfv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T05:00:05", + "amountCrypto": 0.00006905, + "pricePerUnit": 1197769, + "totalCost": 82.71, + "fee": 0.29048397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T05:00:05" + }, + { + "id": "jjlp3vpr6u0lhuxw4v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T09:00:06", + "amountCrypto": 0.00006927, + "pricePerUnit": 1193976, + "totalCost": 82.71, + "fee": 0.29048667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T09:00:06" + }, + { + "id": "h7otm2fi7kvyksgv97", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T13:00:05", + "amountCrypto": 0.00006886, + "pricePerUnit": 1200975, + "totalCost": 82.7, + "fee": 0.29046005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T13:00:05" + }, + { + "id": "9dqzrfs071nnc3j119", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T17:00:07", + "amountCrypto": 0.00006926, + "pricePerUnit": 1194060, + "totalCost": 82.7, + "fee": 0.29046517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T17:00:07" + }, + { + "id": "pblf2xoqggc4q2g3ed", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-23T21:00:06", + "amountCrypto": 0.00006896, + "pricePerUnit": 1199278, + "totalCost": 82.7, + "fee": 0.29047084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-23T21:00:06" + }, + { + "id": "k1nxywvr8de5rfdvj8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T01:00:05", + "amountCrypto": 0.00006938, + "pricePerUnit": 1192094, + "totalCost": 82.71, + "fee": 0.29048935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4554", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T01:00:05" + }, + { + "id": "qibjfys70xrboz9bdi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T05:00:06", + "amountCrypto": 0.00006927, + "pricePerUnit": 1194000, + "totalCost": 82.71, + "fee": 0.29049251, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4555", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T05:00:06" + }, + { + "id": "l95pku6u1w12iyszxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T09:00:06", + "amountCrypto": 0.00006911, + "pricePerUnit": 1196642, + "totalCost": 82.7, + "fee": 0.29046282, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4556", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T09:00:06" + }, + { + "id": "eug1s6ft9so09eicau", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T13:00:05", + "amountCrypto": 0.00006906, + "pricePerUnit": 1197559, + "totalCost": 82.7, + "fee": 0.2904751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4557", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T13:00:05" + }, + { + "id": "hqa3oy8d0ca8dybj0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T17:00:04", + "amountCrypto": 0.00006908, + "pricePerUnit": 1197156, + "totalCost": 82.7, + "fee": 0.29046145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4558", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T17:00:04" + }, + { + "id": "j58ur1tlge3bo6bdcx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-24T21:00:06", + "amountCrypto": 0.00006853, + "pricePerUnit": 1206835, + "totalCost": 82.7, + "fee": 0.29047854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4559", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-24T21:00:06" + }, + { + "id": "sy251yfc000viyp2je", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T01:00:04", + "amountCrypto": 0.00006844, + "pricePerUnit": 1208416, + "totalCost": 82.7, + "fee": 0.29047709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4560", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T01:00:04" + }, + { + "id": "l4qvrbs24l4e5quy7n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T05:00:05", + "amountCrypto": 0.00006841, + "pricePerUnit": 1208986, + "totalCost": 82.71, + "fee": 0.29048672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4561", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T05:00:05" + }, + { + "id": "z9ayhng1mntvx54wqc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T09:00:05", + "amountCrypto": 0.00006825, + "pricePerUnit": 1211808, + "totalCost": 82.71, + "fee": 0.29048378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4562", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T09:00:05" + }, + { + "id": "vwbxvkjmdfejcjryys", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T13:00:04", + "amountCrypto": 0.00006838, + "pricePerUnit": 1209396, + "totalCost": 82.7, + "fee": 0.2904578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4563", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T13:00:04" + }, + { + "id": "0rajyu8tqgg9f0q1iz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T17:00:04", + "amountCrypto": 0.00006852, + "pricePerUnit": 1207099, + "totalCost": 82.71, + "fee": 0.29049968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4564", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T17:00:04" + }, + { + "id": "4gmp362ecmc7hrz7or", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-25T21:00:05", + "amountCrypto": 0.00006838, + "pricePerUnit": 1209550, + "totalCost": 82.71, + "fee": 0.29049479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4565", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-25T21:00:05" + }, + { + "id": "trhfcp2sf426x2m908", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T01:00:06", + "amountCrypto": 0.00006826, + "pricePerUnit": 1211664, + "totalCost": 82.71, + "fee": 0.29049182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4566", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T01:00:06" + }, + { + "id": "1qd30sy73t31okgiex", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T05:00:04", + "amountCrypto": 0.00006854, + "pricePerUnit": 1206634, + "totalCost": 82.7, + "fee": 0.29047254, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4567", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T05:00:04" + }, + { + "id": "iq9jeaj8ttbzse5kyy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T09:00:07", + "amountCrypto": 0.00006881, + "pricePerUnit": 1201905, + "totalCost": 82.7, + "fee": 0.2904739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4568", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T09:00:07" + }, + { + "id": "n6cufere65m4w0scdp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T13:00:05", + "amountCrypto": 0.00006924, + "pricePerUnit": 1194533, + "totalCost": 82.71, + "fee": 0.29049632, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4569", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T13:00:05" + }, + { + "id": "8a1ewqcrgc8k4p2o4c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T17:00:05", + "amountCrypto": 0.00006697, + "pricePerUnit": 1234857, + "totalCost": 82.7, + "fee": 0.29045736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4570", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T17:00:05" + }, + { + "id": "wp6iesp8rxu3rzd7i8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-26T21:00:05", + "amountCrypto": 0.00006502, + "pricePerUnit": 1272000, + "totalCost": 82.71, + "fee": 0.29048218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4571", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-26T21:00:05" + }, + { + "id": "5luzpu5tspvyy2bvt1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T01:00:05", + "amountCrypto": 0.000065, + "pricePerUnit": 1272341, + "totalCost": 82.7, + "fee": 0.29047068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4572", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T01:00:05" + }, + { + "id": "a1vp3udmte4vra9vkz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T05:00:07", + "amountCrypto": 0.00006367, + "pricePerUnit": 1298963, + "totalCost": 82.7, + "fee": 0.29048055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4573", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T05:00:07" + }, + { + "id": "9b1r1vqyc8c3piydb1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T09:00:07", + "amountCrypto": 0.00006326, + "pricePerUnit": 1307300, + "totalCost": 82.7, + "fee": 0.29046237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4574", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T09:00:07" + }, + { + "id": "u909pamwuemj44vl51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T13:00:08", + "amountCrypto": 0.00006278, + "pricePerUnit": 1317421, + "totalCost": 82.71, + "fee": 0.29049009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4575", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T13:00:08" + }, + { + "id": "ak6johot1clnnbusky", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T17:00:09", + "amountCrypto": 0.00006242, + "pricePerUnit": 1324979, + "totalCost": 82.71, + "fee": 0.2904813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4576", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T17:00:09" + }, + { + "id": "foq29mrwldb03b0010", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-27T21:00:05", + "amountCrypto": 0.00006188, + "pricePerUnit": 1336579, + "totalCost": 82.71, + "fee": 0.29048945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4577", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-27T21:00:05" + }, + { + "id": "00vc22u1b26ub5tqqw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T01:00:05", + "amountCrypto": 0.00006216, + "pricePerUnit": 1330512, + "totalCost": 82.7, + "fee": 0.29047932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4578", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T01:00:05" + }, + { + "id": "j1en5ueov1n9p4g1je", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T05:00:05", + "amountCrypto": 0.00006219, + "pricePerUnit": 1329836, + "totalCost": 82.7, + "fee": 0.29047186, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4579", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T05:00:05" + }, + { + "id": "zh3y1brny2g5zxxp1q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T09:00:05", + "amountCrypto": 0.0000608, + "pricePerUnit": 1360364, + "totalCost": 82.71, + "fee": 0.29049866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4580", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T09:00:05" + }, + { + "id": "lhotvlmquv2r94v7dr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T13:00:08", + "amountCrypto": 0.00005992, + "pricePerUnit": 1380276, + "totalCost": 82.71, + "fee": 0.29048463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4581", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T13:00:08" + }, + { + "id": "mjsqwqo5q2l5vzbunu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T17:00:07", + "amountCrypto": 0.000058, + "pricePerUnit": 1425844, + "totalCost": 82.7, + "fee": 0.29045939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4582", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T17:00:07" + }, + { + "id": "1b15tsjw1e5prthll2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-28T21:00:07", + "amountCrypto": 0.00005942, + "pricePerUnit": 1391787, + "totalCost": 82.7, + "fee": 0.29046302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4583", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-28T21:00:07" + }, + { + "id": "pqjontcdu4pf7dfb34", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T01:00:06", + "amountCrypto": 0.00005896, + "pricePerUnit": 1402781, + "totalCost": 82.71, + "fee": 0.29049106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4584", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T01:00:06" + }, + { + "id": "0mf01kzeqvbbufijue", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T05:00:07", + "amountCrypto": 0.00005932, + "pricePerUnit": 1394156, + "totalCost": 82.7, + "fee": 0.29046776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4585", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T05:00:07" + }, + { + "id": "jrnxz2nqwcik17x5i6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T09:00:07", + "amountCrypto": 0.00005684, + "pricePerUnit": 1455000, + "totalCost": 82.7, + "fee": 0.2904708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4586", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T09:00:07" + }, + { + "id": "zxmzux0yresxcqdf6q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T13:00:09", + "amountCrypto": 0.00005631, + "pricePerUnit": 1468675, + "totalCost": 82.7, + "fee": 0.2904669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4587", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T13:00:09" + }, + { + "id": "ww2xsqchck3yz6pskk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T17:00:09", + "amountCrypto": 0.00005641, + "pricePerUnit": 1466235, + "totalCost": 82.71, + "fee": 0.29049931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4588", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T17:00:09" + }, + { + "id": "ylpvlnwsswnrycuhx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-02-29T21:00:08", + "amountCrypto": 0.00005737, + "pricePerUnit": 1441496, + "totalCost": 82.7, + "fee": 0.29045825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4589", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-02-29T21:00:08" + }, + { + "id": "ft888zqxks7tevnd54", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T01:00:05", + "amountCrypto": 0.00005782, + "pricePerUnit": 1430374, + "totalCost": 82.7, + "fee": 0.29047791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4590", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T01:00:05" + }, + { + "id": "8ivb3wng66ts4xfkl8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T05:00:04", + "amountCrypto": 0.00005781, + "pricePerUnit": 1430494, + "totalCost": 82.7, + "fee": 0.29045204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4591", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T05:00:04" + }, + { + "id": "upesz6a3s41c35rozt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T09:00:05", + "amountCrypto": 0.00005756, + "pricePerUnit": 1436898, + "totalCost": 82.71, + "fee": 0.29049064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4592", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T09:00:05" + }, + { + "id": "ipptyhw9lvxmxyjo4y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T13:00:02", + "amountCrypto": 0.00005723, + "pricePerUnit": 1445084, + "totalCost": 82.7, + "fee": 0.29047065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4593", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T13:00:02" + }, + { + "id": "7oc2ozn4vks3bivrt3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T17:00:06", + "amountCrypto": 0.0000579, + "pricePerUnit": 1428464, + "totalCost": 82.71, + "fee": 0.2904914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4594", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T17:00:06" + }, + { + "id": "x7puya4izfebrqzgab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-01T21:00:02", + "amountCrypto": 0.00005734, + "pricePerUnit": 1442425, + "totalCost": 82.71, + "fee": 0.29049345, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4595", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-01T21:00:02" + }, + { + "id": "fu1nt2mwk64ekdyh15", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T01:00:05", + "amountCrypto": 0.00005688, + "pricePerUnit": 1454048, + "totalCost": 82.71, + "fee": 0.29048503, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4596", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T01:00:05" + }, + { + "id": "n4gr10xdhoy7474eyd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T05:00:05", + "amountCrypto": 0.00005692, + "pricePerUnit": 1453042, + "totalCost": 82.71, + "fee": 0.29048819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T05:00:05" + }, + { + "id": "q0uqnf3wcjb4v79ou6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T09:00:05", + "amountCrypto": 0.00005705, + "pricePerUnit": 1449684, + "totalCost": 82.7, + "fee": 0.29047878, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4598", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T09:00:05" + }, + { + "id": "t9944g2cass8ig3ejx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T13:00:05", + "amountCrypto": 0.00005732, + "pricePerUnit": 1442772, + "totalCost": 82.7, + "fee": 0.29046199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T13:00:05" + }, + { + "id": "tv39nar003etm5po5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T17:00:05", + "amountCrypto": 0.0000573, + "pricePerUnit": 1443429, + "totalCost": 82.71, + "fee": 0.29049286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T17:00:05" + }, + { + "id": "00j1qe6yldrkivwjhp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-02T21:00:06", + "amountCrypto": 0.00005712, + "pricePerUnit": 1447806, + "totalCost": 82.7, + "fee": 0.29045843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-02T21:00:06" + }, + { + "id": "k79iuulm8s34srt428", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T01:00:04", + "amountCrypto": 0.00005722, + "pricePerUnit": 1445357, + "totalCost": 82.7, + "fee": 0.29047476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T01:00:04" + }, + { + "id": "x9qhynkw27cdpt0g1q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T05:00:04", + "amountCrypto": 0.00005723, + "pricePerUnit": 1445000, + "totalCost": 82.7, + "fee": 0.29045377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T05:00:04" + }, + { + "id": "gfslfc3gc2ijjlr3ms", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T09:00:04", + "amountCrypto": 0.00005744, + "pricePerUnit": 1439946, + "totalCost": 82.71, + "fee": 0.29049995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T09:00:04" + }, + { + "id": "zpy9n0sfmd1yjsvia3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T13:00:04", + "amountCrypto": 0.00005733, + "pricePerUnit": 1442535, + "totalCost": 82.7, + "fee": 0.29046494, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T13:00:04" + }, + { + "id": "tuan2of77qska2ytrx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T17:00:04", + "amountCrypto": 0.00005727, + "pricePerUnit": 1443999, + "totalCost": 82.7, + "fee": 0.29045543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T17:00:04" + }, + { + "id": "0u3gk9jc9ezkiqonif", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-03T21:00:05", + "amountCrypto": 0.000057, + "pricePerUnit": 1451001, + "totalCost": 82.71, + "fee": 0.29048786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-03T21:00:05" + }, + { + "id": "okz9ah9ab94vkh0wkb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T01:00:04", + "amountCrypto": 0.00005684, + "pricePerUnit": 1454999, + "totalCost": 82.7, + "fee": 0.2904706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T01:00:04" + }, + { + "id": "hijuh3it2berynqeud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T05:00:04", + "amountCrypto": 0.00005642, + "pricePerUnit": 1465841, + "totalCost": 82.7, + "fee": 0.29047273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T05:00:04" + }, + { + "id": "565hp8rl5868tqr795", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T09:00:04", + "amountCrypto": 0.00005607, + "pricePerUnit": 1475030, + "totalCost": 82.7, + "fee": 0.2904804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T09:00:04" + }, + { + "id": "jlqozl5myoit3ee0jb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T13:00:03", + "amountCrypto": 0.00005453, + "pricePerUnit": 1516615, + "totalCost": 82.7, + "fee": 0.29046664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T13:00:03" + }, + { + "id": "ohwmt3t1vnalzkyl0z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T17:00:04", + "amountCrypto": 0.00005344, + "pricePerUnit": 1547600, + "totalCost": 82.7, + "fee": 0.29047622, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T17:00:04" + }, + { + "id": "8z2b0xtn8iikkqzm9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-04T21:00:05", + "amountCrypto": 0.00005269, + "pricePerUnit": 1569689, + "totalCost": 82.71, + "fee": 0.29048736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-04T21:00:05" + }, + { + "id": "ibbgea7tvw6c6y0g1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T01:00:04", + "amountCrypto": 0.00005234, + "pricePerUnit": 1580000, + "totalCost": 82.7, + "fee": 0.29045324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T01:00:04" + }, + { + "id": "48r1xoql2ks2oghrve", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T05:00:03", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575000, + "totalCost": 82.7, + "fee": 0.29047449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T05:00:03" + }, + { + "id": "1e2cvama5cixr8s6iu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T09:00:04", + "amountCrypto": 0.00005354, + "pricePerUnit": 1544685, + "totalCost": 82.7, + "fee": 0.29047163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T09:00:04" + }, + { + "id": "fsh6x5mx5okmfs0drt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T13:00:04", + "amountCrypto": 0.00005313, + "pricePerUnit": 1556481, + "totalCost": 82.7, + "fee": 0.29044845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T13:00:04" + }, + { + "id": "r3h0crbubv4oxhy6of", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T17:00:03", + "amountCrypto": 0.00005319, + "pricePerUnit": 1554757, + "totalCost": 82.7, + "fee": 0.29045438, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T17:00:03" + }, + { + "id": "46jj7b18nhtmhpq8uf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-05T21:00:06", + "amountCrypto": 0.00005825, + "pricePerUnit": 1419759, + "totalCost": 82.7, + "fee": 0.29046645, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-05T21:00:06" + }, + { + "id": "slealjzeeymmeuek4d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T01:00:04", + "amountCrypto": 0.00005564, + "pricePerUnit": 1486277, + "totalCost": 82.7, + "fee": 0.29045061, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T01:00:04" + }, + { + "id": "6uujq1s5gzo5bp0a93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T05:00:03", + "amountCrypto": 0.00005601, + "pricePerUnit": 1476510, + "totalCost": 82.7, + "fee": 0.2904607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T05:00:03" + }, + { + "id": "o5llg4g0gybs6iy8en", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T09:00:04", + "amountCrypto": 0.00005331, + "pricePerUnit": 1551289, + "totalCost": 82.7, + "fee": 0.29046032, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T09:00:04" + }, + { + "id": "hjh9ws5th4m5mhfz82", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T13:00:03", + "amountCrypto": 0.00005295, + "pricePerUnit": 1561938, + "totalCost": 82.7, + "fee": 0.29047929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T13:00:03" + }, + { + "id": "vlfrptp3hed1h0bd48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T17:00:04", + "amountCrypto": 0.00005352, + "pricePerUnit": 1545166, + "totalCost": 82.7, + "fee": 0.29045354, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T17:00:04" + }, + { + "id": "ic2yvpqxzp4j3oim0b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-06T21:00:04", + "amountCrypto": 0.00005336, + "pricePerUnit": 1550002, + "totalCost": 82.71, + "fee": 0.29049155, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-06T21:00:04" + }, + { + "id": "s38kutgnv92fa8p54i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T01:00:04", + "amountCrypto": 0.00005392, + "pricePerUnit": 1533849, + "totalCost": 82.71, + "fee": 0.29048112, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T01:00:04" + }, + { + "id": "cfngxxdol579k5ukha", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T05:00:03", + "amountCrypto": 0.0000541, + "pricePerUnit": 1528612, + "totalCost": 82.7, + "fee": 0.29045573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T05:00:03" + }, + { + "id": "yv0b6676l0gj3fhe8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T09:00:01", + "amountCrypto": 0.00005365, + "pricePerUnit": 1541451, + "totalCost": 82.7, + "fee": 0.29045902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T09:00:01" + }, + { + "id": "1uxfm8iyaht1n8k89c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T13:00:04", + "amountCrypto": 0.0000535, + "pricePerUnit": 1545820, + "totalCost": 82.7, + "fee": 0.29046789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T13:00:04" + }, + { + "id": "c8zfdtmdnayoqwvbwc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T17:00:04", + "amountCrypto": 0.00005303, + "pricePerUnit": 1559671, + "totalCost": 82.71, + "fee": 0.29049593, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T17:00:04" + }, + { + "id": "6obykiixb0zltwhacq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-07T21:00:04", + "amountCrypto": 0.0000531, + "pricePerUnit": 1557628, + "totalCost": 82.71, + "fee": 0.29049836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-07T21:00:04" + }, + { + "id": "ae4o0vtzpiern09q86", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T01:00:03", + "amountCrypto": 0.00005352, + "pricePerUnit": 1545268, + "totalCost": 82.7, + "fee": 0.29047271, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T01:00:03" + }, + { + "id": "3gfam8vub9tocsehxi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T05:00:03", + "amountCrypto": 0.0000532, + "pricePerUnit": 1554572, + "totalCost": 82.7, + "fee": 0.29047442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T05:00:03" + }, + { + "id": "04miounfpxc3phpusv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T09:00:03", + "amountCrypto": 0.00005304, + "pricePerUnit": 1559206, + "totalCost": 82.7, + "fee": 0.29046408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T09:00:03" + }, + { + "id": "f098nskbwzsr2yc7l0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T13:00:03", + "amountCrypto": 0.00005305, + "pricePerUnit": 1559000, + "totalCost": 82.7, + "fee": 0.29048046, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T13:00:03" + }, + { + "id": "zb2n7z0w8rx32nuj7l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T17:00:04", + "amountCrypto": 0.00005287, + "pricePerUnit": 1564324, + "totalCost": 82.71, + "fee": 0.29048348, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T17:00:04" + }, + { + "id": "1q0ybs2oeysz9838xo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-08T21:00:03", + "amountCrypto": 0.00005204, + "pricePerUnit": 1589192, + "totalCost": 82.7, + "fee": 0.2904685, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4637", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-08T21:00:03" + }, + { + "id": "35d5nyzp3rl0td48wb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T01:00:04", + "amountCrypto": 0.00005245, + "pricePerUnit": 1576707, + "totalCost": 82.7, + "fee": 0.29045704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4638", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T01:00:04" + }, + { + "id": "r6cufxhkxcnx8b6p32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T05:00:03", + "amountCrypto": 0.00005236, + "pricePerUnit": 1579511, + "totalCost": 82.7, + "fee": 0.2904743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4639", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T05:00:03" + }, + { + "id": "ozmj3rrjqgqia3crar", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T09:00:04", + "amountCrypto": 0.00005233, + "pricePerUnit": 1580552, + "totalCost": 82.71, + "fee": 0.2904992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4640", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T09:00:04" + }, + { + "id": "4hn4obakg2psqr8vxf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T13:00:04", + "amountCrypto": 0.00005231, + "pricePerUnit": 1581000, + "totalCost": 82.7, + "fee": 0.29047049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4641", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T13:00:04" + }, + { + "id": "6319xqtxdiow57hrj7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T17:00:03", + "amountCrypto": 0.00005229, + "pricePerUnit": 1581658, + "totalCost": 82.7, + "fee": 0.29048027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4642", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T17:00:03" + }, + { + "id": "mpc1lrxsjsmh2esznn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-09T21:00:03", + "amountCrypto": 0.00005233, + "pricePerUnit": 1580293, + "totalCost": 82.7, + "fee": 0.2904516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4643", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-09T21:00:03" + }, + { + "id": "oo6yrpqdrmgd09ckig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T01:00:03", + "amountCrypto": 0.00005231, + "pricePerUnit": 1581000, + "totalCost": 82.7, + "fee": 0.29047049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4644", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T01:00:03" + }, + { + "id": "2uqxx8loih5jomam32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T05:00:03", + "amountCrypto": 0.00005171, + "pricePerUnit": 1599313, + "totalCost": 82.7, + "fee": 0.29046474, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4645", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T05:00:03" + }, + { + "id": "32qqmki6c2ljkl8v5t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T09:00:04", + "amountCrypto": 0.00005155, + "pricePerUnit": 1604427, + "totalCost": 82.71, + "fee": 0.29049192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4646", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T09:00:04" + }, + { + "id": "ypdhkuh02pl7h6zffp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T13:00:03", + "amountCrypto": 0.00005139, + "pricePerUnit": 1609361, + "totalCost": 82.71, + "fee": 0.29048085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4647", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T13:00:03" + }, + { + "id": "ulk4nh9blxmfuifq2i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T17:00:04", + "amountCrypto": 0.00005166, + "pricePerUnit": 1600947, + "totalCost": 82.7, + "fee": 0.29048036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4648", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T17:00:04" + }, + { + "id": "4046pkp14wsoyfjbzl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-10T21:00:03", + "amountCrypto": 0.00005152, + "pricePerUnit": 1605132, + "totalCost": 82.7, + "fee": 0.29045043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4649", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-10T21:00:03" + }, + { + "id": "bukapnn9rweu4e7tlk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T01:00:03", + "amountCrypto": 0.0000519, + "pricePerUnit": 1593367, + "totalCost": 82.7, + "fee": 0.29044814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T01:00:03" + }, + { + "id": "nzk7pr4ecbr50lixmt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T05:00:04", + "amountCrypto": 0.00005223, + "pricePerUnit": 1583478, + "totalCost": 82.71, + "fee": 0.29048083, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T05:00:04" + }, + { + "id": "zs3fjnzjz7a66z31pm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T09:00:05", + "amountCrypto": 0.00005036, + "pricePerUnit": 1642323, + "totalCost": 82.71, + "fee": 0.29048902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T09:00:05" + }, + { + "id": "3cs6woglj8r5w8zalx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T13:00:03", + "amountCrypto": 0.00005017, + "pricePerUnit": 1648408, + "totalCost": 82.7, + "fee": 0.29046529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T13:00:03" + }, + { + "id": "74frskw73t27y0qj82", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T17:00:05", + "amountCrypto": 0.00004962, + "pricePerUnit": 1666669, + "totalCost": 82.7, + "fee": 0.29046348, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T17:00:05" + }, + { + "id": "2ss1045zme8z3t2eez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-11T21:00:04", + "amountCrypto": 0.00004969, + "pricePerUnit": 1664315, + "totalCost": 82.7, + "fee": 0.29046242, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-11T21:00:04" + }, + { + "id": "jsllzsu8i418ltxatx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T01:00:03", + "amountCrypto": 0.00004963, + "pricePerUnit": 1666311, + "totalCost": 82.7, + "fee": 0.29045962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T01:00:03" + }, + { + "id": "hc2s8cns4r2cs5zsnv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T05:00:04", + "amountCrypto": 0.00004999, + "pricePerUnit": 1654346, + "totalCost": 82.7, + "fee": 0.29046573, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T05:00:04" + }, + { + "id": "mffyyqky6g771ga1af", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T09:00:03", + "amountCrypto": 0.00004963, + "pricePerUnit": 1666289, + "totalCost": 82.7, + "fee": 0.29045578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T09:00:03" + }, + { + "id": "f23ef0uwv0jbrpuw4f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T13:00:04", + "amountCrypto": 0.00004972, + "pricePerUnit": 1663359, + "totalCost": 82.7, + "fee": 0.29047084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T13:00:04" + }, + { + "id": "3lnke7bv1scfxnfs45", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T17:00:04", + "amountCrypto": 0.00004992, + "pricePerUnit": 1656583, + "totalCost": 82.7, + "fee": 0.29045122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T17:00:04" + }, + { + "id": "k3j0rbbpb7hurq1f0s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-12T21:00:04", + "amountCrypto": 0.00005012, + "pricePerUnit": 1650126, + "totalCost": 82.7, + "fee": 0.29047823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-12T21:00:04" + }, + { + "id": "xmazmuezkq41k4e619", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T01:00:03", + "amountCrypto": 0.00004998, + "pricePerUnit": 1654544, + "totalCost": 82.69, + "fee": 0.29044238, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T01:00:03" + }, + { + "id": "o7n6ffdq8oj3u7kdd7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T05:00:04", + "amountCrypto": 0.00004966, + "pricePerUnit": 1665466, + "totalCost": 82.71, + "fee": 0.29048781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T05:00:04" + }, + { + "id": "h03fckof67bmkoqaya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T09:00:04", + "amountCrypto": 0.00004911, + "pricePerUnit": 1683997, + "totalCost": 82.7, + "fee": 0.29046691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T09:00:04" + }, + { + "id": "i9sjy2au6d44f56eyn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T13:00:03", + "amountCrypto": 0.00004898, + "pricePerUnit": 1688581, + "totalCost": 82.71, + "fee": 0.2904866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T13:00:03" + }, + { + "id": "06g9r1vtg6nfjus0js", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T17:00:04", + "amountCrypto": 0.00004941, + "pricePerUnit": 1673673, + "totalCost": 82.7, + "fee": 0.29044967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T17:00:04" + }, + { + "id": "xfm3649js9pjj92e9j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-13T21:00:04", + "amountCrypto": 0.000049, + "pricePerUnit": 1687860, + "totalCost": 82.71, + "fee": 0.29048113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-13T21:00:04" + }, + { + "id": "grhpllnfo6wmri8a42", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T01:00:04", + "amountCrypto": 0.00004908, + "pricePerUnit": 1685038, + "totalCost": 82.7, + "fee": 0.29046892, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T01:00:04" + }, + { + "id": "72jne7mh8skasofitn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T05:00:03", + "amountCrypto": 0.00004904, + "pricePerUnit": 1686493, + "totalCost": 82.71, + "fee": 0.2904828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T05:00:03" + }, + { + "id": "kwne7l81oewcpbk7bm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T09:00:04", + "amountCrypto": 0.00004899, + "pricePerUnit": 1688187, + "totalCost": 82.7, + "fee": 0.29047811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T09:00:04" + }, + { + "id": "rtje2tcjrjra571ikj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T13:00:04", + "amountCrypto": 0.00004932, + "pricePerUnit": 1676742, + "totalCost": 82.7, + "fee": 0.29045224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T13:00:04" + }, + { + "id": "wwgj2zdoby3ren8567", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T17:00:04", + "amountCrypto": 0.00005046, + "pricePerUnit": 1638987, + "totalCost": 82.7, + "fee": 0.29047461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T17:00:04" + }, + { + "id": "b4z1hgxai357i05i11", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-14T21:00:04", + "amountCrypto": 0.00005154, + "pricePerUnit": 1604672, + "totalCost": 82.7, + "fee": 0.29047992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-14T21:00:04" + }, + { + "id": "khfcaqd2zxc4nc8xh9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T01:00:04", + "amountCrypto": 0.00005001, + "pricePerUnit": 1653700, + "totalCost": 82.7, + "fee": 0.29046847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T01:00:04" + }, + { + "id": "2qjjsne3189dltrmyb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T05:00:03", + "amountCrypto": 0.00005239, + "pricePerUnit": 1578516, + "totalCost": 82.7, + "fee": 0.29045764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T05:00:03" + }, + { + "id": "totof0madq7345ogdr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T09:00:03", + "amountCrypto": 0.00005224, + "pricePerUnit": 1583062, + "totalCost": 82.7, + "fee": 0.29046012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T09:00:03" + }, + { + "id": "3r3rc0esd0jpvv5ifz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T17:00:04", + "amountCrypto": 0.00005247, + "pricePerUnit": 1576105, + "totalCost": 82.7, + "fee": 0.29045686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T17:00:04" + }, + { + "id": "r221pmjphc4wzvmu4z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-15T21:00:03", + "amountCrypto": 0.00005198, + "pricePerUnit": 1591005, + "totalCost": 82.7, + "fee": 0.29046462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4679", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-15T21:00:03" + }, + { + "id": "8zlq9x2gr0n70f470m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T01:00:03", + "amountCrypto": 0.00005145, + "pricePerUnit": 1607532, + "totalCost": 82.71, + "fee": 0.29048949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4680", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T01:00:03" + }, + { + "id": "q52lkquz9cp3ockt4y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T05:00:03", + "amountCrypto": 0.00005166, + "pricePerUnit": 1600910, + "totalCost": 82.7, + "fee": 0.29047365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4681", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T05:00:03" + }, + { + "id": "ddyzmpwfncagwsjl6k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T09:00:04", + "amountCrypto": 0.0000515, + "pricePerUnit": 1606000, + "totalCost": 82.71, + "fee": 0.29049469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4682", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T09:00:04" + }, + { + "id": "cy4mglclmcf365bumi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T13:00:03", + "amountCrypto": 0.0000524, + "pricePerUnit": 1578247, + "totalCost": 82.7, + "fee": 0.29046358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4683", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T13:00:03" + }, + { + "id": "d82db3jvgfgmueczeh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T17:00:03", + "amountCrypto": 0.00005223, + "pricePerUnit": 1583478, + "totalCost": 82.71, + "fee": 0.29048083, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4684", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T17:00:03" + }, + { + "id": "w7zxa9vqw6n3istk5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-16T21:00:05", + "amountCrypto": 0.00005333, + "pricePerUnit": 1550771, + "totalCost": 82.7, + "fee": 0.29047227, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4685", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-16T21:00:05" + }, + { + "id": "s2vt073d2bhu9byxx4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T01:00:04", + "amountCrypto": 0.00005471, + "pricePerUnit": 1511627, + "totalCost": 82.7, + "fee": 0.29046698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4686", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T01:00:04" + }, + { + "id": "32u6udibkh30y9t669", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T05:00:04", + "amountCrypto": 0.00005371, + "pricePerUnit": 1539875, + "totalCost": 82.71, + "fee": 0.29048656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4687", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T05:00:04" + }, + { + "id": "cfx83y8y6tsk53oyod", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T09:00:04", + "amountCrypto": 0.0000544, + "pricePerUnit": 1520337, + "totalCost": 82.71, + "fee": 0.29048532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4688", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T09:00:04" + }, + { + "id": "lexoz2qsanrx0dqe0s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T13:00:03", + "amountCrypto": 0.00005326, + "pricePerUnit": 1552678, + "totalCost": 82.7, + "fee": 0.29044773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4689", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T13:00:03" + }, + { + "id": "84aaqlhfde30a9su73", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T17:00:03", + "amountCrypto": 0.00005258, + "pricePerUnit": 1572788, + "totalCost": 82.7, + "fee": 0.29045322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4690", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T17:00:03" + }, + { + "id": "jxvxbwysgdc1emak8p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-17T21:00:03", + "amountCrypto": 0.00005217, + "pricePerUnit": 1585280, + "totalCost": 82.7, + "fee": 0.29047733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4691", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-17T21:00:03" + }, + { + "id": "ln2tjfz9atj7evqdr3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T01:00:03", + "amountCrypto": 0.00005218, + "pricePerUnit": 1585082, + "totalCost": 82.71, + "fee": 0.29049672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4692", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T01:00:03" + }, + { + "id": "n4rsogk1tmet39i3dw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T05:00:03", + "amountCrypto": 0.00005257, + "pricePerUnit": 1573188, + "totalCost": 82.7, + "fee": 0.29047183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4693", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T05:00:03" + }, + { + "id": "oye78j2csccmwf7b5s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T09:00:04", + "amountCrypto": 0.00005238, + "pricePerUnit": 1578810, + "totalCost": 82.7, + "fee": 0.29045629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4694", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T09:00:04" + }, + { + "id": "j8lt9kyan4tuw0l4qf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T13:00:03", + "amountCrypto": 0.00005238, + "pricePerUnit": 1578783, + "totalCost": 82.7, + "fee": 0.29045132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4695", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T13:00:03" + }, + { + "id": "80532mz4js1887juk5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T17:00:04", + "amountCrypto": 0.00005286, + "pricePerUnit": 1564554, + "totalCost": 82.7, + "fee": 0.29047124, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4696", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T17:00:04" + }, + { + "id": "c73ygp7ykuoo10or7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-18T21:00:03", + "amountCrypto": 0.00005304, + "pricePerUnit": 1559198, + "totalCost": 82.7, + "fee": 0.29046259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4697", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-18T21:00:03" + }, + { + "id": "4eerp08a7qshh8kog5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T01:00:04", + "amountCrypto": 0.00005257, + "pricePerUnit": 1573333, + "totalCost": 82.71, + "fee": 0.2904986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4698", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T01:00:04" + }, + { + "id": "ph5gl1faqrd2spbjn7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T05:00:03", + "amountCrypto": 0.00005394, + "pricePerUnit": 1533175, + "totalCost": 82.7, + "fee": 0.29046118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4699", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T05:00:03" + }, + { + "id": "kfv71l9yh7zd9t8i8m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T09:00:03", + "amountCrypto": 0.00005497, + "pricePerUnit": 1504438, + "totalCost": 82.7, + "fee": 0.29045941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4700", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T09:00:03" + }, + { + "id": "gpzpmehpniwae2a04g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T13:00:03", + "amountCrypto": 0.00005641, + "pricePerUnit": 1466128, + "totalCost": 82.7, + "fee": 0.29047811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4701", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T13:00:03" + }, + { + "id": "qukfkl8sy2ahj307qr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T17:00:04", + "amountCrypto": 0.00005552, + "pricePerUnit": 1489542, + "totalCost": 82.7, + "fee": 0.29046087, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4702", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T17:00:04" + }, + { + "id": "sc679kczlrqcjl5si7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-19T21:00:03", + "amountCrypto": 0.00005512, + "pricePerUnit": 1500461, + "totalCost": 82.71, + "fee": 0.29048208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4703", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-19T21:00:03" + }, + { + "id": "okb1ll2wh11pwy3fit", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T01:00:03", + "amountCrypto": 0.0000574, + "pricePerUnit": 1440892, + "totalCost": 82.71, + "fee": 0.29048837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4704", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T01:00:03" + }, + { + "id": "qokzii6g0u3mgu0ike", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T05:00:04", + "amountCrypto": 0.00005752, + "pricePerUnit": 1437852, + "totalCost": 82.71, + "fee": 0.2904815, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4705", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T05:00:04" + }, + { + "id": "v0164g8y7mvocy99v7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T09:00:04", + "amountCrypto": 0.00005642, + "pricePerUnit": 1465856, + "totalCost": 82.7, + "fee": 0.2904757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4706", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T09:00:04" + }, + { + "id": "i78p0riuvtptfizzam", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T13:00:04", + "amountCrypto": 0.0000559, + "pricePerUnit": 1479441, + "totalCost": 82.7, + "fee": 0.29046572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4707", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T13:00:04" + }, + { + "id": "yplupnxutm0om6xfr0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T17:00:04", + "amountCrypto": 0.00005596, + "pricePerUnit": 1477854, + "totalCost": 82.7, + "fee": 0.29046557, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4708", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T17:00:04" + }, + { + "id": "b1zapfabctf2evy1f4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-20T21:00:04", + "amountCrypto": 0.0000545, + "pricePerUnit": 1517454, + "totalCost": 82.7, + "fee": 0.29046744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4709", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-20T21:00:04" + }, + { + "id": "ob6jee6pqlqfth4s6l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T01:00:04", + "amountCrypto": 0.00005277, + "pricePerUnit": 1567129, + "totalCost": 82.7, + "fee": 0.29045393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4710", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T01:00:04" + }, + { + "id": "j8n0sxxpns4ctvsxow", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T05:00:03", + "amountCrypto": 0.00005372, + "pricePerUnit": 1539630, + "totalCost": 82.71, + "fee": 0.29049442, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4711", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T05:00:03" + }, + { + "id": "dp0sg6lsx8ub8yjqpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T09:00:03", + "amountCrypto": 0.00005335, + "pricePerUnit": 1550122, + "totalCost": 82.7, + "fee": 0.29045959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4712", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T09:00:03" + }, + { + "id": "puvkfgwt00o1cumqep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T13:00:04", + "amountCrypto": 0.00005318, + "pricePerUnit": 1555193, + "totalCost": 82.71, + "fee": 0.29048121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4713", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T13:00:04" + }, + { + "id": "2tido4a5aln2vv31ou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T17:00:04", + "amountCrypto": 0.00005332, + "pricePerUnit": 1550937, + "totalCost": 82.7, + "fee": 0.29044889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4714", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T17:00:04" + }, + { + "id": "p30glom98xlt7m8jta", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-21T21:00:04", + "amountCrypto": 0.00005424, + "pricePerUnit": 1524643, + "totalCost": 82.7, + "fee": 0.29045126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4715", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-21T21:00:04" + }, + { + "id": "ngteuzc9su9walcd8b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T01:00:04", + "amountCrypto": 0.00005411, + "pricePerUnit": 1528501, + "totalCost": 82.71, + "fee": 0.29048832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4716", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T01:00:04" + }, + { + "id": "5mtpbtug3kdq0fd6hr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T05:00:03", + "amountCrypto": 0.00005359, + "pricePerUnit": 1543192, + "totalCost": 82.7, + "fee": 0.29046188, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4717", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T05:00:03" + }, + { + "id": "xgp8nk2un1ikukjkrj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T09:00:04", + "amountCrypto": 0.00005335, + "pricePerUnit": 1550294, + "totalCost": 82.71, + "fee": 0.29049182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4718", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T09:00:04" + }, + { + "id": "e8bqr5xfqndyrxkg90", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T13:00:04", + "amountCrypto": 0.00005481, + "pricePerUnit": 1508964, + "totalCost": 82.71, + "fee": 0.29048526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4719", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T13:00:04" + }, + { + "id": "b3wm7t3y5db56ntand", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T17:00:03", + "amountCrypto": 0.00005515, + "pricePerUnit": 1499536, + "totalCost": 82.7, + "fee": 0.290461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4720", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T17:00:03" + }, + { + "id": "e3c94hvwv15095gyfw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-22T21:00:05", + "amountCrypto": 0.00005495, + "pricePerUnit": 1505073, + "totalCost": 82.7, + "fee": 0.29047629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4721", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-22T21:00:05" + }, + { + "id": "7dzr97hh4zaib2e189", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T01:00:03", + "amountCrypto": 0.00005521, + "pricePerUnit": 1497918, + "totalCost": 82.7, + "fee": 0.29046326, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4722", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T01:00:03" + }, + { + "id": "z9inurp0uyxcbsua1u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T05:00:04", + "amountCrypto": 0.00005536, + "pricePerUnit": 1493941, + "totalCost": 82.7, + "fee": 0.29047914, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4723", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T05:00:04" + }, + { + "id": "544wzpk6wblu1x506a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T09:00:03", + "amountCrypto": 0.00005446, + "pricePerUnit": 1518559, + "totalCost": 82.7, + "fee": 0.29046561, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4724", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T09:00:03" + }, + { + "id": "ob8i0rtqjts9uwfd09", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T13:00:03", + "amountCrypto": 0.00005452, + "pricePerUnit": 1517006, + "totalCost": 82.71, + "fee": 0.29048825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4725", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T13:00:03" + }, + { + "id": "l4370dracj5l26g8bh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T17:00:03", + "amountCrypto": 0.00005405, + "pricePerUnit": 1530103, + "totalCost": 82.7, + "fee": 0.29047034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4726", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T17:00:03" + }, + { + "id": "x45kd6ch4rr9hujpt1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-23T21:00:03", + "amountCrypto": 0.0000542, + "pricePerUnit": 1525840, + "totalCost": 82.7, + "fee": 0.29046493, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4727", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-23T21:00:03" + }, + { + "id": "3lg3eal5g973xuosl1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T01:00:03", + "amountCrypto": 0.00005492, + "pricePerUnit": 1505752, + "totalCost": 82.7, + "fee": 0.29044867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4728", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T01:00:03" + }, + { + "id": "8y3xzo3epwmguwc9kq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T05:00:03", + "amountCrypto": 0.00005496, + "pricePerUnit": 1504724, + "totalCost": 82.7, + "fee": 0.29046178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4729", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T05:00:03" + }, + { + "id": "00edbblnu4k1kiuz5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T09:00:03", + "amountCrypto": 0.00005445, + "pricePerUnit": 1518999, + "totalCost": 82.71, + "fee": 0.29049643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4730", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T09:00:03" + }, + { + "id": "630j2o38kwnnfpkbu7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T13:00:04", + "amountCrypto": 0.00005389, + "pricePerUnit": 1534594, + "totalCost": 82.7, + "fee": 0.29046051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4731", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T13:00:04" + }, + { + "id": "gq3l1d34uexlu5p546", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T17:00:03", + "amountCrypto": 0.00005367, + "pricePerUnit": 1540971, + "totalCost": 82.7, + "fee": 0.29047682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4732", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T17:00:03" + }, + { + "id": "lpefmxgo1b4ad5cx7x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-24T21:00:04", + "amountCrypto": 0.00005343, + "pricePerUnit": 1547760, + "totalCost": 82.7, + "fee": 0.29045189, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4733", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-24T21:00:04" + }, + { + "id": "vf7ryl2d9hf9ir6myu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T01:00:03", + "amountCrypto": 0.00005245, + "pricePerUnit": 1576760, + "totalCost": 82.7, + "fee": 0.2904668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4734", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T01:00:03" + }, + { + "id": "de4xp2l9c6rw6z2jjx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T05:00:03", + "amountCrypto": 0.0000524, + "pricePerUnit": 1578183, + "totalCost": 82.7, + "fee": 0.2904518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4735", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T05:00:03" + }, + { + "id": "cuo41aypn9qpz5qq3h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T09:00:03", + "amountCrypto": 0.00005282, + "pricePerUnit": 1565835, + "totalCost": 82.71, + "fee": 0.29048908, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4736", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T09:00:03" + }, + { + "id": "zgy4jdzmhcglanrw1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T13:00:05", + "amountCrypto": 0.00005294, + "pricePerUnit": 1562262, + "totalCost": 82.71, + "fee": 0.29048468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4737", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T13:00:05" + }, + { + "id": "p3g0b9mfs9wp4wpyvr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T17:00:03", + "amountCrypto": 0.00005074, + "pricePerUnit": 1629979, + "totalCost": 82.71, + "fee": 0.29048111, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4738", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T17:00:03" + }, + { + "id": "uixh2fktl2q1u3bmzs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-25T21:00:04", + "amountCrypto": 0.00005038, + "pricePerUnit": 1641613, + "totalCost": 82.7, + "fee": 0.29047875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4739", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-25T21:00:04" + }, + { + "id": "3zgklpeylrc2ah1k3e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T01:00:04", + "amountCrypto": 0.00005076, + "pricePerUnit": 1629193, + "totalCost": 82.7, + "fee": 0.29045548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4740", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T01:00:04" + }, + { + "id": "3m8vd5bl3rsassibxc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T05:00:04", + "amountCrypto": 0.00005071, + "pricePerUnit": 1631001, + "totalCost": 82.71, + "fee": 0.29049139, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4741", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T05:00:04" + }, + { + "id": "081e2tvu7ga674iw15", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T09:00:03", + "amountCrypto": 0.0000504, + "pricePerUnit": 1641073, + "totalCost": 82.71, + "fee": 0.29049848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4742", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T09:00:03" + }, + { + "id": "c3cpnfd5woqysu14qo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T13:00:04", + "amountCrypto": 0.00005033, + "pricePerUnit": 1643209, + "totalCost": 82.7, + "fee": 0.29047259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4743", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T13:00:04" + }, + { + "id": "4spu2t1il9rm1j1az4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T17:00:03", + "amountCrypto": 0.00005038, + "pricePerUnit": 1641596, + "totalCost": 82.7, + "fee": 0.29047574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4744", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T17:00:03" + }, + { + "id": "zj7t8699j11jkcw18f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-26T21:00:03", + "amountCrypto": 0.00005096, + "pricePerUnit": 1622818, + "totalCost": 82.7, + "fee": 0.29045888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4745", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-26T21:00:03" + }, + { + "id": "r5qoing2jfo61d8zho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T01:00:03", + "amountCrypto": 0.00005084, + "pricePerUnit": 1626840, + "totalCost": 82.71, + "fee": 0.29049309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4746", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T01:00:03" + }, + { + "id": "lxnmdohbtesoh5xewz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T05:21:51", + "amountCrypto": 0.00005059, + "pricePerUnit": 1634754, + "totalCost": 82.7, + "fee": 0.29047082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4747", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T05:21:51" + }, + { + "id": "t1lw4uplhzcvl3gw0k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T05:21:51", + "amountCrypto": 0.00005059, + "pricePerUnit": 1634754, + "totalCost": 82.7, + "fee": 0.29047082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4748", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T05:21:51" + }, + { + "id": "ainee2tzlee96foc9q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T05:21:51", + "amountCrypto": 0.00005059, + "pricePerUnit": 1634754, + "totalCost": 82.7, + "fee": 0.29047082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4749", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T05:21:51" + }, + { + "id": "iwn0eid70fxzxm4w4d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T09:00:04", + "amountCrypto": 0.0000508, + "pricePerUnit": 1628000, + "totalCost": 82.7, + "fee": 0.2904715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4750", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T09:00:04" + }, + { + "id": "ui96sjrvd4954602dt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T13:00:04", + "amountCrypto": 0.00005038, + "pricePerUnit": 1641596, + "totalCost": 82.7, + "fee": 0.29047574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4751", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T13:00:04" + }, + { + "id": "2m2x620rx38dci4zzf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T17:00:03", + "amountCrypto": 0.00005136, + "pricePerUnit": 1610125, + "totalCost": 82.7, + "fee": 0.2904491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4752", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T17:00:03" + }, + { + "id": "4zpg05nr0rvm5ryfxr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-27T21:00:04", + "amountCrypto": 0.00005152, + "pricePerUnit": 1605329, + "totalCost": 82.71, + "fee": 0.29048608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4753", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-27T21:00:04" + }, + { + "id": "tkkvkn8h8omvwrhe63", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T01:00:04", + "amountCrypto": 0.00005095, + "pricePerUnit": 1623053, + "totalCost": 82.69, + "fee": 0.29044393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4754", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T01:00:04" + }, + { + "id": "04bmjpgucb0lxeadho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T05:00:04", + "amountCrypto": 0.00005109, + "pricePerUnit": 1618632, + "totalCost": 82.7, + "fee": 0.29044871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4755", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T05:00:04" + }, + { + "id": "1za49jn6suf6eyfata", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T09:00:04", + "amountCrypto": 0.00005027, + "pricePerUnit": 1644180, + "totalCost": 82.65, + "fee": 0.29029781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4756", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T09:00:04" + }, + { + "id": "7yjocald9vbr6gk7o9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T13:00:03", + "amountCrypto": 0.00004993, + "pricePerUnit": 1656367, + "totalCost": 82.7, + "fee": 0.29047152, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4757", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T13:00:03" + }, + { + "id": "htw9uwipcrk8216fcr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T17:00:04", + "amountCrypto": 0.00004969, + "pricePerUnit": 1664324, + "totalCost": 82.7, + "fee": 0.29046399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4758", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T17:00:04" + }, + { + "id": "euxp4g75s836oc7y66", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-28T21:00:04", + "amountCrypto": 0.0000499, + "pricePerUnit": 1657300, + "totalCost": 82.7, + "fee": 0.29046051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4759", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-28T21:00:04" + }, + { + "id": "xam0r1vv5woknkvegp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T01:00:04", + "amountCrypto": 0.00004995, + "pricePerUnit": 1655865, + "totalCost": 82.71, + "fee": 0.2904998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4760", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T01:00:04" + }, + { + "id": "9zt1bh0ev6mmdoc5v0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T05:00:03", + "amountCrypto": 0.00005015, + "pricePerUnit": 1649204, + "totalCost": 82.71, + "fee": 0.2904897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4761", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T05:00:03" + }, + { + "id": "wa7fjiiwkyiujgmdy2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T09:00:04", + "amountCrypto": 0.00005051, + "pricePerUnit": 1637435, + "totalCost": 82.71, + "fee": 0.29048711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4762", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T09:00:04" + }, + { + "id": "6hb2musyuiaax865l1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T13:00:03", + "amountCrypto": 0.00005036, + "pricePerUnit": 1642141, + "totalCost": 82.7, + "fee": 0.29045683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4763", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T13:00:03" + }, + { + "id": "s3f3p7e0lw4lnjqv2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T17:00:04", + "amountCrypto": 0.0000511, + "pricePerUnit": 1618404, + "totalCost": 82.7, + "fee": 0.29046464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4764", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T17:00:04" + }, + { + "id": "fsjc9e4pxrav820z5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-29T21:00:03", + "amountCrypto": 0.00005089, + "pricePerUnit": 1625000, + "totalCost": 82.7, + "fee": 0.2904499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4765", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-29T21:00:03" + }, + { + "id": "sz7o6bdlsrleqnkhvh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T01:00:03", + "amountCrypto": 0.00005064, + "pricePerUnit": 1633005, + "totalCost": 82.7, + "fee": 0.29044682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4766", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T01:00:03" + }, + { + "id": "2jo9ajxdcvj6wti6d3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T05:00:03", + "amountCrypto": 0.00005068, + "pricePerUnit": 1631704, + "totalCost": 82.69, + "fee": 0.29044467, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4767", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T05:00:03" + }, + { + "id": "jrhff62sj70wwfmziy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T09:00:03", + "amountCrypto": 0.0000506, + "pricePerUnit": 1634546, + "totalCost": 82.71, + "fee": 0.29049127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4768", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T09:00:03" + }, + { + "id": "pcbwne5j1usvdc8egu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T13:00:03", + "amountCrypto": 0.00005046, + "pricePerUnit": 1638976, + "totalCost": 82.7, + "fee": 0.29047266, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T13:00:03" + }, + { + "id": "3egf8z3t2hx5cteu4x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T17:00:05", + "amountCrypto": 0.0000506, + "pricePerUnit": 1634418, + "totalCost": 82.7, + "fee": 0.29046852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T17:00:05" + }, + { + "id": "n50cgdr5vosd3dcudj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-30T21:00:03", + "amountCrypto": 0.0000505, + "pricePerUnit": 1637536, + "totalCost": 82.7, + "fee": 0.29044751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-30T21:00:03" + }, + { + "id": "qtufbyerfxocf9uc33", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T01:00:04", + "amountCrypto": 0.00005084, + "pricePerUnit": 1626866, + "totalCost": 82.71, + "fee": 0.29049773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T01:00:04" + }, + { + "id": "63k5pri9oa0c94piqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T06:00:03", + "amountCrypto": 0.00005058, + "pricePerUnit": 1635147, + "totalCost": 82.71, + "fee": 0.29048322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T06:00:03" + }, + { + "id": "963yumrlq316zt515g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T10:00:04", + "amountCrypto": 0.00005034, + "pricePerUnit": 1643035, + "totalCost": 82.71, + "fee": 0.29049954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T10:00:04" + }, + { + "id": "s7jmjn0yw99d6my5ov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T14:00:04", + "amountCrypto": 0.00005026, + "pricePerUnit": 1645381, + "totalCost": 82.7, + "fee": 0.29045201, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T14:00:04" + }, + { + "id": "czoekb1923xtbcx8ri", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T18:00:03", + "amountCrypto": 0.00005033, + "pricePerUnit": 1643098, + "totalCost": 82.7, + "fee": 0.29045297, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T18:00:03" + }, + { + "id": "i0al4ssp1ghww2eu7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-03-31T22:00:03", + "amountCrypto": 0.00004985, + "pricePerUnit": 1659171, + "totalCost": 82.71, + "fee": 0.29049705, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-03-31T22:00:03" + }, + { + "id": "3194k2jhravse7ador", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T02:00:04", + "amountCrypto": 0.00004972, + "pricePerUnit": 1663457, + "totalCost": 82.71, + "fee": 0.29048795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T02:00:04" + }, + { + "id": "q7ivlwun0jbml9r3yd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T06:00:04", + "amountCrypto": 0.00005005, + "pricePerUnit": 1652436, + "totalCost": 82.7, + "fee": 0.29047861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T06:00:04" + }, + { + "id": "t3qu5echn1v0jb3k0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T10:00:03", + "amountCrypto": 0.00005071, + "pricePerUnit": 1630921, + "totalCost": 82.7, + "fee": 0.29047714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T10:00:03" + }, + { + "id": "fe2xktlpyvxfc537gx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T14:00:03", + "amountCrypto": 0.00005073, + "pricePerUnit": 1630287, + "totalCost": 82.7, + "fee": 0.29047874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T14:00:03" + }, + { + "id": "6u2legthefx1rtsm62", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T18:00:04", + "amountCrypto": 0.00005149, + "pricePerUnit": 1606310, + "totalCost": 82.71, + "fee": 0.29049434, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T18:00:04" + }, + { + "id": "jq1vmv0u8r7ov08w55", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-01T22:00:04", + "amountCrypto": 0.00005044, + "pricePerUnit": 1639662, + "totalCost": 82.7, + "fee": 0.29047906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-01T22:00:04" + }, + { + "id": "7bj9kyqwisrm24ha2w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T02:00:03", + "amountCrypto": 0.00005043, + "pricePerUnit": 1640099, + "totalCost": 82.71, + "fee": 0.29049887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T02:00:03" + }, + { + "id": "k4jzg5eer9nco3s19n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T06:00:04", + "amountCrypto": 0.00005262, + "pricePerUnit": 1571703, + "totalCost": 82.7, + "fee": 0.29047365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T06:00:04" + }, + { + "id": "zs9mg0mmyjsepvajtx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T10:00:05", + "amountCrypto": 0.00005281, + "pricePerUnit": 1566090, + "totalCost": 82.71, + "fee": 0.29048138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T10:00:05" + }, + { + "id": "bwqh74htyv5bobs0ye", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T14:00:04", + "amountCrypto": 0.00005347, + "pricePerUnit": 1546693, + "totalCost": 82.7, + "fee": 0.29046896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T14:00:04" + }, + { + "id": "ht7xudsc4gp86pe38k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T18:00:04", + "amountCrypto": 0.00005413, + "pricePerUnit": 1527987, + "totalCost": 82.71, + "fee": 0.29049797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T18:00:04" + }, + { + "id": "yv6ai2hj9b2rhpcilw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-02T22:00:04", + "amountCrypto": 0.00005324, + "pricePerUnit": 1553353, + "totalCost": 82.7, + "fee": 0.29046488, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-02T22:00:04" + }, + { + "id": "2yjvdy6o5ct0edy0y9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T02:00:04", + "amountCrypto": 0.00005379, + "pricePerUnit": 1537446, + "totalCost": 82.7, + "fee": 0.29046034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T02:00:04" + }, + { + "id": "1kh26mibd1isk7vf0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T06:00:04", + "amountCrypto": 0.00005324, + "pricePerUnit": 1553319, + "totalCost": 82.7, + "fee": 0.29045852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T06:00:04" + }, + { + "id": "ol2h196otc0ez0v539", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T10:00:04", + "amountCrypto": 0.00005311, + "pricePerUnit": 1557324, + "totalCost": 82.71, + "fee": 0.29049636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4792", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T10:00:04" + }, + { + "id": "r26gc6phq51qad8a70", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T14:00:04", + "amountCrypto": 0.00005325, + "pricePerUnit": 1553219, + "totalCost": 82.71, + "fee": 0.29049438, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4793", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T14:00:04" + }, + { + "id": "pxasrty1bprpx831f6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T18:00:04", + "amountCrypto": 0.00005365, + "pricePerUnit": 1541656, + "totalCost": 82.71, + "fee": 0.29049765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4794", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T18:00:04" + }, + { + "id": "6et40ztfyi9v4i68vz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-03T22:00:05", + "amountCrypto": 0.00005371, + "pricePerUnit": 1539754, + "totalCost": 82.7, + "fee": 0.29046373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4795", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-03T22:00:05" + }, + { + "id": "fs5jc1gb73m3obenal", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T02:00:03", + "amountCrypto": 0.00005357, + "pricePerUnit": 1543709, + "totalCost": 82.7, + "fee": 0.29045075, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4796", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T02:00:03" + }, + { + "id": "sglxp5qutsw1oq5ar2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T06:00:04", + "amountCrypto": 0.00005387, + "pricePerUnit": 1535239, + "totalCost": 82.7, + "fee": 0.29047475, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T06:00:04" + }, + { + "id": "a9ot8ame1az3b97f4d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T10:00:04", + "amountCrypto": 0.00005368, + "pricePerUnit": 1540523, + "totalCost": 82.7, + "fee": 0.29044648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T10:00:04" + }, + { + "id": "m3w64684nzmhi7lhl4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T14:00:04", + "amountCrypto": 0.00005343, + "pricePerUnit": 1547902, + "totalCost": 82.7, + "fee": 0.29047854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T14:00:04" + }, + { + "id": "ukhadig3qys69g72dk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T18:00:03", + "amountCrypto": 0.00005244, + "pricePerUnit": 1577020, + "totalCost": 82.7, + "fee": 0.29045931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T18:00:03" + }, + { + "id": "a81m7mdwtr4ud5ngco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-04T22:00:03", + "amountCrypto": 0.00005168, + "pricePerUnit": 1600253, + "totalCost": 82.7, + "fee": 0.29046685, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-04T22:00:03" + }, + { + "id": "l1qdas7yynwnsusmun", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T02:00:03", + "amountCrypto": 0.00005172, + "pricePerUnit": 1599000, + "totalCost": 82.7, + "fee": 0.29046406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T02:00:03" + }, + { + "id": "jzqzjktdd9n1imc0y9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T06:00:04", + "amountCrypto": 0.00005206, + "pricePerUnit": 1588645, + "totalCost": 82.7, + "fee": 0.29048014, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T06:00:04" + }, + { + "id": "z6x6fjhwy6n20pznp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T10:00:03", + "amountCrypto": 0.00005298, + "pricePerUnit": 1561058, + "totalCost": 82.7, + "fee": 0.29048012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T10:00:03" + }, + { + "id": "gbgw3z2wb64aec8izs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T14:00:04", + "amountCrypto": 0.00005327, + "pricePerUnit": 1552478, + "totalCost": 82.7, + "fee": 0.29046484, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T14:00:04" + }, + { + "id": "8dvtwbsukwjnbnhqq4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T18:00:03", + "amountCrypto": 0.00005185, + "pricePerUnit": 1594999, + "totalCost": 82.7, + "fee": 0.29046553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T18:00:03" + }, + { + "id": "e07cvdd3hrkmqz4lm5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-05T22:00:04", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575099, + "totalCost": 82.71, + "fee": 0.29049275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-05T22:00:04" + }, + { + "id": "c5okibzer7p482e7yv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T02:00:05", + "amountCrypto": 0.00005215, + "pricePerUnit": 1585744, + "totalCost": 82.7, + "fee": 0.29045096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T02:00:05" + }, + { + "id": "lxpcoi9v1mrkg5r4vx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T06:00:04", + "amountCrypto": 0.00005223, + "pricePerUnit": 1583525, + "totalCost": 82.71, + "fee": 0.29048945, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T06:00:04" + }, + { + "id": "zp5n3g3kgygc5b5m0t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T10:00:03", + "amountCrypto": 0.00005204, + "pricePerUnit": 1589342, + "totalCost": 82.71, + "fee": 0.29049594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T10:00:03" + }, + { + "id": "bm2fn8pr4f0gc0c5i0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T14:00:04", + "amountCrypto": 0.00005228, + "pricePerUnit": 1581793, + "totalCost": 82.7, + "fee": 0.29044951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T14:00:04" + }, + { + "id": "1jlfaob9nskmzym8t8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T18:00:03", + "amountCrypto": 0.00005196, + "pricePerUnit": 1591562, + "totalCost": 82.7, + "fee": 0.29045451, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T18:00:03" + }, + { + "id": "kif2i33qc1a3e0kdcm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-06T22:00:04", + "amountCrypto": 0.00005184, + "pricePerUnit": 1595228, + "totalCost": 82.7, + "fee": 0.2904512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-06T22:00:04" + }, + { + "id": "10s12gy69doyzwsid3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T02:00:03", + "amountCrypto": 0.00005139, + "pricePerUnit": 1609266, + "totalCost": 82.7, + "fee": 0.29046371, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T02:00:03" + }, + { + "id": "ci02ydehdjx8fe6ypy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T06:00:04", + "amountCrypto": 0.0000511, + "pricePerUnit": 1618358, + "totalCost": 82.7, + "fee": 0.29045638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T06:00:04" + }, + { + "id": "oilugfs9u866yuc2by", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T10:00:03", + "amountCrypto": 0.00005105, + "pricePerUnit": 1620000, + "totalCost": 82.7, + "fee": 0.29046659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T10:00:03" + }, + { + "id": "798xsp3ltjdrdpc4rz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T14:00:03", + "amountCrypto": 0.00005104, + "pricePerUnit": 1620321, + "totalCost": 82.7, + "fee": 0.29046723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T14:00:03" + }, + { + "id": "vqij0o8pqdrqt6r306", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T18:00:04", + "amountCrypto": 0.00005095, + "pricePerUnit": 1623099, + "totalCost": 82.7, + "fee": 0.29045217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T18:00:04" + }, + { + "id": "7abafk68ku6exkb7et", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-07T22:00:04", + "amountCrypto": 0.00005134, + "pricePerUnit": 1610913, + "totalCost": 82.7, + "fee": 0.29047808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-07T22:00:04" + }, + { + "id": "jsupbdek69en0epgc0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T02:00:04", + "amountCrypto": 0.00005107, + "pricePerUnit": 1619525, + "totalCost": 82.71, + "fee": 0.29049518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T02:00:04" + }, + { + "id": "ud63u38snh4wj7wheq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T06:00:03", + "amountCrypto": 0.00005097, + "pricePerUnit": 1622654, + "totalCost": 82.71, + "fee": 0.29048652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T06:00:03" + }, + { + "id": "0vv39i28lcmnasu4a0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T10:00:03", + "amountCrypto": 0.00005013, + "pricePerUnit": 1649727, + "totalCost": 82.7, + "fee": 0.29046594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T10:00:03" + }, + { + "id": "igxycek9801ctc402o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T14:00:03", + "amountCrypto": 0.00004925, + "pricePerUnit": 1679173, + "totalCost": 82.7, + "fee": 0.29046049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T14:00:03" + }, + { + "id": "y6n0v2kf94wvxihm51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T18:00:03", + "amountCrypto": 0.0000494, + "pricePerUnit": 1674060, + "totalCost": 82.7, + "fee": 0.29045806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T18:00:03" + }, + { + "id": "08z51hduot271549sx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-08T22:00:04", + "amountCrypto": 0.00004955, + "pricePerUnit": 1669148, + "totalCost": 82.71, + "fee": 0.29048514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-08T22:00:04" + }, + { + "id": "1o87lu8e6g5tbcpzcd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T02:00:04", + "amountCrypto": 0.00005018, + "pricePerUnit": 1648184, + "totalCost": 82.71, + "fee": 0.29048368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T02:00:04" + }, + { + "id": "ntxj7il7gv3ltcjhvj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T06:00:03", + "amountCrypto": 0.00004967, + "pricePerUnit": 1665075, + "totalCost": 82.7, + "fee": 0.29047807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T06:00:03" + }, + { + "id": "md28v17c1rkj602z8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T10:00:03", + "amountCrypto": 0.0000503, + "pricePerUnit": 1644086, + "totalCost": 82.7, + "fee": 0.29045433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T10:00:03" + }, + { + "id": "w74sxb3d4pmnlfjn18", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T14:00:04", + "amountCrypto": 0.00005067, + "pricePerUnit": 1632180, + "totalCost": 82.7, + "fee": 0.29047209, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T14:00:04" + }, + { + "id": "8rywli5fgt26z1kc6u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T18:00:04", + "amountCrypto": 0.00005096, + "pricePerUnit": 1622852, + "totalCost": 82.7, + "fee": 0.29046495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T18:00:04" + }, + { + "id": "9ibqnbys7kw4uq5uco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-09T22:00:05", + "amountCrypto": 0.00005108, + "pricePerUnit": 1619147, + "totalCost": 82.71, + "fee": 0.2904842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-09T22:00:05" + }, + { + "id": "8rax2wqs6abdxdrr4i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T02:00:55", + "amountCrypto": 0.00005104, + "pricePerUnit": 1620485, + "totalCost": 82.71, + "fee": 0.29049664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T02:00:55" + }, + { + "id": "kl1rc9pkhzlgl2c8cm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T06:00:03", + "amountCrypto": 0.00005101, + "pricePerUnit": 1621427, + "totalCost": 82.71, + "fee": 0.29049472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T06:00:03" + }, + { + "id": "d7l6zb3bnfkxup4r2j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T10:00:03", + "amountCrypto": 0.00005087, + "pricePerUnit": 1625761, + "totalCost": 82.7, + "fee": 0.29047175, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T10:00:03" + }, + { + "id": "y0hpbkoffpujoa8tx2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T14:00:03", + "amountCrypto": 0.00005122, + "pricePerUnit": 1614713, + "totalCost": 82.71, + "fee": 0.29048269, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T14:00:03" + }, + { + "id": "qrkjwt16whukreah8q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T18:00:04", + "amountCrypto": 0.00005077, + "pricePerUnit": 1628810, + "totalCost": 82.69, + "fee": 0.29044436, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T18:00:04" + }, + { + "id": "us5tneahlxrfpe9bn7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-10T22:00:03", + "amountCrypto": 0.0000503, + "pricePerUnit": 1644086, + "totalCost": 82.7, + "fee": 0.29045433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-10T22:00:03" + }, + { + "id": "3npr1u75ynqhio65dj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T02:00:04", + "amountCrypto": 0.00004987, + "pricePerUnit": 1658421, + "totalCost": 82.71, + "fee": 0.29048229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T02:00:04" + }, + { + "id": "2p95lmtsmc2atz83rn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T06:00:04", + "amountCrypto": 0.00004987, + "pricePerUnit": 1658421, + "totalCost": 82.71, + "fee": 0.29048229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T06:00:04" + }, + { + "id": "yn7v46r68d3fpwsygz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T10:00:04", + "amountCrypto": 0.0000497, + "pricePerUnit": 1664136, + "totalCost": 82.71, + "fee": 0.29048954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T10:00:04" + }, + { + "id": "ze9yx1b2txe0s96eq8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T14:00:04", + "amountCrypto": 0.0000503, + "pricePerUnit": 1644086, + "totalCost": 82.7, + "fee": 0.29045433, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T14:00:04" + }, + { + "id": "tdk9suqviae2tvsbq9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T18:00:04", + "amountCrypto": 0.00004993, + "pricePerUnit": 1656486, + "totalCost": 82.71, + "fee": 0.2904923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T18:00:04" + }, + { + "id": "kdktfg1xnxtoiwz4yo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-11T22:00:04", + "amountCrypto": 0.00004985, + "pricePerUnit": 1655825, + "totalCost": 82.54, + "fee": 0.28991115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-11T22:00:04" + }, + { + "id": "qdfhschcnpqyg8il32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T02:00:03", + "amountCrypto": 0.00004991, + "pricePerUnit": 1657138, + "totalCost": 82.71, + "fee": 0.29049035, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T02:00:03" + }, + { + "id": "361fhsumpnc85zb62x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T06:00:03", + "amountCrypto": 0.00004975, + "pricePerUnit": 1662216, + "totalCost": 82.7, + "fee": 0.29044638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T06:00:03" + }, + { + "id": "n1da231r2uqgytcttd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T10:00:03", + "amountCrypto": 0.00004941, + "pricePerUnit": 1673768, + "totalCost": 82.7, + "fee": 0.29046624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T10:00:03" + }, + { + "id": "kgs4ip9g2r7kprevha", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T14:00:04", + "amountCrypto": 0.00004914, + "pricePerUnit": 1683032, + "totalCost": 82.7, + "fee": 0.29047788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T14:00:04" + }, + { + "id": "3tyw4krzpjl6qotwjf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T18:00:03", + "amountCrypto": 0.00005007, + "pricePerUnit": 1651895, + "totalCost": 82.71, + "fee": 0.29049956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T18:00:03" + }, + { + "id": "i3shf1apkwfiav34w7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-12T22:00:04", + "amountCrypto": 0.00005162, + "pricePerUnit": 1602203, + "totalCost": 82.71, + "fee": 0.29048309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-12T22:00:04" + }, + { + "id": "8yr91wsh4yrxmftfov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T02:00:03", + "amountCrypto": 0.00005139, + "pricePerUnit": 1609464, + "totalCost": 82.71, + "fee": 0.29049938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T02:00:03" + }, + { + "id": "iqvnmpskm2osheni0r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T06:00:04", + "amountCrypto": 0.0000515, + "pricePerUnit": 1606009, + "totalCost": 82.71, + "fee": 0.29049633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T06:00:04" + }, + { + "id": "b3k4v2svh47a2d2lk6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T10:00:04", + "amountCrypto": 0.00005119, + "pricePerUnit": 1615682, + "totalCost": 82.71, + "fee": 0.29048684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T10:00:04" + }, + { + "id": "jdkplhv4qeu7iwqdrn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T14:00:04", + "amountCrypto": 0.00005127, + "pricePerUnit": 1613007, + "totalCost": 82.7, + "fee": 0.29045919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T14:00:04" + }, + { + "id": "fbk3vrxgnkzdfvo6d1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T18:00:04", + "amountCrypto": 0.00005101, + "pricePerUnit": 1621156, + "totalCost": 82.7, + "fee": 0.29044605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T18:00:04" + }, + { + "id": "hbuxjdlpu5dh6v22jc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-13T22:00:05", + "amountCrypto": 0.00005327, + "pricePerUnit": 1552433, + "totalCost": 82.7, + "fee": 0.29045641, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-13T22:00:05" + }, + { + "id": "s0caikcfzgf7p5ot1m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-14T02:00:04", + "amountCrypto": 0.00005314, + "pricePerUnit": 1556414, + "totalCost": 82.71, + "fee": 0.29049058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-14T02:00:04" + }, + { + "id": "v178xo54iqrry1dl76", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-14T06:00:05", + "amountCrypto": 0.00005386, + "pricePerUnit": 1535598, + "totalCost": 82.71, + "fee": 0.29048876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-14T06:00:05" + }, + { + "id": "ao644ilv829g45gz2m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-14T10:00:03", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575014, + "totalCost": 82.7, + "fee": 0.29047708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-14T10:00:03" + }, + { + "id": "i7j779v19sgq8epxxe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-14T14:00:03", + "amountCrypto": 0.000053, + "pricePerUnit": 1560529, + "totalCost": 82.71, + "fee": 0.29049123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-14T14:00:03" + }, + { + "id": "7e4tgi7k0d0g251vlj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-15T10:00:04", + "amountCrypto": 0.00005202, + "pricePerUnit": 1589821, + "totalCost": 82.7, + "fee": 0.29047179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-15T10:00:04" + }, + { + "id": "zmtkaw8x0b8a4012nw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-15T14:00:03", + "amountCrypto": 0.00005247, + "pricePerUnit": 1576338, + "totalCost": 82.71, + "fee": 0.29049986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-15T14:00:03" + }, + { + "id": "9oh0tc5jh5tjxula3c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-15T18:00:06", + "amountCrypto": 0.00005364, + "pricePerUnit": 1541774, + "totalCost": 82.7, + "fee": 0.29046582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-15T18:00:06" + }, + { + "id": "xnwwreds3pq4682p1n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-15T22:00:04", + "amountCrypto": 0.00005449, + "pricePerUnit": 1517894, + "totalCost": 82.71, + "fee": 0.29049837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-15T22:00:04" + }, + { + "id": "tud9k8bq3u6bkcrh96", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T02:00:04", + "amountCrypto": 0.00005443, + "pricePerUnit": 1519376, + "totalCost": 82.7, + "fee": 0.29046175, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T02:00:04" + }, + { + "id": "37azwjv17zni2u0ktb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T06:00:04", + "amountCrypto": 0.00005436, + "pricePerUnit": 1521427, + "totalCost": 82.7, + "fee": 0.29047981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T06:00:04" + }, + { + "id": "5529pyoi2o1nm7otjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T10:00:04", + "amountCrypto": 0.00005431, + "pricePerUnit": 1522757, + "totalCost": 82.7, + "fee": 0.29046639, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T10:00:04" + }, + { + "id": "qrzmq20s3vscwsxr88", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T14:00:04", + "amountCrypto": 0.00005484, + "pricePerUnit": 1507965, + "totalCost": 82.7, + "fee": 0.29045192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T14:00:04" + }, + { + "id": "y7yc17kjhcpkwxtuy4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T18:00:04", + "amountCrypto": 0.00005593, + "pricePerUnit": 1478674, + "totalCost": 82.7, + "fee": 0.29047086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T18:00:04" + }, + { + "id": "tn2csbc5n3rwbchcs3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-16T22:00:04", + "amountCrypto": 0.00005518, + "pricePerUnit": 1498841, + "totalCost": 82.71, + "fee": 0.29048426, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-16T22:00:04" + }, + { + "id": "45nn4j79a0u1jh4wpl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T02:00:04", + "amountCrypto": 0.00005427, + "pricePerUnit": 1523784, + "totalCost": 82.7, + "fee": 0.29044813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T02:00:04" + }, + { + "id": "bv8t7nfe6gma1lu5ig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T06:00:04", + "amountCrypto": 0.00005427, + "pricePerUnit": 1523857, + "totalCost": 82.7, + "fee": 0.29046207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T06:00:04" + }, + { + "id": "46r3oq5gay0lhmffqb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T10:00:04", + "amountCrypto": 0.00005453, + "pricePerUnit": 1516637, + "totalCost": 82.7, + "fee": 0.29047085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T10:00:04" + }, + { + "id": "jv4bouc0n2ytvqj3kh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T14:00:04", + "amountCrypto": 0.00005518, + "pricePerUnit": 1498693, + "totalCost": 82.7, + "fee": 0.2904557, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T14:00:04" + }, + { + "id": "3ct8399aekmos5e9zz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T18:00:04", + "amountCrypto": 0.00005696, + "pricePerUnit": 1451972, + "totalCost": 82.7, + "fee": 0.29047832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T18:00:04" + }, + { + "id": "724cnt1n1m40rqb8fy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-17T22:00:04", + "amountCrypto": 0.00005681, + "pricePerUnit": 1455665, + "totalCost": 82.7, + "fee": 0.29045027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-17T22:00:04" + }, + { + "id": "gdousezfgfcbkcqmty", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T02:00:04", + "amountCrypto": 0.00005658, + "pricePerUnit": 1461675, + "totalCost": 82.7, + "fee": 0.29046867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T02:00:04" + }, + { + "id": "f5kjlqz83xud2v62c6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T06:00:04", + "amountCrypto": 0.00005601, + "pricePerUnit": 1476525, + "totalCost": 82.7, + "fee": 0.29046371, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T06:00:04" + }, + { + "id": "t9ot31zd39n0f58vj0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T10:00:03", + "amountCrypto": 0.00005674, + "pricePerUnit": 1457667, + "totalCost": 82.71, + "fee": 0.29049135, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T10:00:03" + }, + { + "id": "iwsq5pg0y1yz4hzbgv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T14:00:03", + "amountCrypto": 0.00005544, + "pricePerUnit": 1491733, + "totalCost": 82.7, + "fee": 0.29046898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T14:00:03" + }, + { + "id": "h15bkvwx4lw7xe27bm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T18:00:03", + "amountCrypto": 0.00005449, + "pricePerUnit": 1517876, + "totalCost": 82.71, + "fee": 0.29049492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T18:00:03" + }, + { + "id": "ck0dkv7hhj7zweqvtn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-18T22:00:03", + "amountCrypto": 0.00005452, + "pricePerUnit": 1516858, + "totalCost": 82.7, + "fee": 0.29045982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-18T22:00:03" + }, + { + "id": "63bjb7s991k3mofr3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T02:00:03", + "amountCrypto": 0.00005441, + "pricePerUnit": 1520009, + "totalCost": 82.7, + "fee": 0.2904761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T02:00:03" + }, + { + "id": "stk1vixg9e59cdbrqw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T06:00:04", + "amountCrypto": 0.00005587, + "pricePerUnit": 1480301, + "totalCost": 82.7, + "fee": 0.29047853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T06:00:04" + }, + { + "id": "kunc4l406cwedhlip6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T10:00:03", + "amountCrypto": 0.00005365, + "pricePerUnit": 1541664, + "totalCost": 82.71, + "fee": 0.29049919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T10:00:03" + }, + { + "id": "nv9fcqj24g3zeuexlc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T14:00:03", + "amountCrypto": 0.00005341, + "pricePerUnit": 1548548, + "totalCost": 82.71, + "fee": 0.29049105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T14:00:03" + }, + { + "id": "iz2mbdxrgalfmqtlm2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T18:00:04", + "amountCrypto": 0.00005378, + "pricePerUnit": 1537710, + "totalCost": 82.7, + "fee": 0.29045627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T18:00:04" + }, + { + "id": "kqyfl56qr2fhi28dfy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-19T22:00:03", + "amountCrypto": 0.00005389, + "pricePerUnit": 1534544, + "totalCost": 82.7, + "fee": 0.29045114, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-19T22:00:03" + }, + { + "id": "kczeltanxop4fbe5de", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T02:00:04", + "amountCrypto": 0.0000544, + "pricePerUnit": 1520392, + "totalCost": 82.71, + "fee": 0.29049589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T02:00:04" + }, + { + "id": "fmqwz5171hp8k23xgk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T06:00:04", + "amountCrypto": 0.00005416, + "pricePerUnit": 1526928, + "totalCost": 82.7, + "fee": 0.29045744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T06:00:04" + }, + { + "id": "6g0s90kybsawckypml", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T10:00:04", + "amountCrypto": 0.00005417, + "pricePerUnit": 1526647, + "totalCost": 82.7, + "fee": 0.29045767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T10:00:04" + }, + { + "id": "ks8zqya2ghb0cte726", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T14:00:03", + "amountCrypto": 0.00005444, + "pricePerUnit": 1519114, + "totalCost": 82.7, + "fee": 0.29046509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T14:00:03" + }, + { + "id": "y70ykyuqcfyj9oou3i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T18:00:03", + "amountCrypto": 0.00005353, + "pricePerUnit": 1544930, + "totalCost": 82.7, + "fee": 0.29046349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T18:00:03" + }, + { + "id": "2murnkt7ftzze2r70w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-20T22:00:03", + "amountCrypto": 0.00005349, + "pricePerUnit": 1546029, + "totalCost": 82.7, + "fee": 0.29045286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-20T22:00:03" + }, + { + "id": "qc15vg29t10huy2d18", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T02:00:04", + "amountCrypto": 0.00005341, + "pricePerUnit": 1548507, + "totalCost": 82.71, + "fee": 0.29048334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T02:00:04" + }, + { + "id": "w9ym8k2s8gx87a1xop", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T06:00:03", + "amountCrypto": 0.0000533, + "pricePerUnit": 1551674, + "totalCost": 82.7, + "fee": 0.29047792, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T06:00:03" + }, + { + "id": "qd76iye9gz0exjbdbe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T10:00:03", + "amountCrypto": 0.00005326, + "pricePerUnit": 1552771, + "totalCost": 82.7, + "fee": 0.29046508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T10:00:03" + }, + { + "id": "5aobxvotycd6bek8ti", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T14:00:04", + "amountCrypto": 0.00005316, + "pricePerUnit": 1555863, + "totalCost": 82.71, + "fee": 0.29049715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T14:00:04" + }, + { + "id": "86zhcavbtm94yv1z7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T18:00:03", + "amountCrypto": 0.00005334, + "pricePerUnit": 1550393, + "totalCost": 82.7, + "fee": 0.29045589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T18:00:03" + }, + { + "id": "vrnaudz4k3zttufw06", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-21T22:00:03", + "amountCrypto": 0.00005378, + "pricePerUnit": 1537868, + "totalCost": 82.71, + "fee": 0.290486, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-21T22:00:03" + }, + { + "id": "yb6kiylzy9pqexex55", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T02:00:04", + "amountCrypto": 0.00005345, + "pricePerUnit": 1547437, + "totalCost": 82.71, + "fee": 0.29049989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T02:00:04" + }, + { + "id": "j1n8df3w2ol95hqoyb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T06:00:04", + "amountCrypto": 0.00005284, + "pricePerUnit": 1565258, + "totalCost": 82.71, + "fee": 0.29049195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T06:00:04" + }, + { + "id": "38evojsmzsedtnpcni", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T10:00:04", + "amountCrypto": 0.0000524, + "pricePerUnit": 1578360, + "totalCost": 82.71, + "fee": 0.29048444, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T10:00:04" + }, + { + "id": "69jbhfy8fnbi0hy3cv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T14:00:03", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575037, + "totalCost": 82.71, + "fee": 0.29048133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T14:00:03" + }, + { + "id": "psrowuanhmz82v4m1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T18:00:04", + "amountCrypto": 0.00005256, + "pricePerUnit": 1573576, + "totalCost": 82.71, + "fee": 0.29048829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T18:00:04" + }, + { + "id": "3iy1p50127wpmv6ut8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-22T22:00:04", + "amountCrypto": 0.00005211, + "pricePerUnit": 1587098, + "totalCost": 82.7, + "fee": 0.290476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-22T22:00:04" + }, + { + "id": "t6wld23hxrpsjeaf63", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T02:00:04", + "amountCrypto": 0.00005192, + "pricePerUnit": 1592733, + "totalCost": 82.69, + "fee": 0.29044447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T02:00:04" + }, + { + "id": "ogh49grzdrwxwc0jrg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T06:00:04", + "amountCrypto": 0.00005217, + "pricePerUnit": 1585382, + "totalCost": 82.71, + "fee": 0.29049598, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T06:00:04" + }, + { + "id": "qatxuvavyptwsnksx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T10:00:04", + "amountCrypto": 0.00005244, + "pricePerUnit": 1577219, + "totalCost": 82.71, + "fee": 0.29049588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T10:00:04" + }, + { + "id": "dzkbasq62cc3c9gzjp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T14:00:03", + "amountCrypto": 0.00005263, + "pricePerUnit": 1571342, + "totalCost": 82.7, + "fee": 0.29046211, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T14:00:03" + }, + { + "id": "qcffms8xe0bb3nf398", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T18:00:04", + "amountCrypto": 0.00005254, + "pricePerUnit": 1574027, + "totalCost": 82.7, + "fee": 0.29046082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T18:00:04" + }, + { + "id": "tc9iluwiacbjwvnsh6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-23T22:00:03", + "amountCrypto": 0.00005251, + "pricePerUnit": 1574842, + "totalCost": 82.69, + "fee": 0.29044528, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-23T22:00:03" + }, + { + "id": "dyser98qt3bnc4vgqm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T02:00:04", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575061, + "totalCost": 82.71, + "fee": 0.29048577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T02:00:04" + }, + { + "id": "osgknbf8chx4b8f6wk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T06:00:04", + "amountCrypto": 0.0000524, + "pricePerUnit": 1578267, + "totalCost": 82.7, + "fee": 0.29046728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T06:00:04" + }, + { + "id": "r4x569067ksxn2nobt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T10:00:03", + "amountCrypto": 0.0000523, + "pricePerUnit": 1581354, + "totalCost": 82.7, + "fee": 0.29047995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T10:00:03" + }, + { + "id": "sfalknq21c5dal9e92", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T14:00:04", + "amountCrypto": 0.00005226, + "pricePerUnit": 1582670, + "totalCost": 82.71, + "fee": 0.29049939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T14:00:04" + }, + { + "id": "t2iksfoickdlu5vcfg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T18:00:09", + "amountCrypto": 0.00005377, + "pricePerUnit": 1538153, + "totalCost": 82.71, + "fee": 0.29048594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T18:00:09" + }, + { + "id": "htbc138f1sp7y47lnk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-24T22:00:03", + "amountCrypto": 0.00005446, + "pricePerUnit": 1518566, + "totalCost": 82.7, + "fee": 0.29046691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-24T22:00:03" + }, + { + "id": "bxkjw041wquq3atg5t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T02:00:04", + "amountCrypto": 0.00005413, + "pricePerUnit": 1527732, + "totalCost": 82.7, + "fee": 0.29044941, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T02:00:04" + }, + { + "id": "srdu3nsvh5vhmdosab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T06:00:03", + "amountCrypto": 0.00005413, + "pricePerUnit": 1527800, + "totalCost": 82.7, + "fee": 0.29046237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T06:00:03" + }, + { + "id": "j5s1afloavmiey4oax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T10:00:05", + "amountCrypto": 0.00005451, + "pricePerUnit": 1517195, + "totalCost": 82.7, + "fee": 0.29047122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T10:00:05" + }, + { + "id": "uruzm50i454fw2tfwx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T14:00:03", + "amountCrypto": 0.00005486, + "pricePerUnit": 1507551, + "totalCost": 82.7, + "fee": 0.29047807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T14:00:03" + }, + { + "id": "ou54dpd29eoqusxbs6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T18:00:03", + "amountCrypto": 0.00005469, + "pricePerUnit": 1512313, + "totalCost": 82.71, + "fee": 0.29049262, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T18:00:03" + }, + { + "id": "bcicl6q4i4ail04deu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-25T22:00:04", + "amountCrypto": 0.00005429, + "pricePerUnit": 1523262, + "totalCost": 82.7, + "fee": 0.29045576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-25T22:00:04" + }, + { + "id": "nr95yu4xbt4prpu5qx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T02:00:04", + "amountCrypto": 0.00005441, + "pricePerUnit": 1520102, + "totalCost": 82.71, + "fee": 0.29049373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T02:00:04" + }, + { + "id": "abhgeypu2dsqgtdv4i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T06:00:04", + "amountCrypto": 0.00005447, + "pricePerUnit": 1518426, + "totalCost": 82.71, + "fee": 0.29049359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T06:00:04" + }, + { + "id": "k0xjx7mgcat4r318ps", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T10:00:05", + "amountCrypto": 0.00005463, + "pricePerUnit": 1513808, + "totalCost": 82.7, + "fee": 0.29046072, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T10:00:05" + }, + { + "id": "tytvd0dibc2w0q4yfa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T14:00:04", + "amountCrypto": 0.00005455, + "pricePerUnit": 1516006, + "totalCost": 82.7, + "fee": 0.29045658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T14:00:04" + }, + { + "id": "9vpsy14b205i6sirx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T18:09:19", + "amountCrypto": 0.000055, + "pricePerUnit": 1503734, + "totalCost": 82.71, + "fee": 0.29048192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T18:09:19" + }, + { + "id": "przjzltg5q69wkdatt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T18:09:19", + "amountCrypto": 0.000055, + "pricePerUnit": 1503734, + "totalCost": 82.71, + "fee": 0.29048192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T18:09:19" + }, + { + "id": "qix1myo1euv5nqy4d1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T18:09:19", + "amountCrypto": 0.000055, + "pricePerUnit": 1503734, + "totalCost": 82.71, + "fee": 0.29048192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T18:09:19" + }, + { + "id": "5773rk7gn9m9esxswy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-26T22:00:04", + "amountCrypto": 0.00005479, + "pricePerUnit": 1509372, + "totalCost": 82.7, + "fee": 0.29045776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-26T22:00:04" + }, + { + "id": "3ju71vxser1rmnqemd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T02:00:03", + "amountCrypto": 0.00005476, + "pricePerUnit": 1510348, + "totalCost": 82.71, + "fee": 0.29048652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T02:00:03" + }, + { + "id": "7dxci3mpkintw2j8et", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T06:00:04", + "amountCrypto": 0.00005536, + "pricePerUnit": 1493861, + "totalCost": 82.7, + "fee": 0.29046366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T06:00:04" + }, + { + "id": "3to6dkmqlp0aj4q92h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T10:00:03", + "amountCrypto": 0.00005551, + "pricePerUnit": 1489758, + "totalCost": 82.7, + "fee": 0.2904507, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T10:00:03" + }, + { + "id": "rckuwl6w06qchzu4ng", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T14:00:03", + "amountCrypto": 0.00005551, + "pricePerUnit": 1489798, + "totalCost": 82.7, + "fee": 0.29045852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T14:00:03" + }, + { + "id": "75vy85xivc9bnpzqgk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T18:00:04", + "amountCrypto": 0.00005547, + "pricePerUnit": 1491048, + "totalCost": 82.71, + "fee": 0.29049277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T18:00:04" + }, + { + "id": "k7diw86dtzt6gb3vs4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-27T22:00:04", + "amountCrypto": 0.00005521, + "pricePerUnit": 1497974, + "totalCost": 82.7, + "fee": 0.29047404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-27T22:00:04" + }, + { + "id": "4v1a05d9dfu4u48kj1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T02:00:03", + "amountCrypto": 0.00005507, + "pricePerUnit": 1501859, + "totalCost": 82.71, + "fee": 0.29048903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T02:00:03" + }, + { + "id": "4yxypuuhvkwkxoecxv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T06:00:03", + "amountCrypto": 0.00005464, + "pricePerUnit": 1513647, + "totalCost": 82.71, + "fee": 0.29048291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T06:00:03" + }, + { + "id": "owmdocmm05kwi07ws2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T10:00:03", + "amountCrypto": 0.00005476, + "pricePerUnit": 1510330, + "totalCost": 82.71, + "fee": 0.29048305, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T10:00:03" + }, + { + "id": "pn274vetwgq4rkuupo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T14:00:04", + "amountCrypto": 0.0000551, + "pricePerUnit": 1501092, + "totalCost": 82.71, + "fee": 0.29049886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T14:00:04" + }, + { + "id": "dseslb5aljuved81py", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T18:00:03", + "amountCrypto": 0.00005503, + "pricePerUnit": 1502983, + "totalCost": 82.71, + "fee": 0.29049524, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T18:00:03" + }, + { + "id": "lyvqsv49wycocq2d7y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-28T22:00:04", + "amountCrypto": 0.00005484, + "pricePerUnit": 1508165, + "totalCost": 82.71, + "fee": 0.29049035, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-28T22:00:04" + }, + { + "id": "kope175ongpne9snla", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T02:00:03", + "amountCrypto": 0.00005539, + "pricePerUnit": 1493045, + "totalCost": 82.7, + "fee": 0.29046231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T02:00:03" + }, + { + "id": "gonlssnsurnep4f8ap", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T06:00:04", + "amountCrypto": 0.00005615, + "pricePerUnit": 1472882, + "totalCost": 82.7, + "fee": 0.29047129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T06:00:04" + }, + { + "id": "f3csfbr90q8x9eld0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T10:00:05", + "amountCrypto": 0.00005608, + "pricePerUnit": 1474778, + "totalCost": 82.71, + "fee": 0.29048256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T10:00:05" + }, + { + "id": "d33tnsfg88vqypgpuw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T14:00:03", + "amountCrypto": 0.00005635, + "pricePerUnit": 1467745, + "totalCost": 82.71, + "fee": 0.29048927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T14:00:03" + }, + { + "id": "z04g740j3e7q84c268", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T18:00:04", + "amountCrypto": 0.00005568, + "pricePerUnit": 1485354, + "totalCost": 82.7, + "fee": 0.29047896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T18:00:04" + }, + { + "id": "bu5bq8ati1yd5urrmz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-29T22:00:03", + "amountCrypto": 0.00005585, + "pricePerUnit": 1480784, + "totalCost": 82.7, + "fee": 0.29046933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-29T22:00:03" + }, + { + "id": "ki7cg2f1d8203shmdo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T02:00:04", + "amountCrypto": 0.00005509, + "pricePerUnit": 1501245, + "totalCost": 82.7, + "fee": 0.29047562, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T02:00:04" + }, + { + "id": "fi8xsxhqnpgkf131yt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T06:00:03", + "amountCrypto": 0.00005539, + "pricePerUnit": 1492980, + "totalCost": 82.7, + "fee": 0.29044963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T06:00:03" + }, + { + "id": "j0hw3yh2rkpe8frmgk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T10:00:03", + "amountCrypto": 0.00005544, + "pricePerUnit": 1491708, + "totalCost": 82.7, + "fee": 0.2904641, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T10:00:03" + }, + { + "id": "k473oex2nisvk51lep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T14:00:04", + "amountCrypto": 0.00005725, + "pricePerUnit": 1444598, + "totalCost": 82.7, + "fee": 0.29047443, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T14:00:04" + }, + { + "id": "ctd3zn5cc6xl10c5j4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T18:00:04", + "amountCrypto": 0.00005745, + "pricePerUnit": 1439687, + "totalCost": 82.71, + "fee": 0.29049821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T18:00:04" + }, + { + "id": "u1tc7wtn42ti3wcmgj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-04-30T22:00:04", + "amountCrypto": 0.00005891, + "pricePerUnit": 1403868, + "totalCost": 82.7, + "fee": 0.29046957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-04-30T22:00:04" + }, + { + "id": "a0y12h0r7w6wzhn6zq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T02:00:03", + "amountCrypto": 0.00005747, + "pricePerUnit": 1439088, + "totalCost": 82.7, + "fee": 0.29047854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T02:00:03" + }, + { + "id": "e8yf1tpsw6hzoffldl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T06:00:04", + "amountCrypto": 0.00005791, + "pricePerUnit": 1428132, + "totalCost": 82.7, + "fee": 0.29047405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T06:00:04" + }, + { + "id": "ebh7wbon075bpgy03k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T10:00:04", + "amountCrypto": 0.00006072, + "pricePerUnit": 1362033, + "totalCost": 82.7, + "fee": 0.29047231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T10:00:04" + }, + { + "id": "99bbdm1e640lpth1pn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T14:00:04", + "amountCrypto": 0.00006028, + "pricePerUnit": 1371899, + "totalCost": 82.7, + "fee": 0.29045636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T14:00:04" + }, + { + "id": "4yp5s46oyom5fcv327", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T18:00:03", + "amountCrypto": 0.00006148, + "pricePerUnit": 1345255, + "totalCost": 82.71, + "fee": 0.29048514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T18:00:03" + }, + { + "id": "y00uxnluqhg4elrz6s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-01T22:00:04", + "amountCrypto": 0.0000612, + "pricePerUnit": 1351444, + "totalCost": 82.71, + "fee": 0.29049258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-01T22:00:04" + }, + { + "id": "351aq6h8u26mb3kvam", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T02:00:04", + "amountCrypto": 0.00006011, + "pricePerUnit": 1375933, + "totalCost": 82.71, + "fee": 0.2904889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T02:00:04" + }, + { + "id": "g1m6gir5quvzpzpnab", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T06:00:04", + "amountCrypto": 0.00006111, + "pricePerUnit": 1353458, + "totalCost": 82.71, + "fee": 0.29049766, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T06:00:04" + }, + { + "id": "4ahs0f151x7rcljycx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T10:00:03", + "amountCrypto": 0.00006088, + "pricePerUnit": 1358450, + "totalCost": 82.7, + "fee": 0.2904716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T10:00:03" + }, + { + "id": "01wtwrxa8fy0i6odky", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T14:00:04", + "amountCrypto": 0.00005978, + "pricePerUnit": 1383545, + "totalCost": 82.71, + "fee": 0.29049235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T14:00:04" + }, + { + "id": "zazzcckeztssjj2oth", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T18:00:04", + "amountCrypto": 0.00005942, + "pricePerUnit": 1391897, + "totalCost": 82.71, + "fee": 0.29048597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T18:00:04" + }, + { + "id": "0hc6sppred58h8aod6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-02T22:00:04", + "amountCrypto": 0.00005948, + "pricePerUnit": 1390371, + "totalCost": 82.7, + "fee": 0.29046054, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-02T22:00:04" + }, + { + "id": "nb9zx8dfsg6d25thfc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T02:00:05", + "amountCrypto": 0.00005977, + "pricePerUnit": 1383782, + "totalCost": 82.71, + "fee": 0.29049342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T02:00:05" + }, + { + "id": "ybjme300zg8on52v4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T06:00:06", + "amountCrypto": 0.0000592, + "pricePerUnit": 1397042, + "totalCost": 82.7, + "fee": 0.29048019, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T06:00:06" + }, + { + "id": "k265s7hzt2arck2lya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T10:00:05", + "amountCrypto": 0.00005954, + "pricePerUnit": 1388941, + "totalCost": 82.7, + "fee": 0.29045439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T10:00:05" + }, + { + "id": "9m2529s9jccauug228", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T14:00:07", + "amountCrypto": 0.00005951, + "pricePerUnit": 1389804, + "totalCost": 82.71, + "fee": 0.29048845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T14:00:07" + }, + { + "id": "nf3r9483by6kv5jbby", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T18:00:08", + "amountCrypto": 0.00005726, + "pricePerUnit": 1444275, + "totalCost": 82.7, + "fee": 0.29046025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T18:00:08" + }, + { + "id": "dv3szpomnb4e9clzus", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-03T22:00:07", + "amountCrypto": 0.000057, + "pricePerUnit": 1450989, + "totalCost": 82.71, + "fee": 0.29048543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-03T22:00:07" + }, + { + "id": "8po43izy2x1lpyeukx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T02:00:05", + "amountCrypto": 0.00005614, + "pricePerUnit": 1473260, + "totalCost": 82.71, + "fee": 0.29049408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T02:00:05" + }, + { + "id": "bcjaxpw1cj5w1rltb4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T06:00:05", + "amountCrypto": 0.0000563, + "pricePerUnit": 1468963, + "totalCost": 82.7, + "fee": 0.29047217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T06:00:05" + }, + { + "id": "l11kvu4umw6yw41cwp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T10:00:04", + "amountCrypto": 0.000056, + "pricePerUnit": 1476882, + "totalCost": 82.71, + "fee": 0.29048205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T10:00:04" + }, + { + "id": "mv5cmozqrbnomly5ea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T14:00:06", + "amountCrypto": 0.0000554, + "pricePerUnit": 1492810, + "totalCost": 82.7, + "fee": 0.29046891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T14:00:06" + }, + { + "id": "cug1vzd0lysx4mcrsk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T18:00:05", + "amountCrypto": 0.00005552, + "pricePerUnit": 1489650, + "totalCost": 82.71, + "fee": 0.29048191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T18:00:05" + }, + { + "id": "rk15fcw7hzf9f5xn0i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-04T22:00:06", + "amountCrypto": 0.00005529, + "pricePerUnit": 1495681, + "totalCost": 82.7, + "fee": 0.29044972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-04T22:00:06" + }, + { + "id": "76enci81j89olohv93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T02:00:06", + "amountCrypto": 0.00005532, + "pricePerUnit": 1495029, + "totalCost": 82.71, + "fee": 0.29048071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T02:00:06" + }, + { + "id": "dq51k9s0gnqxxf6k6v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T06:00:06", + "amountCrypto": 0.00005588, + "pricePerUnit": 1479984, + "totalCost": 82.7, + "fee": 0.29046834, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T06:00:06" + }, + { + "id": "f0pfyjehsnuatl8r6k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T10:00:06", + "amountCrypto": 0.0000554, + "pricePerUnit": 1492702, + "totalCost": 82.7, + "fee": 0.29044804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T10:00:06" + }, + { + "id": "mu66y2iih4avbcgdko", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T14:00:06", + "amountCrypto": 0.00005537, + "pricePerUnit": 1493712, + "totalCost": 82.71, + "fee": 0.29048708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T14:00:06" + }, + { + "id": "7jv1v3cki0e4it2u2y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T18:00:04", + "amountCrypto": 0.000055, + "pricePerUnit": 1503737, + "totalCost": 82.71, + "fee": 0.2904825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T18:00:04" + }, + { + "id": "pddguq2su04konvlij", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-05T22:00:06", + "amountCrypto": 0.00005541, + "pricePerUnit": 1492656, + "totalCost": 82.71, + "fee": 0.29049149, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-05T22:00:06" + }, + { + "id": "55ieyksqin1n0lnfyl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T02:00:06", + "amountCrypto": 0.00005537, + "pricePerUnit": 1493712, + "totalCost": 82.71, + "fee": 0.29048708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T02:00:06" + }, + { + "id": "ff2x30kdfbtf9f37ot", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T06:00:06", + "amountCrypto": 0.0000555, + "pricePerUnit": 1490076, + "totalCost": 82.7, + "fee": 0.29046032, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T06:00:06" + }, + { + "id": "p1dbexq62w55krha68", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T10:00:07", + "amountCrypto": 0.000055, + "pricePerUnit": 1503737, + "totalCost": 82.71, + "fee": 0.2904825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T10:00:07" + }, + { + "id": "o9s1xfjbf1k5byld3i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T14:00:07", + "amountCrypto": 0.00005532, + "pricePerUnit": 1494999, + "totalCost": 82.7, + "fee": 0.29047486, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T14:00:07" + }, + { + "id": "74dimgzlnr9i3410zt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T18:00:06", + "amountCrypto": 0.00005581, + "pricePerUnit": 1481748, + "totalCost": 82.7, + "fee": 0.29045033, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T18:00:06" + }, + { + "id": "54ccf3qh7yvdpgf0nu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-06T22:00:05", + "amountCrypto": 0.00005613, + "pricePerUnit": 1473548, + "totalCost": 82.71, + "fee": 0.29049905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-06T22:00:05" + }, + { + "id": "xgwoe643ff7wfpljix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T02:00:05", + "amountCrypto": 0.00005616, + "pricePerUnit": 1472515, + "totalCost": 82.7, + "fee": 0.29045065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T02:00:05" + }, + { + "id": "r3rd95cdsyi4y1mx91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T06:00:05", + "amountCrypto": 0.00005615, + "pricePerUnit": 1472925, + "totalCost": 82.7, + "fee": 0.29047979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T06:00:05" + }, + { + "id": "7elnm8r3ftasq3ogpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T10:00:06", + "amountCrypto": 0.00005565, + "pricePerUnit": 1486114, + "totalCost": 82.7, + "fee": 0.29047098, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T10:00:06" + }, + { + "id": "bsc5f11ufxz7lxh65j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T14:00:05", + "amountCrypto": 0.00005586, + "pricePerUnit": 1480500, + "totalCost": 82.7, + "fee": 0.29046567, + "status": "completed", + "orderId": null, + "exchangeOrderId": "4999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T14:00:05" + }, + { + "id": "dddbu0s3qfqweczf6s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T18:00:07", + "amountCrypto": 0.00005565, + "pricePerUnit": 1485998, + "totalCost": 82.7, + "fee": 0.29044825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T18:00:07" + }, + { + "id": "00c5dm3c1rc3oxcygr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-07T22:00:05", + "amountCrypto": 0.00005614, + "pricePerUnit": 1473127, + "totalCost": 82.7, + "fee": 0.29046779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-07T22:00:05" + }, + { + "id": "58gx2qgzitje9heglu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T02:00:07", + "amountCrypto": 0.00005675, + "pricePerUnit": 1457391, + "totalCost": 82.71, + "fee": 0.2904874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T02:00:07" + }, + { + "id": "swds0zxz1rlijgo4uo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T06:00:08", + "amountCrypto": 0.00005619, + "pricePerUnit": 1471821, + "totalCost": 82.7, + "fee": 0.29046869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T06:00:08" + }, + { + "id": "mgypxjakun5hxe2g15", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T10:00:06", + "amountCrypto": 0.00005681, + "pricePerUnit": 1455807, + "totalCost": 82.7, + "fee": 0.29047848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T10:00:06" + }, + { + "id": "kgii0rvx0hhmtrjc2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T14:00:06", + "amountCrypto": 0.00005678, + "pricePerUnit": 1456483, + "totalCost": 82.7, + "fee": 0.29046003, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T14:00:06" + }, + { + "id": "lwiucoff3x0fsysb9b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T18:00:06", + "amountCrypto": 0.00005677, + "pricePerUnit": 1456684, + "totalCost": 82.7, + "fee": 0.29044885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T18:00:06" + }, + { + "id": "c6mh9jsgjxwsj5r3h1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-08T22:00:06", + "amountCrypto": 0.00005685, + "pricePerUnit": 1454665, + "totalCost": 82.7, + "fee": 0.29045501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-08T22:00:06" + }, + { + "id": "q77ptifjl7uwrqss40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T02:00:06", + "amountCrypto": 0.00005775, + "pricePerUnit": 1432142, + "totalCost": 82.71, + "fee": 0.29048485, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T02:00:06" + }, + { + "id": "wy5s694k8lk7ad8xcz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T06:00:08", + "amountCrypto": 0.00005733, + "pricePerUnit": 1442587, + "totalCost": 82.7, + "fee": 0.2904754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T06:00:08" + }, + { + "id": "6bxggf2mjcfbcgmt97", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T10:00:06", + "amountCrypto": 0.00005768, + "pricePerUnit": 1433751, + "totalCost": 82.7, + "fee": 0.29045871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T10:00:06" + }, + { + "id": "k0axy4pcaskpg4t6h1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T14:00:06", + "amountCrypto": 0.00005799, + "pricePerUnit": 1426257, + "totalCost": 82.71, + "fee": 0.29049351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T14:00:06" + }, + { + "id": "j2ciurtz85ib011a4f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T18:00:07", + "amountCrypto": 0.00005724, + "pricePerUnit": 1444749, + "totalCost": 82.7, + "fee": 0.29045412, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T18:00:07" + }, + { + "id": "e8n5jsd1qogs93xy12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-09T22:00:05", + "amountCrypto": 0.00005706, + "pricePerUnit": 1449297, + "totalCost": 82.7, + "fee": 0.29045207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-09T22:00:05" + }, + { + "id": "25gxjeabtthw31x4v9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T02:00:08", + "amountCrypto": 0.0000565, + "pricePerUnit": 1463862, + "totalCost": 82.71, + "fee": 0.29049185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T02:00:08" + }, + { + "id": "rkyuj1oc5fvts6wxy8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T06:00:06", + "amountCrypto": 0.00005667, + "pricePerUnit": 1459492, + "totalCost": 82.71, + "fee": 0.29049612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T06:00:06" + }, + { + "id": "byy727elanie9pvouz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T10:00:06", + "amountCrypto": 0.00005643, + "pricePerUnit": 1465642, + "totalCost": 82.71, + "fee": 0.29048482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T10:00:06" + }, + { + "id": "0s55yc5x16wmnk898t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T14:00:07", + "amountCrypto": 0.00005634, + "pricePerUnit": 1467946, + "totalCost": 82.7, + "fee": 0.29047739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T14:00:07" + }, + { + "id": "bh1zlo35exgmiupako", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T18:00:08", + "amountCrypto": 0.00005838, + "pricePerUnit": 1416742, + "totalCost": 82.71, + "fee": 0.29049603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T18:00:08" + }, + { + "id": "sl8wjsmpirv4437tie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-10T22:00:04", + "amountCrypto": 0.00005863, + "pricePerUnit": 1410659, + "totalCost": 82.71, + "fee": 0.29048736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-10T22:00:04" + }, + { + "id": "6n66xgg3hms97hwf5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T02:00:05", + "amountCrypto": 0.00005846, + "pricePerUnit": 1414813, + "totalCost": 82.71, + "fee": 0.29049807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T02:00:05" + }, + { + "id": "s3kuzmuan9448akpxo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T06:00:07", + "amountCrypto": 0.00005854, + "pricePerUnit": 1412742, + "totalCost": 82.7, + "fee": 0.29046976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T06:00:07" + }, + { + "id": "qaqcnqt3u9jgyazw9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T10:00:04", + "amountCrypto": 0.00005829, + "pricePerUnit": 1418796, + "totalCost": 82.7, + "fee": 0.29046873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T10:00:04" + }, + { + "id": "347cox3tk2x22p7knn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T14:00:05", + "amountCrypto": 0.00005857, + "pricePerUnit": 1412088, + "totalCost": 82.71, + "fee": 0.29048416, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T14:00:05" + }, + { + "id": "nqyh17npa0be8ok4n1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T18:00:04", + "amountCrypto": 0.00005815, + "pricePerUnit": 1422134, + "totalCost": 82.7, + "fee": 0.29045289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T18:00:04" + }, + { + "id": "ht0y6p20dkzdkcpj3d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-11T22:00:04", + "amountCrypto": 0.00005815, + "pricePerUnit": 1422137, + "totalCost": 82.7, + "fee": 0.29045352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-11T22:00:04" + }, + { + "id": "9kfeo8ggqxujisf8jk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T02:00:06", + "amountCrypto": 0.00005845, + "pricePerUnit": 1415048, + "totalCost": 82.71, + "fee": 0.29049654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T02:00:06" + }, + { + "id": "fqu1cj5dricm1o8kkp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T06:00:06", + "amountCrypto": 0.00005833, + "pricePerUnit": 1417859, + "totalCost": 82.7, + "fee": 0.29047602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T06:00:06" + }, + { + "id": "d3d70e0irzen1yg1jm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T10:00:05", + "amountCrypto": 0.00005848, + "pricePerUnit": 1414332, + "totalCost": 82.71, + "fee": 0.29049862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T10:00:05" + }, + { + "id": "bf6l223ug35uq63p4m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T14:00:05", + "amountCrypto": 0.00005814, + "pricePerUnit": 1422588, + "totalCost": 82.71, + "fee": 0.29049567, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T14:00:05" + }, + { + "id": "ftj72x23yriz5sm5q0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T18:00:06", + "amountCrypto": 0.00005791, + "pricePerUnit": 1428019, + "totalCost": 82.7, + "fee": 0.29045101, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T18:00:06" + }, + { + "id": "xdn1ihe0xm3ei0rnmn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-12T22:00:05", + "amountCrypto": 0.00005792, + "pricePerUnit": 1427848, + "totalCost": 82.7, + "fee": 0.2904665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-12T22:00:05" + }, + { + "id": "o47ms4qmx1bs7n5vwu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T02:00:07", + "amountCrypto": 0.00005785, + "pricePerUnit": 1429680, + "totalCost": 82.71, + "fee": 0.29048759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T02:00:07" + }, + { + "id": "53soahbgg2vx7tavlt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T06:00:07", + "amountCrypto": 0.00005815, + "pricePerUnit": 1422164, + "totalCost": 82.7, + "fee": 0.29045903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T06:00:07" + }, + { + "id": "2xkq962js9kgdqjnjj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T10:00:08", + "amountCrypto": 0.00005731, + "pricePerUnit": 1443035, + "totalCost": 82.7, + "fee": 0.29046427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T10:00:08" + }, + { + "id": "h1vs4wnroabqbo9lo5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T14:00:06", + "amountCrypto": 0.0000571, + "pricePerUnit": 1448422, + "totalCost": 82.7, + "fee": 0.29048036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T14:00:06" + }, + { + "id": "foqf6bn47bvl229r87", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T18:00:07", + "amountCrypto": 0.0000568, + "pricePerUnit": 1456127, + "totalCost": 82.71, + "fee": 0.29049114, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T18:00:07" + }, + { + "id": "4s8myfw4obfp4g6yfw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-13T22:00:06", + "amountCrypto": 0.00005683, + "pricePerUnit": 1455287, + "totalCost": 82.7, + "fee": 0.29047689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-13T22:00:06" + }, + { + "id": "s18fuxjgkxs0zc9jj6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T02:00:05", + "amountCrypto": 0.0000569, + "pricePerUnit": 1453540, + "totalCost": 82.71, + "fee": 0.29048568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T02:00:05" + }, + { + "id": "qjbbbhnnkwbd1r5woq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T06:00:06", + "amountCrypto": 0.00005728, + "pricePerUnit": 1443805, + "totalCost": 82.7, + "fee": 0.29046711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T06:00:06" + }, + { + "id": "fczwxz4lwmxqyvgxy4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T10:00:06", + "amountCrypto": 0.00005776, + "pricePerUnit": 1431789, + "totalCost": 82.7, + "fee": 0.29046357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T10:00:06" + }, + { + "id": "6n0luu7gemergu5lzg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T14:00:05", + "amountCrypto": 0.00005806, + "pricePerUnit": 1424393, + "totalCost": 82.7, + "fee": 0.29046393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T14:00:05" + }, + { + "id": "bby10x8pp4hgzp0bco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T18:00:07", + "amountCrypto": 0.00005823, + "pricePerUnit": 1420324, + "totalCost": 82.71, + "fee": 0.2904822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T18:00:07" + }, + { + "id": "u6yfq71sgo21ayyb3k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-14T22:00:05", + "amountCrypto": 0.00005837, + "pricePerUnit": 1416981, + "totalCost": 82.71, + "fee": 0.29049539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-14T22:00:05" + }, + { + "id": "sk4zog2cm1gyhmt9i1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T02:00:05", + "amountCrypto": 0.00005835, + "pricePerUnit": 1417367, + "totalCost": 82.7, + "fee": 0.29047495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T02:00:05" + }, + { + "id": "lll0ydv37zmh1utgl5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T06:00:08", + "amountCrypto": 0.00005807, + "pricePerUnit": 1424193, + "totalCost": 82.7, + "fee": 0.29047327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T06:00:08" + }, + { + "id": "2bwpwp4tzs59kd263t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T10:00:05", + "amountCrypto": 0.00005778, + "pricePerUnit": 1431393, + "totalCost": 82.71, + "fee": 0.29048378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T10:00:05" + }, + { + "id": "t7lxzszlv9hxjybla0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T14:00:04", + "amountCrypto": 0.00005776, + "pricePerUnit": 1431844, + "totalCost": 82.7, + "fee": 0.29047475, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T14:00:04" + }, + { + "id": "a8nezzd7a8qjhgxqm0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T18:00:05", + "amountCrypto": 0.00005611, + "pricePerUnit": 1473862, + "totalCost": 82.7, + "fee": 0.29045738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T18:00:05" + }, + { + "id": "aqettnyw3t39isppm5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-15T22:00:06", + "amountCrypto": 0.00005569, + "pricePerUnit": 1485164, + "totalCost": 82.71, + "fee": 0.29049388, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-15T22:00:06" + }, + { + "id": "lsrrfeudim5hu7bue9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T02:00:04", + "amountCrypto": 0.00005544, + "pricePerUnit": 1491707, + "totalCost": 82.7, + "fee": 0.29046391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T02:00:04" + }, + { + "id": "sctjd48dmn4xrhq0vy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T06:00:07", + "amountCrypto": 0.00005544, + "pricePerUnit": 1491707, + "totalCost": 82.7, + "fee": 0.29046391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T06:00:07" + }, + { + "id": "w4y2jnnav14q31sy6b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T10:00:05", + "amountCrypto": 0.0000554, + "pricePerUnit": 1492710, + "totalCost": 82.7, + "fee": 0.2904494, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T10:00:05" + }, + { + "id": "dz5fch50q6g2o90809", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T14:00:07", + "amountCrypto": 0.000055, + "pricePerUnit": 1503737, + "totalCost": 82.71, + "fee": 0.2904825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T14:00:07" + }, + { + "id": "63om6ogsok6hxlu5gh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T18:00:07", + "amountCrypto": 0.00005516, + "pricePerUnit": 1499329, + "totalCost": 82.7, + "fee": 0.29047356, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T18:00:07" + }, + { + "id": "qv7obqoytjf2hljgue", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-16T22:00:06", + "amountCrypto": 0.00005565, + "pricePerUnit": 1486028, + "totalCost": 82.7, + "fee": 0.29045413, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-16T22:00:06" + }, + { + "id": "70v3b2y0w635jmuhrz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T02:00:05", + "amountCrypto": 0.0000556, + "pricePerUnit": 1487518, + "totalCost": 82.71, + "fee": 0.29048408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T02:00:05" + }, + { + "id": "migmm3jj6npm79ekm6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T06:00:05", + "amountCrypto": 0.00005532, + "pricePerUnit": 1494976, + "totalCost": 82.7, + "fee": 0.29047038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T06:00:05" + }, + { + "id": "mv3dnbgwxhi5h00lsz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T10:00:07", + "amountCrypto": 0.000055, + "pricePerUnit": 1503737, + "totalCost": 82.71, + "fee": 0.2904825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T10:00:07" + }, + { + "id": "pa8x6lsr1n3svxo5xk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T14:00:07", + "amountCrypto": 0.00005482, + "pricePerUnit": 1508708, + "totalCost": 82.71, + "fee": 0.29048902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T14:00:07" + }, + { + "id": "0igzjrv9pxd9sihsyr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T18:00:07", + "amountCrypto": 0.00005397, + "pricePerUnit": 1532416, + "totalCost": 82.7, + "fee": 0.29047889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T18:00:07" + }, + { + "id": "x318i6r681b85u2jx5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-17T22:00:05", + "amountCrypto": 0.00005424, + "pricePerUnit": 1524854, + "totalCost": 82.71, + "fee": 0.29049153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-17T22:00:05" + }, + { + "id": "45cwq2uhh24ir33m4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T02:00:04", + "amountCrypto": 0.00005424, + "pricePerUnit": 1524712, + "totalCost": 82.7, + "fee": 0.29046441, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T02:00:04" + }, + { + "id": "8d8ygkezaawrclsugo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T06:00:05", + "amountCrypto": 0.00005424, + "pricePerUnit": 1524772, + "totalCost": 82.7, + "fee": 0.29047587, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T06:00:05" + }, + { + "id": "hk2wjv9rjbe0j89nup", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T10:00:05", + "amountCrypto": 0.00005429, + "pricePerUnit": 1523289, + "totalCost": 82.7, + "fee": 0.29046073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T10:00:05" + }, + { + "id": "uu9gdik7nufbwdz084", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T14:00:06", + "amountCrypto": 0.000054, + "pricePerUnit": 1531508, + "totalCost": 82.7, + "fee": 0.29046809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T14:00:06" + }, + { + "id": "5yclwsdkhyrrx5pskl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T18:00:05", + "amountCrypto": 0.00005432, + "pricePerUnit": 1522468, + "totalCost": 82.7, + "fee": 0.29046479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T18:00:05" + }, + { + "id": "sdej42ln5hw6wsmozo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-18T22:00:06", + "amountCrypto": 0.00005432, + "pricePerUnit": 1522529, + "totalCost": 82.7, + "fee": 0.29047626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-18T22:00:06" + }, + { + "id": "lgcnxfry7kglrf09fq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T02:00:06", + "amountCrypto": 0.0000543, + "pricePerUnit": 1522992, + "totalCost": 82.7, + "fee": 0.29045764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T02:00:06" + }, + { + "id": "x8i0zrbvr596rk8ka3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T06:00:06", + "amountCrypto": 0.00005411, + "pricePerUnit": 1528399, + "totalCost": 82.7, + "fee": 0.29046898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T06:00:06" + }, + { + "id": "8g6078dvr4kahsoaa7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T10:00:07", + "amountCrypto": 0.00005408, + "pricePerUnit": 1529378, + "totalCost": 82.71, + "fee": 0.29049378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T10:00:07" + }, + { + "id": "pdms0ogcm06kecj125", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T14:00:05", + "amountCrypto": 0.00005394, + "pricePerUnit": 1533377, + "totalCost": 82.71, + "fee": 0.29049937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T14:00:05" + }, + { + "id": "27uzcw5qe08tfbxta7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T18:00:06", + "amountCrypto": 0.00005431, + "pricePerUnit": 1522706, + "totalCost": 82.7, + "fee": 0.29045663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T18:00:06" + }, + { + "id": "wrsyob1z6x3l09udye", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-19T22:00:06", + "amountCrypto": 0.000055, + "pricePerUnit": 1503589, + "totalCost": 82.7, + "fee": 0.29045384, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-19T22:00:06" + }, + { + "id": "gda1s02bis7yngy5f1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T02:00:07", + "amountCrypto": 0.00005477, + "pricePerUnit": 1510085, + "totalCost": 82.71, + "fee": 0.29048885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T02:00:07" + }, + { + "id": "104lini5h4hrcbblz9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T06:00:06", + "amountCrypto": 0.00005446, + "pricePerUnit": 1518624, + "totalCost": 82.7, + "fee": 0.29047803, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T06:00:06" + }, + { + "id": "smnqwi7bgkah4wqjoi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T10:00:05", + "amountCrypto": 0.00005434, + "pricePerUnit": 1521828, + "totalCost": 82.7, + "fee": 0.29044947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T10:00:05" + }, + { + "id": "xre5f240czjmxm1e56", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T14:00:06", + "amountCrypto": 0.00005409, + "pricePerUnit": 1528869, + "totalCost": 82.7, + "fee": 0.29045094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T14:00:06" + }, + { + "id": "mbyj3wahre9nnhkvl0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T18:00:07", + "amountCrypto": 0.00005385, + "pricePerUnit": 1535739, + "totalCost": 82.7, + "fee": 0.29046156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T18:00:07" + }, + { + "id": "1e8fmyrjeb94oby5ac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-20T22:00:07", + "amountCrypto": 0.00005203, + "pricePerUnit": 1589426, + "totalCost": 82.7, + "fee": 0.29045545, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-20T22:00:07" + }, + { + "id": "9xqfmxfxjjs1p3ywnp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T02:00:06", + "amountCrypto": 0.00005192, + "pricePerUnit": 1592959, + "totalCost": 82.71, + "fee": 0.2904856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T02:00:06" + }, + { + "id": "7pjf6jv9s0xvb28r3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T06:00:06", + "amountCrypto": 0.00005228, + "pricePerUnit": 1581979, + "totalCost": 82.71, + "fee": 0.29048373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T06:00:06" + }, + { + "id": "05xi3zk9mxrph40scz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T10:00:05", + "amountCrypto": 0.00005142, + "pricePerUnit": 1608322, + "totalCost": 82.7, + "fee": 0.29046275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T10:00:05" + }, + { + "id": "aqaqbty2xi4ruklo06", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T14:00:05", + "amountCrypto": 0.00005113, + "pricePerUnit": 1617388, + "totalCost": 82.7, + "fee": 0.29045277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T14:00:05" + }, + { + "id": "gp2rvzrw8hs4sr357w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T18:00:06", + "amountCrypto": 0.00005195, + "pricePerUnit": 1591980, + "totalCost": 82.7, + "fee": 0.29047492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T18:00:06" + }, + { + "id": "odyhpt9ruhb7djk0hu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-21T22:00:05", + "amountCrypto": 0.00005238, + "pricePerUnit": 1579000, + "totalCost": 82.71, + "fee": 0.29049124, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-21T22:00:05" + }, + { + "id": "c6r7e7epmhqv6o0kl4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T02:00:05", + "amountCrypto": 0.00005174, + "pricePerUnit": 1598347, + "totalCost": 82.7, + "fee": 0.29045772, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T02:00:05" + }, + { + "id": "ce33677mui9huo97hp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T06:00:05", + "amountCrypto": 0.00005185, + "pricePerUnit": 1595153, + "totalCost": 82.71, + "fee": 0.29049359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T06:00:05" + }, + { + "id": "hkjpar9k5knoqcx6j9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T10:00:05", + "amountCrypto": 0.000052, + "pricePerUnit": 1590503, + "totalCost": 82.71, + "fee": 0.29048461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T10:00:05" + }, + { + "id": "wl0fgtvjel6mmjaur0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T14:00:06", + "amountCrypto": 0.00005185, + "pricePerUnit": 1594965, + "totalCost": 82.7, + "fee": 0.29045927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T14:00:06" + }, + { + "id": "9o3s711vuh5sv1g302", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T18:00:06", + "amountCrypto": 0.00005148, + "pricePerUnit": 1606374, + "totalCost": 82.7, + "fee": 0.29044949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T18:00:06" + }, + { + "id": "wfe3yg1t9o8byv5ba2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-22T22:00:06", + "amountCrypto": 0.00005201, + "pricePerUnit": 1590036, + "totalCost": 82.7, + "fee": 0.29045532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-22T22:00:06" + }, + { + "id": "d6ryz2zgjwwzhdaiui", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-23T18:00:06", + "amountCrypto": 0.00005301, + "pricePerUnit": 1560058, + "totalCost": 82.7, + "fee": 0.2904584, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-23T18:00:06" + }, + { + "id": "5glfk3ttpt6yi4p4v6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-23T22:00:05", + "amountCrypto": 0.00005365, + "pricePerUnit": 1541607, + "totalCost": 82.71, + "fee": 0.29048842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-23T22:00:05" + }, + { + "id": "227ent9pqaf3it90rz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T02:00:07", + "amountCrypto": 0.00005312, + "pricePerUnit": 1556893, + "totalCost": 82.7, + "fee": 0.29047065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T02:00:07" + }, + { + "id": "3r20xnjl26srgy16dk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T06:00:05", + "amountCrypto": 0.00005317, + "pricePerUnit": 1555403, + "totalCost": 82.7, + "fee": 0.29046586, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T06:00:05" + }, + { + "id": "ra411m6rzofnoe3wir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T10:00:05", + "amountCrypto": 0.00005376, + "pricePerUnit": 1538357, + "totalCost": 82.7, + "fee": 0.29047034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T10:00:05" + }, + { + "id": "5a8hebkr1ul85ds5zv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T14:00:06", + "amountCrypto": 0.00005364, + "pricePerUnit": 1541773, + "totalCost": 82.7, + "fee": 0.29046563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T14:00:06" + }, + { + "id": "yn9ibiiea9sm2j46qg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T18:00:05", + "amountCrypto": 0.00005313, + "pricePerUnit": 1556468, + "totalCost": 82.7, + "fee": 0.29044602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T18:00:05" + }, + { + "id": "ia15xunxx85uuft0em", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-24T22:00:06", + "amountCrypto": 0.00005254, + "pricePerUnit": 1574109, + "totalCost": 82.7, + "fee": 0.29047599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-24T22:00:06" + }, + { + "id": "elr0urz66stejo7hnf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T02:00:05", + "amountCrypto": 0.00005295, + "pricePerUnit": 1561994, + "totalCost": 82.71, + "fee": 0.29048965, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T02:00:05" + }, + { + "id": "6yxh3ojzxl5snvkhx5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T06:00:05", + "amountCrypto": 0.00005274, + "pricePerUnit": 1568153, + "totalCost": 82.7, + "fee": 0.29047849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T06:00:05" + }, + { + "id": "ph5pcvy95gjd6m6xv5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T10:00:05", + "amountCrypto": 0.00005277, + "pricePerUnit": 1567192, + "totalCost": 82.7, + "fee": 0.29046554, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T10:00:05" + }, + { + "id": "52776d65y8f0emzezz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T14:00:07", + "amountCrypto": 0.00005247, + "pricePerUnit": 1576225, + "totalCost": 82.7, + "fee": 0.29047898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T14:00:07" + }, + { + "id": "eblnq0guif07meqpoc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T18:00:05", + "amountCrypto": 0.00005263, + "pricePerUnit": 1571342, + "totalCost": 82.7, + "fee": 0.29046211, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T18:00:05" + }, + { + "id": "fsuhsvzl96knj1kz40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-25T22:00:05", + "amountCrypto": 0.00005246, + "pricePerUnit": 1576434, + "totalCost": 82.7, + "fee": 0.29046204, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-25T22:00:05" + }, + { + "id": "zqbl9ttidua1sk67m9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T02:00:05", + "amountCrypto": 0.00005238, + "pricePerUnit": 1578959, + "totalCost": 82.71, + "fee": 0.29048367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T02:00:05" + }, + { + "id": "tn5sg6dl8e89mv8e25", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T06:00:07", + "amountCrypto": 0.0000525, + "pricePerUnit": 1575242, + "totalCost": 82.7, + "fee": 0.29046372, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T06:00:07" + }, + { + "id": "4ndqvpitwnjtfobi2f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T10:00:05", + "amountCrypto": 0.00005233, + "pricePerUnit": 1580481, + "totalCost": 82.71, + "fee": 0.29048609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T10:00:05" + }, + { + "id": "18pl8vprgnxv2y0e3y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T14:00:05", + "amountCrypto": 0.00005251, + "pricePerUnit": 1574894, + "totalCost": 82.7, + "fee": 0.29045489, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T14:00:05" + }, + { + "id": "yx0mzca6y7iufjy6s7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T18:00:05", + "amountCrypto": 0.00005272, + "pricePerUnit": 1568608, + "totalCost": 82.7, + "fee": 0.29045261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T18:00:05" + }, + { + "id": "krzg89nexb3urci1fg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-26T22:00:05", + "amountCrypto": 0.00005279, + "pricePerUnit": 1566759, + "totalCost": 82.71, + "fee": 0.29049533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-26T22:00:05" + }, + { + "id": "t0wmk45nfbm9tad0b5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-27T02:00:06", + "amountCrypto": 0.00005303, + "pricePerUnit": 1559561, + "totalCost": 82.7, + "fee": 0.29047537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-27T02:00:06" + }, + { + "id": "01yedjnfbjdq6nsl69", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-27T06:00:05", + "amountCrypto": 0.00005274, + "pricePerUnit": 1568262, + "totalCost": 82.71, + "fee": 0.29049873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-27T06:00:05" + }, + { + "id": "3tt5rgjkn5s353izm2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-27T10:00:05", + "amountCrypto": 0.00005283, + "pricePerUnit": 1565595, + "totalCost": 82.71, + "fee": 0.29049948, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-27T10:00:05" + }, + { + "id": "pexfgfkk2qe3iakto5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-27T14:00:05", + "amountCrypto": 0.00005295, + "pricePerUnit": 1561756, + "totalCost": 82.69, + "fee": 0.29044546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-27T14:00:05" + }, + { + "id": "ovsj2rgfccaq3rxznf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-27T18:00:06", + "amountCrypto": 0.00005155, + "pricePerUnit": 1604187, + "totalCost": 82.7, + "fee": 0.29044838, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-27T18:00:06" + }, + { + "id": "85qp7g9b8b3etailtq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-27T22:00:05", + "amountCrypto": 0.00005236, + "pricePerUnit": 1579484, + "totalCost": 82.7, + "fee": 0.29046936, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-27T22:00:05" + }, + { + "id": "yj8fluwqxqynrjgrgf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-28T02:00:06", + "amountCrypto": 0.00005231, + "pricePerUnit": 1581021, + "totalCost": 82.7, + "fee": 0.29047434, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-28T02:00:06" + }, + { + "id": "ly6b8wfm25iba6wy96", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-28T06:00:05", + "amountCrypto": 0.00005339, + "pricePerUnit": 1549165, + "totalCost": 82.71, + "fee": 0.29049788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-28T06:00:05" + }, + { + "id": "8xy3kibfg26e0svwky", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-28T10:00:06", + "amountCrypto": 0.00005362, + "pricePerUnit": 1542399, + "totalCost": 82.7, + "fee": 0.29047514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-28T10:00:06" + }, + { + "id": "jwngv0j2z10qaimxsu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-28T14:00:05", + "amountCrypto": 0.00005321, + "pricePerUnit": 1554257, + "totalCost": 82.7, + "fee": 0.29047024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-28T14:00:05" + }, + { + "id": "vimsna85wywwpko8sk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-28T18:00:05", + "amountCrypto": 0.00005313, + "pricePerUnit": 1556611, + "totalCost": 82.7, + "fee": 0.29047277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-28T18:00:05" + }, + { + "id": "veduabdc2ia2sw206x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-28T22:00:06", + "amountCrypto": 0.00005305, + "pricePerUnit": 1558910, + "totalCost": 82.7, + "fee": 0.2904637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-28T22:00:06" + }, + { + "id": "cajltnjn52vclsdpco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T02:00:06", + "amountCrypto": 0.0000531, + "pricePerUnit": 1557548, + "totalCost": 82.71, + "fee": 0.29048338, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T02:00:06" + }, + { + "id": "82qm1rgvrd36e56r1y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T06:00:06", + "amountCrypto": 0.00005277, + "pricePerUnit": 1567246, + "totalCost": 82.7, + "fee": 0.29047557, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T06:00:06" + }, + { + "id": "xdcpmrh4u3v75ptwkk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T10:00:06", + "amountCrypto": 0.0000533, + "pricePerUnit": 1551503, + "totalCost": 82.7, + "fee": 0.29044583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T10:00:06" + }, + { + "id": "8jywa3o7xwxo6tflc7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T14:00:06", + "amountCrypto": 0.00005339, + "pricePerUnit": 1549019, + "totalCost": 82.7, + "fee": 0.29047062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T14:00:06" + }, + { + "id": "13f1nzpxq3mes4gyuq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T18:00:06", + "amountCrypto": 0.00005349, + "pricePerUnit": 1546058, + "totalCost": 82.7, + "fee": 0.29045832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T18:00:06" + }, + { + "id": "qsli080r2iwzuiob0a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-29T22:00:05", + "amountCrypto": 0.00005355, + "pricePerUnit": 1544324, + "totalCost": 82.7, + "fee": 0.29045794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-29T22:00:05" + }, + { + "id": "3v5f3hgfb5erzqiuh8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T02:00:05", + "amountCrypto": 0.0000532, + "pricePerUnit": 1554647, + "totalCost": 82.71, + "fee": 0.29048852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T02:00:05" + }, + { + "id": "ix7bteuh49m0wbufui", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T06:00:06", + "amountCrypto": 0.00005292, + "pricePerUnit": 1562884, + "totalCost": 82.71, + "fee": 0.29049053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T06:00:06" + }, + { + "id": "ba36jcuv9bxvkmksea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T10:00:06", + "amountCrypto": 0.00005323, + "pricePerUnit": 1553582, + "totalCost": 82.7, + "fee": 0.2904531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T10:00:06" + }, + { + "id": "ss87zd6i4w1m2wijie", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T14:00:06", + "amountCrypto": 0.00005307, + "pricePerUnit": 1558515, + "totalCost": 82.71, + "fee": 0.29049958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T14:00:06" + }, + { + "id": "141yrruqop2o3vogjd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T18:00:06", + "amountCrypto": 0.00005265, + "pricePerUnit": 1570875, + "totalCost": 82.71, + "fee": 0.2904861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T18:00:06" + }, + { + "id": "twfm9u4x92c4fv57hz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-30T22:00:06", + "amountCrypto": 0.00005258, + "pricePerUnit": 1572928, + "totalCost": 82.7, + "fee": 0.29047905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-30T22:00:06" + }, + { + "id": "yziwd1sct0ggaao3q8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T02:00:05", + "amountCrypto": 0.0000528, + "pricePerUnit": 1566225, + "totalCost": 82.7, + "fee": 0.29045145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T02:00:05" + }, + { + "id": "uvcppg67i05wwed36o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T06:00:06", + "amountCrypto": 0.00005264, + "pricePerUnit": 1571065, + "totalCost": 82.7, + "fee": 0.29046615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T06:00:06" + }, + { + "id": "trr3pzgriy590ulmdz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T10:00:06", + "amountCrypto": 0.00005282, + "pricePerUnit": 1565873, + "totalCost": 82.71, + "fee": 0.29049619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T10:00:06" + }, + { + "id": "hfizawol6wg2xjvje7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T14:00:07", + "amountCrypto": 0.00005291, + "pricePerUnit": 1562999, + "totalCost": 82.7, + "fee": 0.29045706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T14:00:07" + }, + { + "id": "3twu7ftqbdfyii9iy5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T18:00:07", + "amountCrypto": 0.00005382, + "pricePerUnit": 1536681, + "totalCost": 82.7, + "fee": 0.29047769, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T18:00:07" + }, + { + "id": "a4twwzl10v590ax0jq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-05-31T22:00:04", + "amountCrypto": 0.00005347, + "pricePerUnit": 1546819, + "totalCost": 82.71, + "fee": 0.29049262, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-05-31T22:00:04" + }, + { + "id": "gt1gdkospuwhnuf9mu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T02:00:05", + "amountCrypto": 0.00005354, + "pricePerUnit": 1544648, + "totalCost": 82.7, + "fee": 0.29046459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T02:00:05" + }, + { + "id": "llvievjclgi1xxp9nn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T06:00:06", + "amountCrypto": 0.00005348, + "pricePerUnit": 1546454, + "totalCost": 82.7, + "fee": 0.2904784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T06:00:06" + }, + { + "id": "yg93oe7e1wgj6bcrmu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T10:00:05", + "amountCrypto": 0.00005339, + "pricePerUnit": 1549163, + "totalCost": 82.71, + "fee": 0.2904975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T10:00:05" + }, + { + "id": "x52pgsp9ukj0ccpdyr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T14:00:05", + "amountCrypto": 0.00005339, + "pricePerUnit": 1548967, + "totalCost": 82.7, + "fee": 0.29046085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T14:00:05" + }, + { + "id": "pwx18ojp1hzzik9whh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T18:00:05", + "amountCrypto": 0.00005339, + "pricePerUnit": 1549170, + "totalCost": 82.71, + "fee": 0.29049882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T18:00:05" + }, + { + "id": "8z1dmywmmbvb7wcj5x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-01T22:00:05", + "amountCrypto": 0.00005335, + "pricePerUnit": 1550136, + "totalCost": 82.7, + "fee": 0.29046226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-01T22:00:05" + }, + { + "id": "1mhum7o62wm7yqm0b5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T02:00:06", + "amountCrypto": 0.00005337, + "pricePerUnit": 1549646, + "totalCost": 82.7, + "fee": 0.29047926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T02:00:06" + }, + { + "id": "cexf2ziufm9svcr0f5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T06:00:05", + "amountCrypto": 0.00005337, + "pricePerUnit": 1549646, + "totalCost": 82.7, + "fee": 0.29047926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T06:00:05" + }, + { + "id": "hz06snmcfhw84tf5mf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T10:00:06", + "amountCrypto": 0.00005337, + "pricePerUnit": 1549646, + "totalCost": 82.7, + "fee": 0.29047926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T10:00:06" + }, + { + "id": "6duaqm989jhv047d7v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T14:00:05", + "amountCrypto": 0.00005308, + "pricePerUnit": 1558014, + "totalCost": 82.7, + "fee": 0.29046087, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T14:00:05" + }, + { + "id": "07nkdeyltk7o8k86u4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T18:00:06", + "amountCrypto": 0.00005305, + "pricePerUnit": 1559039, + "totalCost": 82.71, + "fee": 0.29048779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T18:00:06" + }, + { + "id": "tndbfi7j8pzjgd9wp6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-02T22:00:05", + "amountCrypto": 0.00005335, + "pricePerUnit": 1550161, + "totalCost": 82.7, + "fee": 0.29046696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-02T22:00:05" + }, + { + "id": "hyhgk5tmljj7yilmli", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T02:00:07", + "amountCrypto": 0.00005331, + "pricePerUnit": 1551384, + "totalCost": 82.7, + "fee": 0.29047817, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T02:00:07" + }, + { + "id": "a82uabt0xpcvwf1a85", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T06:00:07", + "amountCrypto": 0.00005293, + "pricePerUnit": 1562627, + "totalCost": 82.71, + "fee": 0.29049771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T06:00:07" + }, + { + "id": "kmjkbdopvh8gd1affg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T10:00:06", + "amountCrypto": 0.00005239, + "pricePerUnit": 1578492, + "totalCost": 82.7, + "fee": 0.29045317, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T10:00:06" + }, + { + "id": "mu56foinxmo2w4s0uc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T14:00:06", + "amountCrypto": 0.00005224, + "pricePerUnit": 1583180, + "totalCost": 82.71, + "fee": 0.29048183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T14:00:06" + }, + { + "id": "wcyvjpmcn7ga8ex5br", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T18:00:06", + "amountCrypto": 0.00005225, + "pricePerUnit": 1582686, + "totalCost": 82.7, + "fee": 0.29044674, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T18:00:06" + }, + { + "id": "p8ibbvryvvlz2vun8n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-03T22:00:05", + "amountCrypto": 0.00005263, + "pricePerUnit": 1571392, + "totalCost": 82.7, + "fee": 0.29047138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-03T22:00:05" + }, + { + "id": "5v3zzsj72h256nm7o4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T02:00:06", + "amountCrypto": 0.00005289, + "pricePerUnit": 1563729, + "totalCost": 82.71, + "fee": 0.29048284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T02:00:06" + }, + { + "id": "lciwzqv7rw69b5mxlj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T06:00:05", + "amountCrypto": 0.0000527, + "pricePerUnit": 1569241, + "totalCost": 82.7, + "fee": 0.29045951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T06:00:05" + }, + { + "id": "3i04fz4mhaegx4hsyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T10:00:05", + "amountCrypto": 0.0000527, + "pricePerUnit": 1569444, + "totalCost": 82.71, + "fee": 0.29049718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T10:00:05" + }, + { + "id": "bmt4zz0nlmh631bwk4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T14:00:05", + "amountCrypto": 0.00005244, + "pricePerUnit": 1577057, + "totalCost": 82.7, + "fee": 0.29046615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T14:00:05" + }, + { + "id": "az7mzqmaym0y50452m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T18:00:06", + "amountCrypto": 0.00005163, + "pricePerUnit": 1601713, + "totalCost": 82.7, + "fee": 0.29045065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T18:00:06" + }, + { + "id": "sfubjq43aqo6iojxqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-04T22:00:05", + "amountCrypto": 0.00005172, + "pricePerUnit": 1599097, + "totalCost": 82.71, + "fee": 0.29048166, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-04T22:00:05" + }, + { + "id": "osp8sg03s6z3s2k18k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T02:00:05", + "amountCrypto": 0.00005175, + "pricePerUnit": 1597978, + "totalCost": 82.7, + "fee": 0.2904468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T02:00:05" + }, + { + "id": "4ve9cfnip7ikvnf5d9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T06:00:08", + "amountCrypto": 0.00005153, + "pricePerUnit": 1604948, + "totalCost": 82.7, + "fee": 0.29047359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T06:00:08" + }, + { + "id": "nuckar4qrjs4xkml4j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T10:00:06", + "amountCrypto": 0.00005127, + "pricePerUnit": 1613109, + "totalCost": 82.7, + "fee": 0.29047742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T10:00:06" + }, + { + "id": "kgk5a8c0hcl1n2c806", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T14:00:06", + "amountCrypto": 0.00005124, + "pricePerUnit": 1613984, + "totalCost": 82.7, + "fee": 0.29046495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T14:00:06" + }, + { + "id": "yedrm7lolv969qkt26", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T18:00:05", + "amountCrypto": 0.00005086, + "pricePerUnit": 1625954, + "totalCost": 82.7, + "fee": 0.29044903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T18:00:05" + }, + { + "id": "y17233mfp9qxfagq3z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-05T22:00:05", + "amountCrypto": 0.00005108, + "pricePerUnit": 1619194, + "totalCost": 82.71, + "fee": 0.29049265, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-05T22:00:05" + }, + { + "id": "ybjzq54267goyfpubm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T02:00:05", + "amountCrypto": 0.0000512, + "pricePerUnit": 1615206, + "totalCost": 82.7, + "fee": 0.29045796, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T02:00:05" + }, + { + "id": "4atmsfqdmzey5m7yx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T06:00:06", + "amountCrypto": 0.00005135, + "pricePerUnit": 1610502, + "totalCost": 82.7, + "fee": 0.29046058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T06:00:06" + }, + { + "id": "lpuxyfdgnx82o8pm52", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T10:00:06", + "amountCrypto": 0.00005126, + "pricePerUnit": 1613547, + "totalCost": 82.71, + "fee": 0.29049964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T10:00:06" + }, + { + "id": "gukbsol8r89em33ec3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T14:00:06", + "amountCrypto": 0.00005112, + "pricePerUnit": 1617963, + "totalCost": 82.71, + "fee": 0.2904991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T14:00:06" + }, + { + "id": "kz1wr0rx811p3xzo9o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T18:00:06", + "amountCrypto": 0.00005125, + "pricePerUnit": 1613584, + "totalCost": 82.7, + "fee": 0.29044964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T18:00:06" + }, + { + "id": "gwz78cnec2en7btmmu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-06T22:00:05", + "amountCrypto": 0.00005192, + "pricePerUnit": 1592914, + "totalCost": 82.7, + "fee": 0.29047737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-06T22:00:05" + }, + { + "id": "vlwywbnm18sdnvegga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T02:00:05", + "amountCrypto": 0.0000517, + "pricePerUnit": 1599744, + "totalCost": 82.71, + "fee": 0.29048674, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T02:00:05" + }, + { + "id": "fovryles6rq3vvddys", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T06:00:07", + "amountCrypto": 0.00005166, + "pricePerUnit": 1600979, + "totalCost": 82.71, + "fee": 0.29048609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T06:00:07" + }, + { + "id": "7hkiiqjblc8v5w6exh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T10:00:07", + "amountCrypto": 0.0000514, + "pricePerUnit": 1608842, + "totalCost": 82.69, + "fee": 0.2904437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T10:00:07" + }, + { + "id": "4sov8tepp58zgtputt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T14:00:07", + "amountCrypto": 0.0000512, + "pricePerUnit": 1615365, + "totalCost": 82.71, + "fee": 0.29048662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T14:00:07" + }, + { + "id": "i39tqpll7r2n85htkm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T18:00:07", + "amountCrypto": 0.00005141, + "pricePerUnit": 1608651, + "totalCost": 82.7, + "fee": 0.29046564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T18:00:07" + }, + { + "id": "uipbipk6e6dq43x3de", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-07T22:00:07", + "amountCrypto": 0.00005212, + "pricePerUnit": 1586630, + "totalCost": 82.7, + "fee": 0.29044605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-07T22:00:07" + }, + { + "id": "gvy43vq3n4rgf37qog", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T02:00:06", + "amountCrypto": 0.00005204, + "pricePerUnit": 1589324, + "totalCost": 82.71, + "fee": 0.29049258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T02:00:06" + }, + { + "id": "5ika5tcvt3mjhjsicu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T06:00:05", + "amountCrypto": 0.00005198, + "pricePerUnit": 1590950, + "totalCost": 82.7, + "fee": 0.29045452, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T06:00:05" + }, + { + "id": "eyfgoweo59kzf62cjm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T10:00:05", + "amountCrypto": 0.00005196, + "pricePerUnit": 1591785, + "totalCost": 82.71, + "fee": 0.29049516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T10:00:05" + }, + { + "id": "knkq6c8r9cckbtmj4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T14:00:07", + "amountCrypto": 0.00005201, + "pricePerUnit": 1590049, + "totalCost": 82.7, + "fee": 0.2904577, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T14:00:07" + }, + { + "id": "9j50ulkghga9q4kmoh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T18:00:05", + "amountCrypto": 0.00005196, + "pricePerUnit": 1591756, + "totalCost": 82.71, + "fee": 0.29048985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T18:00:05" + }, + { + "id": "nkcbw7vp1dqsw1vznu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-08T22:00:06", + "amountCrypto": 0.00005192, + "pricePerUnit": 1592781, + "totalCost": 82.7, + "fee": 0.29045324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-08T22:00:06" + }, + { + "id": "mbptz788e1tpj7eb9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T02:00:05", + "amountCrypto": 0.00005205, + "pricePerUnit": 1589040, + "totalCost": 82.71, + "fee": 0.29049654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T02:00:05" + }, + { + "id": "yzljjvovaioez306qx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T06:00:05", + "amountCrypto": 0.00005209, + "pricePerUnit": 1587579, + "totalCost": 82.7, + "fee": 0.29045255, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T06:00:05" + }, + { + "id": "jj9mnf62mfkpfmzx5k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T10:00:06", + "amountCrypto": 0.00005208, + "pricePerUnit": 1588142, + "totalCost": 82.71, + "fee": 0.29049967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T10:00:06" + }, + { + "id": "quipfsp8g4wa327rqf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T14:00:05", + "amountCrypto": 0.00005205, + "pricePerUnit": 1588947, + "totalCost": 82.7, + "fee": 0.29047949, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T14:00:05" + }, + { + "id": "pfe8uk42af7etg8tlz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T18:00:05", + "amountCrypto": 0.00005195, + "pricePerUnit": 1591923, + "totalCost": 82.7, + "fee": 0.29046449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T18:00:05" + }, + { + "id": "1ywriv94xckoe41gnd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-09T22:00:05", + "amountCrypto": 0.0000518, + "pricePerUnit": 1596466, + "totalCost": 82.7, + "fee": 0.29045239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-09T22:00:05" + }, + { + "id": "6powvt716b4lsa6ze1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T02:00:06", + "amountCrypto": 0.00005177, + "pricePerUnit": 1597418, + "totalCost": 82.7, + "fee": 0.29045716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T02:00:06" + }, + { + "id": "t96e5bl99hebegcsct", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T06:00:07", + "amountCrypto": 0.00005178, + "pricePerUnit": 1597041, + "totalCost": 82.69, + "fee": 0.29044471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T06:00:07" + }, + { + "id": "o26ruvx179v574ds1d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T10:00:06", + "amountCrypto": 0.00005198, + "pricePerUnit": 1590969, + "totalCost": 82.7, + "fee": 0.29045799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T10:00:06" + }, + { + "id": "b9oocpuzf8o6wy1fwe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T14:00:06", + "amountCrypto": 0.00005185, + "pricePerUnit": 1594971, + "totalCost": 82.7, + "fee": 0.29046036, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T14:00:06" + }, + { + "id": "0kmu7fnvfp6gb2cprj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T18:00:07", + "amountCrypto": 0.00005149, + "pricePerUnit": 1606205, + "totalCost": 82.7, + "fee": 0.29047527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T18:00:07" + }, + { + "id": "l968f4p37mtw80alvu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-10T22:00:05", + "amountCrypto": 0.00005199, + "pricePerUnit": 1590648, + "totalCost": 82.7, + "fee": 0.29045529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-10T22:00:05" + }, + { + "id": "6y13v3zbwpbmd5hnhf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T02:00:06", + "amountCrypto": 0.00005208, + "pricePerUnit": 1588005, + "totalCost": 82.7, + "fee": 0.29047473, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T02:00:06" + }, + { + "id": "j83vqlkfqrsce9thtk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T06:00:07", + "amountCrypto": 0.00005275, + "pricePerUnit": 1567864, + "totalCost": 82.7, + "fee": 0.29048008, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T06:00:07" + }, + { + "id": "wpwz51469u2vwwu7xr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T10:00:07", + "amountCrypto": 0.00005322, + "pricePerUnit": 1553885, + "totalCost": 82.7, + "fee": 0.29045512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T10:00:07" + }, + { + "id": "kzuy4kq3zirnixvmz8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T14:00:06", + "amountCrypto": 0.0000535, + "pricePerUnit": 1545887, + "totalCost": 82.7, + "fee": 0.29048041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T14:00:06" + }, + { + "id": "f5424yd05uzfba3rqn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T18:00:06", + "amountCrypto": 0.00005394, + "pricePerUnit": 1533260, + "totalCost": 82.7, + "fee": 0.29047733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T18:00:06" + }, + { + "id": "m0un6tcm80or4eeo9g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-11T22:00:05", + "amountCrypto": 0.00005304, + "pricePerUnit": 1559302, + "totalCost": 82.71, + "fee": 0.29048197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-11T22:00:05" + }, + { + "id": "7moc7zvpi7x7szdevg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T02:00:06", + "amountCrypto": 0.0000531, + "pricePerUnit": 1557402, + "totalCost": 82.7, + "fee": 0.29045627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T02:00:06" + }, + { + "id": "mpkczshnzc8p2ouhqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T06:00:07", + "amountCrypto": 0.00005307, + "pricePerUnit": 1558490, + "totalCost": 82.71, + "fee": 0.29049491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T06:00:07" + }, + { + "id": "k1ih729mjkgqi3wnwk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T10:00:07", + "amountCrypto": 0.00005314, + "pricePerUnit": 1556242, + "totalCost": 82.7, + "fee": 0.29045858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T10:00:07" + }, + { + "id": "ps8sgtac3ofvffilkl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T14:00:05", + "amountCrypto": 0.00005297, + "pricePerUnit": 1561381, + "totalCost": 82.71, + "fee": 0.29048542, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T14:00:05" + }, + { + "id": "b7egn142afdscux3lx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T18:00:05", + "amountCrypto": 0.00005204, + "pricePerUnit": 1589273, + "totalCost": 82.71, + "fee": 0.29048342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T18:00:05" + }, + { + "id": "cm4yo196esonwhw2bf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-12T22:00:07", + "amountCrypto": 0.00005337, + "pricePerUnit": 1549719, + "totalCost": 82.71, + "fee": 0.29049298, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-12T22:00:07" + }, + { + "id": "a0twwpzgll7hhp2d24", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T02:00:05", + "amountCrypto": 0.00005287, + "pricePerUnit": 1564324, + "totalCost": 82.71, + "fee": 0.29048357, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T02:00:05" + }, + { + "id": "zzzfh7fybagfn6g9aw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T06:00:05", + "amountCrypto": 0.00005345, + "pricePerUnit": 1547270, + "totalCost": 82.7, + "fee": 0.29046865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T06:00:05" + }, + { + "id": "g0c689vndl9ojugak6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T10:00:06", + "amountCrypto": 0.00005327, + "pricePerUnit": 1552434, + "totalCost": 82.7, + "fee": 0.2904566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T10:00:06" + }, + { + "id": "x7a3xk0axd9du98853", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T14:00:06", + "amountCrypto": 0.00005306, + "pricePerUnit": 1558776, + "totalCost": 82.71, + "fee": 0.29049342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T14:00:06" + }, + { + "id": "pducmki7szzh0g9zz2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T18:00:07", + "amountCrypto": 0.00005387, + "pricePerUnit": 1535318, + "totalCost": 82.71, + "fee": 0.29048978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T18:00:07" + }, + { + "id": "zzz2dkbhe4o4bvqldx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-13T22:00:05", + "amountCrypto": 0.00005366, + "pricePerUnit": 1541316, + "totalCost": 82.71, + "fee": 0.29048778, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-13T22:00:05" + }, + { + "id": "e7nuqq039tbccg9cmw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T02:00:06", + "amountCrypto": 0.00005353, + "pricePerUnit": 1544880, + "totalCost": 82.7, + "fee": 0.29045407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T02:00:06" + }, + { + "id": "2ovicw8qsqsb29tnhg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T06:00:06", + "amountCrypto": 0.00005355, + "pricePerUnit": 1544544, + "totalCost": 82.71, + "fee": 0.29049942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T06:00:06" + }, + { + "id": "nmh4ppoueoaid978we", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T10:00:06", + "amountCrypto": 0.00005333, + "pricePerUnit": 1550838, + "totalCost": 82.71, + "fee": 0.29048481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T10:00:06" + }, + { + "id": "08h7uuylx2p3kplozg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T14:00:05", + "amountCrypto": 0.00005309, + "pricePerUnit": 1557844, + "totalCost": 82.71, + "fee": 0.290484, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T14:00:05" + }, + { + "id": "wqo32s7myqvyn8hmkh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T18:00:08", + "amountCrypto": 0.00005362, + "pricePerUnit": 1542347, + "totalCost": 82.7, + "fee": 0.29046532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T18:00:08" + }, + { + "id": "zcmjb08c1nolzbi5cv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-14T22:00:05", + "amountCrypto": 0.00005428, + "pricePerUnit": 1523714, + "totalCost": 82.71, + "fee": 0.29048827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-14T22:00:05" + }, + { + "id": "095qgvkfbyz1x1nf98", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T02:00:07", + "amountCrypto": 0.00005382, + "pricePerUnit": 1536734, + "totalCost": 82.71, + "fee": 0.29048773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T02:00:07" + }, + { + "id": "hvsjraq1p9n9l1nq13", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T06:00:06", + "amountCrypto": 0.00005367, + "pricePerUnit": 1540836, + "totalCost": 82.7, + "fee": 0.29045139, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T06:00:06" + }, + { + "id": "2mz6vedpfnw1tthfzp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T10:00:06", + "amountCrypto": 0.00005371, + "pricePerUnit": 1539888, + "totalCost": 82.71, + "fee": 0.29048897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T10:00:06" + }, + { + "id": "1ww2btlpxg8ikact2b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T14:00:04", + "amountCrypto": 0.00005355, + "pricePerUnit": 1544446, + "totalCost": 82.71, + "fee": 0.29048095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T14:00:04" + }, + { + "id": "px2y3qfyi73df6gmn3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T18:00:05", + "amountCrypto": 0.00005367, + "pricePerUnit": 1541050, + "totalCost": 82.71, + "fee": 0.29049165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T18:00:05" + }, + { + "id": "4hlhubiydi8py1cezc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-15T22:00:05", + "amountCrypto": 0.00005384, + "pricePerUnit": 1536104, + "totalCost": 82.7, + "fee": 0.29047663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-15T22:00:05" + }, + { + "id": "hm47clypciugsh96m1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T02:00:05", + "amountCrypto": 0.0000538, + "pricePerUnit": 1537169, + "totalCost": 82.7, + "fee": 0.29046199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T02:00:05" + }, + { + "id": "erqrh8w533nn7ranpq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T06:00:05", + "amountCrypto": 0.00005383, + "pricePerUnit": 1536442, + "totalCost": 82.71, + "fee": 0.29048655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T06:00:05" + }, + { + "id": "x2nkstrtxltsrwm5r8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T10:00:05", + "amountCrypto": 0.00005363, + "pricePerUnit": 1542164, + "totalCost": 82.71, + "fee": 0.29048512, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T10:00:05" + }, + { + "id": "5xqeqbsgbdwuzanmni", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T14:00:06", + "amountCrypto": 0.00005353, + "pricePerUnit": 1544902, + "totalCost": 82.7, + "fee": 0.29045821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T14:00:06" + }, + { + "id": "pcyy23gl7zgqsrh7kp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T18:00:06", + "amountCrypto": 0.0000534, + "pricePerUnit": 1548762, + "totalCost": 82.7, + "fee": 0.29047671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T18:00:06" + }, + { + "id": "p79t8o778v9ehrln92", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-16T22:00:05", + "amountCrypto": 0.00005338, + "pricePerUnit": 1549279, + "totalCost": 82.7, + "fee": 0.2904649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-16T22:00:05" + }, + { + "id": "u3cecnhl9s9khqm7ag", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T02:00:08", + "amountCrypto": 0.00005341, + "pricePerUnit": 1548467, + "totalCost": 82.7, + "fee": 0.29047581, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T02:00:08" + }, + { + "id": "x5ywbasq9ty1kqur1f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T06:00:06", + "amountCrypto": 0.00005377, + "pricePerUnit": 1538227, + "totalCost": 82.71, + "fee": 0.29049976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T06:00:06" + }, + { + "id": "8zx80nsac1cl26depk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T10:00:05", + "amountCrypto": 0.00005389, + "pricePerUnit": 1534626, + "totalCost": 82.7, + "fee": 0.29046651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T10:00:05" + }, + { + "id": "yjnhtvfqe6fmt3h5pv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T14:00:05", + "amountCrypto": 0.00005419, + "pricePerUnit": 1526134, + "totalCost": 82.7, + "fee": 0.29046721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T14:00:05" + }, + { + "id": "ezen7piwgm4mct5646", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T18:00:05", + "amountCrypto": 0.00005452, + "pricePerUnit": 1516897, + "totalCost": 82.7, + "fee": 0.2904673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T18:00:05" + }, + { + "id": "qukc4q48mllgktwkoi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-17T22:00:06", + "amountCrypto": 0.00005353, + "pricePerUnit": 1544990, + "totalCost": 82.7, + "fee": 0.2904748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-17T22:00:06" + }, + { + "id": "qzzt46uq80rysywglj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T02:00:15", + "amountCrypto": 0.00005368, + "pricePerUnit": 1540706, + "totalCost": 82.71, + "fee": 0.29048094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T02:00:15" + }, + { + "id": "os52bptvbrh86hpo4m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T06:00:06", + "amountCrypto": 0.00005438, + "pricePerUnit": 1520931, + "totalCost": 82.71, + "fee": 0.29049191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T06:00:06" + }, + { + "id": "87hyl4d9h2945w18jq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T10:00:05", + "amountCrypto": 0.00005414, + "pricePerUnit": 1527602, + "totalCost": 82.7, + "fee": 0.29047847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T10:00:05" + }, + { + "id": "7pmashxscjlsxedy6q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T14:00:06", + "amountCrypto": 0.00005433, + "pricePerUnit": 1522327, + "totalCost": 82.71, + "fee": 0.29049129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T14:00:06" + }, + { + "id": "atn4pm1t29vsu6esyy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T18:00:05", + "amountCrypto": 0.00005457, + "pricePerUnit": 1515652, + "totalCost": 82.71, + "fee": 0.29049505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T18:00:05" + }, + { + "id": "nutowymxbgl92x5itf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-18T22:00:05", + "amountCrypto": 0.00005477, + "pricePerUnit": 1510140, + "totalCost": 82.71, + "fee": 0.29049946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-18T22:00:05" + }, + { + "id": "l19umf56rdewk8ld20", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T02:00:05", + "amountCrypto": 0.00005445, + "pricePerUnit": 1518996, + "totalCost": 82.71, + "fee": 0.29049582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T02:00:05" + }, + { + "id": "4j3211hmyxh9wfy69t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T06:00:05", + "amountCrypto": 0.00005429, + "pricePerUnit": 1523267, + "totalCost": 82.7, + "fee": 0.29045672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T06:00:05" + }, + { + "id": "tdmzwtww7gqxbyrnv2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T10:00:06", + "amountCrypto": 0.00005439, + "pricePerUnit": 1520674, + "totalCost": 82.71, + "fee": 0.2904963, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T10:00:06" + }, + { + "id": "1wcafq345vokmlf8vg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T14:00:05", + "amountCrypto": 0.00005438, + "pricePerUnit": 1520709, + "totalCost": 82.7, + "fee": 0.29044959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T14:00:05" + }, + { + "id": "w9e6jxezgyztbmnvt1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T18:00:06", + "amountCrypto": 0.00005477, + "pricePerUnit": 1510083, + "totalCost": 82.71, + "fee": 0.29048846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T18:00:06" + }, + { + "id": "byt3ynatopvsywwt2i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-19T22:00:05", + "amountCrypto": 0.00005478, + "pricePerUnit": 1509769, + "totalCost": 82.71, + "fee": 0.29048113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-19T22:00:05" + }, + { + "id": "lc85ij0vsohgzr4uxw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T02:00:05", + "amountCrypto": 0.0000547, + "pricePerUnit": 1511902, + "totalCost": 82.7, + "fee": 0.29046677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T02:00:05" + }, + { + "id": "yt2sc0new3y3oyvba3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T06:00:07", + "amountCrypto": 0.00005455, + "pricePerUnit": 1515975, + "totalCost": 82.7, + "fee": 0.29045062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T06:00:07" + }, + { + "id": "rkaft6l1nna0mha7lh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T10:00:06", + "amountCrypto": 0.00005385, + "pricePerUnit": 1535699, + "totalCost": 82.7, + "fee": 0.29045398, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T10:00:06" + }, + { + "id": "9hgfj31pgf2dfjfna4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T14:00:06", + "amountCrypto": 0.00005379, + "pricePerUnit": 1537621, + "totalCost": 82.71, + "fee": 0.29049342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T14:00:06" + }, + { + "id": "n2i2yi4cghdrudq7jw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T18:00:08", + "amountCrypto": 0.0000548, + "pricePerUnit": 1509144, + "totalCost": 82.7, + "fee": 0.29046698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T18:00:08" + }, + { + "id": "84q3ns5mxgzeez2p78", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-20T22:00:06", + "amountCrypto": 0.00005462, + "pricePerUnit": 1514185, + "totalCost": 82.7, + "fee": 0.29047986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-20T22:00:06" + }, + { + "id": "c2cd5vcjox9dwamv07", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T02:00:05", + "amountCrypto": 0.00005467, + "pricePerUnit": 1512712, + "totalCost": 82.7, + "fee": 0.290463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T02:00:05" + }, + { + "id": "q3tkx5p9pxnzf01cyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T06:00:08", + "amountCrypto": 0.00005499, + "pricePerUnit": 1503897, + "totalCost": 82.7, + "fee": 0.29046066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T06:00:08" + }, + { + "id": "o3ik3i080q65vq80jo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T10:00:06", + "amountCrypto": 0.0000548, + "pricePerUnit": 1509154, + "totalCost": 82.7, + "fee": 0.29046891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T10:00:06" + }, + { + "id": "baw8c2m4i36n35c69v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T14:00:05", + "amountCrypto": 0.00005518, + "pricePerUnit": 1498830, + "totalCost": 82.71, + "fee": 0.29048213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T14:00:05" + }, + { + "id": "e2w9b1d68e4y1lqe1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T18:00:08", + "amountCrypto": 0.00005517, + "pricePerUnit": 1498999, + "totalCost": 82.7, + "fee": 0.29046231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T18:00:08" + }, + { + "id": "cvbja8wnnsdyqvayik", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-21T22:00:06", + "amountCrypto": 0.00005511, + "pricePerUnit": 1500729, + "totalCost": 82.71, + "fee": 0.29048134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-21T22:00:06" + }, + { + "id": "98bbwtv07ya6zubkf7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T02:00:05", + "amountCrypto": 0.00005487, + "pricePerUnit": 1507320, + "totalCost": 82.71, + "fee": 0.29048639, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T02:00:05" + }, + { + "id": "gw39b5iv4g9ivpkbqe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T06:00:06", + "amountCrypto": 0.00005487, + "pricePerUnit": 1507346, + "totalCost": 82.71, + "fee": 0.29049142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T06:00:06" + }, + { + "id": "2toxij4zbxxwi296m7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T10:00:06", + "amountCrypto": 0.00005466, + "pricePerUnit": 1513060, + "totalCost": 82.7, + "fee": 0.29047665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T10:00:06" + }, + { + "id": "q3ahezou4zkciktcyp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T14:00:05", + "amountCrypto": 0.00005468, + "pricePerUnit": 1512395, + "totalCost": 82.7, + "fee": 0.29045529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T14:00:05" + }, + { + "id": "msjv4q4c7c3x0ua262", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T18:00:06", + "amountCrypto": 0.00005478, + "pricePerUnit": 1509742, + "totalCost": 82.7, + "fee": 0.29047592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T18:00:06" + }, + { + "id": "o8qg461muuqe6m88kc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-22T22:00:06", + "amountCrypto": 0.00005485, + "pricePerUnit": 1507747, + "totalCost": 82.7, + "fee": 0.29046278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-22T22:00:06" + }, + { + "id": "6kv4u6cxrzvk7yamyd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T02:00:06", + "amountCrypto": 0.00005479, + "pricePerUnit": 1509547, + "totalCost": 82.71, + "fee": 0.29049152, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T02:00:06" + }, + { + "id": "nbexsm4xk4qwtupztv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T06:00:06", + "amountCrypto": 0.00005488, + "pricePerUnit": 1506902, + "totalCost": 82.7, + "fee": 0.29045875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T06:00:06" + }, + { + "id": "ojqndw9paelg2mpy93", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T10:00:05", + "amountCrypto": 0.0000547, + "pricePerUnit": 1511989, + "totalCost": 82.71, + "fee": 0.29048352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T10:00:05" + }, + { + "id": "tnwd0hrej8zzauqaao", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T14:00:05", + "amountCrypto": 0.00005475, + "pricePerUnit": 1510669, + "totalCost": 82.71, + "fee": 0.29049516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T14:00:05" + }, + { + "id": "nzlwvfsfotl9jp7r9t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T18:00:06", + "amountCrypto": 0.00005497, + "pricePerUnit": 1504644, + "totalCost": 82.71, + "fee": 0.29049922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T18:00:06" + }, + { + "id": "wvxetyh6bfe4s4g50j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-23T22:00:05", + "amountCrypto": 0.00005489, + "pricePerUnit": 1506744, + "totalCost": 82.71, + "fee": 0.29048134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-23T22:00:05" + }, + { + "id": "8lx1vmijlv5c1dsdtd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T02:00:06", + "amountCrypto": 0.00005566, + "pricePerUnit": 1485807, + "totalCost": 82.7, + "fee": 0.29046321, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T02:00:06" + }, + { + "id": "wui1aji8x05v6hdhel", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T06:00:06", + "amountCrypto": 0.0000559, + "pricePerUnit": 1479405, + "totalCost": 82.7, + "fee": 0.29045874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T06:00:06" + }, + { + "id": "se3z0hnpngenblogar", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T10:00:06", + "amountCrypto": 0.00005613, + "pricePerUnit": 1473412, + "totalCost": 82.7, + "fee": 0.29047217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T10:00:06" + }, + { + "id": "d6roe4be83gnjownrd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T14:00:06", + "amountCrypto": 0.00005679, + "pricePerUnit": 1456398, + "totalCost": 82.71, + "fee": 0.29049419, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T14:00:06" + }, + { + "id": "6o43t6mdme128w5v89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T18:00:06", + "amountCrypto": 0.00005757, + "pricePerUnit": 1436672, + "totalCost": 82.71, + "fee": 0.29049546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T18:00:06" + }, + { + "id": "42bhblu6l483lci9l5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-24T22:00:05", + "amountCrypto": 0.00005835, + "pricePerUnit": 1417473, + "totalCost": 82.71, + "fee": 0.29049652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-24T22:00:05" + }, + { + "id": "f5z486698akmz2w77z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T02:00:05", + "amountCrypto": 0.00005779, + "pricePerUnit": 1431142, + "totalCost": 82.71, + "fee": 0.29048298, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T02:00:05" + }, + { + "id": "7bvusbe71frzh42ugn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T06:00:06", + "amountCrypto": 0.00005733, + "pricePerUnit": 1442474, + "totalCost": 82.7, + "fee": 0.29045259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T06:00:06" + }, + { + "id": "b208fz1je63as50sic", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T10:00:08", + "amountCrypto": 0.0000582, + "pricePerUnit": 1421127, + "totalCost": 82.71, + "fee": 0.29049669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T10:00:08" + }, + { + "id": "ddumgzyhipmfebtfn1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T14:00:06", + "amountCrypto": 0.0000579, + "pricePerUnit": 1428407, + "totalCost": 82.7, + "fee": 0.29047975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T14:00:06" + }, + { + "id": "8mdlvo5q0j9fz327b7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T18:00:06", + "amountCrypto": 0.00005727, + "pricePerUnit": 1444008, + "totalCost": 82.7, + "fee": 0.29045734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T18:00:06" + }, + { + "id": "u59w930ewsqa0tzrlt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-25T22:00:05", + "amountCrypto": 0.00005714, + "pricePerUnit": 1447328, + "totalCost": 82.7, + "fee": 0.29046415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-25T22:00:05" + }, + { + "id": "1tz9wmtni8vdwg2dd7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T02:00:05", + "amountCrypto": 0.00005726, + "pricePerUnit": 1444316, + "totalCost": 82.7, + "fee": 0.29046851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T02:00:05" + }, + { + "id": "0i0yxsh2pk9jt85wpx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T06:00:05", + "amountCrypto": 0.00005714, + "pricePerUnit": 1447348, + "totalCost": 82.7, + "fee": 0.29046818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T06:00:05" + }, + { + "id": "1h13d1anshwqyo0k91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T10:00:06", + "amountCrypto": 0.00005713, + "pricePerUnit": 1447729, + "totalCost": 82.71, + "fee": 0.29049378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T10:00:06" + }, + { + "id": "2lprqx70xisoqorpmt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T14:00:06", + "amountCrypto": 0.00005749, + "pricePerUnit": 1438689, + "totalCost": 82.71, + "fee": 0.29049906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T14:00:06" + }, + { + "id": "xe67zw17dygtbys1rs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T18:00:06", + "amountCrypto": 0.00005751, + "pricePerUnit": 1437949, + "totalCost": 82.7, + "fee": 0.29045068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T18:00:06" + }, + { + "id": "ncn873srzpelyuif9s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-26T22:00:06", + "amountCrypto": 0.00005777, + "pricePerUnit": 1431613, + "totalCost": 82.7, + "fee": 0.29047805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-26T22:00:06" + }, + { + "id": "tuvm3i0ubezmpciyht", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T02:00:07", + "amountCrypto": 0.00005778, + "pricePerUnit": 1431418, + "totalCost": 82.71, + "fee": 0.29048887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T02:00:07" + }, + { + "id": "t2lvuw0n7x4p4ftzxg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T06:00:06", + "amountCrypto": 0.00005773, + "pricePerUnit": 1432706, + "totalCost": 82.71, + "fee": 0.29049869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T06:00:06" + }, + { + "id": "bfzpfs1fdegymoz4bx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T10:00:05", + "amountCrypto": 0.00005797, + "pricePerUnit": 1426623, + "totalCost": 82.7, + "fee": 0.29046782, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T10:00:05" + }, + { + "id": "c288i0xe24zz85dnjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T14:00:06", + "amountCrypto": 0.00005762, + "pricePerUnit": 1435441, + "totalCost": 82.71, + "fee": 0.29049863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T14:00:06" + }, + { + "id": "e3yd7ccwa3aurydbch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T18:00:06", + "amountCrypto": 0.00005717, + "pricePerUnit": 1446668, + "totalCost": 82.71, + "fee": 0.2904842, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T18:00:06" + }, + { + "id": "arnt803szvcuspphh4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-27T22:00:05", + "amountCrypto": 0.00005719, + "pricePerUnit": 1446049, + "totalCost": 82.7, + "fee": 0.29046138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-27T22:00:05" + }, + { + "id": "v7pkia5d2ojmohlu2m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T02:00:05", + "amountCrypto": 0.00005709, + "pricePerUnit": 1448668, + "totalCost": 82.7, + "fee": 0.29047874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T02:00:05" + }, + { + "id": "wqrhdd7yp018raxxp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T06:00:06", + "amountCrypto": 0.00005676, + "pricePerUnit": 1457181, + "totalCost": 82.71, + "fee": 0.29049681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T06:00:06" + }, + { + "id": "gzplf7m41y7k3vdwoe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T10:00:09", + "amountCrypto": 0.00005726, + "pricePerUnit": 1444387, + "totalCost": 82.71, + "fee": 0.29048283, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T10:00:09" + }, + { + "id": "erczn0pcc226blsuna", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T14:00:07", + "amountCrypto": 0.0000572, + "pricePerUnit": 1445828, + "totalCost": 82.7, + "fee": 0.29046786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T14:00:07" + }, + { + "id": "2zpimw2swc2wnfkv17", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T18:00:05", + "amountCrypto": 0.00005763, + "pricePerUnit": 1434966, + "totalCost": 82.7, + "fee": 0.29045286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5312", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T18:00:05" + }, + { + "id": "jytn28upn8mpnfyb31", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-28T22:00:05", + "amountCrypto": 0.00005817, + "pricePerUnit": 1421636, + "totalCost": 82.7, + "fee": 0.29045099, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5313", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-28T22:00:05" + }, + { + "id": "wexipp2jqydcfkpy8l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T02:00:04", + "amountCrypto": 0.00005778, + "pricePerUnit": 1431281, + "totalCost": 82.7, + "fee": 0.290461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T02:00:04" + }, + { + "id": "5nwly4l3yk3jwdjefd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T06:00:05", + "amountCrypto": 0.00005814, + "pricePerUnit": 1422536, + "totalCost": 82.71, + "fee": 0.29048503, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T06:00:05" + }, + { + "id": "5n4q63k9rus9g07z2n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T10:00:05", + "amountCrypto": 0.00005769, + "pricePerUnit": 1433683, + "totalCost": 82.71, + "fee": 0.29049526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T10:00:05" + }, + { + "id": "5p5sy3p8t3rwb3ngxr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T14:00:05", + "amountCrypto": 0.00005766, + "pricePerUnit": 1434254, + "totalCost": 82.7, + "fee": 0.29045991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T14:00:05" + }, + { + "id": "mtcvzh2ern66tf74cy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T18:00:05", + "amountCrypto": 0.00005778, + "pricePerUnit": 1431389, + "totalCost": 82.71, + "fee": 0.29048297, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T18:00:05" + }, + { + "id": "jdqsu795b0uzo1daqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-29T22:00:05", + "amountCrypto": 0.00005772, + "pricePerUnit": 1432935, + "totalCost": 82.71, + "fee": 0.29049471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-29T22:00:05" + }, + { + "id": "lx1htzc2j515sxkjof", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T02:00:06", + "amountCrypto": 0.0000578, + "pricePerUnit": 1430941, + "totalCost": 82.71, + "fee": 0.29049255, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T02:00:06" + }, + { + "id": "8xztavxa4f859ec2kb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T06:00:05", + "amountCrypto": 0.00005787, + "pricePerUnit": 1429205, + "totalCost": 82.71, + "fee": 0.29049144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T06:00:05" + }, + { + "id": "hv1z7xzaq4mjonsqoy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T10:00:05", + "amountCrypto": 0.00005731, + "pricePerUnit": 1443022, + "totalCost": 82.7, + "fee": 0.29046165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T10:00:05" + }, + { + "id": "94fl8369k06m1mu204", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T14:00:06", + "amountCrypto": 0.00005724, + "pricePerUnit": 1444874, + "totalCost": 82.7, + "fee": 0.29047912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T14:00:06" + }, + { + "id": "qqslshinuksptl63kl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T18:00:05", + "amountCrypto": 0.00005714, + "pricePerUnit": 1447289, + "totalCost": 82.7, + "fee": 0.29045631, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T18:00:05" + }, + { + "id": "wstmfls7zv241scz1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-06-30T22:00:05", + "amountCrypto": 0.00005689, + "pricePerUnit": 1453758, + "totalCost": 82.7, + "fee": 0.2904781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-06-30T22:00:05" + }, + { + "id": "rumzn244ld0x13t5qg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T02:00:05", + "amountCrypto": 0.00005627, + "pricePerUnit": 1469685, + "totalCost": 82.7, + "fee": 0.29046022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T02:00:05" + }, + { + "id": "r0r8hfv7spl3nyswo6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T06:00:07", + "amountCrypto": 0.00005575, + "pricePerUnit": 1483535, + "totalCost": 82.71, + "fee": 0.29048787, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T06:00:07" + }, + { + "id": "psvybpbqdzyu50558p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T10:00:06", + "amountCrypto": 0.00005585, + "pricePerUnit": 1480764, + "totalCost": 82.7, + "fee": 0.29046539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T10:00:06" + }, + { + "id": "sktmkfism0rc0ga70d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T14:00:07", + "amountCrypto": 0.00005638, + "pricePerUnit": 1466843, + "totalCost": 82.7, + "fee": 0.29046526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T14:00:07" + }, + { + "id": "yq189se0bsobjtmlir", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T18:00:07", + "amountCrypto": 0.00005578, + "pricePerUnit": 1482684, + "totalCost": 82.7, + "fee": 0.29047744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T18:00:07" + }, + { + "id": "280fk8ztkn8qxyq80d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-01T22:00:06", + "amountCrypto": 0.00005567, + "pricePerUnit": 1485670, + "totalCost": 82.71, + "fee": 0.29048854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-01T22:00:06" + }, + { + "id": "tbhcctonm9zwiamm28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T02:00:05", + "amountCrypto": 0.00005594, + "pricePerUnit": 1478333, + "totalCost": 82.7, + "fee": 0.29045583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T02:00:05" + }, + { + "id": "c9hdj2pku2dyg5xfxw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T06:00:07", + "amountCrypto": 0.00005572, + "pricePerUnit": 1484220, + "totalCost": 82.7, + "fee": 0.29046575, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T06:00:07" + }, + { + "id": "yefnzm5pa9k5qybt38", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T10:00:07", + "amountCrypto": 0.00005607, + "pricePerUnit": 1475093, + "totalCost": 82.71, + "fee": 0.29049275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T10:00:07" + }, + { + "id": "liawc0o8fi1za6y771", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T14:00:05", + "amountCrypto": 0.00005578, + "pricePerUnit": 1482626, + "totalCost": 82.7, + "fee": 0.29046625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T14:00:05" + }, + { + "id": "fqmnvy4l3aturl09hs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T18:00:07", + "amountCrypto": 0.00005666, + "pricePerUnit": 1459551, + "totalCost": 82.7, + "fee": 0.29045663, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T18:00:07" + }, + { + "id": "qof8ggqrzx6zfrlpsp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-02T22:00:05", + "amountCrypto": 0.00005689, + "pricePerUnit": 1453820, + "totalCost": 82.71, + "fee": 0.29049051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-02T22:00:05" + }, + { + "id": "73k5g7irtjn43csbmo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T02:00:07", + "amountCrypto": 0.00005671, + "pricePerUnit": 1458243, + "totalCost": 82.7, + "fee": 0.29045237, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T02:00:07" + }, + { + "id": "1yu612odf4e09rfndy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T06:00:06", + "amountCrypto": 0.00005776, + "pricePerUnit": 1431749, + "totalCost": 82.7, + "fee": 0.29045543, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T06:00:06" + }, + { + "id": "jb0gk5jfrnl72rg6q2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T10:00:05", + "amountCrypto": 0.00005777, + "pricePerUnit": 1431507, + "totalCost": 82.7, + "fee": 0.2904567, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T10:00:05" + }, + { + "id": "x3ckk2xdmb9qe3zh7b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T14:00:06", + "amountCrypto": 0.00005824, + "pricePerUnit": 1420142, + "totalCost": 82.71, + "fee": 0.29049497, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T14:00:06" + }, + { + "id": "llpff8jakqfh5v0ahk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T18:00:06", + "amountCrypto": 0.00005839, + "pricePerUnit": 1416432, + "totalCost": 82.71, + "fee": 0.29048226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T18:00:06" + }, + { + "id": "zaf11z4dyej9ohpuwy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-03T22:00:08", + "amountCrypto": 0.00005868, + "pricePerUnit": 1409294, + "totalCost": 82.7, + "fee": 0.29045389, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-03T22:00:08" + }, + { + "id": "lm9epoct2mgzkc5qbo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T02:00:06", + "amountCrypto": 0.00005848, + "pricePerUnit": 1414196, + "totalCost": 82.7, + "fee": 0.29047082, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T02:00:06" + }, + { + "id": "r9bm3zhna6hq8q52l1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T06:00:07", + "amountCrypto": 0.00005941, + "pricePerUnit": 1392014, + "totalCost": 82.7, + "fee": 0.29046156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T06:00:07" + }, + { + "id": "q6l6zf0n93e0j8onr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T10:00:07", + "amountCrypto": 0.00005995, + "pricePerUnit": 1379511, + "totalCost": 82.7, + "fee": 0.29046904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T10:00:07" + }, + { + "id": "9lbwv8sqa0ewt5sohg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T14:00:06", + "amountCrypto": 0.00006125, + "pricePerUnit": 1350357, + "totalCost": 82.71, + "fee": 0.29049592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T14:00:06" + }, + { + "id": "vbq5skoff5uuy2sypf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T18:00:06", + "amountCrypto": 0.00006092, + "pricePerUnit": 1357538, + "totalCost": 82.7, + "fee": 0.29046726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T18:00:06" + }, + { + "id": "g0lmd9mbb7c7bsdddh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-04T22:00:05", + "amountCrypto": 0.00006066, + "pricePerUnit": 1363490, + "totalCost": 82.71, + "fee": 0.29049584, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-04T22:00:05" + }, + { + "id": "k7x188vx93oo6uso02", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T02:00:05", + "amountCrypto": 0.00006197, + "pricePerUnit": 1334680, + "totalCost": 82.71, + "fee": 0.29049857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T02:00:05" + }, + { + "id": "c5wrftrrla6lp5z4ft", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T06:00:05", + "amountCrypto": 0.00006397, + "pricePerUnit": 1292845, + "totalCost": 82.7, + "fee": 0.29047461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T06:00:05" + }, + { + "id": "8rbzy075t788olyofw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T10:00:05", + "amountCrypto": 0.00006486, + "pricePerUnit": 1275098, + "totalCost": 82.7, + "fee": 0.29047305, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T10:00:05" + }, + { + "id": "2x1g1kistnmsjj24gu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T14:00:05", + "amountCrypto": 0.00006355, + "pricePerUnit": 1301440, + "totalCost": 82.71, + "fee": 0.29048599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T14:00:05" + }, + { + "id": "gas1ho9d692nkoci85", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T18:00:05", + "amountCrypto": 0.00006253, + "pricePerUnit": 1322647, + "totalCost": 82.71, + "fee": 0.29048102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T18:00:05" + }, + { + "id": "8k1temq422bo9aclkh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-05T22:00:06", + "amountCrypto": 0.00006262, + "pricePerUnit": 1320724, + "totalCost": 82.7, + "fee": 0.29047623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-05T22:00:06" + }, + { + "id": "acyfne1sd4nlmn7dnf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T02:00:05", + "amountCrypto": 0.00006241, + "pricePerUnit": 1325149, + "totalCost": 82.7, + "fee": 0.29047205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T02:00:05" + }, + { + "id": "m40n33jgqqhfrfmlb5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T06:00:06", + "amountCrypto": 0.00006268, + "pricePerUnit": 1319478, + "totalCost": 82.7, + "fee": 0.29048022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T06:00:06" + }, + { + "id": "0ky8jgpthk4nd7zoyh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T10:00:06", + "amountCrypto": 0.00006241, + "pricePerUnit": 1325186, + "totalCost": 82.7, + "fee": 0.29048018, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T10:00:06" + }, + { + "id": "5rvj19b7jf7mmqlsur", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T14:00:05", + "amountCrypto": 0.0000623, + "pricePerUnit": 1327511, + "totalCost": 82.7, + "fee": 0.29047689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T14:00:05" + }, + { + "id": "w0e9uatr2iwkx74ap6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T18:00:05", + "amountCrypto": 0.00006183, + "pricePerUnit": 1337670, + "totalCost": 82.71, + "fee": 0.2904917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T18:00:05" + }, + { + "id": "wra8ohmawfwcmsa17q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-06T22:00:06", + "amountCrypto": 0.00006122, + "pricePerUnit": 1350854, + "totalCost": 82.7, + "fee": 0.29046055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-06T22:00:06" + }, + { + "id": "e52dcfn7n6az0ggfbi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T02:00:05", + "amountCrypto": 0.00006084, + "pricePerUnit": 1359259, + "totalCost": 82.7, + "fee": 0.29045363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T02:00:05" + }, + { + "id": "xuyf1zziv1rihhdhdg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T06:00:05", + "amountCrypto": 0.00006108, + "pricePerUnit": 1354127, + "totalCost": 82.71, + "fee": 0.2904985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T06:00:05" + }, + { + "id": "wb0sum8imzk5jme5zp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T10:00:05", + "amountCrypto": 0.00006189, + "pricePerUnit": 1336221, + "totalCost": 82.7, + "fee": 0.29045849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T10:00:05" + }, + { + "id": "4h7atc2fk0dag4v1ga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T14:00:05", + "amountCrypto": 0.00006164, + "pricePerUnit": 1341801, + "totalCost": 82.71, + "fee": 0.29049344, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T14:00:05" + }, + { + "id": "wzz47chncphacwv988", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T18:00:05", + "amountCrypto": 0.00006234, + "pricePerUnit": 1326646, + "totalCost": 82.7, + "fee": 0.29047397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T18:00:05" + }, + { + "id": "3ly40pcemhhsl7iinf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-07T22:00:05", + "amountCrypto": 0.00006199, + "pricePerUnit": 1334215, + "totalCost": 82.71, + "fee": 0.29049105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-07T22:00:05" + }, + { + "id": "r5eoabxoagabjedi3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T02:00:06", + "amountCrypto": 0.00006323, + "pricePerUnit": 1308063, + "totalCost": 82.71, + "fee": 0.29049399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T02:00:06" + }, + { + "id": "t89vagtk11cosoe8pm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T06:00:07", + "amountCrypto": 0.00006413, + "pricePerUnit": 1289576, + "totalCost": 82.7, + "fee": 0.2904648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T06:00:07" + }, + { + "id": "zh1hqa0k7k517k6gmg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T10:00:06", + "amountCrypto": 0.0000633, + "pricePerUnit": 1306553, + "totalCost": 82.7, + "fee": 0.29047993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T10:00:06" + }, + { + "id": "v7z2rytwsk0lma0zml", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T14:00:05", + "amountCrypto": 0.00006189, + "pricePerUnit": 1336322, + "totalCost": 82.7, + "fee": 0.2904805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T14:00:05" + }, + { + "id": "1l1r4ebw6ltnjaxr3h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T18:00:06", + "amountCrypto": 0.00006336, + "pricePerUnit": 1305228, + "totalCost": 82.7, + "fee": 0.29046034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T18:00:06" + }, + { + "id": "ai02oxb4zo9a1z3blb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-08T22:00:05", + "amountCrypto": 0.00006251, + "pricePerUnit": 1323050, + "totalCost": 82.7, + "fee": 0.29047659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-08T22:00:05" + }, + { + "id": "4dm8tzzviub10i2ibw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T02:00:05", + "amountCrypto": 0.00006234, + "pricePerUnit": 1326667, + "totalCost": 82.7, + "fee": 0.29047858, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T02:00:05" + }, + { + "id": "kwu8tzxkapkg2oxfit", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T06:00:04", + "amountCrypto": 0.00006189, + "pricePerUnit": 1333606, + "totalCost": 82.54, + "fee": 0.28989017, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T06:00:04" + }, + { + "id": "4i37frc4aal6bikgw7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T10:00:06", + "amountCrypto": 0.00006179, + "pricePerUnit": 1338433, + "totalCost": 82.7, + "fee": 0.29046934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T10:00:06" + }, + { + "id": "anmfuxdg9qxv5y4jbe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T14:00:05", + "amountCrypto": 0.00006131, + "pricePerUnit": 1348848, + "totalCost": 82.7, + "fee": 0.2904556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T14:00:05" + }, + { + "id": "imrvv556k2hllxb0ll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T18:00:05", + "amountCrypto": 0.00006123, + "pricePerUnit": 1350665, + "totalCost": 82.7, + "fee": 0.29046725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T18:00:05" + }, + { + "id": "ikll69xy6lnn1ol4el", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-09T22:00:05", + "amountCrypto": 0.00006084, + "pricePerUnit": 1359436, + "totalCost": 82.71, + "fee": 0.29049154, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-09T22:00:05" + }, + { + "id": "rg0ma29dxdztae2uwa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T02:00:05", + "amountCrypto": 0.00006061, + "pricePerUnit": 1364560, + "totalCost": 82.71, + "fee": 0.2904841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T02:00:05" + }, + { + "id": "tu3rrnlp9874b25ku1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T06:00:08", + "amountCrypto": 0.00006067, + "pricePerUnit": 1363246, + "totalCost": 82.71, + "fee": 0.2904916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T06:00:08" + }, + { + "id": "q0g8icl1hbgj5rs520", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T10:00:06", + "amountCrypto": 0.00005932, + "pricePerUnit": 1394092, + "totalCost": 82.7, + "fee": 0.29045452, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T10:00:06" + }, + { + "id": "fjjmxsa547afy56vj0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T14:00:06", + "amountCrypto": 0.00005986, + "pricePerUnit": 1381719, + "totalCost": 82.71, + "fee": 0.29049708, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T14:00:06" + }, + { + "id": "keasqf8f3jpa7p4frc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T18:00:06", + "amountCrypto": 0.00006075, + "pricePerUnit": 1361405, + "totalCost": 82.71, + "fee": 0.29048192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T18:00:06" + }, + { + "id": "sjekxvibswbruyujqq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-10T22:00:05", + "amountCrypto": 0.00006101, + "pricePerUnit": 1355679, + "totalCost": 82.71, + "fee": 0.29049811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-10T22:00:05" + }, + { + "id": "7yww4nja3zxypeymxn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T02:00:05", + "amountCrypto": 0.00006076, + "pricePerUnit": 1361073, + "totalCost": 82.7, + "fee": 0.29045893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T02:00:05" + }, + { + "id": "rshqu7c7anxwyr65oe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T06:00:05", + "amountCrypto": 0.00006107, + "pricePerUnit": 1351563, + "totalCost": 82.54, + "fee": 0.28990097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T06:00:05" + }, + { + "id": "1qv57w3l6drs6dpqfi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T10:00:05", + "amountCrypto": 0.00006021, + "pricePerUnit": 1373691, + "totalCost": 82.71, + "fee": 0.29049792, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T10:00:05" + }, + { + "id": "ilvwx48il5z964r44f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T14:00:04", + "amountCrypto": 0.0000599, + "pricePerUnit": 1380804, + "totalCost": 82.71, + "fee": 0.29049885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T14:00:04" + }, + { + "id": "i0cqfy9kdbd9ecf3ld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T18:00:05", + "amountCrypto": 0.0000614, + "pricePerUnit": 1346945, + "totalCost": 82.7, + "fee": 0.29047165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T18:00:05" + }, + { + "id": "ao3qfc1mlpswxq93he", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-11T22:00:05", + "amountCrypto": 0.00006131, + "pricePerUnit": 1348947, + "totalCost": 82.7, + "fee": 0.29047697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-11T22:00:05" + }, + { + "id": "efrvqxahlda587gorh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T02:00:06", + "amountCrypto": 0.00006143, + "pricePerUnit": 1346336, + "totalCost": 82.71, + "fee": 0.29048206, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T02:00:06" + }, + { + "id": "zxwmc3sck1864vam00", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T06:00:07", + "amountCrypto": 0.00006182, + "pricePerUnit": 1337770, + "totalCost": 82.7, + "fee": 0.29046649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T06:00:07" + }, + { + "id": "j7rc0noh5bbko30xcw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T10:00:06", + "amountCrypto": 0.00006168, + "pricePerUnit": 1340945, + "totalCost": 82.71, + "fee": 0.29049648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T10:00:06" + }, + { + "id": "hvpolcklb0tumhg98a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T14:00:08", + "amountCrypto": 0.00006169, + "pricePerUnit": 1340575, + "totalCost": 82.7, + "fee": 0.29046342, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T14:00:08" + }, + { + "id": "53m49wwornonr1j7um", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T18:00:06", + "amountCrypto": 0.00006088, + "pricePerUnit": 1358532, + "totalCost": 82.71, + "fee": 0.29048918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T18:00:06" + }, + { + "id": "sxt2g977sy64vvnv1d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-12T22:00:06", + "amountCrypto": 0.00006136, + "pricePerUnit": 1347756, + "totalCost": 82.7, + "fee": 0.2904572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-12T22:00:06" + }, + { + "id": "76xebbheffw4eemhvo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T02:00:05", + "amountCrypto": 0.00006127, + "pricePerUnit": 1349716, + "totalCost": 82.7, + "fee": 0.29045292, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T02:00:05" + }, + { + "id": "qc0c89mpbihjq5dj2n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T06:00:05", + "amountCrypto": 0.00006114, + "pricePerUnit": 1352789, + "totalCost": 82.71, + "fee": 0.29049647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T06:00:05" + }, + { + "id": "p56958nkk2e00691h4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T10:00:05", + "amountCrypto": 0.00006088, + "pricePerUnit": 1358454, + "totalCost": 82.7, + "fee": 0.29047246, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T10:00:05" + }, + { + "id": "9edevvd99mcjqnsmcm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T14:00:05", + "amountCrypto": 0.0000604, + "pricePerUnit": 1369178, + "totalCost": 82.7, + "fee": 0.29045718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T14:00:05" + }, + { + "id": "cwtzo7nrsjoaw647fa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T18:00:06", + "amountCrypto": 0.00006027, + "pricePerUnit": 1372118, + "totalCost": 82.7, + "fee": 0.29045444, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T18:00:06" + }, + { + "id": "zn3rcnu22m7z0fm579", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-13T22:00:05", + "amountCrypto": 0.0000602, + "pricePerUnit": 1373885, + "totalCost": 82.71, + "fee": 0.29049079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5403", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-13T22:00:05" + }, + { + "id": "fj86cnxnthgae6o0ce", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T02:00:05", + "amountCrypto": 0.00005974, + "pricePerUnit": 1384418, + "totalCost": 82.71, + "fee": 0.29048118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T02:00:05" + }, + { + "id": "p5pe5kzctyjew09hpg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T06:00:05", + "amountCrypto": 0.00005936, + "pricePerUnit": 1393244, + "totalCost": 82.7, + "fee": 0.29047355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T06:00:05" + }, + { + "id": "3m65wkl1fbycstscqp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T10:00:06", + "amountCrypto": 0.00005898, + "pricePerUnit": 1402337, + "totalCost": 82.71, + "fee": 0.29049761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T10:00:06" + }, + { + "id": "bw0k39kf93g62qyj2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T14:00:06", + "amountCrypto": 0.00005893, + "pricePerUnit": 1403488, + "totalCost": 82.71, + "fee": 0.29048954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T14:00:06" + }, + { + "id": "f9kn9q4r0q9loij4zx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T18:00:05", + "amountCrypto": 0.00005893, + "pricePerUnit": 1403488, + "totalCost": 82.71, + "fee": 0.29048954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T18:00:05" + }, + { + "id": "0x66r0ejvuhbzav323", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-14T22:00:06", + "amountCrypto": 0.00005893, + "pricePerUnit": 1400697, + "totalCost": 82.54, + "fee": 0.28991182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-14T22:00:06" + }, + { + "id": "w3i24ov2fs1ynai97o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T02:00:07", + "amountCrypto": 0.00005803, + "pricePerUnit": 1425064, + "totalCost": 82.7, + "fee": 0.29045074, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T02:00:07" + }, + { + "id": "o4gt5fxq3p164kb9vh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T06:00:05", + "amountCrypto": 0.00005654, + "pricePerUnit": 1462635, + "totalCost": 82.7, + "fee": 0.29045384, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5411", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T06:00:05" + }, + { + "id": "yj6w130cj7o1jda1bm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T10:00:06", + "amountCrypto": 0.0000561, + "pricePerUnit": 1474289, + "totalCost": 82.71, + "fee": 0.29048976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T10:00:06" + }, + { + "id": "o0qaq62h8egge8rjxu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T14:00:06", + "amountCrypto": 0.00005637, + "pricePerUnit": 1467045, + "totalCost": 82.7, + "fee": 0.29045363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T14:00:06" + }, + { + "id": "apvyh7s8kk0e79al99", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T18:00:06", + "amountCrypto": 0.00005601, + "pricePerUnit": 1476476, + "totalCost": 82.7, + "fee": 0.29045405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T18:00:06" + }, + { + "id": "hqrlgk5i0veix9i8g4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-15T22:00:06", + "amountCrypto": 0.00005564, + "pricePerUnit": 1486368, + "totalCost": 82.7, + "fee": 0.29046835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-15T22:00:06" + }, + { + "id": "js63ev1ohra7p0f1hy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T02:00:06", + "amountCrypto": 0.00005452, + "pricePerUnit": 1517059, + "totalCost": 82.71, + "fee": 0.2904984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T02:00:06" + }, + { + "id": "ll39y99zgtsmtth4wp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T06:00:05", + "amountCrypto": 0.00005451, + "pricePerUnit": 1517120, + "totalCost": 82.7, + "fee": 0.29045683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T06:00:05" + }, + { + "id": "ilqaohupn5vecdwgn1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T10:00:05", + "amountCrypto": 0.00005608, + "pricePerUnit": 1474697, + "totalCost": 82.7, + "fee": 0.29046657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T10:00:05" + }, + { + "id": "eolk2dgfu3rfzbsrt9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T14:00:05", + "amountCrypto": 0.00005547, + "pricePerUnit": 1490875, + "totalCost": 82.7, + "fee": 0.29045898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T14:00:05" + }, + { + "id": "2zjo7ltb3r1io3jwmf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T18:00:05", + "amountCrypto": 0.00005459, + "pricePerUnit": 1515055, + "totalCost": 82.71, + "fee": 0.29048715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T18:00:05" + }, + { + "id": "xxuzrvg7h5nlm2yhv9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-16T22:00:05", + "amountCrypto": 0.00005453, + "pricePerUnit": 1516550, + "totalCost": 82.7, + "fee": 0.29045415, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-16T22:00:05" + }, + { + "id": "eahp5an8s7a4er9t11", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T02:00:05", + "amountCrypto": 0.00005443, + "pricePerUnit": 1519515, + "totalCost": 82.71, + "fee": 0.29048839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T02:00:05" + }, + { + "id": "s6caqamm1sjvghibyp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T06:00:06", + "amountCrypto": 0.00005391, + "pricePerUnit": 1534215, + "totalCost": 82.71, + "fee": 0.29049648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T06:00:06" + }, + { + "id": "i1jsevoip86p52uaae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T10:00:06", + "amountCrypto": 0.00005424, + "pricePerUnit": 1524657, + "totalCost": 82.7, + "fee": 0.29045391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T10:00:06" + }, + { + "id": "4q9zmma419iio6a7yu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T14:00:06", + "amountCrypto": 0.00005491, + "pricePerUnit": 1506278, + "totalCost": 82.71, + "fee": 0.29049728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T14:00:06" + }, + { + "id": "8d8c1591hi8zhbvajy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T18:00:06", + "amountCrypto": 0.00005494, + "pricePerUnit": 1505230, + "totalCost": 82.7, + "fee": 0.29045365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T18:00:06" + }, + { + "id": "70whzo1zrso0uvadtl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-17T22:00:06", + "amountCrypto": 0.00005506, + "pricePerUnit": 1502011, + "totalCost": 82.7, + "fee": 0.29046555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-17T22:00:06" + }, + { + "id": "42skwwlgycq8vx3n1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T02:00:05", + "amountCrypto": 0.00005538, + "pricePerUnit": 1493457, + "totalCost": 82.71, + "fee": 0.29049001, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T02:00:05" + }, + { + "id": "kf8yuaznvruurw2xe3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T06:00:07", + "amountCrypto": 0.00005489, + "pricePerUnit": 1506807, + "totalCost": 82.71, + "fee": 0.29049332, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T06:00:07" + }, + { + "id": "w2ks7wdyr2ua2uhe4v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T10:00:05", + "amountCrypto": 0.00005489, + "pricePerUnit": 1506576, + "totalCost": 82.7, + "fee": 0.29044887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T10:00:05" + }, + { + "id": "y2oetaaf6ci6eb3z67", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T14:00:05", + "amountCrypto": 0.00005517, + "pricePerUnit": 1499169, + "totalCost": 82.71, + "fee": 0.29049514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T14:00:05" + }, + { + "id": "d63sjvmytdj1fzc43d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T18:00:05", + "amountCrypto": 0.00005585, + "pricePerUnit": 1480715, + "totalCost": 82.7, + "fee": 0.29045576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T18:00:05" + }, + { + "id": "725zyztpgjk99n127j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-18T22:00:06", + "amountCrypto": 0.00005576, + "pricePerUnit": 1483288, + "totalCost": 82.71, + "fee": 0.29049168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-18T22:00:06" + }, + { + "id": "o4yqjrb32e8b6svp48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T02:00:06", + "amountCrypto": 0.00005539, + "pricePerUnit": 1492992, + "totalCost": 82.7, + "fee": 0.29045197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T02:00:06" + }, + { + "id": "8mq781t1p1rh5hdsya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T06:00:05", + "amountCrypto": 0.00005513, + "pricePerUnit": 1500031, + "totalCost": 82.7, + "fee": 0.29045146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T06:00:05" + }, + { + "id": "i7vsneotuvhjit3g2v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T10:00:09", + "amountCrypto": 0.00005559, + "pricePerUnit": 1487792, + "totalCost": 82.71, + "fee": 0.29048546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T10:00:09" + }, + { + "id": "rf0vz84uq9dmpaibe5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T14:00:05", + "amountCrypto": 0.00005538, + "pricePerUnit": 1493353, + "totalCost": 82.7, + "fee": 0.29046973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T14:00:05" + }, + { + "id": "n9elnwj1i420m2ftvt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T18:00:10", + "amountCrypto": 0.00005392, + "pricePerUnit": 1533811, + "totalCost": 82.7, + "fee": 0.29047386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T18:00:10" + }, + { + "id": "1u7i1cg98ifq23uzpl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-19T22:00:06", + "amountCrypto": 0.00005285, + "pricePerUnit": 1564813, + "totalCost": 82.7, + "fee": 0.29046431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-19T22:00:06" + }, + { + "id": "jc5pkpuwtgyeod2y9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T02:00:06", + "amountCrypto": 0.00005328, + "pricePerUnit": 1552249, + "totalCost": 82.7, + "fee": 0.2904766, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T02:00:06" + }, + { + "id": "25tds7bdchz8nwjkg0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T06:00:06", + "amountCrypto": 0.0000533, + "pricePerUnit": 1551566, + "totalCost": 82.7, + "fee": 0.29045765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T06:00:06" + }, + { + "id": "htciui7k13ajjj851g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T10:00:06", + "amountCrypto": 0.00005335, + "pricePerUnit": 1550103, + "totalCost": 82.7, + "fee": 0.29045606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T10:00:06" + }, + { + "id": "r89aef0fbfs36rwia6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T14:00:07", + "amountCrypto": 0.00005346, + "pricePerUnit": 1547067, + "totalCost": 82.71, + "fee": 0.29048478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T14:00:07" + }, + { + "id": "6uhy934yhi65pg4dyl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T18:00:06", + "amountCrypto": 0.00005327, + "pricePerUnit": 1552433, + "totalCost": 82.7, + "fee": 0.29045641, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T18:00:06" + }, + { + "id": "kvayag5f3goccqvxo7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-20T22:00:06", + "amountCrypto": 0.00005292, + "pricePerUnit": 1562830, + "totalCost": 82.7, + "fee": 0.29048047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-20T22:00:06" + }, + { + "id": "yh6cijgbwqesmm20gi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T02:00:06", + "amountCrypto": 0.00005296, + "pricePerUnit": 1561473, + "totalCost": 82.7, + "fee": 0.29044773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T02:00:06" + }, + { + "id": "88ssj7xinixlk39ax2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T06:00:06", + "amountCrypto": 0.00005293, + "pricePerUnit": 1562364, + "totalCost": 82.7, + "fee": 0.2904487, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T06:00:06" + }, + { + "id": "luit8lgfgjczasvk2n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T10:00:06", + "amountCrypto": 0.00005329, + "pricePerUnit": 1551917, + "totalCost": 82.7, + "fee": 0.29046883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T10:00:06" + }, + { + "id": "k0pmmh0qt5hflbqyjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T14:00:06", + "amountCrypto": 0.00005315, + "pricePerUnit": 1556114, + "totalCost": 82.71, + "fee": 0.29048929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T14:00:06" + }, + { + "id": "x88fn6tghh5y2vygz5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T18:00:05", + "amountCrypto": 0.00005293, + "pricePerUnit": 1562493, + "totalCost": 82.7, + "fee": 0.29047274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T18:00:05" + }, + { + "id": "uyaii0d0jrxia73rxt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-21T22:00:05", + "amountCrypto": 0.00005277, + "pricePerUnit": 1567326, + "totalCost": 82.71, + "fee": 0.29049044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-21T22:00:05" + }, + { + "id": "hyjyrb125bdymnazdk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T02:00:05", + "amountCrypto": 0.00005246, + "pricePerUnit": 1576509, + "totalCost": 82.7, + "fee": 0.29047589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T02:00:05" + }, + { + "id": "d1b6vacqmdk0p2dai4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T06:00:07", + "amountCrypto": 0.00005258, + "pricePerUnit": 1572909, + "totalCost": 82.7, + "fee": 0.29047553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T06:00:07" + }, + { + "id": "8kp5h9xkmb3u5odsbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T10:00:06", + "amountCrypto": 0.00005286, + "pricePerUnit": 1564565, + "totalCost": 82.7, + "fee": 0.2904733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T10:00:06" + }, + { + "id": "qrymz73y74kmfilzlq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T14:00:06", + "amountCrypto": 0.00005273, + "pricePerUnit": 1568337, + "totalCost": 82.7, + "fee": 0.29045758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T14:00:06" + }, + { + "id": "a8kbni35fsdezdsvoe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T18:00:06", + "amountCrypto": 0.00005285, + "pricePerUnit": 1564975, + "totalCost": 82.71, + "fee": 0.29049445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T18:00:06" + }, + { + "id": "2fh9r0vz0iov3w3r4w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-22T22:00:06", + "amountCrypto": 0.00005221, + "pricePerUnit": 1583936, + "totalCost": 82.7, + "fee": 0.29045363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-22T22:00:06" + }, + { + "id": "keu2jyrw86b1u2iilf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-23T14:00:06", + "amountCrypto": 0.00005293, + "pricePerUnit": 1562598, + "totalCost": 82.71, + "fee": 0.29049231, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-23T14:00:06" + }, + { + "id": "n87kskud64677ois4b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-23T18:00:06", + "amountCrypto": 0.00005294, + "pricePerUnit": 1562062, + "totalCost": 82.7, + "fee": 0.29044746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-23T18:00:06" + }, + { + "id": "yvlt22hwiytrnp383x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-23T22:00:05", + "amountCrypto": 0.00005382, + "pricePerUnit": 1536781, + "totalCost": 82.71, + "fee": 0.29049664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-23T22:00:05" + }, + { + "id": "f4drcd8yyyoxu0w6np", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T02:00:06", + "amountCrypto": 0.00005357, + "pricePerUnit": 1543950, + "totalCost": 82.71, + "fee": 0.29049607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T02:00:06" + }, + { + "id": "1mcdq00hw60gqt7b4i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T06:00:06", + "amountCrypto": 0.00005341, + "pricePerUnit": 1548571, + "totalCost": 82.71, + "fee": 0.29049537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T06:00:06" + }, + { + "id": "g26qkvfyuezmw2q1xr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T10:00:06", + "amountCrypto": 0.00005315, + "pricePerUnit": 1555926, + "totalCost": 82.7, + "fee": 0.29045411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T10:00:06" + }, + { + "id": "pril5pdjsva35a3mbc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T14:00:07", + "amountCrypto": 0.000053, + "pricePerUnit": 1560457, + "totalCost": 82.7, + "fee": 0.29047788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T14:00:07" + }, + { + "id": "di0c0oro9c2x6jm5ls", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T18:00:05", + "amountCrypto": 0.00005322, + "pricePerUnit": 1553901, + "totalCost": 82.7, + "fee": 0.29045812, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T18:00:05" + }, + { + "id": "wccdw9w2t7twfyyz8s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-24T22:00:05", + "amountCrypto": 0.00005357, + "pricePerUnit": 1543941, + "totalCost": 82.71, + "fee": 0.29049437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-24T22:00:05" + }, + { + "id": "wv839g3yiu5nvhuekx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T02:00:06", + "amountCrypto": 0.00005377, + "pricePerUnit": 1538072, + "totalCost": 82.7, + "fee": 0.29047061, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T02:00:06" + }, + { + "id": "pnd3dueybp0pqijhvt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T06:00:08", + "amountCrypto": 0.0000547, + "pricePerUnit": 1511811, + "totalCost": 82.7, + "fee": 0.29044924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T06:00:08" + }, + { + "id": "jm1s0twl4xr4fkn5pb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T10:00:06", + "amountCrypto": 0.00005481, + "pricePerUnit": 1508802, + "totalCost": 82.7, + "fee": 0.29045398, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T10:00:06" + }, + { + "id": "idr9ogewr8q83wprbi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T14:00:07", + "amountCrypto": 0.00005471, + "pricePerUnit": 1511601, + "totalCost": 82.7, + "fee": 0.29046208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T14:00:07" + }, + { + "id": "ci373yyfurb4fz6vba", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T18:00:07", + "amountCrypto": 0.00005436, + "pricePerUnit": 1521325, + "totalCost": 82.7, + "fee": 0.29046029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T18:00:07" + }, + { + "id": "55xctfcv8f7vtvu25m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-25T22:00:06", + "amountCrypto": 0.00005434, + "pricePerUnit": 1521918, + "totalCost": 82.7, + "fee": 0.29046669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-25T22:00:06" + }, + { + "id": "6tq73c8u3x1dsqxu46", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T02:00:06", + "amountCrypto": 0.00005364, + "pricePerUnit": 1541940, + "totalCost": 82.71, + "fee": 0.29049698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T02:00:06" + }, + { + "id": "viqfj3bl31msmf5t82", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T06:00:06", + "amountCrypto": 0.00005257, + "pricePerUnit": 1573322, + "totalCost": 82.71, + "fee": 0.29049654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T06:00:06" + }, + { + "id": "dj1srw69dqf2fcouza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T10:00:07", + "amountCrypto": 0.00005266, + "pricePerUnit": 1570586, + "totalCost": 82.71, + "fee": 0.29048788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T10:00:07" + }, + { + "id": "lvpb6oehojdnwoiyff", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T14:00:07", + "amountCrypto": 0.0000524, + "pricePerUnit": 1578350, + "totalCost": 82.71, + "fee": 0.2904826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T14:00:07" + }, + { + "id": "p8f9b3l2x9be6ax1dj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T18:00:06", + "amountCrypto": 0.00005222, + "pricePerUnit": 1583632, + "totalCost": 82.7, + "fee": 0.29045355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T18:00:06" + }, + { + "id": "um33n1vq8bqzr30z8v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-26T22:00:06", + "amountCrypto": 0.00005194, + "pricePerUnit": 1592282, + "totalCost": 82.7, + "fee": 0.29047405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-26T22:00:06" + }, + { + "id": "yv7r5e020afhjfr7n6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T02:00:07", + "amountCrypto": 0.00005196, + "pricePerUnit": 1591779, + "totalCost": 82.71, + "fee": 0.29049406, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T02:00:07" + }, + { + "id": "2m3bo382e5suox4xcg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T06:00:05", + "amountCrypto": 0.00005201, + "pricePerUnit": 1590047, + "totalCost": 82.7, + "fee": 0.29045734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T06:00:05" + }, + { + "id": "sa6gp6j6430ebnjoc0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T10:00:06", + "amountCrypto": 0.00005184, + "pricePerUnit": 1595241, + "totalCost": 82.7, + "fee": 0.29045363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T10:00:06" + }, + { + "id": "wxtuki67ipmmgt30k4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T14:00:06", + "amountCrypto": 0.00005184, + "pricePerUnit": 1592069, + "totalCost": 82.53, + "fee": 0.289876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T14:00:06" + }, + { + "id": "7a4c8okt96c8cu2lhi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T18:00:06", + "amountCrypto": 0.00005135, + "pricePerUnit": 1607393, + "totalCost": 82.54, + "fee": 0.28989991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T18:00:06" + }, + { + "id": "ueytzqpgva334ni270", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-27T22:00:05", + "amountCrypto": 0.00005174, + "pricePerUnit": 1598355, + "totalCost": 82.7, + "fee": 0.29045918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-27T22:00:05" + }, + { + "id": "phfd6yooh3469i0eiv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T02:00:07", + "amountCrypto": 0.00005199, + "pricePerUnit": 1590845, + "totalCost": 82.71, + "fee": 0.29049136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T02:00:07" + }, + { + "id": "emt7l0c7z7t635henm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T06:00:07", + "amountCrypto": 0.00005194, + "pricePerUnit": 1592423, + "totalCost": 82.71, + "fee": 0.29049984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T06:00:07" + }, + { + "id": "9gsupgmfaw78atoa9m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T10:00:05", + "amountCrypto": 0.00005222, + "pricePerUnit": 1583615, + "totalCost": 82.7, + "fee": 0.29045042, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T10:00:05" + }, + { + "id": "9y4ti8gel83saaoua5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T14:00:05", + "amountCrypto": 0.00005199, + "pricePerUnit": 1590845, + "totalCost": 82.71, + "fee": 0.29049136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T14:00:05" + }, + { + "id": "s9ott8jnrg2r2han39", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T18:00:05", + "amountCrypto": 0.00005218, + "pricePerUnit": 1584935, + "totalCost": 82.7, + "fee": 0.29046972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T18:00:05" + }, + { + "id": "mj7bitcww80ab7qf3b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-28T22:00:06", + "amountCrypto": 0.00005181, + "pricePerUnit": 1596238, + "totalCost": 82.7, + "fee": 0.29046687, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-28T22:00:06" + }, + { + "id": "jhznixkle4alw28dww", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T02:00:06", + "amountCrypto": 0.0000518, + "pricePerUnit": 1596561, + "totalCost": 82.7, + "fee": 0.29046953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T02:00:06" + }, + { + "id": "xtrbmmnf5zpne6jooy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T06:00:07", + "amountCrypto": 0.00005124, + "pricePerUnit": 1610802, + "totalCost": 82.54, + "fee": 0.28989235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5495", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T06:00:07" + }, + { + "id": "m6inu9jgb8pymtxw2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T10:00:06", + "amountCrypto": 0.00005124, + "pricePerUnit": 1610802, + "totalCost": 82.54, + "fee": 0.28989235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T10:00:06" + }, + { + "id": "12pkc3af8n3tzvhzws", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T14:00:07", + "amountCrypto": 0.00005071, + "pricePerUnit": 1630842, + "totalCost": 82.7, + "fee": 0.29046303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T14:00:07" + }, + { + "id": "cs862edafljfgdv1cd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T18:00:07", + "amountCrypto": 0.00005158, + "pricePerUnit": 1603446, + "totalCost": 82.71, + "fee": 0.2904832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T18:00:07" + }, + { + "id": "ht39kvzcdnv4ud4nv0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-29T22:00:08", + "amountCrypto": 0.00005225, + "pricePerUnit": 1582805, + "totalCost": 82.7, + "fee": 0.29046863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-29T22:00:08" + }, + { + "id": "kngpvilxpeiq7eguqv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T02:00:07", + "amountCrypto": 0.00005257, + "pricePerUnit": 1573170, + "totalCost": 82.7, + "fee": 0.29046859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T02:00:07" + }, + { + "id": "w5ybxqgts709ya5wxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T06:00:08", + "amountCrypto": 0.00005274, + "pricePerUnit": 1567996, + "totalCost": 82.7, + "fee": 0.29044934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T06:00:08" + }, + { + "id": "79kcfd2dsqcrkbifa1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T10:00:05", + "amountCrypto": 0.00005239, + "pricePerUnit": 1578562, + "totalCost": 82.7, + "fee": 0.29046608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T10:00:05" + }, + { + "id": "gb3804smz13jucoace", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T14:00:07", + "amountCrypto": 0.00005277, + "pricePerUnit": 1567369, + "totalCost": 82.71, + "fee": 0.29049843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T14:00:07" + }, + { + "id": "qew9pzu44bnh0v4ccq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T18:00:05", + "amountCrypto": 0.00005298, + "pricePerUnit": 1561073, + "totalCost": 82.71, + "fee": 0.29048299, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T18:00:05" + }, + { + "id": "ih48tvbl6wq84e7h72", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-30T22:00:06", + "amountCrypto": 0.00005322, + "pricePerUnit": 1554037, + "totalCost": 82.71, + "fee": 0.2904836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-30T22:00:06" + }, + { + "id": "00k07zq8txsv2f9beu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T02:00:06", + "amountCrypto": 0.000053, + "pricePerUnit": 1560510, + "totalCost": 82.71, + "fee": 0.29048777, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T02:00:06" + }, + { + "id": "yputayv9q8oj6eiwcd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T06:00:07", + "amountCrypto": 0.00005313, + "pricePerUnit": 1556618, + "totalCost": 82.7, + "fee": 0.29047408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T06:00:07" + }, + { + "id": "8ynuywo7yj139vc6dz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T10:00:06", + "amountCrypto": 0.00005293, + "pricePerUnit": 1562514, + "totalCost": 82.7, + "fee": 0.29047665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T10:00:06" + }, + { + "id": "13scmmvy3ksbgy76z4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T14:00:07", + "amountCrypto": 0.00005304, + "pricePerUnit": 1559161, + "totalCost": 82.7, + "fee": 0.29045563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5509", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T14:00:07" + }, + { + "id": "pdl1ybh4w5wg9i0k8d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T18:00:06", + "amountCrypto": 0.00005281, + "pricePerUnit": 1566034, + "totalCost": 82.7, + "fee": 0.29047095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5510", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T18:00:06" + }, + { + "id": "wtxt3ziqy8hlpy3g5m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-07-31T22:00:06", + "amountCrypto": 0.00005376, + "pricePerUnit": 1538244, + "totalCost": 82.7, + "fee": 0.29044896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5511", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-07-31T22:00:06" + }, + { + "id": "x025l0z5hmb908qnf4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T02:00:06", + "amountCrypto": 0.00005422, + "pricePerUnit": 1525264, + "totalCost": 82.7, + "fee": 0.2904625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5512", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T02:00:06" + }, + { + "id": "3v5fgq452e9ndpz5hv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T06:00:06", + "amountCrypto": 0.00005488, + "pricePerUnit": 1506879, + "totalCost": 82.7, + "fee": 0.29045431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5513", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T06:00:06" + }, + { + "id": "7lzahk4tny8onuxb68", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T10:00:07", + "amountCrypto": 0.00005433, + "pricePerUnit": 1522175, + "totalCost": 82.7, + "fee": 0.29046221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5514", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T10:00:07" + }, + { + "id": "yp3z9jmvdrj1w2jrht", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T14:00:06", + "amountCrypto": 0.00005398, + "pricePerUnit": 1532031, + "totalCost": 82.7, + "fee": 0.29045972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5515", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T14:00:06" + }, + { + "id": "v1nkawdxgvfdv8k4c3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T18:00:06", + "amountCrypto": 0.0000555, + "pricePerUnit": 1490100, + "totalCost": 82.7, + "fee": 0.29046501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5516", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T18:00:06" + }, + { + "id": "aeim3mxphynxn20cpv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-01T22:00:07", + "amountCrypto": 0.0000552, + "pricePerUnit": 1498129, + "totalCost": 82.7, + "fee": 0.29045155, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5517", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-01T22:00:07" + }, + { + "id": "udrxuznaurvfmxjvfi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T02:00:07", + "amountCrypto": 0.00005374, + "pricePerUnit": 1539049, + "totalCost": 82.71, + "fee": 0.29049284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5518", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T02:00:07" + }, + { + "id": "07c6yzl4jw4mrj9966", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T06:00:08", + "amountCrypto": 0.00005442, + "pricePerUnit": 1519623, + "totalCost": 82.7, + "fee": 0.29045572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5519", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T06:00:08" + }, + { + "id": "cxiyw09atxw2m4h6mb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T10:00:07", + "amountCrypto": 0.00005474, + "pricePerUnit": 1510889, + "totalCost": 82.71, + "fee": 0.29048431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5520", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T10:00:07" + }, + { + "id": "udn2npgxn4umtpuny3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T14:00:05", + "amountCrypto": 0.00005459, + "pricePerUnit": 1514857, + "totalCost": 82.7, + "fee": 0.29044909, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5521", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T14:00:05" + }, + { + "id": "pyeqj1ikb5dqp10koj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T18:00:06", + "amountCrypto": 0.00005598, + "pricePerUnit": 1477251, + "totalCost": 82.7, + "fee": 0.29045084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5522", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T18:00:06" + }, + { + "id": "iuouqbdg90rayy7bn5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-02T22:00:06", + "amountCrypto": 0.00005668, + "pricePerUnit": 1459202, + "totalCost": 82.71, + "fee": 0.29048971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5523", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-02T22:00:06" + }, + { + "id": "d6df61hk66rofyir9r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T02:00:07", + "amountCrypto": 0.00005772, + "pricePerUnit": 1432749, + "totalCost": 82.7, + "fee": 0.29045691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5524", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T02:00:07" + }, + { + "id": "rjmwrsh1789629mofm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T06:00:07", + "amountCrypto": 0.00005733, + "pricePerUnit": 1442614, + "totalCost": 82.71, + "fee": 0.29048085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5525", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T06:00:07" + }, + { + "id": "83knyuszvt2obdrlp4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T10:00:07", + "amountCrypto": 0.00005751, + "pricePerUnit": 1438029, + "totalCost": 82.7, + "fee": 0.29046668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5526", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T10:00:07" + }, + { + "id": "b4bwmz1mwvbuwkyh0c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T14:00:06", + "amountCrypto": 0.00005728, + "pricePerUnit": 1443809, + "totalCost": 82.7, + "fee": 0.29046792, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5527", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T14:00:06" + }, + { + "id": "e32kr9a1vawv70idl2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T18:00:05", + "amountCrypto": 0.00005823, + "pricePerUnit": 1420383, + "totalCost": 82.71, + "fee": 0.2904943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5528", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T18:00:05" + }, + { + "id": "7huic2im4fqdiluz63", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-03T22:00:06", + "amountCrypto": 0.00005879, + "pricePerUnit": 1406877, + "totalCost": 82.71, + "fee": 0.29049929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5529", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-03T22:00:06" + }, + { + "id": "5ijueg9kar0xme5i89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T02:00:05", + "amountCrypto": 0.00005841, + "pricePerUnit": 1415838, + "totalCost": 82.7, + "fee": 0.29046001, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5530", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T02:00:05" + }, + { + "id": "qamc9eurd66rxqdt3b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T06:00:05", + "amountCrypto": 0.00005841, + "pricePerUnit": 1415999, + "totalCost": 82.71, + "fee": 0.29049291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5531", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T06:00:05" + }, + { + "id": "onthkr3ii0njaf21xa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T10:00:07", + "amountCrypto": 0.00005875, + "pricePerUnit": 1407711, + "totalCost": 82.7, + "fee": 0.29047375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5532", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T10:00:07" + }, + { + "id": "3eqr4guwn2u81s0roh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T14:00:06", + "amountCrypto": 0.00005821, + "pricePerUnit": 1420741, + "totalCost": 82.7, + "fee": 0.29046769, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5533", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T14:00:06" + }, + { + "id": "fchzoznx8ngoikaune", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T18:00:06", + "amountCrypto": 0.00005992, + "pricePerUnit": 1380153, + "totalCost": 82.7, + "fee": 0.29045871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5534", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T18:00:06" + }, + { + "id": "zcy7qxfbzu60r7sm7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-04T22:00:06", + "amountCrypto": 0.00005949, + "pricePerUnit": 1390289, + "totalCost": 82.71, + "fee": 0.2904922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5535", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-04T22:00:06" + }, + { + "id": "kv5cekcu9frh6b5e6a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T02:00:06", + "amountCrypto": 0.00006102, + "pricePerUnit": 1355370, + "totalCost": 82.7, + "fee": 0.29047955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5536", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T02:00:06" + }, + { + "id": "bbjs1kcy2tuihxtmaq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T06:00:07", + "amountCrypto": 0.00006578, + "pricePerUnit": 1257261, + "totalCost": 82.7, + "fee": 0.2904724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5537", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T06:00:07" + }, + { + "id": "gqziecjzegxv105jsn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T10:00:07", + "amountCrypto": 0.00006754, + "pricePerUnit": 1224595, + "totalCost": 82.71, + "fee": 0.29049525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5538", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T10:00:07" + }, + { + "id": "7xs6u1powq9f311j5x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T14:00:08", + "amountCrypto": 0.00006902, + "pricePerUnit": 1198320, + "totalCost": 82.71, + "fee": 0.29049132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5539", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T14:00:08" + }, + { + "id": "yxf9ehcsia0gujqkyo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T18:00:06", + "amountCrypto": 0.00006561, + "pricePerUnit": 1260468, + "totalCost": 82.7, + "fee": 0.29046072, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5540", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T18:00:06" + }, + { + "id": "aw30zsu6tfq0yend6n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-05T22:00:07", + "amountCrypto": 0.00006672, + "pricePerUnit": 1239529, + "totalCost": 82.7, + "fee": 0.29046798, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5541", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-05T22:00:07" + }, + { + "id": "yw94ghbqpc0ijhwtog", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T02:00:08", + "amountCrypto": 0.00006594, + "pricePerUnit": 1254323, + "totalCost": 82.71, + "fee": 0.29049843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5542", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T02:00:08" + }, + { + "id": "iffbj9eeqy42ckex6h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T06:00:05", + "amountCrypto": 0.00006401, + "pricePerUnit": 1292120, + "totalCost": 82.71, + "fee": 0.29049329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5543", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T06:00:05" + }, + { + "id": "it3wyw6sdxxvg9c2jr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T10:00:09", + "amountCrypto": 0.00006319, + "pricePerUnit": 1308854, + "totalCost": 82.71, + "fee": 0.29048576, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5544", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T10:00:09" + }, + { + "id": "5bkcsufkiqvbspz1na", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T14:00:05", + "amountCrypto": 0.00006431, + "pricePerUnit": 1286106, + "totalCost": 82.71, + "fee": 0.29049638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5545", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T14:00:05" + }, + { + "id": "ed1r62wcjqv2o95hmk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T18:00:06", + "amountCrypto": 0.00006294, + "pricePerUnit": 1313960, + "totalCost": 82.7, + "fee": 0.2904654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T18:00:06" + }, + { + "id": "u3ynywtyuh3p4xnfx9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-06T22:00:08", + "amountCrypto": 0.00006241, + "pricePerUnit": 1325070, + "totalCost": 82.7, + "fee": 0.29045469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-06T22:00:08" + }, + { + "id": "yheqi2o802aaixyj4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T02:00:07", + "amountCrypto": 0.00006332, + "pricePerUnit": 1306197, + "totalCost": 82.71, + "fee": 0.29049256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T02:00:07" + }, + { + "id": "y3h7eoq7ic8q7q6haq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T06:00:06", + "amountCrypto": 0.0000624, + "pricePerUnit": 1325291, + "totalCost": 82.7, + "fee": 0.29045671, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T06:00:06" + }, + { + "id": "vznwzmxjzq6vp944eo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T10:00:07", + "amountCrypto": 0.00006232, + "pricePerUnit": 1327136, + "totalCost": 82.71, + "fee": 0.29048808, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T10:00:07" + }, + { + "id": "5s80i4dj52wy0l0zug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T14:00:05", + "amountCrypto": 0.00006239, + "pricePerUnit": 1325575, + "totalCost": 82.7, + "fee": 0.29047233, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T14:00:05" + }, + { + "id": "n19y4idr0ay2ppmi01", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T18:00:06", + "amountCrypto": 0.00006339, + "pricePerUnit": 1304651, + "totalCost": 82.7, + "fee": 0.29046953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T18:00:06" + }, + { + "id": "nhjr6jb4eqlc09yp39", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-07T22:00:06", + "amountCrypto": 0.00006489, + "pricePerUnit": 1274548, + "totalCost": 82.71, + "fee": 0.29048219, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-07T22:00:06" + }, + { + "id": "re7341m1i1arct1qnk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T02:00:06", + "amountCrypto": 0.00006462, + "pricePerUnit": 1277274, + "totalCost": 82.54, + "fee": 0.28989217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5554", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T02:00:06" + }, + { + "id": "qmids10t691jngrfh9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T06:00:08", + "amountCrypto": 0.00006232, + "pricePerUnit": 1327134, + "totalCost": 82.71, + "fee": 0.29048764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5555", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T06:00:08" + }, + { + "id": "e5xdhdvjlodqg7smeh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T10:00:06", + "amountCrypto": 0.00006231, + "pricePerUnit": 1327304, + "totalCost": 82.7, + "fee": 0.29047832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5556", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T10:00:06" + }, + { + "id": "bp9n3goqqdzar4acox", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T14:00:06", + "amountCrypto": 0.00006208, + "pricePerUnit": 1332315, + "totalCost": 82.71, + "fee": 0.29049859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5557", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T14:00:06" + }, + { + "id": "yi6fq2y9g8quaued1e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T18:00:06", + "amountCrypto": 0.00005979, + "pricePerUnit": 1383282, + "totalCost": 82.71, + "fee": 0.29048557, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5558", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T18:00:06" + }, + { + "id": "f26fwljmy5izy894j6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-08T22:00:07", + "amountCrypto": 0.00005986, + "pricePerUnit": 1381606, + "totalCost": 82.7, + "fee": 0.29047347, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5559", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-08T22:00:07" + }, + { + "id": "qjfpvzk7csshujfupm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T02:00:06", + "amountCrypto": 0.00005764, + "pricePerUnit": 1434909, + "totalCost": 82.71, + "fee": 0.29049169, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5560", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T02:00:06" + }, + { + "id": "ysr5v8stsj9i79hmfd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T06:00:07", + "amountCrypto": 0.00005797, + "pricePerUnit": 1426620, + "totalCost": 82.7, + "fee": 0.29046721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5561", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T06:00:07" + }, + { + "id": "5zsr967sb1llv4acsb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T10:00:06", + "amountCrypto": 0.00005849, + "pricePerUnit": 1413896, + "totalCost": 82.7, + "fee": 0.29045871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5562", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T10:00:06" + }, + { + "id": "4q9dceiung46bra6aj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T14:00:06", + "amountCrypto": 0.00005866, + "pricePerUnit": 1406985, + "totalCost": 82.53, + "fee": 0.28987906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5563", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T14:00:06" + }, + { + "id": "mwdzqgp7vpvgk2exhv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T18:00:06", + "amountCrypto": 0.00005949, + "pricePerUnit": 1390207, + "totalCost": 82.7, + "fee": 0.29047502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5564", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T18:00:06" + }, + { + "id": "tz17qvuwvx20klda5t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-09T22:00:05", + "amountCrypto": 0.0000587, + "pricePerUnit": 1408987, + "totalCost": 82.71, + "fee": 0.29048964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5565", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-09T22:00:05" + }, + { + "id": "7wjts9oga7qtru9ddr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T02:00:07", + "amountCrypto": 0.00005853, + "pricePerUnit": 1412975, + "totalCost": 82.7, + "fee": 0.29046816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5566", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T02:00:07" + }, + { + "id": "mnhbkrp10w6t2bzdnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T06:00:08", + "amountCrypto": 0.00005885, + "pricePerUnit": 1402541, + "totalCost": 82.54, + "fee": 0.28989959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5567", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T06:00:08" + }, + { + "id": "68scb79s2tpryteyfx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T10:00:06", + "amountCrypto": 0.00005853, + "pricePerUnit": 1412975, + "totalCost": 82.7, + "fee": 0.29046816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5568", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T10:00:06" + }, + { + "id": "jcy5tw15e8ww4nfw5o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T14:00:07", + "amountCrypto": 0.00005835, + "pricePerUnit": 1417287, + "totalCost": 82.7, + "fee": 0.29045851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5569", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T14:00:07" + }, + { + "id": "g0a27o42fp5qmy2032", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T18:00:05", + "amountCrypto": 0.00005876, + "pricePerUnit": 1407537, + "totalCost": 82.71, + "fee": 0.29048719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5570", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T18:00:05" + }, + { + "id": "c9n1k9pslvty8jbp9p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-10T22:00:06", + "amountCrypto": 0.00005825, + "pricePerUnit": 1419885, + "totalCost": 82.71, + "fee": 0.29049214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5571", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-10T22:00:06" + }, + { + "id": "k50o5ded8tbzus2kmz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T02:00:08", + "amountCrypto": 0.00005843, + "pricePerUnit": 1412583, + "totalCost": 82.54, + "fee": 0.28989147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5572", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T02:00:08" + }, + { + "id": "090dzoqtg8wikp9j6z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T06:00:07", + "amountCrypto": 0.00005822, + "pricePerUnit": 1420633, + "totalCost": 82.71, + "fee": 0.29049566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5573", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T06:00:07" + }, + { + "id": "at97vjuyt0shki2i7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T10:00:07", + "amountCrypto": 0.00005814, + "pricePerUnit": 1422457, + "totalCost": 82.7, + "fee": 0.29046886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5574", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T10:00:07" + }, + { + "id": "yl0zay57m1bcdhsut7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T14:00:06", + "amountCrypto": 0.00005861, + "pricePerUnit": 1411130, + "totalCost": 82.71, + "fee": 0.29048526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5575", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T14:00:06" + }, + { + "id": "2n0p5ngx4p3u1o0rhy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T18:00:07", + "amountCrypto": 0.00005914, + "pricePerUnit": 1398439, + "totalCost": 82.7, + "fee": 0.29047606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5576", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T18:00:07" + }, + { + "id": "7ehho4u3cthzz3a2sb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-11T22:00:07", + "amountCrypto": 0.00005963, + "pricePerUnit": 1387012, + "totalCost": 82.71, + "fee": 0.29048947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5577", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-11T22:00:07" + }, + { + "id": "ev7v7p385ukgb0k7od", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T02:00:06", + "amountCrypto": 0.00006058, + "pricePerUnit": 1365299, + "totalCost": 82.71, + "fee": 0.29049752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5578", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T02:00:06" + }, + { + "id": "alimrhjy645q1kif1v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T06:00:06", + "amountCrypto": 0.0000608, + "pricePerUnit": 1360300, + "totalCost": 82.71, + "fee": 0.29048509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5579", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T06:00:06" + }, + { + "id": "kr8k4w59zj73ftxla5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T10:00:08", + "amountCrypto": 0.00006081, + "pricePerUnit": 1359929, + "totalCost": 82.7, + "fee": 0.29045343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5580", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T10:00:08" + }, + { + "id": "20rrk623k1kyqkcko6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T14:00:06", + "amountCrypto": 0.0000597, + "pricePerUnit": 1385280, + "totalCost": 82.7, + "fee": 0.29046725, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5581", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T14:00:06" + }, + { + "id": "2coglvbd9gn3z1jb8r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T18:00:06", + "amountCrypto": 0.00005945, + "pricePerUnit": 1391103, + "totalCost": 82.7, + "fee": 0.29046685, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5582", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T18:00:06" + }, + { + "id": "3pnm7s7fsh3i6bgj2q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-12T22:00:06", + "amountCrypto": 0.00006052, + "pricePerUnit": 1366562, + "totalCost": 82.7, + "fee": 0.2904783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5583", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-12T22:00:06" + }, + { + "id": "fqzeqvyog8fcp6b4vv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T02:00:12", + "amountCrypto": 0.00006019, + "pricePerUnit": 1374104, + "totalCost": 82.71, + "fee": 0.29048874, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5584", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T02:00:12" + }, + { + "id": "8qhsm94fw2d5fevvxg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T06:00:05", + "amountCrypto": 0.00006052, + "pricePerUnit": 1366625, + "totalCost": 82.71, + "fee": 0.29049172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5585", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T06:00:05" + }, + { + "id": "z2wi9hguv0hrkp271d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T10:00:05", + "amountCrypto": 0.00006033, + "pricePerUnit": 1370870, + "totalCost": 82.7, + "fee": 0.29047913, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5586", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T10:00:05" + }, + { + "id": "5ehwjvrwpz9oq0jwds", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T14:00:06", + "amountCrypto": 0.00006062, + "pricePerUnit": 1364360, + "totalCost": 82.71, + "fee": 0.29048933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5587", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T14:00:06" + }, + { + "id": "lha7sqwx6dmlutozcv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T18:00:07", + "amountCrypto": 0.00006011, + "pricePerUnit": 1375967, + "totalCost": 82.71, + "fee": 0.29049609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5588", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T18:00:07" + }, + { + "id": "qzvnz0uvbmtgyqtces", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-13T22:00:06", + "amountCrypto": 0.00005908, + "pricePerUnit": 1399944, + "totalCost": 82.71, + "fee": 0.2904936, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5589", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-13T22:00:06" + }, + { + "id": "k8lga05om6dull3j6o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T02:00:05", + "amountCrypto": 0.00005928, + "pricePerUnit": 1395063, + "totalCost": 82.7, + "fee": 0.29046071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5590", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T02:00:05" + }, + { + "id": "rxs4v97tb8w7k5wtk3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T06:00:06", + "amountCrypto": 0.00005889, + "pricePerUnit": 1404254, + "totalCost": 82.7, + "fee": 0.29045078, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5591", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T06:00:06" + }, + { + "id": "lb677mo7a36o2jwnym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T10:00:08", + "amountCrypto": 0.0000591, + "pricePerUnit": 1399478, + "totalCost": 82.71, + "fee": 0.29049518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5592", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T10:00:08" + }, + { + "id": "r8yt4yxamx3gwql36i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T14:00:06", + "amountCrypto": 0.00005878, + "pricePerUnit": 1406937, + "totalCost": 82.7, + "fee": 0.2904623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5593", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T14:00:06" + }, + { + "id": "d5j85hwgo5pfvpe8lg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T18:00:06", + "amountCrypto": 0.00006067, + "pricePerUnit": 1363123, + "totalCost": 82.7, + "fee": 0.29046554, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5594", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T18:00:06" + }, + { + "id": "50jeafn1oe3mw9dxyf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-14T22:00:07", + "amountCrypto": 0.0000612, + "pricePerUnit": 1351309, + "totalCost": 82.7, + "fee": 0.29046349, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5595", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-14T22:00:07" + }, + { + "id": "cljofashogcd1lqbc2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T02:00:10", + "amountCrypto": 0.00006138, + "pricePerUnit": 1347349, + "totalCost": 82.7, + "fee": 0.29046413, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5596", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T02:00:10" + }, + { + "id": "w80rfprwqjyjqlhhtm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T06:00:09", + "amountCrypto": 0.00006167, + "pricePerUnit": 1341071, + "totalCost": 82.7, + "fee": 0.29047652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T06:00:09" + }, + { + "id": "knszuhkaw9m6tjysfh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T10:00:07", + "amountCrypto": 0.00006187, + "pricePerUnit": 1336691, + "totalCost": 82.7, + "fee": 0.2904668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5598", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T10:00:07" + }, + { + "id": "5m6olbx447vq0e2aqt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T14:00:07", + "amountCrypto": 0.00006126, + "pricePerUnit": 1349979, + "totalCost": 82.7, + "fee": 0.29046203, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T14:00:07" + }, + { + "id": "srbecjkka5afwqxip9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T18:00:06", + "amountCrypto": 0.00006014, + "pricePerUnit": 1375201, + "totalCost": 82.7, + "fee": 0.2904793, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T18:00:06" + }, + { + "id": "ku0seihvhnpw7dj7jd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-15T22:00:08", + "amountCrypto": 0.00006274, + "pricePerUnit": 1318160, + "totalCost": 82.7, + "fee": 0.29046779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-15T22:00:08" + }, + { + "id": "4pf1y1wmumcpemk4gf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T02:00:06", + "amountCrypto": 0.00006221, + "pricePerUnit": 1329433, + "totalCost": 82.7, + "fee": 0.29047717, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T02:00:06" + }, + { + "id": "tsk5t7q0azrnhvs1qh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T06:00:08", + "amountCrypto": 0.00006187, + "pricePerUnit": 1336779, + "totalCost": 82.71, + "fee": 0.29048597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T06:00:08" + }, + { + "id": "2rie0feerj8msgcwju", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T10:00:07", + "amountCrypto": 0.00006119, + "pricePerUnit": 1351651, + "totalCost": 82.71, + "fee": 0.2904895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T10:00:07" + }, + { + "id": "ywlbrbdvq4utf6bvhy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T14:00:06", + "amountCrypto": 0.00006141, + "pricePerUnit": 1346713, + "totalCost": 82.7, + "fee": 0.29046879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T14:00:06" + }, + { + "id": "psod3lumowfg1osa9w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T18:00:08", + "amountCrypto": 0.00006187, + "pricePerUnit": 1336691, + "totalCost": 82.7, + "fee": 0.2904668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T18:00:08" + }, + { + "id": "jlj1ymyjk2bqhfj0tb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-16T22:00:06", + "amountCrypto": 0.00006035, + "pricePerUnit": 1370385, + "totalCost": 82.7, + "fee": 0.29047258, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-16T22:00:06" + }, + { + "id": "jxcfiuw64w8940bdeg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T02:00:07", + "amountCrypto": 0.00006123, + "pricePerUnit": 1350814, + "totalCost": 82.71, + "fee": 0.29049937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T02:00:07" + }, + { + "id": "28pixy2lxfsm22vwj9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T06:00:06", + "amountCrypto": 0.0000609, + "pricePerUnit": 1358131, + "totalCost": 82.71, + "fee": 0.29049884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T06:00:06" + }, + { + "id": "u1eay9gkeb0v2r3xzo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T10:00:06", + "amountCrypto": 0.0000608, + "pricePerUnit": 1360333, + "totalCost": 82.71, + "fee": 0.29049194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T10:00:06" + }, + { + "id": "u16bft9kfpkrux6m6l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T14:00:06", + "amountCrypto": 0.00006094, + "pricePerUnit": 1357052, + "totalCost": 82.7, + "fee": 0.29045877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T14:00:06" + }, + { + "id": "d87e0bklvq502dixzp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T18:00:06", + "amountCrypto": 0.00006065, + "pricePerUnit": 1363614, + "totalCost": 82.7, + "fee": 0.29047421, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T18:00:06" + }, + { + "id": "a2gzll0kszjq997gwe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-17T22:00:07", + "amountCrypto": 0.00006061, + "pricePerUnit": 1364505, + "totalCost": 82.7, + "fee": 0.29047236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-17T22:00:07" + }, + { + "id": "n6arof2kkqmpnqonz6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T02:00:08", + "amountCrypto": 0.00006057, + "pricePerUnit": 1365505, + "totalCost": 82.71, + "fee": 0.2904935, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T02:00:08" + }, + { + "id": "9zm08eeunrl7otniz3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T06:00:06", + "amountCrypto": 0.00006069, + "pricePerUnit": 1362648, + "totalCost": 82.7, + "fee": 0.29046, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T06:00:06" + }, + { + "id": "geeve1uzecw6nvh3xd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T10:00:06", + "amountCrypto": 0.00006047, + "pricePerUnit": 1367635, + "totalCost": 82.7, + "fee": 0.29046613, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T10:00:06" + }, + { + "id": "vf4r2e3oky8hc4tymb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T14:00:06", + "amountCrypto": 0.00006007, + "pricePerUnit": 1376678, + "totalCost": 82.7, + "fee": 0.29045274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T14:00:06" + }, + { + "id": "lsyed47yrd75ptpckd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T18:00:07", + "amountCrypto": 0.00006021, + "pricePerUnit": 1373573, + "totalCost": 82.7, + "fee": 0.29047311, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T18:00:07" + }, + { + "id": "4l4cz54eezmh9qmzal", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-18T22:00:07", + "amountCrypto": 0.00006037, + "pricePerUnit": 1370059, + "totalCost": 82.71, + "fee": 0.29049976, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-18T22:00:07" + }, + { + "id": "85icghjdl1i6lw26en", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T02:00:07", + "amountCrypto": 0.00006154, + "pricePerUnit": 1343904, + "totalCost": 82.7, + "fee": 0.29047654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T02:00:07" + }, + { + "id": "ghccqntiwuwfht05db", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T06:00:06", + "amountCrypto": 0.00006144, + "pricePerUnit": 1345983, + "totalCost": 82.7, + "fee": 0.2904532, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T06:00:06" + }, + { + "id": "kxzyr3myh44v514pku", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T10:00:07", + "amountCrypto": 0.00006154, + "pricePerUnit": 1343821, + "totalCost": 82.7, + "fee": 0.29045856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T10:00:07" + }, + { + "id": "3m8qpm1v1en25o9jp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T14:00:06", + "amountCrypto": 0.00006187, + "pricePerUnit": 1336691, + "totalCost": 82.7, + "fee": 0.2904668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T14:00:06" + }, + { + "id": "3vi1rj6ud671jtfi67", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T18:00:06", + "amountCrypto": 0.00006182, + "pricePerUnit": 1337739, + "totalCost": 82.7, + "fee": 0.29045974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T18:00:06" + }, + { + "id": "t4s8lr2web0eai1ilf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-19T22:00:06", + "amountCrypto": 0.00006154, + "pricePerUnit": 1343959, + "totalCost": 82.71, + "fee": 0.29048846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-19T22:00:06" + }, + { + "id": "wf0ahoczcpmg1vsca1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T02:00:07", + "amountCrypto": 0.00006104, + "pricePerUnit": 1354977, + "totalCost": 82.71, + "fee": 0.29049051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T02:00:07" + }, + { + "id": "yv3gz6m4j1c6dk4dlx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T06:00:07", + "amountCrypto": 0.00005986, + "pricePerUnit": 1381540, + "totalCost": 82.7, + "fee": 0.29045956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T06:00:07" + }, + { + "id": "ithi207mmbdxf93ig6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T10:00:07", + "amountCrypto": 0.00005959, + "pricePerUnit": 1387819, + "totalCost": 82.7, + "fee": 0.29046352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T10:00:07" + }, + { + "id": "8hnxyraeheqjawjn22", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T14:00:06", + "amountCrypto": 0.0000599, + "pricePerUnit": 1380676, + "totalCost": 82.7, + "fee": 0.29047185, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T14:00:06" + }, + { + "id": "4p41irbksj7araphe8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T18:00:06", + "amountCrypto": 0.00006182, + "pricePerUnit": 1337919, + "totalCost": 82.71, + "fee": 0.2904987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T18:00:06" + }, + { + "id": "jmh3l7vv8u7rhhcori", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-20T22:00:06", + "amountCrypto": 0.00006128, + "pricePerUnit": 1349533, + "totalCost": 82.7, + "fee": 0.29046084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-20T22:00:06" + }, + { + "id": "zjtq0ein5513x9bnzb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T02:00:06", + "amountCrypto": 0.0000617, + "pricePerUnit": 1340462, + "totalCost": 82.71, + "fee": 0.29048596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T02:00:06" + }, + { + "id": "6uzoghvayeu8gahqwq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T06:00:06", + "amountCrypto": 0.00006138, + "pricePerUnit": 1347514, + "totalCost": 82.71, + "fee": 0.29049957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T06:00:06" + }, + { + "id": "1o3n4dhxx0jubhvbxn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T10:00:06", + "amountCrypto": 0.00006103, + "pricePerUnit": 1355121, + "totalCost": 82.7, + "fee": 0.29047365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T10:00:06" + }, + { + "id": "83gdyzxyu1gzjypvad", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T14:00:07", + "amountCrypto": 0.0000614, + "pricePerUnit": 1346950, + "totalCost": 82.7, + "fee": 0.29047273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T14:00:07" + }, + { + "id": "v1occw0dm5p002b82c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T18:00:08", + "amountCrypto": 0.00006146, + "pricePerUnit": 1345627, + "totalCost": 82.7, + "fee": 0.29047093, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T18:00:08" + }, + { + "id": "ged1n3uyez4ll4yx0p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-21T22:00:07", + "amountCrypto": 0.0000596, + "pricePerUnit": 1387605, + "totalCost": 82.7, + "fee": 0.29046756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5637", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-21T22:00:07" + }, + { + "id": "vdtv4p7lkpsuojizv4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T02:00:07", + "amountCrypto": 0.00005996, + "pricePerUnit": 1379422, + "totalCost": 82.71, + "fee": 0.2904987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5638", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T02:00:07" + }, + { + "id": "pd39bw24ghb19w3xfd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T06:00:08", + "amountCrypto": 0.00006046, + "pricePerUnit": 1367827, + "totalCost": 82.7, + "fee": 0.29045897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5639", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T06:00:08" + }, + { + "id": "r6nfc4ak2wc4dt86yl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T10:00:07", + "amountCrypto": 0.00005992, + "pricePerUnit": 1380281, + "totalCost": 82.71, + "fee": 0.29048571, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5640", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T10:00:07" + }, + { + "id": "3d0pzl7m4zqe1x0fp1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T14:00:07", + "amountCrypto": 0.00005969, + "pricePerUnit": 1385645, + "totalCost": 82.71, + "fee": 0.29049531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5641", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T14:00:07" + }, + { + "id": "2a4dv73aihh7zuv7gv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T18:00:07", + "amountCrypto": 0.0000604, + "pricePerUnit": 1369180, + "totalCost": 82.7, + "fee": 0.29045761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5642", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T18:00:07" + }, + { + "id": "s8nijodz8f2l0gtqzu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-22T22:00:06", + "amountCrypto": 0.00006046, + "pricePerUnit": 1367894, + "totalCost": 82.7, + "fee": 0.29047323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5643", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-22T22:00:06" + }, + { + "id": "bt2dmc3pzbg9hddod6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T02:00:06", + "amountCrypto": 0.00006045, + "pricePerUnit": 1368206, + "totalCost": 82.71, + "fee": 0.29049138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5644", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T02:00:06" + }, + { + "id": "1qshl3j8kxh6jy6g76", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T06:00:06", + "amountCrypto": 0.00006026, + "pricePerUnit": 1372442, + "totalCost": 82.7, + "fee": 0.29047478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5645", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T06:00:06" + }, + { + "id": "gbz6fym497fy2c27s4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T10:00:07", + "amountCrypto": 0.00005975, + "pricePerUnit": 1384108, + "totalCost": 82.7, + "fee": 0.29046459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5646", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T10:00:07" + }, + { + "id": "uzs6k0uumckypw2r4u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T14:00:06", + "amountCrypto": 0.00006014, + "pricePerUnit": 1375265, + "totalCost": 82.71, + "fee": 0.29049264, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5647", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T14:00:06" + }, + { + "id": "ilxp98meta94jy9p4u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T18:00:06", + "amountCrypto": 0.0000597, + "pricePerUnit": 1385224, + "totalCost": 82.7, + "fee": 0.29045569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5648", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T18:00:06" + }, + { + "id": "9ne7knitrmw5dslih2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-23T22:00:06", + "amountCrypto": 0.00005793, + "pricePerUnit": 1427544, + "totalCost": 82.7, + "fee": 0.29045464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5649", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-23T22:00:06" + }, + { + "id": "y353tmc8arblwnoxj7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T02:00:06", + "amountCrypto": 0.00005749, + "pricePerUnit": 1438571, + "totalCost": 82.7, + "fee": 0.29047518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T02:00:06" + }, + { + "id": "ww8pdq20dke5uv0u71", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T06:00:07", + "amountCrypto": 0.00005766, + "pricePerUnit": 1434288, + "totalCost": 82.7, + "fee": 0.29046682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T06:00:07" + }, + { + "id": "6hahqw165jqxmuu883", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T10:00:06", + "amountCrypto": 0.00005738, + "pricePerUnit": 1441447, + "totalCost": 82.71, + "fee": 0.29049903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T10:00:06" + }, + { + "id": "l70n1xdtwx4s38x95c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T14:00:07", + "amountCrypto": 0.00005759, + "pricePerUnit": 1436065, + "totalCost": 82.7, + "fee": 0.2904735, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T14:00:07" + }, + { + "id": "lg33ndbos68qjk12aq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T18:00:06", + "amountCrypto": 0.00005758, + "pricePerUnit": 1436347, + "totalCost": 82.7, + "fee": 0.29048024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T18:00:06" + }, + { + "id": "y3ah2loafew7q61fc8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-24T22:00:07", + "amountCrypto": 0.00005731, + "pricePerUnit": 1443020, + "totalCost": 82.7, + "fee": 0.29046124, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-24T22:00:07" + }, + { + "id": "c0soz3lf41bi0eu3xj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T02:00:07", + "amountCrypto": 0.00005754, + "pricePerUnit": 1437380, + "totalCost": 82.71, + "fee": 0.29048712, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T02:00:07" + }, + { + "id": "amxvn9thz1dmgez3za", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T06:00:08", + "amountCrypto": 0.00005745, + "pricePerUnit": 1439568, + "totalCost": 82.7, + "fee": 0.29047434, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T06:00:08" + }, + { + "id": "9eqsznry9i09o5r768", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T10:00:06", + "amountCrypto": 0.00005764, + "pricePerUnit": 1434862, + "totalCost": 82.71, + "fee": 0.29048215, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T10:00:06" + }, + { + "id": "db6bsd6zt52he6acd6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T14:00:06", + "amountCrypto": 0.00005767, + "pricePerUnit": 1434104, + "totalCost": 82.7, + "fee": 0.29047983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T14:00:06" + }, + { + "id": "lygv37cj0ne78y1xd8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T18:00:06", + "amountCrypto": 0.0000574, + "pricePerUnit": 1440894, + "totalCost": 82.71, + "fee": 0.29048872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T18:00:06" + }, + { + "id": "c7ou2mrgb0w79onkg2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-25T22:00:06", + "amountCrypto": 0.00005739, + "pricePerUnit": 1441046, + "totalCost": 82.7, + "fee": 0.29046883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-25T22:00:06" + }, + { + "id": "4hcoqqms7bbvxg4809", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T02:00:06", + "amountCrypto": 0.0000573, + "pricePerUnit": 1443284, + "totalCost": 82.7, + "fee": 0.29046362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T02:00:06" + }, + { + "id": "sg70l2pr63708juola", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T06:00:08", + "amountCrypto": 0.00005745, + "pricePerUnit": 1439469, + "totalCost": 82.7, + "fee": 0.29045432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T06:00:08" + }, + { + "id": "fh92vppwgp2289lby3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T10:00:07", + "amountCrypto": 0.00005777, + "pricePerUnit": 1431505, + "totalCost": 82.7, + "fee": 0.29045629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T10:00:07" + }, + { + "id": "9a2tokhg41w9791bmq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T14:00:06", + "amountCrypto": 0.00005752, + "pricePerUnit": 1437747, + "totalCost": 82.7, + "fee": 0.29046028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T14:00:06" + }, + { + "id": "oxec0p9nev6aikd2r7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T18:00:06", + "amountCrypto": 0.00005786, + "pricePerUnit": 1429477, + "totalCost": 82.71, + "fee": 0.29049666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T18:00:06" + }, + { + "id": "2vdf74wy3k5q06bxo8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-26T22:00:07", + "amountCrypto": 0.00005798, + "pricePerUnit": 1426392, + "totalCost": 82.7, + "fee": 0.29047077, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-26T22:00:07" + }, + { + "id": "oyd18a1mg6t1d5rhxm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T02:00:09", + "amountCrypto": 0.00005839, + "pricePerUnit": 1416325, + "totalCost": 82.7, + "fee": 0.29046026, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T02:00:09" + }, + { + "id": "rwonzi9x40wqylowbf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T06:00:05", + "amountCrypto": 0.00005832, + "pricePerUnit": 1418109, + "totalCost": 82.7, + "fee": 0.29047756, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T06:00:05" + }, + { + "id": "0puzlsa63drfoq8ut8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T10:00:07", + "amountCrypto": 0.00005832, + "pricePerUnit": 1418115, + "totalCost": 82.7, + "fee": 0.29047879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T10:00:07" + }, + { + "id": "u8gtv0j50kruti7637", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T14:00:09", + "amountCrypto": 0.0000588, + "pricePerUnit": 1406441, + "totalCost": 82.7, + "fee": 0.29045864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T14:00:09" + }, + { + "id": "696o8fxy3svxo3cmrr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T18:00:07", + "amountCrypto": 0.00005958, + "pricePerUnit": 1388163, + "totalCost": 82.71, + "fee": 0.29048673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T18:00:07" + }, + { + "id": "2ici67kj555ti1uhii", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-27T22:00:07", + "amountCrypto": 0.00005925, + "pricePerUnit": 1395769, + "totalCost": 82.7, + "fee": 0.29046058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-27T22:00:07" + }, + { + "id": "69jsoddlnumh9dwu7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T02:00:06", + "amountCrypto": 0.00006179, + "pricePerUnit": 1338412, + "totalCost": 82.7, + "fee": 0.29046477, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T02:00:06" + }, + { + "id": "40q0xmugt0wf832j6q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T06:00:07", + "amountCrypto": 0.00006166, + "pricePerUnit": 1341181, + "totalCost": 82.7, + "fee": 0.2904533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T06:00:07" + }, + { + "id": "pvebku6hbn3atozd2y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T10:00:06", + "amountCrypto": 0.00006259, + "pricePerUnit": 1321378, + "totalCost": 82.71, + "fee": 0.29048075, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T10:00:06" + }, + { + "id": "3owbdj9womwv5gg2k9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T14:00:06", + "amountCrypto": 0.00006096, + "pricePerUnit": 1356730, + "totalCost": 82.71, + "fee": 0.29048498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5677", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T14:00:06" + }, + { + "id": "f071i1e299snech4c5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T18:00:07", + "amountCrypto": 0.00006196, + "pricePerUnit": 1334887, + "totalCost": 82.71, + "fee": 0.29049686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T18:00:07" + }, + { + "id": "3vloddy3yhlq3fzdgm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-28T22:00:08", + "amountCrypto": 0.00006196, + "pricePerUnit": 1334715, + "totalCost": 82.7, + "fee": 0.29045933, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5679", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-28T22:00:08" + }, + { + "id": "gbr0r48ph4so3mv4b1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T02:00:08", + "amountCrypto": 0.00006185, + "pricePerUnit": 1337079, + "totalCost": 82.7, + "fee": 0.29045718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5680", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T02:00:08" + }, + { + "id": "5slwc5soah4ddwetpt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T06:00:09", + "amountCrypto": 0.0000618, + "pricePerUnit": 1338327, + "totalCost": 82.71, + "fee": 0.29049328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5681", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T06:00:09" + }, + { + "id": "0l97frq9rovg6k1w6l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T10:00:07", + "amountCrypto": 0.0000614, + "pricePerUnit": 1346895, + "totalCost": 82.7, + "fee": 0.29046084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5682", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T10:00:07" + }, + { + "id": "v937ly8b7s67bz4b7b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T14:00:07", + "amountCrypto": 0.00006079, + "pricePerUnit": 1360582, + "totalCost": 82.71, + "fee": 0.29049746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5683", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T14:00:07" + }, + { + "id": "flmfq18l846futgelz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T18:00:07", + "amountCrypto": 0.00005989, + "pricePerUnit": 1380929, + "totalCost": 82.7, + "fee": 0.2904765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5684", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T18:00:07" + }, + { + "id": "6zayg60x0zcmplcs6s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-29T22:00:06", + "amountCrypto": 0.00006146, + "pricePerUnit": 1345565, + "totalCost": 82.7, + "fee": 0.29045751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5685", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-29T22:00:06" + }, + { + "id": "7dtkgr2q6nyc0bnwpg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T02:00:07", + "amountCrypto": 0.00006139, + "pricePerUnit": 1347140, + "totalCost": 82.7, + "fee": 0.29046627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5686", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T02:00:07" + }, + { + "id": "5h2ti4epf6aj3g86jo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T06:00:07", + "amountCrypto": 0.00006166, + "pricePerUnit": 1341277, + "totalCost": 82.7, + "fee": 0.29047414, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5687", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T06:00:07" + }, + { + "id": "c0vrzsvftlmdfbtn4n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T10:00:08", + "amountCrypto": 0.00006145, + "pricePerUnit": 1345781, + "totalCost": 82.7, + "fee": 0.29045699, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5688", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T10:00:08" + }, + { + "id": "ra396t2stk0hzzk9jg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T14:00:06", + "amountCrypto": 0.00006139, + "pricePerUnit": 1347261, + "totalCost": 82.71, + "fee": 0.29049243, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5689", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T14:00:06" + }, + { + "id": "7oftzwrl0rjjyq2eud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T18:00:06", + "amountCrypto": 0.00006261, + "pricePerUnit": 1321025, + "totalCost": 82.71, + "fee": 0.29049597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5690", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T18:00:06" + }, + { + "id": "7pbitn7xvxsurlnooe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-30T22:00:07", + "amountCrypto": 0.00006182, + "pricePerUnit": 1337721, + "totalCost": 82.7, + "fee": 0.29045582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5691", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-30T22:00:07" + }, + { + "id": "8kds3btp53tqb88m4v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T02:00:06", + "amountCrypto": 0.00006146, + "pricePerUnit": 1345687, + "totalCost": 82.71, + "fee": 0.29048391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5692", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T02:00:06" + }, + { + "id": "bfdkh6dkv4s5rp1wo0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T06:00:06", + "amountCrypto": 0.00006136, + "pricePerUnit": 1347742, + "totalCost": 82.7, + "fee": 0.29045417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5693", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T06:00:06" + }, + { + "id": "t37shrluge3alq52tx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T10:00:06", + "amountCrypto": 0.00006151, + "pricePerUnit": 1344492, + "totalCost": 82.7, + "fee": 0.29046207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5694", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T10:00:06" + }, + { + "id": "munm2haxr63bvlc83x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T14:00:06", + "amountCrypto": 0.00006151, + "pricePerUnit": 1344664, + "totalCost": 82.71, + "fee": 0.29049911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5695", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T14:00:06" + }, + { + "id": "ovpal5dp0n967yg7ah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T18:00:05", + "amountCrypto": 0.00006157, + "pricePerUnit": 1343283, + "totalCost": 82.71, + "fee": 0.29048396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5696", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T18:00:05" + }, + { + "id": "4i2yx8oaf7hcpjj7yd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-08-31T22:00:07", + "amountCrypto": 0.00006174, + "pricePerUnit": 1339464, + "totalCost": 82.7, + "fee": 0.29045776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5697", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-08-31T22:00:07" + }, + { + "id": "sb37gi34he75btm5tc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T02:00:07", + "amountCrypto": 0.00006163, + "pricePerUnit": 1341931, + "totalCost": 82.7, + "fee": 0.2904743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5698", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T02:00:07" + }, + { + "id": "wy89lcvzhjmzr1oifh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T06:00:07", + "amountCrypto": 0.00006209, + "pricePerUnit": 1331935, + "totalCost": 82.7, + "fee": 0.29046252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5699", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T06:00:07" + }, + { + "id": "oufb0bmpji3lw74h6t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T10:00:07", + "amountCrypto": 0.0000622, + "pricePerUnit": 1329730, + "totalCost": 82.71, + "fee": 0.29049552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5700", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T10:00:07" + }, + { + "id": "3lzuohvpbh92y0e8yr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T14:00:07", + "amountCrypto": 0.00006241, + "pricePerUnit": 1325271, + "totalCost": 82.71, + "fee": 0.29049886, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5701", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T14:00:07" + }, + { + "id": "yh9wevy6talrott7uy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T18:00:07", + "amountCrypto": 0.00006229, + "pricePerUnit": 1327636, + "totalCost": 82.7, + "fee": 0.29045768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5702", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T18:00:07" + }, + { + "id": "mk0bssb203ia53lpv1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-01T22:00:06", + "amountCrypto": 0.00006213, + "pricePerUnit": 1331218, + "totalCost": 82.71, + "fee": 0.29049323, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5703", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-01T22:00:06" + }, + { + "id": "d0jrltv9bfrqugw1cg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T02:00:08", + "amountCrypto": 0.00006321, + "pricePerUnit": 1308474, + "totalCost": 82.71, + "fee": 0.29049335, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5704", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T02:00:08" + }, + { + "id": "1yznep919l4daukswi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T06:00:07", + "amountCrypto": 0.00006286, + "pricePerUnit": 1315787, + "totalCost": 82.71, + "fee": 0.29049947, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5705", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T06:00:07" + }, + { + "id": "rsaougik5tc4xis8cc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T10:00:07", + "amountCrypto": 0.00006327, + "pricePerUnit": 1307064, + "totalCost": 82.7, + "fee": 0.29045588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5706", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T10:00:07" + }, + { + "id": "4b40028sqjpu7maljk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T14:00:06", + "amountCrypto": 0.0000623, + "pricePerUnit": 1327457, + "totalCost": 82.7, + "fee": 0.29046505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5707", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T14:00:06" + }, + { + "id": "b4su6fxq2yxpssyxds", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T18:00:06", + "amountCrypto": 0.00006219, + "pricePerUnit": 1329879, + "totalCost": 82.71, + "fee": 0.29048122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5708", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T18:00:06" + }, + { + "id": "hjlvi47bst4etvkdud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-02T22:00:08", + "amountCrypto": 0.00006233, + "pricePerUnit": 1326958, + "totalCost": 82.71, + "fee": 0.29049563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5709", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-02T22:00:08" + }, + { + "id": "h826b8qt712ublhi4i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T02:00:05", + "amountCrypto": 0.00006159, + "pricePerUnit": 1342864, + "totalCost": 82.71, + "fee": 0.29048767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5710", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T02:00:05" + }, + { + "id": "kvrratnj17grujelpa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T06:00:08", + "amountCrypto": 0.00006152, + "pricePerUnit": 1344275, + "totalCost": 82.7, + "fee": 0.29046229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5711", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T06:00:08" + }, + { + "id": "wsvxi9l7f6nmf4qgc6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T10:00:07", + "amountCrypto": 0.00006152, + "pricePerUnit": 1344427, + "totalCost": 82.71, + "fee": 0.29049521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5712", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T10:00:07" + }, + { + "id": "nz973qrak2r9ilsbmy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T14:00:06", + "amountCrypto": 0.00006139, + "pricePerUnit": 1347233, + "totalCost": 82.71, + "fee": 0.29048637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5713", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T14:00:06" + }, + { + "id": "uqhhw51bt7mlbgd1w2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T18:00:07", + "amountCrypto": 0.00006279, + "pricePerUnit": 1317138, + "totalCost": 82.7, + "fee": 0.29047399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5714", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T18:00:07" + }, + { + "id": "tqa3p8ffnrlxft63x1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-03T22:00:06", + "amountCrypto": 0.00006244, + "pricePerUnit": 1324510, + "totalCost": 82.7, + "fee": 0.29047142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5715", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-03T22:00:06" + }, + { + "id": "giln0hm15274as6f54", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T02:00:06", + "amountCrypto": 0.0000631, + "pricePerUnit": 1310592, + "totalCost": 82.7, + "fee": 0.29045728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5716", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T02:00:06" + }, + { + "id": "fow0wgm189w4l0gamd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T06:00:07", + "amountCrypto": 0.00006396, + "pricePerUnit": 1293008, + "totalCost": 82.7, + "fee": 0.29046591, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5717", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T06:00:07" + }, + { + "id": "qer9n4v8jsmd5yljt5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T10:00:09", + "amountCrypto": 0.00006399, + "pricePerUnit": 1292359, + "totalCost": 82.7, + "fee": 0.29045615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5718", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T10:00:09" + }, + { + "id": "9k5gnsaw0l995udzmy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T14:00:05", + "amountCrypto": 0.00006412, + "pricePerUnit": 1289929, + "totalCost": 82.71, + "fee": 0.29049897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5719", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T14:00:05" + }, + { + "id": "rgpeb1yz757smsj7br", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T18:00:08", + "amountCrypto": 0.00006278, + "pricePerUnit": 1317422, + "totalCost": 82.71, + "fee": 0.29049029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5720", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T18:00:08" + }, + { + "id": "shbctvd2p78d7utuu5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-04T22:00:07", + "amountCrypto": 0.00006283, + "pricePerUnit": 1316382, + "totalCost": 82.71, + "fee": 0.29049223, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5721", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-04T22:00:07" + }, + { + "id": "o2z333zqgdk8jrti27", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T02:00:08", + "amountCrypto": 0.00006279, + "pricePerUnit": 1317154, + "totalCost": 82.7, + "fee": 0.29047753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5722", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T02:00:08" + }, + { + "id": "uv66t6d0maexi72cgw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T06:00:07", + "amountCrypto": 0.00006374, + "pricePerUnit": 1297456, + "totalCost": 82.7, + "fee": 0.2904626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5723", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T06:00:07" + }, + { + "id": "h7p5tgqds817dwocrn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T10:00:06", + "amountCrypto": 0.00006369, + "pricePerUnit": 1298516, + "totalCost": 82.7, + "fee": 0.29047178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5724", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T10:00:06" + }, + { + "id": "a3mw2qleqmb9yw16x4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T14:00:06", + "amountCrypto": 0.00006433, + "pricePerUnit": 1285643, + "totalCost": 82.71, + "fee": 0.29048208, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5725", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T14:00:06" + }, + { + "id": "dpp8o4dc549s61kqrj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T18:00:06", + "amountCrypto": 0.00006518, + "pricePerUnit": 1268937, + "totalCost": 82.71, + "fee": 0.29049588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5726", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T18:00:06" + }, + { + "id": "eo9tdaupjjszj4rh0p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-05T22:00:06", + "amountCrypto": 0.00006515, + "pricePerUnit": 1269514, + "totalCost": 82.71, + "fee": 0.29049408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5727", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-05T22:00:06" + }, + { + "id": "cmmsgi9ru46upn2udz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T02:00:09", + "amountCrypto": 0.00006506, + "pricePerUnit": 1271213, + "totalCost": 82.71, + "fee": 0.29048107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5728", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T02:00:09" + }, + { + "id": "9gn00fjpjw5zshfc33", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T06:00:07", + "amountCrypto": 0.00006461, + "pricePerUnit": 1279994, + "totalCost": 82.7, + "fee": 0.2904645, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5729", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T06:00:07" + }, + { + "id": "s8zkezyi7mibimni6b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T10:00:07", + "amountCrypto": 0.00006551, + "pricePerUnit": 1262388, + "totalCost": 82.7, + "fee": 0.29045973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5730", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T10:00:07" + }, + { + "id": "u5zg7piaj4imt1e9kk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T14:00:06", + "amountCrypto": 0.00006526, + "pricePerUnit": 1267297, + "totalCost": 82.7, + "fee": 0.29047651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5731", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T14:00:06" + }, + { + "id": "5ufr4sn1mpqu2aloxh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T18:00:07", + "amountCrypto": 0.00006746, + "pricePerUnit": 1225931, + "totalCost": 82.7, + "fee": 0.29046755, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5732", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T18:00:07" + }, + { + "id": "nkrz66gbj1jqh70ymc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-06T22:00:05", + "amountCrypto": 0.00006813, + "pricePerUnit": 1213990, + "totalCost": 82.71, + "fee": 0.29049514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5733", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-06T22:00:05" + }, + { + "id": "a3s3manjoid1z1kzib", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T02:00:06", + "amountCrypto": 0.00006743, + "pricePerUnit": 1226582, + "totalCost": 82.71, + "fee": 0.2904927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5734", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T02:00:06" + }, + { + "id": "t69sr4t8zzs0sz6jnx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T06:00:06", + "amountCrypto": 0.00006775, + "pricePerUnit": 1220781, + "totalCost": 82.71, + "fee": 0.29049081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5735", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T06:00:06" + }, + { + "id": "9750ji3v5cahnld9lj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T10:00:06", + "amountCrypto": 0.00006707, + "pricePerUnit": 1233090, + "totalCost": 82.7, + "fee": 0.29047491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5736", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T10:00:06" + }, + { + "id": "d7mrypl27nstepd3qk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T14:00:06", + "amountCrypto": 0.000067, + "pricePerUnit": 1234346, + "totalCost": 82.7, + "fee": 0.29046734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5737", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T14:00:06" + }, + { + "id": "rez7jm6sts6mfg7mbt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T18:00:06", + "amountCrypto": 0.00006645, + "pricePerUnit": 1244623, + "totalCost": 82.71, + "fee": 0.29048133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5738", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T18:00:06" + }, + { + "id": "yg9r200k6jgy36lrbq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-07T22:00:07", + "amountCrypto": 0.00006691, + "pricePerUnit": 1236056, + "totalCost": 82.7, + "fee": 0.29047884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5739", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-07T22:00:07" + }, + { + "id": "izdkqq792vsa3803is", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T02:00:07", + "amountCrypto": 0.00006723, + "pricePerUnit": 1230195, + "totalCost": 82.71, + "fee": 0.29048422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5740", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T02:00:07" + }, + { + "id": "gas08fnom9s994b65x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T06:00:06", + "amountCrypto": 0.00006696, + "pricePerUnit": 1235172, + "totalCost": 82.71, + "fee": 0.29048796, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5741", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T06:00:06" + }, + { + "id": "bs8pi9soxgkcmduxg7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T10:00:06", + "amountCrypto": 0.00006692, + "pricePerUnit": 1235905, + "totalCost": 82.71, + "fee": 0.29048691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5742", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T10:00:06" + }, + { + "id": "ei1r24ifakjdrjqzrp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T14:00:07", + "amountCrypto": 0.00006674, + "pricePerUnit": 1239146, + "totalCost": 82.7, + "fee": 0.29046529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5743", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T14:00:07" + }, + { + "id": "gxqko7neuugx3twea5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T18:00:06", + "amountCrypto": 0.00006781, + "pricePerUnit": 1219634, + "totalCost": 82.7, + "fee": 0.29047493, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5744", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T18:00:06" + }, + { + "id": "zrumjcxfm87yjk9q2l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-08T22:00:08", + "amountCrypto": 0.00006701, + "pricePerUnit": 1234177, + "totalCost": 82.7, + "fee": 0.29047081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5745", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-08T22:00:08" + }, + { + "id": "ivd56k6g2t1sixn46v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T02:00:06", + "amountCrypto": 0.00006645, + "pricePerUnit": 1244661, + "totalCost": 82.71, + "fee": 0.29049022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5746", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T02:00:06" + }, + { + "id": "935uwfxfrflp3ldag2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T06:00:06", + "amountCrypto": 0.0000661, + "pricePerUnit": 1251282, + "totalCost": 82.71, + "fee": 0.29049718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5747", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T06:00:06" + }, + { + "id": "nhghsne4jktkvfrbsu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T10:00:06", + "amountCrypto": 0.00006613, + "pricePerUnit": 1250659, + "totalCost": 82.71, + "fee": 0.29048443, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5748", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T10:00:06" + }, + { + "id": "l8e1n1l2luuyidcuio", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T14:00:07", + "amountCrypto": 0.0000657, + "pricePerUnit": 1258738, + "totalCost": 82.7, + "fee": 0.29045988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5749", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T14:00:07" + }, + { + "id": "0q1b6g5830rm41s8qn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T18:00:06", + "amountCrypto": 0.00006554, + "pricePerUnit": 1261810, + "totalCost": 82.7, + "fee": 0.29045959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5750", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T18:00:06" + }, + { + "id": "83dvdvfwt5spm0jtfg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-09T22:00:07", + "amountCrypto": 0.00006357, + "pricePerUnit": 1300900, + "totalCost": 82.7, + "fee": 0.29045677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5751", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-09T22:00:07" + }, + { + "id": "tya3117k5hxdvh65h5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T02:00:06", + "amountCrypto": 0.00006356, + "pricePerUnit": 1301222, + "totalCost": 82.71, + "fee": 0.29048291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5752", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T02:00:06" + }, + { + "id": "ewfh6whq53kos0xgbm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T06:00:06", + "amountCrypto": 0.00006413, + "pricePerUnit": 1289725, + "totalCost": 82.71, + "fee": 0.29049844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5753", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T06:00:06" + }, + { + "id": "v8od0ayp8sfqr5ii0c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T10:00:06", + "amountCrypto": 0.00006333, + "pricePerUnit": 1305865, + "totalCost": 82.7, + "fee": 0.29046463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5754", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T10:00:06" + }, + { + "id": "1w0ma2n57kyi1bwdmv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T14:00:06", + "amountCrypto": 0.00006333, + "pricePerUnit": 1305904, + "totalCost": 82.7, + "fee": 0.29047333, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5755", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T14:00:06" + }, + { + "id": "kmq718iiu0uddqogpy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T18:00:06", + "amountCrypto": 0.00006398, + "pricePerUnit": 1292634, + "totalCost": 82.7, + "fee": 0.29047271, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5756", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T18:00:06" + }, + { + "id": "7638sksbb14x8p55xq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-10T22:00:06", + "amountCrypto": 0.00006245, + "pricePerUnit": 1324338, + "totalCost": 82.7, + "fee": 0.29048034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5757", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-10T22:00:06" + }, + { + "id": "len5t7wp2olq7stvov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T02:00:06", + "amountCrypto": 0.0000628, + "pricePerUnit": 1316882, + "totalCost": 82.7, + "fee": 0.29046365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5758", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T02:00:06" + }, + { + "id": "5r0ddc3k1rk62cqne4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T06:00:07", + "amountCrypto": 0.00006383, + "pricePerUnit": 1295609, + "totalCost": 82.7, + "fee": 0.29045852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5759", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T06:00:07" + }, + { + "id": "ar0ghplb01i0v91zx0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T10:00:06", + "amountCrypto": 0.00006393, + "pricePerUnit": 1293703, + "totalCost": 82.71, + "fee": 0.29048566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5760", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T10:00:06" + }, + { + "id": "5p49vv2lifjixjmpex", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T14:00:07", + "amountCrypto": 0.00006384, + "pricePerUnit": 1295493, + "totalCost": 82.7, + "fee": 0.29047818, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5761", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T14:00:07" + }, + { + "id": "v1o2pd5dg78fo72xyq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T18:00:08", + "amountCrypto": 0.00006369, + "pricePerUnit": 1298505, + "totalCost": 82.7, + "fee": 0.29046932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5762", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T18:00:08" + }, + { + "id": "rdrs4rk1rj4p7yp164", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-11T22:00:07", + "amountCrypto": 0.00006282, + "pricePerUnit": 1316531, + "totalCost": 82.7, + "fee": 0.29047873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5763", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-11T22:00:07" + }, + { + "id": "qi0sj4m11g9i22bhcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T02:00:07", + "amountCrypto": 0.0000631, + "pricePerUnit": 1310748, + "totalCost": 82.71, + "fee": 0.29049194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5764", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T02:00:07" + }, + { + "id": "1418y81inxl2ypiobh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T06:00:07", + "amountCrypto": 0.00006214, + "pricePerUnit": 1330924, + "totalCost": 82.7, + "fee": 0.29047588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5765", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T06:00:07" + }, + { + "id": "6ajkm7pkw9cxehqrnk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T10:00:07", + "amountCrypto": 0.00006214, + "pricePerUnit": 1330931, + "totalCost": 82.7, + "fee": 0.29047741, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5766", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T10:00:07" + }, + { + "id": "7cteg7xusqzy3s38dz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T14:00:06", + "amountCrypto": 0.0000622, + "pricePerUnit": 1329667, + "totalCost": 82.71, + "fee": 0.29048172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5767", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T14:00:06" + }, + { + "id": "30ojpdoo75ibasrvyj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T18:00:08", + "amountCrypto": 0.00006295, + "pricePerUnit": 1313812, + "totalCost": 82.7, + "fee": 0.29047875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5768", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T18:00:08" + }, + { + "id": "zvgfppl4rfejg5oaa2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-12T22:00:07", + "amountCrypto": 0.00006219, + "pricePerUnit": 1329790, + "totalCost": 82.7, + "fee": 0.29046173, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-12T22:00:07" + }, + { + "id": "97ty3qytq2s7ystxgj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T02:00:06", + "amountCrypto": 0.0000625, + "pricePerUnit": 1323306, + "totalCost": 82.71, + "fee": 0.29048624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T02:00:06" + }, + { + "id": "rfk8b6wx8iauvmezul", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T06:00:06", + "amountCrypto": 0.00006287, + "pricePerUnit": 1315481, + "totalCost": 82.7, + "fee": 0.29047816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T06:00:06" + }, + { + "id": "4omeumf34kpfsrjv7o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T10:00:06", + "amountCrypto": 0.00006263, + "pricePerUnit": 1320531, + "totalCost": 82.7, + "fee": 0.29048005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T10:00:06" + }, + { + "id": "rf6ux1ve9zpkam63g1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T14:00:06", + "amountCrypto": 0.00006276, + "pricePerUnit": 1317700, + "totalCost": 82.7, + "fee": 0.29045896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T14:00:06" + }, + { + "id": "os82npf2lee417qufy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T18:00:06", + "amountCrypto": 0.00006105, + "pricePerUnit": 1354622, + "totalCost": 82.7, + "fee": 0.290462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T18:00:06" + }, + { + "id": "5cvtt6oq5lf369tioy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-13T22:00:07", + "amountCrypto": 0.00006081, + "pricePerUnit": 1360046, + "totalCost": 82.7, + "fee": 0.29047848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-13T22:00:07" + }, + { + "id": "ugtm3n3alew2rhdpez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T02:00:07", + "amountCrypto": 0.00006008, + "pricePerUnit": 1376593, + "totalCost": 82.71, + "fee": 0.29048311, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T02:00:07" + }, + { + "id": "y4q2fr6rn1pimbqjk6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T06:00:07", + "amountCrypto": 0.00006017, + "pricePerUnit": 1374578, + "totalCost": 82.71, + "fee": 0.29049242, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T06:00:07" + }, + { + "id": "sbiow8r1skv7brytu8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T10:00:06", + "amountCrypto": 0.00006039, + "pricePerUnit": 1369401, + "totalCost": 82.7, + "fee": 0.29045651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T10:00:06" + }, + { + "id": "on35ucvlur82pwqz85", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T14:00:06", + "amountCrypto": 0.00006084, + "pricePerUnit": 1359419, + "totalCost": 82.71, + "fee": 0.2904879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T14:00:06" + }, + { + "id": "b9qli6j4vgyqxaxgap", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T18:00:06", + "amountCrypto": 0.00006063, + "pricePerUnit": 1364100, + "totalCost": 82.71, + "fee": 0.29048196, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T18:00:06" + }, + { + "id": "yqsxz05f1hq2v14rcm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-14T22:00:06", + "amountCrypto": 0.00006077, + "pricePerUnit": 1360880, + "totalCost": 82.7, + "fee": 0.29046544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-14T22:00:06" + }, + { + "id": "rp4yx2xn0f6gxgat6h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T02:00:05", + "amountCrypto": 0.00006057, + "pricePerUnit": 1365390, + "totalCost": 82.7, + "fee": 0.29046897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T02:00:05" + }, + { + "id": "eske33gp69utanfti2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T06:00:06", + "amountCrypto": 0.00006041, + "pricePerUnit": 1368942, + "totalCost": 82.7, + "fee": 0.29045529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T06:00:06" + }, + { + "id": "afkfxp12r0v071qmru", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T10:00:07", + "amountCrypto": 0.00006051, + "pricePerUnit": 1366797, + "totalCost": 82.7, + "fee": 0.29048016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T10:00:07" + }, + { + "id": "d133o19g6otaae3ynl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T14:00:05", + "amountCrypto": 0.00006053, + "pricePerUnit": 1366263, + "totalCost": 82.7, + "fee": 0.29046278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T14:00:05" + }, + { + "id": "on8udj3edz5sr1h7w2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T18:00:05", + "amountCrypto": 0.00006027, + "pricePerUnit": 1372118, + "totalCost": 82.7, + "fee": 0.29045444, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T18:00:05" + }, + { + "id": "zqqd5ovcvnjhvw1qnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-15T22:00:06", + "amountCrypto": 0.00006067, + "pricePerUnit": 1363258, + "totalCost": 82.71, + "fee": 0.29049416, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-15T22:00:06" + }, + { + "id": "zijfx5qky7htzg5v5v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T02:00:06", + "amountCrypto": 0.00006143, + "pricePerUnit": 1346280, + "totalCost": 82.7, + "fee": 0.29046995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T02:00:06" + }, + { + "id": "x58xrumks0s4fhf5lo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T06:00:06", + "amountCrypto": 0.00006232, + "pricePerUnit": 1326981, + "totalCost": 82.7, + "fee": 0.29045407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T06:00:06" + }, + { + "id": "h4lf6uk0x528rfh4kh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T10:00:07", + "amountCrypto": 0.00006183, + "pricePerUnit": 1337585, + "totalCost": 82.7, + "fee": 0.2904732, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T10:00:07" + }, + { + "id": "favx6at5347gjvbykn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T14:00:06", + "amountCrypto": 0.0000621, + "pricePerUnit": 1331773, + "totalCost": 82.7, + "fee": 0.29047388, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T14:00:06" + }, + { + "id": "nxvw26mw14euvnyt51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T18:00:06", + "amountCrypto": 0.00006293, + "pricePerUnit": 1314171, + "totalCost": 82.7, + "fee": 0.29046578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5792", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T18:00:06" + }, + { + "id": "3bdm8nibkv37gwhejf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-16T22:00:05", + "amountCrypto": 0.00006294, + "pricePerUnit": 1313998, + "totalCost": 82.7, + "fee": 0.29047382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5793", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-16T22:00:05" + }, + { + "id": "om9utiq4uros4ufgc6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T02:00:15", + "amountCrypto": 0.00006266, + "pricePerUnit": 1319808, + "totalCost": 82.7, + "fee": 0.29046012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5794", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T02:00:15" + }, + { + "id": "sapdulwouog8e8p90k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T06:00:07", + "amountCrypto": 0.00006277, + "pricePerUnit": 1317536, + "totalCost": 82.7, + "fee": 0.29046921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5795", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T06:00:07" + }, + { + "id": "mzeteooqpsqcssr78s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T10:00:06", + "amountCrypto": 0.00006217, + "pricePerUnit": 1330323, + "totalCost": 82.71, + "fee": 0.29048478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5796", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T10:00:06" + }, + { + "id": "2cxbndz156g6ukpcms", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T14:00:06", + "amountCrypto": 0.00006177, + "pricePerUnit": 1338845, + "totalCost": 82.7, + "fee": 0.29046471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T14:00:06" + }, + { + "id": "wgq16fp2m9s8o5uxwv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T18:00:07", + "amountCrypto": 0.00005969, + "pricePerUnit": 1385467, + "totalCost": 82.7, + "fee": 0.2904579, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T18:00:07" + }, + { + "id": "p57vkybk9eeyu2p3o6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-17T22:00:06", + "amountCrypto": 0.00006084, + "pricePerUnit": 1359462, + "totalCost": 82.71, + "fee": 0.29049711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-17T22:00:06" + }, + { + "id": "ngj0bal9hbjxpqaqzu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T02:00:06", + "amountCrypto": 0.00006057, + "pricePerUnit": 1365356, + "totalCost": 82.7, + "fee": 0.29046172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T02:00:06" + }, + { + "id": "pbdgvwa3yothkvpbre", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T06:00:08", + "amountCrypto": 0.00006033, + "pricePerUnit": 1370867, + "totalCost": 82.7, + "fee": 0.29047849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T06:00:08" + }, + { + "id": "0o2q5vhjjj4602f775", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T10:00:07", + "amountCrypto": 0.00006049, + "pricePerUnit": 1367134, + "totalCost": 82.7, + "fee": 0.29045592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T10:00:07" + }, + { + "id": "vlwsxbut7jnlb3rigx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T14:00:07", + "amountCrypto": 0.00006108, + "pricePerUnit": 1353978, + "totalCost": 82.7, + "fee": 0.29046645, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T14:00:07" + }, + { + "id": "mlx2emzmadbnvos8dq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T18:00:07", + "amountCrypto": 0.00006148, + "pricePerUnit": 1345179, + "totalCost": 82.7, + "fee": 0.29046869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T18:00:07" + }, + { + "id": "h5971tn8a1bl7j077x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-18T22:00:07", + "amountCrypto": 0.00006074, + "pricePerUnit": 1361610, + "totalCost": 82.7, + "fee": 0.29047774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-18T22:00:07" + }, + { + "id": "gzyyrv593bvdb5drxc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T02:00:08", + "amountCrypto": 0.00005926, + "pricePerUnit": 1395717, + "totalCost": 82.71, + "fee": 0.29049896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T02:00:08" + }, + { + "id": "7m6cc8ieya2o90ra3u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T06:00:07", + "amountCrypto": 0.0000588, + "pricePerUnit": 1406536, + "totalCost": 82.7, + "fee": 0.29047831, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T06:00:07" + }, + { + "id": "85zst9mrm9cb1q5ddp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T10:00:07", + "amountCrypto": 0.00005897, + "pricePerUnit": 1402486, + "totalCost": 82.7, + "fee": 0.29047929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T10:00:07" + }, + { + "id": "wr5zeehoaciimb2fzj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T14:00:09", + "amountCrypto": 0.00005861, + "pricePerUnit": 1411107, + "totalCost": 82.7, + "fee": 0.29048051, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T14:00:09" + }, + { + "id": "qxjnus6ovkk9pikg5o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T18:00:06", + "amountCrypto": 0.00005789, + "pricePerUnit": 1428660, + "totalCost": 82.71, + "fee": 0.29048115, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T18:00:06" + }, + { + "id": "w8uwmjm2qviug0eiqz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-19T22:00:07", + "amountCrypto": 0.00005792, + "pricePerUnit": 1428001, + "totalCost": 82.71, + "fee": 0.2904975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-19T22:00:07" + }, + { + "id": "fctfy973880gq8ds4p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T02:00:09", + "amountCrypto": 0.00005822, + "pricePerUnit": 1420418, + "totalCost": 82.7, + "fee": 0.29045158, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T02:00:09" + }, + { + "id": "v90aoap5z2crldynf2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T06:00:09", + "amountCrypto": 0.00005771, + "pricePerUnit": 1433194, + "totalCost": 82.71, + "fee": 0.2904968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T06:00:09" + }, + { + "id": "nrf1sysr4w0jfsyvf1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T10:00:08", + "amountCrypto": 0.00005768, + "pricePerUnit": 1433921, + "totalCost": 82.71, + "fee": 0.29049324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T10:00:08" + }, + { + "id": "lsapwashypmytvq0om", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T14:00:10", + "amountCrypto": 0.00005782, + "pricePerUnit": 1430427, + "totalCost": 82.71, + "fee": 0.29048862, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T14:00:10" + }, + { + "id": "vv84y5ei16slf8cetw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T18:00:07", + "amountCrypto": 0.00005809, + "pricePerUnit": 1423682, + "totalCost": 82.7, + "fee": 0.290469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T18:00:07" + }, + { + "id": "sg7y3on9at5f6g4ll0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-20T22:00:06", + "amountCrypto": 0.00005845, + "pricePerUnit": 1414825, + "totalCost": 82.7, + "fee": 0.29045085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-20T22:00:06" + }, + { + "id": "9609vlhx2v5xaoq0ym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T02:00:06", + "amountCrypto": 0.00005811, + "pricePerUnit": 1423114, + "totalCost": 82.7, + "fee": 0.29045299, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T02:00:06" + }, + { + "id": "zgnkfi6uol8zd8eu99", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T06:00:08", + "amountCrypto": 0.00005834, + "pricePerUnit": 1417511, + "totalCost": 82.7, + "fee": 0.29045454, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T06:00:08" + }, + { + "id": "yu61iprolghqtngm12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T10:00:07", + "amountCrypto": 0.00005822, + "pricePerUnit": 1417815, + "totalCost": 82.55, + "fee": 0.28991936, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T10:00:07" + }, + { + "id": "y7os5l826oa33yc84g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T14:00:08", + "amountCrypto": 0.00005815, + "pricePerUnit": 1422224, + "totalCost": 82.7, + "fee": 0.29047132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T14:00:08" + }, + { + "id": "egzxtdm9yvq5f3gf6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T18:00:06", + "amountCrypto": 0.00005805, + "pricePerUnit": 1424681, + "totalCost": 82.7, + "fee": 0.29047276, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T18:00:06" + }, + { + "id": "xg3adv7p4lmffjzwhg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-21T22:00:07", + "amountCrypto": 0.00005803, + "pricePerUnit": 1425202, + "totalCost": 82.7, + "fee": 0.29047873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-21T22:00:07" + }, + { + "id": "q2dv94hv7mpun30qpi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T02:00:08", + "amountCrypto": 0.00005791, + "pricePerUnit": 1428234, + "totalCost": 82.71, + "fee": 0.29049485, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T02:00:08" + }, + { + "id": "xvranobpb4tw03kxrf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T06:00:07", + "amountCrypto": 0.00005812, + "pricePerUnit": 1422891, + "totalCost": 82.7, + "fee": 0.29045755, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T06:00:07" + }, + { + "id": "bfw4wmwojc9y9yk8og", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T10:00:06", + "amountCrypto": 0.0000583, + "pricePerUnit": 1418559, + "totalCost": 82.7, + "fee": 0.29047011, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T10:00:06" + }, + { + "id": "a13btdpi2eqhxv3rbo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T14:00:07", + "amountCrypto": 0.00005842, + "pricePerUnit": 1415659, + "totalCost": 82.7, + "fee": 0.29047291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T14:00:07" + }, + { + "id": "q7cnj8fi1oe2bx33bz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T18:00:06", + "amountCrypto": 0.00005856, + "pricePerUnit": 1412270, + "totalCost": 82.7, + "fee": 0.29047189, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T18:00:06" + }, + { + "id": "kr6cvn1y2m58ju1uv9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-22T22:00:07", + "amountCrypto": 0.00005812, + "pricePerUnit": 1422899, + "totalCost": 82.7, + "fee": 0.29045918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-22T22:00:07" + }, + { + "id": "plslbb1kvo1ttcyihz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T02:00:08", + "amountCrypto": 0.00005768, + "pricePerUnit": 1433762, + "totalCost": 82.7, + "fee": 0.29046095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T02:00:08" + }, + { + "id": "13ocioqp77vmdazc5a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T06:00:07", + "amountCrypto": 0.00005704, + "pricePerUnit": 1449907, + "totalCost": 82.7, + "fee": 0.29047257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T06:00:07" + }, + { + "id": "cvgnfzpps0c15yeukl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T10:00:07", + "amountCrypto": 0.00005745, + "pricePerUnit": 1439598, + "totalCost": 82.7, + "fee": 0.29048021, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T10:00:07" + }, + { + "id": "4mucs17hl3amk2b70x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T14:00:07", + "amountCrypto": 0.00005759, + "pricePerUnit": 1436144, + "totalCost": 82.71, + "fee": 0.29048952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T14:00:07" + }, + { + "id": "1crahgf05hnsfgzpp8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T18:00:07", + "amountCrypto": 0.00005736, + "pricePerUnit": 1441901, + "totalCost": 82.71, + "fee": 0.29048926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T18:00:07" + }, + { + "id": "zzk5c57dnm7ik1h0wb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-23T22:00:07", + "amountCrypto": 0.00005758, + "pricePerUnit": 1436361, + "totalCost": 82.71, + "fee": 0.29048308, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-23T22:00:07" + }, + { + "id": "vhe05l19smoke7a5l4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T02:00:08", + "amountCrypto": 0.00005753, + "pricePerUnit": 1437616, + "totalCost": 82.71, + "fee": 0.29048424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T02:00:08" + }, + { + "id": "dpavcy6joy7debj55g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T06:00:07", + "amountCrypto": 0.00005771, + "pricePerUnit": 1432970, + "totalCost": 82.7, + "fee": 0.29045149, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T06:00:07" + }, + { + "id": "rq54fobw85s80ptcv9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T10:00:07", + "amountCrypto": 0.00005743, + "pricePerUnit": 1440087, + "totalCost": 82.7, + "fee": 0.29047776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T10:00:07" + }, + { + "id": "mye6gwrw0cj2d5btld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T14:00:06", + "amountCrypto": 0.00005745, + "pricePerUnit": 1439561, + "totalCost": 82.7, + "fee": 0.29047293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T14:00:06" + }, + { + "id": "m8efry46z9atnm4nb4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T18:00:06", + "amountCrypto": 0.00005791, + "pricePerUnit": 1428105, + "totalCost": 82.7, + "fee": 0.29046855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T18:00:06" + }, + { + "id": "zicyacov553e2eecpd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-24T22:00:06", + "amountCrypto": 0.00005716, + "pricePerUnit": 1446819, + "totalCost": 82.7, + "fee": 0.29046378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-24T22:00:06" + }, + { + "id": "y75g8fg6lcaom0z6md", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T02:00:07", + "amountCrypto": 0.00005719, + "pricePerUnit": 1446023, + "totalCost": 82.7, + "fee": 0.29045634, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T02:00:07" + }, + { + "id": "x5dko0zcliecoj7usj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T06:00:07", + "amountCrypto": 0.00005706, + "pricePerUnit": 1449459, + "totalCost": 82.71, + "fee": 0.29048461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T06:00:07" + }, + { + "id": "nj6scoeja184n7vrgj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T10:00:07", + "amountCrypto": 0.00005747, + "pricePerUnit": 1439158, + "totalCost": 82.71, + "fee": 0.2904927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T10:00:07" + }, + { + "id": "g8psfllj6juxnul5tg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T14:00:06", + "amountCrypto": 0.00005747, + "pricePerUnit": 1439174, + "totalCost": 82.71, + "fee": 0.29049594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T14:00:06" + }, + { + "id": "qscx7efde9aopc7je2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T18:00:06", + "amountCrypto": 0.00005741, + "pricePerUnit": 1440529, + "totalCost": 82.7, + "fee": 0.29046575, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T18:00:06" + }, + { + "id": "gr89bs3puwkywvs68k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-25T22:00:06", + "amountCrypto": 0.00005763, + "pricePerUnit": 1435091, + "totalCost": 82.7, + "fee": 0.29047822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-25T22:00:06" + }, + { + "id": "dx2n3pj2q067o3itp2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T02:00:06", + "amountCrypto": 0.00005768, + "pricePerUnit": 1433904, + "totalCost": 82.71, + "fee": 0.29048978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T02:00:06" + }, + { + "id": "dat65s7b5qerhj38s8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T06:00:07", + "amountCrypto": 0.00005747, + "pricePerUnit": 1438950, + "totalCost": 82.7, + "fee": 0.29045061, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T06:00:07" + }, + { + "id": "0vhvhqi6r4do03p1o6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T10:00:07", + "amountCrypto": 0.00005719, + "pricePerUnit": 1446145, + "totalCost": 82.71, + "fee": 0.29048071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T10:00:07" + }, + { + "id": "jgbvlebapfnw221bvy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T14:00:07", + "amountCrypto": 0.00005673, + "pricePerUnit": 1457924, + "totalCost": 82.71, + "fee": 0.29049129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T14:00:07" + }, + { + "id": "kssnw673qw1mt13lrc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T18:00:06", + "amountCrypto": 0.00005615, + "pricePerUnit": 1472835, + "totalCost": 82.7, + "fee": 0.29046199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T18:00:06" + }, + { + "id": "9t4t1h31q6hxrd97ej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-26T22:00:07", + "amountCrypto": 0.0000565, + "pricePerUnit": 1463831, + "totalCost": 82.71, + "fee": 0.29048568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-26T22:00:07" + }, + { + "id": "dblv1dbex4k3vx296q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T02:00:08", + "amountCrypto": 0.00005622, + "pricePerUnit": 1471108, + "totalCost": 82.71, + "fee": 0.29048303, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T02:00:08" + }, + { + "id": "7xmsy2zqc1wocqj7bz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T06:00:07", + "amountCrypto": 0.000056, + "pricePerUnit": 1476903, + "totalCost": 82.71, + "fee": 0.29048619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T06:00:07" + }, + { + "id": "zk1b6jfeshwb9n5q7j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T10:00:07", + "amountCrypto": 0.00005569, + "pricePerUnit": 1485190, + "totalCost": 82.71, + "fee": 0.29049898, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T10:00:07" + }, + { + "id": "j2q9rsju11dd0etdnm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T14:00:06", + "amountCrypto": 0.00005584, + "pricePerUnit": 1480994, + "totalCost": 82.7, + "fee": 0.29045861, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T14:00:06" + }, + { + "id": "dd6ii8ofm2ulwuof58", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T18:00:06", + "amountCrypto": 0.00005535, + "pricePerUnit": 1494241, + "totalCost": 82.71, + "fee": 0.29048505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T18:00:06" + }, + { + "id": "np7yno30chvcm8tqdo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-27T22:00:05", + "amountCrypto": 0.0000557, + "pricePerUnit": 1484905, + "totalCost": 82.71, + "fee": 0.29049544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-27T22:00:05" + }, + { + "id": "f74ce0advb1kp42knd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T02:00:06", + "amountCrypto": 0.00005559, + "pricePerUnit": 1487648, + "totalCost": 82.7, + "fee": 0.29045728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5860", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T02:00:06" + }, + { + "id": "d3s0jhibpby2nd0cgy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T06:00:07", + "amountCrypto": 0.00005535, + "pricePerUnit": 1494121, + "totalCost": 82.7, + "fee": 0.29046167, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5861", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T06:00:07" + }, + { + "id": "42h8uz64g273us2z5o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T10:00:06", + "amountCrypto": 0.00005553, + "pricePerUnit": 1489377, + "totalCost": 82.71, + "fee": 0.29048105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5862", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T10:00:06" + }, + { + "id": "pndlmg2406ibkpcke7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T14:00:06", + "amountCrypto": 0.00005568, + "pricePerUnit": 1485377, + "totalCost": 82.71, + "fee": 0.29048347, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5863", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T14:00:06" + }, + { + "id": "sam80ucm0wih3s31ld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T18:00:07", + "amountCrypto": 0.00005572, + "pricePerUnit": 1484260, + "totalCost": 82.7, + "fee": 0.2904734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T18:00:07" + }, + { + "id": "huejs1qp50sfxysvco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-28T22:00:06", + "amountCrypto": 0.00005564, + "pricePerUnit": 1486340, + "totalCost": 82.7, + "fee": 0.29046286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-28T22:00:06" + }, + { + "id": "ezphd1ufp3vt7866ka", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T02:00:07", + "amountCrypto": 0.0000555, + "pricePerUnit": 1490075, + "totalCost": 82.7, + "fee": 0.29046013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T02:00:07" + }, + { + "id": "66dhmx69sfecc6bkpq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T06:00:08", + "amountCrypto": 0.00005551, + "pricePerUnit": 1489834, + "totalCost": 82.7, + "fee": 0.29046555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T06:00:08" + }, + { + "id": "dsfdcxjif2zyhabt47", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T10:00:07", + "amountCrypto": 0.00005555, + "pricePerUnit": 1488701, + "totalCost": 82.7, + "fee": 0.29045365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T10:00:07" + }, + { + "id": "de7pum3mwl7rzbx0f7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T14:00:08", + "amountCrypto": 0.00005566, + "pricePerUnit": 1485804, + "totalCost": 82.7, + "fee": 0.29046262, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T14:00:08" + }, + { + "id": "wyaf09mvk9vjkdq4zh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T18:00:06", + "amountCrypto": 0.0000556, + "pricePerUnit": 1487444, + "totalCost": 82.7, + "fee": 0.29046978, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T18:00:06" + }, + { + "id": "fc5hele6hr41csyct3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-29T22:00:06", + "amountCrypto": 0.00005544, + "pricePerUnit": 1491680, + "totalCost": 82.7, + "fee": 0.29045864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-29T22:00:06" + }, + { + "id": "si703keumbh9g10rgr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T02:00:06", + "amountCrypto": 0.00005572, + "pricePerUnit": 1484346, + "totalCost": 82.71, + "fee": 0.29049027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T02:00:06" + }, + { + "id": "e37f63zhujy0ln1noy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T06:00:06", + "amountCrypto": 0.00005659, + "pricePerUnit": 1461500, + "totalCost": 82.71, + "fee": 0.29048514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T06:00:06" + }, + { + "id": "kq6621rrgnyn5vibcf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T10:00:07", + "amountCrypto": 0.0000563, + "pricePerUnit": 1468845, + "totalCost": 82.7, + "fee": 0.29044897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T10:00:07" + }, + { + "id": "0kler6rk2g3bv7kxue", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T14:00:07", + "amountCrypto": 0.00005734, + "pricePerUnit": 1442223, + "totalCost": 82.7, + "fee": 0.29045278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T14:00:07" + }, + { + "id": "uxpwkf983dn2l3g8f1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T18:00:07", + "amountCrypto": 0.00005725, + "pricePerUnit": 1444695, + "totalCost": 82.71, + "fee": 0.29049398, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T18:00:07" + }, + { + "id": "p9a60ws0de52npi05a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-09-30T22:00:06", + "amountCrypto": 0.00005728, + "pricePerUnit": 1443732, + "totalCost": 82.7, + "fee": 0.29045239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-09-30T22:00:06" + }, + { + "id": "9i6xzmoj396nfqo9g0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T02:00:07", + "amountCrypto": 0.00005747, + "pricePerUnit": 1438950, + "totalCost": 82.7, + "fee": 0.29045061, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T02:00:07" + }, + { + "id": "cfjjgauy6tqald53gd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T06:00:06", + "amountCrypto": 0.00005721, + "pricePerUnit": 1445550, + "totalCost": 82.7, + "fee": 0.29046284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T06:00:06" + }, + { + "id": "lfeilytwb8bnmbmu4q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T10:00:07", + "amountCrypto": 0.0000566, + "pricePerUnit": 1461219, + "totalCost": 82.71, + "fee": 0.29048067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T10:00:07" + }, + { + "id": "m19z7awqsz6rqt1vh8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T14:00:06", + "amountCrypto": 0.00005666, + "pricePerUnit": 1459554, + "totalCost": 82.7, + "fee": 0.29045723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T14:00:06" + }, + { + "id": "gdhqrrps78z9wv4no7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T18:00:07", + "amountCrypto": 0.00005749, + "pricePerUnit": 1438562, + "totalCost": 82.7, + "fee": 0.29047335, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T18:00:07" + }, + { + "id": "ex0kziumwpg0wjyqa7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-01T22:00:07", + "amountCrypto": 0.00005835, + "pricePerUnit": 1417443, + "totalCost": 82.71, + "fee": 0.29049056, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-01T22:00:07" + }, + { + "id": "h7j8gscvwumlvyhu0n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T02:00:06", + "amountCrypto": 0.00005925, + "pricePerUnit": 1395872, + "totalCost": 82.71, + "fee": 0.29048207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T02:00:06" + }, + { + "id": "de1umannp10kjnwrvg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T06:00:07", + "amountCrypto": 0.00005838, + "pricePerUnit": 1416756, + "totalCost": 82.71, + "fee": 0.29049891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T06:00:07" + }, + { + "id": "9sgi2lbt9gbywxchgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T10:00:08", + "amountCrypto": 0.00005832, + "pricePerUnit": 1418130, + "totalCost": 82.71, + "fee": 0.29048187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T10:00:08" + }, + { + "id": "rm7lelecqj9umnk40y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T14:00:06", + "amountCrypto": 0.00005893, + "pricePerUnit": 1403428, + "totalCost": 82.7, + "fee": 0.29047709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T14:00:06" + }, + { + "id": "d6j11wqfzjts71ouzx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T18:00:07", + "amountCrypto": 0.00005818, + "pricePerUnit": 1421596, + "totalCost": 82.71, + "fee": 0.29049273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T18:00:07" + }, + { + "id": "u308rb5urz2a5oz9nn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-02T22:00:06", + "amountCrypto": 0.00005967, + "pricePerUnit": 1385933, + "totalCost": 82.7, + "fee": 0.29045827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-02T22:00:06" + }, + { + "id": "j9zrd7eu9by02vy2g6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T02:00:07", + "amountCrypto": 0.00005919, + "pricePerUnit": 1397320, + "totalCost": 82.71, + "fee": 0.29048906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T02:00:07" + }, + { + "id": "uswib7eb8km6neq7dd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T06:00:06", + "amountCrypto": 0.0000585, + "pricePerUnit": 1413636, + "totalCost": 82.7, + "fee": 0.29045502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T06:00:06" + }, + { + "id": "hpoadeuoxoe59ixd5g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T10:00:07", + "amountCrypto": 0.00005887, + "pricePerUnit": 1404884, + "totalCost": 82.71, + "fee": 0.29048252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T10:00:07" + }, + { + "id": "46dxnu0ax7tjxorij7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T14:00:07", + "amountCrypto": 0.00005903, + "pricePerUnit": 1401049, + "totalCost": 82.7, + "fee": 0.2904768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T14:00:07" + }, + { + "id": "72nle7h6ln0qawpalq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T18:00:05", + "amountCrypto": 0.00005916, + "pricePerUnit": 1398058, + "totalCost": 82.71, + "fee": 0.29049514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T18:00:05" + }, + { + "id": "pm8wnrr60s2e1itwkg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-03T22:00:06", + "amountCrypto": 0.00005889, + "pricePerUnit": 1404372, + "totalCost": 82.7, + "fee": 0.29047525, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-03T22:00:06" + }, + { + "id": "sovus78bmfolc2tmil", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T02:00:07", + "amountCrypto": 0.00005906, + "pricePerUnit": 1400441, + "totalCost": 82.71, + "fee": 0.2904984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T02:00:07" + }, + { + "id": "tgq7h2hok91gs2o9wj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T06:00:08", + "amountCrypto": 0.00005886, + "pricePerUnit": 1404969, + "totalCost": 82.7, + "fee": 0.29045079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T06:00:08" + }, + { + "id": "0awryswvvvyawsbkjd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T10:00:06", + "amountCrypto": 0.00005837, + "pricePerUnit": 1416768, + "totalCost": 82.7, + "fee": 0.29045161, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T10:00:06" + }, + { + "id": "u1gkzb09dgo9726hg6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T14:00:07", + "amountCrypto": 0.00005832, + "pricePerUnit": 1418162, + "totalCost": 82.71, + "fee": 0.29048844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T14:00:07" + }, + { + "id": "hhavdaugqcp8xxdpsn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T18:00:06", + "amountCrypto": 0.00005767, + "pricePerUnit": 1434193, + "totalCost": 82.71, + "fee": 0.2904979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T18:00:06" + }, + { + "id": "i91gl8ag17g9itivlv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-04T22:00:06", + "amountCrypto": 0.00005721, + "pricePerUnit": 1445544, + "totalCost": 82.7, + "fee": 0.29046163, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-04T22:00:06" + }, + { + "id": "oxzz19nthwrzbilejf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T02:00:08", + "amountCrypto": 0.00005736, + "pricePerUnit": 1441744, + "totalCost": 82.7, + "fee": 0.29045755, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T02:00:08" + }, + { + "id": "kjqdzkiod61ur7tf7h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T06:00:07", + "amountCrypto": 0.00005765, + "pricePerUnit": 1434602, + "totalCost": 82.7, + "fee": 0.29047998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T06:00:07" + }, + { + "id": "1uj1x0excqwp03tnuc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T10:00:06", + "amountCrypto": 0.00005743, + "pricePerUnit": 1440103, + "totalCost": 82.71, + "fee": 0.290481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T10:00:06" + }, + { + "id": "fmsz5497jkmxlm3tjs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T14:00:06", + "amountCrypto": 0.0000573, + "pricePerUnit": 1443271, + "totalCost": 82.7, + "fee": 0.290461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T14:00:06" + }, + { + "id": "3m68sv0rpxa1hi97vp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T18:00:06", + "amountCrypto": 0.00005736, + "pricePerUnit": 1441794, + "totalCost": 82.7, + "fee": 0.29046765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T18:00:06" + }, + { + "id": "kb9dsb87xsigq30ax4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-05T22:00:06", + "amountCrypto": 0.00005767, + "pricePerUnit": 1434042, + "totalCost": 82.7, + "fee": 0.29046724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-05T22:00:06" + }, + { + "id": "mxrrevmttbjgobdhbv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T02:00:06", + "amountCrypto": 0.00005747, + "pricePerUnit": 1438949, + "totalCost": 82.7, + "fee": 0.29045041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T02:00:06" + }, + { + "id": "jxt8pw5x1py9ufx7lu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T06:00:05", + "amountCrypto": 0.00005764, + "pricePerUnit": 1434870, + "totalCost": 82.71, + "fee": 0.29048378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T06:00:05" + }, + { + "id": "6om46ynoxmtit31kch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T10:00:05", + "amountCrypto": 0.00005757, + "pricePerUnit": 1436553, + "totalCost": 82.7, + "fee": 0.29047134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T10:00:05" + }, + { + "id": "d3hezvvy2amuuztykx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T14:00:09", + "amountCrypto": 0.00005744, + "pricePerUnit": 1439938, + "totalCost": 82.71, + "fee": 0.29049841, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T14:00:09" + }, + { + "id": "su418dtb911ex41neh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T18:00:06", + "amountCrypto": 0.00005687, + "pricePerUnit": 1454353, + "totalCost": 82.71, + "fee": 0.29049492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T18:00:06" + }, + { + "id": "vr99wobr307c4hf2jb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-06T22:00:06", + "amountCrypto": 0.00005697, + "pricePerUnit": 1451592, + "totalCost": 82.7, + "fee": 0.29045329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-06T22:00:06" + }, + { + "id": "dxd0vykqvdk8evus02", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T02:00:06", + "amountCrypto": 0.00005671, + "pricePerUnit": 1458321, + "totalCost": 82.7, + "fee": 0.29046795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T02:00:06" + }, + { + "id": "hfq07xirsv7k9xpr13", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T06:00:06", + "amountCrypto": 0.00005613, + "pricePerUnit": 1473316, + "totalCost": 82.7, + "fee": 0.2904534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T06:00:06" + }, + { + "id": "3dczv8v5qprfbbpcwb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T10:00:06", + "amountCrypto": 0.00005608, + "pricePerUnit": 1474740, + "totalCost": 82.7, + "fee": 0.29047506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T10:00:06" + }, + { + "id": "ewvx8cp4nhoimjy0aj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T14:00:07", + "amountCrypto": 0.00005646, + "pricePerUnit": 1464727, + "totalCost": 82.7, + "fee": 0.29045775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T14:00:07" + }, + { + "id": "3lwvugtz7tarnst7h9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T18:00:05", + "amountCrypto": 0.00005599, + "pricePerUnit": 1477039, + "totalCost": 82.7, + "fee": 0.29046093, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T18:00:05" + }, + { + "id": "ynqwi1guqxq5hy3kik", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-07T22:00:05", + "amountCrypto": 0.00005618, + "pricePerUnit": 1472151, + "totalCost": 82.71, + "fee": 0.29048228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-07T22:00:05" + }, + { + "id": "40etk8vqbs7l2i37qf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T02:00:06", + "amountCrypto": 0.00005724, + "pricePerUnit": 1444799, + "totalCost": 82.7, + "fee": 0.2904642, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T02:00:06" + }, + { + "id": "yiyvtyvz1yukjqgzbw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T06:00:06", + "amountCrypto": 0.00005694, + "pricePerUnit": 1452368, + "totalCost": 82.7, + "fee": 0.29045552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T06:00:06" + }, + { + "id": "5vr960ew75np942oxn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T10:00:06", + "amountCrypto": 0.00005735, + "pricePerUnit": 1442114, + "totalCost": 82.71, + "fee": 0.29048143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T10:00:06" + }, + { + "id": "j0026udjnq9q0hkl78", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T14:00:06", + "amountCrypto": 0.00005709, + "pricePerUnit": 1448714, + "totalCost": 82.71, + "fee": 0.29048799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T14:00:06" + }, + { + "id": "qjwx03w2b85z8nb7pm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T18:00:06", + "amountCrypto": 0.00005733, + "pricePerUnit": 1442660, + "totalCost": 82.71, + "fee": 0.29049014, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T18:00:06" + }, + { + "id": "7ljeqbp6vdg7nyz1az", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-08T22:00:07", + "amountCrypto": 0.00005735, + "pricePerUnit": 1442063, + "totalCost": 82.7, + "fee": 0.29047113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-08T22:00:07" + }, + { + "id": "5cggyz9a8t2sd3oenz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T02:00:06", + "amountCrypto": 0.00005746, + "pricePerUnit": 1439428, + "totalCost": 82.71, + "fee": 0.29049658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T02:00:06" + }, + { + "id": "oweveh2ypwu62u6so2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T06:00:08", + "amountCrypto": 0.00005724, + "pricePerUnit": 1444883, + "totalCost": 82.71, + "fee": 0.29048093, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T06:00:08" + }, + { + "id": "05f2vnirl509mztl3h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T10:00:06", + "amountCrypto": 0.00005725, + "pricePerUnit": 1444506, + "totalCost": 82.7, + "fee": 0.29045588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T10:00:06" + }, + { + "id": "bje43oekcx84e62rmc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T14:00:09", + "amountCrypto": 0.00005729, + "pricePerUnit": 1443550, + "totalCost": 82.7, + "fee": 0.29046659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T14:00:09" + }, + { + "id": "sbxrxkldig991iydva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T18:00:06", + "amountCrypto": 0.00005714, + "pricePerUnit": 1447455, + "totalCost": 82.71, + "fee": 0.2904897, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T18:00:06" + }, + { + "id": "pg4fsekj9fhmo48m5d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-09T22:00:07", + "amountCrypto": 0.00005834, + "pricePerUnit": 1417536, + "totalCost": 82.7, + "fee": 0.29045968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-09T22:00:07" + }, + { + "id": "f1n4kghvt2pet8tee0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T02:00:07", + "amountCrypto": 0.0000587, + "pricePerUnit": 1408961, + "totalCost": 82.71, + "fee": 0.29048427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T02:00:07" + }, + { + "id": "3s8deacjoxm8bybeb2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T06:00:05", + "amountCrypto": 0.00005848, + "pricePerUnit": 1414121, + "totalCost": 82.7, + "fee": 0.29045538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T06:00:05" + }, + { + "id": "ujeg47c75onjde8pfr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T10:00:06", + "amountCrypto": 0.00005851, + "pricePerUnit": 1413500, + "totalCost": 82.7, + "fee": 0.29047665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T10:00:06" + }, + { + "id": "xrk7crxt0p7m92l3pk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T14:00:08", + "amountCrypto": 0.0000581, + "pricePerUnit": 1423362, + "totalCost": 82.7, + "fee": 0.29045374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T14:00:08" + }, + { + "id": "wmwnu8prm4h8in61m2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T18:00:06", + "amountCrypto": 0.00005846, + "pricePerUnit": 1414601, + "totalCost": 82.7, + "fee": 0.29045464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T18:00:06" + }, + { + "id": "s2bm55nyqgno57akiu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-10T22:00:06", + "amountCrypto": 0.00005954, + "pricePerUnit": 1389143, + "totalCost": 82.71, + "fee": 0.29049673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-10T22:00:06" + }, + { + "id": "dgjflpilkegsojd8o2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T02:00:06", + "amountCrypto": 0.00005899, + "pricePerUnit": 1401876, + "totalCost": 82.7, + "fee": 0.29045132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T02:00:06" + }, + { + "id": "uq46vymrikd9iy3599", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T06:00:06", + "amountCrypto": 0.00005869, + "pricePerUnit": 1409139, + "totalCost": 82.7, + "fee": 0.29047136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T06:00:06" + }, + { + "id": "lem3bljlqmq9n5gvjc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T10:00:08", + "amountCrypto": 0.00005868, + "pricePerUnit": 1409379, + "totalCost": 82.7, + "fee": 0.29047145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T10:00:08" + }, + { + "id": "bims5qqr4wb7x1xj9c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T14:00:07", + "amountCrypto": 0.0000582, + "pricePerUnit": 1421045, + "totalCost": 82.7, + "fee": 0.29048009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T14:00:07" + }, + { + "id": "7r9i0y1c11w9eeto28", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T18:00:06", + "amountCrypto": 0.00005725, + "pricePerUnit": 1444478, + "totalCost": 82.7, + "fee": 0.29045024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T18:00:06" + }, + { + "id": "jmj01avu9goshqptfj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-11T22:00:06", + "amountCrypto": 0.0000565, + "pricePerUnit": 1463890, + "totalCost": 82.71, + "fee": 0.29049742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-11T22:00:06" + }, + { + "id": "yk66in9fbdcc3ugk6p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T02:00:07", + "amountCrypto": 0.00005703, + "pricePerUnit": 1450246, + "totalCost": 82.71, + "fee": 0.29048952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T02:00:07" + }, + { + "id": "1krv4z7zqhayh4jesn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T06:00:07", + "amountCrypto": 0.00005695, + "pricePerUnit": 1452146, + "totalCost": 82.7, + "fee": 0.29046202, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T06:00:07" + }, + { + "id": "i435egy9e8jp1wad1j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T10:00:06", + "amountCrypto": 0.00005676, + "pricePerUnit": 1457017, + "totalCost": 82.7, + "fee": 0.29046404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T10:00:06" + }, + { + "id": "8z43bi074imvqdxn7h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T14:00:06", + "amountCrypto": 0.00005656, + "pricePerUnit": 1462335, + "totalCost": 82.71, + "fee": 0.29049704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T14:00:06" + }, + { + "id": "sggm5qji8efydank3t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T18:00:06", + "amountCrypto": 0.00005642, + "pricePerUnit": 1465890, + "totalCost": 82.71, + "fee": 0.29048241, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T18:00:06" + }, + { + "id": "m6g1m8gcz0gj1miguq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-12T22:00:07", + "amountCrypto": 0.00005652, + "pricePerUnit": 1463202, + "totalCost": 82.7, + "fee": 0.29046373, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-12T22:00:07" + }, + { + "id": "xokrkhyaeqezl0cf9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T02:00:06", + "amountCrypto": 0.00005642, + "pricePerUnit": 1465931, + "totalCost": 82.71, + "fee": 0.29049056, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T02:00:06" + }, + { + "id": "xtrofya1dhinkjtjqb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T06:00:05", + "amountCrypto": 0.00005683, + "pricePerUnit": 1455285, + "totalCost": 82.7, + "fee": 0.29047649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T06:00:05" + }, + { + "id": "r7304zxkill0t49br7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T10:00:07", + "amountCrypto": 0.00005671, + "pricePerUnit": 1458474, + "totalCost": 82.71, + "fee": 0.2904985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T10:00:07" + }, + { + "id": "nspu61dff6o0tf35l2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T14:00:07", + "amountCrypto": 0.00005689, + "pricePerUnit": 1453613, + "totalCost": 82.7, + "fee": 0.29044925, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T14:00:07" + }, + { + "id": "9cqg6njorfd2b9bg6c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T18:00:06", + "amountCrypto": 0.00005729, + "pricePerUnit": 1443646, + "totalCost": 82.71, + "fee": 0.29048575, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T18:00:06" + }, + { + "id": "aob625nxh94l57to62", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-13T22:00:06", + "amountCrypto": 0.0000569, + "pricePerUnit": 1453368, + "totalCost": 82.7, + "fee": 0.29045122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-13T22:00:06" + }, + { + "id": "1snl2ilzs4wyw9279g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T02:00:07", + "amountCrypto": 0.00005656, + "pricePerUnit": 1462219, + "totalCost": 82.7, + "fee": 0.29047394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T02:00:07" + }, + { + "id": "042ts4h4imli1hyslu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T06:00:07", + "amountCrypto": 0.00005547, + "pricePerUnit": 1490948, + "totalCost": 82.7, + "fee": 0.29047324, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T06:00:07" + }, + { + "id": "9ufkrkjqjh2ecga683", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T10:00:07", + "amountCrypto": 0.00005526, + "pricePerUnit": 1496590, + "totalCost": 82.7, + "fee": 0.2904686, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T10:00:07" + }, + { + "id": "nrm7vvqm8lumvrpfcs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T14:00:06", + "amountCrypto": 0.00005492, + "pricePerUnit": 1505942, + "totalCost": 82.71, + "fee": 0.2904854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T14:00:06" + }, + { + "id": "j9chows537h3biq3aw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T18:00:06", + "amountCrypto": 0.00005414, + "pricePerUnit": 1527660, + "totalCost": 82.71, + "fee": 0.29048953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T18:00:06" + }, + { + "id": "ecmrycykls50dykfom", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-14T22:00:05", + "amountCrypto": 0.0000541, + "pricePerUnit": 1528638, + "totalCost": 82.7, + "fee": 0.29046063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-14T22:00:05" + }, + { + "id": "lw88182hsl1b44d3ya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T02:00:07", + "amountCrypto": 0.00005409, + "pricePerUnit": 1529090, + "totalCost": 82.71, + "fee": 0.29049284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T02:00:07" + }, + { + "id": "5ily30fyx9qziij8l3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T06:00:07", + "amountCrypto": 0.00005452, + "pricePerUnit": 1516970, + "totalCost": 82.71, + "fee": 0.29048132, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T06:00:07" + }, + { + "id": "gbsrqgexj9fki9y34m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T10:00:07", + "amountCrypto": 0.00005428, + "pricePerUnit": 1523587, + "totalCost": 82.7, + "fee": 0.29046418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T10:00:07" + }, + { + "id": "9uauw7x2u1hpiq7ley", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T14:00:06", + "amountCrypto": 0.00005456, + "pricePerUnit": 1515749, + "totalCost": 82.7, + "fee": 0.29046045, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T14:00:06" + }, + { + "id": "n3eyhwz08ipudfhdxa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T18:00:07", + "amountCrypto": 0.00005397, + "pricePerUnit": 1532295, + "totalCost": 82.7, + "fee": 0.29045589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T18:00:07" + }, + { + "id": "u8knv00qx5cc7avbbm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-15T22:00:06", + "amountCrypto": 0.00005329, + "pricePerUnit": 1552079, + "totalCost": 82.71, + "fee": 0.29049923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-15T22:00:06" + }, + { + "id": "wswa2zuromtr9sk5d2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T02:00:06", + "amountCrypto": 0.00005329, + "pricePerUnit": 1552079, + "totalCost": 82.71, + "fee": 0.29049923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T02:00:06" + }, + { + "id": "dv2vpqlh2w7tez5mhf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T06:00:06", + "amountCrypto": 0.00005322, + "pricePerUnit": 1553861, + "totalCost": 82.7, + "fee": 0.29045081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T06:00:06" + }, + { + "id": "enuta234eggv7cciyy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T10:00:07", + "amountCrypto": 0.00005322, + "pricePerUnit": 1553862, + "totalCost": 82.7, + "fee": 0.290451, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T10:00:07" + }, + { + "id": "n758ril36ffk6w8x0c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T14:00:05", + "amountCrypto": 0.00005231, + "pricePerUnit": 1581045, + "totalCost": 82.7, + "fee": 0.29047876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T14:00:05" + }, + { + "id": "wfocwujk8qrgnzga40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T18:00:05", + "amountCrypto": 0.00005242, + "pricePerUnit": 1577554, + "totalCost": 82.7, + "fee": 0.29044692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T18:00:05" + }, + { + "id": "oq9sx7x25gnmxew5dn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-16T22:00:06", + "amountCrypto": 0.00005233, + "pricePerUnit": 1580431, + "totalCost": 82.7, + "fee": 0.29047687, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-16T22:00:06" + }, + { + "id": "4aicvl0ifibmcoiqu4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T02:00:06", + "amountCrypto": 0.00005243, + "pricePerUnit": 1577260, + "totalCost": 82.7, + "fee": 0.29044805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T02:00:06" + }, + { + "id": "nfu9vma2tbw989xte3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T06:00:06", + "amountCrypto": 0.00005241, + "pricePerUnit": 1578065, + "totalCost": 82.71, + "fee": 0.29048544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T06:00:06" + }, + { + "id": "kwkiwmomstnytm3qoa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T10:00:06", + "amountCrypto": 0.00005269, + "pricePerUnit": 1569614, + "totalCost": 82.7, + "fee": 0.29047341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T10:00:06" + }, + { + "id": "2lu15sd91vplvpve0q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T14:00:06", + "amountCrypto": 0.00005322, + "pricePerUnit": 1553861, + "totalCost": 82.7, + "fee": 0.29045081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T14:00:06" + }, + { + "id": "bjwryp0s8d4o9zv3io", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T18:00:05", + "amountCrypto": 0.0000525, + "pricePerUnit": 1575199, + "totalCost": 82.7, + "fee": 0.29045578, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T18:00:05" + }, + { + "id": "zimpxnn67ucy2cpx0e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-17T22:00:05", + "amountCrypto": 0.00005296, + "pricePerUnit": 1561489, + "totalCost": 82.7, + "fee": 0.29045071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-17T22:00:05" + }, + { + "id": "wfzpq5i5v87pwszcut", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T02:00:06", + "amountCrypto": 0.00005258, + "pricePerUnit": 1572960, + "totalCost": 82.71, + "fee": 0.29048497, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T02:00:06" + }, + { + "id": "r0tv6z6890wb1j3tl4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T06:00:07", + "amountCrypto": 0.00005242, + "pricePerUnit": 1577795, + "totalCost": 82.71, + "fee": 0.29049121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T06:00:07" + }, + { + "id": "d22pqht42nja58uhk9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T10:00:06", + "amountCrypto": 0.00005216, + "pricePerUnit": 1585696, + "totalCost": 82.71, + "fee": 0.29049778, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T10:00:06" + }, + { + "id": "ixj1zw5opmyacg8zat", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T14:00:05", + "amountCrypto": 0.00005237, + "pricePerUnit": 1579316, + "totalCost": 82.71, + "fee": 0.29049386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T14:00:05" + }, + { + "id": "8bfbdxxypeio927vll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T18:00:05", + "amountCrypto": 0.00005172, + "pricePerUnit": 1598974, + "totalCost": 82.7, + "fee": 0.29045926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T18:00:05" + }, + { + "id": "v2sp40rzes5gmmo2b0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-18T22:00:06", + "amountCrypto": 0.0000518, + "pricePerUnit": 1596538, + "totalCost": 82.7, + "fee": 0.29046534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-18T22:00:06" + }, + { + "id": "qw5p6ru0pke5qb47cc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T02:00:06", + "amountCrypto": 0.00005203, + "pricePerUnit": 1589601, + "totalCost": 82.71, + "fee": 0.29048751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T02:00:06" + }, + { + "id": "gbcyfle0r4wieecc7s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T06:00:06", + "amountCrypto": 0.00005203, + "pricePerUnit": 1589601, + "totalCost": 82.71, + "fee": 0.29048751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T06:00:06" + }, + { + "id": "jtxqhu8229bvv7r26c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T10:00:06", + "amountCrypto": 0.00005203, + "pricePerUnit": 1589366, + "totalCost": 82.69, + "fee": 0.29044445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T10:00:06" + }, + { + "id": "c3optt1ztekwdvz0tz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T14:00:05", + "amountCrypto": 0.0000522, + "pricePerUnit": 1584196, + "totalCost": 82.7, + "fee": 0.2904456, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T14:00:05" + }, + { + "id": "gpmrg8sc3or2qh4y89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T18:00:07", + "amountCrypto": 0.00005211, + "pricePerUnit": 1587146, + "totalCost": 82.71, + "fee": 0.29048481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T18:00:07" + }, + { + "id": "tsqo7bvmsba916860q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-19T22:00:06", + "amountCrypto": 0.00005219, + "pricePerUnit": 1584628, + "totalCost": 82.7, + "fee": 0.29046916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-19T22:00:06" + }, + { + "id": "spnql4ce4eadqu1v3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T02:00:05", + "amountCrypto": 0.00005212, + "pricePerUnit": 1586873, + "totalCost": 82.71, + "fee": 0.29049046, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T02:00:05" + }, + { + "id": "w3qj8nlvimqazfmk2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T06:00:05", + "amountCrypto": 0.00005216, + "pricePerUnit": 1585444, + "totalCost": 82.7, + "fee": 0.29045169, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T06:00:05" + }, + { + "id": "aq1py5flat4gx3rdjr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T10:00:05", + "amountCrypto": 0.00005205, + "pricePerUnit": 1588948, + "totalCost": 82.7, + "fee": 0.29047968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T10:00:05" + }, + { + "id": "fy879dvzob4ivscwus", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T14:00:06", + "amountCrypto": 0.000052, + "pricePerUnit": 1590351, + "totalCost": 82.7, + "fee": 0.29045697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T14:00:06" + }, + { + "id": "akbrw5br200739fp27", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T18:00:06", + "amountCrypto": 0.00005195, + "pricePerUnit": 1591956, + "totalCost": 82.7, + "fee": 0.29047053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T18:00:06" + }, + { + "id": "f1xyb7t92csce23c1o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-20T22:00:05", + "amountCrypto": 0.00005197, + "pricePerUnit": 1591240, + "totalCost": 82.7, + "fee": 0.2904517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-20T22:00:05" + }, + { + "id": "s1w59kyy4ost6k9u5d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T02:00:05", + "amountCrypto": 0.00005172, + "pricePerUnit": 1598974, + "totalCost": 82.7, + "fee": 0.29045926, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T02:00:05" + }, + { + "id": "z6b4abh6aat3w0hjyp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T06:00:06", + "amountCrypto": 0.00005185, + "pricePerUnit": 1594987, + "totalCost": 82.7, + "fee": 0.29046328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "5999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T06:00:06" + }, + { + "id": "1cr1lj1sq88twdbh0i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T10:00:05", + "amountCrypto": 0.00005182, + "pricePerUnit": 1596030, + "totalCost": 82.71, + "fee": 0.29048516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T10:00:05" + }, + { + "id": "csbzs1lsjca3zxtnjh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T14:00:07", + "amountCrypto": 0.00005198, + "pricePerUnit": 1590976, + "totalCost": 82.7, + "fee": 0.29045927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T14:00:07" + }, + { + "id": "vsl3b63ll92fs5ifv2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T18:00:05", + "amountCrypto": 0.0000527, + "pricePerUnit": 1569231, + "totalCost": 82.7, + "fee": 0.29045765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T18:00:05" + }, + { + "id": "z4w9p3t9mr001mm1g5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-21T22:00:06", + "amountCrypto": 0.00005219, + "pricePerUnit": 1584591, + "totalCost": 82.7, + "fee": 0.29046236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-21T22:00:06" + }, + { + "id": "i9unox43ixtcs9xtfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T02:00:06", + "amountCrypto": 0.00005241, + "pricePerUnit": 1578076, + "totalCost": 82.71, + "fee": 0.29048747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T02:00:06" + }, + { + "id": "txv7gfjs6b0ymrxfq0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T06:00:05", + "amountCrypto": 0.00005243, + "pricePerUnit": 1577393, + "totalCost": 82.7, + "fee": 0.2904726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T06:00:05" + }, + { + "id": "e6k1s7sljnbmygujc8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T10:00:06", + "amountCrypto": 0.00005247, + "pricePerUnit": 1576165, + "totalCost": 82.7, + "fee": 0.2904679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T10:00:06" + }, + { + "id": "0bkuoc8q6x1d6a3zvc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T14:00:06", + "amountCrypto": 0.00005249, + "pricePerUnit": 1575504, + "totalCost": 82.7, + "fee": 0.29045682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T14:00:06" + }, + { + "id": "9c4q60gryxxshomkai", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T18:00:05", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575008, + "totalCost": 82.7, + "fee": 0.29047597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T18:00:05" + }, + { + "id": "5uqz0cwix9q8p9dfa7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-22T22:00:06", + "amountCrypto": 0.00005238, + "pricePerUnit": 1578974, + "totalCost": 82.71, + "fee": 0.29048644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-22T22:00:06" + }, + { + "id": "sxvwphfevmlcw5uo1k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T02:00:06", + "amountCrypto": 0.00005234, + "pricePerUnit": 1580003, + "totalCost": 82.7, + "fee": 0.29045387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T02:00:06" + }, + { + "id": "8td7ab4ex65xh7tdng", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T06:00:11", + "amountCrypto": 0.00005263, + "pricePerUnit": 1571498, + "totalCost": 82.71, + "fee": 0.29049102, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T06:00:11" + }, + { + "id": "dmtka1r6j4hnzdm6wp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T10:00:07", + "amountCrypto": 0.00005264, + "pricePerUnit": 1571226, + "totalCost": 82.71, + "fee": 0.2904958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T10:00:07" + }, + { + "id": "1tyfnrv6gilk2kt09d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T14:00:06", + "amountCrypto": 0.00005297, + "pricePerUnit": 1561217, + "totalCost": 82.7, + "fee": 0.29045483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T14:00:06" + }, + { + "id": "2r15i1q7jbdpnzzfqw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T18:00:07", + "amountCrypto": 0.00005312, + "pricePerUnit": 1556889, + "totalCost": 82.7, + "fee": 0.2904699, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T18:00:07" + }, + { + "id": "giopm38ed1nwmy1cq4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-23T22:00:06", + "amountCrypto": 0.00005303, + "pricePerUnit": 1559404, + "totalCost": 82.7, + "fee": 0.29044624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-23T22:00:06" + }, + { + "id": "f3gt3u4s1bm0a8n19h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T02:00:07", + "amountCrypto": 0.00005292, + "pricePerUnit": 1562863, + "totalCost": 82.71, + "fee": 0.29048661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T02:00:07" + }, + { + "id": "awoi34i71mtoklaiap", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T06:00:07", + "amountCrypto": 0.00005237, + "pricePerUnit": 1579105, + "totalCost": 82.7, + "fee": 0.29045514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T06:00:07" + }, + { + "id": "qjopr5w4ph1x89bhl9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T10:00:07", + "amountCrypto": 0.00005259, + "pricePerUnit": 1572531, + "totalCost": 82.7, + "fee": 0.29046096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T10:00:07" + }, + { + "id": "ei1nd3nf8n96zex9ea", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T14:00:11", + "amountCrypto": 0.0000524, + "pricePerUnit": 1578253, + "totalCost": 82.7, + "fee": 0.2904647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T14:00:11" + }, + { + "id": "87sn0b2ijgmv1wiqpv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T18:00:06", + "amountCrypto": 0.00005221, + "pricePerUnit": 1583926, + "totalCost": 82.7, + "fee": 0.29045179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T18:00:06" + }, + { + "id": "ft9dtdzbxwu36rn2st", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-24T22:00:06", + "amountCrypto": 0.0000521, + "pricePerUnit": 1587451, + "totalCost": 82.71, + "fee": 0.29048483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-24T22:00:06" + }, + { + "id": "cnypz5inqlyqg0iftr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T02:00:07", + "amountCrypto": 0.00005205, + "pricePerUnit": 1589012, + "totalCost": 82.71, + "fee": 0.29049141, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T02:00:07" + }, + { + "id": "4iba6nxwq3jl7m9znf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T06:00:07", + "amountCrypto": 0.00005213, + "pricePerUnit": 1586491, + "totalCost": 82.7, + "fee": 0.29047626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T06:00:07" + }, + { + "id": "uapkzqemgihansmnzb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T10:00:08", + "amountCrypto": 0.00005246, + "pricePerUnit": 1576635, + "totalCost": 82.71, + "fee": 0.29049917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T10:00:08" + }, + { + "id": "kbsx7x2qqa3edc9e9w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T14:00:05", + "amountCrypto": 0.00005201, + "pricePerUnit": 1590093, + "totalCost": 82.7, + "fee": 0.29046558, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T14:00:05" + }, + { + "id": "x3oc3qcdkkprbpze9f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T18:00:05", + "amountCrypto": 0.00005218, + "pricePerUnit": 1585083, + "totalCost": 82.71, + "fee": 0.29049691, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T18:00:05" + }, + { + "id": "ozl9f4lm7lkix8csoq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-25T22:00:06", + "amountCrypto": 0.00005272, + "pricePerUnit": 1568752, + "totalCost": 82.7, + "fee": 0.29047934, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-25T22:00:06" + }, + { + "id": "ozi1p46du4vx78e8rx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T02:00:07", + "amountCrypto": 0.00005283, + "pricePerUnit": 1565581, + "totalCost": 82.71, + "fee": 0.29049688, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T02:00:07" + }, + { + "id": "suta1bjtqmetwr6uaa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T06:00:13", + "amountCrypto": 0.00005263, + "pricePerUnit": 1571289, + "totalCost": 82.7, + "fee": 0.29045229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T06:00:13" + }, + { + "id": "9r9du4rrdbwu0ouvxv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T10:00:07", + "amountCrypto": 0.00005254, + "pricePerUnit": 1574002, + "totalCost": 82.7, + "fee": 0.29045619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T10:00:07" + }, + { + "id": "e8ybcagumln8et7nfm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T14:00:05", + "amountCrypto": 0.00005251, + "pricePerUnit": 1575128, + "totalCost": 82.71, + "fee": 0.29049816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T14:00:05" + }, + { + "id": "1m1qodn3wvruptuutv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T18:00:05", + "amountCrypto": 0.00005264, + "pricePerUnit": 1571036, + "totalCost": 82.7, + "fee": 0.29046077, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T18:00:05" + }, + { + "id": "qukggn42yxkldrhlr5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-26T22:00:07", + "amountCrypto": 0.00005248, + "pricePerUnit": 1575837, + "totalCost": 82.7, + "fee": 0.29046283, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-26T22:00:07" + }, + { + "id": "zgjbtfepxdwffj0wg1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T02:00:07", + "amountCrypto": 0.00005243, + "pricePerUnit": 1577321, + "totalCost": 82.7, + "fee": 0.29045931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T02:00:07" + }, + { + "id": "viphuohq1xq0ncvped", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T05:00:06", + "amountCrypto": 0.00005242, + "pricePerUnit": 1577734, + "totalCost": 82.7, + "fee": 0.29047996, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T05:00:06" + }, + { + "id": "96o1e2mi8776abcvdw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T09:00:05", + "amountCrypto": 0.00005239, + "pricePerUnit": 1578729, + "totalCost": 82.71, + "fee": 0.29049689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T09:00:05" + }, + { + "id": "dfa8xeob0smko2cflt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T13:00:06", + "amountCrypto": 0.00005249, + "pricePerUnit": 1575731, + "totalCost": 82.71, + "fee": 0.29049859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T13:00:06" + }, + { + "id": "huphfrn5ile0kxezi1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T17:00:07", + "amountCrypto": 0.00005202, + "pricePerUnit": 1589873, + "totalCost": 82.71, + "fee": 0.29048131, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T17:00:07" + }, + { + "id": "12eekfryfjwedtx5xw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-27T21:00:06", + "amountCrypto": 0.00005199, + "pricePerUnit": 1590837, + "totalCost": 82.71, + "fee": 0.29048989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-27T21:00:06" + }, + { + "id": "13wu21oetgrsn91ppj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T01:00:05", + "amountCrypto": 0.00005182, + "pricePerUnit": 1595971, + "totalCost": 82.7, + "fee": 0.2904744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T01:00:05" + }, + { + "id": "l89vwll2nvfq1shnxv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T05:00:06", + "amountCrypto": 0.00005194, + "pricePerUnit": 1592294, + "totalCost": 82.7, + "fee": 0.29047625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T05:00:06" + }, + { + "id": "op9cvi4tn28kc1xsma", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T09:00:07", + "amountCrypto": 0.00005146, + "pricePerUnit": 1607038, + "totalCost": 82.7, + "fee": 0.2904566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T09:00:07" + }, + { + "id": "ov6msks30mjq8wvl8a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T13:00:05", + "amountCrypto": 0.00005127, + "pricePerUnit": 1609802, + "totalCost": 82.53, + "fee": 0.28988191, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T13:00:05" + }, + { + "id": "i5tlgo5emp32z2yzn9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T17:00:06", + "amountCrypto": 0.00005139, + "pricePerUnit": 1609265, + "totalCost": 82.7, + "fee": 0.29046356, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T17:00:06" + }, + { + "id": "pr86i2iudsztmvnfa0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-28T21:00:07", + "amountCrypto": 0.00005058, + "pricePerUnit": 1635072, + "totalCost": 82.7, + "fee": 0.29046995, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-28T21:00:07" + }, + { + "id": "3ehoc9mq11k4mn0z12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T01:00:06", + "amountCrypto": 0.00005039, + "pricePerUnit": 1641131, + "totalCost": 82.7, + "fee": 0.29045117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T01:00:06" + }, + { + "id": "ganj4bwpgrfqvidnpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T05:00:09", + "amountCrypto": 0.00004982, + "pricePerUnit": 1659868, + "totalCost": 82.69, + "fee": 0.29044418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T05:00:09" + }, + { + "id": "82xl4l6g4sq7j0lgch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T09:00:08", + "amountCrypto": 0.00005005, + "pricePerUnit": 1652435, + "totalCost": 82.7, + "fee": 0.29047851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T09:00:08" + }, + { + "id": "phlsqu8ppxoiz7sdpo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T13:00:06", + "amountCrypto": 0.0000494, + "pricePerUnit": 1670832, + "totalCost": 82.54, + "fee": 0.28989797, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T13:00:06" + }, + { + "id": "460y0hiv26ohungzz1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T17:00:06", + "amountCrypto": 0.00004873, + "pricePerUnit": 1697038, + "totalCost": 82.7, + "fee": 0.2904514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T17:00:06" + }, + { + "id": "099o0tvwu71r9ve3vt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-29T21:00:05", + "amountCrypto": 0.00004878, + "pricePerUnit": 1695385, + "totalCost": 82.7, + "fee": 0.2904662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-29T21:00:05" + }, + { + "id": "k7yy5rid2f28vip0ni", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T01:00:06", + "amountCrypto": 0.00004906, + "pricePerUnit": 1685699, + "totalCost": 82.7, + "fee": 0.29046447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T01:00:06" + }, + { + "id": "zrevfqqpmulntp1r2o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T05:00:06", + "amountCrypto": 0.00004906, + "pricePerUnit": 1685699, + "totalCost": 82.7, + "fee": 0.29046447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T05:00:06" + }, + { + "id": "kd5qupm2ci7kit38ak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T09:00:06", + "amountCrypto": 0.00004938, + "pricePerUnit": 1674878, + "totalCost": 82.71, + "fee": 0.29048235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T09:00:06" + }, + { + "id": "9cctilammjqlx34b14", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T13:00:06", + "amountCrypto": 0.00004903, + "pricePerUnit": 1686724, + "totalCost": 82.7, + "fee": 0.29046329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T13:00:06" + }, + { + "id": "43fl073pxgg3tvalbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T17:00:06", + "amountCrypto": 0.00004908, + "pricePerUnit": 1684904, + "totalCost": 82.7, + "fee": 0.29044585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T17:00:06" + }, + { + "id": "syu2f8blz3vui0wqx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-30T21:00:08", + "amountCrypto": 0.00004917, + "pricePerUnit": 1682008, + "totalCost": 82.7, + "fee": 0.29047828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-30T21:00:08" + }, + { + "id": "54n76tnpmv2j6hf829", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T01:00:05", + "amountCrypto": 0.00004883, + "pricePerUnit": 1693647, + "totalCost": 82.7, + "fee": 0.2904658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T01:00:05" + }, + { + "id": "b5w8eow9fcbcf12ysv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T05:00:06", + "amountCrypto": 0.00004881, + "pricePerUnit": 1694482, + "totalCost": 82.71, + "fee": 0.29048999, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T05:00:06" + }, + { + "id": "k9g2qyfzsjxvvyn2d6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T09:00:08", + "amountCrypto": 0.00004881, + "pricePerUnit": 1694355, + "totalCost": 82.7, + "fee": 0.29046816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T09:00:08" + }, + { + "id": "0cngokp0l2cgto6khw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T13:00:05", + "amountCrypto": 0.00004903, + "pricePerUnit": 1686724, + "totalCost": 82.7, + "fee": 0.29046329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T13:00:05" + }, + { + "id": "ys02jdnun28oed5so7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T17:00:05", + "amountCrypto": 0.00005015, + "pricePerUnit": 1649074, + "totalCost": 82.7, + "fee": 0.29046682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T17:00:05" + }, + { + "id": "55igr9uzvxi5squtg2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-10-31T21:00:05", + "amountCrypto": 0.00005052, + "pricePerUnit": 1637069, + "totalCost": 82.7, + "fee": 0.29047972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-10-31T21:00:05" + }, + { + "id": "hl5mt3xo83qunduyl2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T01:00:06", + "amountCrypto": 0.00005043, + "pricePerUnit": 1639941, + "totalCost": 82.7, + "fee": 0.29047096, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T01:00:06" + }, + { + "id": "v04tan697l0tudyujv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T05:00:06", + "amountCrypto": 0.0000511, + "pricePerUnit": 1618546, + "totalCost": 82.71, + "fee": 0.29049016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T05:00:06" + }, + { + "id": "txp0fsyxgubtv7peoq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T09:00:05", + "amountCrypto": 0.00005107, + "pricePerUnit": 1619549, + "totalCost": 82.71, + "fee": 0.29049944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T09:00:05" + }, + { + "id": "t7ficg1ko84ght4odl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T13:00:08", + "amountCrypto": 0.0000506, + "pricePerUnit": 1634408, + "totalCost": 82.7, + "fee": 0.29046668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T13:00:08" + }, + { + "id": "60mvnl154gfi96bxsy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T17:00:06", + "amountCrypto": 0.00005094, + "pricePerUnit": 1623392, + "totalCost": 82.7, + "fee": 0.29044763, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T17:00:06" + }, + { + "id": "02s65rsbvx60l4zf2f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-01T21:00:07", + "amountCrypto": 0.00005093, + "pricePerUnit": 1623705, + "totalCost": 82.7, + "fee": 0.29044656, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-01T21:00:07" + }, + { + "id": "s72dbs7esyjpfqltne", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-02T01:00:05", + "amountCrypto": 0.00005075, + "pricePerUnit": 1629449, + "totalCost": 82.69, + "fee": 0.29044395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-02T01:00:05" + }, + { + "id": "cvlqtix6qq672kex8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-02T05:00:06", + "amountCrypto": 0.00005068, + "pricePerUnit": 1632002, + "totalCost": 82.71, + "fee": 0.29049765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-02T05:00:06" + }, + { + "id": "xyn3sg5ie6tarlxodf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-02T09:00:07", + "amountCrypto": 0.00005056, + "pricePerUnit": 1635884, + "totalCost": 82.71, + "fee": 0.29049929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-02T09:00:07" + }, + { + "id": "eds9gbcqf8f2k4b5yt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-02T13:00:05", + "amountCrypto": 0.00005066, + "pricePerUnit": 1632418, + "totalCost": 82.7, + "fee": 0.29045704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-02T13:00:05" + }, + { + "id": "k9kbokuf2ufc4t8b9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-02T17:00:05", + "amountCrypto": 0.0000508, + "pricePerUnit": 1628146, + "totalCost": 82.71, + "fee": 0.29049757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-02T17:00:05" + }, + { + "id": "usapsn5f5xmpobmswb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-02T21:00:05", + "amountCrypto": 0.00005072, + "pricePerUnit": 1630688, + "totalCost": 82.71, + "fee": 0.29049299, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-02T21:00:05" + }, + { + "id": "6c9xbt8430r8voancz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-03T01:00:05", + "amountCrypto": 0.0000508, + "pricePerUnit": 1628028, + "totalCost": 82.7, + "fee": 0.29047646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-03T01:00:05" + }, + { + "id": "g018yhgz5iwn3iwwfc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-03T05:00:06", + "amountCrypto": 0.00005153, + "pricePerUnit": 1605014, + "totalCost": 82.71, + "fee": 0.29048538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-03T05:00:06" + }, + { + "id": "2omg7dgsmsihu9smzb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-03T09:00:05", + "amountCrypto": 0.0000515, + "pricePerUnit": 1605830, + "totalCost": 82.7, + "fee": 0.29046387, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-03T09:00:05" + }, + { + "id": "2pd6kaaxfvxlr9khkv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-03T13:00:05", + "amountCrypto": 0.0000515, + "pricePerUnit": 1606024, + "totalCost": 82.71, + "fee": 0.29049905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-03T13:00:05" + }, + { + "id": "azfig486mswsj5571e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-03T17:00:06", + "amountCrypto": 0.00005177, + "pricePerUnit": 1597394, + "totalCost": 82.7, + "fee": 0.29045278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-03T17:00:06" + }, + { + "id": "oazefu92hxmjbku8zv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-03T21:00:06", + "amountCrypto": 0.00005142, + "pricePerUnit": 1608468, + "totalCost": 82.71, + "fee": 0.29048919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-03T21:00:06" + }, + { + "id": "91h5jzck9y2xg3nb7r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-04T01:00:05", + "amountCrypto": 0.00005142, + "pricePerUnit": 1608457, + "totalCost": 82.71, + "fee": 0.29048719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-04T01:00:05" + }, + { + "id": "rmnzyzfmg7vlmgf0di", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-04T05:00:05", + "amountCrypto": 0.00005139, + "pricePerUnit": 1609411, + "totalCost": 82.71, + "fee": 0.29048979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-04T05:00:05" + }, + { + "id": "858qgxkcm9193rhg4p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-04T09:00:06", + "amountCrypto": 0.00005164, + "pricePerUnit": 1601546, + "totalCost": 82.7, + "fee": 0.29047654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-04T09:00:06" + }, + { + "id": "yh89ar8etsnmjr9n1q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-04T13:00:08", + "amountCrypto": 0.00005174, + "pricePerUnit": 1598339, + "totalCost": 82.7, + "fee": 0.29045626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-04T13:00:08" + }, + { + "id": "mtg8eqmlvzxh5c2sjc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-04T17:00:05", + "amountCrypto": 0.00005169, + "pricePerUnit": 1599949, + "totalCost": 82.7, + "fee": 0.29046787, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-04T17:00:05" + }, + { + "id": "53ii3uuss0grz8ne20", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-04T21:00:05", + "amountCrypto": 0.0000522, + "pricePerUnit": 1584452, + "totalCost": 82.71, + "fee": 0.29049247, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-04T21:00:05" + }, + { + "id": "edykhjemeutxej3gtu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-05T01:00:05", + "amountCrypto": 0.00005221, + "pricePerUnit": 1584079, + "totalCost": 82.7, + "fee": 0.29047973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-05T01:00:05" + }, + { + "id": "r5gz48dbkuqdgj55xx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-05T05:00:06", + "amountCrypto": 0.00005203, + "pricePerUnit": 1589601, + "totalCost": 82.71, + "fee": 0.29048751, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-05T05:00:06" + }, + { + "id": "6cz4mihwz7xdlpjcjh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-05T09:00:05", + "amountCrypto": 0.00005143, + "pricePerUnit": 1607944, + "totalCost": 82.7, + "fee": 0.29045097, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-05T09:00:05" + }, + { + "id": "t84tzf392ugloa7rnz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-05T13:00:05", + "amountCrypto": 0.00005154, + "pricePerUnit": 1604547, + "totalCost": 82.7, + "fee": 0.29045737, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-05T13:00:05" + }, + { + "id": "wsq23ji3mwc3ac15e7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-05T17:00:06", + "amountCrypto": 0.00005098, + "pricePerUnit": 1622297, + "totalCost": 82.7, + "fee": 0.29047951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6092", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-05T17:00:06" + }, + { + "id": "rosa6llgeiitmbdrq4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-05T21:00:05", + "amountCrypto": 0.00005114, + "pricePerUnit": 1617182, + "totalCost": 82.7, + "fee": 0.29047249, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6093", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-05T21:00:05" + }, + { + "id": "jun4nlglv10ph9yd2m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-06T01:00:05", + "amountCrypto": 0.00005123, + "pricePerUnit": 1614294, + "totalCost": 82.7, + "fee": 0.290464, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6094", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-06T01:00:05" + }, + { + "id": "gn8phgdi66bbdpdt1o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-06T05:00:07", + "amountCrypto": 0.00004685, + "pricePerUnit": 1765184, + "totalCost": 82.7, + "fee": 0.29045905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6095", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-06T05:00:07" + }, + { + "id": "1n9kfnzoyus69xjlu1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-06T09:00:06", + "amountCrypto": 0.00004755, + "pricePerUnit": 1739423, + "totalCost": 82.71, + "fee": 0.2904966, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-06T09:00:06" + }, + { + "id": "q4o69knnhkg6261e0j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-06T13:00:06", + "amountCrypto": 0.00004706, + "pricePerUnit": 1757367, + "totalCost": 82.7, + "fee": 0.29046905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-06T13:00:06" + }, + { + "id": "ba48u44pji64n5nb7f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-06T17:00:04", + "amountCrypto": 0.00004698, + "pricePerUnit": 1760215, + "totalCost": 82.69, + "fee": 0.29044521, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-06T17:00:04" + }, + { + "id": "thy49mipbl5572mee3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-06T21:00:06", + "amountCrypto": 0.00004627, + "pricePerUnit": 1787273, + "totalCost": 82.7, + "fee": 0.29045289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-06T21:00:06" + }, + { + "id": "yjue5qntbmfif1gud1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T01:00:05", + "amountCrypto": 0.00004621, + "pricePerUnit": 1789758, + "totalCost": 82.7, + "fee": 0.29047962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T01:00:05" + }, + { + "id": "fgttve75l7577ojrc6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T05:00:05", + "amountCrypto": 0.00004655, + "pricePerUnit": 1776733, + "totalCost": 82.71, + "fee": 0.29048744, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T05:00:05" + }, + { + "id": "c3ja9cno535cvt637y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T09:00:08", + "amountCrypto": 0.00004678, + "pricePerUnit": 1767945, + "totalCost": 82.7, + "fee": 0.29047868, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T09:00:08" + }, + { + "id": "a4c4nz9v26s1qtt4g9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T13:00:05", + "amountCrypto": 0.00004694, + "pricePerUnit": 1761705, + "totalCost": 82.69, + "fee": 0.29044352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T13:00:05" + }, + { + "id": "wy9ycgkkeshx4m58co", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T17:00:06", + "amountCrypto": 0.00004652, + "pricePerUnit": 1777917, + "totalCost": 82.71, + "fee": 0.29049367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T17:00:06" + }, + { + "id": "nnki483te79ktahi9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-07T21:00:05", + "amountCrypto": 0.00004612, + "pricePerUnit": 1792994, + "totalCost": 82.69, + "fee": 0.29043804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-07T21:00:05" + }, + { + "id": "lab7j6ypz09o003lv1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T01:00:06", + "amountCrypto": 0.00004645, + "pricePerUnit": 1780615, + "totalCost": 82.71, + "fee": 0.29049667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T01:00:06" + }, + { + "id": "8nzdnjqz7mi8n809vu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T05:00:06", + "amountCrypto": 0.00004633, + "pricePerUnit": 1785144, + "totalCost": 82.71, + "fee": 0.29048321, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T05:00:06" + }, + { + "id": "94klqd1b7w15pr77mq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T09:00:07", + "amountCrypto": 0.00004618, + "pricePerUnit": 1790770, + "totalCost": 82.7, + "fee": 0.29045524, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T09:00:07" + }, + { + "id": "2uoeg35xx99z8iv3c9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T13:00:06", + "amountCrypto": 0.00004638, + "pricePerUnit": 1783050, + "totalCost": 82.7, + "fee": 0.29045556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T13:00:06" + }, + { + "id": "l3nk0qytyvc6hswh5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T17:00:05", + "amountCrypto": 0.00004607, + "pricePerUnit": 1794946, + "totalCost": 82.69, + "fee": 0.29043899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T17:00:05" + }, + { + "id": "rab1dvxe8f0kale2i1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-08T21:00:05", + "amountCrypto": 0.00004545, + "pricePerUnit": 1819506, + "totalCost": 82.7, + "fee": 0.29045089, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-08T21:00:05" + }, + { + "id": "pewo2ilenynq780shi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T01:00:06", + "amountCrypto": 0.00004571, + "pricePerUnit": 1809449, + "totalCost": 82.71, + "fee": 0.29049784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T01:00:06" + }, + { + "id": "zlp5ry56v1v9wbhuqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T05:00:08", + "amountCrypto": 0.00004575, + "pricePerUnit": 1807620, + "totalCost": 82.7, + "fee": 0.29045823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T05:00:08" + }, + { + "id": "l1csuo2adbnno38ygo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T09:00:05", + "amountCrypto": 0.00004564, + "pricePerUnit": 1811873, + "totalCost": 82.69, + "fee": 0.29044154, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T09:00:05" + }, + { + "id": "wnh6wmo5rjci434in4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T13:00:08", + "amountCrypto": 0.0000457, + "pricePerUnit": 1809755, + "totalCost": 82.71, + "fee": 0.29048352, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T13:00:08" + }, + { + "id": "stjyl9ku3zd2sgiobl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T17:00:05", + "amountCrypto": 0.00004588, + "pricePerUnit": 1802389, + "totalCost": 82.69, + "fee": 0.29044064, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T17:00:05" + }, + { + "id": "ulfiepoqjx9mcdiqi8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-09T21:00:06", + "amountCrypto": 0.00004589, + "pricePerUnit": 1802300, + "totalCost": 82.71, + "fee": 0.29048956, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-09T21:00:06" + }, + { + "id": "jy5elpiihdfdlbdukc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T01:00:05", + "amountCrypto": 0.00004564, + "pricePerUnit": 1812009, + "totalCost": 82.7, + "fee": 0.29046339, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T01:00:05" + }, + { + "id": "21aeuikwffmdfl7uz4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T05:00:06", + "amountCrypto": 0.00004534, + "pricePerUnit": 1823982, + "totalCost": 82.7, + "fee": 0.29046079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T05:00:06" + }, + { + "id": "d5je77fk2ikrbp8yh6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T09:00:05", + "amountCrypto": 0.00004447, + "pricePerUnit": 1859858, + "totalCost": 82.71, + "fee": 0.29049076, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T09:00:05" + }, + { + "id": "elz99ypicbxec8xs0t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T13:00:07", + "amountCrypto": 0.00004388, + "pricePerUnit": 1884684, + "totalCost": 82.7, + "fee": 0.29046278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T13:00:07" + }, + { + "id": "07qqr4rv1alwcykct5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T17:00:05", + "amountCrypto": 0.00004392, + "pricePerUnit": 1882981, + "totalCost": 82.7, + "fee": 0.29046498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T17:00:05" + }, + { + "id": "qwytq5ez89fwkvvtj5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-10T21:00:06", + "amountCrypto": 0.00004395, + "pricePerUnit": 1881650, + "totalCost": 82.7, + "fee": 0.29045788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-10T21:00:06" + }, + { + "id": "h9xeoosf1z4o24crxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T01:00:06", + "amountCrypto": 0.00004353, + "pricePerUnit": 1899734, + "totalCost": 82.7, + "fee": 0.29044699, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T01:00:06" + }, + { + "id": "kdrw3ap5m682935gnw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T05:00:06", + "amountCrypto": 0.00004286, + "pricePerUnit": 1929406, + "totalCost": 82.69, + "fee": 0.29044316, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T05:00:06" + }, + { + "id": "sjz8dxtpjgt9gd7e4d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T09:00:06", + "amountCrypto": 0.00004299, + "pricePerUnit": 1923555, + "totalCost": 82.69, + "fee": 0.29044073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T09:00:06" + }, + { + "id": "4kt8h7vb395yj68w7k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T13:00:06", + "amountCrypto": 0.0000424, + "pricePerUnit": 1950644, + "totalCost": 82.71, + "fee": 0.29048866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T13:00:06" + }, + { + "id": "ihnun799aq46cwvqrj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T17:00:09", + "amountCrypto": 0.00004125, + "pricePerUnit": 2004974, + "totalCost": 82.71, + "fee": 0.29048119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T17:00:09" + }, + { + "id": "mbfm3xg5qwf898n629", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-11T21:00:05", + "amountCrypto": 0.00004042, + "pricePerUnit": 2046076, + "totalCost": 82.7, + "fee": 0.29047143, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-11T21:00:05" + }, + { + "id": "gj06yd8o9wxx9e0rjq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T01:00:05", + "amountCrypto": 0.00003959, + "pricePerUnit": 2088879, + "totalCost": 82.7, + "fee": 0.29045859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T01:00:05" + }, + { + "id": "mgr36tue3b9hk8mndk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T05:00:06", + "amountCrypto": 0.00003981, + "pricePerUnit": 2077443, + "totalCost": 82.7, + "fee": 0.29047358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T05:00:06" + }, + { + "id": "76v2u3tkva3x4j0ji1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T09:00:08", + "amountCrypto": 0.0000391, + "pricePerUnit": 2115257, + "totalCost": 82.71, + "fee": 0.29048602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T09:00:08" + }, + { + "id": "th3elrto4o8mkry30l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T13:00:05", + "amountCrypto": 0.00004009, + "pricePerUnit": 2062845, + "totalCost": 82.7, + "fee": 0.29046121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T13:00:05" + }, + { + "id": "hcvd42n81u1zgjafpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T17:00:08", + "amountCrypto": 0.00004078, + "pricePerUnit": 2027760, + "totalCost": 82.69, + "fee": 0.29043519, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T17:00:08" + }, + { + "id": "cay0atgu1sw2qty2p8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-12T21:00:05", + "amountCrypto": 0.00004045, + "pricePerUnit": 2044668, + "totalCost": 82.71, + "fee": 0.29048706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-12T21:00:05" + }, + { + "id": "8809pputnukbj1rbsm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T01:00:05", + "amountCrypto": 0.00004099, + "pricePerUnit": 2017723, + "totalCost": 82.71, + "fee": 0.29048582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T01:00:05" + }, + { + "id": "5s4fs2ofrxai6ox80e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T05:00:08", + "amountCrypto": 0.0000397, + "pricePerUnit": 2083262, + "totalCost": 82.71, + "fee": 0.29048241, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T05:00:08" + }, + { + "id": "mis34j2rn2wc85svgh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T09:00:05", + "amountCrypto": 0.00003956, + "pricePerUnit": 2090578, + "totalCost": 82.7, + "fee": 0.29047458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T09:00:05" + }, + { + "id": "ovtax9k26bxjxv5a1k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T13:00:05", + "amountCrypto": 0.00003951, + "pricePerUnit": 2093361, + "totalCost": 82.71, + "fee": 0.29049363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T13:00:05" + }, + { + "id": "01ttet4xpn12govsee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T17:00:07", + "amountCrypto": 0.00003737, + "pricePerUnit": 2213000, + "totalCost": 82.7, + "fee": 0.29046234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T17:00:07" + }, + { + "id": "r358s5idf64sp55b1u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-13T21:00:07", + "amountCrypto": 0.00003823, + "pricePerUnit": 2163064, + "totalCost": 82.69, + "fee": 0.29044183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-13T21:00:07" + }, + { + "id": "rfhuttvs62jwoa51nd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T01:00:05", + "amountCrypto": 0.00003817, + "pricePerUnit": 2166779, + "totalCost": 82.71, + "fee": 0.29048394, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T01:00:05" + }, + { + "id": "ckfnp1jh2edkqvfzma", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T05:00:05", + "amountCrypto": 0.0000383, + "pricePerUnit": 2159145, + "totalCost": 82.7, + "fee": 0.29044636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T05:00:05" + }, + { + "id": "j2xuybkuzhxe0dn7w2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T09:00:08", + "amountCrypto": 0.00003797, + "pricePerUnit": 2178054, + "totalCost": 82.7, + "fee": 0.29046552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T09:00:08" + }, + { + "id": "s2zab2zrl07eip8mm7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T13:00:05", + "amountCrypto": 0.00003758, + "pricePerUnit": 2200341, + "totalCost": 82.69, + "fee": 0.2904238, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T13:00:05" + }, + { + "id": "ldb0kcer8ershxcfyk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T17:00:05", + "amountCrypto": 0.00003914, + "pricePerUnit": 2113035, + "totalCost": 82.7, + "fee": 0.2904778, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T17:00:05" + }, + { + "id": "70luvb18eagrox4e4i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-14T21:00:07", + "amountCrypto": 0.00003849, + "pricePerUnit": 2148710, + "totalCost": 82.7, + "fee": 0.29047655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-14T21:00:07" + }, + { + "id": "prfwh05rul883akbeu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T01:00:06", + "amountCrypto": 0.00003936, + "pricePerUnit": 2100963, + "totalCost": 82.69, + "fee": 0.29044167, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T01:00:06" + }, + { + "id": "h2b5g20poglkn5in9b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T05:00:06", + "amountCrypto": 0.00003897, + "pricePerUnit": 2122295, + "totalCost": 82.71, + "fee": 0.29048359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T05:00:06" + }, + { + "id": "o010haf7rrgj9az3po", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T09:00:06", + "amountCrypto": 0.00003928, + "pricePerUnit": 2105239, + "totalCost": 82.69, + "fee": 0.29044122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T09:00:06" + }, + { + "id": "xzw1yfaydxicw4mpvc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T13:00:08", + "amountCrypto": 0.0000385, + "pricePerUnit": 2147918, + "totalCost": 82.69, + "fee": 0.29044493, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T13:00:08" + }, + { + "id": "vy560yzg5it3hs8qc3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T17:00:06", + "amountCrypto": 0.00003887, + "pricePerUnit": 2127357, + "totalCost": 82.69, + "fee": 0.2904292, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T17:00:06" + }, + { + "id": "spuc2ul43kc5lmzmu8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-15T21:00:05", + "amountCrypto": 0.00003811, + "pricePerUnit": 2170273, + "totalCost": 82.71, + "fee": 0.29049509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-15T21:00:05" + }, + { + "id": "3tivqmhvsraqqfj3ej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T01:00:07", + "amountCrypto": 0.00003782, + "pricePerUnit": 2186595, + "totalCost": 82.7, + "fee": 0.2904526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T01:00:07" + }, + { + "id": "cvspah4nzf9f3ipcw7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T05:00:06", + "amountCrypto": 0.00003773, + "pricePerUnit": 2191961, + "totalCost": 82.7, + "fee": 0.29047255, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T05:00:06" + }, + { + "id": "z9gqb7ou896582kysc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T09:00:05", + "amountCrypto": 0.00003776, + "pricePerUnit": 2190052, + "totalCost": 82.7, + "fee": 0.29045037, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T09:00:05" + }, + { + "id": "roiut4gtot384281p0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T13:00:05", + "amountCrypto": 0.0000378, + "pricePerUnit": 2187980, + "totalCost": 82.71, + "fee": 0.29048294, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T13:00:05" + }, + { + "id": "1pjq116ytjuikkqur0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T17:00:07", + "amountCrypto": 0.00003811, + "pricePerUnit": 2170277, + "totalCost": 82.71, + "fee": 0.29049563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T17:00:07" + }, + { + "id": "ulzex9t738v1u0l9lg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-16T21:00:05", + "amountCrypto": 0.00003793, + "pricePerUnit": 2180257, + "totalCost": 82.7, + "fee": 0.29045308, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-16T21:00:05" + }, + { + "id": "6d4s4rrslx5rhvcevr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T01:00:05", + "amountCrypto": 0.00003805, + "pricePerUnit": 2173314, + "totalCost": 82.69, + "fee": 0.29044408, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T01:00:05" + }, + { + "id": "bix1zi5z8oyillecy4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T05:00:05", + "amountCrypto": 0.0000382, + "pricePerUnit": 2164795, + "totalCost": 82.7, + "fee": 0.29044607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T05:00:05" + }, + { + "id": "n74nl8xpxg0whoy2ae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T09:00:07", + "amountCrypto": 0.00003807, + "pricePerUnit": 2172434, + "totalCost": 82.7, + "fee": 0.29047906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T09:00:07" + }, + { + "id": "atwix7szjp0qebfo32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T13:00:07", + "amountCrypto": 0.00003798, + "pricePerUnit": 2177298, + "totalCost": 82.69, + "fee": 0.29044119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T13:00:07" + }, + { + "id": "lrqfja2lxh68tmdzm5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T17:00:06", + "amountCrypto": 0.00003818, + "pricePerUnit": 2165884, + "totalCost": 82.69, + "fee": 0.29044013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T17:00:06" + }, + { + "id": "ndugyazb2e04w71mm4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-17T21:00:05", + "amountCrypto": 0.00003828, + "pricePerUnit": 2160464, + "totalCost": 82.7, + "fee": 0.29047207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-17T21:00:05" + }, + { + "id": "x47440g9nb899bx944", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T01:00:07", + "amountCrypto": 0.00003838, + "pricePerUnit": 2154570, + "totalCost": 82.69, + "fee": 0.29043641, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T01:00:07" + }, + { + "id": "9tpb6xoryf85zcic16", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T05:00:05", + "amountCrypto": 0.00003806, + "pricePerUnit": 2172937, + "totalCost": 82.7, + "fee": 0.29047003, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T05:00:05" + }, + { + "id": "59ivdqhwpcyezqgx5w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T09:00:05", + "amountCrypto": 0.00003755, + "pricePerUnit": 2202155, + "totalCost": 82.69, + "fee": 0.29043113, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T09:00:05" + }, + { + "id": "ded2x3mcs89iwio3dm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T13:00:05", + "amountCrypto": 0.00003815, + "pricePerUnit": 2167698, + "totalCost": 82.7, + "fee": 0.29045491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T13:00:05" + }, + { + "id": "lkwt67woftd017p84p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T17:00:06", + "amountCrypto": 0.0000373, + "pricePerUnit": 2217060, + "totalCost": 82.7, + "fee": 0.29045016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T17:00:06" + }, + { + "id": "wdh7lsfkmll09onzz5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-18T21:00:05", + "amountCrypto": 0.00003809, + "pricePerUnit": 2171167, + "totalCost": 82.7, + "fee": 0.29046214, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-18T21:00:05" + }, + { + "id": "2lult80xhac2f0f318", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T01:00:04", + "amountCrypto": 0.00003818, + "pricePerUnit": 2166232, + "totalCost": 82.71, + "fee": 0.29048678, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T01:00:04" + }, + { + "id": "ink7pz6lcnkhz9o13x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T05:00:06", + "amountCrypto": 0.00003783, + "pricePerUnit": 2186265, + "totalCost": 82.71, + "fee": 0.29048558, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T05:00:06" + }, + { + "id": "zwohwu9i3xi3q3q9y2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T09:00:04", + "amountCrypto": 0.00003765, + "pricePerUnit": 2196324, + "totalCost": 82.69, + "fee": 0.29043358, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T09:00:04" + }, + { + "id": "6zcotmyogf2y0f8rxm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T13:00:12", + "amountCrypto": 0.0000375, + "pricePerUnit": 2205190, + "totalCost": 82.69, + "fee": 0.29044421, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T13:00:12" + }, + { + "id": "6salroqrxb22q1ygnh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T17:00:06", + "amountCrypto": 0.00003743, + "pricePerUnit": 2209360, + "totalCost": 82.7, + "fee": 0.2904503, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T17:00:06" + }, + { + "id": "yem2mk5hm6wnnv9qx1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-19T21:00:07", + "amountCrypto": 0.00003712, + "pricePerUnit": 2227738, + "totalCost": 82.69, + "fee": 0.29044073, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-19T21:00:07" + }, + { + "id": "hum1mog83cxy8jkm15", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T01:00:04", + "amountCrypto": 0.00003753, + "pricePerUnit": 2203598, + "totalCost": 82.7, + "fee": 0.29046672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T01:00:04" + }, + { + "id": "tlordgr4ex95tf9209", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T05:00:04", + "amountCrypto": 0.00003752, + "pricePerUnit": 2203909, + "totalCost": 82.69, + "fee": 0.29043028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T05:00:04" + }, + { + "id": "r8tvyuf79ju4xvcifu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T09:00:04", + "amountCrypto": 0.00003718, + "pricePerUnit": 2224523, + "totalCost": 82.71, + "fee": 0.29049037, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T09:00:04" + }, + { + "id": "gd2ceu5e8lx1orhana", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T13:00:04", + "amountCrypto": 0.00003678, + "pricePerUnit": 2248577, + "totalCost": 82.7, + "fee": 0.29047241, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T13:00:04" + }, + { + "id": "1fsmht7v9ogdxz70pa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T17:00:04", + "amountCrypto": 0.00003621, + "pricePerUnit": 2283893, + "totalCost": 82.7, + "fee": 0.29046221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T17:00:04" + }, + { + "id": "2rovaue96xmkj9skdj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-20T21:00:03", + "amountCrypto": 0.0000366, + "pricePerUnit": 2259415, + "totalCost": 82.69, + "fee": 0.29044405, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-20T21:00:03" + }, + { + "id": "xlbf8h66ch5raaxd2d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T01:00:04", + "amountCrypto": 0.00003658, + "pricePerUnit": 2260892, + "totalCost": 82.7, + "fee": 0.29047506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T01:00:04" + }, + { + "id": "rl8tnejf679q5jonep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T05:00:07", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305731, + "totalCost": 82.71, + "fee": 0.29048615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T05:00:07" + }, + { + "id": "56rgao2vpwfbb70zto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T09:00:04", + "amountCrypto": 0.00003546, + "pricePerUnit": 2331850, + "totalCost": 82.69, + "fee": 0.29041881, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T09:00:04" + }, + { + "id": "elwwmcqc5lmbbxlf6j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T13:00:04", + "amountCrypto": 0.000035, + "pricePerUnit": 2362881, + "totalCost": 82.7, + "fee": 0.290466, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T13:00:04" + }, + { + "id": "6lpvnltc2i7b627bxa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T17:00:04", + "amountCrypto": 0.0000354, + "pricePerUnit": 2336047, + "totalCost": 82.7, + "fee": 0.29044929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T17:00:04" + }, + { + "id": "sdw4xs70mwrv3ot0bp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-21T21:00:04", + "amountCrypto": 0.00003493, + "pricePerUnit": 2367792, + "totalCost": 82.71, + "fee": 0.29048759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-21T21:00:04" + }, + { + "id": "y0bgwpct94wwrgbi2r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T01:00:03", + "amountCrypto": 0.00003474, + "pricePerUnit": 2380209, + "totalCost": 82.69, + "fee": 0.29042255, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T01:00:03" + }, + { + "id": "5bbsmf3udzgmy53bdf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T05:00:05", + "amountCrypto": 0.00003458, + "pricePerUnit": 2391791, + "totalCost": 82.71, + "fee": 0.29049162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T05:00:05" + }, + { + "id": "h22ks5j5miiio1ajxf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T09:00:04", + "amountCrypto": 0.00003459, + "pricePerUnit": 2390814, + "totalCost": 82.7, + "fee": 0.290457, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T09:00:04" + }, + { + "id": "sy9jo0v94jid3z2vjo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T13:00:04", + "amountCrypto": 0.00003437, + "pricePerUnit": 2405979, + "totalCost": 82.69, + "fee": 0.29044025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T13:00:04" + }, + { + "id": "whbvtuthaxokep5l45", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T17:00:04", + "amountCrypto": 0.00003434, + "pricePerUnit": 2407914, + "totalCost": 82.69, + "fee": 0.29042009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T17:00:04" + }, + { + "id": "j5uj8cyaue5yz5ykiw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-22T21:00:03", + "amountCrypto": 0.00003418, + "pricePerUnit": 2419700, + "totalCost": 82.71, + "fee": 0.29048187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-22T21:00:03" + }, + { + "id": "7ayeuxfzvnwfiwyjnj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T01:00:03", + "amountCrypto": 0.00003433, + "pricePerUnit": 2408670, + "totalCost": 82.69, + "fee": 0.29042666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T01:00:03" + }, + { + "id": "dswjmdquixv08miyo9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T05:00:03", + "amountCrypto": 0.00003438, + "pricePerUnit": 2405556, + "totalCost": 82.7, + "fee": 0.29047367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T05:00:03" + }, + { + "id": "o61hccv61loyi2m09u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T09:00:03", + "amountCrypto": 0.00003447, + "pricePerUnit": 2399357, + "totalCost": 82.71, + "fee": 0.29048353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T09:00:03" + }, + { + "id": "r6q2bowse0s58b6pvh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T13:00:03", + "amountCrypto": 0.0000345, + "pricePerUnit": 2396883, + "totalCost": 82.69, + "fee": 0.29043666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T13:00:03" + }, + { + "id": "knrmb78yi8453kk05a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T17:00:03", + "amountCrypto": 0.00003448, + "pricePerUnit": 2398657, + "totalCost": 82.71, + "fee": 0.29048306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T17:00:03" + }, + { + "id": "4ietsmrz0cqtp1r9ne", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-23T21:00:03", + "amountCrypto": 0.00003479, + "pricePerUnit": 2377092, + "totalCost": 82.7, + "fee": 0.29045971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-23T21:00:03" + }, + { + "id": "7ebcw3kven6vq9lpbq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T01:00:05", + "amountCrypto": 0.00003482, + "pricePerUnit": 2374737, + "totalCost": 82.69, + "fee": 0.29042218, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T01:00:05" + }, + { + "id": "9fv1sq0dseee9g9xqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T05:00:04", + "amountCrypto": 0.00003461, + "pricePerUnit": 2389704, + "totalCost": 82.71, + "fee": 0.29048992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T05:00:04" + }, + { + "id": "9oxifxdrhs8pc0bjto", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T09:00:03", + "amountCrypto": 0.00003452, + "pricePerUnit": 2395944, + "totalCost": 82.71, + "fee": 0.29049114, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T09:00:03" + }, + { + "id": "hry5l3shn0qnxa6ivi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T13:00:04", + "amountCrypto": 0.00003489, + "pricePerUnit": 2369943, + "totalCost": 82.69, + "fee": 0.29041845, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T13:00:04" + }, + { + "id": "frehumjrc1vsreptpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T17:00:06", + "amountCrypto": 0.00003544, + "pricePerUnit": 2333580, + "totalCost": 82.7, + "fee": 0.29047038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T17:00:06" + }, + { + "id": "ucef2k1jsu7ntradjd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-24T21:00:06", + "amountCrypto": 0.00003535, + "pricePerUnit": 2339329, + "totalCost": 82.7, + "fee": 0.29044655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-24T21:00:06" + }, + { + "id": "uni1xw2ut0sxhfpcqs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T01:00:03", + "amountCrypto": 0.00003484, + "pricePerUnit": 2373540, + "totalCost": 82.69, + "fee": 0.29044253, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T01:00:03" + }, + { + "id": "sjvdz55bmejfreqc3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T05:00:04", + "amountCrypto": 0.00003491, + "pricePerUnit": 2368730, + "totalCost": 82.69, + "fee": 0.2904362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T05:00:04" + }, + { + "id": "nobw51s07md15452md", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T09:00:04", + "amountCrypto": 0.00003476, + "pricePerUnit": 2378991, + "totalCost": 82.69, + "fee": 0.29044104, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T09:00:04" + }, + { + "id": "4clisqbz2wxrortvhg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T13:00:04", + "amountCrypto": 0.00003471, + "pricePerUnit": 2382887, + "totalCost": 82.71, + "fee": 0.29049819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T13:00:04" + }, + { + "id": "xavp2v3iq8uerzqymc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T17:00:05", + "amountCrypto": 0.00003555, + "pricePerUnit": 2326529, + "totalCost": 82.71, + "fee": 0.2904915, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T17:00:05" + }, + { + "id": "ve8sfxa1qhigxtrjeg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-25T21:00:03", + "amountCrypto": 0.00003612, + "pricePerUnit": 2289611, + "totalCost": 82.7, + "fee": 0.29046569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-25T21:00:03" + }, + { + "id": "phf56ljhuhzhha00pc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T01:00:04", + "amountCrypto": 0.00003669, + "pricePerUnit": 2254275, + "totalCost": 82.71, + "fee": 0.29049592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T01:00:04" + }, + { + "id": "zlf6aw37sd3roh5ffl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T05:00:04", + "amountCrypto": 0.00003606, + "pricePerUnit": 2293275, + "totalCost": 82.7, + "fee": 0.29044726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T05:00:04" + }, + { + "id": "cy90nockoyzd08l0te", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T09:00:04", + "amountCrypto": 0.00003638, + "pricePerUnit": 2272981, + "totalCost": 82.69, + "fee": 0.29043158, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T09:00:04" + }, + { + "id": "qds1bvkzqjgh17jecn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T13:00:04", + "amountCrypto": 0.00003715, + "pricePerUnit": 2226031, + "totalCost": 82.7, + "fee": 0.2904527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T13:00:04" + }, + { + "id": "l351e8lfsnkpnjlzrr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T17:00:04", + "amountCrypto": 0.00003679, + "pricePerUnit": 2247753, + "totalCost": 82.69, + "fee": 0.29044491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T17:00:04" + }, + { + "id": "2fojnznw6qe3vbw8f5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-26T21:00:03", + "amountCrypto": 0.00003724, + "pricePerUnit": 2220906, + "totalCost": 82.71, + "fee": 0.29048606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-26T21:00:03" + }, + { + "id": "ak7qq41gniljuvm0kn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T01:00:03", + "amountCrypto": 0.00003718, + "pricePerUnit": 2224078, + "totalCost": 82.69, + "fee": 0.29043224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T01:00:03" + }, + { + "id": "ot2n8j6dnyyt8mhk5w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T05:00:04", + "amountCrypto": 0.00003689, + "pricePerUnit": 2241892, + "totalCost": 82.7, + "fee": 0.29047504, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T05:00:04" + }, + { + "id": "evfxazfd3q5an69wck", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T09:00:07", + "amountCrypto": 0.00003664, + "pricePerUnit": 2257231, + "totalCost": 82.7, + "fee": 0.29048049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T09:00:07" + }, + { + "id": "vnywpiqszgmchwdbin", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T13:00:04", + "amountCrypto": 0.00003669, + "pricePerUnit": 2254276, + "totalCost": 82.71, + "fee": 0.29049605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T13:00:04" + }, + { + "id": "hnsz5t94cfznsct9we", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T17:00:07", + "amountCrypto": 0.00003601, + "pricePerUnit": 2296827, + "totalCost": 82.71, + "fee": 0.29049375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T17:00:07" + }, + { + "id": "88jmw8rubp5t9nxm75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-27T21:00:03", + "amountCrypto": 0.00003563, + "pricePerUnit": 2320767, + "totalCost": 82.69, + "fee": 0.29042423, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-27T21:00:03" + }, + { + "id": "pxb69jdpiwas0m4z8k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T01:00:04", + "amountCrypto": 0.00003586, + "pricePerUnit": 2306224, + "totalCost": 82.7, + "fee": 0.29046729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T01:00:04" + }, + { + "id": "3easn5ed4m7p4e8m21", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T05:00:07", + "amountCrypto": 0.000036, + "pricePerUnit": 2297108, + "totalCost": 82.7, + "fee": 0.29044857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T05:00:07" + }, + { + "id": "8dwujty0u7vkfxlolp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T09:00:04", + "amountCrypto": 0.00003603, + "pricePerUnit": 2295349, + "totalCost": 82.7, + "fee": 0.2904681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T09:00:04" + }, + { + "id": "nuxl9jank78e6b440c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T13:00:04", + "amountCrypto": 0.00003599, + "pricePerUnit": 2297980, + "totalCost": 82.7, + "fee": 0.29047814, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T13:00:04" + }, + { + "id": "luw6p6tqha1eamk852", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T17:00:03", + "amountCrypto": 0.00003618, + "pricePerUnit": 2285682, + "totalCost": 82.7, + "fee": 0.29044895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T17:00:03" + }, + { + "id": "pd2u47e0v39ozz6pzk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-28T21:00:03", + "amountCrypto": 0.00003614, + "pricePerUnit": 2288035, + "totalCost": 82.69, + "fee": 0.29042649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-28T21:00:03" + }, + { + "id": "pq1vkz0tovit6q6vnj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T01:00:06", + "amountCrypto": 0.00003595, + "pricePerUnit": 2300447, + "totalCost": 82.7, + "fee": 0.29046681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T01:00:06" + }, + { + "id": "pj6a45renu71b7b5ho", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T05:00:04", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320271, + "totalCost": 82.69, + "fee": 0.29044362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T05:00:04" + }, + { + "id": "0ur1sv3zu1a5cw47nm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T09:00:05", + "amountCrypto": 0.00003602, + "pricePerUnit": 2295927, + "totalCost": 82.7, + "fee": 0.29046053, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T09:00:05" + }, + { + "id": "nggh2qcej3eamlidep", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T13:00:03", + "amountCrypto": 0.00003548, + "pricePerUnit": 2330581, + "totalCost": 82.69, + "fee": 0.29042445, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T13:00:03" + }, + { + "id": "3p8t9k40xt9zpt1o7d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T17:00:04", + "amountCrypto": 0.00003509, + "pricePerUnit": 2356650, + "totalCost": 82.69, + "fee": 0.29044504, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T17:00:04" + }, + { + "id": "yohj5pgbw5ozmiasjz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-29T21:00:07", + "amountCrypto": 0.00003546, + "pricePerUnit": 2332052, + "totalCost": 82.69, + "fee": 0.29044403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-29T21:00:07" + }, + { + "id": "o2qjam3fr0eykg7lsr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T01:00:03", + "amountCrypto": 0.00003543, + "pricePerUnit": 2333923, + "totalCost": 82.69, + "fee": 0.29043109, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T01:00:03" + }, + { + "id": "5w7stz7ae6qwqmmfca", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T05:00:04", + "amountCrypto": 0.00003577, + "pricePerUnit": 2311799, + "totalCost": 82.69, + "fee": 0.29043867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T05:00:04" + }, + { + "id": "lqgaamma0vj4c2nqgp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T09:00:04", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320472, + "totalCost": 82.7, + "fee": 0.29046872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T09:00:04" + }, + { + "id": "lq7qem6gweol18nl7b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T13:00:03", + "amountCrypto": 0.00003586, + "pricePerUnit": 2306378, + "totalCost": 82.71, + "fee": 0.2904866, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T13:00:03" + }, + { + "id": "qyahi0xm15ywjatcwz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T17:00:04", + "amountCrypto": 0.00003574, + "pricePerUnit": 2313596, + "totalCost": 82.69, + "fee": 0.29042071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T17:00:04" + }, + { + "id": "1i5tu3fkwoczomaoyh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-11-30T21:00:04", + "amountCrypto": 0.00003559, + "pricePerUnit": 2323618, + "totalCost": 82.7, + "fee": 0.29045457, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-11-30T21:00:04" + }, + { + "id": "50wjrdey4ffmkp5x5i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-01T01:00:04", + "amountCrypto": 0.00003578, + "pricePerUnit": 2311460, + "totalCost": 82.7, + "fee": 0.29047728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-01T01:00:04" + }, + { + "id": "iv61vsvwuci8af1z0o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-01T05:00:04", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308564, + "totalCost": 82.69, + "fee": 0.29043765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-01T05:00:04" + }, + { + "id": "qs8ud1ztrxqm04lq8g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-01T09:00:07", + "amountCrypto": 0.00003575, + "pricePerUnit": 2313458, + "totalCost": 82.71, + "fee": 0.2904846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-01T09:00:07" + }, + { + "id": "jixqzee81uv1nbjdmr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-01T13:00:04", + "amountCrypto": 0.00003558, + "pricePerUnit": 2324618, + "totalCost": 82.71, + "fee": 0.29049786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-01T13:00:04" + }, + { + "id": "vt4onfap264lv4h660", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-01T17:00:04", + "amountCrypto": 0.00003555, + "pricePerUnit": 2326404, + "totalCost": 82.7, + "fee": 0.29047598, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-01T17:00:04" + }, + { + "id": "vxutd4lure5qj8l4qj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-01T21:00:03", + "amountCrypto": 0.00003559, + "pricePerUnit": 2323528, + "totalCost": 82.69, + "fee": 0.29044329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-01T21:00:03" + }, + { + "id": "lqzwul8j28rlkeukf6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T01:00:04", + "amountCrypto": 0.00003538, + "pricePerUnit": 2337433, + "totalCost": 82.7, + "fee": 0.29045735, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T01:00:04" + }, + { + "id": "v2v1mn7xqwfi5sn02m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T05:00:04", + "amountCrypto": 0.00003558, + "pricePerUnit": 2324119, + "totalCost": 82.69, + "fee": 0.29043547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T05:00:04" + }, + { + "id": "nsea67uq4gn8fyr4m6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T09:00:04", + "amountCrypto": 0.00003573, + "pricePerUnit": 2314464, + "totalCost": 82.7, + "fee": 0.29044828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T09:00:04" + }, + { + "id": "pdqns4xrg2txi3i8as", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T13:00:05", + "amountCrypto": 0.00003613, + "pricePerUnit": 2289013, + "totalCost": 82.7, + "fee": 0.29047029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T13:00:05" + }, + { + "id": "jrs0x6hz48hljqr38c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T17:00:03", + "amountCrypto": 0.00003528, + "pricePerUnit": 2344014, + "totalCost": 82.7, + "fee": 0.2904519, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T17:00:03" + }, + { + "id": "qckxyc6nzrgoa5vmrh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-02T21:00:04", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305730, + "totalCost": 82.71, + "fee": 0.29048602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-02T21:00:04" + }, + { + "id": "3sscenjlak5azj7bw0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T01:00:06", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308593, + "totalCost": 82.69, + "fee": 0.29044131, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T01:00:06" + }, + { + "id": "1y1shbv7t21ms0kz0r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T05:00:04", + "amountCrypto": 0.00003568, + "pricePerUnit": 2317737, + "totalCost": 82.7, + "fee": 0.29045201, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T05:00:04" + }, + { + "id": "86g6d599rpfgy6p14w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T09:00:04", + "amountCrypto": 0.0000359, + "pricePerUnit": 2303675, + "totalCost": 82.7, + "fee": 0.29046984, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T09:00:04" + }, + { + "id": "s9jo4mao80upmkuxlz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T13:00:08", + "amountCrypto": 0.00003623, + "pricePerUnit": 2282641, + "totalCost": 82.7, + "fee": 0.29046331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T13:00:08" + }, + { + "id": "y9rf2i8kc7z9sz9skp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T17:00:04", + "amountCrypto": 0.00003609, + "pricePerUnit": 2291729, + "totalCost": 82.71, + "fee": 0.29049295, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T17:00:04" + }, + { + "id": "ocg53l057hqfrbgido", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-03T21:00:04", + "amountCrypto": 0.00003609, + "pricePerUnit": 2291689, + "totalCost": 82.71, + "fee": 0.29048786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-03T21:00:04" + }, + { + "id": "9ia2k8o7vd6j76yixo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T01:00:04", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301704, + "totalCost": 82.7, + "fee": 0.29046386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T01:00:04" + }, + { + "id": "52c8x14gfgjtstx52i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T05:00:04", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299758, + "totalCost": 82.7, + "fee": 0.29046062, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T05:00:04" + }, + { + "id": "tocbtmtu5vfjsypv4t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T09:00:04", + "amountCrypto": 0.00003567, + "pricePerUnit": 2318168, + "totalCost": 82.69, + "fee": 0.29042461, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T09:00:04" + }, + { + "id": "j2ckjj1wmta4hvr2wa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T13:00:04", + "amountCrypto": 0.00003572, + "pricePerUnit": 2315333, + "totalCost": 82.7, + "fee": 0.29047603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T13:00:04" + }, + { + "id": "xg7w5jz8aqwr3eiz2y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T17:00:07", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299759, + "totalCost": 82.7, + "fee": 0.29046075, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T17:00:07" + }, + { + "id": "hc6r3kpjrvbrn6yqrx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-04T21:00:04", + "amountCrypto": 0.00003552, + "pricePerUnit": 2328253, + "totalCost": 82.7, + "fee": 0.29046147, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-04T21:00:04" + }, + { + "id": "y9vbenj532hmckg4a2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T01:00:04", + "amountCrypto": 0.00003504, + "pricePerUnit": 2359889, + "totalCost": 82.69, + "fee": 0.29042969, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T01:00:04" + }, + { + "id": "08oagau0oxq27w1h5e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T05:00:04", + "amountCrypto": 0.00003378, + "pricePerUnit": 2448124, + "totalCost": 82.7, + "fee": 0.29045472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T05:00:04" + }, + { + "id": "1ukw77mha1005zdkg5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T09:00:05", + "amountCrypto": 0.00003421, + "pricePerUnit": 2417168, + "totalCost": 82.69, + "fee": 0.29043256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T09:00:05" + }, + { + "id": "ug08er12xuk4moa2wq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T13:00:08", + "amountCrypto": 0.00003373, + "pricePerUnit": 2452082, + "totalCost": 82.71, + "fee": 0.29049368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T13:00:08" + }, + { + "id": "6hatc32uagjrci9sc3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T17:00:04", + "amountCrypto": 0.00003428, + "pricePerUnit": 2412510, + "totalCost": 82.7, + "fee": 0.29046607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T17:00:04" + }, + { + "id": "8ud8n4ol2kri3cimmj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-05T21:00:04", + "amountCrypto": 0.00003515, + "pricePerUnit": 2352940, + "totalCost": 82.71, + "fee": 0.29048362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-05T21:00:04" + }, + { + "id": "nb748aogc2fkb5z65y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T01:00:04", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308588, + "totalCost": 82.69, + "fee": 0.29044068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T01:00:04" + }, + { + "id": "6o9ff7encw9t3pim53", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T05:00:04", + "amountCrypto": 0.00003555, + "pricePerUnit": 2326571, + "totalCost": 82.71, + "fee": 0.29049676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T05:00:04" + }, + { + "id": "3pb04g2br6dg5p8bdf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T09:00:04", + "amountCrypto": 0.00003537, + "pricePerUnit": 2337784, + "totalCost": 82.69, + "fee": 0.29041884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T09:00:04" + }, + { + "id": "pxcur848xo0lukd5li", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T13:00:04", + "amountCrypto": 0.00003539, + "pricePerUnit": 2336619, + "totalCost": 82.69, + "fee": 0.29043826, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T13:00:04" + }, + { + "id": "82jg7yglgzrtnerb41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T17:00:04", + "amountCrypto": 0.00003495, + "pricePerUnit": 2366523, + "totalCost": 82.71, + "fee": 0.29049813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T17:00:04" + }, + { + "id": "6koivhlbepb73syiyq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-06T21:00:04", + "amountCrypto": 0.00003414, + "pricePerUnit": 2422511, + "totalCost": 82.7, + "fee": 0.29047899, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-06T21:00:04" + }, + { + "id": "bv7byggjrp2vtht9oi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T01:00:05", + "amountCrypto": 0.00003477, + "pricePerUnit": 2378653, + "totalCost": 82.71, + "fee": 0.29048334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T01:00:05" + }, + { + "id": "sfhhsajqm0v643w6hm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T05:00:03", + "amountCrypto": 0.00003487, + "pricePerUnit": 2371533, + "totalCost": 82.7, + "fee": 0.29044682, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T05:00:03" + }, + { + "id": "1jl1rp2ft24w0fvev2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T09:00:04", + "amountCrypto": 0.00003488, + "pricePerUnit": 2371080, + "totalCost": 82.7, + "fee": 0.2904746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T09:00:04" + }, + { + "id": "dhbuukpae0nmqw2xva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T13:00:04", + "amountCrypto": 0.00003477, + "pricePerUnit": 2378752, + "totalCost": 82.71, + "fee": 0.29049546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T13:00:04" + }, + { + "id": "576t7po8rtv032fe99", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T17:00:03", + "amountCrypto": 0.00003484, + "pricePerUnit": 2373828, + "totalCost": 82.7, + "fee": 0.29047773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T17:00:03" + }, + { + "id": "rn93qu89genrw0te5m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-07T21:00:04", + "amountCrypto": 0.00003468, + "pricePerUnit": 2384840, + "totalCost": 82.71, + "fee": 0.29048497, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-07T21:00:04" + }, + { + "id": "dh6set63f39u24dnew", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T01:00:04", + "amountCrypto": 0.00003475, + "pricePerUnit": 2379744, + "totalCost": 82.7, + "fee": 0.29044938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T01:00:04" + }, + { + "id": "ae2z23eiwk9337n8mo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T05:00:04", + "amountCrypto": 0.00003473, + "pricePerUnit": 2380935, + "totalCost": 82.69, + "fee": 0.29042748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T05:00:04" + }, + { + "id": "ab8kxdp7omiq9qzxdd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T09:00:03", + "amountCrypto": 0.00003481, + "pricePerUnit": 2375935, + "totalCost": 82.71, + "fee": 0.29048524, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T09:00:03" + }, + { + "id": "3x48562xouuj9uy9vh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T13:00:04", + "amountCrypto": 0.00003478, + "pricePerUnit": 2377966, + "totalCost": 82.71, + "fee": 0.290483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T13:00:04" + }, + { + "id": "fr1v18kbrpl44crqdp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T17:00:06", + "amountCrypto": 0.00003472, + "pricePerUnit": 2382053, + "totalCost": 82.7, + "fee": 0.29048017, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T17:00:06" + }, + { + "id": "84zqekz0sex8h041k3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-08T21:00:04", + "amountCrypto": 0.00003481, + "pricePerUnit": 2375704, + "totalCost": 82.7, + "fee": 0.29045693, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-08T21:00:04" + }, + { + "id": "bn9isfuzdgd3cx7yul", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T01:00:04", + "amountCrypto": 0.00003434, + "pricePerUnit": 2407984, + "totalCost": 82.69, + "fee": 0.29042856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T01:00:04" + }, + { + "id": "cwdluxj6k5bwmk6pe1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T05:00:04", + "amountCrypto": 0.00003496, + "pricePerUnit": 2365423, + "totalCost": 82.7, + "fee": 0.29044621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T05:00:04" + }, + { + "id": "hi7nl48942li23n1kj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T09:00:08", + "amountCrypto": 0.00003481, + "pricePerUnit": 2375611, + "totalCost": 82.7, + "fee": 0.29044553, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T09:00:08" + }, + { + "id": "67gru1weltobrku5ru", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T13:00:07", + "amountCrypto": 0.00003539, + "pricePerUnit": 2336808, + "totalCost": 82.7, + "fee": 0.29046182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T13:00:07" + }, + { + "id": "nemet9qz8tycedya6a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T17:00:03", + "amountCrypto": 0.00003554, + "pricePerUnit": 2326937, + "totalCost": 82.7, + "fee": 0.29046072, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T17:00:03" + }, + { + "id": "pjd9bk23qduvpspc01", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-09T21:00:04", + "amountCrypto": 0.0000357, + "pricePerUnit": 2316463, + "totalCost": 82.7, + "fee": 0.29045505, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-09T21:00:04" + }, + { + "id": "7kz467bpevx5i63lpj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T01:00:03", + "amountCrypto": 0.00003557, + "pricePerUnit": 2324938, + "totalCost": 82.7, + "fee": 0.29045617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T01:00:03" + }, + { + "id": "pujy82dqoltqqmitwq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T05:00:06", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308566, + "totalCost": 82.69, + "fee": 0.29043791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T05:00:06" + }, + { + "id": "5iaydjjrmixaldca69", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T09:00:03", + "amountCrypto": 0.00003574, + "pricePerUnit": 2314169, + "totalCost": 82.71, + "fee": 0.29049257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T09:00:03" + }, + { + "id": "ps9x6p6g5akc4iia4c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T13:00:05", + "amountCrypto": 0.00003532, + "pricePerUnit": 2341462, + "totalCost": 82.7, + "fee": 0.29046458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T13:00:05" + }, + { + "id": "0poo91o9o51xow9fx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T17:00:08", + "amountCrypto": 0.00003599, + "pricePerUnit": 2297928, + "totalCost": 82.7, + "fee": 0.29047155, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T17:00:08" + }, + { + "id": "2010u54vj29ewy0qii", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-10T21:00:04", + "amountCrypto": 0.00003608, + "pricePerUnit": 2292037, + "totalCost": 82.7, + "fee": 0.29045146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-10T21:00:04" + }, + { + "id": "4r7e8ltsr08tqezm4k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T01:00:05", + "amountCrypto": 0.00003578, + "pricePerUnit": 2311137, + "totalCost": 82.69, + "fee": 0.29043672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T01:00:05" + }, + { + "id": "f18yhzrimqmwvy4i6n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T05:00:04", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325372, + "totalCost": 82.69, + "fee": 0.29042872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T05:00:04" + }, + { + "id": "0vibqvwafiv25vbazw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T09:00:04", + "amountCrypto": 0.0000354, + "pricePerUnit": 2335805, + "totalCost": 82.69, + "fee": 0.29041912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T09:00:04" + }, + { + "id": "o0hixhzpg1p4txj3sy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T13:00:04", + "amountCrypto": 0.00003509, + "pricePerUnit": 2356749, + "totalCost": 82.7, + "fee": 0.29045715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T13:00:04" + }, + { + "id": "tagm3wnjsplc85op8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T17:00:04", + "amountCrypto": 0.00003436, + "pricePerUnit": 2406928, + "totalCost": 82.7, + "fee": 0.29047031, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T17:00:04" + }, + { + "id": "8b0836bbckckh78r3r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-11T21:00:04", + "amountCrypto": 0.00003419, + "pricePerUnit": 2418742, + "totalCost": 82.7, + "fee": 0.29045177, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-11T21:00:04" + }, + { + "id": "b11hko7h0wltfaxfxd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T01:00:06", + "amountCrypto": 0.00003419, + "pricePerUnit": 2418807, + "totalCost": 82.7, + "fee": 0.2904596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T01:00:06" + }, + { + "id": "7shjz48ciol8l907fh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T05:00:04", + "amountCrypto": 0.00003427, + "pricePerUnit": 2413353, + "totalCost": 82.71, + "fee": 0.29048282, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T05:00:04" + }, + { + "id": "r9em5fi289u6fv8d32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T09:00:04", + "amountCrypto": 0.00003433, + "pricePerUnit": 2408664, + "totalCost": 82.69, + "fee": 0.29042594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6312", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T09:00:04" + }, + { + "id": "xiulzxq3gfan3e2uy3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T13:00:04", + "amountCrypto": 0.00003449, + "pricePerUnit": 2397665, + "totalCost": 82.7, + "fee": 0.2904472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6313", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T13:00:04" + }, + { + "id": "ov94i1mqkmeeq5246q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T17:00:03", + "amountCrypto": 0.00003394, + "pricePerUnit": 2436579, + "totalCost": 82.7, + "fee": 0.29045428, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T17:00:03" + }, + { + "id": "jbmr8kzxegyp2u0zbg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-12T21:00:04", + "amountCrypto": 0.00003463, + "pricePerUnit": 2388233, + "totalCost": 82.7, + "fee": 0.29047891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-12T21:00:04" + }, + { + "id": "qf4iyu29qhvyvrfe3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T01:00:04", + "amountCrypto": 0.00003442, + "pricePerUnit": 2402334, + "totalCost": 82.69, + "fee": 0.29042211, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T01:00:04" + }, + { + "id": "066o183gzsgwdiye0m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T05:00:04", + "amountCrypto": 0.00003449, + "pricePerUnit": 2398027, + "totalCost": 82.71, + "fee": 0.29049104, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T05:00:04" + }, + { + "id": "rq1nidaoirlg7uuid0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T09:00:04", + "amountCrypto": 0.0000344, + "pricePerUnit": 2403802, + "totalCost": 82.69, + "fee": 0.29043068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T09:00:04" + }, + { + "id": "qflmb709rmqvhtllgo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T13:00:05", + "amountCrypto": 0.00003441, + "pricePerUnit": 2402991, + "totalCost": 82.69, + "fee": 0.29041709, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T13:00:05" + }, + { + "id": "bkn2g52d9hi35mk93r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T17:00:04", + "amountCrypto": 0.00003454, + "pricePerUnit": 2394064, + "totalCost": 82.69, + "fee": 0.29043142, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T17:00:04" + }, + { + "id": "x9ebwoww3i93ij4q6t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-13T21:00:08", + "amountCrypto": 0.00003409, + "pricePerUnit": 2426019, + "totalCost": 82.7, + "fee": 0.29047355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-13T21:00:08" + }, + { + "id": "ehq57zb3oy0zf9rizw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T01:00:04", + "amountCrypto": 0.00003424, + "pricePerUnit": 2415503, + "totalCost": 82.71, + "fee": 0.29048701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T01:00:04" + }, + { + "id": "97iokh03hm214286sl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T05:00:03", + "amountCrypto": 0.00003395, + "pricePerUnit": 2435940, + "totalCost": 82.7, + "fee": 0.29046359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T05:00:03" + }, + { + "id": "g3ng74xcdrhqyy32hx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T09:00:03", + "amountCrypto": 0.000034, + "pricePerUnit": 2432364, + "totalCost": 82.7, + "fee": 0.29046435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T09:00:03" + }, + { + "id": "krva08eoxkylt8ibzs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T13:00:04", + "amountCrypto": 0.00003429, + "pricePerUnit": 2411994, + "totalCost": 82.71, + "fee": 0.29048863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T13:00:04" + }, + { + "id": "acmyuv0b4lr44d02g4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T17:00:03", + "amountCrypto": 0.00003406, + "pricePerUnit": 2427727, + "totalCost": 82.69, + "fee": 0.29042228, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T17:00:03" + }, + { + "id": "8g33xnhk02hfku60fk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-14T21:00:04", + "amountCrypto": 0.00003429, + "pricePerUnit": 2411847, + "totalCost": 82.7, + "fee": 0.29047088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-14T21:00:04" + }, + { + "id": "38bxax7n5tqkzq3rs1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T01:00:04", + "amountCrypto": 0.00003415, + "pricePerUnit": 2421952, + "totalCost": 82.71, + "fee": 0.29049698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T01:00:04" + }, + { + "id": "rrppaanx4i7cac79kh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T05:00:03", + "amountCrypto": 0.00003402, + "pricePerUnit": 2430642, + "totalCost": 82.69, + "fee": 0.29042954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T05:00:03" + }, + { + "id": "73k0tnbjpjfsrldhmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T09:00:04", + "amountCrypto": 0.00003402, + "pricePerUnit": 2431229, + "totalCost": 82.71, + "fee": 0.29049962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T09:00:04" + }, + { + "id": "vxligqdvrgbu3x5hzz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T13:00:04", + "amountCrypto": 0.00003384, + "pricePerUnit": 2443994, + "totalCost": 82.7, + "fee": 0.29047973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T13:00:04" + }, + { + "id": "l3ci1gxwzf68tlrhbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T17:00:04", + "amountCrypto": 0.00003369, + "pricePerUnit": 2454450, + "totalCost": 82.69, + "fee": 0.29042937, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T17:00:04" + }, + { + "id": "ly09qvbuheam6eu48p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-15T21:00:03", + "amountCrypto": 0.00003357, + "pricePerUnit": 2463762, + "totalCost": 82.71, + "fee": 0.29049288, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-15T21:00:03" + }, + { + "id": "nvo28x4tp9u3ejiipb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T01:00:05", + "amountCrypto": 0.00003327, + "pricePerUnit": 2485711, + "totalCost": 82.7, + "fee": 0.29046171, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T01:00:05" + }, + { + "id": "2rfo5wtwnqnixaawb2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T05:00:04", + "amountCrypto": 0.00003325, + "pricePerUnit": 2487215, + "totalCost": 82.7, + "fee": 0.29046271, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T05:00:04" + }, + { + "id": "4ef3ig17wf19w03gfw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T09:00:04", + "amountCrypto": 0.00003298, + "pricePerUnit": 2507222, + "totalCost": 82.69, + "fee": 0.29042153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T09:00:04" + }, + { + "id": "q4pqcjb2qtf3fu003r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T13:00:04", + "amountCrypto": 0.00003332, + "pricePerUnit": 2481890, + "totalCost": 82.7, + "fee": 0.29045101, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T13:00:04" + }, + { + "id": "c9jkcmtktwfbx3flhi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T17:00:04", + "amountCrypto": 0.00003263, + "pricePerUnit": 2534066, + "totalCost": 82.69, + "fee": 0.29041596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T17:00:04" + }, + { + "id": "cckkf2pp2qr0q1e63d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-16T21:00:04", + "amountCrypto": 0.0000325, + "pricePerUnit": 2544850, + "totalCost": 82.71, + "fee": 0.29048988, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-16T21:00:04" + }, + { + "id": "js7pqc3la13sqs0cfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T01:00:03", + "amountCrypto": 0.00003269, + "pricePerUnit": 2529792, + "totalCost": 82.7, + "fee": 0.29045919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T01:00:03" + }, + { + "id": "pzinnlknlp7de1mlym", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T05:00:04", + "amountCrypto": 0.00003246, + "pricePerUnit": 2547983, + "totalCost": 82.71, + "fee": 0.29048951, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T05:00:04" + }, + { + "id": "c04vu84hpme3cqghoy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T09:00:04", + "amountCrypto": 0.00003239, + "pricePerUnit": 2553315, + "totalCost": 82.7, + "fee": 0.29046968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T09:00:04" + }, + { + "id": "799niiot9lj33mywv5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T13:00:04", + "amountCrypto": 0.00003236, + "pricePerUnit": 2555782, + "totalCost": 82.71, + "fee": 0.29048105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T13:00:04" + }, + { + "id": "o8grfm2sl6s43zao48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T17:00:04", + "amountCrypto": 0.00003238, + "pricePerUnit": 2553602, + "totalCost": 82.69, + "fee": 0.29041261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T17:00:04" + }, + { + "id": "owzzptq21wahko6jlp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-17T21:00:03", + "amountCrypto": 0.00003244, + "pricePerUnit": 2549481, + "totalCost": 82.71, + "fee": 0.29048118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-17T21:00:03" + }, + { + "id": "yf2qsw2dk2f7gb7iac", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T01:00:04", + "amountCrypto": 0.00003248, + "pricePerUnit": 2545892, + "totalCost": 82.69, + "fee": 0.29042994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T01:00:04" + }, + { + "id": "85ek7kmg516rtkc8ue", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T05:00:04", + "amountCrypto": 0.00003291, + "pricePerUnit": 2512627, + "totalCost": 82.69, + "fee": 0.29042991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T05:00:04" + }, + { + "id": "dtrwyuqdqk95cbgmqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T09:00:03", + "amountCrypto": 0.00003307, + "pricePerUnit": 2500797, + "totalCost": 82.7, + "fee": 0.29046781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T09:00:03" + }, + { + "id": "7gtwa6txjrw9oc49b4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T13:00:05", + "amountCrypto": 0.00003285, + "pricePerUnit": 2517517, + "totalCost": 82.7, + "fee": 0.29046463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T13:00:05" + }, + { + "id": "zqwwduxn72qfw9s6q4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T17:00:05", + "amountCrypto": 0.0000329, + "pricePerUnit": 2513354, + "totalCost": 82.69, + "fee": 0.29042565, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T17:00:05" + }, + { + "id": "behmgv0fb4jw84g91c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-18T21:00:04", + "amountCrypto": 0.0000331, + "pricePerUnit": 2498165, + "totalCost": 82.69, + "fee": 0.29042538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-18T21:00:04" + }, + { + "id": "ejaf9lh99ggz7mo2rb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T01:00:06", + "amountCrypto": 0.00003392, + "pricePerUnit": 2438246, + "totalCost": 82.71, + "fee": 0.29048174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T01:00:06" + }, + { + "id": "h8y1iajk48clovw2u8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T05:00:04", + "amountCrypto": 0.0000337, + "pricePerUnit": 2454285, + "totalCost": 82.71, + "fee": 0.29049612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T05:00:04" + }, + { + "id": "n5j3nrpwp1psb4pktq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T09:00:07", + "amountCrypto": 0.00003359, + "pricePerUnit": 2461829, + "totalCost": 82.69, + "fee": 0.2904379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T09:00:07" + }, + { + "id": "03rzcozni0sze16k37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T13:00:04", + "amountCrypto": 0.00003339, + "pricePerUnit": 2477097, + "totalCost": 82.71, + "fee": 0.29049912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T13:00:04" + }, + { + "id": "0afww4yimtesv3cwtw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T17:00:03", + "amountCrypto": 0.00003383, + "pricePerUnit": 2444182, + "totalCost": 82.69, + "fee": 0.29041628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T17:00:03" + }, + { + "id": "utd94owlrnx8eoypkj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-19T21:00:03", + "amountCrypto": 0.00003495, + "pricePerUnit": 2366475, + "totalCost": 82.71, + "fee": 0.29049222, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-19T21:00:03" + }, + { + "id": "mqh4jbb2hi0zi1ic4j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T01:00:03", + "amountCrypto": 0.00003485, + "pricePerUnit": 2372948, + "totalCost": 82.7, + "fee": 0.29045337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T01:00:03" + }, + { + "id": "760tq5pt6zvlby6y4e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T05:00:04", + "amountCrypto": 0.00003497, + "pricePerUnit": 2364717, + "totalCost": 82.69, + "fee": 0.29044248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T05:00:04" + }, + { + "id": "yi6e8cpukk9hvy9ahf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T09:00:03", + "amountCrypto": 0.00003483, + "pricePerUnit": 2374542, + "totalCost": 82.71, + "fee": 0.29048168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T09:00:03" + }, + { + "id": "ub9vgxj4ju7i6ccjfu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T13:00:04", + "amountCrypto": 0.00003678, + "pricePerUnit": 2248737, + "totalCost": 82.71, + "fee": 0.29049313, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T13:00:04" + }, + { + "id": "03yovvbzx8p82rh9nh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T17:00:04", + "amountCrypto": 0.00003512, + "pricePerUnit": 2354436, + "totalCost": 82.69, + "fee": 0.2904202, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T17:00:04" + }, + { + "id": "7aejc5jb0qkgjw2v75", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-20T21:00:03", + "amountCrypto": 0.00003526, + "pricePerUnit": 2345110, + "totalCost": 82.69, + "fee": 0.29042294, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-20T21:00:03" + }, + { + "id": "s8fq1jlsvegoy0szak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-21T01:00:03", + "amountCrypto": 0.00003501, + "pricePerUnit": 2362141, + "totalCost": 82.7, + "fee": 0.29045802, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-21T01:00:03" + }, + { + "id": "i5h4r0glj0ft3jexwz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-22T21:00:03", + "amountCrypto": 0.00003607, + "pricePerUnit": 2292892, + "totalCost": 82.7, + "fee": 0.29047929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-22T21:00:03" + }, + { + "id": "7l527mkhc3kuonyrra", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T01:00:04", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299782, + "totalCost": 82.7, + "fee": 0.29046366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T01:00:04" + }, + { + "id": "zsyxxifhxhj6s3vp2f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T05:00:06", + "amountCrypto": 0.00003575, + "pricePerUnit": 2313470, + "totalCost": 82.71, + "fee": 0.29048611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T05:00:06" + }, + { + "id": "jrju07w8j4nipe0uc0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T09:00:07", + "amountCrypto": 0.00003582, + "pricePerUnit": 2309011, + "totalCost": 82.71, + "fee": 0.2904939, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T09:00:07" + }, + { + "id": "ybvfqti5iyesv9kijc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T13:00:03", + "amountCrypto": 0.00003552, + "pricePerUnit": 2328377, + "totalCost": 82.7, + "fee": 0.29047698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T13:00:03" + }, + { + "id": "4v3o80qh7cllqm9m2w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T17:00:04", + "amountCrypto": 0.00003649, + "pricePerUnit": 2266063, + "totalCost": 82.69, + "fee": 0.29042322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T17:00:04" + }, + { + "id": "h0mxnfvzjf8s297u8x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-23T21:00:03", + "amountCrypto": 0.00003666, + "pricePerUnit": 2255957, + "totalCost": 82.7, + "fee": 0.29047499, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-23T21:00:03" + }, + { + "id": "10gbgegix7m1yjv9j5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T01:00:04", + "amountCrypto": 0.00003603, + "pricePerUnit": 2295277, + "totalCost": 82.7, + "fee": 0.29045896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T01:00:04" + }, + { + "id": "53py4d8wts8yymt4f7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T05:00:04", + "amountCrypto": 0.00003622, + "pricePerUnit": 2283443, + "totalCost": 82.71, + "fee": 0.29048517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T05:00:04" + }, + { + "id": "qm9nhlr6fkyy2kp6rc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T09:00:04", + "amountCrypto": 0.00003618, + "pricePerUnit": 2285895, + "totalCost": 82.7, + "fee": 0.29047596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T09:00:04" + }, + { + "id": "h5xop59w36zhj0utyx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T13:00:04", + "amountCrypto": 0.0000361, + "pricePerUnit": 2290965, + "totalCost": 82.7, + "fee": 0.29047658, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T13:00:04" + }, + { + "id": "bi43f6a0awgxbrpbg4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T17:00:03", + "amountCrypto": 0.00003476, + "pricePerUnit": 2379137, + "totalCost": 82.7, + "fee": 0.29045891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T17:00:03" + }, + { + "id": "alvdk229bfh2syoimr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-24T21:00:04", + "amountCrypto": 0.00003487, + "pricePerUnit": 2371447, + "totalCost": 82.69, + "fee": 0.29043626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-24T21:00:04" + }, + { + "id": "gyskumwo5oh74r7s6e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T01:00:05", + "amountCrypto": 0.00003453, + "pricePerUnit": 2395107, + "totalCost": 82.7, + "fee": 0.29047378, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T01:00:05" + }, + { + "id": "gsxdb3thy6tsnk0wa8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T05:00:05", + "amountCrypto": 0.00003479, + "pricePerUnit": 2376808, + "totalCost": 82.69, + "fee": 0.29042492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T05:00:05" + }, + { + "id": "vu2a4mf93qxkymmmbx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T09:00:04", + "amountCrypto": 0.00003475, + "pricePerUnit": 2379803, + "totalCost": 82.7, + "fee": 0.2904566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T09:00:04" + }, + { + "id": "auen3pcqgpdntqg25q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T13:00:03", + "amountCrypto": 0.00003484, + "pricePerUnit": 2373601, + "totalCost": 82.7, + "fee": 0.29044989, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T13:00:03" + }, + { + "id": "71drnimmlb28uc2yo1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T17:00:03", + "amountCrypto": 0.00003462, + "pricePerUnit": 2388917, + "totalCost": 82.7, + "fee": 0.29047816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T17:00:03" + }, + { + "id": "1wzngoi26lmz23pig4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-25T21:00:03", + "amountCrypto": 0.00003445, + "pricePerUnit": 2400423, + "totalCost": 82.69, + "fee": 0.29044404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-25T21:00:03" + }, + { + "id": "ek4yzjufk0gbxs4d84", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T01:00:04", + "amountCrypto": 0.0000344, + "pricePerUnit": 2403987, + "totalCost": 82.7, + "fee": 0.29045309, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T01:00:04" + }, + { + "id": "lyio5mdnn6xpitun3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T05:00:06", + "amountCrypto": 0.00003445, + "pricePerUnit": 2400774, + "totalCost": 82.71, + "fee": 0.2904865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6395", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T05:00:06" + }, + { + "id": "9sknkw36wp1oklbjae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T09:00:03", + "amountCrypto": 0.0000348, + "pricePerUnit": 2376514, + "totalCost": 82.7, + "fee": 0.29047249, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6396", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T09:00:03" + }, + { + "id": "pdx9j52jtxcjli55fy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T13:00:04", + "amountCrypto": 0.00003566, + "pricePerUnit": 2319152, + "totalCost": 82.7, + "fee": 0.29046649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6397", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T13:00:04" + }, + { + "id": "p5lufl4f3ku4rdo0x4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T17:00:04", + "amountCrypto": 0.00003553, + "pricePerUnit": 2327407, + "totalCost": 82.69, + "fee": 0.29043766, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6398", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T17:00:04" + }, + { + "id": "wbdk6w8czoxd3ie3s6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-26T21:00:04", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320167, + "totalCost": 82.69, + "fee": 0.29043057, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6399", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-26T21:00:04" + }, + { + "id": "lr5o9zql81p36vw27g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T01:00:03", + "amountCrypto": 0.00003566, + "pricePerUnit": 2318991, + "totalCost": 82.7, + "fee": 0.29044627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6400", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T01:00:03" + }, + { + "id": "jc9bfl1y964gausgmw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T05:00:04", + "amountCrypto": 0.00003542, + "pricePerUnit": 2334598, + "totalCost": 82.69, + "fee": 0.29043305, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6401", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T05:00:04" + }, + { + "id": "c51nj9gl65iyt1gs3x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T09:00:03", + "amountCrypto": 0.00003591, + "pricePerUnit": 2303250, + "totalCost": 82.71, + "fee": 0.29049714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6402", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T09:00:03" + }, + { + "id": "267r4o8ok0m9tbed8t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T13:00:03", + "amountCrypto": 0.00003532, + "pricePerUnit": 2341175, + "totalCost": 82.69, + "fee": 0.29042901, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6403", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T13:00:03" + }, + { + "id": "fu8yyieddmk0r1pwzn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T17:00:03", + "amountCrypto": 0.00003604, + "pricePerUnit": 2294865, + "totalCost": 82.71, + "fee": 0.29048742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6404", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T17:00:03" + }, + { + "id": "457897ajicrt0718ux", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-27T21:00:03", + "amountCrypto": 0.00003598, + "pricePerUnit": 2298537, + "totalCost": 82.7, + "fee": 0.29046786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6405", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-27T21:00:03" + }, + { + "id": "edaum0rsctjrkgkiak", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T01:00:03", + "amountCrypto": 0.00003615, + "pricePerUnit": 2287980, + "totalCost": 82.71, + "fee": 0.29049985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6406", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T01:00:03" + }, + { + "id": "ur98pecvafvypkh6t6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T05:00:04", + "amountCrypto": 0.00003604, + "pricePerUnit": 2294700, + "totalCost": 82.7, + "fee": 0.29046649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6407", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T05:00:04" + }, + { + "id": "h26z6r9iiaw1vvha25", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T09:00:03", + "amountCrypto": 0.00003612, + "pricePerUnit": 2289539, + "totalCost": 82.7, + "fee": 0.29045654, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6408", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T09:00:03" + }, + { + "id": "auewhe4qap9djl8mzb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T13:00:06", + "amountCrypto": 0.00003598, + "pricePerUnit": 2298576, + "totalCost": 82.7, + "fee": 0.29047281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6409", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T13:00:06" + }, + { + "id": "dr3ke7w2ckm54moff4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T17:00:04", + "amountCrypto": 0.00003614, + "pricePerUnit": 2288033, + "totalCost": 82.69, + "fee": 0.29042624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6410", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T17:00:04" + }, + { + "id": "0pelwne09dv7j02wcd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-28T21:00:04", + "amountCrypto": 0.00003595, + "pricePerUnit": 2300108, + "totalCost": 82.69, + "fee": 0.29042402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6411", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-28T21:00:04" + }, + { + "id": "tmejrsyjnx6540q98l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T01:00:04", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308636, + "totalCost": 82.7, + "fee": 0.29044673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6412", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T01:00:04" + }, + { + "id": "a54viqkdocvkp9b72m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T05:00:04", + "amountCrypto": 0.00003586, + "pricePerUnit": 2305960, + "totalCost": 82.69, + "fee": 0.29043395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6413", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T05:00:04" + }, + { + "id": "hz1ihlagrdux6ikt8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T09:00:04", + "amountCrypto": 0.0000358, + "pricePerUnit": 2310280, + "totalCost": 82.71, + "fee": 0.29049129, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6414", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T09:00:04" + }, + { + "id": "6nbhe89nlnbsp2qewi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T13:00:03", + "amountCrypto": 0.0000359, + "pricePerUnit": 2303648, + "totalCost": 82.7, + "fee": 0.29046643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6415", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T13:00:03" + }, + { + "id": "dih1kujs351djx0kw0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T17:00:03", + "amountCrypto": 0.00003609, + "pricePerUnit": 2291635, + "totalCost": 82.71, + "fee": 0.290481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6416", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T17:00:03" + }, + { + "id": "coe36akprqx4c3xhdv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-29T21:00:04", + "amountCrypto": 0.00003652, + "pricePerUnit": 2264241, + "totalCost": 82.69, + "fee": 0.29042822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6417", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-29T21:00:04" + }, + { + "id": "46gpa2zjvkrig1qjmy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T01:00:03", + "amountCrypto": 0.00003642, + "pricePerUnit": 2270783, + "totalCost": 82.7, + "fee": 0.29046982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6418", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T01:00:03" + }, + { + "id": "au7991lhjnm0qrtjiy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T05:00:03", + "amountCrypto": 0.00003643, + "pricePerUnit": 2270250, + "totalCost": 82.71, + "fee": 0.29048134, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6419", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T05:00:03" + }, + { + "id": "v8blv1f9fby251565w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T09:00:04", + "amountCrypto": 0.00003647, + "pricePerUnit": 2267737, + "totalCost": 82.7, + "fee": 0.29047836, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6420", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T09:00:04" + }, + { + "id": "bknrcmy8d42z2r8e2d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T13:00:05", + "amountCrypto": 0.0000364, + "pricePerUnit": 2272068, + "totalCost": 82.7, + "fee": 0.29047462, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6421", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T13:00:05" + }, + { + "id": "38tuuc5gzx0dgyxa1n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T17:00:04", + "amountCrypto": 0.00003676, + "pricePerUnit": 2249488, + "totalCost": 82.69, + "fee": 0.29043212, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6422", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T17:00:04" + }, + { + "id": "5brnhrroa1zoi5dn16", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-30T21:00:03", + "amountCrypto": 0.00003606, + "pricePerUnit": 2293253, + "totalCost": 82.69, + "fee": 0.29044446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6423", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-30T21:00:03" + }, + { + "id": "xxa1p78xfz619sai2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T01:00:03", + "amountCrypto": 0.00003672, + "pricePerUnit": 2252129, + "totalCost": 82.7, + "fee": 0.29045664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6424", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T01:00:03" + }, + { + "id": "u3020srudj50jb0x34", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T05:00:04", + "amountCrypto": 0.00003684, + "pricePerUnit": 2244638, + "totalCost": 82.69, + "fee": 0.29043662, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6425", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T05:00:04" + }, + { + "id": "7q1fdd7vktexn226mi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T09:00:04", + "amountCrypto": 0.00003673, + "pricePerUnit": 2251419, + "totalCost": 82.69, + "fee": 0.29044418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6426", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T09:00:04" + }, + { + "id": "4gc9jvwd7cnuip2gdt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T13:00:07", + "amountCrypto": 0.00003618, + "pricePerUnit": 2285670, + "totalCost": 82.7, + "fee": 0.29044742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6427", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T13:00:07" + }, + { + "id": "1dno1n1atyzqqcnhgq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T17:00:04", + "amountCrypto": 0.00003558, + "pricePerUnit": 2324060, + "totalCost": 82.69, + "fee": 0.29042821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6428", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T17:00:04" + }, + { + "id": "m9l6wqisxqlraluk9v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2024-12-31T21:00:04", + "amountCrypto": 0.00003604, + "pricePerUnit": 2294874, + "totalCost": 82.71, + "fee": 0.29048857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6429", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2024-12-31T21:00:04" + }, + { + "id": "2aha9r2vdpvrb91u2y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T01:00:04", + "amountCrypto": 0.00003627, + "pricePerUnit": 2280296, + "totalCost": 82.71, + "fee": 0.2904853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6430", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T01:00:04" + }, + { + "id": "s70svtr657p1z5pruo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T05:00:06", + "amountCrypto": 0.0000361, + "pricePerUnit": 2290946, + "totalCost": 82.7, + "fee": 0.29047417, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6431", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T05:00:06" + }, + { + "id": "x5w7azvqvu70ybju8v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T09:00:04", + "amountCrypto": 0.00003616, + "pricePerUnit": 2287275, + "totalCost": 82.71, + "fee": 0.29049071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6432", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T09:00:04" + }, + { + "id": "xdrswhd1ohj0p4uj8q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T13:00:04", + "amountCrypto": 0.00003624, + "pricePerUnit": 2282298, + "totalCost": 82.71, + "fee": 0.29049985, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6433", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T13:00:04" + }, + { + "id": "qwt3xoe96j7gcbnedo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T17:00:03", + "amountCrypto": 0.0000359, + "pricePerUnit": 2303850, + "totalCost": 82.71, + "fee": 0.2904919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6434", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T17:00:03" + }, + { + "id": "yhykfkynof7w660k91", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-01T21:00:03", + "amountCrypto": 0.00003581, + "pricePerUnit": 2309444, + "totalCost": 82.7, + "fee": 0.29046728, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6435", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-01T21:00:03" + }, + { + "id": "uqjspoo99oqsy83zzh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T01:00:03", + "amountCrypto": 0.00003583, + "pricePerUnit": 2308088, + "totalCost": 82.7, + "fee": 0.29045881, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6436", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T01:00:03" + }, + { + "id": "yul31aauj34gxn2l8o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T05:00:04", + "amountCrypto": 0.00003573, + "pricePerUnit": 2314414, + "totalCost": 82.69, + "fee": 0.29044198, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6437", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T05:00:04" + }, + { + "id": "e2dwu1gdu54s738q5b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T09:00:04", + "amountCrypto": 0.00003541, + "pricePerUnit": 2335400, + "totalCost": 82.7, + "fee": 0.29045079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6438", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T09:00:04" + }, + { + "id": "9cx1fbm4p3398wyr7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T13:00:04", + "amountCrypto": 0.00003501, + "pricePerUnit": 2362265, + "totalCost": 82.7, + "fee": 0.29047331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6439", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T13:00:04" + }, + { + "id": "2d0ec41p9bidcpjr5f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T17:00:04", + "amountCrypto": 0.0000349, + "pricePerUnit": 2369440, + "totalCost": 82.69, + "fee": 0.29044012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6440", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T17:00:04" + }, + { + "id": "ztx26qcq9cy8icji35", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-02T21:00:03", + "amountCrypto": 0.00003455, + "pricePerUnit": 2393664, + "totalCost": 82.7, + "fee": 0.29046696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6441", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-02T21:00:03" + }, + { + "id": "89o0oc1stsi274i2ka", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T01:00:04", + "amountCrypto": 0.00003475, + "pricePerUnit": 2379904, + "totalCost": 82.7, + "fee": 0.29046895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6442", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T01:00:04" + }, + { + "id": "y6rt9u4sj70dpuopd0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T05:00:03", + "amountCrypto": 0.00003468, + "pricePerUnit": 2384447, + "totalCost": 82.69, + "fee": 0.29043711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6443", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T05:00:03" + }, + { + "id": "zuygupytwn6viv2aqx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T09:00:03", + "amountCrypto": 0.00003499, + "pricePerUnit": 2363804, + "totalCost": 82.71, + "fee": 0.29049648, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6444", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T09:00:03" + }, + { + "id": "lu4bzvbzg8i1mhhh0i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T13:00:05", + "amountCrypto": 0.00003484, + "pricePerUnit": 2373491, + "totalCost": 82.69, + "fee": 0.29043652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6445", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T13:00:05" + }, + { + "id": "deuo6zeld3imhbgcok", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T17:00:06", + "amountCrypto": 0.00003453, + "pricePerUnit": 2394862, + "totalCost": 82.69, + "fee": 0.29044411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6446", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T17:00:06" + }, + { + "id": "dx40aa5v2rv77ra2b6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-03T21:00:03", + "amountCrypto": 0.00003424, + "pricePerUnit": 2415193, + "totalCost": 82.7, + "fee": 0.29044975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6447", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-03T21:00:03" + }, + { + "id": "3ssbzcyibmu9upfoul", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T01:00:05", + "amountCrypto": 0.00003441, + "pricePerUnit": 2403473, + "totalCost": 82.7, + "fee": 0.29047537, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6448", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T01:00:05" + }, + { + "id": "fgfdrpcpqrf906np9t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T05:00:03", + "amountCrypto": 0.00003441, + "pricePerUnit": 2403458, + "totalCost": 82.7, + "fee": 0.29047355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6449", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T05:00:03" + }, + { + "id": "1hz1qxhw7mtkyn2sa7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T09:00:03", + "amountCrypto": 0.0000344, + "pricePerUnit": 2403974, + "totalCost": 82.7, + "fee": 0.29045152, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6450", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T09:00:03" + }, + { + "id": "n802pso3jlm7cwhfri", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T13:00:04", + "amountCrypto": 0.0000346, + "pricePerUnit": 2389870, + "totalCost": 82.69, + "fee": 0.29042621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6451", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T13:00:04" + }, + { + "id": "tmeo5lfb9mzg5b1ynn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T17:00:03", + "amountCrypto": 0.00003448, + "pricePerUnit": 2398409, + "totalCost": 82.7, + "fee": 0.29045307, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6452", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T17:00:03" + }, + { + "id": "hrnkvip5yg06laiv37", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-04T21:00:04", + "amountCrypto": 0.00003427, + "pricePerUnit": 2413245, + "totalCost": 82.7, + "fee": 0.29046979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6453", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-04T21:00:04" + }, + { + "id": "z18gm9hyo7ipj1rjll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T01:00:04", + "amountCrypto": 0.00003437, + "pricePerUnit": 2406470, + "totalCost": 82.71, + "fee": 0.29049955, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6454", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T01:00:04" + }, + { + "id": "013rbs7nm11t4cjz8l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T05:00:04", + "amountCrypto": 0.00003438, + "pricePerUnit": 2405482, + "totalCost": 82.7, + "fee": 0.29046471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6455", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T05:00:04" + }, + { + "id": "qtudxvx4kabw7ln7mm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T09:00:04", + "amountCrypto": 0.00003435, + "pricePerUnit": 2407730, + "totalCost": 82.71, + "fee": 0.29048253, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6456", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T09:00:04" + }, + { + "id": "wmetrthpfgdi5q7bc3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T13:00:03", + "amountCrypto": 0.00003457, + "pricePerUnit": 2392284, + "totalCost": 82.7, + "fee": 0.2904675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6457", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T13:00:03" + }, + { + "id": "1zp7uz2qquap1xbnnz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T17:00:04", + "amountCrypto": 0.00003444, + "pricePerUnit": 2400938, + "totalCost": 82.69, + "fee": 0.29042194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6458", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T17:00:04" + }, + { + "id": "z9nxnsl75bai6euaga", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-05T21:00:04", + "amountCrypto": 0.00003445, + "pricePerUnit": 2400545, + "totalCost": 82.7, + "fee": 0.29045872, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6459", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-05T21:00:04" + }, + { + "id": "wnqtc3nuq7q9j8izz5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T01:00:04", + "amountCrypto": 0.0000343, + "pricePerUnit": 2411324, + "totalCost": 82.71, + "fee": 0.29049267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6460", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T01:00:04" + }, + { + "id": "dgbfraf99a6woro6q5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T05:00:03", + "amountCrypto": 0.00003412, + "pricePerUnit": 2423501, + "totalCost": 82.69, + "fee": 0.29042739, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6461", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T05:00:03" + }, + { + "id": "34hywyethf5lvbhdce", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T09:00:07", + "amountCrypto": 0.00003403, + "pricePerUnit": 2430164, + "totalCost": 82.7, + "fee": 0.29045776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6462", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T09:00:07" + }, + { + "id": "iyvwqywluqfpxnnk79", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T13:00:04", + "amountCrypto": 0.00003439, + "pricePerUnit": 2405047, + "totalCost": 82.71, + "fee": 0.29049664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6463", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T13:00:04" + }, + { + "id": "t2zbwf10fzlfaukn32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T17:00:05", + "amountCrypto": 0.00003329, + "pricePerUnit": 2484180, + "totalCost": 82.7, + "fee": 0.29045734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6464", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T17:00:05" + }, + { + "id": "21ea0zqxk6unfe0ldm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-06T21:00:04", + "amountCrypto": 0.00003345, + "pricePerUnit": 2472229, + "totalCost": 82.7, + "fee": 0.2904492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6465", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-06T21:00:04" + }, + { + "id": "lrmcfdk1pjanmewzmn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T01:00:03", + "amountCrypto": 0.00003336, + "pricePerUnit": 2478663, + "totalCost": 82.69, + "fee": 0.29042159, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6466", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T01:00:03" + }, + { + "id": "8x4jfvdhvph3mdlufx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T05:00:04", + "amountCrypto": 0.00003343, + "pricePerUnit": 2474073, + "totalCost": 82.71, + "fee": 0.29049212, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6467", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T05:00:04" + }, + { + "id": "tumyg7s35se1p3hja1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T09:00:04", + "amountCrypto": 0.00003348, + "pricePerUnit": 2469789, + "totalCost": 82.69, + "fee": 0.29042277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6468", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T09:00:04" + }, + { + "id": "w324awmahnvg82l8sz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T13:00:05", + "amountCrypto": 0.00003384, + "pricePerUnit": 2443488, + "totalCost": 82.69, + "fee": 0.29041968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6469", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T13:00:05" + }, + { + "id": "n50o0yeo6lvw68epim", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T17:00:06", + "amountCrypto": 0.00003468, + "pricePerUnit": 2384306, + "totalCost": 82.69, + "fee": 0.29042001, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6470", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T17:00:06" + }, + { + "id": "4gsj7gw5ivfdqat65y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-07T21:00:04", + "amountCrypto": 0.00003521, + "pricePerUnit": 2348974, + "totalCost": 82.71, + "fee": 0.29048903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6471", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-07T21:00:04" + }, + { + "id": "124c7bb2jspk4jafy8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T01:00:03", + "amountCrypto": 0.00003495, + "pricePerUnit": 2365877, + "totalCost": 82.69, + "fee": 0.29041888, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6472", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T01:00:03" + }, + { + "id": "sz7s0qqrfsicxy7ng7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T05:00:04", + "amountCrypto": 0.00003511, + "pricePerUnit": 2355325, + "totalCost": 82.7, + "fee": 0.29044716, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6473", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T05:00:04" + }, + { + "id": "amn4lj1zfu5yuzm6ty", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T09:00:04", + "amountCrypto": 0.00003535, + "pricePerUnit": 2339261, + "totalCost": 82.69, + "fee": 0.29043809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6474", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T09:00:04" + }, + { + "id": "596fp7nv3dua3tl75w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T13:00:04", + "amountCrypto": 0.00003544, + "pricePerUnit": 2333604, + "totalCost": 82.7, + "fee": 0.29047338, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6475", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T13:00:04" + }, + { + "id": "1kiu4uwptkayr4nl0a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T17:00:04", + "amountCrypto": 0.00003536, + "pricePerUnit": 2338504, + "totalCost": 82.69, + "fee": 0.29042625, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6476", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T17:00:04" + }, + { + "id": "h9tw5unawhz71ypsg8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-08T21:00:04", + "amountCrypto": 0.00003578, + "pricePerUnit": 2311455, + "totalCost": 82.7, + "fee": 0.29047665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6477", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-08T21:00:04" + }, + { + "id": "ihzl4iqo2ifaqysykd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T01:00:06", + "amountCrypto": 0.00003554, + "pricePerUnit": 2326833, + "totalCost": 82.7, + "fee": 0.29044783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6478", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T01:00:06" + }, + { + "id": "xqy18tz6903oq0h35x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T05:00:05", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301382, + "totalCost": 82.69, + "fee": 0.29042325, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6479", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T05:00:05" + }, + { + "id": "rib3gua9wqkzglid89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T09:00:03", + "amountCrypto": 0.00003614, + "pricePerUnit": 2288104, + "totalCost": 82.69, + "fee": 0.29043527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6480", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T09:00:03" + }, + { + "id": "9dwilx68jx8f1j3gdg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T13:00:04", + "amountCrypto": 0.00003613, + "pricePerUnit": 2289067, + "totalCost": 82.7, + "fee": 0.29047703, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6481", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T13:00:04" + }, + { + "id": "7gf5hjni90y757w2do", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T17:00:03", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305783, + "totalCost": 82.71, + "fee": 0.29049271, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6482", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T17:00:03" + }, + { + "id": "c8dtaf5q848y4ltqub", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-09T21:00:04", + "amountCrypto": 0.00003673, + "pricePerUnit": 2251561, + "totalCost": 82.7, + "fee": 0.29046254, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6483", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-09T21:00:04" + }, + { + "id": "gt7sdtr3fhslhsp0gm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T01:00:04", + "amountCrypto": 0.00003652, + "pricePerUnit": 2264207, + "totalCost": 82.69, + "fee": 0.29042385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6484", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T01:00:04" + }, + { + "id": "bemr7g5ghbf4ridcqs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T05:00:03", + "amountCrypto": 0.00003614, + "pricePerUnit": 2288390, + "totalCost": 82.7, + "fee": 0.29047154, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6485", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T05:00:03" + }, + { + "id": "vx8tgq5cfiq4ot1ero", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T09:00:05", + "amountCrypto": 0.00003572, + "pricePerUnit": 2315181, + "totalCost": 82.7, + "fee": 0.29045704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6486", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T09:00:05" + }, + { + "id": "kl7g4ekk1tohjgpe0f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T13:00:04", + "amountCrypto": 0.00003557, + "pricePerUnit": 2324985, + "totalCost": 82.7, + "fee": 0.29046205, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6487", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T13:00:04" + }, + { + "id": "p8ks415c8vxfqkjm9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T17:00:04", + "amountCrypto": 0.00003594, + "pricePerUnit": 2300988, + "totalCost": 82.7, + "fee": 0.29045435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6488", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T17:00:04" + }, + { + "id": "432tes6azm360zh69c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-10T21:00:03", + "amountCrypto": 0.00003541, + "pricePerUnit": 2335644, + "totalCost": 82.71, + "fee": 0.29048121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6489", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-10T21:00:03" + }, + { + "id": "vfbxk5rljtjdtcndfb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T01:00:06", + "amountCrypto": 0.0000355, + "pricePerUnit": 2329713, + "totalCost": 82.7, + "fee": 0.29047992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6490", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T01:00:06" + }, + { + "id": "kxdceeqw4fvzlz2sk9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T05:00:04", + "amountCrypto": 0.00003571, + "pricePerUnit": 2316119, + "totalCost": 82.71, + "fee": 0.29049328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6491", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T05:00:04" + }, + { + "id": "aui85h979s80ekthza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T09:00:05", + "amountCrypto": 0.0000357, + "pricePerUnit": 2316681, + "totalCost": 82.71, + "fee": 0.29048245, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6492", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T09:00:05" + }, + { + "id": "9xdyqqg8yz937p0m4b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T13:00:04", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325434, + "totalCost": 82.69, + "fee": 0.29043649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6493", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T13:00:04" + }, + { + "id": "ytoq04kvxdqcutpsx8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T17:00:04", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320607, + "totalCost": 82.71, + "fee": 0.29048566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6494", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T17:00:04" + }, + { + "id": "hc2ie1d6bzgubr12a3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-11T21:00:03", + "amountCrypto": 0.00003573, + "pricePerUnit": 2314484, + "totalCost": 82.7, + "fee": 0.29045079, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6495", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-11T21:00:03" + }, + { + "id": "pq3m0ukotdi9xov0np", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T01:00:03", + "amountCrypto": 0.00003558, + "pricePerUnit": 2324156, + "totalCost": 82.69, + "fee": 0.29044011, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6496", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T01:00:03" + }, + { + "id": "qwipni2v3u1ueez6s8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T05:00:04", + "amountCrypto": 0.00003558, + "pricePerUnit": 2324287, + "totalCost": 82.7, + "fee": 0.29045652, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6497", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T05:00:04" + }, + { + "id": "3gjggdolsuaayh12w2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T09:00:04", + "amountCrypto": 0.00003569, + "pricePerUnit": 2317312, + "totalCost": 82.7, + "fee": 0.29048013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6498", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T09:00:04" + }, + { + "id": "5hpvsgzv5yvsy2wcps", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T13:00:03", + "amountCrypto": 0.00003575, + "pricePerUnit": 2313241, + "totalCost": 82.7, + "fee": 0.29045729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6499", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T13:00:03" + }, + { + "id": "w2nrggjgmva8od5ihi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T17:00:04", + "amountCrypto": 0.00003547, + "pricePerUnit": 2331326, + "totalCost": 82.69, + "fee": 0.29043539, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6500", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T17:00:04" + }, + { + "id": "zcvae1xhd8nlwi62un", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-12T21:00:06", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325687, + "totalCost": 82.7, + "fee": 0.29046804, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6501", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-12T21:00:06" + }, + { + "id": "gejvqeatpewruv1rxx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T01:00:03", + "amountCrypto": 0.00003568, + "pricePerUnit": 2317701, + "totalCost": 82.7, + "fee": 0.29044748, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6502", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T01:00:03" + }, + { + "id": "3i3z96qb61gvfux4l8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T05:00:04", + "amountCrypto": 0.00003568, + "pricePerUnit": 2317801, + "totalCost": 82.7, + "fee": 0.29046005, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6503", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T05:00:04" + }, + { + "id": "rqk4xtby8bagtc2uhv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T09:00:04", + "amountCrypto": 0.00003585, + "pricePerUnit": 2306558, + "totalCost": 82.69, + "fee": 0.29042832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6504", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T09:00:04" + }, + { + "id": "vy3i4oviery3hhzadi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T13:00:04", + "amountCrypto": 0.00003669, + "pricePerUnit": 2254076, + "totalCost": 82.7, + "fee": 0.29047022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6505", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T13:00:04" + }, + { + "id": "embhf9dqb4uuoj7qn7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T17:00:04", + "amountCrypto": 0.0000361, + "pricePerUnit": 2290720, + "totalCost": 82.69, + "fee": 0.29044544, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6506", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T17:00:04" + }, + { + "id": "hb3lre3edkji42zqw7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-13T21:00:04", + "amountCrypto": 0.00003611, + "pricePerUnit": 2290216, + "totalCost": 82.7, + "fee": 0.29046207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6507", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-13T21:00:04" + }, + { + "id": "ajhm11d1b24au4juz4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T01:00:06", + "amountCrypto": 0.00003552, + "pricePerUnit": 2328110, + "totalCost": 82.69, + "fee": 0.29044359, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6508", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T01:00:06" + }, + { + "id": "ted5iq4ay1ns17suzo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T05:00:03", + "amountCrypto": 0.00003527, + "pricePerUnit": 2344654, + "totalCost": 82.7, + "fee": 0.2904488, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6509", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T05:00:03" + }, + { + "id": "rd7scvv7s30j0wo0n0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T09:00:04", + "amountCrypto": 0.00003527, + "pricePerUnit": 2344643, + "totalCost": 82.7, + "fee": 0.29044743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6510", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T09:00:04" + }, + { + "id": "bmzoll1dh91pd19mku", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T13:00:04", + "amountCrypto": 0.00003463, + "pricePerUnit": 2388199, + "totalCost": 82.7, + "fee": 0.29047476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6511", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T13:00:04" + }, + { + "id": "sfjzznxiy8rcsu941v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T17:00:04", + "amountCrypto": 0.00003477, + "pricePerUnit": 2378552, + "totalCost": 82.7, + "fee": 0.29047098, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6512", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T17:00:04" + }, + { + "id": "hfucjnzhuu0wn59pr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-14T21:00:03", + "amountCrypto": 0.0000348, + "pricePerUnit": 2376627, + "totalCost": 82.71, + "fee": 0.29048634, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6513", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-14T21:00:03" + }, + { + "id": "tpsnxlaqdz8oicaihd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T01:00:03", + "amountCrypto": 0.00003483, + "pricePerUnit": 2374352, + "totalCost": 82.7, + "fee": 0.2904585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6514", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T01:00:03" + }, + { + "id": "jlcz42l2r7ls3t9ila", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T05:00:04", + "amountCrypto": 0.00003455, + "pricePerUnit": 2393649, + "totalCost": 82.7, + "fee": 0.29046514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6515", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T05:00:04" + }, + { + "id": "ylfjizqibvytnp644o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T09:00:04", + "amountCrypto": 0.00003457, + "pricePerUnit": 2391943, + "totalCost": 82.69, + "fee": 0.29042611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6516", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T09:00:04" + }, + { + "id": "iqe1gtfejlo3uejqyw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T13:00:04", + "amountCrypto": 0.00003479, + "pricePerUnit": 2377012, + "totalCost": 82.7, + "fee": 0.29044991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6517", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T13:00:04" + }, + { + "id": "r2e8njdjvqlrn8e2rr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T17:00:03", + "amountCrypto": 0.00003405, + "pricePerUnit": 2428993, + "totalCost": 82.71, + "fee": 0.29048844, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6518", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T17:00:03" + }, + { + "id": "4tcorku23fa2eb242h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-15T21:00:03", + "amountCrypto": 0.00003377, + "pricePerUnit": 2448577, + "totalCost": 82.69, + "fee": 0.29042248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6519", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-15T21:00:03" + }, + { + "id": "rze0ovxi197mxwwyh7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T01:00:04", + "amountCrypto": 0.00003359, + "pricePerUnit": 2462218, + "totalCost": 82.71, + "fee": 0.29048379, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6520", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T01:00:04" + }, + { + "id": "bg7mvf2c43ka9dcjco", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T05:00:08", + "amountCrypto": 0.00003386, + "pricePerUnit": 2442240, + "totalCost": 82.69, + "fee": 0.29044289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6521", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T05:00:08" + }, + { + "id": "2s54en1fx9dtt2yrx0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T09:00:04", + "amountCrypto": 0.00003373, + "pricePerUnit": 2452002, + "totalCost": 82.71, + "fee": 0.2904843, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6522", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T09:00:04" + }, + { + "id": "eiz0ib4i8t0rkxrd6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T13:00:04", + "amountCrypto": 0.00003388, + "pricePerUnit": 2441224, + "totalCost": 82.71, + "fee": 0.29049348, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6523", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T13:00:04" + }, + { + "id": "jhkohh2mqgud1w63lo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T17:00:03", + "amountCrypto": 0.00003399, + "pricePerUnit": 2433062, + "totalCost": 82.7, + "fee": 0.29046234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6524", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T17:00:03" + }, + { + "id": "1qftam9alap8x95ap8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-16T21:00:04", + "amountCrypto": 0.00003353, + "pricePerUnit": 2466043, + "totalCost": 82.69, + "fee": 0.29041542, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6525", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-16T21:00:04" + }, + { + "id": "ykfascu6tmra4gyql1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T01:00:04", + "amountCrypto": 0.00003359, + "pricePerUnit": 2462259, + "totalCost": 82.71, + "fee": 0.29048864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6526", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T01:00:04" + }, + { + "id": "z27tc17ulcushp0gc4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T05:00:04", + "amountCrypto": 0.00003329, + "pricePerUnit": 2484524, + "totalCost": 82.71, + "fee": 0.29049754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6527", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T05:00:04" + }, + { + "id": "7y53u3tagjf6y23oe2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T09:00:04", + "amountCrypto": 0.00003302, + "pricePerUnit": 2504421, + "totalCost": 82.7, + "fee": 0.29044893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6528", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T09:00:04" + }, + { + "id": "ntwexw0mkzsjhusm0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T13:00:04", + "amountCrypto": 0.00003286, + "pricePerUnit": 2516407, + "totalCost": 82.69, + "fee": 0.29042497, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6529", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T13:00:04" + }, + { + "id": "swh6pjf0i5azmf3jy4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T17:00:04", + "amountCrypto": 0.00003245, + "pricePerUnit": 2548752, + "totalCost": 82.71, + "fee": 0.29048766, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6530", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T17:00:04" + }, + { + "id": "9u5dxsp06kphrg43xa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-17T21:00:04", + "amountCrypto": 0.00003179, + "pricePerUnit": 2596293, + "totalCost": 82.54, + "fee": 0.28988761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6531", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-17T21:00:04" + }, + { + "id": "ajg012ip9xwqd319ji", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T01:00:07", + "amountCrypto": 0.0000322, + "pricePerUnit": 2568387, + "totalCost": 82.7, + "fee": 0.29047028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6532", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T01:00:07" + }, + { + "id": "irqs19l9rlnwv168mp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T05:00:04", + "amountCrypto": 0.00003237, + "pricePerUnit": 2554893, + "totalCost": 82.7, + "fee": 0.29046972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6533", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T05:00:04" + }, + { + "id": "rp1ee6qj01z5w91rke", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T09:00:03", + "amountCrypto": 0.00003262, + "pricePerUnit": 2535133, + "totalCost": 82.7, + "fee": 0.29044916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6534", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T09:00:03" + }, + { + "id": "ndvpua8d8k9u3w4gl5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T13:00:04", + "amountCrypto": 0.00003235, + "pricePerUnit": 2556470, + "totalCost": 82.7, + "fee": 0.29046942, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6535", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T13:00:04" + }, + { + "id": "ox7lbf2ean7ygkjhrs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T17:00:03", + "amountCrypto": 0.00003207, + "pricePerUnit": 2578328, + "totalCost": 82.69, + "fee": 0.29041738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6536", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T17:00:03" + }, + { + "id": "j7dyirersj5uyc3xsw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-18T21:00:04", + "amountCrypto": 0.00003227, + "pricePerUnit": 2563020, + "totalCost": 82.71, + "fee": 0.29049351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6537", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-18T21:00:04" + }, + { + "id": "arm77li74c7nygg35m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T01:00:05", + "amountCrypto": 0.00003218, + "pricePerUnit": 2569849, + "totalCost": 82.7, + "fee": 0.29045517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6538", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T01:00:05" + }, + { + "id": "q5dek2mfl5ndfi3r0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T05:00:07", + "amountCrypto": 0.00003199, + "pricePerUnit": 2585009, + "totalCost": 82.69, + "fee": 0.29044354, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6539", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T05:00:07" + }, + { + "id": "6p80volh5z2e8pqx0t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T09:00:04", + "amountCrypto": 0.00003189, + "pricePerUnit": 2593364, + "totalCost": 82.7, + "fee": 0.2904714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6540", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T09:00:04" + }, + { + "id": "h899692jg18w2sa6j8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T13:00:07", + "amountCrypto": 0.0000321, + "pricePerUnit": 2576411, + "totalCost": 82.7, + "fee": 0.29047284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6541", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T13:00:07" + }, + { + "id": "348nshp7n1as6riboi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T17:00:04", + "amountCrypto": 0.00003197, + "pricePerUnit": 2586428, + "totalCost": 82.69, + "fee": 0.29042123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6542", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T17:00:04" + }, + { + "id": "4km10mvqaa4mos5eic", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-19T21:00:03", + "amountCrypto": 0.00003172, + "pricePerUnit": 2607513, + "totalCost": 82.71, + "fee": 0.29049928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6543", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-19T21:00:03" + }, + { + "id": "vxn3m8t3hdyd0299wl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T01:00:04", + "amountCrypto": 0.00003312, + "pricePerUnit": 2496996, + "totalCost": 82.7, + "fee": 0.29046489, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6544", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T01:00:04" + }, + { + "id": "yrejns7acvbkwqios6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T05:00:04", + "amountCrypto": 0.00003299, + "pricePerUnit": 2506787, + "totalCost": 82.7, + "fee": 0.29045917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6545", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T05:00:04" + }, + { + "id": "stst00lulzgxc2hw4t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T09:00:04", + "amountCrypto": 0.00003145, + "pricePerUnit": 2629556, + "totalCost": 82.7, + "fee": 0.29046141, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6546", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T09:00:04" + }, + { + "id": "x21c3791on6y4gr9i4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T13:00:04", + "amountCrypto": 0.0000312, + "pricePerUnit": 2650532, + "totalCost": 82.7, + "fee": 0.29045111, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6547", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T13:00:04" + }, + { + "id": "415d57pnya4gv8lcs5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T17:00:05", + "amountCrypto": 0.00003251, + "pricePerUnit": 2544071, + "totalCost": 82.71, + "fee": 0.29049032, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6548", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T17:00:05" + }, + { + "id": "3dwjkwakbqtbnoebq6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-20T21:00:03", + "amountCrypto": 0.00003289, + "pricePerUnit": 2514228, + "totalCost": 82.69, + "fee": 0.29043835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6549", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-20T21:00:03" + }, + { + "id": "vgp1mzsa3rib75fw5c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T01:00:03", + "amountCrypto": 0.00003336, + "pricePerUnit": 2479030, + "totalCost": 82.7, + "fee": 0.29046458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6550", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T01:00:03" + }, + { + "id": "pav2h7crcxm3x6d7ih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T05:00:04", + "amountCrypto": 0.00003303, + "pricePerUnit": 2503978, + "totalCost": 82.71, + "fee": 0.29048548, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6551", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T05:00:04" + }, + { + "id": "ord2xt4vuihzp624sq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T09:00:04", + "amountCrypto": 0.00003326, + "pricePerUnit": 2486611, + "totalCost": 82.7, + "fee": 0.29047957, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6552", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T09:00:04" + }, + { + "id": "0wzi67jv6l199psll2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T13:00:04", + "amountCrypto": 0.00003267, + "pricePerUnit": 2531464, + "totalCost": 82.7, + "fee": 0.29047335, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6553", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T13:00:04" + }, + { + "id": "ueyngf6165dqftg0e4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T17:00:04", + "amountCrypto": 0.00003285, + "pricePerUnit": 2517491, + "totalCost": 82.7, + "fee": 0.29046162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6554", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T17:00:04" + }, + { + "id": "wjsqe0cehg5gxy76dj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-21T21:00:07", + "amountCrypto": 0.000032, + "pricePerUnit": 2584199, + "totalCost": 82.69, + "fee": 0.29044329, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6555", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-21T21:00:07" + }, + { + "id": "7f4yf9wh11lnyz8ybk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T01:00:04", + "amountCrypto": 0.00003217, + "pricePerUnit": 2570899, + "totalCost": 82.71, + "fee": 0.29048351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6556", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T01:00:04" + }, + { + "id": "1xqpvdmd70zwp1ujhp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T05:00:03", + "amountCrypto": 0.00003239, + "pricePerUnit": 2553129, + "totalCost": 82.7, + "fee": 0.29044847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6557", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T05:00:03" + }, + { + "id": "g9kdhq2wtwa3kxvi8f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T09:00:04", + "amountCrypto": 0.0000325, + "pricePerUnit": 2544430, + "totalCost": 82.69, + "fee": 0.29044193, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6558", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T09:00:04" + }, + { + "id": "hj5fcutfqi8gay517x", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T13:00:04", + "amountCrypto": 0.00003257, + "pricePerUnit": 2539311, + "totalCost": 82.71, + "fee": 0.29048195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6559", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T13:00:04" + }, + { + "id": "fr541xj9g4e9ckopex", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T17:00:04", + "amountCrypto": 0.00003277, + "pricePerUnit": 2523644, + "totalCost": 82.7, + "fee": 0.29046248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6560", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T17:00:04" + }, + { + "id": "vqfbw9oy2dlgjwwlu6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-22T21:00:04", + "amountCrypto": 0.00003268, + "pricePerUnit": 2530654, + "totalCost": 82.7, + "fee": 0.29046929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6561", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-22T21:00:04" + }, + { + "id": "omnsuleta0g56nqyxh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T01:00:04", + "amountCrypto": 0.00003285, + "pricePerUnit": 2517295, + "totalCost": 82.69, + "fee": 0.29043895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6562", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T01:00:04" + }, + { + "id": "l46n6gt8kppk8w19ye", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T05:00:04", + "amountCrypto": 0.00003328, + "pricePerUnit": 2484685, + "totalCost": 82.69, + "fee": 0.29042903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6563", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T05:00:04" + }, + { + "id": "mlxn6airt0v45e91yq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T09:00:04", + "amountCrypto": 0.00003315, + "pricePerUnit": 2494294, + "totalCost": 82.69, + "fee": 0.29041331, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6564", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T09:00:04" + }, + { + "id": "438ed5oxlt7iz37t7b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T13:00:04", + "amountCrypto": 0.00003343, + "pricePerUnit": 2473535, + "totalCost": 82.69, + "fee": 0.29042891, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6565", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T13:00:04" + }, + { + "id": "30zpseqw7bzoz2adzr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T17:00:04", + "amountCrypto": 0.00003247, + "pricePerUnit": 2546666, + "totalCost": 82.69, + "fee": 0.29042879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6566", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T17:00:04" + }, + { + "id": "lwddur6722wbcgcy90", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-23T21:00:04", + "amountCrypto": 0.00003295, + "pricePerUnit": 2509692, + "totalCost": 82.69, + "fee": 0.29044321, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6567", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-23T21:00:04" + }, + { + "id": "7qna97qtxp2yju4dg1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T01:00:04", + "amountCrypto": 0.00003287, + "pricePerUnit": 2515687, + "totalCost": 82.69, + "fee": 0.29043014, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6568", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T01:00:04" + }, + { + "id": "5uqfecs5m2vpo8zpgp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T05:00:04", + "amountCrypto": 0.00003297, + "pricePerUnit": 2508105, + "totalCost": 82.69, + "fee": 0.29043574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6569", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T05:00:04" + }, + { + "id": "5y062ctwezn7w8azrz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T09:00:04", + "amountCrypto": 0.00003265, + "pricePerUnit": 2532558, + "totalCost": 82.69, + "fee": 0.29042095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6570", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T09:00:04" + }, + { + "id": "b2bntnaioxaulyf3wx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T13:00:07", + "amountCrypto": 0.00003274, + "pricePerUnit": 2526209, + "totalCost": 82.71, + "fee": 0.29049145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6571", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T13:00:07" + }, + { + "id": "y8x9sv9uqugsw2qpnd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T17:00:03", + "amountCrypto": 0.00003263, + "pricePerUnit": 2534377, + "totalCost": 82.7, + "fee": 0.29045158, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6572", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T17:00:03" + }, + { + "id": "z7eersgnercpitvmll", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-24T21:00:04", + "amountCrypto": 0.00003256, + "pricePerUnit": 2540090, + "totalCost": 82.71, + "fee": 0.29048184, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6573", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-24T21:00:04" + }, + { + "id": "z1b9wix37eyksph7w7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T01:00:03", + "amountCrypto": 0.00003289, + "pricePerUnit": 2514358, + "totalCost": 82.7, + "fee": 0.29045341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6574", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T01:00:03" + }, + { + "id": "413nc9oi0ciqarths1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T05:00:03", + "amountCrypto": 0.00003278, + "pricePerUnit": 2522675, + "totalCost": 82.69, + "fee": 0.2904395, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6575", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T05:00:03" + }, + { + "id": "32s7a8jnqg3jgi92yr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T09:00:04", + "amountCrypto": 0.000033, + "pricePerUnit": 2506155, + "totalCost": 82.7, + "fee": 0.29047402, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6576", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T09:00:04" + }, + { + "id": "dt31qyf7i8lnui52vi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T13:00:04", + "amountCrypto": 0.00003297, + "pricePerUnit": 2508174, + "totalCost": 82.69, + "fee": 0.29044375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6577", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T13:00:04" + }, + { + "id": "0gntrm5hr2ud1mk07s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T17:00:03", + "amountCrypto": 0.00003275, + "pricePerUnit": 2525249, + "totalCost": 82.7, + "fee": 0.29046982, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6578", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T17:00:03" + }, + { + "id": "ypbsfa0yivewajwlvl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-25T21:00:04", + "amountCrypto": 0.00003266, + "pricePerUnit": 2531810, + "totalCost": 82.69, + "fee": 0.29042411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6579", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-25T21:00:04" + }, + { + "id": "un4qymbmoqyj19oc6j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T01:00:03", + "amountCrypto": 0.00003288, + "pricePerUnit": 2514970, + "totalCost": 82.69, + "fee": 0.29043572, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6580", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T01:00:03" + }, + { + "id": "3ce0yutpg27lwyfiw1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T05:00:03", + "amountCrypto": 0.00003279, + "pricePerUnit": 2521708, + "totalCost": 82.69, + "fee": 0.29041669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6581", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T05:00:03" + }, + { + "id": "uni0mf080unn4nzlx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T09:00:04", + "amountCrypto": 0.00003281, + "pricePerUnit": 2520417, + "totalCost": 82.69, + "fee": 0.29044515, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6582", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T09:00:04" + }, + { + "id": "g1dfm82qlnzcanhjhi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T13:00:04", + "amountCrypto": 0.00003289, + "pricePerUnit": 2514729, + "totalCost": 82.71, + "fee": 0.29049626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6583", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T13:00:04" + }, + { + "id": "9r3dwjsc9xog2ggxe9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T17:00:03", + "amountCrypto": 0.00003281, + "pricePerUnit": 2520382, + "totalCost": 82.69, + "fee": 0.29044111, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6584", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T17:00:03" + }, + { + "id": "65xq5trzlfblhj9jpn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-26T21:00:03", + "amountCrypto": 0.00003283, + "pricePerUnit": 2519251, + "totalCost": 82.71, + "fee": 0.29048765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6585", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-26T21:00:03" + }, + { + "id": "ueaozldgbl743itr32", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T01:00:04", + "amountCrypto": 0.00003346, + "pricePerUnit": 2471184, + "totalCost": 82.69, + "fee": 0.29041327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6586", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T01:00:04" + }, + { + "id": "kmjyi0r8ks4e6tlm7m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T05:00:04", + "amountCrypto": 0.00003381, + "pricePerUnit": 2446018, + "totalCost": 82.7, + "fee": 0.29046256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6587", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T05:00:04" + }, + { + "id": "x7xv8nyjpx7qxdugnp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T09:00:04", + "amountCrypto": 0.00003464, + "pricePerUnit": 2387523, + "totalCost": 82.7, + "fee": 0.29047644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6588", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T09:00:04" + }, + { + "id": "vsab0qnmlnffpwb9zt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T13:00:04", + "amountCrypto": 0.00003478, + "pricePerUnit": 2377874, + "totalCost": 82.7, + "fee": 0.29047174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6589", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T13:00:04" + }, + { + "id": "b6y17fr1y3l30f4tgz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T17:00:03", + "amountCrypto": 0.00003407, + "pricePerUnit": 2427469, + "totalCost": 82.7, + "fee": 0.29047672, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6590", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T17:00:03" + }, + { + "id": "a1eiqs1n5hhfh9no1m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-27T21:00:06", + "amountCrypto": 0.00003455, + "pricePerUnit": 2393747, + "totalCost": 82.7, + "fee": 0.29047694, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6591", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-27T21:00:06" + }, + { + "id": "nr8110dbm11g321syi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T01:00:05", + "amountCrypto": 0.00003368, + "pricePerUnit": 2455101, + "totalCost": 82.69, + "fee": 0.29042025, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6592", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T01:00:05" + }, + { + "id": "tzi28fk1boitcum0qm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T05:00:07", + "amountCrypto": 0.00003342, + "pricePerUnit": 2474834, + "totalCost": 82.71, + "fee": 0.29049454, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6593", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T05:00:07" + }, + { + "id": "pca4v9q8vc8s13w52s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T09:00:03", + "amountCrypto": 0.0000333, + "pricePerUnit": 2483350, + "totalCost": 82.7, + "fee": 0.2904475, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6594", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T09:00:03" + }, + { + "id": "m3bi8fegs9r6k16osh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T13:00:04", + "amountCrypto": 0.00003333, + "pricePerUnit": 2480967, + "totalCost": 82.69, + "fee": 0.29043022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6595", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T13:00:04" + }, + { + "id": "6pvj3efmylwea8caf5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T17:00:04", + "amountCrypto": 0.00003329, + "pricePerUnit": 2484188, + "totalCost": 82.7, + "fee": 0.29045827, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6596", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T17:00:04" + }, + { + "id": "p1ma3zvpvh4qvou5a4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-28T21:00:04", + "amountCrypto": 0.00003343, + "pricePerUnit": 2473668, + "totalCost": 82.69, + "fee": 0.29044457, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6597", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-28T21:00:04" + }, + { + "id": "tdemp7sj9r2f4rmd3y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T01:00:04", + "amountCrypto": 0.00003391, + "pricePerUnit": 2439106, + "totalCost": 82.71, + "fee": 0.29049854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6598", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T01:00:04" + }, + { + "id": "c2cdic5tpmxi6e9s3d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T05:00:03", + "amountCrypto": 0.0000336, + "pricePerUnit": 2461279, + "totalCost": 82.7, + "fee": 0.29045953, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6599", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T05:00:03" + }, + { + "id": "82lgqu0halb7c5iq6r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T09:00:05", + "amountCrypto": 0.00003337, + "pricePerUnit": 2478223, + "totalCost": 82.7, + "fee": 0.29045706, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6600", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T09:00:05" + }, + { + "id": "vs03njl8py3ehavucv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T13:00:04", + "amountCrypto": 0.00003323, + "pricePerUnit": 2488984, + "totalCost": 82.71, + "fee": 0.29049451, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6601", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T13:00:04" + }, + { + "id": "hkxwknmrrk4eyjcr8r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T17:00:04", + "amountCrypto": 0.00003348, + "pricePerUnit": 2470417, + "totalCost": 82.71, + "fee": 0.29049668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6602", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T17:00:04" + }, + { + "id": "r1czc84gy3crmon33a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-29T21:00:04", + "amountCrypto": 0.000033, + "pricePerUnit": 2501234, + "totalCost": 82.54, + "fee": 0.28990361, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6603", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-29T21:00:04" + }, + { + "id": "o53jhsscxxfwmkrhju", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T01:00:03", + "amountCrypto": 0.00003298, + "pricePerUnit": 2507519, + "totalCost": 82.7, + "fee": 0.29045602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6604", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T01:00:03" + }, + { + "id": "2gp0nu22217tq9ssi8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T05:00:04", + "amountCrypto": 0.00003261, + "pricePerUnit": 2536238, + "totalCost": 82.71, + "fee": 0.29048666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6605", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T05:00:04" + }, + { + "id": "csr2qtv13buflxcoao", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T09:00:04", + "amountCrypto": 0.00003256, + "pricePerUnit": 2539679, + "totalCost": 82.69, + "fee": 0.29043483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6606", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T09:00:04" + }, + { + "id": "m1yhohb71wg8wp42x7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T13:00:04", + "amountCrypto": 0.00003248, + "pricePerUnit": 2546328, + "totalCost": 82.7, + "fee": 0.29047968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6607", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T13:00:04" + }, + { + "id": "0t52rbyi6xaheglazw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T17:00:08", + "amountCrypto": 0.00003245, + "pricePerUnit": 2548378, + "totalCost": 82.69, + "fee": 0.29044504, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6608", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T17:00:08" + }, + { + "id": "gdjkfmij5g53fqr1av", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-30T21:00:04", + "amountCrypto": 0.00003241, + "pricePerUnit": 2551477, + "totalCost": 82.69, + "fee": 0.29043975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6609", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-30T21:00:04" + }, + { + "id": "007q6xrtihi16grzg5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T01:00:04", + "amountCrypto": 0.00003249, + "pricePerUnit": 2544945, + "totalCost": 82.69, + "fee": 0.29041136, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6610", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T01:00:04" + }, + { + "id": "2vwqt16vnz5gvm0m6n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T05:00:04", + "amountCrypto": 0.00003261, + "pricePerUnit": 2535952, + "totalCost": 82.7, + "fee": 0.29045393, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6611", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T05:00:04" + }, + { + "id": "rrg2aqoe5d3dib8kec", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T09:00:03", + "amountCrypto": 0.00003269, + "pricePerUnit": 2529750, + "totalCost": 82.7, + "fee": 0.29045435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6612", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T09:00:03" + }, + { + "id": "2m1l1b2ojxqoeprzoj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T13:00:03", + "amountCrypto": 0.00003242, + "pricePerUnit": 2551063, + "totalCost": 82.71, + "fee": 0.29048222, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6613", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T13:00:03" + }, + { + "id": "7cjh009bq0rlumbvbq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T17:00:04", + "amountCrypto": 0.00003222, + "pricePerUnit": 2566340, + "totalCost": 82.69, + "fee": 0.29041904, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6614", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T17:00:04" + }, + { + "id": "ose9d4n1ax0w58yg1g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-01-31T21:00:04", + "amountCrypto": 0.00003317, + "pricePerUnit": 2493312, + "totalCost": 82.7, + "fee": 0.29047418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6615", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-01-31T21:00:04" + }, + { + "id": "fz694i07xpmpgbvy40", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T01:00:04", + "amountCrypto": 0.0000331, + "pricePerUnit": 2498613, + "totalCost": 82.7, + "fee": 0.29047747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6616", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T01:00:04" + }, + { + "id": "51595xhplb3tnp9m96", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T05:00:05", + "amountCrypto": 0.00003313, + "pricePerUnit": 2496493, + "totalCost": 82.71, + "fee": 0.29049403, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6617", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T05:00:05" + }, + { + "id": "608br8036zaqcfl21s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T09:00:04", + "amountCrypto": 0.00003315, + "pricePerUnit": 2494761, + "totalCost": 82.7, + "fee": 0.2904677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6618", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T09:00:04" + }, + { + "id": "xbqkd7fe5km8jm9o48", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T13:00:07", + "amountCrypto": 0.00003321, + "pricePerUnit": 2490135, + "totalCost": 82.7, + "fee": 0.29045391, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6619", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T13:00:07" + }, + { + "id": "yt0lhuu80g2sx2k1jj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T17:00:04", + "amountCrypto": 0.0000332, + "pricePerUnit": 2491185, + "totalCost": 82.71, + "fee": 0.29048884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6620", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T17:00:04" + }, + { + "id": "v7wj8h2f4c5zz09wos", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-01T21:00:04", + "amountCrypto": 0.00003332, + "pricePerUnit": 2481652, + "totalCost": 82.69, + "fee": 0.29042321, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6621", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-01T21:00:04" + }, + { + "id": "boy7qnjwlwyepouor9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T01:00:04", + "amountCrypto": 0.00003365, + "pricePerUnit": 2457685, + "totalCost": 82.7, + "fee": 0.29046689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6622", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T01:00:04" + }, + { + "id": "3d92kjjoecrov9kjvj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T05:00:04", + "amountCrypto": 0.0000341, + "pricePerUnit": 2425014, + "totalCost": 82.69, + "fee": 0.29043846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6623", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T05:00:04" + }, + { + "id": "4t5ky1zh07xrs0jo3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T09:00:04", + "amountCrypto": 0.00003399, + "pricePerUnit": 2433072, + "totalCost": 82.7, + "fee": 0.29046353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6624", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T09:00:04" + }, + { + "id": "xwe2st7gu88k9g6b9k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T13:00:03", + "amountCrypto": 0.00003427, + "pricePerUnit": 2413019, + "totalCost": 82.69, + "fee": 0.29044252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6625", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T13:00:03" + }, + { + "id": "tttb9n4li0yml4vuo7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T17:00:03", + "amountCrypto": 0.00003404, + "pricePerUnit": 2429337, + "totalCost": 82.69, + "fee": 0.29044423, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6626", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T17:00:03" + }, + { + "id": "g84kohrdg8qt65csjg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-02T21:00:04", + "amountCrypto": 0.0000342, + "pricePerUnit": 2418007, + "totalCost": 82.7, + "fee": 0.29044846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6627", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-02T21:00:04" + }, + { + "id": "sr83hidm45a1b7jlp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T01:00:04", + "amountCrypto": 0.00003422, + "pricePerUnit": 2416794, + "totalCost": 82.7, + "fee": 0.29047252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6628", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T01:00:04" + }, + { + "id": "yhopptz2ajmlgmbj9t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T05:00:03", + "amountCrypto": 0.00003431, + "pricePerUnit": 2410478, + "totalCost": 82.7, + "fee": 0.2904754, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6629", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T05:00:03" + }, + { + "id": "5c2hguymrrb652oc6v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T09:00:04", + "amountCrypto": 0.0000348, + "pricePerUnit": 2376422, + "totalCost": 82.7, + "fee": 0.29046122, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6630", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T09:00:04" + }, + { + "id": "7nk7brrq1t5bqlkhvr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T13:00:04", + "amountCrypto": 0.0000351, + "pricePerUnit": 2356071, + "totalCost": 82.7, + "fee": 0.29045638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6631", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T13:00:04" + }, + { + "id": "ktpdb7vvpohe76i2k0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T17:00:03", + "amountCrypto": 0.000034, + "pricePerUnit": 2432045, + "totalCost": 82.69, + "fee": 0.29042628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6632", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T17:00:03" + }, + { + "id": "9tmrg2kp98j7zah3gv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-03T21:00:07", + "amountCrypto": 0.00003303, + "pricePerUnit": 2503985, + "totalCost": 82.71, + "fee": 0.2904863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6633", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-03T21:00:07" + }, + { + "id": "c7fbdnc9ynya91rwas", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T01:00:07", + "amountCrypto": 0.00003325, + "pricePerUnit": 2487524, + "totalCost": 82.71, + "fee": 0.29049877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6634", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T01:00:07" + }, + { + "id": "jrw9gw0udu3l0hx813", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T05:00:04", + "amountCrypto": 0.00003342, + "pricePerUnit": 2474337, + "totalCost": 82.69, + "fee": 0.29043617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6635", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T05:00:04" + }, + { + "id": "35sdhbfxf09oykzmjf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T09:00:04", + "amountCrypto": 0.00003422, + "pricePerUnit": 2416854, + "totalCost": 82.7, + "fee": 0.29047975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6636", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T09:00:04" + }, + { + "id": "r1z1iaw5mowdbxxsnr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T13:00:08", + "amountCrypto": 0.00003406, + "pricePerUnit": 2427969, + "totalCost": 82.7, + "fee": 0.29045118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6637", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T13:00:08" + }, + { + "id": "28nbs0sn9udtlru7ui", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T17:00:08", + "amountCrypto": 0.00003415, + "pricePerUnit": 2421791, + "totalCost": 82.7, + "fee": 0.29047774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6638", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T17:00:08" + }, + { + "id": "wxz8tvn16s4v4zypob", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-04T21:00:04", + "amountCrypto": 0.00003435, + "pricePerUnit": 2407774, + "totalCost": 82.71, + "fee": 0.29048773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6639", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-04T21:00:04" + }, + { + "id": "yfkccxii4nxkozqoxo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T01:00:04", + "amountCrypto": 0.00003469, + "pricePerUnit": 2383717, + "totalCost": 82.69, + "fee": 0.29043194, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6640", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T01:00:04" + }, + { + "id": "248cu5yncxrp9z8s8l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T05:00:04", + "amountCrypto": 0.00003463, + "pricePerUnit": 2388040, + "totalCost": 82.7, + "fee": 0.2904555, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6641", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T05:00:04" + }, + { + "id": "iedykh1nmhqs6urqef", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T09:00:05", + "amountCrypto": 0.00003476, + "pricePerUnit": 2378939, + "totalCost": 82.69, + "fee": 0.29043468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6642", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T09:00:05" + }, + { + "id": "1rg4ll2ufvu5d23lv1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T13:00:05", + "amountCrypto": 0.00003468, + "pricePerUnit": 2384860, + "totalCost": 82.71, + "fee": 0.29048742, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6643", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T13:00:05" + }, + { + "id": "w105tutthlvmwn0mvp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T17:00:03", + "amountCrypto": 0.00003479, + "pricePerUnit": 2377158, + "totalCost": 82.7, + "fee": 0.29046779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6644", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T17:00:03" + }, + { + "id": "tuli1clgnvl5orcct2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-05T21:00:04", + "amountCrypto": 0.00003495, + "pricePerUnit": 2366249, + "totalCost": 82.7, + "fee": 0.29046453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6645", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-05T21:00:04" + }, + { + "id": "qnho2ggn4xg1hzso1s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T01:00:04", + "amountCrypto": 0.00003519, + "pricePerUnit": 2349875, + "totalCost": 82.69, + "fee": 0.29043529, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6646", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T01:00:04" + }, + { + "id": "wldb0qj85uy2bw8b88", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T05:00:04", + "amountCrypto": 0.00003491, + "pricePerUnit": 2369163, + "totalCost": 82.71, + "fee": 0.2904893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6647", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T05:00:04" + }, + { + "id": "yzht6c1shyyaf6fu42", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T09:00:05", + "amountCrypto": 0.00003461, + "pricePerUnit": 2389603, + "totalCost": 82.7, + "fee": 0.29047773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6648", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T09:00:05" + }, + { + "id": "jfcdoe07r50jof7wlx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T13:00:07", + "amountCrypto": 0.0000344, + "pricePerUnit": 2403948, + "totalCost": 82.7, + "fee": 0.29044837, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6649", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T13:00:07" + }, + { + "id": "akn5ynm787swbwjfda", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T17:00:04", + "amountCrypto": 0.00003498, + "pricePerUnit": 2364309, + "totalCost": 82.7, + "fee": 0.29047541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6650", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T17:00:04" + }, + { + "id": "yxz7ppi2c6zwwnab2z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-06T21:00:04", + "amountCrypto": 0.00003549, + "pricePerUnit": 2329893, + "totalCost": 82.69, + "fee": 0.29042058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6651", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-06T21:00:04" + }, + { + "id": "si25r42dj65qamj5zo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T01:00:07", + "amountCrypto": 0.00003527, + "pricePerUnit": 2344629, + "totalCost": 82.7, + "fee": 0.29044569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6652", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T01:00:07" + }, + { + "id": "rq0873dy4lou8xljqj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T05:00:03", + "amountCrypto": 0.00003498, + "pricePerUnit": 2364055, + "totalCost": 82.69, + "fee": 0.29044425, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6653", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T05:00:03" + }, + { + "id": "0vbjyzb5izc8e4zidw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T09:00:07", + "amountCrypto": 0.00003521, + "pricePerUnit": 2348423, + "totalCost": 82.69, + "fee": 0.29042084, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6654", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T09:00:07" + }, + { + "id": "88etk52wptsoes0ssq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T13:00:07", + "amountCrypto": 0.00003487, + "pricePerUnit": 2371816, + "totalCost": 82.71, + "fee": 0.29048144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6655", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T13:00:07" + }, + { + "id": "f04c1sqsm111vhi9gi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T17:00:04", + "amountCrypto": 0.00003457, + "pricePerUnit": 2392174, + "totalCost": 82.7, + "fee": 0.29045411, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6656", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T17:00:04" + }, + { + "id": "p0kd2bhkmobub2dzro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-07T21:00:04", + "amountCrypto": 0.00003493, + "pricePerUnit": 2367866, + "totalCost": 82.71, + "fee": 0.29049669, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6657", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-07T21:00:04" + }, + { + "id": "7iomutgir3vcc93ufj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T01:00:04", + "amountCrypto": 0.00003508, + "pricePerUnit": 2357212, + "totalCost": 82.69, + "fee": 0.29043144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6658", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T01:00:04" + }, + { + "id": "wl1v6z9vjox1mu3jf1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T05:00:04", + "amountCrypto": 0.00003497, + "pricePerUnit": 2365183, + "totalCost": 82.71, + "fee": 0.29049974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6659", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T05:00:04" + }, + { + "id": "qjt2kydzuyqjxiq2vy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T09:00:04", + "amountCrypto": 0.00003514, + "pricePerUnit": 2353140, + "totalCost": 82.69, + "fee": 0.2904256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6660", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T09:00:04" + }, + { + "id": "lmej7hu7rb62dq34yj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T13:00:04", + "amountCrypto": 0.00003522, + "pricePerUnit": 2347735, + "totalCost": 82.69, + "fee": 0.29041825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6661", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T13:00:04" + }, + { + "id": "29wn275pnttww3v47p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T17:00:07", + "amountCrypto": 0.00003531, + "pricePerUnit": 2342381, + "totalCost": 82.71, + "fee": 0.29049635, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6662", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T17:00:07" + }, + { + "id": "wt63wswiq2igwmioop", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-08T21:00:08", + "amountCrypto": 0.00003502, + "pricePerUnit": 2361696, + "totalCost": 82.71, + "fee": 0.29048624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6663", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-08T21:00:08" + }, + { + "id": "j5knn7qeuues5imb49", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T01:00:04", + "amountCrypto": 0.00003508, + "pricePerUnit": 2357504, + "totalCost": 82.7, + "fee": 0.29046738, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6664", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T01:00:04" + }, + { + "id": "l0mkpcbz5vkvgfc3xk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T05:00:05", + "amountCrypto": 0.00003487, + "pricePerUnit": 2371739, + "totalCost": 82.7, + "fee": 0.29047199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6665", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T05:00:05" + }, + { + "id": "nx2fj67iecqapszo23", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T09:00:04", + "amountCrypto": 0.00003484, + "pricePerUnit": 2373827, + "totalCost": 82.7, + "fee": 0.29047761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6666", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T09:00:04" + }, + { + "id": "wylbxbdz5hb9y8ctjj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T13:00:04", + "amountCrypto": 0.000035, + "pricePerUnit": 2362963, + "totalCost": 82.7, + "fee": 0.29047611, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6667", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T13:00:04" + }, + { + "id": "tgy8ps0iuird6ee6on", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T17:00:04", + "amountCrypto": 0.00003504, + "pricePerUnit": 2359877, + "totalCost": 82.69, + "fee": 0.29042821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6668", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T17:00:04" + }, + { + "id": "e8v8att63crcsju0ih", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-09T21:00:07", + "amountCrypto": 0.0000352, + "pricePerUnit": 2349611, + "totalCost": 82.71, + "fee": 0.29048523, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6669", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-09T21:00:07" + }, + { + "id": "2uz9mgo0y8yz6v8l73", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T01:00:04", + "amountCrypto": 0.00003514, + "pricePerUnit": 2353566, + "totalCost": 82.7, + "fee": 0.29047819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6670", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T01:00:04" + }, + { + "id": "mv9dhi5ljmlvngg0mh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T05:00:05", + "amountCrypto": 0.00003493, + "pricePerUnit": 2367294, + "totalCost": 82.69, + "fee": 0.29042647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6671", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T05:00:05" + }, + { + "id": "emvwfxwndtys6rf1ye", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T09:00:04", + "amountCrypto": 0.00003484, + "pricePerUnit": 2373564, + "totalCost": 82.69, + "fee": 0.29044535, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6672", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T09:00:04" + }, + { + "id": "17lk9c0hyuc5av0gv8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T13:00:07", + "amountCrypto": 0.00003467, + "pricePerUnit": 2385128, + "totalCost": 82.69, + "fee": 0.29043637, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6673", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T13:00:07" + }, + { + "id": "aoo9fhi9ujr0m3e82i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T17:00:05", + "amountCrypto": 0.00003473, + "pricePerUnit": 2380876, + "totalCost": 82.69, + "fee": 0.29042027, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6674", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T17:00:05" + }, + { + "id": "79t4h24wic7eg4nabw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-10T21:00:07", + "amountCrypto": 0.00003474, + "pricePerUnit": 2380816, + "totalCost": 82.71, + "fee": 0.29049655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6675", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-10T21:00:07" + }, + { + "id": "2lr43ycm9tgjd3k8c0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T01:00:04", + "amountCrypto": 0.00003475, + "pricePerUnit": 2379758, + "totalCost": 82.7, + "fee": 0.29045109, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6676", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T01:00:04" + }, + { + "id": "7ttmgmfigmknnzc2ny", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T05:00:04", + "amountCrypto": 0.00003462, + "pricePerUnit": 2388515, + "totalCost": 82.69, + "fee": 0.29042928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6677", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T05:00:04" + }, + { + "id": "upa0s29zpye6bq1uld", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T09:00:04", + "amountCrypto": 0.0000344, + "pricePerUnit": 2403949, + "totalCost": 82.7, + "fee": 0.29044849, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6678", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T09:00:04" + }, + { + "id": "xro78ujz3yqcj2aijh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T13:00:04", + "amountCrypto": 0.00003454, + "pricePerUnit": 2393984, + "totalCost": 82.69, + "fee": 0.29042169, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6679", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T13:00:04" + }, + { + "id": "otb4yp3xa2b28piri5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T17:00:04", + "amountCrypto": 0.00003497, + "pricePerUnit": 2364780, + "totalCost": 82.7, + "fee": 0.29045024, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6680", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T17:00:04" + }, + { + "id": "qtrm5d3ehopx47yik4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-11T21:00:04", + "amountCrypto": 0.00003574, + "pricePerUnit": 2314117, + "totalCost": 82.71, + "fee": 0.29048602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6681", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-11T21:00:04" + }, + { + "id": "bjzbezhmjrwg7ho9tl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T01:00:03", + "amountCrypto": 0.00003548, + "pricePerUnit": 2331161, + "totalCost": 82.71, + "fee": 0.29049678, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6682", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T01:00:03" + }, + { + "id": "0no9ptbc617yx3u0v7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T05:00:07", + "amountCrypto": 0.00003565, + "pricePerUnit": 2319870, + "totalCost": 82.7, + "fee": 0.29047491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6683", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T05:00:07" + }, + { + "id": "mjra5b0qfc5lvu49ud", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T09:00:04", + "amountCrypto": 0.00003543, + "pricePerUnit": 2334322, + "totalCost": 82.71, + "fee": 0.29048074, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6684", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T09:00:04" + }, + { + "id": "0orjsioug7eng89jxz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T13:00:03", + "amountCrypto": 0.00003543, + "pricePerUnit": 2334116, + "totalCost": 82.7, + "fee": 0.29045516, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6685", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T13:00:03" + }, + { + "id": "j9j9kusgx0qzcvp2va", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T17:00:04", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325373, + "totalCost": 82.69, + "fee": 0.29042885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6686", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T17:00:04" + }, + { + "id": "9zxudzv918jrzinb3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-12T21:00:03", + "amountCrypto": 0.00003519, + "pricePerUnit": 2349840, + "totalCost": 82.69, + "fee": 0.29043095, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6687", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-12T21:00:03" + }, + { + "id": "ar98c6fwnnyixo2yd8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T01:00:03", + "amountCrypto": 0.00003493, + "pricePerUnit": 2367284, + "totalCost": 82.69, + "fee": 0.29042524, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6688", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T01:00:03" + }, + { + "id": "vn1fvlo61i343fkbxs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T05:00:08", + "amountCrypto": 0.00003511, + "pricePerUnit": 2355697, + "totalCost": 82.71, + "fee": 0.29049302, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6689", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T05:00:08" + }, + { + "id": "kzb7m766g2x8nifjht", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T09:00:08", + "amountCrypto": 0.00003566, + "pricePerUnit": 2319020, + "totalCost": 82.7, + "fee": 0.29044991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6690", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T09:00:08" + }, + { + "id": "ys03ehlch29d7jqjyt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T13:00:05", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320636, + "totalCost": 82.71, + "fee": 0.2904893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6691", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T13:00:05" + }, + { + "id": "pwa2w2w2ka5wl8zk2v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T17:00:04", + "amountCrypto": 0.00003572, + "pricePerUnit": 2310764, + "totalCost": 82.54, + "fee": 0.28990281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6692", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T17:00:04" + }, + { + "id": "dczeshbuto1vqdbae8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-13T21:00:05", + "amountCrypto": 0.00003586, + "pricePerUnit": 2306276, + "totalCost": 82.7, + "fee": 0.29047385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6693", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-13T21:00:05" + }, + { + "id": "sbl4lymr0kph30fwjq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T01:00:04", + "amountCrypto": 0.0000356, + "pricePerUnit": 2322799, + "totalCost": 82.69, + "fee": 0.29043377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6694", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T01:00:04" + }, + { + "id": "0v557ogsio6qihqp4g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T05:00:04", + "amountCrypto": 0.00003552, + "pricePerUnit": 2328006, + "totalCost": 82.69, + "fee": 0.29043071, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6695", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T05:00:04" + }, + { + "id": "7ewrgmf6fdqcwaffej", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T09:00:04", + "amountCrypto": 0.00003549, + "pricePerUnit": 2330284, + "totalCost": 82.7, + "fee": 0.29046932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6696", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T09:00:04" + }, + { + "id": "g2guzrxerlnqycqtsg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T13:00:04", + "amountCrypto": 0.00003551, + "pricePerUnit": 2328719, + "totalCost": 82.69, + "fee": 0.29043784, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6697", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T13:00:04" + }, + { + "id": "pq78i4mupvqnfumtw9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T17:00:04", + "amountCrypto": 0.00003571, + "pricePerUnit": 2315750, + "totalCost": 82.7, + "fee": 0.29044701, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6698", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T17:00:04" + }, + { + "id": "8cy7z1nxfd5iwrc0ez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-14T21:00:04", + "amountCrypto": 0.00003532, + "pricePerUnit": 2341195, + "totalCost": 82.69, + "fee": 0.2904315, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6699", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-14T21:00:04" + }, + { + "id": "ihhs8ugebdx49jv31d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T01:00:04", + "amountCrypto": 0.00003545, + "pricePerUnit": 2332823, + "totalCost": 82.7, + "fee": 0.29045811, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6700", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T01:00:04" + }, + { + "id": "w9k4caxfp4e3qwj6mf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T05:00:04", + "amountCrypto": 0.00003535, + "pricePerUnit": 2339646, + "totalCost": 82.71, + "fee": 0.29048588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6701", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T05:00:04" + }, + { + "id": "k4wmx2cxsoua5tmhbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T09:00:04", + "amountCrypto": 0.00003544, + "pricePerUnit": 2333798, + "totalCost": 82.71, + "fee": 0.29049746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6702", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T09:00:04" + }, + { + "id": "fxde4tdr3bv5b1ngxk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T13:00:04", + "amountCrypto": 0.00003544, + "pricePerUnit": 2333786, + "totalCost": 82.71, + "fee": 0.29049596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6703", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T13:00:04" + }, + { + "id": "g29mkxweezdr0sv17e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T17:00:03", + "amountCrypto": 0.00003537, + "pricePerUnit": 2338332, + "totalCost": 82.71, + "fee": 0.29048696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6704", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T17:00:03" + }, + { + "id": "qrmnnpcbbdrooad340", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-15T21:00:04", + "amountCrypto": 0.00003537, + "pricePerUnit": 2338227, + "totalCost": 82.7, + "fee": 0.29047389, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6705", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-15T21:00:04" + }, + { + "id": "diq5avooh1dpstmx7z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T01:00:01", + "amountCrypto": 0.00003537, + "pricePerUnit": 2333610, + "totalCost": 82.54, + "fee": 0.28990038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6706", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T01:00:01" + }, + { + "id": "joepzea02q504qucsn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T05:00:08", + "amountCrypto": 0.00003537, + "pricePerUnit": 2337897, + "totalCost": 82.69, + "fee": 0.29043291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6707", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T05:00:08" + }, + { + "id": "ema4z4qojyckkxa6p6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T09:00:04", + "amountCrypto": 0.00003548, + "pricePerUnit": 2326234, + "totalCost": 82.53, + "fee": 0.28988285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6708", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T09:00:04" + }, + { + "id": "pocqbhq9m8g2wcl3jp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T13:00:04", + "amountCrypto": 0.00003549, + "pricePerUnit": 2330375, + "totalCost": 82.71, + "fee": 0.29048069, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6709", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T13:00:04" + }, + { + "id": "bvd1sxkk9on2xopkqz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T17:00:03", + "amountCrypto": 0.0000356, + "pricePerUnit": 2322875, + "totalCost": 82.69, + "fee": 0.29044317, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6710", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T17:00:03" + }, + { + "id": "pj1bdlpv24agbpqpf5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-16T21:00:04", + "amountCrypto": 0.00003561, + "pricePerUnit": 2322460, + "totalCost": 82.7, + "fee": 0.29047285, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6711", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-16T21:00:04" + }, + { + "id": "0pddtbechhaek0nm4p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T01:00:07", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305772, + "totalCost": 82.71, + "fee": 0.29049133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6712", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T01:00:07" + }, + { + "id": "ootgpidirvhsneytpm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T05:00:09", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305269, + "totalCost": 82.69, + "fee": 0.29042792, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6713", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T05:00:09" + }, + { + "id": "yclp3kbxis3yrdxby2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T09:00:04", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308487, + "totalCost": 82.69, + "fee": 0.29042794, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6714", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T09:00:04" + }, + { + "id": "bp8d07538r1jp8jm0d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T13:00:04", + "amountCrypto": 0.00003585, + "pricePerUnit": 2306673, + "totalCost": 82.69, + "fee": 0.29044284, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6715", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T13:00:04" + }, + { + "id": "y72np07mbri20pkri0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T17:00:04", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299537, + "totalCost": 82.69, + "fee": 0.29043264, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6716", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T17:00:04" + }, + { + "id": "g28yb5swoo3qenm8m6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-17T21:00:04", + "amountCrypto": 0.00003603, + "pricePerUnit": 2295208, + "totalCost": 82.7, + "fee": 0.29045021, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6717", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-17T21:00:04" + }, + { + "id": "ddpwy68uv994uf258r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T01:00:03", + "amountCrypto": 0.00003595, + "pricePerUnit": 2300401, + "totalCost": 82.7, + "fee": 0.29046099, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6718", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T01:00:03" + }, + { + "id": "k9iusb640w9997vlfz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T05:00:07", + "amountCrypto": 0.00003573, + "pricePerUnit": 2314459, + "totalCost": 82.7, + "fee": 0.29044765, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6719", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T05:00:07" + }, + { + "id": "k2gytj3ko551vtsr3w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T09:00:05", + "amountCrypto": 0.00003601, + "pricePerUnit": 2296707, + "totalCost": 82.7, + "fee": 0.29047854, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6720", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T09:00:05" + }, + { + "id": "mkmigeg5uqifyef3lj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T13:00:04", + "amountCrypto": 0.00003589, + "pricePerUnit": 2304146, + "totalCost": 82.7, + "fee": 0.29044832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6721", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T13:00:04" + }, + { + "id": "t03ri22unsxy3b4tdf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T17:00:03", + "amountCrypto": 0.00003598, + "pricePerUnit": 2298734, + "totalCost": 82.71, + "fee": 0.2904927, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6722", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T17:00:03" + }, + { + "id": "td69q690ekbgp0i0e2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-18T21:00:04", + "amountCrypto": 0.00003645, + "pricePerUnit": 2269063, + "totalCost": 82.71, + "fee": 0.29048885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6723", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-18T21:00:04" + }, + { + "id": "mcn29t699t0dh274n1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T01:00:05", + "amountCrypto": 0.000036, + "pricePerUnit": 2297126, + "totalCost": 82.7, + "fee": 0.29045085, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6724", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T01:00:05" + }, + { + "id": "fyohy8ujanr9l5reso", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T05:00:04", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305286, + "totalCost": 82.69, + "fee": 0.29043007, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6725", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T05:00:04" + }, + { + "id": "45p9iw7haywb1nwwf8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T09:00:07", + "amountCrypto": 0.00003583, + "pricePerUnit": 2308213, + "totalCost": 82.7, + "fee": 0.29047458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6726", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T09:00:07" + }, + { + "id": "iih2c8080nmucorghy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T13:00:03", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325780, + "totalCost": 82.7, + "fee": 0.29047968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6727", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T13:00:03" + }, + { + "id": "ow7k6yxbosfoc4d8is", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T17:00:07", + "amountCrypto": 0.00003566, + "pricePerUnit": 2319177, + "totalCost": 82.7, + "fee": 0.29046962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6728", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T17:00:07" + }, + { + "id": "xhukm0o66fzg5gbpdu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-19T21:00:03", + "amountCrypto": 0.00003566, + "pricePerUnit": 2319091, + "totalCost": 82.7, + "fee": 0.29045883, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6729", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-19T21:00:03" + }, + { + "id": "z4eeilm57hlguipwxy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T01:00:08", + "amountCrypto": 0.00003547, + "pricePerUnit": 2331677, + "totalCost": 82.7, + "fee": 0.29047923, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6730", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T01:00:08" + }, + { + "id": "0elfha0avh5q2iye94", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T05:00:07", + "amountCrypto": 0.00003533, + "pricePerUnit": 2340817, + "totalCost": 82.7, + "fee": 0.29046683, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6731", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T05:00:07" + }, + { + "id": "8omcyrchbccx2v7588", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T09:00:07", + "amountCrypto": 0.0000353, + "pricePerUnit": 2342422, + "totalCost": 82.69, + "fee": 0.29041918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6732", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T09:00:07" + }, + { + "id": "g2kemqx6l4nuc65cmw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T13:00:04", + "amountCrypto": 0.00003529, + "pricePerUnit": 2343177, + "totalCost": 82.69, + "fee": 0.29043047, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6733", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T13:00:04" + }, + { + "id": "3pnm6og0vtgnxfvekb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T17:00:09", + "amountCrypto": 0.00003545, + "pricePerUnit": 2332540, + "totalCost": 82.69, + "fee": 0.29042278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6734", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T17:00:09" + }, + { + "id": "f2bzglagvgy2wn0rze", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-20T21:00:07", + "amountCrypto": 0.0000351, + "pricePerUnit": 2356324, + "totalCost": 82.71, + "fee": 0.29048752, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6735", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-20T21:00:07" + }, + { + "id": "5u2g8vvfepr1vooc4n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T01:00:07", + "amountCrypto": 0.00003512, + "pricePerUnit": 2354668, + "totalCost": 82.7, + "fee": 0.29044876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6736", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T01:00:07" + }, + { + "id": "0k0xpiemjcyav5atjc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T05:00:07", + "amountCrypto": 0.00003515, + "pricePerUnit": 2352890, + "totalCost": 82.7, + "fee": 0.29047743, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6737", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T05:00:07" + }, + { + "id": "orj04vr2cgdybv7rq7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T09:00:05", + "amountCrypto": 0.00003513, + "pricePerUnit": 2354196, + "totalCost": 82.7, + "fee": 0.29047333, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6738", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T09:00:05" + }, + { + "id": "j6u4htq4q8yr8qm6hp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T13:00:08", + "amountCrypto": 0.00003492, + "pricePerUnit": 2367908, + "totalCost": 82.69, + "fee": 0.29041869, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6739", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T13:00:08" + }, + { + "id": "azxkqmy4va6r4q2gbw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T17:00:07", + "amountCrypto": 0.00003503, + "pricePerUnit": 2360670, + "totalCost": 82.69, + "fee": 0.29044301, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6740", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T17:00:07" + }, + { + "id": "9qx9ykf4tube0v8vwm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-21T21:00:07", + "amountCrypto": 0.00003605, + "pricePerUnit": 2293716, + "totalCost": 82.69, + "fee": 0.29042256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6741", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-21T21:00:07" + }, + { + "id": "lhxxyjkcpvqfche6xf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T01:00:07", + "amountCrypto": 0.00003571, + "pricePerUnit": 2315599, + "totalCost": 82.69, + "fee": 0.29042805, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6742", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T01:00:07" + }, + { + "id": "lo3ludz10wyvb2lhx3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T05:00:04", + "amountCrypto": 0.00003567, + "pricePerUnit": 2318650, + "totalCost": 82.71, + "fee": 0.29048502, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6743", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T05:00:04" + }, + { + "id": "9h7v2j2fnc97jjxsvo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T09:00:06", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320131, + "totalCost": 82.69, + "fee": 0.29042605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6744", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T09:00:06" + }, + { + "id": "msg056iyfwrrmo6ypy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T13:00:04", + "amountCrypto": 0.0000356, + "pricePerUnit": 2323106, + "totalCost": 82.7, + "fee": 0.29047213, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6745", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T13:00:04" + }, + { + "id": "y8gs2h79h3ln3eewk0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T17:00:04", + "amountCrypto": 0.00003556, + "pricePerUnit": 2321156, + "totalCost": 82.54, + "fee": 0.28990219, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6746", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T17:00:04" + }, + { + "id": "st4jxrg5mbnoqqqk7g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-22T21:00:04", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325493, + "totalCost": 82.69, + "fee": 0.2904439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6747", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-22T21:00:04" + }, + { + "id": "5ww3432wxwdfwj2t45", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T01:00:05", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325491, + "totalCost": 82.69, + "fee": 0.29044362, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6748", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T01:00:05" + }, + { + "id": "wu7chygeilvuc6zkze", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T05:00:04", + "amountCrypto": 0.0000356, + "pricePerUnit": 2322941, + "totalCost": 82.7, + "fee": 0.29045145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6749", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T05:00:04" + }, + { + "id": "inhf6o306km0090emk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T09:00:04", + "amountCrypto": 0.00003557, + "pricePerUnit": 2324791, + "totalCost": 82.69, + "fee": 0.29043788, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6750", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T09:00:04" + }, + { + "id": "ppp6gjst60hwfjujau", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T13:00:07", + "amountCrypto": 0.00003574, + "pricePerUnit": 2313750, + "totalCost": 82.69, + "fee": 0.29043997, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6751", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T13:00:07" + }, + { + "id": "jfcnksa1slvwmsir53", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T17:00:04", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299700, + "totalCost": 82.7, + "fee": 0.29045328, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6752", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T17:00:04" + }, + { + "id": "q59qtviellntprp6nm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-23T21:00:07", + "amountCrypto": 0.00003589, + "pricePerUnit": 2299801, + "totalCost": 82.54, + "fee": 0.28990066, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6753", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-23T21:00:07" + }, + { + "id": "v886nzfml7y505m6ne", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T01:00:04", + "amountCrypto": 0.00003583, + "pricePerUnit": 2308340, + "totalCost": 82.71, + "fee": 0.2904906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6754", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T01:00:04" + }, + { + "id": "nopug6gdep2x4dfbbb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T05:00:07", + "amountCrypto": 0.00003617, + "pricePerUnit": 2286600, + "totalCost": 82.71, + "fee": 0.29048533, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6755", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T05:00:07" + }, + { + "id": "bjfdzfeodytjobyi7c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T09:00:05", + "amountCrypto": 0.00003592, + "pricePerUnit": 2297677, + "totalCost": 82.53, + "fee": 0.28987501, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6756", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T09:00:05" + }, + { + "id": "bbz11084j8pj6cq3fp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T13:00:05", + "amountCrypto": 0.00003586, + "pricePerUnit": 2305917, + "totalCost": 82.69, + "fee": 0.29042865, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6757", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T13:00:05" + }, + { + "id": "cehgnkqzv9yslc1o5h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T17:00:07", + "amountCrypto": 0.00003652, + "pricePerUnit": 2260221, + "totalCost": 82.54, + "fee": 0.28991255, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6758", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T17:00:07" + }, + { + "id": "3s8u6k2awf6k2mv9ja", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-24T21:00:07", + "amountCrypto": 0.00003673, + "pricePerUnit": 2251501, + "totalCost": 82.7, + "fee": 0.29045478, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6759", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-24T21:00:07" + }, + { + "id": "gti8nahy3vvfme78c7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T01:00:08", + "amountCrypto": 0.00003763, + "pricePerUnit": 2197882, + "totalCost": 82.71, + "fee": 0.29048519, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6760", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T01:00:08" + }, + { + "id": "ldkqdv7lykrkzfbqw6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T05:00:04", + "amountCrypto": 0.00003744, + "pricePerUnit": 2208730, + "totalCost": 82.69, + "fee": 0.29044498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6761", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T05:00:04" + }, + { + "id": "epnnyd8w55csjh00hz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T09:00:06", + "amountCrypto": 0.00003858, + "pricePerUnit": 2143824, + "totalCost": 82.71, + "fee": 0.29049368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6762", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T09:00:06" + }, + { + "id": "ziwdm7ubqiioexss2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T13:00:07", + "amountCrypto": 0.00003877, + "pricePerUnit": 2132896, + "totalCost": 82.69, + "fee": 0.29043636, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6763", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T13:00:07" + }, + { + "id": "wbph6t7wgouba3qmu6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T17:00:05", + "amountCrypto": 0.0000398, + "pricePerUnit": 2077655, + "totalCost": 82.69, + "fee": 0.29043032, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6764", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T17:00:05" + }, + { + "id": "7vvdae051jtnepl4yq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-25T21:00:07", + "amountCrypto": 0.00003952, + "pricePerUnit": 2092554, + "totalCost": 82.7, + "fee": 0.29045514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6765", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-25T21:00:07" + }, + { + "id": "su2kewu8vwo84d8csi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T01:00:07", + "amountCrypto": 0.00003918, + "pricePerUnit": 2110777, + "totalCost": 82.7, + "fee": 0.29046399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6766", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T01:00:07" + }, + { + "id": "puwn4bet18v53cfa7p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T05:00:07", + "amountCrypto": 0.00003903, + "pricePerUnit": 2118664, + "totalCost": 82.69, + "fee": 0.29043308, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6767", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T05:00:07" + }, + { + "id": "kx1njlvxucbc1trakf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T09:00:04", + "amountCrypto": 0.00003909, + "pricePerUnit": 2115536, + "totalCost": 82.7, + "fee": 0.29045013, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6768", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T09:00:04" + }, + { + "id": "jusffj84ibog5fjj9u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T13:00:07", + "amountCrypto": 0.0000391, + "pricePerUnit": 2115257, + "totalCost": 82.71, + "fee": 0.29048602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6769", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T13:00:07" + }, + { + "id": "e6a3ny88au4m7xkkub", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T17:00:07", + "amountCrypto": 0.00003967, + "pricePerUnit": 2084513, + "totalCost": 82.69, + "fee": 0.29043722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6770", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T17:00:07" + }, + { + "id": "rr6jij4rduk35y4gbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-26T21:00:04", + "amountCrypto": 0.00004134, + "pricePerUnit": 2000290, + "totalCost": 82.69, + "fee": 0.29043492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6771", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-26T21:00:04" + }, + { + "id": "p6bqpbs6jzsnds86kn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T01:00:05", + "amountCrypto": 0.00004126, + "pricePerUnit": 2004150, + "totalCost": 82.69, + "fee": 0.29043234, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6772", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T01:00:05" + }, + { + "id": "gmesa2zn4xj9sp81da", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T05:00:07", + "amountCrypto": 0.00004071, + "pricePerUnit": 2031540, + "totalCost": 82.7, + "fee": 0.29047704, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6773", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T05:00:07" + }, + { + "id": "a3pcur4150xakjum1p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T09:00:04", + "amountCrypto": 0.00004008, + "pricePerUnit": 2063310, + "totalCost": 82.7, + "fee": 0.2904541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6774", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T09:00:04" + }, + { + "id": "q0qoctqvqnamoty0mh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T13:00:04", + "amountCrypto": 0.00003984, + "pricePerUnit": 2075636, + "totalCost": 82.69, + "fee": 0.2904397, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6775", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T13:00:04" + }, + { + "id": "j6ma9mgqkl1ot1kacq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T17:00:04", + "amountCrypto": 0.00004013, + "pricePerUnit": 2060609, + "totalCost": 82.69, + "fee": 0.29043579, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6776", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T17:00:04" + }, + { + "id": "3ijzep887rgdrtofpy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-27T21:00:07", + "amountCrypto": 0.00004083, + "pricePerUnit": 2025684, + "totalCost": 82.71, + "fee": 0.29049355, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6777", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-27T21:00:07" + }, + { + "id": "5325tw3i1b5i9ugxfv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T01:00:08", + "amountCrypto": 0.00004051, + "pricePerUnit": 2041487, + "totalCost": 82.7, + "fee": 0.29046536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6778", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T01:00:08" + }, + { + "id": "e8uu9nnjjdfkms9loz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T05:00:09", + "amountCrypto": 0.00004264, + "pricePerUnit": 1939314, + "totalCost": 82.69, + "fee": 0.29043626, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6779", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T05:00:09" + }, + { + "id": "1qse19le6qb58km1yo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T09:00:08", + "amountCrypto": 0.00004333, + "pricePerUnit": 1908743, + "totalCost": 82.71, + "fee": 0.29048363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6780", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T09:00:08" + }, + { + "id": "cpc0vqj0up1v6kgbuq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T13:00:09", + "amountCrypto": 0.00004252, + "pricePerUnit": 1945015, + "totalCost": 82.7, + "fee": 0.29047016, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6781", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T13:00:09" + }, + { + "id": "ef8nsm1s2x50msr0rb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T17:00:04", + "amountCrypto": 0.00004075, + "pricePerUnit": 2029463, + "totalCost": 82.7, + "fee": 0.2904653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6782", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T17:00:04" + }, + { + "id": "ody6bo2sjtlev285pp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-02-28T21:00:04", + "amountCrypto": 0.00004033, + "pricePerUnit": 2050836, + "totalCost": 82.71, + "fee": 0.29049889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6783", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-02-28T21:00:04" + }, + { + "id": "0p60j5c6w9lfprf7zq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T01:00:05", + "amountCrypto": 0.00004038, + "pricePerUnit": 2048035, + "totalCost": 82.7, + "fee": 0.29046179, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6784", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T01:00:05" + }, + { + "id": "y3fy7i7za3zif4jsbn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T05:00:04", + "amountCrypto": 0.00003996, + "pricePerUnit": 2069582, + "totalCost": 82.7, + "fee": 0.29046483, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6785", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T05:00:04" + }, + { + "id": "ajaowtucq2lj7ikcfh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T09:00:05", + "amountCrypto": 0.00004018, + "pricePerUnit": 2058376, + "totalCost": 82.71, + "fee": 0.29048259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6786", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T09:00:05" + }, + { + "id": "7rvevnycm33oh06kr3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T13:00:04", + "amountCrypto": 0.00004024, + "pricePerUnit": 2055345, + "totalCost": 82.71, + "fee": 0.29048791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6787", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T13:00:04" + }, + { + "id": "h5s7jrdhdkkg2rybq4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T17:00:04", + "amountCrypto": 0.00004015, + "pricePerUnit": 2059823, + "totalCost": 82.7, + "fee": 0.2904697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6788", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T17:00:04" + }, + { + "id": "wgzrwzh8cs7jag4avt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-01T21:00:04", + "amountCrypto": 0.00003988, + "pricePerUnit": 2073564, + "totalCost": 82.69, + "fee": 0.29044106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6789", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-01T21:00:04" + }, + { + "id": "xa9nda5g5llfz0otig", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T01:00:04", + "amountCrypto": 0.00003955, + "pricePerUnit": 2090969, + "totalCost": 82.7, + "fee": 0.29045547, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6790", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T01:00:04" + }, + { + "id": "sw6ik3zkbqininyaqo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T05:00:04", + "amountCrypto": 0.00003964, + "pricePerUnit": 2081885, + "totalCost": 82.53, + "fee": 0.28985164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6791", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T05:00:04" + }, + { + "id": "reu9lv3bq4d21frzue", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T09:00:04", + "amountCrypto": 0.00003947, + "pricePerUnit": 2095135, + "totalCost": 82.69, + "fee": 0.29044538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6792", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T09:00:04" + }, + { + "id": "qgtrxy6sejgk87lb19", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T13:00:04", + "amountCrypto": 0.00003953, + "pricePerUnit": 2092220, + "totalCost": 82.71, + "fee": 0.29048229, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6793", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T13:00:04" + }, + { + "id": "p4e7bgsyby7figo8jp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T17:00:03", + "amountCrypto": 0.00003896, + "pricePerUnit": 2122696, + "totalCost": 82.7, + "fee": 0.29046392, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6794", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T17:00:03" + }, + { + "id": "ob5a3d1te9ipbbaxqk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-02T21:00:04", + "amountCrypto": 0.00003651, + "pricePerUnit": 2260806, + "totalCost": 82.54, + "fee": 0.28990822, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6795", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-02T21:00:04" + }, + { + "id": "asoxnc57wfpzmys9lm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T01:00:05", + "amountCrypto": 0.00003628, + "pricePerUnit": 2279444, + "totalCost": 82.7, + "fee": 0.2904568, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6796", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T01:00:05" + }, + { + "id": "e6kqjffgnt7rc0hppe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T05:00:03", + "amountCrypto": 0.00003688, + "pricePerUnit": 2242286, + "totalCost": 82.7, + "fee": 0.29044733, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6797", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T05:00:03" + }, + { + "id": "mk7sw215a78wp8nrjg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T09:00:04", + "amountCrypto": 0.00003702, + "pricePerUnit": 2233669, + "totalCost": 82.69, + "fee": 0.29042943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6798", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T09:00:04" + }, + { + "id": "ipjylj39j2orzr9caz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T13:00:05", + "amountCrypto": 0.00003699, + "pricePerUnit": 2235568, + "totalCost": 82.69, + "fee": 0.29044075, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6799", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T13:00:05" + }, + { + "id": "ang95vnofvo53w1arp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T17:00:04", + "amountCrypto": 0.00003828, + "pricePerUnit": 2160654, + "totalCost": 82.71, + "fee": 0.29049767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6800", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T17:00:04" + }, + { + "id": "38o0ekpwt3imz4pqu8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-03T21:00:04", + "amountCrypto": 0.00004024, + "pricePerUnit": 2055276, + "totalCost": 82.7, + "fee": 0.29047821, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6801", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-03T21:00:04" + }, + { + "id": "w17r71oycue7e6ebly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T01:00:04", + "amountCrypto": 0.00004002, + "pricePerUnit": 2066241, + "totalCost": 82.69, + "fee": 0.29043131, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6802", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T01:00:04" + }, + { + "id": "6u9sx3vnyw23sfl37u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T05:00:05", + "amountCrypto": 0.0000408, + "pricePerUnit": 2027213, + "totalCost": 82.71, + "fee": 0.29049919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6803", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T05:00:05" + }, + { + "id": "or4kdeqywoh63f1gly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T09:00:04", + "amountCrypto": 0.00004136, + "pricePerUnit": 1999749, + "totalCost": 82.71, + "fee": 0.29049679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6804", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T09:00:04" + }, + { + "id": "0scexunusfzdkdcs6w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T13:00:04", + "amountCrypto": 0.00004126, + "pricePerUnit": 2004481, + "totalCost": 82.7, + "fee": 0.29048028, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6805", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T13:00:04" + }, + { + "id": "lenwowypr0kvq2e951", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T17:00:05", + "amountCrypto": 0.00004173, + "pricePerUnit": 1981795, + "totalCost": 82.7, + "fee": 0.29046416, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6806", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T17:00:05" + }, + { + "id": "2na6mjrgbqasl1kboe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-04T21:00:04", + "amountCrypto": 0.00003944, + "pricePerUnit": 2096734, + "totalCost": 82.7, + "fee": 0.29044612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6807", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-04T21:00:04" + }, + { + "id": "ooqq1go7hg620afrd1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T01:00:04", + "amountCrypto": 0.00003999, + "pricePerUnit": 2068171, + "totalCost": 82.71, + "fee": 0.29048465, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6808", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T01:00:04" + }, + { + "id": "d3u576cf81w39goo2e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T05:00:04", + "amountCrypto": 0.00004012, + "pricePerUnit": 2061493, + "totalCost": 82.71, + "fee": 0.29048801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6809", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T05:00:04" + }, + { + "id": "b6f3s6ce4m5vykin0p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T09:00:04", + "amountCrypto": 0.00004004, + "pricePerUnit": 2065519, + "totalCost": 82.7, + "fee": 0.29047495, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6810", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T09:00:04" + }, + { + "id": "0yuigbdopczbkt5t1r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T13:00:04", + "amountCrypto": 0.00003906, + "pricePerUnit": 2117163, + "totalCost": 82.7, + "fee": 0.29045043, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6811", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T13:00:04" + }, + { + "id": "34jq7djfoz9dd84p2m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T17:00:04", + "amountCrypto": 0.00004014, + "pricePerUnit": 2060347, + "totalCost": 82.7, + "fee": 0.29047127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6812", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T17:00:04" + }, + { + "id": "45j6sgtydrl64zg5qj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-05T21:00:04", + "amountCrypto": 0.00003961, + "pricePerUnit": 2088062, + "totalCost": 82.71, + "fee": 0.29049165, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6813", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-05T21:00:04" + }, + { + "id": "79su6umm1dy28i3jw9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T01:00:05", + "amountCrypto": 0.00003925, + "pricePerUnit": 2106841, + "totalCost": 82.69, + "fee": 0.29044023, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6814", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T01:00:05" + }, + { + "id": "lv1ndhrwk6dr7atjm2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T05:00:05", + "amountCrypto": 0.00003881, + "pricePerUnit": 2130952, + "totalCost": 82.7, + "fee": 0.29047091, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6815", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T05:00:05" + }, + { + "id": "lg9zjqdpd3r0j9bfyv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T09:00:04", + "amountCrypto": 0.00003893, + "pricePerUnit": 2124576, + "totalCost": 82.71, + "fee": 0.29049726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6816", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T09:00:04" + }, + { + "id": "p5fwzbrcqjw3wq3mln", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T13:00:06", + "amountCrypto": 0.00003883, + "pricePerUnit": 2129751, + "totalCost": 82.7, + "fee": 0.29045681, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6817", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T13:00:06" + }, + { + "id": "zcst5nrcmejmfq9r86", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T17:00:05", + "amountCrypto": 0.00003918, + "pricePerUnit": 2110545, + "totalCost": 82.69, + "fee": 0.29043199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6818", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T17:00:05" + }, + { + "id": "bhbne9u2xiqfgtnhzo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-06T21:00:04", + "amountCrypto": 0.00004011, + "pricePerUnit": 2061742, + "totalCost": 82.7, + "fee": 0.29045063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6819", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-06T21:00:04" + }, + { + "id": "213nmk0nhetgxqltlt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T01:00:04", + "amountCrypto": 0.00003944, + "pricePerUnit": 2096923, + "totalCost": 82.7, + "fee": 0.29047236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6820", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T01:00:04" + }, + { + "id": "8gq03pbi1ktuhih052", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T05:00:05", + "amountCrypto": 0.00004082, + "pricePerUnit": 2025819, + "totalCost": 82.69, + "fee": 0.29044181, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6821", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T05:00:05" + }, + { + "id": "rfe6xx8wwu032csd6y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T09:00:05", + "amountCrypto": 0.00004033, + "pricePerUnit": 2050805, + "totalCost": 82.71, + "fee": 0.29049463, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6822", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T09:00:05" + }, + { + "id": "g0aw5fbrwj8ibcwqcl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T13:00:05", + "amountCrypto": 0.00004015, + "pricePerUnit": 2059829, + "totalCost": 82.7, + "fee": 0.29047055, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6823", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T13:00:05" + }, + { + "id": "w8v1kt013oh46cctks", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T17:00:05", + "amountCrypto": 0.00004055, + "pricePerUnit": 2039690, + "totalCost": 82.71, + "fee": 0.29049617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6824", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T17:00:05" + }, + { + "id": "yfmvc1r0rig1a6fjlo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-07T21:00:04", + "amountCrypto": 0.00004081, + "pricePerUnit": 2026531, + "totalCost": 82.7, + "fee": 0.29047265, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6825", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-07T21:00:04" + }, + { + "id": "72mcbpm7i4z78oloml", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T01:00:04", + "amountCrypto": 0.00004121, + "pricePerUnit": 2006823, + "totalCost": 82.7, + "fee": 0.29046722, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6826", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T01:00:04" + }, + { + "id": "in2rq7fsjr1s4yshvw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T05:00:04", + "amountCrypto": 0.00004161, + "pricePerUnit": 1987372, + "totalCost": 82.69, + "fee": 0.2904439, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6827", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T05:00:04" + }, + { + "id": "1su3shder2onnwc2ya", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T09:00:04", + "amountCrypto": 0.00004147, + "pricePerUnit": 1994414, + "totalCost": 82.71, + "fee": 0.29049244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6828", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T09:00:04" + }, + { + "id": "tikeeal575osszhh2a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T13:00:04", + "amountCrypto": 0.0000416, + "pricePerUnit": 1987894, + "totalCost": 82.7, + "fee": 0.29045041, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6829", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T13:00:04" + }, + { + "id": "a610ablcbt00ls65mv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T17:00:03", + "amountCrypto": 0.00004146, + "pricePerUnit": 1994875, + "totalCost": 82.71, + "fee": 0.29048954, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6830", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T17:00:03" + }, + { + "id": "5jdjcuctj96mk0hcj7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-08T21:00:03", + "amountCrypto": 0.00004149, + "pricePerUnit": 1993341, + "totalCost": 82.7, + "fee": 0.29047608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6831", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-08T21:00:03" + }, + { + "id": "ypfgw5ubafpj8cipx1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T01:00:05", + "amountCrypto": 0.00004152, + "pricePerUnit": 1991773, + "totalCost": 82.7, + "fee": 0.29045747, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6832", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T01:00:05" + }, + { + "id": "hwr87qba62ibx7n7fk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T05:00:04", + "amountCrypto": 0.00004155, + "pricePerUnit": 1990621, + "totalCost": 82.71, + "fee": 0.29049924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6833", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T05:00:04" + }, + { + "id": "set6umzevwzoaylu4l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T09:00:04", + "amountCrypto": 0.00004159, + "pricePerUnit": 1988642, + "totalCost": 82.71, + "fee": 0.29048983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6834", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T09:00:04" + }, + { + "id": "igzopmqil4d80s8ojv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T13:00:07", + "amountCrypto": 0.00004206, + "pricePerUnit": 1966133, + "totalCost": 82.7, + "fee": 0.29044746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6835", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T13:00:07" + }, + { + "id": "fe4q64cn5l0c4y60kh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T17:00:07", + "amountCrypto": 0.0000431, + "pricePerUnit": 1918786, + "totalCost": 82.7, + "fee": 0.29046199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6836", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T17:00:07" + }, + { + "id": "frbt7j0ey69ijpey4w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-09T21:00:03", + "amountCrypto": 0.00004335, + "pricePerUnit": 1907956, + "totalCost": 82.71, + "fee": 0.29049789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6837", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-09T21:00:03" + }, + { + "id": "24ga5zv2j5ci7cctvy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T01:00:05", + "amountCrypto": 0.00004444, + "pricePerUnit": 1861018, + "totalCost": 82.7, + "fee": 0.29047583, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6838", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T01:00:05" + }, + { + "id": "2k4ptlgut1ivlq494i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T05:00:06", + "amountCrypto": 0.00004358, + "pricePerUnit": 1897788, + "totalCost": 82.71, + "fee": 0.29048277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6839", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T05:00:06" + }, + { + "id": "g3qbakyc1qfq4u7b39", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T09:00:07", + "amountCrypto": 0.00004335, + "pricePerUnit": 1907553, + "totalCost": 82.69, + "fee": 0.29043653, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6840", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T09:00:07" + }, + { + "id": "sr583jizyqst23237t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T13:00:05", + "amountCrypto": 0.00004297, + "pricePerUnit": 1924829, + "totalCost": 82.71, + "fee": 0.29049791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6841", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T13:00:05" + }, + { + "id": "u9p9n3lgufhm46ew3o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T17:00:04", + "amountCrypto": 0.00004462, + "pricePerUnit": 1853559, + "totalCost": 82.71, + "fee": 0.2904835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6842", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T17:00:04" + }, + { + "id": "tnj08tgcdrlzgg79ek", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-10T21:00:05", + "amountCrypto": 0.00004515, + "pricePerUnit": 1831542, + "totalCost": 82.69, + "fee": 0.29044236, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6843", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-10T21:00:05" + }, + { + "id": "aaxgw2d5qop8os2kl3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T01:00:04", + "amountCrypto": 0.00004536, + "pricePerUnit": 1823346, + "totalCost": 82.71, + "fee": 0.2904876, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6844", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T01:00:04" + }, + { + "id": "h4m51aklhvb2sjibb1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T05:00:06", + "amountCrypto": 0.00004491, + "pricePerUnit": 1841440, + "totalCost": 82.7, + "fee": 0.29045983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6845", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T05:00:06" + }, + { + "id": "n1yhglgvzvxwy9b61v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T09:00:04", + "amountCrypto": 0.00004463, + "pricePerUnit": 1853060, + "totalCost": 82.7, + "fee": 0.29047034, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6846", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T09:00:04" + }, + { + "id": "n24kjjk8vqarjvtrzc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T13:00:05", + "amountCrypto": 0.00004398, + "pricePerUnit": 1880615, + "totalCost": 82.71, + "fee": 0.29049633, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6847", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T13:00:05" + }, + { + "id": "sn6u6h73qqo51pmizd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T17:00:04", + "amountCrypto": 0.00004433, + "pricePerUnit": 1865382, + "totalCost": 82.69, + "fee": 0.29043627, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6848", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T17:00:04" + }, + { + "id": "e8om7m0o61r3e1g0qe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-11T21:00:05", + "amountCrypto": 0.00004327, + "pricePerUnit": 1911083, + "totalCost": 82.69, + "fee": 0.29043698, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6849", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-11T21:00:05" + }, + { + "id": "elthz18vlhmo4rlm8j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T01:00:06", + "amountCrypto": 0.00004336, + "pricePerUnit": 1907497, + "totalCost": 82.71, + "fee": 0.29049498, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6850", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T01:00:06" + }, + { + "id": "99v1frcvbr3bd05kxq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T05:00:05", + "amountCrypto": 0.00004366, + "pricePerUnit": 1890293, + "totalCost": 82.53, + "fee": 0.28986673, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6851", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T05:00:05" + }, + { + "id": "gpb2c6b31ywsrczb08", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T09:00:03", + "amountCrypto": 0.00004357, + "pricePerUnit": 1897963, + "totalCost": 82.69, + "fee": 0.29044281, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6852", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T09:00:03" + }, + { + "id": "t1ztcgzo417jz6ry6b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T13:00:06", + "amountCrypto": 0.00004336, + "pricePerUnit": 1907300, + "totalCost": 82.7, + "fee": 0.2904649, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6853", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T13:00:06" + }, + { + "id": "4xobvoib0lzm6htyxq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T17:00:03", + "amountCrypto": 0.000044, + "pricePerUnit": 1879745, + "totalCost": 82.71, + "fee": 0.29049396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6854", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T17:00:03" + }, + { + "id": "ttnscqjl585n1fvec9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-12T21:00:04", + "amountCrypto": 0.00004321, + "pricePerUnit": 1910320, + "totalCost": 82.54, + "fee": 0.28991847, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6855", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-12T21:00:04" + }, + { + "id": "c4d5uu44liruqrphh1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T01:00:04", + "amountCrypto": 0.00004281, + "pricePerUnit": 1928107, + "totalCost": 82.54, + "fee": 0.28990909, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6856", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T01:00:04" + }, + { + "id": "6a72gwhvcou3n44n6j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T05:00:04", + "amountCrypto": 0.00004288, + "pricePerUnit": 1928724, + "totalCost": 82.7, + "fee": 0.29047603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6857", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T05:00:04" + }, + { + "id": "yq5qqgac8f4fwln605", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T09:00:03", + "amountCrypto": 0.00004291, + "pricePerUnit": 1927512, + "totalCost": 82.71, + "fee": 0.29049659, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6858", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T09:00:03" + }, + { + "id": "w9nej3oe95sqcvtctr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T13:00:03", + "amountCrypto": 0.00004308, + "pricePerUnit": 1919807, + "totalCost": 82.71, + "fee": 0.29048162, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6859", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T13:00:03" + }, + { + "id": "nofynpirsylndh8l5k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T17:00:04", + "amountCrypto": 0.00004404, + "pricePerUnit": 1877903, + "totalCost": 82.7, + "fee": 0.29047304, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6860", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T17:00:04" + }, + { + "id": "vg4lfexflqgwdom75n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-13T21:00:04", + "amountCrypto": 0.00004446, + "pricePerUnit": 1860029, + "totalCost": 82.7, + "fee": 0.2904522, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6861", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-13T21:00:04" + }, + { + "id": "kleeonjjx4twleli7i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T01:00:05", + "amountCrypto": 0.00004402, + "pricePerUnit": 1878657, + "totalCost": 82.7, + "fee": 0.29045768, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6862", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T01:00:05" + }, + { + "id": "et74j4ufwya6hc9yk2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T05:00:05", + "amountCrypto": 0.00004359, + "pricePerUnit": 1897103, + "totalCost": 82.69, + "fee": 0.2904446, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6863", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T05:00:05" + }, + { + "id": "9alelnen92lm6dwhm8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T09:00:06", + "amountCrypto": 0.00004335, + "pricePerUnit": 1907792, + "totalCost": 82.7, + "fee": 0.29047286, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6864", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T09:00:06" + }, + { + "id": "6pe7nfrutoh5soroar", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T13:00:05", + "amountCrypto": 0.00004308, + "pricePerUnit": 1919771, + "totalCost": 82.7, + "fee": 0.29047616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6865", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T13:00:05" + }, + { + "id": "o5bdeutyshzvvgfsc8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T17:00:05", + "amountCrypto": 0.00004221, + "pricePerUnit": 1959168, + "totalCost": 82.7, + "fee": 0.29045067, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6866", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T17:00:05" + }, + { + "id": "k1gcfpt68a7rhto58z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-14T21:00:04", + "amountCrypto": 0.00004234, + "pricePerUnit": 1953327, + "totalCost": 82.7, + "fee": 0.29047668, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6867", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-14T21:00:04" + }, + { + "id": "tcbdim992st1coii89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T01:00:01", + "amountCrypto": 0.00004267, + "pricePerUnit": 1938150, + "totalCost": 82.7, + "fee": 0.29046617, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6868", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T01:00:01" + }, + { + "id": "r9zwt0cx8lrhxf7tj3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T05:00:04", + "amountCrypto": 0.0000424, + "pricePerUnit": 1950557, + "totalCost": 82.7, + "fee": 0.29047582, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6869", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T05:00:04" + }, + { + "id": "o3ao6b56awav0vjx09", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T09:00:04", + "amountCrypto": 0.0000427, + "pricePerUnit": 1936783, + "totalCost": 82.7, + "fee": 0.29046531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6870", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T09:00:04" + }, + { + "id": "qj5ayrh53q4k1ldhbn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T13:00:05", + "amountCrypto": 0.00004263, + "pricePerUnit": 1940012, + "totalCost": 82.7, + "fee": 0.29047261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6871", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T13:00:05" + }, + { + "id": "rxpr9ws6ge6qn2qnmu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T17:00:06", + "amountCrypto": 0.00004248, + "pricePerUnit": 1946727, + "totalCost": 82.7, + "fee": 0.29045238, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6872", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T17:00:06" + }, + { + "id": "l054i0pg7t9njaszfd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-15T21:00:04", + "amountCrypto": 0.00004253, + "pricePerUnit": 1944709, + "totalCost": 82.71, + "fee": 0.2904928, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6873", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-15T21:00:04" + }, + { + "id": "kvcveyd70d6tfok9ch", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T01:00:06", + "amountCrypto": 0.00004248, + "pricePerUnit": 1946866, + "totalCost": 82.7, + "fee": 0.29047317, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6874", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T01:00:06" + }, + { + "id": "bn502zbkidpclnsu2n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T05:00:04", + "amountCrypto": 0.00004248, + "pricePerUnit": 1946654, + "totalCost": 82.69, + "fee": 0.29044146, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6875", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T05:00:04" + }, + { + "id": "t15v6j2omo4794muz3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T09:00:04", + "amountCrypto": 0.00004253, + "pricePerUnit": 1944672, + "totalCost": 82.71, + "fee": 0.29048726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6876", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T09:00:04" + }, + { + "id": "1jj2xi8n82gveak0xo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T13:00:04", + "amountCrypto": 0.00004347, + "pricePerUnit": 1902439, + "totalCost": 82.7, + "fee": 0.2904596, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6877", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T13:00:04" + }, + { + "id": "lptqs52mnhqhe7s70q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T17:00:06", + "amountCrypto": 0.000043, + "pricePerUnit": 1923315, + "totalCost": 82.7, + "fee": 0.29047195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6878", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T17:00:06" + }, + { + "id": "99us13e3k9tl5041dl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-16T21:00:04", + "amountCrypto": 0.00004312, + "pricePerUnit": 1918022, + "totalCost": 82.71, + "fee": 0.29048109, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6879", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-16T21:00:04" + }, + { + "id": "ensnkhov0sk3i18j6l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T01:00:05", + "amountCrypto": 0.00004341, + "pricePerUnit": 1904960, + "totalCost": 82.69, + "fee": 0.2904431, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6880", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T01:00:05" + }, + { + "id": "h9hxh88859aozqn9ww", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T05:00:06", + "amountCrypto": 0.00004293, + "pricePerUnit": 1926454, + "totalCost": 82.7, + "fee": 0.29047252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6881", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T05:00:06" + }, + { + "id": "pdv558phzteeqbowjq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T09:00:04", + "amountCrypto": 0.00004284, + "pricePerUnit": 1930364, + "totalCost": 82.7, + "fee": 0.29045183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6882", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T09:00:04" + }, + { + "id": "yyquz5vqptatqpoc58", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T13:00:04", + "amountCrypto": 0.00004299, + "pricePerUnit": 1923860, + "totalCost": 82.71, + "fee": 0.29048675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6883", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T13:00:04" + }, + { + "id": "j2bg3htbvarcy8rbyw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T17:00:04", + "amountCrypto": 0.000043, + "pricePerUnit": 1923264, + "totalCost": 82.7, + "fee": 0.29046438, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6884", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T17:00:04" + }, + { + "id": "28shsi3yf71pxrbsgq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-17T21:00:04", + "amountCrypto": 0.0000425, + "pricePerUnit": 1946084, + "totalCost": 82.71, + "fee": 0.2904932, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6885", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-17T21:00:04" + }, + { + "id": "av3qajg5ms2455vtdy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T01:00:04", + "amountCrypto": 0.00004271, + "pricePerUnit": 1936289, + "totalCost": 82.7, + "fee": 0.2904592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6886", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T01:00:04" + }, + { + "id": "om4wk7p3dyiwwx2qlr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T05:00:04", + "amountCrypto": 0.00004309, + "pricePerUnit": 1919481, + "totalCost": 82.71, + "fee": 0.29049974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6887", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T05:00:04" + }, + { + "id": "b46l9g6xwkr5ixez41", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T09:00:05", + "amountCrypto": 0.00004319, + "pricePerUnit": 1914784, + "totalCost": 82.7, + "fee": 0.29046145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6888", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T09:00:05" + }, + { + "id": "xolqh0sh78m807zrom", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T13:00:04", + "amountCrypto": 0.00004346, + "pricePerUnit": 1902716, + "totalCost": 82.69, + "fee": 0.29043517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6889", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T13:00:04" + }, + { + "id": "a9av8i6vhio9wtznpx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T17:00:04", + "amountCrypto": 0.00004403, + "pricePerUnit": 1878147, + "totalCost": 82.69, + "fee": 0.29044491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6890", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T17:00:04" + }, + { + "id": "kab9hcydj5xayoyfix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-18T21:00:05", + "amountCrypto": 0.00004374, + "pricePerUnit": 1890640, + "totalCost": 82.7, + "fee": 0.29045117, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6891", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-18T21:00:05" + }, + { + "id": "g2o2lf59j76mmmtu4h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T01:00:06", + "amountCrypto": 0.00004355, + "pricePerUnit": 1899102, + "totalCost": 82.71, + "fee": 0.29048384, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6892", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T01:00:06" + }, + { + "id": "4th4q4jwbh9i8xe3jn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T05:00:04", + "amountCrypto": 0.0000434, + "pricePerUnit": 1905646, + "totalCost": 82.71, + "fee": 0.29048072, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6893", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T05:00:04" + }, + { + "id": "1jnl3gmsg13gbubm8k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T09:00:04", + "amountCrypto": 0.00004304, + "pricePerUnit": 1921635, + "totalCost": 82.71, + "fee": 0.29048833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6894", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T09:00:04" + }, + { + "id": "ya3nxvtsbutn4gnpu2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T13:00:06", + "amountCrypto": 0.00004285, + "pricePerUnit": 1929843, + "totalCost": 82.69, + "fee": 0.29044118, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6895", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T13:00:06" + }, + { + "id": "f83d55648lbc36td72", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T17:00:05", + "amountCrypto": 0.0000424, + "pricePerUnit": 1950714, + "totalCost": 82.71, + "fee": 0.29049911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6896", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T17:00:05" + }, + { + "id": "wyvyyusgle86nojknp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-19T21:00:04", + "amountCrypto": 0.00004212, + "pricePerUnit": 1963476, + "totalCost": 82.7, + "fee": 0.29046879, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6897", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-19T21:00:04" + }, + { + "id": "7zfnvb3mup6jrqi09o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T01:00:05", + "amountCrypto": 0.00004149, + "pricePerUnit": 1993490, + "totalCost": 82.71, + "fee": 0.29049785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6898", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T01:00:05" + }, + { + "id": "00r3nvb3csz7mix8w7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T05:00:06", + "amountCrypto": 0.00004184, + "pricePerUnit": 1976450, + "totalCost": 82.69, + "fee": 0.2904443, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6899", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T05:00:06" + }, + { + "id": "i4gmk1axpep6kpqx5j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T09:00:06", + "amountCrypto": 0.00004173, + "pricePerUnit": 1981569, + "totalCost": 82.69, + "fee": 0.29043108, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6900", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T09:00:06" + }, + { + "id": "byugkd3gevanwzz9ki", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T13:00:04", + "amountCrypto": 0.00004181, + "pricePerUnit": 1978066, + "totalCost": 82.7, + "fee": 0.29047335, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6901", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T13:00:04" + }, + { + "id": "fmhkzrnvkwv6obyiq5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T17:00:04", + "amountCrypto": 0.00004213, + "pricePerUnit": 1962790, + "totalCost": 82.69, + "fee": 0.29043614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6902", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T17:00:04" + }, + { + "id": "j015hrafzphmt02oj2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-20T21:00:05", + "amountCrypto": 0.00004246, + "pricePerUnit": 1947883, + "totalCost": 82.71, + "fee": 0.290488, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6903", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-20T21:00:05" + }, + { + "id": "sru5imali1qdl5ckkg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T01:00:05", + "amountCrypto": 0.00004258, + "pricePerUnit": 1942327, + "totalCost": 82.7, + "fee": 0.2904781, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6904", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T01:00:05" + }, + { + "id": "l01109qkskftwwwojh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T05:00:05", + "amountCrypto": 0.00004225, + "pricePerUnit": 1957597, + "totalCost": 82.71, + "fee": 0.29049277, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6905", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T05:00:05" + }, + { + "id": "47db4xtp9jj9y7jzpv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T09:00:05", + "amountCrypto": 0.00004253, + "pricePerUnit": 1944668, + "totalCost": 82.71, + "fee": 0.29048666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6906", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T09:00:05" + }, + { + "id": "od83ajrcpcicqvc9kn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T13:00:06", + "amountCrypto": 0.00004254, + "pricePerUnit": 1943999, + "totalCost": 82.7, + "fee": 0.29045506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6907", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T13:00:06" + }, + { + "id": "ji09m62b9qfg3ch2ro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T17:00:05", + "amountCrypto": 0.00004264, + "pricePerUnit": 1939391, + "totalCost": 82.7, + "fee": 0.29044767, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6908", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T17:00:05" + }, + { + "id": "n6vdwofi9to1ae5a7e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-21T21:00:05", + "amountCrypto": 0.00004248, + "pricePerUnit": 1946791, + "totalCost": 82.7, + "fee": 0.29046195, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6909", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-21T21:00:05" + }, + { + "id": "0gv1ffrqbfl9adyicb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T01:00:04", + "amountCrypto": 0.00004247, + "pricePerUnit": 1947447, + "totalCost": 82.71, + "fee": 0.29049137, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6910", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T01:00:04" + }, + { + "id": "3qmt6iheyvg2r9xqe1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T05:00:04", + "amountCrypto": 0.00004235, + "pricePerUnit": 1952839, + "totalCost": 82.7, + "fee": 0.29047267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6911", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T05:00:04" + }, + { + "id": "2bipqsyu21vu4e38d6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T09:00:03", + "amountCrypto": 0.0000423, + "pricePerUnit": 1955273, + "totalCost": 82.71, + "fee": 0.29049135, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6912", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T09:00:03" + }, + { + "id": "4dkfaip9yx50yzsr4c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T13:00:03", + "amountCrypto": 0.00004231, + "pricePerUnit": 1954802, + "totalCost": 82.71, + "fee": 0.29049, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6913", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T13:00:03" + }, + { + "id": "dnxcikmlxf4t7a1ju7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T17:00:04", + "amountCrypto": 0.00004239, + "pricePerUnit": 1951103, + "totalCost": 82.71, + "fee": 0.29048851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6914", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T17:00:04" + }, + { + "id": "jx750f2o892ozf3ipt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-22T21:00:04", + "amountCrypto": 0.00004238, + "pricePerUnit": 1951324, + "totalCost": 82.7, + "fee": 0.29045296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6915", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-22T21:00:04" + }, + { + "id": "epqjrbsmknfrynffol", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T01:00:04", + "amountCrypto": 0.00004263, + "pricePerUnit": 1940058, + "totalCost": 82.7, + "fee": 0.29047952, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6916", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T01:00:04" + }, + { + "id": "01d9tx10s728f7bhgm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T05:00:04", + "amountCrypto": 0.00004241, + "pricePerUnit": 1950104, + "totalCost": 82.7, + "fee": 0.29047684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6917", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T05:00:04" + }, + { + "id": "wr28mvh5xtrwcbdqy7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T09:00:04", + "amountCrypto": 0.00004235, + "pricePerUnit": 1952852, + "totalCost": 82.7, + "fee": 0.2904746, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6918", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T09:00:04" + }, + { + "id": "e4ai7ua913wyz6n5ae", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T13:00:04", + "amountCrypto": 0.00004213, + "pricePerUnit": 1963119, + "totalCost": 82.71, + "fee": 0.29048479, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6919", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T13:00:04" + }, + { + "id": "ws9ax8pbpk366717yk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T17:00:05", + "amountCrypto": 0.00004194, + "pricePerUnit": 1972044, + "totalCost": 82.71, + "fee": 0.29048946, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6920", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T17:00:05" + }, + { + "id": "qt8hmiec5i50lm62dh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-23T21:00:04", + "amountCrypto": 0.000042, + "pricePerUnit": 1968947, + "totalCost": 82.7, + "fee": 0.29044823, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6921", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-23T21:00:04" + }, + { + "id": "764yrruo6e3u0nb7wq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T01:00:04", + "amountCrypto": 0.00004164, + "pricePerUnit": 1986150, + "totalCost": 82.7, + "fee": 0.29047458, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6922", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T01:00:04" + }, + { + "id": "aay00uiu0j8s5bxocf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T05:00:04", + "amountCrypto": 0.00004137, + "pricePerUnit": 1999025, + "totalCost": 82.7, + "fee": 0.29046186, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6923", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T05:00:04" + }, + { + "id": "y3k9mgwi8vprp5fbao", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T09:00:04", + "amountCrypto": 0.00004118, + "pricePerUnit": 2008332, + "totalCost": 82.7, + "fee": 0.29047399, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6924", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T09:00:04" + }, + { + "id": "pcjcl9wcrxo2elenvi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T13:00:05", + "amountCrypto": 0.00004088, + "pricePerUnit": 2023005, + "totalCost": 82.7, + "fee": 0.29046469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6925", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T13:00:05" + }, + { + "id": "gxfwpnpintu2jhkgno", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T17:00:04", + "amountCrypto": 0.0000404, + "pricePerUnit": 2046813, + "totalCost": 82.69, + "fee": 0.29043226, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6926", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T17:00:04" + }, + { + "id": "zk9rtuotuu3us91n4h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-24T21:00:05", + "amountCrypto": 0.00004052, + "pricePerUnit": 2041070, + "totalCost": 82.7, + "fee": 0.29047771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6927", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-24T21:00:05" + }, + { + "id": "ou2p9s8x672p2gchrx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T01:00:03", + "amountCrypto": 0.00004084, + "pricePerUnit": 2024861, + "totalCost": 82.7, + "fee": 0.29044664, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6928", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T01:00:03" + }, + { + "id": "n6w9p09c53ppazk44d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T05:00:03", + "amountCrypto": 0.00004127, + "pricePerUnit": 2003917, + "totalCost": 82.7, + "fee": 0.29046887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6929", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T05:00:03" + }, + { + "id": "6n16w5hab63kkrct2a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T09:00:05", + "amountCrypto": 0.00004126, + "pricePerUnit": 2004612, + "totalCost": 82.71, + "fee": 0.29049917, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6930", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T09:00:05" + }, + { + "id": "dizwgyuluyls4wph5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T13:00:05", + "amountCrypto": 0.00004098, + "pricePerUnit": 2017940, + "totalCost": 82.7, + "fee": 0.29044612, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6931", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T13:00:05" + }, + { + "id": "6ar4s3a1kcy6mq56oz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T17:00:06", + "amountCrypto": 0.00004068, + "pricePerUnit": 2033076, + "totalCost": 82.71, + "fee": 0.29048256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6932", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T17:00:06" + }, + { + "id": "n53q3fus8327p2liah", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-25T21:00:05", + "amountCrypto": 0.00004062, + "pricePerUnit": 2036157, + "totalCost": 82.71, + "fee": 0.29049363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6933", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-25T21:00:05" + }, + { + "id": "hcsrbaxjjr45qvlvg5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T01:00:05", + "amountCrypto": 0.00004084, + "pricePerUnit": 2024953, + "totalCost": 82.7, + "fee": 0.29045987, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6934", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T01:00:05" + }, + { + "id": "mkolbbbfuj4e1su5ns", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T05:00:04", + "amountCrypto": 0.00004091, + "pricePerUnit": 2021497, + "totalCost": 82.7, + "fee": 0.29046106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6935", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T05:00:04" + }, + { + "id": "svoxbbqsqlt98cbez7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T09:00:05", + "amountCrypto": 0.00004049, + "pricePerUnit": 2042592, + "totalCost": 82.7, + "fee": 0.29047906, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6936", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T09:00:05" + }, + { + "id": "akja8lamzy7smq9emf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T13:00:06", + "amountCrypto": 0.00004051, + "pricePerUnit": 2041307, + "totalCost": 82.69, + "fee": 0.29043968, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6937", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T13:00:06" + }, + { + "id": "y18hhr0k1exsljxstn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T17:00:04", + "amountCrypto": 0.0000412, + "pricePerUnit": 2007249, + "totalCost": 82.7, + "fee": 0.29045839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6938", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T17:00:04" + }, + { + "id": "aponuagfa7tub07l6y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-26T21:00:04", + "amountCrypto": 0.00004106, + "pricePerUnit": 2014219, + "totalCost": 82.7, + "fee": 0.29047646, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6939", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-26T21:00:04" + }, + { + "id": "lgtcddlpgti0c2zoq9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T01:00:03", + "amountCrypto": 0.00004086, + "pricePerUnit": 2023767, + "totalCost": 82.69, + "fee": 0.29043192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6940", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T01:00:03" + }, + { + "id": "7cexjqi05sbyiem9m0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T05:00:04", + "amountCrypto": 0.00004066, + "pricePerUnit": 2030010, + "totalCost": 82.54, + "fee": 0.28990184, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6941", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T05:00:04" + }, + { + "id": "9s82aqohl83z87w14b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T09:00:04", + "amountCrypto": 0.00004072, + "pricePerUnit": 2030871, + "totalCost": 82.7, + "fee": 0.29045276, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6942", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T09:00:04" + }, + { + "id": "rppea20ccgyctzaxzp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T13:00:07", + "amountCrypto": 0.0000409, + "pricePerUnit": 2021972, + "totalCost": 82.7, + "fee": 0.29045832, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6943", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T13:00:07" + }, + { + "id": "wc2eb22l88bw6hvx8b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T17:00:04", + "amountCrypto": 0.00004098, + "pricePerUnit": 2018006, + "totalCost": 82.7, + "fee": 0.29045564, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6944", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T17:00:04" + }, + { + "id": "5li0bhvzmna6dzma2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-27T21:00:05", + "amountCrypto": 0.00004089, + "pricePerUnit": 2022682, + "totalCost": 82.71, + "fee": 0.29048924, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6945", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-27T21:00:05" + }, + { + "id": "6vmp3csetawvqo4gzq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T01:00:04", + "amountCrypto": 0.00004089, + "pricePerUnit": 2022321, + "totalCost": 82.69, + "fee": 0.2904374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6946", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T01:00:04" + }, + { + "id": "j5j65wqex6cai7s5ay", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T05:00:06", + "amountCrypto": 0.00004104, + "pricePerUnit": 2015096, + "totalCost": 82.7, + "fee": 0.29046141, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6947", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T05:00:06" + }, + { + "id": "oo5vboii98t2339plo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T09:00:04", + "amountCrypto": 0.00004178, + "pricePerUnit": 1979209, + "totalCost": 82.69, + "fee": 0.29043263, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6948", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T09:00:04" + }, + { + "id": "i6vu8tbccuxz6rhw8z", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T13:00:05", + "amountCrypto": 0.00004167, + "pricePerUnit": 1984578, + "totalCost": 82.7, + "fee": 0.2904538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6949", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T13:00:05" + }, + { + "id": "ouhi11phvegunbp74o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T17:00:05", + "amountCrypto": 0.00004248, + "pricePerUnit": 1946859, + "totalCost": 82.7, + "fee": 0.29047212, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6950", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T17:00:05" + }, + { + "id": "i63kqhdvgk722icsqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-28T21:00:04", + "amountCrypto": 0.00004271, + "pricePerUnit": 1936499, + "totalCost": 82.71, + "fee": 0.29049078, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6951", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-28T21:00:04" + }, + { + "id": "p5os31oqfmx7kc24et", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T01:00:05", + "amountCrypto": 0.00004244, + "pricePerUnit": 1948539, + "totalCost": 82.7, + "fee": 0.29044905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6952", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T01:00:05" + }, + { + "id": "c45gu9u1kj9sbgsved", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T05:00:04", + "amountCrypto": 0.00004254, + "pricePerUnit": 1944039, + "totalCost": 82.7, + "fee": 0.29046105, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6953", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T05:00:04" + }, + { + "id": "th0vhhaoecqp54x6dz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T09:00:03", + "amountCrypto": 0.00004272, + "pricePerUnit": 1936075, + "totalCost": 82.71, + "fee": 0.29049517, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6954", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T09:00:03" + }, + { + "id": "bub7uhlqlofms8aaux", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T13:00:05", + "amountCrypto": 0.0000435, + "pricePerUnit": 1901327, + "totalCost": 82.71, + "fee": 0.2904902, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6955", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T13:00:05" + }, + { + "id": "vdutz3ur6ugohgcbt9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T17:00:04", + "amountCrypto": 0.0000434, + "pricePerUnit": 1905595, + "totalCost": 82.7, + "fee": 0.29047292, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6956", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T17:00:04" + }, + { + "id": "cfffd4xaudd4i3mwb1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-29T21:00:04", + "amountCrypto": 0.00004331, + "pricePerUnit": 1909503, + "totalCost": 82.7, + "fee": 0.29046514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6957", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-29T21:00:04" + }, + { + "id": "l7i616uyy7fat947nf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T01:00:05", + "amountCrypto": 0.00004334, + "pricePerUnit": 1908328, + "totalCost": 82.71, + "fee": 0.29048749, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6958", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T01:00:05" + }, + { + "id": "s6iv3zrmfzq4xxziuh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T06:00:05", + "amountCrypto": 0.00004315, + "pricePerUnit": 1912797, + "totalCost": 82.54, + "fee": 0.28989119, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6959", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T06:00:05" + }, + { + "id": "jyghkkqlkwp6z08rfp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T10:00:05", + "amountCrypto": 0.00004313, + "pricePerUnit": 1917541, + "totalCost": 82.7, + "fee": 0.29047556, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6960", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T10:00:05" + }, + { + "id": "iw1vuqqch4thv9eu7f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T14:00:05", + "amountCrypto": 0.00004311, + "pricePerUnit": 1918352, + "totalCost": 82.7, + "fee": 0.29046366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6961", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T14:00:05" + }, + { + "id": "4qq6qq0c2dweyffscv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T18:00:04", + "amountCrypto": 0.0000433, + "pricePerUnit": 1909780, + "totalCost": 82.69, + "fee": 0.29044015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6962", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T18:00:04" + }, + { + "id": "8rdkvwwkcifdeuhaxe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-30T22:00:04", + "amountCrypto": 0.00004339, + "pricePerUnit": 1906206, + "totalCost": 82.71, + "fee": 0.29049919, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6963", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-30T22:00:04" + }, + { + "id": "rgeuom5sycr4tzr71d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T02:00:05", + "amountCrypto": 0.00004345, + "pricePerUnit": 1899672, + "totalCost": 82.54, + "fee": 0.28990375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6964", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T02:00:05" + }, + { + "id": "ruko2ewv0zfcenao5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T06:00:04", + "amountCrypto": 0.00004394, + "pricePerUnit": 1881943, + "totalCost": 82.69, + "fee": 0.29043697, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6965", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T06:00:04" + }, + { + "id": "loetromp436h834uhz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T10:00:04", + "amountCrypto": 0.00004369, + "pricePerUnit": 1892988, + "totalCost": 82.7, + "fee": 0.29047943, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6966", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T10:00:04" + }, + { + "id": "s2rx89uoooe5vr0gsd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T14:00:06", + "amountCrypto": 0.00004351, + "pricePerUnit": 1900697, + "totalCost": 82.7, + "fee": 0.29046077, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6967", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T14:00:06" + }, + { + "id": "6y0lsgwgthbqwxf9br", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T18:00:04", + "amountCrypto": 0.00004267, + "pricePerUnit": 1938299, + "totalCost": 82.71, + "fee": 0.2904884, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6968", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T18:00:04" + }, + { + "id": "p19l3tpx6761m8v4wg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-03-31T22:00:05", + "amountCrypto": 0.00004328, + "pricePerUnit": 1906874, + "totalCost": 82.53, + "fee": 0.2898642, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6969", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-03-31T22:00:05" + }, + { + "id": "opo2fdztvfpgqdr04k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T02:00:06", + "amountCrypto": 0.00004328, + "pricePerUnit": 1910700, + "totalCost": 82.7, + "fee": 0.29044589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6970", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T02:00:06" + }, + { + "id": "86kueq52nyh55i5j4l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T06:00:05", + "amountCrypto": 0.0000431, + "pricePerUnit": 1918813, + "totalCost": 82.7, + "fee": 0.29046609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6971", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T06:00:05" + }, + { + "id": "tffsiqmg8o1vx16oei", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T10:00:06", + "amountCrypto": 0.0000427, + "pricePerUnit": 1936945, + "totalCost": 82.71, + "fee": 0.29048967, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6972", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T10:00:06" + }, + { + "id": "nssamilaogelfnvdtv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T14:00:05", + "amountCrypto": 0.00004239, + "pricePerUnit": 1951057, + "totalCost": 82.71, + "fee": 0.29048164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6973", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T14:00:05" + }, + { + "id": "sno3c0q6sp3erujl2a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T18:00:04", + "amountCrypto": 0.00004188, + "pricePerUnit": 1974577, + "totalCost": 82.7, + "fee": 0.29044651, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6974", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T18:00:04" + }, + { + "id": "eongwapni7ny5g0rhi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-01T22:00:05", + "amountCrypto": 0.00004199, + "pricePerUnit": 1969562, + "totalCost": 82.7, + "fee": 0.29046971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6975", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-01T22:00:05" + }, + { + "id": "6xms94k07oumbims25", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T02:00:04", + "amountCrypto": 0.00004188, + "pricePerUnit": 1974662, + "totalCost": 82.7, + "fee": 0.29045905, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6976", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T02:00:04" + }, + { + "id": "clj0gv99cef8f616ro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T06:00:05", + "amountCrypto": 0.00004216, + "pricePerUnit": 1961425, + "totalCost": 82.69, + "fee": 0.29044092, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6977", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T06:00:05" + }, + { + "id": "x9rp33xdxq5fjvaveq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T10:00:05", + "amountCrypto": 0.00004221, + "pricePerUnit": 1955495, + "totalCost": 82.54, + "fee": 0.28990616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6978", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T10:00:05" + }, + { + "id": "jdtb5s0xycbmxxwjmi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T14:00:06", + "amountCrypto": 0.00004218, + "pricePerUnit": 1960495, + "totalCost": 82.69, + "fee": 0.29044088, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6979", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T14:00:06" + }, + { + "id": "chxvr1e8x6zjzkiwax", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T18:00:06", + "amountCrypto": 0.00004139, + "pricePerUnit": 1998037, + "totalCost": 82.7, + "fee": 0.29045873, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6980", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T18:00:06" + }, + { + "id": "e9pezwcbc6pml2qm12", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-02T22:00:04", + "amountCrypto": 0.00004129, + "pricePerUnit": 2003111, + "totalCost": 82.71, + "fee": 0.29049275, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6981", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-02T22:00:04" + }, + { + "id": "833uwijughcg0ejouk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T02:00:04", + "amountCrypto": 0.00004364, + "pricePerUnit": 1895010, + "totalCost": 82.7, + "fee": 0.29045692, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6982", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T02:00:04" + }, + { + "id": "cc142zm5i113lw5ysv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T06:00:04", + "amountCrypto": 0.00004319, + "pricePerUnit": 1914753, + "totalCost": 82.7, + "fee": 0.29045674, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6983", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T06:00:04" + }, + { + "id": "gu6kt74hgs3hl89omd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T10:00:04", + "amountCrypto": 0.00004329, + "pricePerUnit": 1910203, + "totalCost": 82.69, + "fee": 0.2904374, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6984", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T10:00:04" + }, + { + "id": "eluxt5uc4q8ggtydls", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T14:00:04", + "amountCrypto": 0.00004395, + "pricePerUnit": 1881530, + "totalCost": 82.69, + "fee": 0.29043931, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6985", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T14:00:04" + }, + { + "id": "36avkm0mfkus0nfwzv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T18:00:04", + "amountCrypto": 0.00004439, + "pricePerUnit": 1863252, + "totalCost": 82.71, + "fee": 0.2904974, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6986", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T18:00:04" + }, + { + "id": "34y3xkt1lkmqpl6n2w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-03T22:00:05", + "amountCrypto": 0.00004423, + "pricePerUnit": 1869714, + "totalCost": 82.7, + "fee": 0.29045418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6987", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-03T22:00:05" + }, + { + "id": "f45851c6b61ilsrt9a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T02:00:04", + "amountCrypto": 0.00004368, + "pricePerUnit": 1893338, + "totalCost": 82.7, + "fee": 0.29046665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6988", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T02:00:04" + }, + { + "id": "i1j8eigmcpiekffqr4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T06:00:04", + "amountCrypto": 0.00004395, + "pricePerUnit": 1881615, + "totalCost": 82.7, + "fee": 0.29045246, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6989", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T06:00:04" + }, + { + "id": "wc0jbzushpmjiyqpjb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T10:00:06", + "amountCrypto": 0.00004303, + "pricePerUnit": 1921885, + "totalCost": 82.7, + "fee": 0.29045856, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6990", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T10:00:06" + }, + { + "id": "3khk9y6z1ne2woakqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T14:00:05", + "amountCrypto": 0.00004383, + "pricePerUnit": 1886827, + "totalCost": 82.7, + "fee": 0.29046176, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6991", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T14:00:05" + }, + { + "id": "o6k1k4i3nod7a4pes5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T18:00:04", + "amountCrypto": 0.00004345, + "pricePerUnit": 1903323, + "totalCost": 82.7, + "fee": 0.2904609, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6992", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T18:00:04" + }, + { + "id": "sh2m9o1a7pgotauuty", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-04T22:00:04", + "amountCrypto": 0.00004253, + "pricePerUnit": 1944733, + "totalCost": 82.71, + "fee": 0.2904964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6993", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-04T22:00:04" + }, + { + "id": "qkymkr9h232bh87i0u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T02:00:03", + "amountCrypto": 0.00004264, + "pricePerUnit": 1939492, + "totalCost": 82.7, + "fee": 0.29046283, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6994", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T02:00:03" + }, + { + "id": "fv5dnj1xabg1nlmz8k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T06:00:04", + "amountCrypto": 0.00004274, + "pricePerUnit": 1934884, + "totalCost": 82.7, + "fee": 0.29045239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6995", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T06:00:04" + }, + { + "id": "lxogylds80vquxnqo7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T10:00:04", + "amountCrypto": 0.00004277, + "pricePerUnit": 1933708, + "totalCost": 82.7, + "fee": 0.29047962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6996", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T10:00:04" + }, + { + "id": "mygyt6xiyhwov47aom", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T14:00:03", + "amountCrypto": 0.00004277, + "pricePerUnit": 1933469, + "totalCost": 82.69, + "fee": 0.29044363, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6997", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T14:00:03" + }, + { + "id": "7vp2o30tbxjqp12rs3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T18:00:04", + "amountCrypto": 0.00004322, + "pricePerUnit": 1913667, + "totalCost": 82.71, + "fee": 0.29049353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6998", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T18:00:04" + }, + { + "id": "21utsvdc3vyu5x1zzi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-05T22:00:04", + "amountCrypto": 0.00004311, + "pricePerUnit": 1918240, + "totalCost": 82.7, + "fee": 0.29044666, + "status": "completed", + "orderId": null, + "exchangeOrderId": "6999", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-05T22:00:04" + }, + { + "id": "ea0gbgt50ag43fj2pt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T02:00:04", + "amountCrypto": 0.00004286, + "pricePerUnit": 1929366, + "totalCost": 82.69, + "fee": 0.29043713, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7000", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T02:00:04" + }, + { + "id": "6kt5vzlr0nha7lf0gb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T06:00:05", + "amountCrypto": 0.0000429, + "pricePerUnit": 1927618, + "totalCost": 82.69, + "fee": 0.2904449, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7001", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T06:00:05" + }, + { + "id": "v49jxerheeql3d98y1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T10:00:04", + "amountCrypto": 0.00004302, + "pricePerUnit": 1922506, + "totalCost": 82.71, + "fee": 0.29048482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7002", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T10:00:04" + }, + { + "id": "bz73qpb77m4p96wlxo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T14:00:04", + "amountCrypto": 0.00004313, + "pricePerUnit": 1917565, + "totalCost": 82.7, + "fee": 0.2904792, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7003", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T14:00:04" + }, + { + "id": "xcl9i8seeg5p3yps5u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T18:00:04", + "amountCrypto": 0.00004327, + "pricePerUnit": 1911444, + "totalCost": 82.71, + "fee": 0.29049183, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7004", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T18:00:04" + }, + { + "id": "275y22uvn49vyph6he", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-06T22:00:05", + "amountCrypto": 0.00004485, + "pricePerUnit": 1844038, + "totalCost": 82.71, + "fee": 0.29048094, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7005", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-06T22:00:05" + }, + { + "id": "n3ikjhvjb8o0n4m21i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T02:00:04", + "amountCrypto": 0.00004578, + "pricePerUnit": 1806343, + "totalCost": 82.69, + "fee": 0.29044333, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7006", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T02:00:04" + }, + { + "id": "xory170bl56h9tvtj2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T06:00:04", + "amountCrypto": 0.00004594, + "pricePerUnit": 1800215, + "totalCost": 82.7, + "fee": 0.29046962, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7007", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T06:00:04" + }, + { + "id": "vs3ea1uwus50pmx1t1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T10:00:04", + "amountCrypto": 0.00004782, + "pricePerUnit": 1729298, + "totalCost": 82.7, + "fee": 0.2904457, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7008", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T10:00:04" + }, + { + "id": "dr6zb58j4of0l1lx5a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T14:00:04", + "amountCrypto": 0.00004678, + "pricePerUnit": 1767898, + "totalCost": 82.7, + "fee": 0.29047111, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7009", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T14:00:04" + }, + { + "id": "erb942f33l6w3503c0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T18:00:04", + "amountCrypto": 0.00004536, + "pricePerUnit": 1823164, + "totalCost": 82.7, + "fee": 0.29045853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7010", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T18:00:04" + }, + { + "id": "fft2wkqt864hniz5d2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-07T22:00:04", + "amountCrypto": 0.00004565, + "pricePerUnit": 1808011, + "totalCost": 82.54, + "fee": 0.28988608, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7011", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-07T22:00:04" + }, + { + "id": "am6ozdgmq7au62l5m4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T02:00:05", + "amountCrypto": 0.00004502, + "pricePerUnit": 1836916, + "totalCost": 82.7, + "fee": 0.29045589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7012", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T02:00:05" + }, + { + "id": "4e2zewenm65jdugphx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T06:00:04", + "amountCrypto": 0.00004477, + "pricePerUnit": 1847126, + "totalCost": 82.7, + "fee": 0.29044848, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7013", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T06:00:04" + }, + { + "id": "h69o4seuyde7y6j3fe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T10:00:05", + "amountCrypto": 0.00004499, + "pricePerUnit": 1838301, + "totalCost": 82.71, + "fee": 0.29048126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7014", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T10:00:05" + }, + { + "id": "w8erumfz6fmn3ozf60", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T14:00:04", + "amountCrypto": 0.0000448, + "pricePerUnit": 1846064, + "totalCost": 82.7, + "fee": 0.2904759, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7015", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T14:00:04" + }, + { + "id": "ljd0gdu77zmbn4gy8u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T18:00:05", + "amountCrypto": 0.00004553, + "pricePerUnit": 1816501, + "totalCost": 82.71, + "fee": 0.29048168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7016", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T18:00:05" + }, + { + "id": "8nw7it9lifyzmjx6bz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-08T22:00:04", + "amountCrypto": 0.00004661, + "pricePerUnit": 1774307, + "totalCost": 82.7, + "fee": 0.2904647, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7017", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-08T22:00:04" + }, + { + "id": "5dxvawswrgqgftfhnf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T02:00:04", + "amountCrypto": 0.00004702, + "pricePerUnit": 1758877, + "totalCost": 82.7, + "fee": 0.29047149, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7018", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T02:00:04" + }, + { + "id": "ga70ujbvnjdkh1173q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T06:00:04", + "amountCrypto": 0.00004802, + "pricePerUnit": 1722330, + "totalCost": 82.71, + "fee": 0.29048518, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7019", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T06:00:04" + }, + { + "id": "277whiuky8mrowt4r1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T10:00:05", + "amountCrypto": 0.00004642, + "pricePerUnit": 1781479, + "totalCost": 82.7, + "fee": 0.29044994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7020", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T10:00:05" + }, + { + "id": "xtok3zmmjaoa6779pn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T14:00:05", + "amountCrypto": 0.00004737, + "pricePerUnit": 1745807, + "totalCost": 82.7, + "fee": 0.29045921, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7021", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T14:00:05" + }, + { + "id": "jj4r7mhuyrch67lmql", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T18:00:05", + "amountCrypto": 0.00004679, + "pricePerUnit": 1767370, + "totalCost": 82.7, + "fee": 0.29044638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7022", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T18:00:05" + }, + { + "id": "ep33uvnok7q3jfygzg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-09T22:00:05", + "amountCrypto": 0.0000437, + "pricePerUnit": 1892543, + "totalCost": 82.7, + "fee": 0.2904776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7023", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-09T22:00:05" + }, + { + "id": "1b5gxvsbu74wf8r2si", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T02:00:04", + "amountCrypto": 0.00004358, + "pricePerUnit": 1897575, + "totalCost": 82.7, + "fee": 0.29045009, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7024", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T02:00:04" + }, + { + "id": "iasvnvu9ns9yix9c54", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T06:00:05", + "amountCrypto": 0.00004418, + "pricePerUnit": 1871984, + "totalCost": 82.7, + "fee": 0.29047802, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7025", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T06:00:05" + }, + { + "id": "6fdke51hnk9417hfy5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T10:00:05", + "amountCrypto": 0.00004423, + "pricePerUnit": 1869647, + "totalCost": 82.69, + "fee": 0.29044375, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7026", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T10:00:05" + }, + { + "id": "g78a7bsxktn0pqegza", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T14:00:04", + "amountCrypto": 0.00004436, + "pricePerUnit": 1864239, + "totalCost": 82.7, + "fee": 0.29045476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7027", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T14:00:04" + }, + { + "id": "071x1web8nzu6n50w5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T18:00:04", + "amountCrypto": 0.00004628, + "pricePerUnit": 1787001, + "totalCost": 82.7, + "fee": 0.2904715, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7028", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T18:00:04" + }, + { + "id": "wtz2v0dwassqz52v2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-10T22:00:05", + "amountCrypto": 0.00004611, + "pricePerUnit": 1793681, + "totalCost": 82.71, + "fee": 0.29048644, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7029", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-10T22:00:05" + }, + { + "id": "fqy4p6yyhxhgpy7jqz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T02:00:07", + "amountCrypto": 0.00004627, + "pricePerUnit": 1787536, + "totalCost": 82.71, + "fee": 0.29049574, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7030", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T02:00:07" + }, + { + "id": "28b7dsy4zkfff1n9vm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T06:00:05", + "amountCrypto": 0.00004613, + "pricePerUnit": 1792734, + "totalCost": 82.7, + "fee": 0.29045895, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7031", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T06:00:05" + }, + { + "id": "wrksidzpbzdl02oimn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T10:00:06", + "amountCrypto": 0.00004579, + "pricePerUnit": 1805965, + "totalCost": 82.7, + "fee": 0.29044599, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7032", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T10:00:06" + }, + { + "id": "ydpz0ce6mb2edqwwgv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T14:00:05", + "amountCrypto": 0.00004511, + "pricePerUnit": 1833200, + "totalCost": 82.7, + "fee": 0.29044775, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7033", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T14:00:05" + }, + { + "id": "4lzv8qdq16s9107rva", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T18:00:05", + "amountCrypto": 0.00004505, + "pricePerUnit": 1835737, + "totalCost": 82.7, + "fee": 0.2904629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7034", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T18:00:05" + }, + { + "id": "nlg977g6gxfgap5o4g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-11T22:00:05", + "amountCrypto": 0.00004445, + "pricePerUnit": 1860467, + "totalCost": 82.7, + "fee": 0.29045527, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7035", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-11T22:00:05" + }, + { + "id": "bp9bcn51qk3onsbdvx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T02:00:05", + "amountCrypto": 0.00004465, + "pricePerUnit": 1852244, + "totalCost": 82.7, + "fee": 0.29047254, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7036", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T02:00:05" + }, + { + "id": "7jxvzhn6yf7w4asci3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T06:00:05", + "amountCrypto": 0.00004479, + "pricePerUnit": 1846487, + "totalCost": 82.7, + "fee": 0.29047761, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7037", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T06:00:05" + }, + { + "id": "pjk8ngrf6larzm4dtm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T10:00:04", + "amountCrypto": 0.00004437, + "pricePerUnit": 1863731, + "totalCost": 82.69, + "fee": 0.29044103, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7038", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T10:00:04" + }, + { + "id": "p7zgdic5dxh8b7i771", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T14:00:04", + "amountCrypto": 0.00004447, + "pricePerUnit": 1859760, + "totalCost": 82.7, + "fee": 0.29047541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7039", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T14:00:04" + }, + { + "id": "lzjg6jqf4n2ezyeiit", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T18:00:04", + "amountCrypto": 0.0000438, + "pricePerUnit": 1887938, + "totalCost": 82.69, + "fee": 0.29043382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7040", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T18:00:04" + }, + { + "id": "5im1tx9ulapzjkopdl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-12T22:00:06", + "amountCrypto": 0.00004385, + "pricePerUnit": 1885963, + "totalCost": 82.7, + "fee": 0.29046121, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7041", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-12T22:00:06" + }, + { + "id": "6bwyupg2iubqbp7s0p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T02:00:05", + "amountCrypto": 0.00004372, + "pricePerUnit": 1891809, + "totalCost": 82.71, + "fee": 0.29049786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7042", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T02:00:05" + }, + { + "id": "goo7bfw6gmvwu9sb6f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T06:00:04", + "amountCrypto": 0.00004364, + "pricePerUnit": 1895112, + "totalCost": 82.7, + "fee": 0.29047244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7043", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T06:00:04" + }, + { + "id": "7a796upa8fslyejsqd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T10:00:04", + "amountCrypto": 0.00004402, + "pricePerUnit": 1878648, + "totalCost": 82.7, + "fee": 0.29045629, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7044", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T10:00:04" + }, + { + "id": "88v54g24en9ekwgkk5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T14:00:04", + "amountCrypto": 0.00004409, + "pricePerUnit": 1875821, + "totalCost": 82.7, + "fee": 0.29048039, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7045", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T14:00:04" + }, + { + "id": "u6wmkphk87qjr1u57y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T18:00:05", + "amountCrypto": 0.00004448, + "pricePerUnit": 1859465, + "totalCost": 82.71, + "fee": 0.29049469, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7046", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T18:00:05" + }, + { + "id": "tf323iead4a7v2u7oc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-13T22:00:05", + "amountCrypto": 0.00004429, + "pricePerUnit": 1867462, + "totalCost": 82.71, + "fee": 0.29049779, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7047", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-13T22:00:05" + }, + { + "id": "z6k5ozayi3uypz7pkw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T02:00:05", + "amountCrypto": 0.00004448, + "pricePerUnit": 1859247, + "totalCost": 82.7, + "fee": 0.2904607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7048", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T02:00:05" + }, + { + "id": "kuwrfnpjye7vv0dwo0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T06:00:04", + "amountCrypto": 0.00004409, + "pricePerUnit": 1875715, + "totalCost": 82.7, + "fee": 0.29046409, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7049", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T06:00:04" + }, + { + "id": "egxxkf40yug5zmbj2d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T10:00:05", + "amountCrypto": 0.00004414, + "pricePerUnit": 1873781, + "totalCost": 82.71, + "fee": 0.29049353, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7050", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T10:00:05" + }, + { + "id": "sfgcp8h2pbuv58bhts", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T14:00:05", + "amountCrypto": 0.00004412, + "pricePerUnit": 1874659, + "totalCost": 82.71, + "fee": 0.29049799, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7051", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T14:00:05" + }, + { + "id": "jpjai6neitfmh0t43c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T18:00:04", + "amountCrypto": 0.00004418, + "pricePerUnit": 1872063, + "totalCost": 82.71, + "fee": 0.29049031, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7052", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T18:00:04" + }, + { + "id": "bscka20pycnfizyywu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-14T22:00:05", + "amountCrypto": 0.0000439, + "pricePerUnit": 1883668, + "totalCost": 82.69, + "fee": 0.29043859, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7053", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-14T22:00:05" + }, + { + "id": "qufumf51zs8fblme89", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T02:00:04", + "amountCrypto": 0.00004399, + "pricePerUnit": 1879899, + "totalCost": 82.7, + "fee": 0.29045164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7054", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T02:00:04" + }, + { + "id": "82i75csog00a4lc4j5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T06:00:04", + "amountCrypto": 0.00004373, + "pricePerUnit": 1891362, + "totalCost": 82.71, + "fee": 0.29049563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7055", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T06:00:04" + }, + { + "id": "5wqaxr9fgtsy83zd2t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T10:00:04", + "amountCrypto": 0.00004349, + "pricePerUnit": 1901788, + "totalCost": 82.71, + "fee": 0.29049386, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7056", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T10:00:04" + }, + { + "id": "1ty5ndtqzq3doldwi9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T14:00:05", + "amountCrypto": 0.00004352, + "pricePerUnit": 1900206, + "totalCost": 82.7, + "fee": 0.29045244, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7057", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T14:00:05" + }, + { + "id": "gxjo3l0nze4ohg2nhc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T18:00:05", + "amountCrypto": 0.00004364, + "pricePerUnit": 1895008, + "totalCost": 82.7, + "fee": 0.29045661, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7058", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T18:00:05" + }, + { + "id": "854xo5mms4j9g0wq4w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-15T22:00:04", + "amountCrypto": 0.00004409, + "pricePerUnit": 1875589, + "totalCost": 82.69, + "fee": 0.29044453, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7059", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-15T22:00:04" + }, + { + "id": "tl96zqui4dled0axul", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T02:00:06", + "amountCrypto": 0.00004423, + "pricePerUnit": 1869916, + "totalCost": 82.71, + "fee": 0.29048554, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7060", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T02:00:06" + }, + { + "id": "weye42u4tdvbryevrz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T06:00:04", + "amountCrypto": 0.00004447, + "pricePerUnit": 1859881, + "totalCost": 82.71, + "fee": 0.29049436, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7061", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T06:00:04" + }, + { + "id": "yeguo9s1e5ywbqwmp0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T10:00:04", + "amountCrypto": 0.00004471, + "pricePerUnit": 1849625, + "totalCost": 82.7, + "fee": 0.29045168, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7062", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T10:00:04" + }, + { + "id": "n3vhsl4wgf837vhixo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T14:00:07", + "amountCrypto": 0.00004461, + "pricePerUnit": 1853695, + "totalCost": 82.69, + "fee": 0.2904396, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7063", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T14:00:07" + }, + { + "id": "mf7vnuitne7js7cl26", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T18:00:05", + "amountCrypto": 0.00004409, + "pricePerUnit": 1875902, + "totalCost": 82.71, + "fee": 0.29049296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7064", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T18:00:05" + }, + { + "id": "xwpioepgsa15ky4lee", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-16T22:00:04", + "amountCrypto": 0.00004448, + "pricePerUnit": 1859247, + "totalCost": 82.7, + "fee": 0.2904607, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7065", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-16T22:00:04" + }, + { + "id": "646yvl4cx2coh80wwv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T02:00:05", + "amountCrypto": 0.00004462, + "pricePerUnit": 1853453, + "totalCost": 82.7, + "fee": 0.29046684, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7066", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T02:00:05" + }, + { + "id": "3p0m639bhokbeeserx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T06:00:05", + "amountCrypto": 0.00004454, + "pricePerUnit": 1856665, + "totalCost": 82.7, + "fee": 0.29044853, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7067", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T06:00:05" + }, + { + "id": "2sd3ng0spa1o66shtc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T10:00:04", + "amountCrypto": 0.00004428, + "pricePerUnit": 1867533, + "totalCost": 82.69, + "fee": 0.29044327, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7068", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T10:00:04" + }, + { + "id": "dr2xccja9bypixq1pj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T14:00:04", + "amountCrypto": 0.00004425, + "pricePerUnit": 1868833, + "totalCost": 82.7, + "fee": 0.29044857, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7069", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T14:00:04" + }, + { + "id": "1fq7fbvdlwppdy7cgo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T18:00:05", + "amountCrypto": 0.00004418, + "pricePerUnit": 1871725, + "totalCost": 82.69, + "fee": 0.29043789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7070", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T18:00:05" + }, + { + "id": "dk3rusb423stl6ghin", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-17T22:00:05", + "amountCrypto": 0.0000441, + "pricePerUnit": 1875518, + "totalCost": 82.71, + "fee": 0.29049938, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7071", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-17T22:00:05" + }, + { + "id": "zh9yvwmd5g1ou7pff7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T02:00:04", + "amountCrypto": 0.00004401, + "pricePerUnit": 1879111, + "totalCost": 82.7, + "fee": 0.2904619, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7072", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T02:00:04" + }, + { + "id": "xbl03c0k3b9qzqap3o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T06:00:05", + "amountCrypto": 0.00004408, + "pricePerUnit": 1876261, + "totalCost": 82.71, + "fee": 0.29048264, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7073", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T06:00:05" + }, + { + "id": "e5k8jy9zqk5aqcjlbd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T10:00:05", + "amountCrypto": 0.0000442, + "pricePerUnit": 1871047, + "totalCost": 82.7, + "fee": 0.29046401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7074", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T10:00:05" + }, + { + "id": "hnxvyv54cujf9b4tio", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T14:00:06", + "amountCrypto": 0.00004422, + "pricePerUnit": 1870305, + "totalCost": 82.7, + "fee": 0.29048022, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7075", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T14:00:06" + }, + { + "id": "l0elyepshei4c8mrze", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T18:00:04", + "amountCrypto": 0.00004435, + "pricePerUnit": 1864723, + "totalCost": 82.7, + "fee": 0.29046471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7076", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T18:00:04" + }, + { + "id": "n69f06qt3318vvum6g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-18T22:00:04", + "amountCrypto": 0.00004429, + "pricePerUnit": 1867228, + "totalCost": 82.7, + "fee": 0.29046145, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7077", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-18T22:00:04" + }, + { + "id": "ur2fioy233fwmg0j5q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T02:00:06", + "amountCrypto": 0.0000443, + "pricePerUnit": 1866997, + "totalCost": 82.71, + "fee": 0.290491, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7078", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T02:00:06" + }, + { + "id": "iey9nndc8rvs6ydxst", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T06:00:04", + "amountCrypto": 0.00004422, + "pricePerUnit": 1870288, + "totalCost": 82.7, + "fee": 0.29047757, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7079", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T06:00:04" + }, + { + "id": "acenhcsvqdotrug9a2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T10:00:05", + "amountCrypto": 0.00004392, + "pricePerUnit": 1883104, + "totalCost": 82.71, + "fee": 0.29048385, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7080", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T10:00:05" + }, + { + "id": "59vonasq7n4cr6zgwx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T14:00:05", + "amountCrypto": 0.00004386, + "pricePerUnit": 1885715, + "totalCost": 82.71, + "fee": 0.2904893, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7081", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T14:00:05" + }, + { + "id": "oppz2ci1a50waz81ml", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T18:00:03", + "amountCrypto": 0.00004386, + "pricePerUnit": 1885499, + "totalCost": 82.7, + "fee": 0.29045595, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7082", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T18:00:03" + }, + { + "id": "8z2gnunld8dgeiby2w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-19T22:00:05", + "amountCrypto": 0.00004404, + "pricePerUnit": 1877784, + "totalCost": 82.7, + "fee": 0.29045474, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7083", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-19T22:00:05" + }, + { + "id": "vy2x7nvsg45gs6v84r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T02:00:05", + "amountCrypto": 0.00004404, + "pricePerUnit": 1877785, + "totalCost": 82.7, + "fee": 0.2904549, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7084", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T02:00:05" + }, + { + "id": "484dvo6i1ejfi6yila", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T06:00:04", + "amountCrypto": 0.00004401, + "pricePerUnit": 1879176, + "totalCost": 82.7, + "fee": 0.29047197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7085", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T06:00:04" + }, + { + "id": "ugf83f1q4lfilvxh4j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T10:00:04", + "amountCrypto": 0.0000442, + "pricePerUnit": 1871085, + "totalCost": 82.7, + "fee": 0.29046992, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7086", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T10:00:04" + }, + { + "id": "uy4tt31navvgddhkfn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T14:00:04", + "amountCrypto": 0.00004456, + "pricePerUnit": 1856151, + "totalCost": 82.71, + "fee": 0.29049846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7087", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T14:00:04" + }, + { + "id": "12z50km5txj7jyb2br", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T18:00:04", + "amountCrypto": 0.00004443, + "pricePerUnit": 1861452, + "totalCost": 82.7, + "fee": 0.2904782, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7088", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T18:00:04" + }, + { + "id": "pumdfhy5pp5momt473", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-20T22:00:04", + "amountCrypto": 0.00004431, + "pricePerUnit": 1862888, + "totalCost": 82.54, + "fee": 0.28991711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7089", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-20T22:00:04" + }, + { + "id": "9nzqm1k8njxohjjp5i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T02:00:04", + "amountCrypto": 0.00004419, + "pricePerUnit": 1871412, + "totalCost": 82.7, + "fee": 0.29045496, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7090", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T02:00:04" + }, + { + "id": "v54ghmxei9brxkc5u3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T06:00:04", + "amountCrypto": 0.00004346, + "pricePerUnit": 1902971, + "totalCost": 82.7, + "fee": 0.29047404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7091", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T06:00:04" + }, + { + "id": "gw74rxz03f9dwdcgow", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T10:00:04", + "amountCrypto": 0.0000435, + "pricePerUnit": 1901379, + "totalCost": 82.71, + "fee": 0.29049816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7092", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T10:00:04" + }, + { + "id": "qda2nrlvp3pzp4kwsn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T14:00:04", + "amountCrypto": 0.00004369, + "pricePerUnit": 1893007, + "totalCost": 82.71, + "fee": 0.29048235, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7093", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T14:00:04" + }, + { + "id": "hulxza1cq0a35mig05", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T18:00:03", + "amountCrypto": 0.00004306, + "pricePerUnit": 1920404, + "totalCost": 82.69, + "fee": 0.29043713, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7094", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T18:00:03" + }, + { + "id": "qarwgqrn1mjps581zg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-21T22:00:06", + "amountCrypto": 0.0000435, + "pricePerUnit": 1901030, + "totalCost": 82.69, + "fee": 0.29044486, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7095", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-21T22:00:06" + }, + { + "id": "ev5bk2p290d0a9tg2h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T02:00:04", + "amountCrypto": 0.00004344, + "pricePerUnit": 1903731, + "totalCost": 82.7, + "fee": 0.2904563, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7096", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T02:00:04" + }, + { + "id": "fmg1tvsfwioid6tit6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T06:00:04", + "amountCrypto": 0.00004312, + "pricePerUnit": 1918059, + "totalCost": 82.71, + "fee": 0.29048655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7097", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T06:00:04" + }, + { + "id": "tfi1xv9z9sud0dyryr", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T10:00:04", + "amountCrypto": 0.00004282, + "pricePerUnit": 1931584, + "totalCost": 82.71, + "fee": 0.29049972, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7098", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T10:00:04" + }, + { + "id": "xekql7r1gc49ryxnoa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T14:00:06", + "amountCrypto": 0.00004266, + "pricePerUnit": 1938387, + "totalCost": 82.69, + "fee": 0.29043354, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7099", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T14:00:06" + }, + { + "id": "a0hjschztrao5jjf1b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T18:00:06", + "amountCrypto": 0.00004157, + "pricePerUnit": 1989560, + "totalCost": 82.71, + "fee": 0.29048422, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7100", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T18:00:06" + }, + { + "id": "vo7c8fowo45l6bn1xp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-22T22:00:04", + "amountCrypto": 0.00004112, + "pricePerUnit": 2010997, + "totalCost": 82.69, + "fee": 0.2904356, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7101", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-22T22:00:04" + }, + { + "id": "lpcszzxl81wmxkn56u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T02:00:04", + "amountCrypto": 0.00003994, + "pricePerUnit": 2070846, + "totalCost": 82.71, + "fee": 0.29049679, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7102", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T02:00:04" + }, + { + "id": "j563w8yro67d2hzg55", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T06:00:05", + "amountCrypto": 0.00004029, + "pricePerUnit": 2052595, + "totalCost": 82.7, + "fee": 0.29045973, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7103", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T06:00:05" + }, + { + "id": "uqgpy4ucm5nfkays05", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T10:00:06", + "amountCrypto": 0.0000399, + "pricePerUnit": 2072844, + "totalCost": 82.71, + "fee": 0.29048585, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7104", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T10:00:06" + }, + { + "id": "772h9s78bppns0mnlv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T14:00:05", + "amountCrypto": 0.00004037, + "pricePerUnit": 2048708, + "totalCost": 82.71, + "fee": 0.29048531, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7105", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T14:00:05" + }, + { + "id": "t6ks05jsqi9hqnbgq7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T18:00:04", + "amountCrypto": 0.00004045, + "pricePerUnit": 2044474, + "totalCost": 82.7, + "fee": 0.29045944, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7106", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T18:00:04" + }, + { + "id": "p0p00myha87pmz6ijq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-23T22:00:05", + "amountCrypto": 0.00004013, + "pricePerUnit": 2061008, + "totalCost": 82.71, + "fee": 0.290492, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7107", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-23T22:00:05" + }, + { + "id": "g76om7hformnzz13j2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T02:00:05", + "amountCrypto": 0.00004001, + "pricePerUnit": 2067192, + "totalCost": 82.71, + "fee": 0.29049248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7108", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T02:00:05" + }, + { + "id": "5virwaptu8t5fbasa4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T06:00:04", + "amountCrypto": 0.00004042, + "pricePerUnit": 2045964, + "totalCost": 82.7, + "fee": 0.29045559, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7109", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T06:00:04" + }, + { + "id": "ldj5rlpyxle3lcbe0g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T10:00:05", + "amountCrypto": 0.00004087, + "pricePerUnit": 2023681, + "totalCost": 82.71, + "fee": 0.29049065, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7110", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T10:00:05" + }, + { + "id": "xptd1cwkvs4n1nfbm7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T14:00:05", + "amountCrypto": 0.00004071, + "pricePerUnit": 2031412, + "totalCost": 82.7, + "fee": 0.29045885, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7111", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T14:00:05" + }, + { + "id": "u8rhlq03towq75ipty", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T18:00:05", + "amountCrypto": 0.00004036, + "pricePerUnit": 2049131, + "totalCost": 82.7, + "fee": 0.29047343, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7112", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T18:00:05" + }, + { + "id": "4or9xhd4sqgar4xkqb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-24T22:00:04", + "amountCrypto": 0.00004042, + "pricePerUnit": 2046047, + "totalCost": 82.7, + "fee": 0.29046736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7113", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-24T22:00:04" + }, + { + "id": "r454c0167jbtzehm1a", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T02:00:04", + "amountCrypto": 0.00004018, + "pricePerUnit": 2058055, + "totalCost": 82.69, + "fee": 0.29043727, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7114", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T02:00:04" + }, + { + "id": "97cu1ymnnr5dghopbw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T06:00:06", + "amountCrypto": 0.00004028, + "pricePerUnit": 2051288, + "totalCost": 82.63, + "fee": 0.29020278, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7115", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T06:00:06" + }, + { + "id": "aec75ik1mifmwfn9r6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T10:00:05", + "amountCrypto": 0.00004012, + "pricePerUnit": 2061116, + "totalCost": 82.69, + "fee": 0.29043482, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7116", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T10:00:05" + }, + { + "id": "015i2arcovasv73t2k", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T14:00:06", + "amountCrypto": 0.0000399, + "pricePerUnit": 2072535, + "totalCost": 82.69, + "fee": 0.29044249, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7117", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T14:00:06" + }, + { + "id": "zqlies31z5y7lhplkn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T18:00:04", + "amountCrypto": 0.00003966, + "pricePerUnit": 2085153, + "totalCost": 82.7, + "fee": 0.29045306, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7118", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T18:00:04" + }, + { + "id": "gr22qwvjvez3ylo5ff", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-25T22:00:05", + "amountCrypto": 0.00003961, + "pricePerUnit": 2087875, + "totalCost": 82.7, + "fee": 0.29046566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7119", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-25T22:00:05" + }, + { + "id": "rpugn2d6tbowaim1b7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T02:12:34", + "amountCrypto": 0.00003973, + "pricePerUnit": 2081626, + "totalCost": 82.7, + "fee": 0.29047366, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7120", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T02:12:34" + }, + { + "id": "x5x8rpf7s1hfeq9a9e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T06:00:04", + "amountCrypto": 0.00003974, + "pricePerUnit": 2080970, + "totalCost": 82.7, + "fee": 0.29045511, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7121", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T06:00:04" + }, + { + "id": "unvecwhpdn4dwlua3r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T10:00:04", + "amountCrypto": 0.00003979, + "pricePerUnit": 2078271, + "totalCost": 82.69, + "fee": 0.29044341, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7122", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T10:00:04" + }, + { + "id": "ncx2o89s6q8vgmmmiw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T14:00:04", + "amountCrypto": 0.00003998, + "pricePerUnit": 2068787, + "totalCost": 82.71, + "fee": 0.29049852, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7123", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T14:00:04" + }, + { + "id": "8ol9cbh2gtwln9cx66", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T18:00:05", + "amountCrypto": 0.0000399, + "pricePerUnit": 2072631, + "totalCost": 82.7, + "fee": 0.29045594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7124", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T18:00:05" + }, + { + "id": "7ex6u3685sgqzfvcro", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-26T22:00:05", + "amountCrypto": 0.00003995, + "pricePerUnit": 2070079, + "totalCost": 82.7, + "fee": 0.29046187, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7125", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-26T22:00:05" + }, + { + "id": "wgw6ocpyjigaak196s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T02:00:05", + "amountCrypto": 0.00003979, + "pricePerUnit": 2078578, + "totalCost": 82.71, + "fee": 0.2904863, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7126", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T02:00:05" + }, + { + "id": "69dvpzveauu1z5xdf0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T06:00:04", + "amountCrypto": 0.00003996, + "pricePerUnit": 2069791, + "totalCost": 82.71, + "fee": 0.29049418, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7127", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T06:00:04" + }, + { + "id": "s39blpyw1z6nkd3s7t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T10:00:04", + "amountCrypto": 0.00003999, + "pricePerUnit": 2067948, + "totalCost": 82.7, + "fee": 0.2904534, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7128", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T10:00:04" + }, + { + "id": "zad13glivk8ni5pxlz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T14:00:04", + "amountCrypto": 0.00004005, + "pricePerUnit": 2064733, + "totalCost": 82.69, + "fee": 0.29043689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7129", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T14:00:04" + }, + { + "id": "2nacxj3mgwqrnfhz8j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T18:00:04", + "amountCrypto": 0.00004009, + "pricePerUnit": 2062658, + "totalCost": 82.69, + "fee": 0.2904348, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7130", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T18:00:04" + }, + { + "id": "sswqegzvydzemgf2e5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-27T22:00:04", + "amountCrypto": 0.00003999, + "pricePerUnit": 2068011, + "totalCost": 82.7, + "fee": 0.29046224, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7131", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-27T22:00:04" + }, + { + "id": "6ljwp4fmurxpqwwou6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T02:00:04", + "amountCrypto": 0.00004009, + "pricePerUnit": 2063000, + "totalCost": 82.71, + "fee": 0.29048293, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7132", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T02:00:04" + }, + { + "id": "vuj30aekv0edxtqurc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T06:00:05", + "amountCrypto": 0.0000401, + "pricePerUnit": 2062315, + "totalCost": 82.7, + "fee": 0.29045896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7133", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T06:00:05" + }, + { + "id": "tsic15r329sw0j2mgb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T10:00:05", + "amountCrypto": 0.00003974, + "pricePerUnit": 2080986, + "totalCost": 82.7, + "fee": 0.29045734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7134", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T10:00:05" + }, + { + "id": "hq5hmw0h2ajdaxnn0p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T14:00:06", + "amountCrypto": 0.0000395, + "pricePerUnit": 2091766, + "totalCost": 82.62, + "fee": 0.29019875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7135", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T14:00:06" + }, + { + "id": "30lzjri9p3x41uxc2u", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T18:00:05", + "amountCrypto": 0.00004028, + "pricePerUnit": 2052973, + "totalCost": 82.69, + "fee": 0.29044107, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7136", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T18:00:05" + }, + { + "id": "lkt6lmt9bp66jzr226", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-28T22:00:04", + "amountCrypto": 0.00004002, + "pricePerUnit": 2064246, + "totalCost": 82.61, + "fee": 0.2901509, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7137", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-28T22:00:04" + }, + { + "id": "lg9gpqhl872okx0drc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T02:00:04", + "amountCrypto": 0.00003983, + "pricePerUnit": 2076216, + "totalCost": 82.7, + "fee": 0.29044791, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7138", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T02:00:04" + }, + { + "id": "jyyrf5xrcpzklbw0h2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T06:00:04", + "amountCrypto": 0.00003986, + "pricePerUnit": 2074566, + "totalCost": 82.69, + "fee": 0.29043566, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7139", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T06:00:04" + }, + { + "id": "4fob39e8adk0r8nqev", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T10:00:06", + "amountCrypto": 0.00003986, + "pricePerUnit": 2074750, + "totalCost": 82.7, + "fee": 0.2904614, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7140", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T10:00:06" + }, + { + "id": "ka23jwaltwq291xw7s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T14:00:06", + "amountCrypto": 0.00003973, + "pricePerUnit": 2081462, + "totalCost": 82.7, + "fee": 0.29045078, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7141", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T14:00:06" + }, + { + "id": "ixhrwjhdarunnlja9j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T18:00:04", + "amountCrypto": 0.00003984, + "pricePerUnit": 2075722, + "totalCost": 82.7, + "fee": 0.29045175, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7142", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T18:00:04" + }, + { + "id": "uhfntesplyf5u9u2ez", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-29T22:00:05", + "amountCrypto": 0.00003968, + "pricePerUnit": 2083919, + "totalCost": 82.69, + "fee": 0.29042764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7143", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-29T22:00:05" + }, + { + "id": "oro6tmwhjgihpxwtqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T02:00:04", + "amountCrypto": 0.00004007, + "pricePerUnit": 2063701, + "totalCost": 82.69, + "fee": 0.29043676, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7144", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T02:00:04" + }, + { + "id": "fvh4xv8zj69sjixvbo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T06:00:04", + "amountCrypto": 0.0000398, + "pricePerUnit": 2077944, + "totalCost": 82.7, + "fee": 0.29047072, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7145", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T06:00:04" + }, + { + "id": "qkpknsjcgrnrsapjyv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T10:00:05", + "amountCrypto": 0.00003988, + "pricePerUnit": 2073856, + "totalCost": 82.71, + "fee": 0.29048199, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7146", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T10:00:05" + }, + { + "id": "b9dwwccevw254az4nj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T14:00:05", + "amountCrypto": 0.0000397, + "pricePerUnit": 2083009, + "totalCost": 82.7, + "fee": 0.29044707, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7147", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T14:00:05" + }, + { + "id": "lj3wcratyhmb2of3qp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T18:00:07", + "amountCrypto": 0.00004002, + "pricePerUnit": 2066231, + "totalCost": 82.69, + "fee": 0.29042993, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7148", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T18:00:07" + }, + { + "id": "l0umtvph8j06crxod2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-04-30T22:00:04", + "amountCrypto": 0.00003999, + "pricePerUnit": 2068057, + "totalCost": 82.7, + "fee": 0.2904687, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7149", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-04-30T22:00:04" + }, + { + "id": "cqkaq7j9nrxwv8ocd2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T02:00:05", + "amountCrypto": 0.00003987, + "pricePerUnit": 2074129, + "totalCost": 82.7, + "fee": 0.29044736, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7150", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T02:00:05" + }, + { + "id": "q4ooha1biprltnqa6v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T06:00:05", + "amountCrypto": 0.0000396, + "pricePerUnit": 2088609, + "totalCost": 82.71, + "fee": 0.29049437, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7151", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T06:00:05" + }, + { + "id": "4oq6x08q2qeps85jh3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T10:00:04", + "amountCrypto": 0.00003947, + "pricePerUnit": 2095455, + "totalCost": 82.71, + "fee": 0.29048986, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7152", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T10:00:04" + }, + { + "id": "fc5v29nfaodoq35koo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T14:00:04", + "amountCrypto": 0.00003912, + "pricePerUnit": 2114171, + "totalCost": 82.71, + "fee": 0.29048546, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7153", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T14:00:04" + }, + { + "id": "4u94glaj9o8wv06zp5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T18:00:04", + "amountCrypto": 0.00003865, + "pricePerUnit": 2139947, + "totalCost": 82.71, + "fee": 0.29049455, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7154", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T18:00:04" + }, + { + "id": "p41wlnaj7281arekxy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-01T22:00:04", + "amountCrypto": 0.00003888, + "pricePerUnit": 2127048, + "totalCost": 82.7, + "fee": 0.29046172, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7155", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-01T22:00:04" + }, + { + "id": "4i1ewuuroc8ntwl20r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T02:00:04", + "amountCrypto": 0.00003884, + "pricePerUnit": 2129125, + "totalCost": 82.7, + "fee": 0.29044622, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7156", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T02:00:04" + }, + { + "id": "rgfxrn9o93ex12cnnw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T06:00:06", + "amountCrypto": 0.00003865, + "pricePerUnit": 2139820, + "totalCost": 82.7, + "fee": 0.29047731, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7157", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T06:00:06" + }, + { + "id": "x28w5d4vgrqd2hsbzz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T10:00:04", + "amountCrypto": 0.00003903, + "pricePerUnit": 2118937, + "totalCost": 82.7, + "fee": 0.29047045, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7158", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T10:00:04" + }, + { + "id": "uolxh7ef3lb67494mc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T14:00:04", + "amountCrypto": 0.00003885, + "pricePerUnit": 2128615, + "totalCost": 82.7, + "fee": 0.29045144, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7159", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T14:00:04" + }, + { + "id": "ebxa17gqyk5je92dmm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T18:00:05", + "amountCrypto": 0.00003867, + "pricePerUnit": 2138606, + "totalCost": 82.7, + "fee": 0.29046269, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7160", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T18:00:05" + }, + { + "id": "di7gig1kzsyj9hggy8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-02T22:00:04", + "amountCrypto": 0.00003877, + "pricePerUnit": 2132931, + "totalCost": 82.69, + "fee": 0.29044103, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7161", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-02T22:00:04" + }, + { + "id": "lrxl9tzn07avnjj2ov", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T02:00:06", + "amountCrypto": 0.00003885, + "pricePerUnit": 2128884, + "totalCost": 82.71, + "fee": 0.29048813, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7162", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T02:00:06" + }, + { + "id": "8141pcy9etu3qsb7fy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T06:00:04", + "amountCrypto": 0.00003889, + "pricePerUnit": 2126510, + "totalCost": 82.7, + "fee": 0.29046297, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7163", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T06:00:04" + }, + { + "id": "l1k3fqcnw8zljj4iv9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T10:00:04", + "amountCrypto": 0.00003893, + "pricePerUnit": 2124322, + "totalCost": 82.7, + "fee": 0.29046257, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7164", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T10:00:04" + }, + { + "id": "b5uth2oed7wdnm6mt0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T14:00:05", + "amountCrypto": 0.00003905, + "pricePerUnit": 2117819, + "totalCost": 82.7, + "fee": 0.29046603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7165", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T14:00:05" + }, + { + "id": "jul9do1dvhdfap5lvv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T18:00:04", + "amountCrypto": 0.00003893, + "pricePerUnit": 2124250, + "totalCost": 82.7, + "fee": 0.29045273, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7166", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T18:00:04" + }, + { + "id": "hnc4qjjk5vw8cgh5hf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-03T22:00:04", + "amountCrypto": 0.00003898, + "pricePerUnit": 2121824, + "totalCost": 82.71, + "fee": 0.29049367, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7167", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-03T22:00:04" + }, + { + "id": "du1uugigwpjmkx6zdl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T02:00:05", + "amountCrypto": 0.00003912, + "pricePerUnit": 2113968, + "totalCost": 82.7, + "fee": 0.29045758, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7168", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T02:00:05" + }, + { + "id": "k9ga6l00lr5bovu3zg", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T06:00:04", + "amountCrypto": 0.00003913, + "pricePerUnit": 2113382, + "totalCost": 82.7, + "fee": 0.29045133, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7169", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T06:00:04" + }, + { + "id": "xct6auuluw7tj9sd3j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T10:00:04", + "amountCrypto": 0.00003908, + "pricePerUnit": 2115934, + "totalCost": 82.69, + "fee": 0.29043044, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7170", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T10:00:04" + }, + { + "id": "i8vl3j4244i2va0j8b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T14:00:03", + "amountCrypto": 0.00003928, + "pricePerUnit": 2105531, + "totalCost": 82.71, + "fee": 0.29048159, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7171", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T14:00:03" + }, + { + "id": "rai0vediej9qhgluqi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T18:00:04", + "amountCrypto": 0.00003926, + "pricePerUnit": 2106431, + "totalCost": 82.7, + "fee": 0.29045773, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7172", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T18:00:04" + }, + { + "id": "2943bx4xvrvmoday9h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-04T22:00:04", + "amountCrypto": 0.00003931, + "pricePerUnit": 2104051, + "totalCost": 82.71, + "fee": 0.29049907, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7173", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-04T22:00:04" + }, + { + "id": "rtwm2wvpl68r5qefmq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T02:00:06", + "amountCrypto": 0.00003979, + "pricePerUnit": 2078333, + "totalCost": 82.7, + "fee": 0.29045207, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7174", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T02:00:06" + }, + { + "id": "c74lzh94jcwr6hblaa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T06:00:04", + "amountCrypto": 0.00003998, + "pricePerUnit": 2068388, + "totalCost": 82.69, + "fee": 0.29044252, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7175", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T06:00:04" + }, + { + "id": "84io0ccaayy1j517mw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T10:00:06", + "amountCrypto": 0.00003973, + "pricePerUnit": 2081713, + "totalCost": 82.71, + "fee": 0.29048579, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7176", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T10:00:06" + }, + { + "id": "b3u7xgb1rdkwngc6o7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T14:00:08", + "amountCrypto": 0.00004002, + "pricePerUnit": 2066232, + "totalCost": 82.69, + "fee": 0.29043007, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7177", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T14:00:08" + }, + { + "id": "3fcajjfsk368584kwu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T18:00:04", + "amountCrypto": 0.00004006, + "pricePerUnit": 2064220, + "totalCost": 82.69, + "fee": 0.29043727, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7178", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T18:00:04" + }, + { + "id": "5scegogq0nb1ce5w8h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-05T22:00:04", + "amountCrypto": 0.00003982, + "pricePerUnit": 2076745, + "totalCost": 82.7, + "fee": 0.29044894, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7179", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-05T22:00:04" + }, + { + "id": "u1wkpxfojff54j8b5m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T02:00:05", + "amountCrypto": 0.0000396, + "pricePerUnit": 2088139, + "totalCost": 82.69, + "fee": 0.29042903, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7180", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T02:00:05" + }, + { + "id": "m34j9mf9elb9e3tpaf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T06:00:06", + "amountCrypto": 0.00003975, + "pricePerUnit": 2080472, + "totalCost": 82.7, + "fee": 0.29045871, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7181", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T06:00:06" + }, + { + "id": "77arkzke4ljs8adz19", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T10:00:04", + "amountCrypto": 0.00003982, + "pricePerUnit": 2076679, + "totalCost": 82.69, + "fee": 0.29043971, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7182", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T10:00:04" + }, + { + "id": "caov9t3j6g15rnnv3h", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T14:00:05", + "amountCrypto": 0.00004007, + "pricePerUnit": 2063659, + "totalCost": 82.69, + "fee": 0.29043086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7183", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T14:00:05" + }, + { + "id": "ylvpcgosbh3ci1ordp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T18:00:06", + "amountCrypto": 0.00003983, + "pricePerUnit": 2076433, + "totalCost": 82.7, + "fee": 0.29047825, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7184", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T18:00:06" + }, + { + "id": "n5x52gywm0g0ddsea1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-06T22:00:05", + "amountCrypto": 0.00003973, + "pricePerUnit": 2081716, + "totalCost": 82.71, + "fee": 0.29048621, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7185", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-06T22:00:05" + }, + { + "id": "sxnym5s3rtridj8yo4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T02:00:04", + "amountCrypto": 0.00003893, + "pricePerUnit": 2124251, + "totalCost": 82.7, + "fee": 0.29045287, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7186", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T02:00:04" + }, + { + "id": "z4oasbos9bw67zv6y0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T06:00:07", + "amountCrypto": 0.000039, + "pricePerUnit": 2120734, + "totalCost": 82.71, + "fee": 0.29049334, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7187", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T06:00:07" + }, + { + "id": "ymjku5ci1lkmwqblpc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T10:00:06", + "amountCrypto": 0.00003894, + "pricePerUnit": 2123911, + "totalCost": 82.71, + "fee": 0.290481, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7188", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T10:00:06" + }, + { + "id": "to7gw9n8dsz3chrikd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T14:00:05", + "amountCrypto": 0.00003894, + "pricePerUnit": 2123941, + "totalCost": 82.71, + "fee": 0.2904851, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7189", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T14:00:05" + }, + { + "id": "npvdeuavmx8ksm40ou", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T18:00:04", + "amountCrypto": 0.00003895, + "pricePerUnit": 2123277, + "totalCost": 82.7, + "fee": 0.29046877, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7190", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T18:00:04" + }, + { + "id": "8g4j02zc9dym31dn3m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-07T22:00:05", + "amountCrypto": 0.0000391, + "pricePerUnit": 2115114, + "totalCost": 82.7, + "fee": 0.29046638, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7191", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-07T22:00:05" + }, + { + "id": "hslg71llsw11serjr2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T02:00:05", + "amountCrypto": 0.00003877, + "pricePerUnit": 2132869, + "totalCost": 82.69, + "fee": 0.29043259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7192", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T02:00:05" + }, + { + "id": "alfel4ocoswxk7zj2v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T06:00:09", + "amountCrypto": 0.00003809, + "pricePerUnit": 2171077, + "totalCost": 82.7, + "fee": 0.29045012, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7193", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T06:00:09" + }, + { + "id": "t49qlfma3dugh3gdbx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T10:00:04", + "amountCrypto": 0.00003785, + "pricePerUnit": 2184911, + "totalCost": 82.7, + "fee": 0.29045912, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7194", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T10:00:04" + }, + { + "id": "4z4xkn5m77dgb5148m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T14:00:05", + "amountCrypto": 0.0000377, + "pricePerUnit": 2193823, + "totalCost": 82.71, + "fee": 0.29048816, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7195", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T14:00:05" + }, + { + "id": "mdp05inz031arpanvy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T18:00:04", + "amountCrypto": 0.00003707, + "pricePerUnit": 2231023, + "totalCost": 82.7, + "fee": 0.29047718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7196", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T18:00:04" + }, + { + "id": "wf76wpzm8392i2uokl", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-08T22:00:04", + "amountCrypto": 0.00003687, + "pricePerUnit": 2243117, + "totalCost": 82.7, + "fee": 0.29047613, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7197", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-08T22:00:04" + }, + { + "id": "pdp9etmsfjcn56g0xu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T02:00:04", + "amountCrypto": 0.00003645, + "pricePerUnit": 2268869, + "totalCost": 82.7, + "fee": 0.29046404, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7198", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T02:00:04" + }, + { + "id": "0qjcaqf5p9cax9wohi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T06:00:04", + "amountCrypto": 0.00003649, + "pricePerUnit": 2266168, + "totalCost": 82.69, + "fee": 0.29043667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7199", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T06:00:04" + }, + { + "id": "6eulpd378ux542izoq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T10:00:05", + "amountCrypto": 0.00003608, + "pricePerUnit": 2292269, + "totalCost": 82.71, + "fee": 0.2904809, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7200", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T10:00:05" + }, + { + "id": "k8rw2dajfnn2gn2z0s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T14:00:04", + "amountCrypto": 0.00003627, + "pricePerUnit": 2279790, + "totalCost": 82.69, + "fee": 0.29042081, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7201", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T14:00:04" + }, + { + "id": "plaumnkyidx4koqsfi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T18:00:05", + "amountCrypto": 0.00003635, + "pricePerUnit": 2275070, + "totalCost": 82.7, + "fee": 0.29045882, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7202", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T18:00:05" + }, + { + "id": "1thtbcsep8zguzg9yd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-09T22:00:05", + "amountCrypto": 0.00003625, + "pricePerUnit": 2281161, + "totalCost": 82.69, + "fee": 0.29043526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7203", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-09T22:00:05" + }, + { + "id": "noviyzkoe4jg5ougzz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T02:00:04", + "amountCrypto": 0.00003631, + "pricePerUnit": 2277689, + "totalCost": 82.7, + "fee": 0.29047316, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7204", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T02:00:04" + }, + { + "id": "1sqa4kdt4ypxq4890b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T06:00:03", + "amountCrypto": 0.00003623, + "pricePerUnit": 2282786, + "totalCost": 82.71, + "fee": 0.29048182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7205", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T06:00:03" + }, + { + "id": "qnjuukf4j7f7y67z33", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T10:00:04", + "amountCrypto": 0.00003605, + "pricePerUnit": 2294295, + "totalCost": 82.71, + "fee": 0.2904959, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7206", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T10:00:04" + }, + { + "id": "ir3vf1u145jm4dit7l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T14:00:04", + "amountCrypto": 0.00003612, + "pricePerUnit": 2289863, + "totalCost": 82.71, + "fee": 0.29049774, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7207", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T14:00:04" + }, + { + "id": "ytvzx3ch576xjw8rsn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T18:00:04", + "amountCrypto": 0.00003619, + "pricePerUnit": 2284933, + "totalCost": 82.69, + "fee": 0.29043401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7208", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T18:00:04" + }, + { + "id": "bn6311tmf45c26pjyb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-10T22:00:04", + "amountCrypto": 0.00003622, + "pricePerUnit": 2283275, + "totalCost": 82.7, + "fee": 0.29046382, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7209", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-10T22:00:04" + }, + { + "id": "5qhgod2d3r768meq8g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T02:00:04", + "amountCrypto": 0.00003582, + "pricePerUnit": 2308849, + "totalCost": 82.7, + "fee": 0.29047351, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7210", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T02:00:04" + }, + { + "id": "ir0ps2si1kz1zgiz4r", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T06:00:04", + "amountCrypto": 0.00003597, + "pricePerUnit": 2299418, + "totalCost": 82.71, + "fee": 0.29049839, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7211", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T06:00:04" + }, + { + "id": "lcrgu6hv42gskakze6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T10:00:03", + "amountCrypto": 0.00003615, + "pricePerUnit": 2287880, + "totalCost": 82.71, + "fee": 0.29048724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7212", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T10:00:03" + }, + { + "id": "ro46jt8na20g6uk826", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T14:00:04", + "amountCrypto": 0.00003577, + "pricePerUnit": 2311863, + "totalCost": 82.7, + "fee": 0.29044665, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7213", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T14:00:04" + }, + { + "id": "t9y462k12zs6nr1732", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T18:00:04", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305752, + "totalCost": 82.71, + "fee": 0.29048875, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7214", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T18:00:04" + }, + { + "id": "dd8rmwa2wbdae9c7u4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-11T22:00:04", + "amountCrypto": 0.00003579, + "pricePerUnit": 2310849, + "totalCost": 82.71, + "fee": 0.29048164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7215", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-11T22:00:04" + }, + { + "id": "qh9syr7v8bi3xouexd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T02:00:04", + "amountCrypto": 0.00003583, + "pricePerUnit": 2308270, + "totalCost": 82.71, + "fee": 0.29048178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7216", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T02:00:04" + }, + { + "id": "m8xty1gtz3psa6l6hi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T06:00:03", + "amountCrypto": 0.00003585, + "pricePerUnit": 2306691, + "totalCost": 82.69, + "fee": 0.29044508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7217", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T06:00:03" + }, + { + "id": "stj7jmhdzy02c45qbf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T10:00:06", + "amountCrypto": 0.00003533, + "pricePerUnit": 2340990, + "totalCost": 82.71, + "fee": 0.29048828, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7218", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T10:00:06" + }, + { + "id": "t3ysilu7chwtainii9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T14:00:04", + "amountCrypto": 0.00003551, + "pricePerUnit": 2329186, + "totalCost": 82.71, + "fee": 0.29049606, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7219", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T14:00:04" + }, + { + "id": "nbhyfg5k80b7cusmnn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T18:00:04", + "amountCrypto": 0.00003594, + "pricePerUnit": 2301154, + "totalCost": 82.7, + "fee": 0.29047526, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7220", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T18:00:04" + }, + { + "id": "aswskdjz5a00ni1460", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-12T22:00:04", + "amountCrypto": 0.00003616, + "pricePerUnit": 2286988, + "totalCost": 82.7, + "fee": 0.29045424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7221", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-12T22:00:04" + }, + { + "id": "xdk43ct6vuyql2g8nn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T02:00:04", + "amountCrypto": 0.00003581, + "pricePerUnit": 2309251, + "totalCost": 82.69, + "fee": 0.29044296, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7222", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T02:00:04" + }, + { + "id": "9w37b7gwpb6qllvpm8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T06:00:05", + "amountCrypto": 0.00003619, + "pricePerUnit": 2284906, + "totalCost": 82.69, + "fee": 0.29043058, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7223", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T06:00:05" + }, + { + "id": "a8r5zgcomk6hkm93gc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T10:00:06", + "amountCrypto": 0.0000359, + "pricePerUnit": 2303837, + "totalCost": 82.71, + "fee": 0.29049023, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7224", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T10:00:06" + }, + { + "id": "pt2y0sn51ho2422i57", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T14:00:05", + "amountCrypto": 0.00003561, + "pricePerUnit": 2322472, + "totalCost": 82.7, + "fee": 0.29047444, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7225", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T14:00:05" + }, + { + "id": "421o4iys7mavak8nxx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T18:00:04", + "amountCrypto": 0.00003577, + "pricePerUnit": 2311984, + "totalCost": 82.7, + "fee": 0.29046197, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7226", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T18:00:04" + }, + { + "id": "ce5dy7bgr570ex5vj1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-13T22:00:04", + "amountCrypto": 0.00003551, + "pricePerUnit": 2326424, + "totalCost": 82.61, + "fee": 0.29015164, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7227", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-13T22:00:04" + }, + { + "id": "vk222uf0qia4q1p517", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T02:00:05", + "amountCrypto": 0.00003574, + "pricePerUnit": 2313958, + "totalCost": 82.7, + "fee": 0.29046615, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7228", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T02:00:05" + }, + { + "id": "cb8jl24db5sr5wokug", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T06:00:04", + "amountCrypto": 0.0000359, + "pricePerUnit": 2303797, + "totalCost": 82.71, + "fee": 0.29048519, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7229", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T06:00:04" + }, + { + "id": "fop0l13pr0x9l0yx76", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T10:00:07", + "amountCrypto": 0.00003588, + "pricePerUnit": 2304926, + "totalCost": 82.7, + "fee": 0.29046569, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7230", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T10:00:07" + }, + { + "id": "exfd6jypibi9soy22v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T14:00:04", + "amountCrypto": 0.00003592, + "pricePerUnit": 2302474, + "totalCost": 82.7, + "fee": 0.29048019, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7231", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T14:00:04" + }, + { + "id": "5bk2klppt5kcojdvft", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T18:00:04", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299807, + "totalCost": 82.7, + "fee": 0.29046674, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7232", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T18:00:04" + }, + { + "id": "u56n2ffdjou7ps634i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-14T22:00:04", + "amountCrypto": 0.00003589, + "pricePerUnit": 2304044, + "totalCost": 82.69, + "fee": 0.29043552, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7233", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-14T22:00:04" + }, + { + "id": "6875iickj3t5suaevd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T02:00:04", + "amountCrypto": 0.00003589, + "pricePerUnit": 2304530, + "totalCost": 82.71, + "fee": 0.29049675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7234", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T02:00:04" + }, + { + "id": "wt6pcjg2zzgsxktltq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T06:00:04", + "amountCrypto": 0.00003618, + "pricePerUnit": 2285952, + "totalCost": 82.71, + "fee": 0.2904833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7235", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T06:00:04" + }, + { + "id": "oaym86uavmcbka2t3g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T10:00:06", + "amountCrypto": 0.00003654, + "pricePerUnit": 2263000, + "totalCost": 82.69, + "fee": 0.29042801, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7236", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T10:00:06" + }, + { + "id": "84wvw80tk8aoew4xjd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T14:00:06", + "amountCrypto": 0.00003635, + "pricePerUnit": 2275204, + "totalCost": 82.7, + "fee": 0.29047592, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7237", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T14:00:06" + }, + { + "id": "127b9oknef6xbhyuwf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T18:00:06", + "amountCrypto": 0.000036, + "pricePerUnit": 2297269, + "totalCost": 82.7, + "fee": 0.29046896, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7238", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T18:00:06" + }, + { + "id": "hhnavfa3g9uc2ot9f9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-15T22:00:04", + "amountCrypto": 0.00003602, + "pricePerUnit": 2295932, + "totalCost": 82.7, + "fee": 0.29046127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7239", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-15T22:00:04" + }, + { + "id": "xr56i9va5lqvdam5gx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T02:00:04", + "amountCrypto": 0.00003584, + "pricePerUnit": 2307612, + "totalCost": 82.7, + "fee": 0.29047994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7240", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T02:00:04" + }, + { + "id": "3mz6jolbcj11ln3pgb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T06:00:05", + "amountCrypto": 0.00003578, + "pricePerUnit": 2311215, + "totalCost": 82.7, + "fee": 0.29044645, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7241", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T06:00:05" + }, + { + "id": "8rmz9dxvbfzlqk4ghi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T10:00:05", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302853, + "totalCost": 82.7, + "fee": 0.2904471, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7242", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T10:00:05" + }, + { + "id": "ozygrv7hwa0c7v7rix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T14:00:05", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301853, + "totalCost": 82.71, + "fee": 0.29048261, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7243", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T14:00:05" + }, + { + "id": "3zt7tute5qy51muf7o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T18:00:04", + "amountCrypto": 0.00003564, + "pricePerUnit": 2320250, + "totalCost": 82.69, + "fee": 0.29044103, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7244", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T18:00:04" + }, + { + "id": "kn4qgytesa5xs18jti", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-16T22:00:04", + "amountCrypto": 0.00003573, + "pricePerUnit": 2314523, + "totalCost": 82.7, + "fee": 0.29045575, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7245", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-16T22:00:04" + }, + { + "id": "bt4spjmm3dcb9l3kgs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T02:00:06", + "amountCrypto": 0.00003588, + "pricePerUnit": 2304801, + "totalCost": 82.7, + "fee": 0.29044994, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7246", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T02:00:06" + }, + { + "id": "fcvmg7lvv8yxtijg6t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T06:00:04", + "amountCrypto": 0.00003585, + "pricePerUnit": 2306553, + "totalCost": 82.69, + "fee": 0.29042771, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7247", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T06:00:04" + }, + { + "id": "i1ikx3z653y7vl26wt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T10:00:05", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305772, + "totalCost": 82.71, + "fee": 0.29049126, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7248", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T10:00:05" + }, + { + "id": "u1g6fmc3h9q1wgkj2i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T14:00:04", + "amountCrypto": 0.00003605, + "pricePerUnit": 2294093, + "totalCost": 82.7, + "fee": 0.29047033, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7249", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T14:00:04" + }, + { + "id": "yr94e7w88dq5r42yly", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T18:00:04", + "amountCrypto": 0.00003605, + "pricePerUnit": 2294092, + "totalCost": 82.7, + "fee": 0.29047021, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7250", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T18:00:04" + }, + { + "id": "zdpgjf4ma01q41vyy9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-17T22:00:06", + "amountCrypto": 0.00003602, + "pricePerUnit": 2295689, + "totalCost": 82.69, + "fee": 0.29043042, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7251", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-17T22:00:06" + }, + { + "id": "3wt2ogxfh9ohpjh10b", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T02:00:04", + "amountCrypto": 0.00003602, + "pricePerUnit": 2295841, + "totalCost": 82.7, + "fee": 0.29044964, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7252", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T02:00:04" + }, + { + "id": "tzffe1rrtvgu5xal5n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T06:00:06", + "amountCrypto": 0.00003597, + "pricePerUnit": 2298854, + "totalCost": 82.69, + "fee": 0.29042718, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7253", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T06:00:06" + }, + { + "id": "5js0dyowjts3a8k06l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T10:00:06", + "amountCrypto": 0.00003578, + "pricePerUnit": 2311614, + "totalCost": 82.71, + "fee": 0.29049657, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7254", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T10:00:06" + }, + { + "id": "p4wgz9ptbcf1r2r3kf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T14:00:05", + "amountCrypto": 0.00003574, + "pricePerUnit": 2314126, + "totalCost": 82.71, + "fee": 0.29048723, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7255", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T14:00:05" + }, + { + "id": "98mvjdi4hwl9n0ln6v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T18:00:04", + "amountCrypto": 0.00003521, + "pricePerUnit": 2348772, + "totalCost": 82.7, + "fee": 0.29046401, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7256", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T18:00:04" + }, + { + "id": "zxty4ejq07qdyywr3p", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-18T22:00:04", + "amountCrypto": 0.00003571, + "pricePerUnit": 2315837, + "totalCost": 82.7, + "fee": 0.29045789, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7257", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-18T22:00:04" + }, + { + "id": "30wj64ww2ur05yjfuy", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T02:00:05", + "amountCrypto": 0.00003496, + "pricePerUnit": 2362950, + "totalCost": 82.61, + "fee": 0.29014248, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7258", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T02:00:05" + }, + { + "id": "dcmspy62hh675msmnz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T06:00:04", + "amountCrypto": 0.0000359, + "pricePerUnit": 2303451, + "totalCost": 82.69, + "fee": 0.29044158, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7259", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T06:00:04" + }, + { + "id": "59pfe6o86ydp4g7mq0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T10:00:05", + "amountCrypto": 0.00003614, + "pricePerUnit": 2288078, + "totalCost": 82.69, + "fee": 0.290432, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7260", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T10:00:05" + }, + { + "id": "ywbqddntupemx635iv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T14:00:07", + "amountCrypto": 0.00003637, + "pricePerUnit": 2273729, + "totalCost": 82.7, + "fee": 0.29044729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7261", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T14:00:07" + }, + { + "id": "6afv3i2cnobc5m5kw1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T18:00:05", + "amountCrypto": 0.00003574, + "pricePerUnit": 2313862, + "totalCost": 82.7, + "fee": 0.29045398, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7262", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T18:00:05" + }, + { + "id": "i0j47k7bxa5ancj3eb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-19T22:00:05", + "amountCrypto": 0.00003552, + "pricePerUnit": 2328480, + "totalCost": 82.71, + "fee": 0.29048983, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7263", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-19T22:00:05" + }, + { + "id": "biavd3xnge8g287a51", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-20T02:00:04", + "amountCrypto": 0.00003546, + "pricePerUnit": 2332201, + "totalCost": 82.7, + "fee": 0.29046259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7264", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-20T02:00:04" + }, + { + "id": "6jv45rhqz5z30x942f", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-20T06:00:06", + "amountCrypto": 0.0000354, + "pricePerUnit": 2336046, + "totalCost": 82.7, + "fee": 0.29044918, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7265", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-20T06:00:06" + }, + { + "id": "pks0k7i7k0db901zyu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-20T10:00:05", + "amountCrypto": 0.00003569, + "pricePerUnit": 2317340, + "totalCost": 82.71, + "fee": 0.29048365, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7266", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-20T10:00:05" + }, + { + "id": "at1hvpm2gtt62650uw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-20T14:00:05", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325324, + "totalCost": 82.69, + "fee": 0.29042274, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7267", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-20T14:00:05" + }, + { + "id": "em4t5nhtfxprbsc40n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-20T18:00:04", + "amountCrypto": 0.00003556, + "pricePerUnit": 2325322, + "totalCost": 82.69, + "fee": 0.29042249, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7268", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-20T18:00:04" + }, + { + "id": "qt7j2mh405nq2reyet", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-20T22:00:05", + "amountCrypto": 0.00003507, + "pricePerUnit": 2357826, + "totalCost": 82.69, + "fee": 0.29042424, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7269", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-20T22:00:05" + }, + { + "id": "tq0szrf8zch7p7bz1g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-21T02:00:05", + "amountCrypto": 0.00003516, + "pricePerUnit": 2351814, + "totalCost": 82.69, + "fee": 0.29042713, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7270", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-21T02:00:05" + }, + { + "id": "soufm4f59zuyg1uwde", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-21T06:00:04", + "amountCrypto": 0.00003525, + "pricePerUnit": 2346286, + "totalCost": 82.71, + "fee": 0.29048624, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7271", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-21T06:00:04" + }, + { + "id": "t1t74zkerte7ln3gbb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-21T10:00:05", + "amountCrypto": 0.0000354, + "pricePerUnit": 2336037, + "totalCost": 82.7, + "fee": 0.29044807, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7272", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-21T10:00:05" + }, + { + "id": "cot5max4dmmnu9vyo0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-21T14:00:04", + "amountCrypto": 0.00003536, + "pricePerUnit": 2338678, + "totalCost": 82.7, + "fee": 0.29044783, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7273", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-21T14:00:04" + }, + { + "id": "0pj8t5n9hmi7xipm7s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-21T18:00:04", + "amountCrypto": 0.00003463, + "pricePerUnit": 2388055, + "totalCost": 82.7, + "fee": 0.29045721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7274", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-21T18:00:04" + }, + { + "id": "ofws7xeb8kmpkq78du", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-21T22:00:04", + "amountCrypto": 0.00003467, + "pricePerUnit": 2385180, + "totalCost": 82.69, + "fee": 0.29044267, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7275", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-21T22:00:04" + }, + { + "id": "vjy5btedxgoxnjwc8t", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-22T02:00:04", + "amountCrypto": 0.00003435, + "pricePerUnit": 2407499, + "totalCost": 82.7, + "fee": 0.29045459, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7276", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-22T02:00:04" + }, + { + "id": "x1y1kk7dyi9l7pm0bn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-22T06:00:04", + "amountCrypto": 0.00003403, + "pricePerUnit": 2430288, + "totalCost": 82.7, + "fee": 0.29047262, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7277", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-22T06:00:04" + }, + { + "id": "ij73m45g1tfd2m799n", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-22T10:00:05", + "amountCrypto": 0.00003393, + "pricePerUnit": 2437272, + "totalCost": 82.7, + "fee": 0.29045127, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7278", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-22T10:00:05" + }, + { + "id": "iyyo9nzu93a6nb585l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-22T14:00:04", + "amountCrypto": 0.00003378, + "pricePerUnit": 2448295, + "totalCost": 82.7, + "fee": 0.29047506, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7279", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-22T14:00:04" + }, + { + "id": "oxuq999fetj6difx88", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-22T18:00:04", + "amountCrypto": 0.00003364, + "pricePerUnit": 2458507, + "totalCost": 82.7, + "fee": 0.29047769, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7280", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-22T18:00:04" + }, + { + "id": "t60p46z266d2rzpr3s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-22T22:00:04", + "amountCrypto": 0.00003374, + "pricePerUnit": 2451200, + "totalCost": 82.7, + "fee": 0.29047538, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7281", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-22T22:00:04" + }, + { + "id": "uvi1laqhvwjyk9v950", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T02:00:05", + "amountCrypto": 0.00003356, + "pricePerUnit": 2463981, + "totalCost": 82.69, + "fee": 0.2904322, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7282", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T02:00:05" + }, + { + "id": "yqtwkomr4vknyclvbv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T06:00:04", + "amountCrypto": 0.0000338, + "pricePerUnit": 2446405, + "totalCost": 82.69, + "fee": 0.29042259, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7283", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T06:00:04" + }, + { + "id": "i4cp765nt2e1isihd7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T10:00:05", + "amountCrypto": 0.00003401, + "pricePerUnit": 2431509, + "totalCost": 82.7, + "fee": 0.29044764, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7284", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T10:00:05" + }, + { + "id": "3myvqcjb31sw2zvb9i", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T14:00:05", + "amountCrypto": 0.00003443, + "pricePerUnit": 2402256, + "totalCost": 82.71, + "fee": 0.29049703, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7285", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T14:00:05" + }, + { + "id": "jqpwb2jk631vv7a4zq", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T18:00:05", + "amountCrypto": 0.00003456, + "pricePerUnit": 2392574, + "totalCost": 82.69, + "fee": 0.29041864, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7286", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T18:00:05" + }, + { + "id": "d0hhdmtqrgklokrtrm", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-23T22:00:05", + "amountCrypto": 0.0000347, + "pricePerUnit": 2382947, + "totalCost": 82.69, + "fee": 0.29042182, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7287", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-23T22:00:05" + }, + { + "id": "wrjk6c3vbju2dq53ix", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T02:00:07", + "amountCrypto": 0.00003516, + "pricePerUnit": 2351893, + "totalCost": 82.69, + "fee": 0.29043689, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7288", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T02:00:07" + }, + { + "id": "t8t1t9tohh12rjvdik", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T06:00:05", + "amountCrypto": 0.0000349, + "pricePerUnit": 2369449, + "totalCost": 82.69, + "fee": 0.29044123, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7289", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T06:00:05" + }, + { + "id": "h5aikcbjzh1tmv6a1q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T10:00:04", + "amountCrypto": 0.00003507, + "pricePerUnit": 2357986, + "totalCost": 82.69, + "fee": 0.29044398, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7290", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T10:00:04" + }, + { + "id": "noer16h1hlr7vdhy0j", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T14:00:04", + "amountCrypto": 0.00003457, + "pricePerUnit": 2392278, + "totalCost": 82.7, + "fee": 0.29046677, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7291", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T14:00:04" + }, + { + "id": "3vcc71151kh6o7bkhu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T18:00:05", + "amountCrypto": 0.00003465, + "pricePerUnit": 2386784, + "totalCost": 82.7, + "fee": 0.29047038, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7292", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T18:00:05" + }, + { + "id": "qxt2toembv1ajsmf4o", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-24T22:00:04", + "amountCrypto": 0.00003462, + "pricePerUnit": 2388567, + "totalCost": 82.69, + "fee": 0.29043562, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7293", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-24T22:00:04" + }, + { + "id": "dziafdtltr9jldpfbi", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T02:00:04", + "amountCrypto": 0.00003501, + "pricePerUnit": 2361996, + "totalCost": 82.69, + "fee": 0.29044015, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7294", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T02:00:04" + }, + { + "id": "1ze3pyew5gncam9g3s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T06:00:04", + "amountCrypto": 0.00003496, + "pricePerUnit": 2365304, + "totalCost": 82.69, + "fee": 0.29043156, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7295", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T06:00:04" + }, + { + "id": "vtgzc5umgxpcpeg3ew", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T10:00:03", + "amountCrypto": 0.00003504, + "pricePerUnit": 2360056, + "totalCost": 82.7, + "fee": 0.29045029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7296", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T10:00:03" + }, + { + "id": "osp7syudsuccdfikvb", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T14:00:04", + "amountCrypto": 0.00003523, + "pricePerUnit": 2347466, + "totalCost": 82.7, + "fee": 0.29046734, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7297", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T14:00:04" + }, + { + "id": "4ptic00r90ji2vgprz", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T18:00:05", + "amountCrypto": 0.00003527, + "pricePerUnit": 2344462, + "totalCost": 82.69, + "fee": 0.29042508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7298", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T18:00:05" + }, + { + "id": "jme29js59wqthsrqn2", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-25T22:00:04", + "amountCrypto": 0.00003507, + "pricePerUnit": 2358429, + "totalCost": 82.71, + "fee": 0.29049855, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7299", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-25T22:00:04" + }, + { + "id": "k3xe3xln7eniem1nv0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T02:00:05", + "amountCrypto": 0.00003466, + "pricePerUnit": 2386150, + "totalCost": 82.7, + "fee": 0.29047696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7300", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T02:00:05" + }, + { + "id": "1ulyekofa3swmf6tu1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T06:00:04", + "amountCrypto": 0.00003455, + "pricePerUnit": 2393270, + "totalCost": 82.69, + "fee": 0.29041916, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7301", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T06:00:04" + }, + { + "id": "vnpyfwm5ah9o8k4q0w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T10:00:04", + "amountCrypto": 0.00003444, + "pricePerUnit": 2401528, + "totalCost": 82.71, + "fee": 0.29049337, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7302", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T10:00:04" + }, + { + "id": "smu14euz50o5yiymkf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T14:00:04", + "amountCrypto": 0.00003441, + "pricePerUnit": 2403446, + "totalCost": 82.7, + "fee": 0.2904721, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7303", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T14:00:04" + }, + { + "id": "vaxrvhnmp9riqj2hdt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T18:00:04", + "amountCrypto": 0.00003432, + "pricePerUnit": 2409888, + "totalCost": 82.71, + "fee": 0.29048889, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7304", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T18:00:04" + }, + { + "id": "uhw4g9gctybvwr81bk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-26T22:00:04", + "amountCrypto": 0.00003463, + "pricePerUnit": 2387902, + "totalCost": 82.69, + "fee": 0.29043867, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7305", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-26T22:00:04" + }, + { + "id": "03hw4ookwn6ab68dpf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T02:00:06", + "amountCrypto": 0.00003459, + "pricePerUnit": 2390967, + "totalCost": 82.7, + "fee": 0.29047551, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7306", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T02:00:06" + }, + { + "id": "4yu8m38c2c9kevbal7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T06:00:04", + "amountCrypto": 0.0000347, + "pricePerUnit": 2383582, + "totalCost": 82.71, + "fee": 0.29049929, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7307", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T06:00:04" + }, + { + "id": "u2mlt3p5wwe86hyse1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T10:00:05", + "amountCrypto": 0.00003441, + "pricePerUnit": 2403216, + "totalCost": 82.69, + "fee": 0.29044435, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7308", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T10:00:05" + }, + { + "id": "5e1qo6auag9popm0zk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T14:00:07", + "amountCrypto": 0.00003434, + "pricePerUnit": 2408128, + "totalCost": 82.7, + "fee": 0.29044597, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7309", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T14:00:07" + }, + { + "id": "fsmr7i152eqsflgaqu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T18:00:05", + "amountCrypto": 0.00003413, + "pricePerUnit": 2423003, + "totalCost": 82.7, + "fee": 0.29045291, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7310", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T18:00:05" + }, + { + "id": "x4sh2qfftveti6i0uv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-27T22:00:05", + "amountCrypto": 0.00003417, + "pricePerUnit": 2420224, + "totalCost": 82.7, + "fee": 0.29045981, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7311", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-27T22:00:05" + }, + { + "id": "hneayv4763utk4eklp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T02:00:04", + "amountCrypto": 0.00003446, + "pricePerUnit": 2399827, + "totalCost": 82.7, + "fee": 0.29045616, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7312", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T02:00:04" + }, + { + "id": "27y5xq3doakhovu0qn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T06:00:06", + "amountCrypto": 0.00003442, + "pricePerUnit": 2402368, + "totalCost": 82.69, + "fee": 0.29042623, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7313", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T06:00:06" + }, + { + "id": "x9rhsjotvxazqs57hc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T10:00:05", + "amountCrypto": 0.00003446, + "pricePerUnit": 2399542, + "totalCost": 82.69, + "fee": 0.2904217, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7314", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T10:00:05" + }, + { + "id": "b3hs4g7g96wa0pop0c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T14:00:05", + "amountCrypto": 0.00003451, + "pricePerUnit": 2396513, + "totalCost": 82.7, + "fee": 0.29047589, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7315", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T14:00:05" + }, + { + "id": "kk6y1j662iq7wwws73", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T18:00:04", + "amountCrypto": 0.0000348, + "pricePerUnit": 2376258, + "totalCost": 82.69, + "fee": 0.29044125, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7316", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T18:00:04" + }, + { + "id": "msfpw30dnxpnjcd5mt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-28T22:00:05", + "amountCrypto": 0.00003485, + "pricePerUnit": 2373103, + "totalCost": 82.7, + "fee": 0.29047239, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7317", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-28T22:00:05" + }, + { + "id": "n8isvozvogsk0qj1h4", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T02:00:04", + "amountCrypto": 0.00003447, + "pricePerUnit": 2399224, + "totalCost": 82.7, + "fee": 0.2904675, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7318", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T02:00:04" + }, + { + "id": "3810p16ml8lb67q5pn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T06:00:05", + "amountCrypto": 0.00003444, + "pricePerUnit": 2401400, + "totalCost": 82.7, + "fee": 0.29047785, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7319", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T06:00:05" + }, + { + "id": "l3ftnovf3fr5gzejf1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T10:00:04", + "amountCrypto": 0.00003456, + "pricePerUnit": 2393057, + "totalCost": 82.7, + "fee": 0.29047729, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7320", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T10:00:04" + }, + { + "id": "ersrzbxt87mcus6jrn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T14:00:04", + "amountCrypto": 0.0000343, + "pricePerUnit": 2410868, + "totalCost": 82.69, + "fee": 0.29043772, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7321", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T14:00:04" + }, + { + "id": "9y8qutwocqs3pw0zzw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T18:00:04", + "amountCrypto": 0.0000351, + "pricePerUnit": 2355925, + "totalCost": 82.69, + "fee": 0.29043834, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7322", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T18:00:04" + }, + { + "id": "ok9d47wlhx93ekj32v", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-29T22:00:04", + "amountCrypto": 0.00003554, + "pricePerUnit": 2327185, + "totalCost": 82.71, + "fee": 0.29049175, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7323", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-29T22:00:04" + }, + { + "id": "2ghu9xjduqqzctgn6g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T02:00:04", + "amountCrypto": 0.00003561, + "pricePerUnit": 2322078, + "totalCost": 82.69, + "fee": 0.29042508, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7324", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T02:00:04" + }, + { + "id": "gz5y4a26igwr44z06e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T06:00:04", + "amountCrypto": 0.0000355, + "pricePerUnit": 2329395, + "totalCost": 82.69, + "fee": 0.29044029, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7325", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T06:00:04" + }, + { + "id": "jcb4glw19qa40hdgkw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T10:00:05", + "amountCrypto": 0.00003567, + "pricePerUnit": 2318446, + "totalCost": 82.7, + "fee": 0.2904594, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7326", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T10:00:05" + }, + { + "id": "um4c2n217t1aff2b0s", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T14:00:05", + "amountCrypto": 0.00003547, + "pricePerUnit": 2331313, + "totalCost": 82.69, + "fee": 0.29043377, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7327", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T14:00:05" + }, + { + "id": "mk1cdcwl3m227lxnxa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T18:00:05", + "amountCrypto": 0.0000355, + "pricePerUnit": 2329464, + "totalCost": 82.7, + "fee": 0.29044892, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7328", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T18:00:05" + }, + { + "id": "27cg5g6td8ho84t36e", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-30T22:00:04", + "amountCrypto": 0.00003594, + "pricePerUnit": 2300773, + "totalCost": 82.69, + "fee": 0.29042714, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7329", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-30T22:00:04" + }, + { + "id": "45uioop5dim4eg05cj", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T02:00:04", + "amountCrypto": 0.00003613, + "pricePerUnit": 2289246, + "totalCost": 82.71, + "fee": 0.2904998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7330", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T02:00:04" + }, + { + "id": "po2hlftttf7xcemi67", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T06:00:05", + "amountCrypto": 0.00003618, + "pricePerUnit": 2285777, + "totalCost": 82.7, + "fee": 0.29046106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7331", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T06:00:05" + }, + { + "id": "z8ya1zwzsrtxh1kt1g", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T10:00:05", + "amountCrypto": 0.00003619, + "pricePerUnit": 2285187, + "totalCost": 82.7, + "fee": 0.29046628, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7332", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T10:00:05" + }, + { + "id": "ohtmy5k7wb1lg38ax0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T14:00:04", + "amountCrypto": 0.00003627, + "pricePerUnit": 2279937, + "totalCost": 82.69, + "fee": 0.29043958, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7333", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T14:00:04" + }, + { + "id": "of0y9baeoxsd8ydhbx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T18:00:04", + "amountCrypto": 0.00003584, + "pricePerUnit": 2307541, + "totalCost": 82.7, + "fee": 0.2904711, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7334", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T18:00:04" + }, + { + "id": "y8y18glvneay0ml668", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-05-31T22:00:04", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305521, + "totalCost": 82.7, + "fee": 0.29045975, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7335", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-05-31T22:00:04" + }, + { + "id": "pnwd7tlgmvc5zvzwm5", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T02:00:05", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305402, + "totalCost": 82.69, + "fee": 0.29044472, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7336", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T02:00:05" + }, + { + "id": "uibb1ebhgjfjf1ok3q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T06:00:04", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302998, + "totalCost": 82.7, + "fee": 0.29046541, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7337", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T06:00:04" + }, + { + "id": "ppcuzjicq32jtykgtd", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T10:00:05", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299996, + "totalCost": 82.71, + "fee": 0.29049063, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7338", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T10:00:05" + }, + { + "id": "b16vdwsfn798m8pmw0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T14:00:03", + "amountCrypto": 0.00003599, + "pricePerUnit": 2297768, + "totalCost": 82.7, + "fee": 0.2904514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7339", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T14:00:03" + }, + { + "id": "r12dsh41orb1zksec7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T18:00:05", + "amountCrypto": 0.00003589, + "pricePerUnit": 2304143, + "totalCost": 82.7, + "fee": 0.29044795, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7340", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T18:00:05" + }, + { + "id": "lcwhlgr6h4w346386q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-01T22:00:05", + "amountCrypto": 0.00003572, + "pricePerUnit": 2314899, + "totalCost": 82.69, + "fee": 0.29042157, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7341", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-01T22:00:05" + }, + { + "id": "2jmrpa48g69q51ge1w", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T02:00:05", + "amountCrypto": 0.0000356, + "pricePerUnit": 2322747, + "totalCost": 82.69, + "fee": 0.29042726, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7342", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T02:00:05" + }, + { + "id": "fejqtjy2xnz7vj6wen", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T06:00:04", + "amountCrypto": 0.00003585, + "pricePerUnit": 2307024, + "totalCost": 82.71, + "fee": 0.29048702, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7343", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T06:00:04" + }, + { + "id": "c58zni7t23eo2daps8", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T10:00:04", + "amountCrypto": 0.00003586, + "pricePerUnit": 2306442, + "totalCost": 82.71, + "fee": 0.29049468, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7344", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T10:00:04" + }, + { + "id": "lg5wmxg3nbssj7f3nf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T14:00:05", + "amountCrypto": 0.0000363, + "pricePerUnit": 2278154, + "totalCost": 82.7, + "fee": 0.29045256, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7345", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T14:00:05" + }, + { + "id": "xutw7rpyc47ervo1qa", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T18:00:05", + "amountCrypto": 0.00003628, + "pricePerUnit": 2279262, + "totalCost": 82.69, + "fee": 0.29043368, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7346", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T18:00:05" + }, + { + "id": "64i5kvvzm821ua6732", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-02T22:00:05", + "amountCrypto": 0.0000364, + "pricePerUnit": 2272001, + "totalCost": 82.7, + "fee": 0.29046603, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7347", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-02T22:00:05" + }, + { + "id": "7ofu6bs2jutau38yy0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T02:00:05", + "amountCrypto": 0.00003596, + "pricePerUnit": 2299764, + "totalCost": 82.7, + "fee": 0.29046138, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7348", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T02:00:05" + }, + { + "id": "u1ulk3amxuwyxl6oyx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T06:00:06", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301800, + "totalCost": 82.7, + "fee": 0.290476, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7349", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T06:00:06" + }, + { + "id": "x14x0q855y181ovqfs", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T10:00:04", + "amountCrypto": 0.000036, + "pricePerUnit": 2297232, + "totalCost": 82.7, + "fee": 0.29046429, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7350", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T10:00:04" + }, + { + "id": "0k3e47pvqmdufq10be", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T14:00:04", + "amountCrypto": 0.00003593, + "pricePerUnit": 2301720, + "totalCost": 82.7, + "fee": 0.29046588, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7351", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T14:00:04" + }, + { + "id": "k69o5k1mywhni1gj9l", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T18:00:04", + "amountCrypto": 0.00003539, + "pricePerUnit": 2336842, + "totalCost": 82.7, + "fee": 0.29046605, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7352", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T18:00:04" + }, + { + "id": "gzbp9skehzmiwhyde3", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-03T22:00:05", + "amountCrypto": 0.0000355, + "pricePerUnit": 2329366, + "totalCost": 82.69, + "fee": 0.29043667, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7353", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-03T22:00:05" + }, + { + "id": "pwy7mcwyo2s7l7eoay", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T02:00:04", + "amountCrypto": 0.00003581, + "pricePerUnit": 2309613, + "totalCost": 82.71, + "fee": 0.29048846, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7354", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T02:00:04" + }, + { + "id": "n9t1xo35f48v68fysu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T06:00:04", + "amountCrypto": 0.00003571, + "pricePerUnit": 2315613, + "totalCost": 82.69, + "fee": 0.29042979, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7355", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T06:00:04" + }, + { + "id": "fwhqyh7lu3pqr2d618", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T10:00:04", + "amountCrypto": 0.00003587, + "pricePerUnit": 2305840, + "totalCost": 82.71, + "fee": 0.29049991, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7356", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T10:00:04" + }, + { + "id": "2f3soi8p01zagwewtn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T14:00:06", + "amountCrypto": 0.00003595, + "pricePerUnit": 2300365, + "totalCost": 82.7, + "fee": 0.29045643, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7357", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T14:00:06" + }, + { + "id": "p7ofi7ht4lrt7o9vw0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T18:00:04", + "amountCrypto": 0.00003607, + "pricePerUnit": 2292903, + "totalCost": 82.71, + "fee": 0.29048068, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7358", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T18:00:04" + }, + { + "id": "6gle4y5fbxry64sq9d", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-04T22:00:04", + "amountCrypto": 0.00003615, + "pricePerUnit": 2287838, + "totalCost": 82.71, + "fee": 0.2904819, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7359", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-04T22:00:04" + }, + { + "id": "ffdh5pfcek8ft7llbk", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T02:00:05", + "amountCrypto": 0.00003624, + "pricePerUnit": 2281893, + "totalCost": 82.7, + "fee": 0.29044829, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7360", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T02:00:05" + }, + { + "id": "pke1pxmrnal1eetou6", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T06:00:05", + "amountCrypto": 0.00003612, + "pricePerUnit": 2289573, + "totalCost": 82.7, + "fee": 0.29046086, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7361", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T06:00:05" + }, + { + "id": "9x8tjdemfuonusb1fp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T10:00:04", + "amountCrypto": 0.00003632, + "pricePerUnit": 2277207, + "totalCost": 82.71, + "fee": 0.29049174, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7362", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T10:00:04" + }, + { + "id": "4mqdzw8agdbolqe6s7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T14:00:04", + "amountCrypto": 0.00003622, + "pricePerUnit": 2283468, + "totalCost": 82.71, + "fee": 0.29048835, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7363", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T14:00:04" + }, + { + "id": "b4vstgi7f9rmpl0clp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T18:00:05", + "amountCrypto": 0.00003639, + "pricePerUnit": 2272455, + "totalCost": 82.69, + "fee": 0.29044427, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7364", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T18:00:05" + }, + { + "id": "72p3eg1pz8xz8bmunp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-05T22:00:04", + "amountCrypto": 0.00003731, + "pricePerUnit": 2216600, + "totalCost": 82.7, + "fee": 0.29046786, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7365", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-05T22:00:04" + }, + { + "id": "xg2njjw0gmtrlqitlv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T02:00:05", + "amountCrypto": 0.00003748, + "pricePerUnit": 2206489, + "totalCost": 82.7, + "fee": 0.29046033, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7366", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T02:00:05" + }, + { + "id": "cin30fdtz67tp9qszv", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T06:00:04", + "amountCrypto": 0.00003722, + "pricePerUnit": 2222199, + "totalCost": 82.71, + "fee": 0.29049911, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7367", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T06:00:04" + }, + { + "id": "kyg1mhauodb7604foo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T10:00:05", + "amountCrypto": 0.00003686, + "pricePerUnit": 2243613, + "totalCost": 82.7, + "fee": 0.29046153, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7368", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T10:00:05" + }, + { + "id": "fzohuvmkpgwqpxgzte", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T14:00:06", + "amountCrypto": 0.0000366, + "pricePerUnit": 2259775, + "totalCost": 82.71, + "fee": 0.29049031, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7369", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T14:00:06" + }, + { + "id": "nshfkrhgwj8a6fcojt", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T18:00:05", + "amountCrypto": 0.00003611, + "pricePerUnit": 2290484, + "totalCost": 82.71, + "fee": 0.29049602, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7370", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T18:00:05" + }, + { + "id": "589ct5b4d08sblb2t0", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-06T22:00:04", + "amountCrypto": 0.00003637, + "pricePerUnit": 2273696, + "totalCost": 82.69, + "fee": 0.29044318, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7371", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-06T22:00:04" + }, + { + "id": "hwduznnr5fuo98m4z9", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T02:00:05", + "amountCrypto": 0.00003635, + "pricePerUnit": 2275180, + "totalCost": 82.7, + "fee": 0.29047289, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7372", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T02:00:05" + }, + { + "id": "xm0j00tagvh6plck8y", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T06:00:05", + "amountCrypto": 0.00003621, + "pricePerUnit": 2283854, + "totalCost": 82.7, + "fee": 0.29045724, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7373", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T06:00:05" + }, + { + "id": "gn60q03zcty1g3joyh", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T10:00:05", + "amountCrypto": 0.00003615, + "pricePerUnit": 2287850, + "totalCost": 82.71, + "fee": 0.2904833, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7374", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T10:00:05" + }, + { + "id": "ne8i74zv4ubbknccpe", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T14:00:05", + "amountCrypto": 0.00003605, + "pricePerUnit": 2293933, + "totalCost": 82.7, + "fee": 0.29044998, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7375", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T14:00:05" + }, + { + "id": "xid6anmcn34l7333zw", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T18:00:05", + "amountCrypto": 0.00003594, + "pricePerUnit": 2300996, + "totalCost": 82.7, + "fee": 0.29045536, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7376", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T18:00:05" + }, + { + "id": "xhixcsxzaas7943ij7", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-07T22:00:05", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302782, + "totalCost": 82.69, + "fee": 0.2904381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7377", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-07T22:00:05" + }, + { + "id": "8ya0jgde21be0ywdbo", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T02:00:04", + "amountCrypto": 0.00003591, + "pricePerUnit": 2302782, + "totalCost": 82.69, + "fee": 0.2904381, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7378", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T02:00:04" + }, + { + "id": "vu80a52tg1lmz1pppn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T06:00:04", + "amountCrypto": 0.00003594, + "pricePerUnit": 2300962, + "totalCost": 82.7, + "fee": 0.29045106, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7379", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T06:00:04" + }, + { + "id": "l656oo9u8k8lz2ielp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T10:00:06", + "amountCrypto": 0.00003596, + "pricePerUnit": 2300046, + "totalCost": 82.71, + "fee": 0.29049696, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7380", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T10:00:06" + }, + { + "id": "3dybg7tnxeap2k5trp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T14:00:04", + "amountCrypto": 0.00003588, + "pricePerUnit": 2304704, + "totalCost": 82.69, + "fee": 0.29043776, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7381", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T14:00:04" + }, + { + "id": "fzluy3ugp0hk56uk2c", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T18:00:04", + "amountCrypto": 0.00003579, + "pricePerUnit": 2310814, + "totalCost": 82.7, + "fee": 0.29047719, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7382", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T18:00:04" + }, + { + "id": "9vem2mtrrpxbtse0ma", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-08T22:00:06", + "amountCrypto": 0.00003568, + "pricePerUnit": 2318058, + "totalCost": 82.71, + "fee": 0.29049221, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7383", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-08T22:00:06" + }, + { + "id": "qzy2a9maj0nj5qfv7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T02:00:05", + "amountCrypto": 0.00003588, + "pricePerUnit": 2304623, + "totalCost": 82.69, + "fee": 0.29042753, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7384", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T02:00:05" + }, + { + "id": "0bucn6g88rfwl5xu7q", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T06:00:05", + "amountCrypto": 0.00003592, + "pricePerUnit": 2302622, + "totalCost": 82.71, + "fee": 0.29049887, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7385", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T06:00:05" + }, + { + "id": "6h0zfs5vwhwf3uzhmf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T10:00:04", + "amountCrypto": 0.00003601, + "pricePerUnit": 2296575, + "totalCost": 82.7, + "fee": 0.29046193, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7386", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T10:00:04" + }, + { + "id": "47vwydovvw1cryydj1", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T14:00:04", + "amountCrypto": 0.00003532, + "pricePerUnit": 2341269, + "totalCost": 82.69, + "fee": 0.2904407, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7387", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T14:00:04" + }, + { + "id": "2nuwpi2wb1vk86fgbu", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T18:00:04", + "amountCrypto": 0.00003533, + "pricePerUnit": 2340998, + "totalCost": 82.71, + "fee": 0.29048922, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7388", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T18:00:04" + }, + { + "id": "t8koz92muzzxbr4wgx", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-09T22:00:04", + "amountCrypto": 0.00003506, + "pricePerUnit": 2358610, + "totalCost": 82.69, + "fee": 0.29043806, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7389", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-09T22:00:04" + }, + { + "id": "rsfm2fwda0a2jcvu1m", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T02:00:05", + "amountCrypto": 0.00003463, + "pricePerUnit": 2387791, + "totalCost": 82.69, + "fee": 0.29042514, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7390", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T02:00:05" + }, + { + "id": "gk5vugfij2pdovcrvf", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T06:00:05", + "amountCrypto": 0.00003464, + "pricePerUnit": 2387195, + "totalCost": 82.69, + "fee": 0.29043655, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7391", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T06:00:05" + }, + { + "id": "1mkkh8rmm1jti8kcrp", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T10:00:06", + "amountCrypto": 0.00003472, + "pricePerUnit": 2381738, + "totalCost": 82.69, + "fee": 0.29044178, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7392", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T10:00:06" + }, + { + "id": "atjdeldhs05u6py7pc", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T14:00:05", + "amountCrypto": 0.00003472, + "pricePerUnit": 2381760, + "totalCost": 82.69, + "fee": 0.29044447, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7393", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T14:00:05" + }, + { + "id": "zpq7k8o6nrny2powpn", + "dcaPlanId": "one-time-purchase", + "timestamp": "2025-06-10T18:00:06", + "amountCrypto": 0.0000349, + "pricePerUnit": 2369537, + "totalCost": 82.7, + "fee": 0.29045192, + "status": "completed", + "orderId": null, + "exchangeOrderId": "7394", + "clientOrderId": null, + "currencyPair": "BTC_CZK", + "errorMessage": null, + "errorCode": null, + "retryCount": 0, + "createdAt": "2025-06-10T18:00:06" + } + ] +} \ No newline at end of file diff --git a/telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-40-52.json b/archive/telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-40-52.json similarity index 100% rename from telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-40-52.json rename to archive/telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-40-52.json diff --git a/telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-41-19.json b/archive/telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-41-19.json similarity index 100% rename from telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-41-19.json rename to archive/telegram-accbot-converter/test_telegram_export_accbot_import_2025-06-10T21-41-19.json diff --git a/telegram-accbot-converter/tsconfig.json b/archive/telegram-accbot-converter/tsconfig.json similarity index 100% rename from telegram-accbot-converter/tsconfig.json rename to archive/telegram-accbot-converter/tsconfig.json diff --git a/changelog.json b/changelog.json index 32774e1..2de4c90 100644 --- a/changelog.json +++ b/changelog.json @@ -1,4 +1,34 @@ [ + { + "versionCode": 26000, + "version": "2.6.0", + "title": { + "en": "Performance & Smart Refresh", + "cs": "Výkon a chytré obnovování" + }, + "features": { + "en": [ + "Smart refresh — Dashboard and Portfolio only reload when data is stale (5 min)", + "SQL-level filtering in transaction history — faster with large datasets", + "Search debounce (300ms) — smoother typing in history search", + "Fear & Greed index caching (1h TTL) — fewer API calls", + "Real-time price in portfolio chart — today's data point updates immediately", + "Market data fetch order optimized — cache warm-up before price lookups", + "New DB index on transactions for faster filtered queries", + "Repository cleanup — archived inactive .NET, Docker and legacy projects" + ], + "cs": [ + "Chytré obnovování — Dashboard a Portfolio načítají data jen když jsou zastaralá (5 min)", + "SQL filtrování v historii transakcí — rychlejší s velkým množstvím dat", + "Debounce vyhledávání (300ms) — plynulejší psaní v historii", + "Cachování Fear & Greed indexu (1h TTL) — méně API volání", + "Real-time cena v grafu portfolia — dnešní bod se aktualizuje okamžitě", + "Optimalizované pořadí načítání tržních dat — warm-up cache před dotazy na ceny", + "Nový DB index na transakcích pro rychlejší filtrované dotazy", + "Úklid repositáře — archivace neaktivních .NET, Docker a legacy projektů" + ] + } + }, { "versionCode": 25200, "version": "2.5.2",